/* @group About Us Header
-------------------- */
.about-us-header {
    position: relative;
    --lavanda: #D9E0FB;
    --lavanda-app: #7183FF;
    --blanco: #FFFFFF;
    --azul: #242954;
    --paragraph: #636587;
    --rojo: rgba(237, 86, 90, 1);
    padding: 10rem 0;
}

.about-us-header::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;

}

.about-us-header .title {
    padding-bottom: 2rem;
}

.about-us-header .title :is(h1, h2) {
    line-height: 1.2em;
    margin: 0 0 .4rem;
}

.about-us-header .title h1 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.4rem;
}

.about-us-header .title h2 {
    font-weight: 800;
    font-size: 4rem;
}

.about-us-header .title p {
    font-size: 1.6rem;
    line-height: 1.6em;
}
.about-us-header .title p a {
    color: var(--figma-lavanda-2);
    font-weight: 700;
}
.about-us-header .splide {
    padding: 0;
}

.about-us-header .splide .splide__pagination {
    position: static;
    display: flex !important;
}

.about-us-header .splide .splide__slide {
    position: relative;
    padding: 1.2rem;
}

.about-us-header .splide .splide__slide .img-box {
    width: 6rem;
    height: 6rem;
    border-radius: 100%;
    left: 2.8rem;
    top: 3rem;
    z-index: 1;
}

.about-us-header .splide .splide__slide .txt-box {
    background-color: var(--blanco);
    color: var(--paragraph);
    border-radius: 1rem;
    padding: 4.5rem 2.6rem 2.5rem;
    box-shadow: 0px 4px 12px #0000001A;
}

.about-us-header .splide .splide__slide .txt-box * {
    opacity: .5;
    transition: opacity .4s;
}

.about-us-header .splide .splide__slide.is-active .txt-box * {
    opacity: 1;
}

.about-us-header .splide .splide__slide .txt-box h3 {
    color: var(--azul);
    text-transform: capitalize;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.2em;
    letter-spacing: -.038em;
    margin: 0 0 1.7rem;
}

.about-us-header .splide .splide__slide .txt-box h4 {
    color: var(--lavanda-app);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.2em;
    margin: 0 0 1.7rem;
}

.about-us-header .splide .splide__slide .txt-box p {
    font-size: 1.4rem;
    line-height: 1.428em;
    margin: 0 0 1.7rem;
}

.about-us-header .splide .splide__slide .txt-box a {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5em;
    color: var(--lavanda-app);
    display: flex;
    align-items: center;
}

.about-us-header .splide .splide__slide .txt-box a :is(.icon-linkedin, .icon-arrow)::before {
    display: inline-block;
}

.about-us-header .splide .splide__slide .txt-box a .icon-linkedin::before {
    content: url('../../img/about/header/in.svg');
    margin-right: .75rem;
}

.about-us-header .splide .splide__slide .txt-box a .icon-arrow::before {
    content: url('../../img/about/header/arrow.svg');
    margin-left: .75rem;
    transition: all .4s;
}

.about-us-header .splide .splide__slide .txt-box a:hover .icon-arrow::before {
    translate: .5rem;
}

@media only screen and (min-width : 769px) {
    .about-us-header {
        padding: 5rem 0 9.5rem;
    }

    .about-us-header .splide .splide__pagination {
        margin-top: 3rem;
    }

    .about-us-header .splide .splide__slide {
        padding: 2.4rem;
    }

    .about-us-header .splide .splide__slide .txt-box {
        box-shadow: 0px 4px 24px #0000001A;
    }
}

@media only screen and (min-width : 769px) and (max-width : 1440px) {}

@media only screen and (min-width : 0) and (max-width : 769px) {}

/* @end
-------------------- */

.about-us-header .link-wrapper {
    margin-inline: auto;
    text-align: center;
    margin-top: 5rem;
}

.about-us-header .under-img {
    margin-bottom: -25rem;
    width: 100%;
}
.about-us-header.variant-two .under-img {
    margin: -11rem 0 0;
    width: 100%;
}
.about-us-header.variant-two .under-img {
pointer-events: none;
}
.about-us-header:has(.under-img) {
    margin-bottom: 15.5rem;
}
.about-us-header.variant-two:has(.under-img) {
    margin-bottom: 10rem;
}
@media only screen and (min-width : 0) and (max-width : 769px) {
    .about-us-header.variant-two .under-img {
        margin: -17rem 0 0;
        padding: 0 2rem;
    }
}
/* COLORS */

/* Blue */
.about-us-header:not(.bg-gray)::before {
    background: linear-gradient(90deg, rgba(53, 87, 143, 1) 0%, rgba(17, 32, 63, 1) 100%);
}

.about-us-header .title {
    color: var(--blanco);

}

.about-us-header .title h1 {
    color: var(--lavanda);
}



/* Gray */
.about-us-header.bg-gray {
    background: #f6f8f9;
}

.about-us-header.bg-gray .title {
    color: var(--paragraph);
}

.about-us-header.bg-gray .link-wrapper strong {
    font-weight: 600;
    color: var(--azul);
}

.about-us-header.bg-gray .title h1 {
    color: var(--rojo);
}

.about-us-header.bg-gray .title :is(h2, span) {
    color: var(--azul);
}

.about-us-header.bg-gray .title a {
    text-decoration: underline;
    color: var(--paragraph);
}