﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Questrial&display=swap");
/* @font-face {
  font-family: "MTD AlFresco";
  src: url(../fonts/MTD/ AlFresco.otf);
} */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.35;
}

img {
    width: 100%;
    max-width: 100%;
    display: inline-block;
}

a {
    display: inline-block;
    transition: 0.3s all;
}

body {
    margin: 0;
    padding: 0;
    font: 400 17px/1.4 "Montserrat", sans-serif;
    color: #000000;
    background: #fff;
    overflow-x: hidden;
}

.mb {
    display: none !important;
}

.p-2 {
    padding: 0 15px;
}

.pt-lg {
    padding-top: 40px;
}

.pb-lg {
    padding-bottom: 40px;
}

html {
    scroll-behavior: auto !important;
}

p {
    margin-bottom: 24px;
    font-family: "Inter";
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
    letter-spacing: -0.16px;
    color: #333;
}

.white--color {
    color: #fff;
}

.text--center {
    text-align: center;
}

.text--medium {
    font-size: 22px;
    font-weight: 600;
}

.text--big {
    font-weight: 700;
    font-size: 30px;
}

.text--yellow {
    color: #F4CF04 !important;
}

.text--red {
    color: #BE110D !important;
}

.text--lightblue {
    color: #c7eaf9;
}

.text--secondary {
    font-family: "Inter";
    font-size: 36px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.48px;
    padding: 0 24px;
}

/* .text--secondary.text--large {
  font-size: 52px;
} */

/* Navigation */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: #fff;
}

    nav ul {
        display: flex;
        gap: 3px;
        list-style: none;
        background-color: #fff;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        padding: 6px;
    }

        nav ul li {
            cursor: pointer;
        }

            nav ul li:first-child {
                z-index: 4;
            }

            nav ul li:nth-child(2) {
                z-index: 3;
            }

            nav ul li:nth-child(3) {
                z-index: 2;
            }

            nav ul li:last-child {
                z-index: 1;
            }

            nav ul li a {
                text-decoration: none;
                color: #333;
                padding: 8px 12px 8px 28px;
                font-family: "Inter";
                font-weight: 500;
                font-size: 16px;
                position: relative;
                background-color: #f0f0f0;
                display: flex;
                align-items: center;
                gap: 8px;
                transition: 0.2s;
                white-space: nowrap;
            }

            nav ul li:first-child a {
                border-top-left-radius: 8px;
                border-bottom-left-radius: 8px;
                padding-left: 12px;
            }

            nav ul li:last-child a {
                border-top-right-radius: 8px;
                border-bottom-right-radius: 8px;
                padding-right: 16px;
            }

            nav ul li:not(:last-child) a::before {
                content: "";
                position: absolute;
                width: 0;
                height: 0;
                border-top: 19px solid transparent;
                border-bottom: 19px solid transparent;
                border-left: 16px solid #f0f0f0;
                right: -16px;
                top: 50%;
                transform: translateY(-50%);
                transition: 0.2s;
            }

            nav ul li:not(:first-child) a::after {
                content: "";
                position: absolute;
                width: 0;
                height: 0;
                border-top: 19px solid transparent;
                border-bottom: 19px solid transparent;
                border-left: 16px solid #fff;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                transition: 0.2s;
            }

            nav ul li a:hover {
                color: #333;
                background-color: #e0e0e0;
            }

            nav ul li:not(:last-child) a:hover::before {
                border-left-color: #e0e0e0;
            }

            nav ul li a.active {
                color: #fff;
            }

            nav ul li:first-child a.active {
                background-color: #D42D2A;
            }

                nav ul li:first-child a.active::before {
                    border-left-color: #D42D2A;
                }

            nav ul li:nth-child(2) a.active {
                background-color: #CC2420;
            }

                nav ul li:nth-child(2) a.active::before {
                    border-left-color: #CC2420;
                }

            nav ul li:nth-child(3) a.active {
                background-color: #C51A17;
            }

                nav ul li:nth-child(3) a.active::before {
                    border-left-color: #C51A17;
                }

            nav ul li:last-child a.active {
                background-color: #BE110D;
            }

            nav ul li a .number {
                display: inline-block;
                background-color: #d9d9d9;
                width: 22px;
                min-width: 22px;
                height: 22px;
                border-radius: 50%;
                padding: 1px 0;
                vertical-align: middle;
                text-align: center;
                font-size: 15px;
                transition: 0.2s;
            }

            nav ul li a:hover .number {
                background-color: #c0c0c0;
            }

            nav ul li a.active .number {
                background-color: #fff;
                color: #BE110D;
            }

/* Content */
.cover-img {
    position: fixed;
    z-index: -1;
    width: 100%;
}

.cover-img-laco {
    position: absolute;
    top: -28%;
    left: -22%;
    width: 67%;
}

    .cover-img-laco #flagCanvas {
        width: 130%;
    }

.cover-img-bacho {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 39%;
}

.cover-wrapper {
    background-image: url(https://images5.thanhnien.vn/files/vn80nam/img-2-bottom.jpg);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #c12700;
    padding-bottom: 400px;
    position: relative;
    z-index: 1;
}

    .cover-wrapper .section-img {
        position: relative;
        z-index: 2;
    }

    .cover-wrapper .cover-title {
        background-image: url(https://images5.thanhnien.vn/files/vn80nam/light-3.png);
        background-position: bottom center;
        background-repeat: no-repeat;
        padding-bottom: 80px;
        position: relative;
        z-index: 2;
        max-width: 840px;
        margin: 40px auto 0;
        text-align: center;
    }

    .cover-wrapper .section-title {
        font-size: 50px;
        font-weight: 700;
    }

#typing-sapo {
    min-height: 200px;
}

.cover-wrapper .section-title span {
    white-space: nowrap;
}

    .cover-wrapper .section-title span:first-child {
        background-image: linear-gradient(to bottom, #c58512, #fffec6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }

    .cover-wrapper .section-title span:last-child {
        background-image: linear-gradient(to bottom, #c58512, #fffec6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }

.cover-wrapper .gradient-container::before {
    content: "Từ kỷ nguyên độc lập";
    position: absolute;
    top: 1px;
    left: 50%;
    font-size: 50px;
    font-weight: 700;
    color: #fffeb4;
    text-shadow: -0.5px 0 0 #f1d997, 0.5px 0 0 #f1d997, 0 -0.5px 0 #f1d997, 0 0.5px 0 #f1d997, -0.5px -0.5px 0 #f1d997, 0.5px -0.5px 0 #f1d997, -0.5px 0.5px 0 #f1d997, 0.5px 0.5px 0 #f1d997;
    z-index: 1;
    transform: translate(-50%, 2px);
    white-space: nowrap;
}

.cover-wrapper .gradient-container::after {
    content: "đến khát vọng hùng cường";
    position: absolute;
    bottom: 5px;
    left: 50%;
    font-size: 50px;
    font-family: "Montserrat";
    font-weight: 700;
    line-height: 1.24;
    text-transform: uppercase;
    text-align: center;
    color: #f1d997;
    text-shadow: -0.5px 0 0 #f1d997, 0.5px 0 0 #f1d997, 0 -0.5px 0 #f1d997, 0 0.5px 0 #f1d997, -0.5px -0.5px 0 #f1d997, 0.5px -0.5px 0 #f1d997, -0.5px 0.5px 0 #f1d997, 0.5px 0.5px 0 #f1d997;
    z-index: 1;
    transform: translate(-50%, 2px);
    white-space: nowrap;
}

.cover-wrapper p {
    color: #ffdf89;
    font-weight: 400;
}

.cover-wrapper .author {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px;
    text-transform: uppercase;
}

    .cover-wrapper .author > span {
    }

.section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background-color: #fff;
}

    .section.pt-sm {
        padding-top: 60px;
    }

    .section.pt-lg {
        padding-top: 80px;
    }

.section-header {
    text-align: center;
}

    .section-header .text--secondary {
        display: block;
    }

.section-title {
    font-size: 48px;
    font-family: "Montserrat";
    font-weight: 800;
    color: #BE110D;
    line-height: 1.24;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 3;
}

    .section-title.text--medium {
        font-size: 36px;
    }

    .section-title.text--small {
        font-size: 30px;
        font-weight: 500;
        font-style: italic;
        text-transform: none;
        line-height: 1.5;
        font-family: "Inter";
    }

.gradient-container {
    position: relative;
    display: inline-block;
}

.gradient {
    background-image: linear-gradient(to bottom, #b7212b, #ff2d2d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.gradient-container::before {
    content: "Kỷ nguyên độc lập";
    position: absolute;
    top: -2px;
    left: -2px;
    font-size: 48px;
    font-family: "Montserrat";
    font-weight: 800;
    line-height: 1.24;
    text-transform: uppercase;
    text-align: center;
    color: #faef8a;
    text-shadow: -1.5px 0 0 #faef8a, 1.5px 0 0 #faef8a, 0 -1.5px 0 #faef8a, 0 1.5px 0 #faef8a, -1.5px -1.5px 0 #faef8a, 1.5px -1.5px 0 #faef8a, -1.5px 1.5px 0 #faef8a, 1.5px 1.5px 0 #faef8a;
    z-index: 1;
    transform: translate(2px, 2px);
}

.gradient-container#chap-2-title::before {
    content: "Ánh sáng đổi mới";
}

.gradient-container#chap-3-title::before {
    content: "Vươn ra biển lớn";
}

.gradient-container#chap-4-title::before {
    content: "Khát vọng hùng cường";
}

.section-sub-title {
    font-size: 23px;
    font-family: "Inter";
    font-weight: 600;
    color: #BE110D;
    text-align: center;
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.4;
    padding: 0 15px;
}

.section-para {
    max-width: 660px;
    padding: 0 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .section-para.section-para-medium {
        max-width: 710px;
    }

    .section-para.section-para-large {
        max-width: 840px;
    }

    .section-para.section-para-xlarge {
        max-width: 1040px;
    }

    .section-para p {
        font: 400 17px/26px "Inter";
        margin: 9px 0 24px;
        color: #333;
    }

.section-img {
    max-width: 860px;
    margin: 0 auto 40px;
    position: relative;
    text-align: center;
    padding: 0 15px;
}

    .section-img.section-img-small {
        max-width: 600px;
    }

    .section-img.section-img-medium {
        max-width: 1140px;
    }

    .section-img.section-img-large {
        max-width: 1680px;
    }

.section-img-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    color: #fff;
}

    .section-img-text p {
        margin-bottom: 0;
        text-align: center;
    }

.section-quote {
    padding: 160px 0;
}

    .section-quote .text--h-lg {
        min-height: 120px;
    }

    .section-quote .text--h-sm {
        min-height: 90px;
    }

    .section-quote .btn-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0 20px;
    }

    .section-quote .btn-control {
        display: flex;
        gap: 10px;
        align-items: center;
        background-color: #f0f0f0;
        border-radius: 24px;
        color: #333;
        text-decoration: none;
        padding: 6px;
        font-family: "Inter";
        font-size: 16px;
        white-space: nowrap;
    }

    .section-quote .btn-control-left {
        padding-right: 16px;
    }

    .section-quote .btn-control-right {
        padding-left: 16px;
    }

    .section-quote .btn-control .btn-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #d6d6d6;
        transition: 0.2s;
    }

    .section-quote .btn-control:hover {
        background-color: #BE110D;
        color: #fff;
    }

        .section-quote .btn-control:hover .btn-icon {
            background-color: #fff;
        }

            .section-quote .btn-control:hover .btn-icon svg path {
                fill: #BE110D;
            }

/* Img */
.img-2 {
    min-width: 1920px;
}

.img-2-top {
    margin-top: -24%;
    position: relative;
    z-index: 2;
    animation-name: silk-animation;
    animation-duration: 10s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.section-img-3 {
    margin-top: -24%;
}

.img-4 {
    position: relative;
    z-index: -1;
}

.img-6 {
    max-width: 620px;
    margin-top: 16px;
}

/* Video */
video {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Audio */
.section-bottom-fixed {
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.audio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    border-radius: 12px;
    padding: 6px 20px 6px 6px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

    .audio span {
        font-size: 15px;
        font-weight: 600;
        font-family: "Inter";
    }

    .audio .text {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

        .audio .text .text--small {
            font-size: 12px;
            color: #888;
            font-weight: 400;
        }

    .audio #progressBar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 4px;
        background: #ddd;
        margin-top: 5px;
        display: block;
        overflow: hidden;
    }

        .audio #progressBar::-webkit-progress-bar {
            background-color: #ddd;
            border-radius: 4px;
        }

        .audio #progressBar::-webkit-progress-value {
            background-color: #d52c2f;
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .audio #progressBar::-moz-progress-bar {
            background-color: #d52c2f;
            border-radius: 4px;
        }

        .audio #progressBar:hover {
            cursor: pointer;
        }

        /* Tùy chỉnh cho các trình duyệt khác (nếu cần) */
        .audio #progressBar::-ms-fill {
            background-color: #d52c2f;
            border-radius: 4px;
        }

.cd-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: spin 2s linear infinite;
    position: relative;
    width: 44px;
}

/* Animation xoay vòng */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* Btn scrolltop */
.btn-scrollTop {
    background-color: #fff;
    outline: 1px solid rgb(255, 255, 255);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

    .btn-scrollTop.show {
        opacity: 1;
        visibility: visible;
    }

    .btn-scrollTop:hover {
        background-color: #BE110D;
        outline: 1px solid rgba(255, 255, 255, 0.6);
    }

        .btn-scrollTop:hover img {
            filter: brightness(0) invert(1);
        }

.paused {
    animation-play-state: paused; /* Dừng animation khi audio paused */
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.before-image {
    clip-path: inset(0 50% 0 0);
}

.after-image {
    clip-path: inset(0 0 0 50%);
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #fff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

    .slider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, 0.6);
        border: 2px solid #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .slider img {
        width: 24px;
        max-width: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        pointer-events: none;
    }

        .slider img.icon-left {
            margin-left: -22px;
        }

        .slider img.icon-right {
            margin-left: -3px;
        }

.slider-container .img-title {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    padding: 10px 12px;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    min-height: 58px;
}

    .slider-container .img-title.right {
        left: auto;
        right: 0;
    }

/* Animation */
.animation {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.visible {
    opacity: 1;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-top: -100px;
    max-width: 100%;
    z-index: -1;
}

.animation-img-01 {
    display: none;
    position: relative;
}

.tile {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100% !important;
}

    .tile.visible {
        opacity: 1;
    }

/* Responsive */
.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

@media screen and (max-width: 992px) {
    .text--medium {
        font-size: 16px;
    }

    .text--secondary {
        font-size: 32px;
    }

    .cover-wrapper .section-title {
        font-size: 40px;
        max-width: 660px;
        margin-left: auto;
        margin-right: auto;
    }

    .cover-wrapper .gradient-container::before, .cover-wrapper .gradient-container::after {
        font-size: 40px;
    }

    .cover-wrapper .gradient-container::after {
        bottom: 4px;
        transform: translate(calc(-50% + 3px), 2px);
    }

    .section-title {
        font-size: 40px;
    }

        .section-title.text--medium {
            font-size: 30px;
        }

        .section-title.text--small {
            font-size: 20px;
        }

    .gradient-container::before {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px) {
    p {
        font-size: 16px;
    }

    nav ul {
        width: 100%;
    }

        nav ul li {
            width: calc(25% - 2px);
        }

            nav ul li a span {
                display: inline-block;
                width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
            }

    .pt-lg {
        padding-top: 24px;
    }

    .pb-lg {
        padding-bottom: 24px;
    }

    .section-bottom-fixed {
        bottom: 10px;
        right: 10px;
    }

    .text--medium {
        font-size: 18px;
    }

    .text--secondary {
        font-size: 30px;
    }
    /* .text--secondary.text--large {
    font-size: 42px;
  } */
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .section-cover {
        min-height: auto !important;
    }

    .cover-img-laco {
        width: 100%;
    }

        .cover-img-laco #flagCanvas {
            width: 200%;
        }

    .cover-wrapper .section-title {
        font-size: 35px;
        max-width: 660px;
        margin-left: auto;
        margin-right: auto;
    }

        .cover-wrapper .section-title br {
            display: none;
        }

    .section-title {
        font-size: 35px;
    }

        .section-title.text--medium {
            font-size: 28px;
        }

        .section-title.text--small {
            font-size: 22px;
        }

        .section-title br {
            display: none;
        }

    .section-sub-title {
        font-size: 19px;
        max-width: 660px;
    }

    .section-para.section-para-medium, .section-para.section-para-large, .section-para.section-para-xlarge {
        max-width: 660px;
    }

    .gradient-container::before {
        font-size: 35px;
    }

    .section-quote {
        padding: 80px 35px 100px;
    }
    /* Img */
    .img-4 {
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    p {
        font-size: 16px;
    }

    .mt-5 {
        margin-top: 24px !important;
    }

    .mb-5 {
        margin-bottom: 24px !important;
    }

    .pb-mobile-lg {
        padding-bottom: 80px;
    }

    .pt-lg {
        padding-top: 16px;
    }

    .pb-lg {
        padding-bottom: 16px;
    }

    nav ul {
        gap: 2px;
    }

        nav ul li a {
            font-size: 12px;
            height: 35px;
            padding: 8px 0 8px 20px;
        }

        nav ul li:first-child a {
            padding-left: 12px;
        }

        nav ul li:last-child a {
            padding-right: 10px;
        }

        nav ul li a .number {
            font-size: 12px;
            width: 18px;
            min-width: 18px;
            height: 18px;
        }

        nav ul li:not(:last-child) a::before, nav ul li:not(:last-child) a::after {
            border-top: 18px solid transparent;
            border-bottom: 18px solid transparent;
        }

        nav ul li:not(:last-child) a::before {
            right: -10px;
            border-left-width: 10px;
        }

        nav ul li:not(:first-child) a::after {
            border-left-width: 10px;
        }

    .text--medium {
        font-size: 16px;
    }

    .text--secondary {
        font-size: 24px;
    }
    /* .text--secondary.text--large {
    font-size: 28px;
  } */
    .cover-wrapper .section-title {
        font-size: 28px;
    }

        .cover-wrapper .section-title br {
            display: none;
        }

    .section-title {
        font-size: 28px;
    }

        .section-title.text--medium {
            font-size: 22px;
        }

        .section-title.text--small {
            font-size: 20px;
        }

    .gradient-container::before {
        font-size: 28px;
    }

    .section-img {
        margin-bottom: 24px;
    }

    .section.pt-lg {
        padding-top: 80px;
    }
}

.chap-wrapper {
    overflow-x: hidden;
}

.section, .section-cover {
    min-height: 100vh; /* Each section takes full viewport height */
    display: none !important; /* Hidden by default */
    transition: opacity 0.3s ease, transform 0.5s ease;
}

    .section.active, .section-cover.active {
        display: block !important; /* Show active section */
        opacity: 1;
        transform: translateX(0);
    }

.section-img-text {
    padding: 0 20px;
}

.section-quote {
    padding: 40px 35px 100px;
}

    .section-quote .text--h-lg {
        min-height: 148px;
    }

    .section-quote .text--h-sm {
        min-height: 120px;
    }

.section.fade-out-left, .section-cover.fade-out-left {
    opacity: 0;
    transform: translateX(-100%);
}

.section.fade-out-right, .section-cover.fade-out-right {
    opacity: 0;
    transform: translateX(100%);
}

.section.fade-in-right, .section-cover.fade-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 0.15s ease forwards;
}

.section.fade-in-left, .section-cover.fade-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes silk-animation {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    50% {
        transform: scale(1.1, 0.9) translateY(-1%);
    }
}
