
#instagram {
    display: none;
}

/**********
Hero
 */

#hero {
    background-color: black;
}

#heroInner {
    position: relative;
    margin: auto;
}

#heroContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    padding: 60px;
}

.heroTitle {
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 30px;
    color: white;
    line-height: 1.1;
}

.heroTitle.alt {
    font-size: 25px;
    margin-bottom: 60px;
}

.heroSubtitle {
    color: white;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
}

#heroButton {
    background-color: var(--pink);
}

@media (max-width: 1250px) {
    #heroInner {
        display: flex;
        flex-direction: column-reverse;
    }

    #heroContent {
        position: static;
        width: 100%;
        padding: 30px;
    }

    .heroTitle {
        font-size: 24px;
    }

    .heroTitle.alt {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .heroTitle br {
        display: none;
    }

    .heroSubtitle {
        font-size: 16px;
    }
}

/******
Info
 */

#info {
    padding: 60px 20px;
    background-color: white;
}

#infoInner {
    max-width: 900px;
    margin: auto;
}

#infoTitle {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.1;
}

#infoSubtitle {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}


@media (max-width: 800px) {
    #info {
        padding: 30px;
    }

    #infoTitle {
        font-size: 22px;
    }

    #infoSubtitle {
        font-size: 16px;
    }
}


/********
Episodes
 */

#episodes {
    background-color: #eaeaea;
    padding: 60px 20px;
}

#episodesInner {
    max-width: 1000px;
    margin: auto;
}

#episodesTitle {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.episodesItem {
    padding: 30px 50px;
    border-radius: 20px;
    background-color: white;
    margin-bottom: 20px;
    display: none;
}

.episodesItemTitle {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.4;
}

.episodesItemDate {
    font-size: 14px;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 20px;
}

.episodesItemAbout {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.episodesItemAbout ul {
}

.episodesItemAbout a {
    text-decoration: underline;
}

.episodesItemButton {
    background-color: var(--pink);
}


@media (max-width: 800px) {
    #episodes {
        padding: 30px;
    }

    #episodesTitle {
        font-size: 28px;
        text-align: center;
    }

    .episodesItem {
        padding: 20px;
    }
}


/*******
Reviews
********/

:root {
    --swiper-theme-color: #b38c72;
}

#reviews {
    padding: 40px 20px;
    background-color: #e8dfd6;
}

#reviewsInner {
}

#reviewsRelative {
    position: relative;
    padding: 0 60px;
}

#reviewsSlider {
    margin-bottom: 30px;
}

#reviewsSlider .swiper-slide {
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviewsImage {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#reviewsRelative .swiper-button-next,
#reviewsRelative .swiper-button-prev {
    z-index: 0 !important;
}

#reviewsDots {
    position: unset;
    margin-top: 20px;
}

#reviewsDots .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
}

#reviewsButton {
    letter-spacing: 1px;
}

@media (max-width: 800px) {

    #reviewsRelative {
        padding: 0;
    }

    #reviewsSlider {
        margin-bottom: 10px;
    }

    #reviewsPrev,
    #reviewsNext {
        display: none;
    }
}


/******
Follow
 */

#follow {
    padding: 60px 20px;
    background-color: white;
}

#followInner {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 6fr 4fr;
    column-gap: 60px;
    align-items: center;
}


#followIcon {

}

#followTitle {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

#followInfo {
    font-weight: 500;
    font-size: 20px;
}

#followInfo span {
    font-weight: 900;
}

@media (max-width: 800px) {
    #follow {
        padding: 30px;
    }

    #followInner {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    #followTitle {
        font-size: 30px;
    }

    #followInfo {
        font-size: 16px;
    }

}

/******
Listen
 */

#listen {
    padding: 60px 20px;
    background-color: var(--pink)
}

#listenInner {
    max-width: 1000px;
    margin: auto;
}

#listenButton {
    background-color: white;
    color: var(--pink);
    font-size: 20px;
}

@media (max-width: 800px) {
    #listen {
        padding: 30px;
    }

    #listenButton {
        font-size: 16px;
    }
}

