:root {
    --dark: #171717;
    --primary: #204F59;
    --lightgreen: #BCC9B8;
    --beige: #E7DFD4;
    --light: #F9F2EC;
}

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

html {
    scrollbar-width: none;
}

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

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

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;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 4.75rem;
    margin: 0;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

h2 {
    font-size: 4.25rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 2.5rem;
    width: fit-content;
    text-transform: uppercase;
    color: var(--primary);
}

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

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

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

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

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

p:last-child {
    margin-bottom: 0;
}

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

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

ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

.article h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.article h3 {
    font-weight: 600;
    color: var(--primary);
}

.article h4 {
    font-size: 1.25rem;
    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 {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin: 1.25rem 0;
    border-radius: 6px;
}

section {
    padding: 100px 40px 0;
    position: relative;
    max-width: 2560px;
}

.primary-link {
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    border-radius: 6px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid var(--primary);
    background-color: transparent;
}

.primary-link.outline.green {
    color: var(--primary);
}

.primary-link.outline.green:hover {
    background-color: var(--primary);
    color: white;
}

.primary-link.outline.white {
    background-color: transparent;
    border-color: white;
    color: white;
}

.primary-link.outline.white:hover {
    background-color: white;
    color: var(--primary);
}

.primary-link.fill.green {
    border: 2px solid var(--lightgreen);
    background-color: var(--lightgreen);
    color: white;
}

.primary-link.fill.green:hover {
    background-color: white;
    color: var(--lightgreen);
}

.primary-link.center {
    margin: 60px auto 0;
}

::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    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(--dark);
}

.rccookie-modal .modal-content {
    border-radius: 15px;
}

.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(--dark);
}

.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(--dark);
}

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

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

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;
}

/* CUSTOM MODAL */

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
    overflow-y: auto;
    padding: 20px;
}

.custom-modal.active {
    opacity: 1;
}

.custom-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-modal .modal-content {
    margin: 20px auto;
    width: 100%;
    max-width: 950px;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
}

.custom-modal .modal-content .header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--lightgreen);
    color: white;
}

.custom-modal .modal-content .header h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.custom-modal .modal-content .header .cancel {
    cursor: pointer;
    width: 24px;
}

.custom-modal form {
    padding: 30px 40px 40px;
}

.custom-modal form h4 {
    font-size: 1.25rem;
    text-transform: uppercase;
    width: 100%;
    color: var(--primary);
    margin-bottom: 0;
}

.custom-modal form label {
    font-weight: 500;
}

.custom-modal form input,
.custom-modal form textarea,
.custom-modal form select {
    border-color: var(--lightgreen);
}

.custom-modal form input:nth-of-type(3) {
    width: 100%;
}

.custom-modal form input.half {
    width: calc(50% - 0.625rem);
}

.custom-modal .calcPrice {
    color: var(--primary);
    margin-bottom: 0;
    text-transform: none;
}

.custom-modal form .primary-link {
    border-width: 1px;
}

/* 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 white;
    border-radius: 99px;
    transition: all 0.45s;
}

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

.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;
}

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

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

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

#sidebar,
.navbar-dropdown {
    width: 100%;
    position: fixed;
    right: -100vw;
    top: 70px;
    height: calc(100vh - 70px);
    z-index: 998;
    transition: right 0.45s ease-out;
    overflow: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 0 20px;
}

#sidebar  {
    background: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#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: 1.125rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--primary);
}

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

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

#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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFFEE;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 15px 20px 20px;
    transition: all 0.4s ease-in-out;
}

.desktop-navbar.active {
    margin-top: -124px;
}

.desktop-navbar .logo {
    height: 40px;
    margin: 0 auto 24px;
    padding-right: 9px;
}

 .logo {
    margin-top: -60px;
}

.desktop-navbar .logo img {
    height: 100%;
}

.desktop-navbar .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.desktop-navbar .links .link {
    position: relative;
}

.desktop-navbar .links .link:first-child {
    margin-right: 18px;
}

.desktop-navbar .links .link:nth-child(2) {
    margin-right: 18px;
}

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

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

.desktop-navbar .links .nav-item:hover {
    color: white;
}

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

.desktop-navbar .links .nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    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: 14px;
    margin-left: 8px;
    transition: transform 0.3s;
}

.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);
}

/* NAVBAR DROPDOWN */

.desktop-navbar .navbar-dropdown {
    position: absolute;
    top: 44px;
    left: 0;
    padding: 0;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    z-index: 998;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar-dropdown .container {
    display: block;
    padding: 0.5rem 0;
    background-color: #FFFFFFEE;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

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

.navbar-dropdown .container a {
    display: block;
    font-size: 16px;
    padding: 10px 20px;
    white-space: nowrap;
    color: var(--primary);
    font-weight: 500;
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 40px);
    max-width: 300px;
    background-color: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    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: -17.75px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 21px;
    background-image: url('../images/triangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

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

.desktop-modal h4 {
    margin: 0 0 20px;
    text-transform: none;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

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

.desktop-modal form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    margin-bottom: 15px;
    line-height: 1;
}

.desktop-modal .primary-link {
    background-color: var(--primary);
    margin: 0 auto;
}

.desktop-modal .primary-link:hover {
    background-color: var(--primary);
}

/* Állandó */

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

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

.flex-content.reverse {
    flex-direction: row-reverse;
}

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

.flex-content .side > img,
.flex-content .side .image img {
    width: 100%;
}

.card {
    display: block;
    border: none;
    border-radius: 10px;
}

.flex-content .primary-link {
    margin-top: 2rem;
}

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

.items .item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 28px);
    position: relative;
}

.items.two .item {
    width: calc(50% - 20px);
}

.items.four .item {
    width: calc(25% - 30px);
}

.items.six .item {
    width: calc(16.66% - 33.33px);
}

.items .item h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.item .link {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

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

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

.relative {
    position: relative;
}

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

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.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: 30px;
    font-weight: 600;
    color: white;
}

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

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

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

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

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

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

/* LOADER */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.end {
    opacity: 0;
}

.loader svg {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
}

/* HERO */

.hero {
    width: 100vw;
    position: relative;
    z-index: 2;
    margin: 0;
    margin-top: 122px;
    padding: 180px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero.main-hero {
    padding: 130px 40px 100px;
}

.hero .layer {
    background-color: #A1968B;
    opacity: 0.6;
}

.hero .container {
    position: relative;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 4.75rem;
}

.hero.main-hero h1 {
    margin-bottom: 2rem;
}

.hero h3 {
    font-style: italic;
    font-size: 2.75rem;
    text-transform: none;
}

.whyus .desc {
    margin-bottom: 60px;
    max-width: 950px;
}

.whyus .desc p {
    font-size: 1.125rem;
    font-weight: 500;
}

.whyus .first .left.side {
    width: 40%;
}

.whyus .first .right.side {
    width: 60%;
}

.whyus .side > img {
    border-radius: 6px;
}

.whyus .items .item {
    align-items: flex-start;
}

.whyus .items .item img {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.whyus .items .item:nth-child(5) img,
.whyus .items .item:nth-child(6) img {
    height: 3rem;
}

.whyus .items .item p {
    max-width: 320px;
}

.whyus .second {
    margin-top: 80px;
    gap: 100px;
}

.whyus .second h3 {
    font-weight: 600;
    color: var(--primary);
}

.whyus .second .left img {
    margin-top: 60px;
}

.whyus .second .right img {
    margin-bottom: 80px;
}

.inspirations .d-flex {
    margin-left: -40px;
    width: 100vw;
    padding-top: 20px;
}

.inspirations .item {
    width: 50%;
    height: 30vw;
    border-right: 2px solid var(--lightgreen);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inspirations .item:nth-child(2n) {
    border-right: none;
}

.inspirations .item .layer {
    background-color: var(--primary);
    opacity: 0.7;
    z-index: 0;
    transition: opacity 0.3s;
}

.inspirations .item:hover .layer {
    opacity: 0.55;
}

.inspirations .item img {
    transition: transform 0.8s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.inspirations .item:hover img {
    transform: scale(1.04);
}

.inspirations .item h3 a {
    color: white;
    font-size: 2.75rem;
    display: block;
    width: 20rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.inspirations .item .primary-link {
    font-weight: 600;
    opacity: 0;
    margin-top: -3rem;
    transition: background-color 0.3s, color 0.3s, opacity 0.3s, margin-top 0.4s cubic-bezier(0, 0.58, 0.42, 1);
}

.inspirations .item:hover .primary-link {
    opacity: 1;
    margin-top: 0;
}

.select {
    margin: 0;
    padding: 100px 40px;
    background-color: var(--lightgreen);
    color: white;
}

.select h2 {
    color: white;
}

.select .items {
    gap: 0;
    max-width: 1100px;
    margin: 60px auto 0;
}

.select .items.four .item {
    width: 25%;
    text-align: center;
    gap: 30px;
    border-right: 1px solid white;
    padding: 25px;
}

.select .items.four .item:nth-child(4n) {
    border-right: none;
}

.select .item img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0, 0.69, 0.4, 1);
}

.select .items .item h3 {
    margin-bottom: 0;
}

.select .item a {
    color: white;
    font-weight: 600;
}

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

.contact {
    position: static;
    padding: 0 40px 80px;
    margin-top: 80px;
}

.select + .contact,
.after-hero + .contact {
    margin-top: 0;
}

.contact .image {
    width: 100vw;
    margin-left: -40px;
    margin-bottom: -22vw;
}

.contact .container {
    background-color: white;
    box-shadow: 2px 4px 15px 4px #C8C8C832;
    padding: 60px 80px;
}

.contact .flex-content {
    align-items: flex-start;
}

.contact .left.side {
    width: 45%;
}

.contact .right.side {
    width: 55%;
}

.contact .left p,
.contact .left h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.contact h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.625rem;
}

.contact iframe {
    display: block;
    width: 100%;
    height: 390px;
    border-radius: 10px;
    margin-top: 1.5rem;
}

form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

form input,
form textarea,
form select {
    padding: 0.75rem 1rem;
    outline: none;
    background-color: white;
    color: var(--dark) !important;
    font-size: 1rem;
    width: 100%;
    resize: none;
    border: 1.75px solid var(--primary);
    border-radius: 0.375rem;
}

form input:nth-of-type(2),
form input:nth-of-type(3) {
    width: calc(50% - 0.625rem);
}

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(--dark);
    opacity: 0.5;
}

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

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

.form-group {
    margin-bottom: 0;
    width: 100%;
}

.form-group.half {
    width: calc(50% - 0.625rem);
}

.form-group:not(.half):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: 14px;
    margin-bottom: 0;
    color: var(--dark);
}

.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.75px 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: 14px 14px;
    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 .primary-link {
    margin-top: 1.25rem;
    position: relative;
    z-index: 2;
    border-width: 1px;
}

/* FOOTER */

footer {
    position: relative;
}

footer .content {
    padding: 80px 40px;
    color: white;
    background: var(--primary);
}

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

footer .item .logo {
    width: 100%;
    max-width: 220px;
}

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

footer .item h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-transform: none;
}

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

footer li {
    margin-bottom: 0.625rem;
    list-style: none;
    margin-left: 0;
}

footer .socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

footer .socials svg {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0;
}

footer .socials svg path {
    fill: white;
}

footer .socials #icon path {
    fill: var(--primary);
}

footer .item .raccoon {
    margin-top: 1.25rem;
}

footer .item .raccoon a {
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 500;
}

.nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    line-height: 1.15;
    color: white;
}

.nav .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.375rem;
}

.nav a {
    color: white;
}

.nav a:after {
    content: '/';
    margin-left: 0.375rem;
}

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

.nav a:last-of-type:after {
    content: '';
}

.after-hero {
    padding-top: 0;
    margin-top: -1px;
}

.after-hero .container {
    background-color: var(--lightgreen);
    color: white;
    padding: 70px 80px 80px;
}

.after-hero h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.after-hero .container p {
    font-weight: 500;
}

.after-hero .items {
    max-width: 900px;
    margin: 80px auto 0;
}

.after-hero .items .item {
    align-items: center;
    text-align: center;
}

.after-hero .items .item img {
    height: 5rem;
    margin-bottom: 1.25rem;
}

.after-hero .items .item h4 {
    margin-bottom: 0;
    font-weight: 500;
}

.after-hero.for-inspiration .container {
    padding-bottom: 19vw;
}

.for-inspiration + .gallery {
    margin-top: -19vw;
}

.gallery .next,
.gallery .prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99;
}

.gallery .next {
    right: 0;
}

.gallery .prev {
    left: 0;
}

.gallery .swiper-pagination {
    position: static;
    margin-top: 30px;
    font-size: 1.125rem;
}

.gallery .swiper-pagination-current {
    font-weight: 600;
}

.gallery1 .relative {
    width: 130vw;
    margin-left: calc(-15vw - 40px);
}

.gallery1 .swiper {
    height: 28vw;
    max-width: 2560px;
}

.gallery1 .swiper-slide {
    transition: transform 0.6s, height 0.6s;
    height: 100%;
}

.gallery1 .arrow img {
    width: 4.5rem;
}

.gallery1 .next {
    right: calc(15vw + 40px);
}

.gallery1 .prev {
    left: calc(15vw + 40px);
}

.after-hero a {
    color: white;
    text-decoration: underline;
}

.material h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.material .flex-content {
    gap: 20px;
}

.material .flex-content .left.side {
    padding-right: 40px;
}

.material:nth-child(odd) .flex-content {
    flex-direction: row-reverse;
}

.material:nth-child(odd) .flex-content .left.side {
    padding-right: 0;
    padding-left: 40px;
}

.material .side > img {
    border-radius: 6px;
}

.material .side p {
    margin-bottom: 0;
    font-weight: 300;
}

.material .items {
    gap: 20px;
    margin-top: 3rem;
    justify-content: flex-start;
}

.material .items.six .item {
    width: calc(16.66% - 16.66px);
    margin-bottom: 10px;
}

.material .items.six .item img {
    margin-bottom: 10px;
}

.hero + .products {
    padding-top: 0;
}

.products .header {
    background-color: var(--lightgreen);
    padding: 40px 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    color: white;
    margin-bottom: 40px;
}

.products .header img {
    height: 140px;
}

.products .header h3 {
    font-weight: 600;
    margin-bottom: 0;
}

.products .desc {
    font-weight: 500;
    margin: 30px 0 40px;
}

.products .items.four .item {
    box-shadow: 2px 4px 15px 4px #C8C8C820;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.products .items.four .item:hover {
    box-shadow: 2px 4px 15px 4px #C8C8C836;
}

.products .items.four .item img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0, 0.6, 0.4, 1);
}

.products .items.four .item:hover img {
    transform: scale(1.06);
}

.products .items.four .item .title {
    padding: 5px 20px 25px;
    font-weight: 600;
    text-align: center;
}

.products.material .header img {
    vertical-align: middle;
}

.products.material .header h3 {
    font-size: 1.625rem;
    margin-right: 80px;
}

.product-header {
    margin-top: 124px;
    background-color: var(--lightgreen);
    padding: 120px 40px 80px;
    color: white;
}

.product-header h1 {
    font-size: 3.5rem;
    max-width: 1000px;
}

.product-details {
    padding-top: 10px;
}

.product-details .left.side {
    width: 45%;
    margin-top: 60px;
}

.product-details .right.side {
    width: 55%;
}

.product-details .desc {
    margin-bottom: 40px;
}

.product-details .info {
    display: flex;
    justify-content: space-between;
    max-width: 460px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1.75px solid var(--beige);
}

.product-details .info:last-child {
    border-bottom: none;
}

.product-details .info .name {
    font-weight: 600;
}

.product-details .gallery {
    margin-top: 40px;
}

.product-details .gallery img {
    display: inline-block;
    height: 150px;
    border: 1px solid var(--lightgreen);
    border-radius: 6px;
    margin-right: 20px;
    max-width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.whyus .buttons {
    display: flex;
    margin-top: 80px;
    gap: 40px;
    justify-content: center;
}

.whyus .buttons a {
    width: 17rem;
    padding: 0.75rem 0;
    text-align: center;
}

.hero + .contact .image,
.hero + .contact .container h2 {
    display: none;
}

.hero + .contact .container {
    box-shadow: none;
    padding: 0;
}

.after-hero + .whyus {
    padding-top: 0;
}

@media (min-width: 1024px) {
    .gallery1 .swiper-slide:not(.swiper-slide-next) {
        transform: scale(0.9);
        height: 85%;
    }
}

@media (max-width: 1279px) {

    .desktop-navbar {
        height: 70px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }

    .desktop-navbar .container {
        max-width: 100%;
        position: relative;
        width: auto;
        margin: 0;
    }

    .desktop-navbar .logo {
        height: 36px;
        margin: 0;
    }

    .desktop-navbar .links {
        display: none;
    }

    .desktop-navbar .open-sidebar {
        display: flex;
    }

    .desktop-navbar .buttons {
        gap: 15px;
        position: static;
    }

    .desktop-navbar .buttons a {
        display: none;
    }

    .desktop-navbar .buttons svg {
        height: 28px;
    }

    .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: none;
        right: 36px;
    }

    .desktop-modal .cancel {
        top: 14px;
    }

    #sidebar .navbar-dropdown {
        top: 0;
        background-color: #FFFFFFEF;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    #sidebar .navbar-dropdown .container {
        box-shadow: none;
        background-color: transparent;
    }

    #sidebar .navbar-dropdown .arrow {
        width: 14px;
        height: 24px;
        object-fit: contain;
        cursor: pointer;
        margin: 20px 0 0;
        display: block;
    }

    #sidebar .navbar-dropdown .container {
        padding: 0 0 40px;
        gap: 20px;
        flex-direction: row;
        align-items: auto;
        justify-content: center;
        max-height: none;
        align-items: initial;
    }

    #sidebar .navbar-dropdown .container .item {
        width: 100%;
    }

    #sidebar .navbar-dropdown .container a {
        font-size: 1.125rem;
        font-weight: 500;
        padding: 0.75rem 0;
        text-align: center;
    }

}

@media (max-width: 767px) {

    p,
    li,
    a {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2.25rem;
        margin-bottom: 1.75rem;
    }

    h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    h5,
    h6 {
        font-size: 0.875rem;
    }

    section {
        padding: 40px 20px 0;
    }

    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: 450px;
    }

    .primary-link {
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem 0.75rem;
    }

    .primary-link.center {
        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;
    }

    .flex-content,
    .flex-content.reverse {
        flex-direction: column-reverse;
        gap: 20px;
    }

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

    .flex-content .primary-link {
        margin-top: 1.25rem;
    }

    .items {
        gap: 20px;
    }

    .items .item,
    .items.two .item {
        width: 100%;
    }

    .items .item h3 {
        font-size: 1.125rem;
        margin-bottom: 1.125rem;
    }

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

    .hero {
        margin-top: 70px;
    }

    .hero.main-hero {
        padding: 60px 20px 40px;
    }

    .hero h1 {
        font-size: 2.125rem;
        line-height: 1.25;
    }

    .hero h3 {
        font-size: 1.4375rem;
    }

    .whyus .desc p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .whyus .flex-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .whyus .first .left.side,
    .whyus .first .right.side {
        width: 100%;
        gap: 30px;
    }

    .whyus .items .item {
        align-items: center;
        text-align: center;
    }

    .whyus .side img {
        max-height: 300px;
    }

    .whyus .flex-content.second .left.side {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .whyus .second {
        margin: 40px 0 20px;
    }

    .whyus .second .left img {
        margin-top: 0;
    }

    .whyus .second .right img {
        margin-bottom: 30px;
    }

    .inspirations .d-flex {
        flex-direction: column;
        margin-left: -20px;
        padding-top: 10px;
    }

    .inspirations .item {
        width: 100%;
        height: 60vw;
        border-right: none;
        border-bottom: 2px solid var(--lightgreen);
    }

    .inspirations .item:nth-child(2n) {
        border-bottom: none;
    }

    .inspirations .item h3 a {
        font-size: 2rem;
        width: 100%;
    }

    .inspirations .item .primary-link {
        margin-top: -4rem;
    }

    .select {
        padding: 40px 20px;
    }

    .select .items {
        margin: 40px auto 0;
    }

    .select .items.four .item {
        width: 50%;
        text-align: center;
        gap: 20px;
        border-bottom: 1px solid white;
        padding: 18px;
    }

    .select .items.four .item:nth-child(2n) {
        border-right: none;
    }

    .select .items.four .item:nth-child(n+3) {
        border-bottom: none;
    }

    .select .item img {
        height: 80px;
    }

    .select .item h3 {
        line-height: 1.15;
    }

    .contact {
        padding: 0 20px 40px;
        margin-top: 40px;
    }

    .contact .image {
        margin-left: -20px;
        margin-bottom: -10vw;
    }

    .contact .container {
        padding: 30px 20px;
    }

    .contact .flex-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact .left.side,
    .contact .right.side {
        width: 100%;
    }

    .contact .left p,
    .contact .left h4,
    .contact .left a {
        font-size: 1rem;
    }

    .contact h3 {
        font-size: 1.375rem;
    }

    .contact iframe {
        height: 230px;
    }

    form {
        gap: 0.625rem;
    }

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

    form input:nth-of-type(2),
    form input:nth-of-type(3) {
        width: 100%;
    }

    form select {
        background-size: 1rem;
    }

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

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

    .form-group.half {
        width: 100%;
    }

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

    footer .content {
        padding: 40px 20px;
    }

    footer .container {
        flex-direction: column;
        gap: 30px;
        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 .logo {
        width: 180px;
        margin-bottom: 0;
    }

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

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

    footer .item a,
    footer .item p {
        margin-bottom: 6px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    footer .socials a {
        width: fit-content;
    }

    footer .socials {
        justify-content: center;
    }

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

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

    .hero {
        padding: 75px 20px 55px;
    }

    .nav {
        padding: 0 20px;
        font-size: 0.875rem;
        top: 20px;
    }

    .after-hero .container {
        padding: 30px 20px;
    }

    .after-hero h2 {
        font-size: 1.625rem;
    }

    .after-hero .items {
        margin: 40px auto 0;
        gap: 16px;
    }

    .after-hero .items .item {
        width: calc(50% - 8px);
        margin-bottom: 15px;
    }

    .after-hero .items .item img {
        height: 3rem;
    }

    .after-hero .items .item h4 {
        font-size: 0.875rem;
    }

    .after-hero.for-inspiration .container {
        padding-bottom: 20px;
    }

    .for-inspiration + .gallery {
        margin-top: 0;
        padding-top: 40px;
    }

    .gallery .swiper-pagination {
        font-size: 1rem;
        margin-top: 20px;
    }

    .gallery1 .relative {
        width: 100vw;
        margin-left: -20px;
    }

    .gallery1 .swiper {
        height: 65vw;
    }

    .gallery1 .arrow img {
        width: 3rem;
    }

    .gallery1 .next {
        right: 20px;
    }

    .gallery1 .prev {
        left: 20px;
    }

    .material .flex-content .left.side {
        padding-right: 0;
    }

    .material:nth-child(odd) .flex-content {
        flex-direction: column-reverse;
    }

    .material:nth-child(odd) .flex-content .left.side {
        padding-left: 0;
    }

    .material .items {
        gap: 15px;
        margin-top: 2rem;
    }

    .material .items.six .item {
        width: calc(33.33% - 10px);
        margin-bottom: 10px;
    }

    .material .items.six .item span {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .products .header {
        padding: 30px 20px;
        gap: 30px;
        margin-bottom: 30px;
    }

    .products .header img {
        height: 75px;
    }

    .products .header h3 {
        font-size: 1.5rem;
    }

    .products .desc {
        margin: 20px 0 30px;
    }

    .products .items.four {
        gap: 16px;
    }

    .products .items.four .item {
        box-shadow: 2px 4px 15px 4px #C8C8C820;
        border-radius: 6px;
        overflow: hidden;
        transition: box-shadow 0.3s;
        width: calc(50% - 8px);
        padding: 0 5px;
    }

    .products .items.four .item img {
        height: 120px;
    }

    .products.material .header {
        display: block;
    }

    .products.material .header h3 {
        display: inline-block;
        margin-right: 0;
        margin-left: 20px;
        font-size: 1.375rem;
    }

    .products.material .header img {
        height: auto;
        width: 80px;
    }

    .products.material .header h3:first-of-type {
        margin-bottom: 60px;
    }

    .product-header {
        margin-top: 70px;
        padding: 75px 20px 55px;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .product-details .left.side,
    .product-details .right.side {
        width: 100%;
        margin-top: 0;
    }

    .product-details .right.side {
        max-width: 320px;
        margin: 0 auto;
    }

    .product-details .desc {
        margin-bottom: 30px;
    }

    .product-details .info {
        font-size: 0.875rem;
    }

    .product-details .gallery img {
        height: 100px;
        margin-right: 14px;
        margin-bottom: 14px;
    }

    .custom-modal .modal-content .header {
        padding: 20px;
    }

    .custom-modal .modal-content .header h3 {
        font-size: 1.375rem;
        margin-top: 0.125rem;
    }

    .custom-modal .modal-content .header .cancel {
        width: 20px;
    }

    .custom-modal form {
        padding: 20px;
    }

    .custom-modal form h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .custom-modal form label {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .custom-modal form input.half {
        width: 100%;
    }

    .whyus .buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .whyus .buttons a {
        width: 14rem;
    }


}

@media (min-width: 767px) and (max-width: 1279px) {
    .desktop-navbar {
        padding: 0 40px;
        height: 90px;
    }

    .desktop-navbar .logo {
        height: 40px;
    }

    #sidebar,
    .navbar-dropdown {
        top: 90px;
        height: calc(100vh - 90px);
        padding: 10px 40px;
    }

    #sidebar .links a svg {
        right: 42px;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {

    
    section {
        padding: 80px 40px 0;
    }

    h2 {
        font-size: 3.25rem;
        margin-bottom: 3rem;
    }

    .flex-content {
        gap: 40px;
    }
    
    .items .item {
        width: calc(50% - 20px);
    }
    
    .swiper-button-prev {
        left: -7px;
    }
    
    .swiper-button-next {
        right: -7px;
    }

    h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
    
    /*********************************/
    
    .hero,
    .product-header {
        margin-top: 90px;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

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

    .contact .container {
        padding: 40px;
    }

    .gallery1 .swiper {
        height: 38vw;
    }

    .products.material .header {
        display: block;
    }

    .products.material .header img:first-of-type {
        margin-bottom: 40px;
    }

    .products.material .header h3 {
        display: inline-block;
        margin-right: 100px;
        font-size: 2rem;
        margin-left: 40px;
        margin-bottom: 40px;
    }

    
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .hero,
    .product-header {
        margin-top: 90px;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    
}

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

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

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

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