html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.pod-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: var(--primary);
    overflow: hidden;
}
.hero-texts {
    margin-top: 80px;
}
.pod-hero .hero-texts img {
    height: 180px;
    width: auto;
}
.pod-hero .hero-texts h1 {
    margin-bottom: 0.5rem;
}
.pod-hero .hero-texts p {
    margin: 1rem 0;
}
video {
    display: block;
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    height: 100vh;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(25, 25, 63, 0.85);
    z-index: 1;
}

.layon-btn {gap: 1rem;}

.layon-btn .discover {
    margin: 0 1rem !important;
}

.pod-hero .hero-texts h2 {
    font-weight: lighter;
    margin-bottom: 1rem;
}

.pod-hero .hero-texts .underline::after {
    bottom: -10px !important;
}

.about-sec-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    h2 {
        font-weight: lighter;
        color: var(--secondary);
        text-align: center;
    }
    img {
        height: 220px;
        width: auto;
    }
}

.about-carmen {
    display: inherit;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    margin: 3rem 0 0;
    gap: 3rem;
}

.left-side, .right-side {
    display: inherit;
    flex-direction: column;
}

.left-side img {
    width: auto;
    height: 276px;
    border-radius: 40px;
}
.left-side {
    p {
        color: var(--secondary);
        font-weight: bolder;
        span {
            font-weight: 100;
        }
    }
}
.right-side {
    max-width: 966px;
}

.ep-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.episode-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1166px;
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 40px;
    h2 {
        font-weight: 300;
        color: var(--primary);
    }
    h1 {
        font-weight: bolder;
        color: var(--primary);
    }
    p {
        color: var(--primary);
        span {font-weight: bolder;}
    }
}

.bottom-sec {
    display: inherit;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 3rem;
}

.right-bot {
    text-align: left;
    max-width: 622px;
}

.inspired {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    background-color: var(--primary);
    gap: 1rem;
    text-align: center;
    h2 {color: var(--secondary);}
    p {font-weight: lighter;}
}
@media (max-width: 1050px) {
    .pod-hero .hero-texts h1 {
        font-size: 40px;
        margin: 1rem 0;
    }
}

@media (max-width: 775px) {
    .pod-hero .hero-texts img {
        height: 130px !important;
        width: auto !important;
    }
    .episode-sec {
        padding: 2rem 1rem;
    }
    .ep-wrapper img {
        height: 130px !important;
        width: auto !important;
    }
}