body {
    overflow-y: hidden;
}
.overview {
    width: 100%;
}

.overview .hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/img/sc-overview-sky.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #3c96d2;
}

.overview .no-animation-landscape {
    display: none;
}

.overview .hero-section .title {
    position: absolute;
    bottom: 43px;
    left: 0;
    font-family: Obviously Wide Medium;
    font-size: 26px;
    line-height: 121%;
    padding-inline: 26px;
    color: var(--color-white);
}

.overview .introduction {
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
}

.overview .introduction-text {
    font-family: Obviously Wide Medium;
    font-size: 14px;
    line-height: 160%;
    padding-inline: 24px;
}

.overview .image-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.overview .image-section img {
    width: 100%;
    height: 262px;
    display: block;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 20px;
}

.overview .image-section .text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-inline: 24px;
}

.overview .image-section .text-container .quote {
    font-family: Arizona Light Italic;
    font-size: 18px;
    line-height: 145%;
}

.overview .image-section .text-container .quote-origin {
    font-family: Obviously Light;
    font-size: 12px;
    line-height: 221.5%;
}

.overview .logos-section {
    position: relative;
}

.overview .logos-section .floating-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.overview .logos-section .floating-content .lines-container {
    width: 100%;
    padding-inline: 24px;
    padding-top: 20px;
    font-family: Obviously Wide Medium;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
    transition: color 100ms;
    transition-delay: 200ms;
    white-space: pre-wrap;
}

body.show-scrollbar .overview .logos-section .floating-content .lines-container {
    padding-inline: 24px 19px;
}

.overview .logos-section .floating-content .lines-container.black-text {
    color: var(--color-black);
}

.overview .logos-swiper .screen {
    width: 100vw;
    height: 100vh;
}

.overview .logos-swiper .red-screen {
    background-color: var(--color-red);
}

.overview .logos-swiper .white-screen {
    background-color: var(--color-white);
}

.overview .logos-swiper .black-screen {
    background-color: var(--color-black);
}

.overview .logos-container .desktop-logos {
    display: none;
}

.overview .logos-container.on-screen-0 .screen-1,
.overview .logos-container.on-screen-0 .screen-2 {
    display: none;
}

.overview .logos-container.on-screen-1 .screen-0,
.overview .logos-container.on-screen-1 .screen-2 {
    display: none;
}

.overview .logos-container.on-screen-2 .screen-0,
.overview .logos-container.on-screen-2 .screen-1 {
    display: none;
}

.overview .logos-container {
    width: 100%;
}

.overview .logos-container .mobile-logos {
    margin-bottom: 30px;
}

.overview .logos-container .mobile-logos li {
    width: 75px;
    height: 40px;
}

.overview .logos-container .mobile-logos li img {
    width: 80%;
}

.overview .logos-container .marquee {
    --gap: 50px;
    width: 100%;
    display: flex;
    overflow: hidden;
    gap: var(--gap);
}

.overview .logos-container .marquee:not(:last-child) {
    margin-bottom: 20px;
}

.overview .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
}

.overview .marquee__content li {
    display: grid;
    place-items: center;
}

.logos-container .marquee:nth-child(even) .marquee__content {
    animation: rtlScroll 24s linear infinite;
}

.logos-container .marquee:nth-child(odd) .marquee__content {
    animation: ltrScroll 24s linear infinite;
}

.reduced-animation-logos-section {
    display: none;
}

/* Header and swiper variations */

body.show-scrollbar {
    overflow-y: overlay;
}

.app-header .header-container.scroll-down {
    display: none;
}

@media (min-width: 768px) {
    .overview .hero-section .title {
        font-size: 48px;
        line-height: 128.5%;
        bottom: 60px;
    }

    .overview .image-section img {
        height: 471px;
    }

    .overview .introduction-text {
        font-size: 24px;
    }

    .overview .image-section .text-container .quote {
        font-size: 30px;
    }

    .overview .image-section .text-container .quote-origin {
        font-size: 16px;
    }

    .overview .logos-section .floating-content .lines-container {
        padding-top: 39px;
        font-size: 30px;
    }

    .overview .logos-container .mobile-logos li {
        width: 144px;
        height: 68px;
    }

    .overview .logos-container .mobile-logos li img {
        width: 70%;
    }

    .overview .logos-container .marquee:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (min-width: 1194px) {
    .overview .hero-section .title {
        font-size: 60px;
        padding-inline: 50px;
        bottom: 50px;
    }

    .overview .introduction-text {
        padding-inline: 60px;
    }

    .overview .image-section {
        flex-direction: row;
    }

    .overview .image-section.image-2 {
        flex-direction: row-reverse;
    }

    .overview .image-section img {
        width: 519px;
        height: 100%;
    }

    .overview .image-section .text-container {
        padding-inline: unset;
        justify-content: center;
        gap: 15px;
        padding: 60px;
    }

    .overview .logos-container .mobile-logos {
        display: none;
    }

    .overview .logos-section .floating-content {
        flex-direction: row;
        align-items: start;
        gap: 25px;
        padding: 60px 50px 50px 60px;
    }

    body.show-scrollbar .overview .logos-section .floating-content {
        padding: 60px 45px 50px 60px;
    }

    .overview .logos-section .floating-content .lines-container {
        align-self: start;
        font-size: 32px;
        line-height: 121%;
        padding: unset;
        padding-top: 10px;
    }

    body.show-scrollbar .overview .logos-section .floating-content .lines-container {
        padding: unset;
        padding-top: 10px;
    }

    .overview .logos-section .floating-content .image-container {
        width: 115px;
        height: 60px;
        display: grid;
        place-items: center;
    }

    .overview .logos-section .floating-content .logos-container {
        width: unset;
    }

    .overview .logos-container .desktop-logos {
        display: grid;
        grid-template-columns: repeat(4, 115px);
        column-gap: 30px;
        row-gap: 45px;
        place-items: center;
    }

    .overview .logos-container .desktop-logos .logo {
        width: 80%;
    }
}

@media (min-width: 1300px) {
    .overview .logos-container .desktop-logos {
        column-gap: 70px;
        row-gap: 55px;
    }

    .overview .logos-container .desktop-logos .logo {
        width: 90%;
    }
}

@media (min-width: 1500px) {
    .overview .hero-section .title {
        padding-inline-start: 120px;
        padding-inline-end: 53px;
        bottom: 78px;
        font-size: min(5.2083vw, 100px);
        line-height: 118%;
    }

    .overview .introduction-text {
        width: 1320px;
        padding-inline: unset;
        font-size: 28px;
    }

    .overview .image-section img {
        width: 780px;
    }

    .overview .image-section .text-container {
        gap: 20px;
        padding-inline: 194px;
    }

    .overview .image-section .text-container .quote .quote {
        font-size: 36px;
    }

    .overview .image-section .text-container .quote .quote-origin {
        font-size: 20px;
    }

    .overview .logos-section .floating-content {
        padding: 118px 70px 80px 121px;
    }

    body.show-scrollbar .overview .logos-section .floating-content {
        padding: 118px 65px 80px 121px;
    }

    .overview .logos-container .desktop-logos {
        grid-template-columns: repeat(4, 140px);
        column-gap: 40px;
        row-gap: 55px;
    }
}

@media (min-width: 1680px) {
    .overview .logos-container .desktop-logos {
        grid-template-columns: repeat(4, 165px);
        column-gap: 70px;
        row-gap: 50px;
    }

    .overview .logos-section .floating-content {
        height: min-content;
        top: 50%;
        transform: translateY(-50%);
        padding: unset;
        padding-inline: 121px 70px;
    }

    body.show-scrollbar .overview .logos-section .floating-content {
        padding: unset;
        padding-inline: 121px 65px;
    }

    .overview .logos-section .floating-content .lines-container {
        font-size: 38px;
    }

    .overview .logos-section .floating-content .image-container {
        width: 145px;
        height: 80px;
    }
}

@keyframes rtlScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@keyframes ltrScroll {
    from {
        transform: translateX(calc(-100% - var(--gap)));
    }
    to {
        transform: translateX(0);
    }
}
