.section-scrolls,
.section-scrolls * {
    box-sizing: border-box;
}

.section-scrolls {
    position: relative;
    background: #070707;
    color: #ffffff;
    overflow-x: hidden;
}

.section-scrolls__bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    margin-left: -50vw;
    z-index: 0;
    overflow: hidden;
    background: #000000;
    pointer-events: none;
}

.section-scrolls.is-fixed .section-scrolls__bg {
    position: fixed;
    top: 0;
    left: 50%;
}

.section-scrolls.is-after .section-scrolls__bg {
    top: auto;
    bottom: 0;
}

.section-scrolls__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.section-scrolls__bg-layer {
    position: absolute;
    inset: 0;
    background-color: #111111;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.6s ease, transform 0.15s ease-out;
    will-change: opacity, transform;
}

.section-scrolls__bg-layer.is-active {
    opacity: 0.6;
}

.section-scrolls__bg-video-wrap {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    z-index: 1;
}

.section-scrolls__bg-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-scrolls__viewport {
    position: relative;
    z-index: 1;
}

.section-scrolls__section {
    min-height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.section-scrolls__box {
    max-width: 600px;
    width: 100%;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-scrolls__section.is-visible .section-scrolls__box {
    transform: translateY(0);
    opacity: 1;
}

.section-scrolls__title {
    margin: 0 0 25px;
    color: #ffffff !important;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.section-scrolls__subtitle {
    display: block;
    margin-bottom: 15px;
    color: #d4af37 !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section-scrolls__content p,
.section-scrolls__content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #d4d4d8;
    font-weight: 200;
}

.section-scrolls__content p {
    margin: 0 0 20px;
    text-align: justify;
}

.section-scrolls__content strong {
    color: #ffffff;
    font-weight: 600;
}

.section-scrolls__content,
.section-scrolls__content p,
.section-scrolls__content li,
.section-scrolls__content strong,
.section-scrolls__title,
.section-scrolls__subtitle {
    position: relative;
    z-index: 3;
}

.section-scrolls__content ul {
    margin: 30px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    list-style: none;
}

.section-scrolls__content li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 22px;
}

.section-scrolls__content li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
}

@media (max-width: 900px) {
    .section-scrolls__box {
        padding: 30px;
    }

    .section-scrolls__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .section-scrolls__section {
        padding: 20px;
    }

    .section-scrolls__box {
        padding: 24px;
    }

    .section-scrolls__title {
        font-size: 2rem;
    }

    .section-scrolls__subtitle {
        letter-spacing: 3px;
        font-size: 0.75rem;
    }
}
