.podcast_wrapper {
    padding: 150px 0;
    background: linear-gradient(rgba(0, 0, 0, .26), rgba(0, 0, 0, .146)), url('../images/podcast.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.podcast_wrapper__content {
    text-align: center;
}

.podcast_wrapper__content h2 {
    font-size: 95px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
}

.podcast_wrapper__content p {
    margin-top: 10px !important;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--white-color);
}

.podcast_box {
    display: flex !important;
    align-items: center;
    margin: 0 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, .08);
}

.podcast_box__img,
.podcast_box__content {
    width: 100%;
}

.podcast_box__img img {
    width: 100%;
    height: 320px;
    border-radius: 20px 0 0 20px;
    object-fit: cover;
}

.podcast_box__content {
    border-radius: 0 20px 20px 0;
    padding: 12px 2rem;
    display: flex;
    height: 320px;
    background-color: var(--white-color);
    flex-direction: column;
    justify-content: center;
}

.top_podcast {
    background-color: whitesmoke;
}

.podcast_box__content span {
    color: #434343;
    text-transform: capitalize;
    font-weight: 500;
}

.podcast_box__content h6 {
    font-size: 26px;
    margin-top: 10px;
    color: var(--black-color);
    font-weight: 600;
}

.podcast_box__img {
    position: relative;
}

.headphone_icon i {
    position: absolute;
    right: 1rem;
    top: 1rem;
    height: 32px;
    width: 32px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, .08);
    background-color: var(--white-color);
    color: var(--black-color);
    font-size: 24px;
}

.podcast_slider .slick-track {
    margin-bottom: 10px;
}

.podcast_box__content a {
    display: block;
    margin-top: 1rem;
    color: var(--secondory-color);
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
}

.podcast_slider .slick-dots {
    bottom: -3.5rem;
    line-height: 0;
}

.podcast_slider .slick-dots li.slick-active {
    background-color: var(--black-color);
    transition: .3s ease-in;
}

.podcast_slider .slick-dots li {
    height: 12px;
    width: 12px;
    border: 1px solid #000;
    border-radius: 100%;
}

.slick-dots li button::before {
    display: none;
}

.episode_list__box {
    padding: 2rem;
    align-items: center;
    display: flex;
    background-color: whitesmoke;
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: .2s ease;
    box-shadow: 0 0 1.5625rem rgba(0, 0, 0, .08);
}

.episode_list__box:nth-child(odd) a {
    color: var(--white-color);
}

.episode_list__box a {
    color: var(--black-color);
}

.episode_list__box:nth-child(odd) {
    color: var(--white-color);
    background-color: var(--secondory-color);
}

.episode_list__box:hover {
    background-color: #333;
    transition: .2s ease;
    padding: 2rem 1rem;
}

.episode_list__box-name {
    width: 60%;
}

.episode_list__box-right {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

.episode_list__box-name h6 {
    font-weight: 600;
    font-size: 25px;
}

.episode_list__box:hover h6 {
    color: var(--white-color);
}

.episode_list__box:hover .episode_list__box-right p,
.episode_list__box:hover .episode_list__box-right a {
    color: var(--white-color);
}

.episode_list__box-right p,
.episode_list__box-right a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.episode_list__box-right a:hover {
    color: var(--main-color);
}

/* guest_wrapper */
.guest_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .36), rgba(0, 0, 0, .246)), url('../images/h1-video-paralax-img-2048x758.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0;
    background-position: center;
    text-align: center;
    background-attachment: fixed;
}

.guest_wrapper__content h2 {
    font-size: 95px;
    color: var(--white-color);
    font-weight: 600;
}

.guest_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media(max-width:1200px) {
    .podcast_box {
        flex-direction: column;
    }

    .podcast_box__img img {
        border-radius: 10px 10px 0 0;
        height: 320px;
    }

    .podcast_box__content h6 {
        font-size: 22px;
        margin-top: 5px;
    }

    .podcast_box__content {
        padding: 1rem;
    }

    .podcast_box__content {
        border-radius: 0 0 10px 10px;
        height: auto;
    }
}

@media(max-width:992px) {
    .guest_wrapper {
        padding: 100px 0;
    }

    .guest_wrapper__content h2 {
        font-size: 55px;
    }

    .episode_list__box {
        flex-direction: column;
        align-items: start;
        padding: 1rem;
    }

    .episode_list__box-name h6 {
        font-size: 21px;
    }

    .episode_list__box-name {
        width: 100%;
    }

    .episode_list__box-right {
        width: 100%;
        margin-top: 1rem;
        justify-content: space-between;
    }


    .podcast_box__img img {
        height: 230px;
    }

    .podcast_box__content h6 {
        font-size: 19px;
    }

    .podcast_wrapper {
        padding: 100px 0;
    }

    .podcast_wrapper__content h2 {
        font-size: 65px;
    }
}

@media(max-width:768px) {
    .podcast_box__img img {
        height: 250px;
    }

    .guest_wrapper {
        padding: 70px 0;
    }

    .guest_wrapper__content h2 {
        font-size: 42px;
    }

    .podcast_slider .slick-dots {
        bottom: -2.5rem;
    }

    .episode_list__box {
        margin-bottom: 12px;
    }

    .podcast_wrapper {
        padding: 50px 0;
    }

    .podcast_wrapper__content h2 {
        font-size: 44px;
    }

    .podcast_wrapper__content p {
        font-size: 16px;
    }

    .episode_list__box-right {
        flex-direction: column;
        gap: 7px;
    }

}

@media(max-width:576px) {
    .episode_list__box-name h6 {
        font-size: 18px;
    }

    .episode_list__box-right {
        margin-top: 10px;
    }

    .episode_list__box-right p,
    .episode_list__box-right a {
        font-size: 15px;
    }

    .podcast_box {
        margin: 0 5px;
    }
}