:root {
    --primary: #31A6A5;
    --secondary: #444444;
    --gray: #3B3B3B;
    --heading-size: clamp(2.5rem, 3vw + 1rem, 5rem);
    --swiper-theme-color: var(--primary);
    --swiper-pagination-bottom: -1.5rem;
}

::selection {
    background: #2a9694;
    color: white;
}

::-moz-selection {
    background: #2a9694;
    color: white;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background-color: white;
    color: var(--gray);
    overflow-x: hidden;
    font-weight: 400;
}

.body-wrapper {
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
    /*overflow-x: clip;*/
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0;
    margin: 0 auto;
    width: 100%;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: var(--heading-size);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    text-align: center;
    font-size: 5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.125rem;
    text-transform: uppercase;
}

h4 {
    font-weight: 600;
    font-size: 1.125rem;
}

h5 {
    font-weight: 600;
    font-size: 1rem;
}

h6 {
    font-weight: 600;
    font-style: italic;
    font-size: 1rem;
}

p,
li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

p:not(.article p):last-of-type {
    margin-bottom: 0;
}

li {
    margin-left: 1rem;
    margin-bottom: 0;
}

ul, ol {
    margin-bottom: 1.25rem;
}

.article h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: left;
}

.article h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-transform: none;
}

.article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.875rem;
}

.article h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article img:not(.bgshape) {
    width: 100%;
    max-height: 750px;
    object-fit: cover;
    margin: 1.25rem 0;
    border-radius: 1rem;
}

.article strong {
    color: var(--primary);
}

section {
    margin: 120px auto;
    padding: 0 40px;
    position: relative;
    max-width: 2560px;
}

.primary-link,
.btn-1,
.btn-2 {
    padding: 0.875rem 1.5rem 0.8125rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border-radius: 1.25rem;
    display: block;
    width: fit-content;
    background-color: var(--primary);
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
    color: white;
    border: 1px solid var(--primary);
}

.primary-link.center,
.btn-1,
.btn-2 {
    margin: 4rem auto 0;
}

.primary-link.light,
.btn-2 {
    background-color: white;
    border-color: #52C4C6;
    color: var(--primary);
}

.primary-link svg {
    height: 1.125rem;
    object-fit: contain;
    margin-right: 0.625rem;
    margin-top: -0.25rem;
}

.primary-link svg path {
    transition: fill 0.3s, stroke 0.3s;
}

@media (min-width: 1280px) {
    .primary-link:hover,
    .btn-1:hover {
        background-color: white;
        border-color: var(--primary);
        color: var(--primary);
    }

    .primary-link:hover svg path {
        fill: var(--primary);
    }

    .primary-link.light:hover,
    .btn-2:hover {
        background-color: #52C4C6;
        color: white;
    }
}

@media (max-width: 1279px) {
    .primary-link:hover,
    .btn-1:hover {
        color: white;
    }
}

.rccookie-container {
    background-color: #FFFFFFBB;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
}

.rccookie-container .primary-link,
.rccookie-modal .primary-link {
    background-color: var(--primary);
    color: white;
}

.rccookie-container .secondary-link {
    color: var(--gray);
}

.rccookie-modal .modal-content {
    border-radius: 1rem;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before,
.custom-control-input:not(:disabled):focus~.custom-control-label::before {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

.custom-control-label::before {
    border: 1px solid var(--gray);
}

.slider {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.slider:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
    color: white;
}

.sliderMask {
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid var(--primary);
    background-color: var(--primary) !important;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--gray);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--gray);
}

@media (min-width: 1280px) {
    a:hover,
    a:focus-visible {
        color: var(--primary);
    }
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    color: var(--gray);
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

.relative {
    position: relative;
}

.swiper {
    width: 100%;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 22px !important;
    font-weight: 600;
    color: var(--primary);
}

.swiper-button-prev::after {
    margin-right: 3px;
}

.swiper-button-next::after {
    margin-left: 1px;
}

.swiper-button-prev {
    left: -50px !important;
}

.swiper-button-next {
    right: -50px !important;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SIDEBAR OPEN */

.open-sidebar {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    display: none;
}

.open-sidebar .hb {
    border-bottom: 3px solid var(--white);
    border-radius: 99px;
    transition: all 0.45s;
}

.desktop-navbar.scrolled .open-sidebar .hb {
    border-color: var(--primary);
}

.open-sidebar .hb1,
.open-sidebar .hb2 {
    width: 26px;
}

.open-sidebar .hb3 {
    width: 13px;
    margin-left: 12px;
}

.open-sidebar.closed .hb1 {
    transform: rotate(-45deg) translate(-6px, 6px);
    width: 30px;
}

.open-sidebar.closed .hb2 {
    margin-right: -100%;
    opacity: 0;
}

.open-sidebar.closed .hb3 {
    transform: rotate(45deg) translate(-6px, -6px);
    width: 30px;
    margin-left: 0;
}

/* SIDEBAR */

#sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px !important;
}

#sidebar .lang {
    font-size: 20px;
    color: var(--gray);
    gap: 0.5rem;
}

#sidebar .lang a {
    font-size: 1.125rem;
    color: var(--gray);
    border-color: var(--gray);
    padding-right: 0.5rem;
}

@media (min-width: 1280px) {
    #sidebar {
        display: none;
    }
}

#sidebar,
.navbar-dropdown {
    width: 100%;
    position: fixed;
    right: -100vw;
    top: 66px;
    height: calc(100svh - 66px);
    z-index: 998;
    background: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: right 0.45s ease-out;
    overflow: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 0 20px;
}

#sidebar.active,
.navbar-dropdown.active {
    right: 0;
}

#sidebar .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
    height: 100%;
}

#sidebar .links {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#sidebar .links .nav-item {
    width: 100vw;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

#sidebar .links a svg {
    position: absolute;
    right: 25px;
    top: 47%;
    transform: translateY(-50%) rotate(-90deg);
    width: 18px;
}

#sidebar .links a svg path {
    stroke: var(--gray);
}

#sidebar .primary-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1.25vw 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s, top 0.5s;
}

.desktop-navbar.active {
    top: -90px;
}

.desktop-navbar.scrolled {
    background-color: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.desktop-navbar .links {
    display: flex;
    align-items: center;
    gap: 1.75vw;
    padding: 0 1.5vw;
}

.desktop-navbar .logo {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 2vw;
    width: 4vw;
}

.desktop-navbar .logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.75vw;
    transition: opacity 0.3s;
}

.desktop-navbar .logo .dark {
    opacity: 0;
}

.desktop-navbar.scrolled .logo .dark {
    opacity: 1;
}

.desktop-navbar.scrolled .logo .light {
    opacity: 0;
}

.desktop-navbar .links .nav-item {
    font-size: 1vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    color: white;
}

.desktop-navbar.scrolled .links .nav-item {
    color: var(--primary);
}

.desktop-navbar .links .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: white;
    transition: width 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.desktop-navbar.scrolled .links .nav-item::after {
    background-color: var(--primary);
}

.desktop-navbar .links .nav-item:hover::after {
    width: 100%;
}

.desktop-navbar .links .nav-item svg {
    width: 0.85vw;
    margin-left: 0.5vw;
    transition: transform 0.3s;
    margin-top: -0.15vw;
}

.desktop-navbar .links .nav-item.active svg {
    transform: rotate(180deg);
}

.desktop-navbar .links .nav-item svg path {
    transition: stroke 0.3s;
    stroke: white; 
}

.desktop-navbar.scrolled .links .nav-item svg path {
    stroke: var(--primary);
}

.desktop-navbar .buttons {
    display: flex;
    align-items: center;
    gap: 1.25vw;
    position: relative;
}

.desktop-navbar .buttons .item {
    position: relative;
}

.desktop-navbar .buttons svg {
    height: 1.5vw;
    object-fit: contain;
}

.desktop-navbar .buttons>button:not(.open-sidebar) {
    height: 1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-navbar .buttons svg * {
    transition: fill 0.3s, stroke 0.3s;
    fill: white;
}

.desktop-navbar .buttons .icon.user svg * {
    fill: none;
    stroke: white;
}

.desktop-navbar.scrolled .buttons svg * {
    fill: var(--primary);
}

.desktop-navbar.scrolled .buttons .icon.user svg * {
    stroke: var(--primary);
}

.lang {
    display: flex;
    justify-content: center;
    gap: 0.5vw;
}

.lang a {
    color: white;
    border-right: 1px solid var(--white);
    padding-right: 0.5vw;
}

.desktop-navbar .lang a {
    font-size: 1vw;
}

.desktop-navbar.scrolled .lang a {
    color: var(--primary);
    border-color: var(--primary);
}

.lang a:last-of-type {
    border-right: none;
    padding-right: 0;
}

.lang a.active {
    font-weight: 800;
}

/* NAVBAR DROPDOWN */

.desktop-navbar .navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: fit-content;
    overflow: hidden;
    z-index: 998;
    max-height: 0;
    background-color: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    transition: max-height 0.66s cubic-bezier(0.01, 0.69, 0.4, 1);
    border-radius: 0 0 1.25vw 1.25vw;
}

.desktop-navbar .navbar-dropdown.active {
    z-index: 999;
}

.desktop-navbar .navbar-dropdown .bg {
    object-position: top center;
    z-index: -1;
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}

.navbar-dropdown .container {
    display: flex;
    padding: 2vw 0 4vw;
    max-width: 64vw;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: calc(100vh - 3vw);
}

.desktop-navbar .navbar-dropdown .arrow {
    display: none;
}

.navbar-dropdown .container .item {
    width: 25%;
    padding-right: 2vw;
}

.navbar-dropdown .container .item:last-of-type {
    padding-right: 0;
}

.navbar-dropdown .container a {
    display: block;
    margin-top: 0.5vw;
    font-size: 1vw;
}

.navbar-dropdown .container a:last-of-type {
    margin-bottom: 0;
}


.navbar-dropdown .container h3 {
    position: relative;
    margin: 0;
    width: fit-content;
    transition: color 0.3s;
    font-weight: 700;
}

.navbar-dropdown .container h3,
.navbar-dropdown .container h3 a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2vw;
    margin: 0;
    margin-bottom: 0.8vw;
    color: var(--primary);
}

.navbar-dropdown .container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary);
    transition: width 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.navbar-dropdown .container h3:hover::after {
    width: 100%;
}

.navbar-dropdown .container .item img {
    height: 2vw;
    transition: filter 0.3s;
}

.navbar-dropdown .container .item:hover img {
    filter: grayscale(1);
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100vw - 40px);
    max-width: 300px;
    background-color: #FFFFFFDD;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;
}

.desktop-modal.active {
    transform: translate(-50%, 2.5vw);
    opacity: 1;
}

.desktop-modal::before {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 18px;
    background-color: #FFFFFFDD;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    left: 50%;
    transform: translate(-50%, -100%);
}

.desktop-modal .cancel,
.navbar-dropdown .cancel {
    position: absolute;
    top: 15px;
    right: 12px;
    padding: 10px;
    cursor: pointer;
    width: 36px;
}

.desktop-modal h3 {
    margin: 0 0 1.25rem;
    text-transform: none;
    font-weight: 600;
    font-size: 1.375rem;
    text-align: center;
}

.desktop-modal form {
    padding: 0;
    width: 100%;
    background-color: transparent;
    gap: 0;
}

.desktop-modal form input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    margin-bottom: 0.875rem;
    line-height: 1;
    background-color: transparent;
}

.desktop-modal .primary-link {
    margin: 0 auto;
    padding: 0.625rem 1.25rem;
}

.desktop-modal.basket-modal .list {
    max-height: 50vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.desktop-modal.basket-modal .list .item {
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--primary);
    gap: 1rem;
}

.desktop-modal.basket-modal .list .item .content {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.desktop-modal.basket-modal .list .image {
    width: 30%;
    display: flex;
    align-items: center;
}

.desktop-modal.basket-modal .list .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.25rem;
}

.desktop-modal.basket-modal .content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.desktop-modal.basket-modal .content p {
    margin: 0;
    font-size: 0.875rem;
}

.desktop-modal.basket-modal .content .numbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-modal.basket-modal .content .price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #CFCFCF;
    border-radius: 0.5rem;
    padding: 0 0.25rem;
    height: 2.125rem;
}

.quantity input {
    width: 2rem;
    font-size: 1.25rem;
    text-align: center;
    background-color: transparent;
    border: none;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
    pointer-events: none;
}

.quantity input::-webkit-inner-spin-button,
.quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity button {
    padding: 0.375rem;
}

.quantity button img {
    width: 0.875rem;
}

.desktop-modal.basket-modal .content button.edit {
    background-color: var(--primary);
    transition: background-color 0.3s;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 0.5rem
}

.desktop-modal.basket-modal .content button.delete,
.desktop-modal.basket-modal .content button.delete img {
    height: 1.5rem;
    margin-top: -0.1rem;
}

.desktop-modal.basket-modal .summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.desktop-modal.basket-modal .summary .price {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.desktop-modal.basket-modal .buttons {
    flex-direction: column;
    gap: 0.625rem;
}

.desktop-modal.login-modal .lostpassword {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.desktop-modal.login-modal .logged-in a {
    display: block;
    text-align: center;
    margin-bottom: 0.625rem;
}

.desktop-modal .buttons .primary-link {
    height: auto !important;
}

@media (max-width: 1279px) {
    
    .desktop-navbar {
        padding: 10px 0;
        height: 66px;
    }
    
    .desktop-navbar .container {
        max-width: 100%;
        padding: 0 20px;
        position: relative;
    }
    
    .desktop-navbar .logo {
        height: 22px;
        width: auto;
    }
    
    .desktop-navbar .logo img {
        height: 22px;
    }
    
    .desktop-navbar .links {
        display: none;
    }
    
    .desktop-navbar .open-sidebar {
        display: flex;
    }
    
    .desktop-navbar .buttons {
        gap: 15px;
        position: static;
    }
    
    .desktop-navbar .buttons svg {
        height: 26px;
    }
    
    .desktop-navbar .buttons .item {
        position: static;
    }
    
    .desktop-navbar .lang {
        display: none;
    }
    
    .desktop-modal {
        left: auto;
        right: 20px;
        transform: none;
        max-width: 380px;
    }
    
    .desktop-modal.active {
        transform: translateY(33px);
    }
    
    .desktop-modal::before {
        left: auto;
        transform: translateY(-100%);
        right: 36px;
    }

    .desktop-modal.basket-modal::before {
        right: 75px;
    }
    
    .desktop-modal .cancel {
        top: 14px;
    }
    
    #sidebar .navbar-dropdown {
        top: 0;
    }
    
    #sidebar .navbar-dropdown .arrow {
        width: 16px;
        height: 28px;
        object-fit: contain;
        cursor: pointer;
        margin: 30px 0 0;
        display: block;
    }
    
    #sidebar .navbar-dropdown .container {
        padding: 0 0 40px;
        gap: 0;
        flex-wrap: wrap;
        max-width: 100%;
        justify-content: center;
    }
    
    #sidebar .navbar-dropdown .container .item {
        width: 100%;
        max-width: 320px;
        padding-bottom: 36px;
    }
    
    #sidebar .navbar-dropdown .container a {
        font-size: 1rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    #sidebar .navbar-dropdown .container h3::after {
        display: none;
    }
    
    #sidebar .navbar-dropdown .container h3,
    #sidebar .navbar-dropdown .container h3 a {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .nav-line {
        top: 66px !important;
    }
    
}

/* CUSTOM CLASSOK */

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
}

.items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}

.items .item {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 380px;
    flex: 1 1 31%;
    border-radius: 0 0 1.25rem 1.25rem;
    position: relative;
}

.items .item img {
    height: 4rem;
    margin-bottom: 1.5rem;
}

.items .item h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

section .link {
    display: block;
    width: fit-content;
    position: relative;
    font-weight: 500;
    margin: 2rem 0;
}

section .link::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary);
    transition: width 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
}

section .link:hover::after {
    width: 100%;
}

.card {
    border: none;
    padding: 2rem;
    border-radius: 1.25rem;
    background-color: #F7F7F7BB;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px 1px #D1D3D488;
}

section.nav {
    margin: 80px auto -40px;
    padding: 0 20px;
}

.nav {
    width: 100%;
    max-width: 1140px;
    display: flex;
    margin: 0 auto 80px;
    gap: 0.375rem;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.1;
    color: white;
}

.nav a {
    color: white;
}

.nav a:last-of-type {
    font-weight: 700;
}

.flex-content {
    display: flex;
    gap: 80px;
}

.flex-content.center {
    align-items: center;
}

.flex-content .side {
    width: 50%;
}

/* HERO */

.hero {
    z-index: 3;
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

.hero .content {
    position: relative;
    width: 100vw;
    min-height: 75svh;
    display: flex;
    padding: 3vw 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    -webkit-mask-image: url('../images/hero-mask.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url('../images/hero-mask.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.hero.main-hero .content {
    padding: 0 40px 5vh;
    min-height: 100svh;
}

.hero .layer {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #31A6A599 60%, #84D90A32 100%);
}

.hero.main-hero .layer {
    background: linear-gradient(to bottom, #31A6A588 0%, #84D90A22 100%);
}

.hero .leaf {
    position: absolute;
    top: -10vh;
    right: -10vw;
    height: 130%;
    opacity: 0.2;
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 78vw;
    color: white;
    background-color: #FFFFFF55;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8vh 4vh 12vh;
    border-radius: 3vh;
}

.hero .container .logo {
    height: 5.5vh;
}

.hero .container h1 {
    font-size: 3.5vw;
    font-weight: 800;
    margin: 7vh auto 6vh;
}

.hero.main-hero .container h1 {
    max-width: 50vw;
}

.hero .container p {
    font-size: 1.75vw;
    margin: 1.5vw auto 0;
    line-height: 1.3;
    max-width: 50vw;
}

.hero .container .nav {
    position: absolute;
    margin: 0;
    top: 2vw;
    left: 2vw;
    font-size: 1vw;
}

.circle-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: background-color 0.3s, border-color 0.3s;
    border: 1px solid white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.hero .circle-link {
    width: 4vw;
    height: 4vw;
}

.circle-link svg {
    width: 50%;
    height: 50%;
    transition: transform 0.3s ease-out;
}

.circle-link svg path {
    fill: var(--primary);
    transition: fill 0.3s;
}

.circle-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.hero .circle-link:hover svg {
    transform: translateY(3px);
}

.circle-link:hover svg path {
    fill: white;
}

.hero .drone {
    position: absolute;
    bottom: -7vh;
    right: -8vw;
    width: 52vw;
    z-index: 2;
}

.about {
    margin: 0;
    margin-top: -13vh;
    padding-top: calc(13vh + 120px);
    padding-bottom: 120px;
}

.about .bg {
    position: absolute;
    top: -5vh;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 0%, black 80%, #00000022 100%);
}

.about .container {
    max-width: 950px;
    text-align: center;
    font-weight: 600;
}

.about .container p {
    font-size: 1.25rem;
}

.about .image {
    position: relative;
    margin: 60px auto 0;
    max-width: 1140px;
}


.about .image img {
    display: block;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.about .image .mobile {
    display: none;
}

.about .image .desktop {
    transform: rotate(6deg);
}

.about .image .card {
    width: 380px;
    text-align: center;
    box-shadow: 0 2px 20px 5px #00000016;
    margin-bottom: 60px;
}

.about .image .card h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.about .image .left {
    position: absolute;
    top: 0;
    left: 0;
}

.about .image .right {
    position: absolute;
    top: 80px;
    right: 0;
}

.bgshape {
    position: absolute;
    top: 5rem;
    right: 0;
    width: 40vw;
    z-index: -1;
    opacity: 0.2;
}

.bgshape.left {
    left: 0;
    right: auto;
    transform: scaleX(-1);
}

.bgshape.right {
    left: auto !important;
    right: 0 !important;
    transform: none;
}

.services .bgshape.left {
    top: auto;
    bottom: -120px;
}

.services .category,
.news .category {
    margin-bottom: 3rem;
}

.services .category > h3,
.news .category > h3 {
    margin-bottom: -1.375rem;
    color: #D8D8D8;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
}

.services .item,
.news .item {
    position: relative;
    border-radius: 1.25rem;
}

.services .item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
}

.services .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.services .item:hover .bg img {
    transform: scale(1.06);
}

.services .item .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.services .item .content {
    position: relative;
    z-index: 1;
    padding: 30px 30px 45px;
    border-radius: 1.25rem;
    background-color: #268F92BB;
    color: white;
    text-align: center;
    height: 100%;
}

.services .item h3 a {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.services .item .circle-link,
.news .item .circle-link {
    box-shadow: 0 0 10px 0 #D9D9D9BB;
}

.services .item:hover .circle-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.services .item:hover .circle-link svg path {
    fill: white;
}

.services .item p {
    margin-bottom: 1.25rem;
}

.services .primary-link.center {
    margin: 5rem auto 0;
}

.card-with-drone {
    padding-bottom: 400px;
    margin-bottom: 0;
}

.card-with-drone .folt {
    display: block;
    max-width: 650px;
    width: 80%;
    max-height: 350px;
    margin: -180px auto 0;
    z-index: -1;
    -webkit-mask-image: url("../images/folt-mask.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/folt-mask.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.card-with-drone .container {
    max-width: 950px;
    background-color: #F5F5F5AA;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px;
    position: relative;
    z-index: 1;
    border-radius: 1.375rem;
    box-shadow: 0 2px 12px #D1D3D488;
    padding-bottom: 160px;
}

.card-with-drone .container h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.card-with-drone .container p {
    font-size: 1.125rem;
}

.card-with-drone .primary-link.center {
    margin-top: 2rem;
}

.card-with-drone .drone {
    position: absolute;
    bottom: 290px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 850px;
    z-index: 2;
}

.products {
    margin: 0;
    padding: 120px 40px 16vw;
}

.products .bg {
    mask-image: linear-gradient(to top, black 0%, black 85%, #00000022 100%);
    height: calc(100% + 12vw);
}

.products .items .item {
    margin-bottom: 2rem;
}

.products .items .item .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.products .items .item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.products .item .content {
    padding: 75px 20px 7.25rem;
    margin: -60px auto 0;
    width: 80%;
    border-radius: 25px;
    background-color: #F5F5F544;
    box-shadow: 0 2px 12px 5px #00000016;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-grow: 1;
    position: relative;
}

.products .item.sale .content {
    border: 2px solid var(--primary);
}

.products .item h3 a {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.products .item p {
    font-size: 0.875rem;
}

.products .item .bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.products .item .prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.products .item .price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.products .item .old-price {
    font-size: 0.8125rem;
    margin-top: 0.1rem;
}

.products .item .buttons {
    display: flex;
    gap: 1rem;
}

.products .item .buttons .primary-link {
    padding: 0.6875rem 1rem 0.625rem;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.products .item .buttons .primary-link svg {
    margin-right: 0.375rem;
}

.products .primary-link.center {
    margin: 2rem auto 0;
}

/* CONTACT */

.contact {
    margin-top: 0;
    position: static;
}

.contact .bg {
    position: relative;
    height: auto;
    margin: -20vw -40px -40vw;
    width: 100vw;
    min-height: 550px;
}

.contact .container {
    padding: 50px 10rem;
    max-width: 1000px;
    border-radius: 1.25rem 1.25rem;
    background-color: #F5F5F5AA;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 12px #D1D3D488;
}

.contact .container.bluroff {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.contact h2 {
    text-align: center;
    font-size: 6.25rem;
    color: white;
    margin-bottom: 3rem;
}

.contact .content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact .infos,
.contact-subpage .infos {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.contact .infos p,
.contact .infos a,
.contact-subpage .infos p,
.contact-subpage .infos a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.contact-subpage .infos p,
.contact-subpage .infos a {
    color: var(--gray);
    font-size: 1.25rem;
}

.contact .infos p svg,
.contact .infos a svg,
.contact-subpage .infos p svg,
.contact-subpage .infos a svg {
    width: 1.75rem;
    height: 1.75rem;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea,
form select {
    padding: 0.875rem 1rem;
    border: none;
    outline: none;
    background-color: white;
    color: var(--gray) !important;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    resize: none;
}

form select {
    appearance: none;
    background-image: url("../images/angle-down-gray.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

form input::placeholder,
form textarea::placeholder,
form select::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.form-check {
    margin-left: 37px;
    padding-left: 0 !important;
}

.form-check:not(.form-group .form-check):first-of-type {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group:first-of-type {
    margin-top: 20px;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--gray);
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -37px;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 1.5px solid var(--primary);
    border-radius: 5px;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: var(--primary);
}

.form-check-input+label::after {
    content: " ";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 0.875rem;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -37px;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    opacity: 1;
    top: 0;
}

.contact form .primary-link {
    margin: 1.5rem auto 0;
}

.news .bgshape.left {
    top: auto;
    bottom: 0;
}

.news .items {
    gap: 60px;
}

.news .video {
    width: 100%;
    height: 250px;
    aspect-ratio: 4/3;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}

.news .video .bg {
    height: 100%;
    margin-bottom: 0;
    z-index: 0;
}

.news .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.news .content {
    padding: 25px;
    padding-bottom: 45px;
    margin-top: -40px;
    background-color: #F5F5F5AA;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px #D1D3D488;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.news .content h4 a {
    text-transform: uppercase;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.news .content .date {
    display: block;
    font-size: 0.875rem;
    margin: 0.625rem 0;
}

/* FOOTER */

footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 160px 40px 100px;
}

footer .leaf {
    position: absolute;
    top: -20vh;
    left: -13vw;
    width: 48vw;
    z-index: 2;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: 160px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
}

footer .bg {
    object-fit: auto;
    height: auto;
    object-position: top center;
}

footer .content {
    color: white;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer .item .logo {
    width: 200px;
    margin-bottom: 30px;
}

footer .item {
    display: flex;
    flex-direction: column;
    min-width: 17%;
    max-width: 22%;
}

footer .item:first-of-type p {
    font-size: 0.875rem;
}

footer .item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none;
}

footer .item p,
footer .item a {
    display: block;
    width: fit-content;
    font-size: 16px;
    color: white;
    margin-bottom: 0;
}

footer li {
    margin-bottom: 10px;
    list-style: none;
    margin-left: 0;
}

footer .item a img {
    width: 32px;
    margin-bottom: 0;
}

footer .item .raccoon {
    margin-top: 20px;
}

footer .item .raccoon a {
    margin-bottom: 0;
}

.background {
    padding-top: calc(10vh + 120px);
    margin-top: -10vh;
    position: relative;
    padding-bottom: 25vh;
}

.background .bg {
    object-position: top;
}

.nav-line {
    display: flex;
    justify-content: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #D1D3D4;
    position: sticky;
    top: 4.45vw;
    z-index: 10;
    background: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-line button {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.6875rem 0 0.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    margin-bottom: -1px;
}

.nav-line button.active {
    border-color: var(--primary);
    color: var(--primary);
}

.products-list {
    margin-bottom: 80px;
}

.products-list .products {
    padding-top: 80px;
    padding-bottom: 0;
}

.products-list .products .container > h3 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #D8D8D8;
    margin-bottom: 2.5rem;
}

.hero h4 {
    font-size: 1.75vw;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    margin-top: 7vh;
}

.hero .container h4 + h1 {
    margin-top: 0;
}

.product .image {
    position: relative;
    margin-bottom: 110px;
}

.product .image img {
    display: block;
    width: 90%;
    margin: 0 auto;
    object-fit: contain;
}

.product-image .card-wrapper {
    position: absolute;
}

.image-with-custom-cards.product-image .container .card-wrapper .card {
    background-color: #F7F7F7AA;
    max-width: 300px;
    color: var(--primary);
    padding: 1.25rem;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.image-with-custom-cards.product-image .card-wrapper.active .card {
    transform: translate(-50%, -50%) scale(1);
}

.product-image .card p {
    font-size: 1.375rem;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

.product-image .card-wrapper .circle {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s;
}

.product-image .card-wrapper.active .circle {
    opacity: 0;
}

.product-image .card-wrapper .circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.product .desc {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.product .desc p {
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.c2a {
    margin: 40px 0;
}

.c2a .price {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.c2a .buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.c2a .buttons .quantity {
    height: 2.85rem;
    width: 9.53rem;
    border-radius: 1.25rem;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: white;
}

.gallery {
    padding: 0;
    width: calc(100% + 10vw);
    margin-left: -5vw;
}

.gallery .swiper {
    width: 100%;
    aspect-ratio: 4/1;
}

.gallery .swiper-slide img,
.gallery .swiper-slide video {
    border-radius: 1.25rem;
    transition: transform 0.6s;
}

.gallery .swiper-slide video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery .swiper-slide .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery .swiper-slide .video-wrapper::before {
    width: 80px;
    height: 80px;
    content: "";
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../images/play.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
}

.gallery .swiper-slide:not(.swiper-slide-next) img,
.gallery .swiper-slide:not(.swiper-slide-next) video {
    transform: scale(0.85);
}

.gallery .buttons {
    display: flex;
    gap: 5rem;
    justify-content: center;
    margin: 3rem 0;
}

.gallery .buttons .circle-link {
    position: static;
    cursor: pointer;
    box-shadow: 0 0 12px 0 #D9D9D9BB;
    transform: none;
}

.gallery .buttons .swiper-prev svg {
    transform: rotate(180deg);
}

.details .swiper-slide {
    padding: 40px 40px 0;
}

.details .swiper-slide .text {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.details .swiper-slide .text li {
    width: fit-content;
    margin: 0 auto;
}

section.nav-line {
    margin: 5rem auto;
    padding: 0;
}

.spacer {
    margin: 10vh 0;
    pointer-events: none;
}

.sticky-wrapper .services:nth-of-type(2n+1) .bgshape {
    right: auto;
    left: 0;
    transform: scaleX(-1);
}

.basket {
    margin-top: 0;
}

.basket .item {
    background-color: #F5F5F566;
    box-shadow: 0 2px 12px 1px #D1D3D488;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
}

.basket .item .left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.basket .item .left img {
    width: 290px;
    height: 125px;
    object-fit: contain;
}

.basket .item .left .name {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.basket .item .right .numbers {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.basket .item .right .delete img {
    height: 2rem;
}

.basket .quantity {
    border-color: var(--primary);
}

.basket .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    white-space: nowrap;
}

.basket .summary {
    margin: 4rem 0;
    font-size: 1.75rem;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket .summary .price {
    font-size: 2.25rem;
}

.basket .buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.centered-text .container {
    text-align: center;
    max-width: 950px;
}

.centered-text .container p {
    font-size: 1.125rem;
    font-weight: 500;
}

.image-with-cards .container {
    position: relative;
    max-width: 1140px;
    margin-bottom: -5%;
    transform: scale(0.8);
}

.image-with-cards .container img {
    display: block;
    width: 100%;
    border-radius: 1.25rem;
}

.image-with-cards .container .card {
    background-color: #FAFAFACC;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    width: 350px;
    padding: 1.25rem;
    margin-bottom: 75px;
}

.image-with-custom-cards .container .card {
    position: absolute;
    transform: translate(-50%, -50%);
}

.image-with-cards .container .left {
    position: absolute;
    top: 0;
    left: 0;
}

.image-with-cards .container .right {
    position: absolute;
    top: 60px;
    right: 0;
}

.image-with-cards .container .card {
    color: var(--primary);
}

.full-width-with-card {
    padding: 0;
}

.full-width-with-card img,
 .full-width-with-card video {
    width: 100%;
    min-height: 300px;
    aspect-ratio: 2/1;
    object-fit: cover;
    -webkit-mask-image: url("../images/contentplus-mask-1.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/contentplus-mask-1.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.full-width-with-card .card {
    max-width: 950px;
    padding: 3rem;
    margin: -20vw auto 0;
}

.items-with-icons {
    padding: 0;
}

.items-with-icons .header {
    padding: 9rem 40px 6rem;
    background: radial-gradient(#52C4C6, #31A6A5);
    -webkit-mask-image: url("../images/header-mask.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/header-mask.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.items-with-icons .header h2 {
    margin: 0;
    color: white;
}

.items-with-icons .items {
    gap: 4rem;
    margin-top: -3.5rem;
    padding: 0 40px;
}

.items-with-icons .item {
    min-width: auto;
    flex: 1 1 20%;
    text-align: center;
}

.items-with-icons .item .icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: #F5F5F5AA;
    box-shadow: 0 2px 12px 1px #D1D3D488;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.items-with-icons .item .icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    margin-bottom: 0;
}

.items-with-icons .item p {
    font-weight: 500;
}

.two-text-with-image .container {
    max-width: 1050px;
}

.two-text-with-image .flex-content {
    gap: 0;
    margin-bottom: 60px;
}

.two-text-with-image .flex-content:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.two-text-with-image .image {
    width: 30%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 1.25rem;
}

.two-text-with-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-text-with-image .content {
    width: calc(75% + 60px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F5F5F5AA;
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px 1px #D1D3D488;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.two-text-with-image .flex-content:nth-of-type(2n) .content {
    margin-right: -60px;
    padding-right: 120px;
}

.two-text-with-image .flex-content:nth-of-type(2n + 1) .content {
    margin-left: -60px;
    padding-left: 120px;
}

.process .list {
    width: 70%;
    max-width: 750px;
    margin: 0 auto;
}

.process .item {
    position: relative;
    margin-bottom: 60px;
}

.process .item .number {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/step-bg.png") no-repeat center / contain;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 6rem;
    font-weight: 800;

}

.process .item:nth-of-type(2n+1) .number {
    left: 0;
    transform: translate(-60%, -50%);
    padding-left: 70px;
}

.process .item:nth-of-type(2n) .number {
    right: 0;
    transform: translate(60%, -50%);
    justify-content: flex-end;
    padding-right: 60px;
}

.process .item h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.about-1 .flex-content {
    gap: 0;
    align-items: flex-start;
}

.about-1 .flex-content .content {
    padding: 60px;
    padding-right: 120px;
    width: 65%;
    margin-right: -60px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.about-1 .flex-content .image {
    width: 45%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 1.25rem;
}

.about-1 .flex-content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video {
    padding: 0;
}

.about-video video {
    width: 100%;
    min-height: 320px;
    aspect-ratio: 16/7;
    object-fit: cover;
    -webkit-mask-image: url("../images/video-mask.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/video-mask.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    background: linear-gradient(to bottom, #31A6A599 60%, #84D90A32 100%);
}

.about-video .card {
    margin: -140px auto 0;
    padding: 2.5rem;
    max-width: 850px;
}

.about-1.reverse .content {
    padding-left: 120px;
    padding-right: 60px;
    margin-left: -60px;
    margin-right: 0;
}

.steps .item {
    display: flex;
    position: relative;
    margin-bottom: 2rem;
}

.steps .item:nth-of-type(2n) {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.steps .item .card {
    width: 27%;
    padding: 1.25rem;
    border-radius: 1rem;
    margin-left: auto;
    margin-right: -2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 1;
}

.steps .item:nth-of-type(2n) .card {
    margin-left: -2rem;
    margin-right: 0;
    padding-left: 2rem;
}

.steps .item .card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.steps .item img {
    width: 20%;
    aspect-ratio: 5/4;
    object-fit: cover;
    border-radius: 1rem;
}

.steps .item .year {
    position: absolute;
    top: 50%;
    background: url("../images/year-bg.png") no-repeat center / contain;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps .item:nth-of-type(2n) .year {
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps .item:nth-of-type(2n + 1) .year {
    right: 50%;
    transform: translate(50%, -50%);
}

.steps .item .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    /* height: 100%; */
    background-color: var(--primary);
    z-index: -1;
}

.steps .item:last-of-type .line {
    display: none;
}

.reviews {
    padding: 0;
}

.reviews .image {
    -webkit-mask-image: url("../images/reviews-mask.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/reviews-mask.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    width: 100%;
    min-height: 340px;
    aspect-ratio: 2/1;
    max-height: 768px;
    margin-top: -60px;
}

.reviews .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews .image .layer {
    background: linear-gradient(to bottom, #31A6A599 0%, #84D90A32 100%);
    position: absolute;
    z-index: 2;
}

.reviews .container {
    margin-top: -23vw;
    padding: 4rem 0 5rem;
    position: relative;
    z-index: 1;
}

.reviews .swiper {
    max-width: 850px;
    margin: 0 auto;
}

.reviews .swiper-wrapper {
    align-items: center;
}

.reviews h2 {
    color: white;
    margin-bottom: 3.5rem;
}

.reviews .swiper-prev,
.reviews .swiper-next {
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.reviews .swiper-prev {
    left: -30px;
}

.reviews .swiper-prev svg {
    transform: rotate(180deg);
}

.reviews .swiper-next {
    left: auto;
    right: -30px;
}

.reviews .swiper-slide p {
    font-size: 1.125rem;
    font-weight: 500;
}

.reviews .swiper-slide h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.contact-subpage {
    padding: 0;
}

.contact-subpage .container {
    max-width: 950px;
    padding: 0 20px;
}

.contact-subpage .socials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 5rem 0 2rem;
}

.contact-subpage .map {
    -webkit-mask-image: url("../images/video-mask.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("../images/video-mask.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    width: 100%;
    min-height: 320px;
    aspect-ratio: 10/4;
}

.contact-subpage .map iframe {
    width: 100%;
    height: 120%;
    margin-top: -80px;
}

.contact-subpage form {
    max-width: 950px;
    margin: -140px auto 0;
    padding: 40px 100px;
}

.contact-subpage form.bluroff {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.faq h3 {
    font-size: 5rem;
    color: #D7D7D7;
    font-weight: 700;
}

.faq .item {
    padding: 0;
    margin-bottom: 2rem;
}

.faq .item .header {
    cursor: pointer;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .item .header h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0;
}

.faq .item .header img {
    width: 1.5rem;
    transition: transform 0.3s;
}

.faq .item.active .header img {
    transform: rotate(180deg);
}

.faq .item .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0, 0.7, 0.3, 1);
}

.faq .item .content .inner {
    padding: 0 2rem 2rem;
}

.product-image h3 {
    text-transform: none;
    margin-bottom: 0;
}

.sticky-wrapper .spacer {
    height: 20vw;
    margin: 0;
}

@media (max-width: 767px) {

    p,
    li,
    a {
        font-size: 0.875rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    h5, h6 {
        font-size: 0.875rem;
    }
    
    section {
        margin: 60px auto;
        padding: 0 20px;
    }
    
    ul, ol {
        margin-bottom: 1rem;
    }
    
    .article h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .article h3 {
        font-size: 1.5rem;
    }
    
    .article h4 {
        font-size: 1.25rem;
    }
    
    .article h5 {
        font-size: 1rem;
    }
    
    .article h6 {
        font-size: 0.875rem;
    }
    
    .article img {
        margin: 1rem 0;
        max-height: 600px;
    }
    
    .primary-link,
    .btn-1,
    .btn-2 {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem 0.6875rem;
    }
    
    .primary-link.center,
    .btn-1,
    .btn-2 {
        margin: 2rem auto 0;
    }
    
    .vbox-close {
        padding: 20px !important;
        top: 5px !important;
        right: 5px !important;
    }
    
    .vbox-next {
        right: 25px !important;
    }
    
    .vbox-prev {
        left: 25px !important;
    }

    .relative {
        width: 87%;
        margin: 0 auto;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 22px !important;
    }

    .swiper-button-prev {
        left: -36px !important;
    }

    .swiper-button-next {
        right: -36px !important;
    }

    .card {
        padding: 20px;
    }

    .items {
        gap: 20px;
    }

    .items .item {
        width: 100%;
    }

    /******************/

    .hero .content,
    .hero.main-hero .content {
        min-height: 60svh;
        padding: 70px 20px;
        -webkit-mask-size: 130% 100%;
        mask-size: 130% 100%;
    }

    .hero .container .logo {
        height: 3vh;
    }

    .hero .container {
        padding: 40px 20px 50px;
        max-width: 100%;
    }

    .hero .container .nav {
        top: 20px;
        left: 20px;
        font-size: 0.75rem;
    }

    .hero .container h1 {
        font-size: 1.75rem;
    }

    .hero.main-hero .container h1 {
        font-size: 2rem;
        max-width: 100%;
        margin: 30px auto;
    }

    .hero .container p {
        font-size: 1rem;
        margin: 1.5rem auto;
        line-height: 1.3;
        max-width: 550px;
    }

    .hero .leaf {
        height: auto;
        max-width: 100vw;
        right: -30vw;
        top: 20px;
    }

    .hero .circle-link {
        width: 45px;
        height: 45px;
    }

    .hero .drone {
        bottom: -4vh;
        width: 66vw;
    }

    .about {
        padding-top: calc(13vh + 80px);
        padding-bottom: 60px;
    }

    .about .container p {
        font-size: 1rem;
    }

    .about .image {
        margin: 40px auto 0;
    }

    .about .image img {
        width: 100vw;
        max-width: 600px;
        max-height: calc(100% + 60px);
        object-fit: contain;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .about .image .right,
    .about .image .left {
        position: static;
    }

    .about .image .left {
        margin-top: 80px;
    }

    .about .image .mobile {
        display: block;
    }

    .about .image .desktop {
        display: none;
    }

    .about .image .card,
    .about .image .right .card {
        width: 100%;
        margin-bottom: 20px;
    }

    .about .image .right .card:last-of-type {
        margin-bottom: 50px;
    }

    .about .image .card h3 {
        font-size: 1.25rem;
    }

    .bgshape {
        top: 0;
        width: 50vw;
    }

    .services .bgshape.left {
        bottom: -60px;
    }

    .services .category,
    .news .category {
        margin-bottom: 3rem;
    }

    .services .category > h3,
    .news .category > h3 {
        font-size: 2.375rem;
        margin-bottom: -0.9375rem;
        text-align: center;
    }

    .services .item,
    .news .item,
    .services .item .bg {
        border-radius: 20px;
    }

    .services .item .content {
        padding: 20px 20px 45px;
        border-radius: 1rem;
    }

    .services .item h3 a {
        font-size: 1.25rem;
    }

    .circle-link {
        width: 45px;
        height: 45px;
    }

    .services .item {
        margin-bottom: 20px;
    }

    .services .primary-link.center {
        margin: 2rem auto 0;
    }

    .card-with-drone {
        padding-bottom: 230px;
    }

    .card-with-drone .folt {
        width: 100vw;
        max-width: 100%;
        margin: -80px auto;
    }

    .card-with-drone .container {
        padding: 20px;
        padding-bottom: 60px;
    }

    .card-with-drone .container h2 {
        font-size: 2rem;
    }

    .card-with-drone .container p {
        font-size: 1rem;
    }

    .card-with-drone .primary-link.center {
        margin-top: 20px;
    }

    .card-with-drone .drone {
       width: calc(100% - 40px);
       bottom: 160px;
    }

    .products {
        padding: 80px 20px 12vh;
    }

    .products .items .item {
        margin-bottom: 0.5rem;
    }

    .products .item .content {
        min-width: 282px;
        padding-top: 70px;
    }

    .contact .bg {
        min-height: 430px;
        margin: -160px -20px -300px;
    }

    .contact .container {
        padding: 35px 20px 20px;
        background-color: #F3F3F3CC;
    }

    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 1.75rem;
    }

    .contact .infos,
    .contact-subpage .infos {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    form {
        gap: 10px;
    }

    form input,
    form textarea,
    form select,
    form option {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    form select {
        background-size: 1rem;
    }

    .form-check-input+label {
        font-size: 0.75rem;
        line-height: 1.7;
    }

    .form-check:first-of-type {
        margin-top: 10px;
    }

    .contact form .primary-link {
        margin: 1.25rem auto 0;
    }

    footer {
        padding: 80px 20px 60px;
    }

    footer::after {
        top: 100px;
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    footer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    footer .item:first-of-type p {
        font-size: 13px;
        max-width: 200px;
    }

    footer .item .logos {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    footer .item a,
    footer .item p {
        margin-bottom: 6px;
        font-size: 14px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    footer .raccoon {
        margin-top: 30px;
    }

    footer .raccoon a {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0;
        text-align: center;
    }

    .background {
        padding-top: calc(10vh + 60px);
        padding-bottom: 60px;
    }

    .nav-line {
        top: 66px;
        gap: 0;
        flex-direction: column;
        border-bottom: none;
    }

    .nav-line button {
        font-size: 1.125rem;
        border-bottom: .5px solid #D1D3D4;
    }

    .products-list {
        margin-bottom: 40px;
    }

    .products-list .products {
        padding-top: 40px;
    }

    .products-list .products .container > h3 {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
        color: #D6D6D6;
        text-align: center;
    }

    .nav {
        width: calc(100% - 40px);
        gap: 0.375rem;
    }

    .nav a {
        font-size: 0.75rem;
    }

    .hero h4 {
        font-size: 1rem;
    }

    .product .desc p {
        font-size: 1rem;
    }

    .c2a .price {
        font-size: 2rem;
    }

    .c2a .buttons .quantity {
        height: 2.5rem;
        width: 8.95rem;
    }

    .gallery {
        width: 100%;
        margin-left: 0;
    }

    .gallery .swiper {
        aspect-ratio: 16/10;
    }

    .gallery .swiper-slide {
        padding: 0 20px;
    }

    .gallery .swiper-slide .video-wrapper::before {
        width: 50px;
        height: 50px;
    }

    .gallery .swiper-slide:not(.swiper-slide-next) img,
    .gallery .swiper-slide:not(.swiper-slide-next) video {
        transform: scale(1);
    }

    .gallery .swiper-slide:not(.swiper-slide-active) img,
    .gallery .swiper-slide:not(.swiper-slide-active) video {
        transform: scale(0.85);
    }

    .gallery .buttons {
        gap: 2.5rem;
        margin: 2rem 0;
    }

    .details .nav-line {
        width: calc(100% + 40px);
        margin-left: -20px;
        position: static;
    }

    .details .swiper-slide {
        padding: 40px 0 0;
    }

    .basket .item {
        padding: 20px;
        margin-bottom: 1rem;
        border-radius: 20px;
        flex-direction: column;
        gap: 1.5rem;
    }

    .basket .item .left {
        gap: 1rem;
    }

    .basket .item .left img {
        width: 30%;
        height: auto;
    }

    .basket .item .left .name {
        font-size: 1.125rem;
    }

    .basket .item .right {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .basket .item .right .numbers {
        margin-bottom: 0;
        justify-content: center;
        gap: 1rem;
    }

    .basket .item .right .delete img {
        height: 1.5rem;
    }

    .basket .price {
        text-align: center;
        font-size: 1.25rem;
    }

    .basket .summary {
        font-size: 1.25rem;
        margin: 2rem 0;
    }

    .basket .summary .price {
        font-size: 1.375rem;
    }

    .basket .buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .basket .buttons .primary-link {
        width: 15rem;
        text-align: center;
    }

    .centered-text .container p {
        font-size: 1rem;
    }

    .image-with-cards .container {
        transform: none;
    }

    .image-with-cards .container img {
        margin-bottom: 1rem;
    }

    .image-with-custom-cards .container .card,
    .image-with-cards .container .card {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 1rem;
    }

    .image-with-cards .container .left,
    .image-with-cards .container .right {
        position: static;
    }

    .product-image .card-wrapper {
        position: static;
    }

    .image-with-custom-cards.product-image .container .card-wrapper .card {
        transform: none;
        max-width: 100%;
    }

    .product-image .card-wrapper .circle {
        display: none;
    }

    .product-image .card p {
        font-size: 1.125rem;
    }

    .full-width-with-card .card {
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .items-with-icons .header {
        padding: 6rem 20px 5rem;
    }

    .items-with-icons .items {
        gap: 1.5rem;
        margin-top: -2.5rem;
    }

    .items-with-icons .item {
        flex: 1 1 100%;
    }

    .items-with-icons .item .icon {
        width: 5rem;
        height: 5rem;
    }

    .items-with-icons .item p {
        font-size: 1rem;
    }

    .two-text-with-image .flex-content {
        flex-direction: column !important;
        margin-bottom: 40px;
    }

    .two-text-with-image .image {
        width: 100%;
        max-height: 340px;
    }

    .two-text-with-image .content {
        width: calc(100% - 40px);
        padding: 20px !important;
        margin: -30px auto 0 !important;
        text-align: center;
    }

    .process .list {
        width: 100%;
    }

    .process .item {
        margin-bottom: 40px;
    }

    .process .item:nth-of-type(2n+1) {
        margin-left: 70px;
    }

    .process .item:nth-of-type(2n) {
        margin-right: 70px;
    }

    .process .item .number {
        width: 120px;
        height: 80px;
        font-size: 3rem;
    }
    
    .process .item:nth-of-type(2n+1) .number {
        padding-left: 28px;
    }

    .process .item:nth-of-type(2n) .number {
        padding-right: 20px;
    }

    .process .item h3 {
        font-size: 1.25rem;
    }

    .about-1 .flex-content {
        flex-direction: column-reverse;
    }

    .about-1 .flex-content .content {
        padding: 20px;
        margin: -30px auto 0;
        width: calc(100% - 40px);
        text-align: center;
    }

    .about-1 .flex-content .image {
        width: 100%;
        max-height: 340px;
    }

    .about-video .card {
        padding: 20px;
        margin: -40px auto 0;
        width: calc(100% - 40px);
        text-align: center;
    }

    .about-1.reverse .flex-content {
        flex-direction: column;
    }

    .about-1.reverse .content {
        margin: -15px auto 0;
    }

    .steps .item,
    .steps .item:nth-of-type(2n) {
        flex-direction: column;
        margin-top: 7rem;
    }

    .steps .item:last-of-type {
        margin-bottom: 80px;
    }

    .steps .item .card,
    .steps .item:nth-of-type(2n) .card {
        width: 100%;
        margin: 0 0 -25px;
        padding: 25px;
        border-radius: 16px;
    }

    .steps .item .card h3 {
        font-size: 1.25rem;
    }

    .steps .item img {
        width: 100%;
        max-height: 360px;
        border-radius: 16px;
    }

    .steps .item:nth-of-type(2n) .year,
    .steps .item:nth-of-type(2n + 1) .year {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 100%;
        transform: translate(-50%, 10px);
        font-size: 1.5rem;
        padding: 1rem 2rem;
        z-index: 1;
    }

    .steps .item .line {
        left: 50%;
        top: -20px;
        /* height: calc(100% + 20px + 4rem); */
    }

    .reviews .container {
        padding: 40px 20px;
        width: calc(100% - 40px);
        margin: -160px auto 160px;
    }

    .reviews h2 {
        color: var(--primary);
        margin-bottom: 2.5rem;
        font-size: 1.875rem;
    }

    .reviews .swiper-slide p {
        font-size: 1rem;
        text-align: center;
    }

    .reviews .swiper-slide h4 {
        font-size: 1.125rem;
        text-align: center;
    }

    .reviews .swiper-prev,
    .reviews .swiper-next {
        top: calc(100% + 20px);
        transform: none;
        box-shadow: 0 2px 12px 1px #D1D3D488;
        z-index: 99;
    }

    .reviews .swiper-prev {
        left: 30%;
    }

    .reviews .swiper-next {
        right: 30%;
    }

    .contact-subpage .socials {
        gap: 0;
        justify-content: space-between;
        margin: 3rem 0;
    }

    .contact-subpage .map {
        -webkit-mask-size: 130% 100%;
        mask-size: 130% 100%;
    }

    .contact-subpage .map iframe {
        height: 110%;
        margin-top: -20px;
    }

    .contact-subpage form {
        margin: -30px auto 0;
        width: calc(100% - 40px);
        padding: 40px 20px 20px;
    }

    .contact-subpage h2 {
        margin-bottom: 1.5rem;
    }

    .faq h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .faq .item {
        margin-bottom: 1rem;
    }

    .faq .item .header {
        padding: 20px;
    }

    .faq .item .header h4 {
        font-size: 0.9125rem;
    }

    .faq .item .header img {
        width: 1rem;
    }

    .faq .item .content .inner {
        padding: 0 20px 20px;
    }


}

@media (min-width: 768px) and (max-width: 1023px) {
    
    section {
        margin: 80px 0;
    }

    h2 {
        font-size: 4.5rem;
    }

    .card {
        padding: 25px;
    }

    .hero .content {
        -webkit-mask-size: 130% 100%;
        mask-size: 130% 100%;
    }

    .hero .container h1 {
        font-size: 3rem;
    }

    .hero.main-hero .container h1 {
        font-size: 3rem;
    }

    .hero .container p {
        font-size: 1.5rem;
        max-width: 600px;
    }

    .hero .circle-link {
        width: 60px;
        height: 60px;
    }

    .hero .drone {
        bottom: -2vh;
    }

    .about .image .card {
        width: 340px;
        margin-bottom: 40px;
    }

    .about .image .right .card {
        margin-bottom: 40px;
    }

    .services .category > h3,
    .news .category > h3 {
        font-size: 3rem;
        margin-bottom: -1.125rem;
    }

    .products .item .content {
        width: 86%;
    }

    .contact h2 {
        font-size: 5rem;
        margin-bottom: 2rem;
    }

    .contact .container {
        padding: 50px;
    }

    .contact .infos {
        flex-direction: column;
    }

    footer {
        padding: 100px 40px 80px;
    }

    footer .leaf {
        top: 0;
    }

    footer .container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    footer .item {
        min-width: auto;
        max-width: 33%;
        flex: 1 1 33%;
    }

    footer .item:first-of-type {
        max-width: 100%;
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
    }

    footer .item:first-of-type img {
        display: block;
        margin: 0 auto 60px;
    }

    .hero .container .nav {
        top: 30px;
        left: 30px;
        font-size: 1rem;
        width: calc(100% - 60px);
    }

    .background {
        padding-top: 200px !important;
        margin-top: -200px;
        padding-bottom: 80px;
    }

    .nav-line {
        gap: 2.5rem;
    }

    .products-list .products .container > h3 {
        font-size: 3.5rem;
    }

    .product-image .card p {
        font-size: 1.25rem;
    }

    .gallery .swiper-slide:not(.swiper-slide-next) img, .gallery .swiper-slide:not(.swiper-slide-next) video {
        transform: scale(1);
    }
    
    .gallery {
        width: 100%;
        margin-left: 0;
        padding: 0 40px;
    }

    .details .nav-line {
        margin-left: -40px;
        width: 100vw;
    }

    .details .nav-line button {
        font-size: 1rem;
    }

    .hero h4 {
        font-size: 1.25rem;
    }

    .sticky-wrapper .spacer {
        height: 80px;
    }

    .basket .item .left img {
        width: 150px;
        height: 80px;
    }

    .hero .leaf {
        height: 100%;
        top: 40px;
    }

    .image-with-cards .container {
        transform: scale(1);
    }

    .image-with-cards .container .card {
        width: 320px;
        margin-bottom: 50px;
    }

    .image-with-cards .container .right {
        top: 40px;
    }

    .image-with-cards .container .card p {
        font-size: 0.875rem;
    }

    .full-width-with-card .card {
        margin-left: 40px;
        margin-right: 40px;
    }

    .items-with-icons .items {
        gap: 2rem;
    }

    .items-with-icons .item {
        flex: 1 1 45%;
    }

    .two-text-with-image .image {
        width: 35%;
    }

    .two-text-with-image .content {
        width: calc(70% + 40px);
        padding: 30px;
        margin-top: 0;
    }

    .two-text-with-image .flex-content:nth-of-type(2n) .content {
        margin-right: -40px;
        padding-right: 70px;
    }

    .two-text-with-image .flex-content:nth-of-type(2n + 1) .content {
        margin-left: -40px;
        padding-left: 70px;
    }

    .process .item .number {
        width: 200px;
        height: 133px;
        font-size: 4rem;
    }

    .process .item:nth-of-type(2n+1) .number {
        padding-left: 50px;
    }

    .process .item:nth-of-type(2n) .number {
        padding-right: 40px;
    }

    .about-1 .flex-content .content {
        padding: 30px 60px;
        margin-right: -30px;
    }

    .about-1 .flex-content .content p {
        font-size: 0.9375rem;
    }

    .about-video .card {
        padding: 30px;
        margin: -60px auto 0;
        width: calc(100% - 60px);
    }

    .about-1.reverse .content {
        padding-left: 60px;
        margin-right: 0;
        margin-left: -30px;
    }

    .steps .container {
        max-width: 550px;
    }

    .steps .item,
    .steps .item:nth-of-type(2n) {
        flex-direction: column;
        margin-top: 7rem;
    }

    .steps .item:last-of-type {
        margin-bottom: 80px;
    }

    .steps .item .card,
    .steps .item:nth-of-type(2n) .card {
        width: 100%;
        margin: 0 0 -25px;
        padding: 25px;
        border-radius: 16px;
    }

    .steps .item .card h3 {
        font-size: 1.25rem;
    }

    .steps .item img {
        width: 100%;
        max-height: 360px;
        border-radius: 16px;
    }

    .steps .item:nth-of-type(2n) .year,
    .steps .item:nth-of-type(2n + 1) .year {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 100%;
        transform: translate(-50%, 10px);
        font-size: 1.5rem;
        padding: 1rem 2rem;
        z-index: 1;
    }

    .steps .item .line {
        left: 50%;
        top: -20px;
        height: calc(100% + 20px + 4rem);
    }

    .reviews .container {
        padding: 40px;
        width: calc(100% - 40px);
        margin: -160px auto 160px;
    }

    .reviews .swiper-prev,
    .reviews .swiper-next {
        top: calc(100% + 30px);
        transform: none;
        box-shadow: 0 2px 12px 1px #D1D3D488;
        z-index: 99;
    }

    .reviews .swiper-prev {
        left: 30%;
    }

    .reviews .swiper-next {
        right: 30%;
    }

    .contact-subpage .map iframe {
        margin-top: -60px;
    }

    .contact-subpage form {
        width: calc(100% - 120px);
        margin: -80px 60px 0;
        padding: 40px 80px;
    }

    .contact-subpage .infos p,
    .contact-subpage .infos a {
        font-size: 1.125rem;
    }

    .contact-subpage form h2 {
        font-size: 4rem;
    }

}

@media (min-width: 1024px) and (max-width: 1279px) {
    .swiper-button-prev {
        left: -40px !important;
    }

    .swiper-button-next {
        right: -40px !important;
    }

    .products .item .content {
        width: 90%;
    }

    .news .items {
        gap: 30px;
    }

}

@media (min-width: 640px) {
    .container,
    .two-text-with-image .container,
    .about .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container,
    .two-text-with-image .container,
    .about .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container,
    .two-text-with-image .container,
    .about .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}