html {
    font-family: "Montserrat";
    background-color: #f1e0c5;
    color: #c9b79c;
    overflow: auto;
    scroll-behavior: smooth;
}
body {
    -ms-overflow-x: hidden;
    overflow-x: hidden;
}
body ::-webkit-scrollbar {
    height: 0;
    width: 0;
}

::-webkit-scrollbar-thumb {
    background: none;
}

::-webkit-scrollbar-track {
    background-color: inherit;
}
body {
    background-color: #f5ede0;
}
.header {
    background-color: rgba(255, 255, 255, 1);
    height: 60px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}
.header.active {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 990;
    background-color: #c9b79c;
    color: white;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    height: 60px;
}
.header.active a {
    transition:
        color 300ms linear,
        opacity 300ms linear;
}
.header.active a:hover {
    color: #71816d !important;
    opacity: 0.6 !important;
}
.header .header-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 30px;
}
.main {
    width: 100%;
    margin: 0 auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;

    -webkit-transition: opacity ease-in-out 0.3s;
    -moz-transition: opacity ease-in-out 0.3s;
    -o-transition: opacity ease-in-out 0.3s;
    transition:
        opacity ease-in-out 0.3s,
        transform ease-in-out 0.3s;
}
.mobile-menu.open {
    z-index: 99999;
    opacity: 1;
    pointer-events: auto;
}
.mobile-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #c9b79c;
    opacity: 0.6;
    z-index: 900;
}
.mobile-menu .mobile-list {
    position: fixed;
    padding: 42px 25px 25px;
    top: 0;
    right: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    background-color: #71816d;
    transition: transform ease-in-out 0.25s;
    transform: translateX(100%);
}

.mobile-menu.open .mobile-list {
    transform: translateX(0);
    z-index: 999;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.swiper-pagination-bullet-active-main {
    color: #71816d;
    background-color: #71816d;
}
.backdrop.backdrop--is-hidden {
    opacity: 0;
    pointer-events: none;
}
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    overflow-y: scroll;
    transition:
        opacity 500ms ease-in-out,
        transform 250ms ease-in-out;
}

.backdrop.backdrop--is-hidden .modal {
    transform: translate(-50%, -50%) scale(0.9);
}

.modal {
    position: absolute;
    top: 50%;
    overflow-y: auto;
    left: 50%;
    width: auto;
    height: auto;
    padding-bottom: 30px;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 500ms ease-in-out;
}
.modal__icon {
    width: 24px;
    height: 24px;
    color: #202124;
}
