/* Slider */
.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0 25px;

    & video,
    & img.background {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        filter: brightness(0.4);
        opacity: 0.9;
    }

    & .slider-text {
        top: 50%;
        left: 50%;
        z-index: 2;
        width: 100%;
        transform: translate(-50%, -50%);
        text-align: center;
        position: absolute;
        color: var(--white-color);

        & h1 {
            width: auto;
        }
    }

    & .footer-text {
        position: absolute;
        bottom: 28px;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transform: translateX(-50%);
        left: 50%;

        p {
            font-size: 12px;
            color: var(--white-color);
            margin-bottom: 10px;
            text-align: center;
            font-family: 'readex', serif;

            @media (min-width: 992px) {
                font-size: 16px;
                width: 20.17%;
            }
        }

        .arrow-down {
            width: 12px;
            height: 14px;
            border: none;
            background-color: transparent;

            & i {
                cursor: pointer;
                font-size: 12px;
                color: var(--white-color);

                &:hover {
                    color: var(--light-color);
                }
            }
        }

    }


}


/* About */

.about {
    width: 100%;
    display: flex;
    position: relative;

    @media (max-width: 992px) {
        flex-direction: column;
    }

    & video,
    img.background {
        width: 50%;
        object-fit: cover;

        @media (max-width: 992px) {
            width: 100%;
            display: none;
        }

        height: 66vh;

        @media (min-width: 1400px) {
            height: 100vh;

        }
    }

    & .text-container {
        width: 50%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        color: var(--white-color);
        padding: 20px 0;

        video,
        img {
            display: none;
        }

        @media (max-width: 992px) {
            width: 100%;

            video,
            img {
                height: 332px;
                display: block;
            }
        }

        & .title {

            margin-bottom: 10px;


            & h2 {
                text-align: start;
                line-height: 90px;

                @media (max-width: 992px) {
                    display: none;
                }

            }

            & h3 {
                display: none;

                @media (max-width: 992px) {
                    display: block;
                }

                text-align: center;
                margin: 0 !important;
                text-transform: uppercase;

                & span {
                    color: var(--light-color);
                }
            }
        }

        p {
            font-size: 15px;
            text-align: start;
            margin-top: 25px;
            padding: 0 15px;

            @media (min-width: 992px) {
                padding: 50px 25px 0px;
                font-size: 20px;
            }

            @media (min-width: 1200px) {
                padding: 80px 25px 0px;
            }

            @media (min-width: 1600px) {
                padding: 170px 280px 42px 160px;
            }
        }

        & span {
            color: var(--light-color);
        }

        & b {
            color: var(--light-color);
            font-weight: 500;
        }

    }
}


/* Section */

.section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    & video,
    & img.background {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        filter: brightness(0.4);
        opacity: 0.7;
    }

    & h2 {
        text-align: center;
        position: relative;
        z-index: 2;
        color: var(--white-color);
        width: 64.52%;

        @media (max-width: 992px) {
            font-size: 35px;
            line-height: 50px;
            width: 100%;
        }

        @media (min-width: 1200px) {
            letter-spacing: -1px;
        }

        span {
            color: var(--light-color);
        }

        b {
            color: var(--light-color);
            font-weight: 500;
        }
    }


}


/* Section 2 */
.section2 {
    padding: 30px 0;
    color: var(--white-color);

    @media (min-width: 992px) {
        padding: 100px 0;

    }

    span {
        color: var(--light-color);
    }

    b {
        color: var(--light-color);
        font-weight: 500;
    }
    
    .header-section2 {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        padding: 0 25px;
        margin-bottom: 30px;

        h1 {
            flex: 1;
            text-align: center;
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 45px;
                line-height: 45px;
            }
        }

        @media (min-width: 1300px) {
            padding: 0px 3.54% 0 5.64%;
        }

        @media (min-width: 1400px) {
            flex-direction: row;
            align-items: start;

            h1 {
                text-align: start;
            }

            h1:last-child {
                margin-top: 120px;
            }
        }

        @media (min-width: 1450px) {
            padding: 0 5.54% 0 9.64%;

        }

    }

    .section2-content {
        display: flex;
        flex-direction: column;
        gap: 30px 0;

        @media (min-width: 992px) {
            flex-direction: row;
        }

        .left {
            width: 100%;
            aspect-ratio: 159 / 164;

            @media (min-width: 992px) {
                width: 50%;
                aspect-ratio: 4 / 5;
            }

            img {
                object-fit: cover;
                height: 100%;
                width: 100%;
            }
        }

        .right {
            flex: 1;
            justify-content: center;
            flex-direction: column;
            display: flex;
            padding: 0 4.68%;

            @media (min-width: 992px) {
                padding: 0 5.54%;
            }

            @media (min-width: 1600px) {
                padding-right: 5.54%;
                padding-left: 20.95%;
            }

            p {
                font-size: 15px;
                line-height: 20px;

                @media (min-width: 992px) {
                    font-size: 20px;
                    line-height: 25px;
                }
            }
        }
    }

}

/* mobile-footer */

.mobile-footer {
    border-top: 1px solid var(--white-color-opacity);
}