*, *::before,*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: 0 solid transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}


/* BURGER */

.hamburger {
    position: relative;
    display: none;
    width: 30px;
    height: 23px;
    transition: background-color 0.3s ease-in-out, outline 0.1s ease-in-out;
}

.menu-line {
    position: absolute;
    left: 0;
    width: 90%;
    height: 3px;
    opacity: 1;
    background-color: black;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, top 0.25s ease-in-out, bottom 0.25s ease-in-out;
}

.line-1 {
    top: 1px;
}

.line-2 {
    opacity: 1;
    top: 10px;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.line-3 {
    top: 19px;
}

.hamburger__active {
    width: 30px;
    height: 24px;
}

.hamburger__active .line-1 {
    width: 120%;
    top: 10px;
    transform: rotate(-135deg);
    transition: transform 0.25s ease-in-out, top 0.25s ease-in-out;
}

.hamburger__active .line-3 {
    width: 120%;
    top: 10px;
    transform: rotate(135deg);
}

.hamburger__active .line-2 {
    transform: translateX(250%);
    opacity: 0;
    transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.hamburger:focus-visible {
    outline: 2px solid red;
    outline-offset: 2px;
}

.hamburger:active:not(:focus-visible) .menu-line{
    background-color: red;
}
.hamburger::before:active:not(:focus-visible) .menu-line{
    background-color: red;
}

.stop-scroll {
    overflow: hidden;
}

/* header */

/*.header-list {*/
/*    margin-right: 50px;*/
/*    !*gap: 25px;*!*/
/*}*/

.header-link {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: black;
    padding: 5px;
    transition: color 0.3s ease;
}


.dropdown:hover .dropdown-menu {
    display: block;
}

.btn {
    padding: 10px 18px;
    font-size: 15px;
    background-color: #C00005;
    border-radius: 6px;
    border: none;
}

.btn-fill {
    color: white;
    background-color: #C00005;
    outline: 1px solid #C00005;

}

.btn-fill:hover {
    background-color: #AF0005;
    outline: #AF0005;
}

.btn-border {
    background-color: white;
    outline: 1px solid #C00005;
    color: #C00005;
}

.btn-border:hover {
    background-color: #AF0005;
    color: white;
    outline: white;
}

.btn-white {
    background-color: white;
    outline: none;
    color: black;
    font-weight: 600;
}

.btn-white:hover {
    background-color: #c7c7c7;
    color: black;
}

.hero-section {
    padding: 50px 0;
    background: url("../images/hero-bg.png") no-repeat top;
    background-size: cover;
}

.h2 {
    text-align: center;
    color: #2B2C34;
    font-size: 36px;
    font-weight: 700;
}

.h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 26px;
}

.desc {
    font-size: 18px;
    color: #2B2C34;
}

.btn-shadow {
    box-shadow: 0 0 64px 0 rgba(176, 0, 0, 0.30);
    font-size: 24px;
    padding: 10px 45px;
    font-weight: 600;
}

.select-menu {
    max-width: 330px;
    margin: 0 auto;
}
.select-menu .select-btn {
    display: flex;
    height: 45px;
    background: #fff;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;

}
.select-menu .options {
    position: absolute;
    width: 70px;
    overflow-y: auto;
    max-height: 100px;
    padding: 10px;
    margin-top: 50px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
}
.select-menu .options .option {
    display: flex;
    height: 20px;
    cursor: pointer;
    padding: 0 10px;
    border-radius: 2px;
    align-items: center;
    background: #fff;
}
.select-menu .options .option:hover {
    background: #f2f2f2;
}
.select-menu .options .option i {
    font-size: 25px;
    margin-right: 12px;
}
.select-menu .options .option .option-text {
    font-size: 14px;
    color: #333;
}

.select-btn i {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}
.select-menu.active .options {
    display: block;
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}

swiper-container {
    margin: 0 auto;
    width: 80%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/*.swiper-button-prev {*/
/*    background-image: url("data:image/svg+xml;charset=utf-8,<svg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'><path%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23444444'%2F><%2Fsvg>") !important;*/
/*}*/

/*.swiper-button-next {*/
/*    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23444444'%2F%3E%3C%2Fsvg%3E") !important;*/
/*}*/

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dropdown .options {
    position: absolute;
    top: 70px;
    width: 200px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.dropdown.active .options {
    display: block;
}

.dropdown .options a {
    display: flex;
    padding: 12px 20px;
    cursor: pointer;
}

.dropdown .options li {
    display: block;
    height: 50px;
}

.dropdown .options li:hover {
    background: #d9d9d9;
}

@media (max-width: 1024px) {

    .header {
        padding: 28px 0;
    }

    .header-logo-link {
        margin: 0;
        width: 150px;
    }

    .header-nav {
        position: fixed;
        right: 0;
        top: 0;
        width: 50%;
        max-width: 250px;
        height: 100vh;
        z-index: 1000;
        padding: 80px 40px 20px;
        border-radius: 0 0 32px 32px;
        background-color: white;
        overflow-y: auto;
        transform: translateX(120%);
    }

    .header-nav__visible {
        transform: none;
    }

    .hamburger {
        display: block;
        z-index: 2000;
    }

    .header-list {
        gap: 0;
        margin: 0;
        flex-direction: column;
    }

    .header-list-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .header-link {
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
    }

    .hero-section {
        padding: 50px 0;
        background: url("../images/hero-bg.png") no-repeat 60%;
        background-size: cover;
    }

    .h2 {
        font-size: 22px;
    }

    .h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .desc {
        font-size: 15px;
    }

    .btn-shadow {
        font-size: 18px;
        padding: 10px 45px;
    }

    swiper-container {
        width: 100%;
    }
}
