header {
    color: var(--white)
}

header .header-wrap .logo .black {
    fill: var(--white);
}

header .btnMenu svg path,
header .btnMenu svg path {
    stroke: var(--white);
}




.about-wrap {
    margin: -4rem;
}

@media (max-width:800px) {

    .about-wrap {
        margin: -4rem -2rem;
    }
}


/* #region INTRO */


.about-wrap section.intro {
    padding: 26rem 4rem 20rem;
    background: linear-gradient(to bottom, #000 0%, var(--red) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

@media (max-width: 800px) {
    .about-wrap section.intro {
        padding: 15rem 2rem 15rem;
    }

}

/* #endregion */




/* #region VISION */


section.vision {
    background-color: var(--offwhite);
    position: relative;
    overflow: hidden;
}


section.vision>.flex>* {
    width: calc(50% - 4rem);
}

section.vision .left {
    position: relative;
}

section.vision .left .bg {
    max-width: 55rem;
    padding-left: 6rem;
    position: absolute;
    margin-top: -30%;
    will-change: transform;

}

section.vision .left .bg img {
    display: block;
    width: 100%;
}

section.vision .right {
    padding: 15rem 4rem 15rem 0;
}

section.vision .right>* {
    max-width: 50rem;
}

section.vision .right .sml-title {
    color: var(--red);
}

section.vision .right p {
    color: var(--darkgray);
}


@media (max-width: 800px) {

    section.vision>.flex {
        flex-direction: column;
    }

    section.vision>.flex>* {
        width: 100%;
    }

    section.vision .right {
        padding: 20rem 2rem 6rem;
        max-width: 33rem;
    }

    section.vision .left .bg {
        max-width: 70%;
        padding-left: o;
        right: -3rem;
        position: absolute;
        margin-top: -30%;
        will-change: transform;
    }


}



/* #endregion */



/* #region HISTORY*/

section.history {
    background-color: var(--white);
    padding: 15rem;
    overflow: hidden;
}

section.history .sml-title {
    color: var(--red)
}

section.history>.flex>* {
    width: calc(50% - 4rem);
}

section.history .flex .left>* {
    max-width: 40rem;
}

section.history .list-wrap {
    position: relative;
    padding-left: 3.6rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

section.history .list-wrap::before {
    content: "";
    height: 150%;
    left: 0;
    position: absolute;
    top: 1rem;
    background-color: #d9d9d9;
    width: 2px;
}

section.history .list-wrap .list {
    position: relative;
}

section.history .list-wrap .list:before {
    content: "";
    top: 0.8rem;
    left: -4rem;
    width: 1rem;
    position: absolute;
    height: 1rem;
    border-radius: 1rem;
    background-color: var(--red);
}

section.history .list-wrap .list:after {
    content: "";
    top: 1.2rem;
    position: absolute;
    left: -3rem;
    width: 2.5rem;
    height: 1px;
    background-color: var(--red);
}


section.history .list-wrap .list .date {
    color: var(--red)
}

section.history .list-wrap .list .content {
    font-weight: 300;
}

@media (max-width: 800px) {
    section.history {
        padding: 6rem 2rem;
    }

    section.history>.flex {
        flex-direction: column;
    }

    section.history>.flex>* {
        width: 100%;
    }

    section.history>.flex>.left {
        max-width: 40rem;
    }
}

/* #endregion */


/* #region PARTNERS*/

section.partners {

    background-color: var(--offwhite);
    color: var(--black);
}

section.partners .sml-title {
    color: var(--gray)
}

section.partners>.flex {
    align-items: flex-end;
    padding: 15rem 15rem 10rem;
}

section.partners>.flex>* {
    width: calc(50% - 4rem);

}

section.partners>.flex>*>* {
    max-width: 50rem;
}

section.partners .swiper {
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
    padding-bottom: 4rem;
}

section.partners .swiper-wrapper {
    transition-timing-function: linear !important;
}


section.partners .swiper-wrapper .swiper-slide {
    width: fit-content;

    height: 12rem;
}

section.partners .swiper-wrapper .swiper-slide img {
    height: 100%;
    width: auto;
}


@media (max-width: 800px) {
    section.partners>.flex {
        padding: 6rem 2rem;
        align-items: flex-start;
        flex-direction: column;

    }

    section.partners>.flex>* {
        width: 100%;
        max-width: 40rem;
    }

    section.partners .swiper-wrapper .swiper-slide {
        height: 10rem;
    }
}

/* #endregion */