@font-face {
    font-family: "Nesatho";
    src: url(../fonts/Nesatho.otf);
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: "Titillium";
    src: url(../fonts/TitilliumWeb-Regular.ttf);
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Regular.ttf);
}

.swiper {
    width: 100%;
    height: 100%;
}

.hero__banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    image-rendering: optimizeSpeed;
}

.hero__content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    padding: 0 clamp(60px, 10vw, 150px);
}

.hero-content__title {
    color: white;
    font-family: Nesatho;
    font-size: 4rem;
    text-shadow: 0 0 30px #000b;
    margin: 0;
}

.hero-content__text {
    color: white;
    font-family: Titillium;
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
}

.hw-icon {
    aspect-ratio: 1;
    color: var(--primary-color);
    font-size: 4rem;
    margin: 0;
}

.hw-icon:hover {
    animation: rotate360 2.5s infinite linear;
}

@keyframes rotate360 {
    from {
        transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
    }
}

.brands-swiper {
    width: calc(100vw + 100px);
    position: relative;
    left: -50px;
    height: 250px;
    box-shadow: 0 0 10px -6px #000 inset;
    margin-bottom: 120px;
}

.brand-svg {
    fill: red;
}

.l1980 {
    background-color: #eff0ac;
    aspect-ratio: 1;
    mask-image: url(../svg/1980.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.d {
    background-color: #222;
    aspect-ratio: 1;
    mask-image: url(../svg/d.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.eel {
    background-color: #3f2240;
    aspect-ratio: 1;
    mask-image: url(../svg/eel.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.menston {
    background-color: #071b40;
    aspect-ratio: 1;
    mask-image: url(../svg/menston.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}




.hw-intro {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.hw-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hw-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.hw-text.strong {
    font-weight: 600;
    margin-top: 24px;
}


.section-header {
    position: relative;
    font-family: Montserrat;
    font-size: 3rem;
    display: inline-block;
    padding: 30px 60px;
    text-align: center;
}

.section-header::after,
.section-header::before {
    content: "";
    position: absolute;
    height: 8px;
    background-color: var(--primary-color);
}

.section-header::after {
    width: 210px;
    bottom: 0;
    right: 0;
}

.section-header::before {
    width: 110px;
    top: 0;
    left: 0;
}

/* .section-header-icon {
    color: var(--primary-color);
    rotate: -135deg;
    margin-right: 20px;
}

.section-subheader {
    text-indent: 20px;
    margin-top: 10px;
    font-family: Montserrat;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0 40px 15px 0;
    border-bottom: 7px var(--primary-color) solid;
} */

.about-context {
    padding: 20px 0;
    font-family: "Poppins";
    font-size: 1.35rem;
    text-align: justify;
    text-indent: 40px;
}

.about-context::first-letter {
    line-height: 1;
    font-size: 3.5rem;
    font-family: serif;
    color: var(--primary-color);
}