/* Slider */
.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;

    & video,
    & img.background {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    & .slider-text {
        top: 50%;
        left: 50%;
        z-index: 2;
        text-align: center;
        position: absolute;
        color: var(--white-color);
        transform: translate(-50%, -50%);

        & h1 {
            width: auto;
        }
    }

    & .arrow-down {
        left: 50%;
        z-index: 2;
        width: 12px;
        height: 14px;
        bottom: 28px;
        border: none;
        position: absolute;
        transform: translateX(-50%);
        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;
    flex-direction: column;

    & video,
    & img.background {
        width: 100%;
        height: 100vh;
        object-fit: cover;

        @media (max-width: 992px) {
            height: 239px;
        }
    }

    & .text-container {
        width: 100%;
        display: flex;
        padding: 35px 60px;
        align-items: flex-end;
        color: var(--white-color);
        justify-content: space-between;
        background-color: var(--dark-color);

        & .title {
            @media (max-width: 992px) {
                margin: 0 auto;
            }

            & p {
                display: none;
                font-size: 12px;
                text-align: center;
                margin-bottom: 10px;
                text-transform: uppercase;
                font-family: 'readex', serif;

                @media (max-width: 992px) {
                    display: block;
                }
            }

            & h2 {
                line-height: 90px;

                @media (max-width: 1400px) {
                    font-size: 60px;
                    line-height: 60px;
                }

                @media (max-width: 992px) {
                    font-size: 35px;
                    line-height: 35px;
                    text-align: center;
                    margin: 0 !important;
                    text-transform: uppercase;
                }

                & span {
                    color: var(--light-color);
                }
            }
        }

        & .paragraph {
            @media (max-width: 992px) {
                display: none;
            }

            & p {
                font-size: 12px;
                margin-bottom: 14px;
                text-transform: uppercase;
                font-family: 'readex', serif;
            }

            & h6 {
                width: 332px;
                font-size: 15px;
                margin-bottom: 18px;

                @media (max-width: 992px) {
                    width: auto;
                }
            }
        }
    }

    & .mobile-paragraph {
        display: none;
        text-align: center;
        padding: 15px 15px 50px;
        color: var(--white-color);

        @media (max-width: 992px) {
            display: block;
        }

        & h6 {
            width: 100%;
            font-size: 15px;
            margin-bottom: 15px;
        }
    }
}

/* Travels */

.travels {
    width: 100%;
    display: flex;
    position: relative;

    @media (max-width: 992px) {
        flex-direction: column;
    }

    & video,
    & img.background {
        width: 50%;
        height: 100vh;
        object-fit: cover;

        @media (max-width: 992px) {
            width: 100%;
            height: 328px;
        }
    }

    & .text-container {
        width: 50%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        padding: 90px 50px 42px;
        color: var(--white-color);
        justify-content: space-between;

        @media (max-width: 992px) {
            width: 100%;
            padding: 27px 15px 39px;
        }

        & .title {
            & p {
                display: none;
                font-size: 12px;
                text-align: center;
                margin-bottom: 10px;
                text-transform: uppercase;
                font-family: 'readex', serif;

                @media (max-width: 992px) {
                    display: block;
                }
            }

            & h2 {
                display: block;
                text-align: start;
                line-height: 90px;

                @media (max-width: 992px) {
                    display: none;
                }

                & span {
                    color: var(--light-color);
                }
            }

            & h3 {
                display: none;

                @media (max-width: 992px) {
                    display: block;
                }

                text-align: center;
                margin: 0 !important;
                text-transform: uppercase;

                & span {
                    color: var(--light-color);
                }
            }
        }

        & .paragraph {
            @media (max-width: 992px) {
                margin-top: 15px;
            }

            & p {
                display: block;
                font-size: 12px;
                margin-bottom: 8px;
                text-transform: uppercase;
                font-family: 'readex', serif;

                @media (max-width: 992px) {
                    display: none;
                }
            }

            & h6 {
                width: 480px;
                font-size: 15px;
                line-height: 20px;
                margin-bottom: 15px;

                @media (max-width: 992px) {
                    width: auto;
                }
            }
        }
    }
}

/* Podcast */
.podcast {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    justify-content: space-between;

    @media (max-width: 992px) {
        height: auto;
    }

    & video,
    & img.background {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    & .title {
        z-index: 2;
        width: 100%;
        position: relative;
        padding: 60px 25px 0;
        color: var(--white-color);

        @media (max-width: 992px) {
            text-align: center;
            padding: 50px 15px 88px;
        }

        & p {
            font-size: 14px;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-family: 'readex', serif;

            @media (max-width: 992px) {
                font-size: 12px;
                margin-bottom: 10px;
            }
        }

        & h3 {
            text-align: start;

            @media (max-width: 992px) {
                font-size: 35px;
                line-height: 35px;
                text-align: center;
                margin: 0 !important;
            }

            & span {
                color: var(--light-color);
            }
        }

        & button , a {
            margin-top: 21px;
        }
    }

    & .card-list {
        width: 60%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        padding: 24px 24px 0;
        color: var(--white-color);
        margin-inline-start: auto;

        @media (max-width: 1200px) {
            width: 80%;
        }

        @media (max-width: 992px) {
            width: 100%;
        }

        & .card {
            gap: 10px;
            width: 50%;
            display: flex;
            padding-top: 10px;
            margin-bottom: 15px;
            border-top: 1px solid var(--white-color-opacity);

            @media (max-width: 992px) {
                width: 50%;
            }

            @media (max-width: 768px) {
                width: 100%;
            }

            & img {
                width: 127px;
                height: 127px;
                border-radius: 0;
                object-fit: cover;

                @media (max-width: 768px) {
                    width: 84px;
                    height: 84px;
                }
            }

            & .card-content {
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                & .card-title {
                    width: 100%;
                    display: flex;
                    flex-direction: column;

                    & p {
                        font-size: 16px;
                        text-transform: uppercase;
                        font-family: 'readex', serif;
                    }

                    & h6 {
                        font-size: 15px;
                        line-height: 15px;
                    }
                }

                & a {
                    gap: 5px;
                    display: flex;
                    cursor: pointer;
                    font-size: 15px;
                    align-items: center;
                    text-transform: capitalize;
                    font-family: 'ivar', serif;

                    & i {
                        margin-bottom: -3px;
                    }

                    &:hover {
                        color: var(--light-color);
                    }
                }
            }
        }
    }
}

/* Shop */
.shop {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;

    & video,
    & img.background {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    & .shop-text {
        top: 50%;
        left: 50%;
        z-index: 2;
        width: 100%;
        text-align: center;
        position: absolute;
        color: var(--white-color);
        transform: translate(-50%, -50%);

        & p {
            font-size: 14px;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-family: 'readex', serif;

            @media (max-width: 992px) {
                font-size: 12px;
                margin-bottom: 10px;
            }
        }

        & h2 {
            line-height: 75px;

            @media (max-width: 992px) {
                font-size: 35px;
                line-height: 35px;
                margin: 0 !important;
                text-transform: uppercase;
            }

            & span {
                color: var(--light-color);
            }
        }

        & button , a {
            margin-top: 25px;
        }
    }
}

/* Services */
.services {
    width: 100%;
    display: flex;
    position: relative;

    @media (max-width: 992px) {
        padding: 30px 20px 0;
        flex-direction: column;
    }

    & video,
    & img.background {
        order: 2;
        width: 50%;
        height: 100vh;
        object-fit: cover;

        @media (max-width: 992px) {
            order: 1;
            width: 100%;
            height: 359px;
        }
    }

    & .text-container {
        order: 1;
        width: 50%;
        display: flex;
        padding: 25px;
        flex-direction: column;
        justify-content: center;
        color: var(--white-color);

        @media (max-width: 992px) {
            order: 2;
            width: 100%;
            text-align: center;
            padding: 10px 25px 50px;
        }

        & p {
            font-size: 12px;
            margin-bottom: 25px;
            text-transform: uppercase;
            font-family: 'readex', serif;
        }

        & h3 {
            & span {
                color: var(--light-color);
            }
        }

        & button , a {
            margin-top: 15px;
        }
    }
}

/* Clients */
.clients {
    width: 100%;
    padding: 120px 0 160px;
    color: var(--white-color);

    @media (max-width: 992px) {
        padding: 20px 0 50px;
        border-top: 1px solid var(--white-color-opacity);
        border-bottom: 1px solid var(--white-color-opacity);
    }

    & .splide {
        & li {
            display: flex;
            align-items: center;
            justify-content: center;

            & img {
                max-width: 100%;
                max-height: 90%;
            }
        }
    }

    & p {
        font-size: 12px;
        text-align: center;
        margin-bottom: 90px;
        text-transform: uppercase;
        font-family: 'readex', serif;

        @media (max-width: 992px) {
            margin-bottom: 50px;
        }
    }
}