.section-about-hero {
    padding-bottom: 20vh;
}

.section-about-hero__content {
    max-width: 730px;
    width: 100%;
    margin: 0 auto 0;
}

.section-about-hero__wrapper {
    position: absolute;
    top: 50dvh;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 2;
    translate: 0 -50%;
}

.section-about-hero__text {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.section-about-hero__media {
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100vh;
    position: relative;
    z-index: -1;
}

.section-about-hero .lottie-people-inner {
    width: 180vh;
}

.section-about-hero .lottie-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #040404;
    transition: opacity 0.3s;
}

/* media queries START */
@media (min-width: 2000px) {
    .section-about-hero .lottie-people-inner {
        width: 100%;
    }
}

@media (max-width: 767.9px) {
    .section-about-hero {
        padding-bottom: 20vh;
    }
    .section-about-hero__text {
        font-size: 16px;
        line-height: 1.5;
    }
    .section-about-hero .lottie-people-inner {
        width: 180vh;
    }
}

@media (max-height: 1000px) {
    .section-about-hero {
        padding-bottom: 100vh;
    }
}

@media (max-height: 900px) {
    .section-about-hero .lottie-people-inner {
        width: 100%;
    }
}

@media (max-height: 700px) {
    .section-about-hero .lottie-people-inner {
        width: 100vw;
    }
}

@media (max-width: 1025px) and (max-height: 900px) {
    .section-about-hero .lottie-people-inner {
        width: 180vh;
    }
}

@media (max-height: 1024.9px) and (max-width: 1024.9px) and (orientation: landscape) {
    .section-about-hero {
        padding-bottom: 0;
        padding-top: 150px;
    }
    .section-about-hero__wrapper {
        position: static;
        translate: unset;
    }
    .section-about-hero__media {
        display: none;
    }
}
/* media queries END */