@font-face {
    font-family: "Reey";
    src: url(../fonts/Reey-Regular.otf);
}
@font-face {
    font-family: "Book Antiqua";
    src: url(../fonts/Book-Antiqua.ttf);
}
@font-face {
    font-family: "Meri";
    src: url(../fonts/PermanentMarker-Regular.ttf);
}
@font-face {
    font-family: "Merione";
    src: url(../fonts/BlackOpsOne-Regular.ttf);
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat.ttf);
}
@font-face {
    font-family: "Raleway";
    src: url(../fonts/Raleway.ttf);
}
* {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.5px;
    /* box-sizing: border-box; */
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media (max-width: 900px) {
    .preloader-image {
        position: fixed;
        top: 50%;
        left: 35%;
    }
}

section .top-nav {
    padding: 15px 3%;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
    section .top-nav {
        display: none;
    }
}

.right-side-top {
    display: flex;
    margin-right: 10px;
}
.right-side-top p,
a {
    margin-right: 15px;
    color: #a8a8a8;
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
}
.right-side-top a {
    text-decoration: none;
    position: relative;
    transition: 0.6s;
}
.right-side-top a i {
    color: red;
}
.right-side-top a::after {
    content: "";
    width: 0;
    height: 2px;
    background: red;
    bottom: -4px;
    position: absolute;
    left: 0;
    transition: 0.6s;
}
.right-side-top a:hover::after {
    width: 100%;
}
.right-side-top a:hover {
    color: red;
}
.right-side-top p i {
    color: red;
    font-size: 13px;
}

.left-side-top {
    display: flex;
}
.collaborate li {
    display: inline-block;
    padding: 0 15px;
    color: #a8a8a8;
}
.collaborate li a {
    text-decoration: none;
    color: #a8a8a8;
    padding-right: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
}
.collaborate li a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: red;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: 0.5s;
}
.collaborate li a:hover {
    color: red;
}
.collaborate li a:hover::after {
    width: 90%;
}

.social-links li {
    list-style: none;
    margin-left: 10px;
}
.social-links li a {
    text-decoration: none;
    color: #fff;
    padding: 0 6px;
    transition: 0.5s;
}
.social-links li a:hover {
    color: red;
}

/* ****************************HERO STARTS HERE**************** */
/* .hero {
    background-image: linear-gradient(
    rgba(255, 0, 0, 0.2),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7),
    rgba(255, 79, 1, 1)
    ),
    url(../../assets/images/bg-final1.jpg);
    max-width: 100%;
    min-height: calc(100vh - 50px);
    max-height: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1px;
} */
@media (max-width: 760px) {
}
nav {
    min-width: 95%;
    margin: auto;
    z-index: 100;
    background: transparent;
    padding: 3px 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.6s;
    flex-wrap: wrap;
}
nav.sticky {
    position: fixed;
    background: #000;
    top: 0;
}
.sticky-header {
    position: sticky !important;
    top: 85px !important;
    background: white;
    /* z-index: 1000; */
}
.hero-links ul li {
    display: inline-block;
}
.hero-links ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 0 20px;
    transition: 0.5s;
}
.hero-links ul li a:hover {
    /* color: red; */
}
.logo {
    width: 200px;
}
ul li ul.dropdown li {
    display: block;
    margin: 5px 0;
    color: #000;
}
ul li ul.dropdown li a {
    color: #000;
    font-size: 16px;
    font-weight: 200;
    padding: 15px 20px;
    transition: 0.6s;
}
ul li ul.dropdown li a:hover {
    color: #df4b06;
}
ul li ul.dropdown {
    padding: 10px 20px;
    /* width: 50%; */
    background: #fff;
    border-radius: 5px;
    display: none;
    position: absolute;
    z-index: 999;
}

ul li:hover ul.dropdown {
    display: block;
}

@media (max-width: 1024px) {
    ul li ul.dropdown {
        background: #df4b06;
    }
    ul li ul.dropdown li a {
        font-size: 10px;
    }
    ul li ul.dropdown li a:hover {
        color: #fff;
    }
}
.donate-btn {
    text-decoration: none;
    /* background: #940605; */
    background: #ff4f01;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    transition: 0.6s;
}
.donate-btn:hover {
    background: #000;
}
.donate-btn span {
    border: 1px solid #fff;
    padding: 3px 5px;
    background: #fff;
    /* color: #940605; */
    color: #ff4f01;
    border-radius: 50%;
    margin-right: -5px;
    right: -10px;
}
.donate a {
    color: #fff;
}
.donate a .fa-search {
    font-size: 25px;
    margin-right: 10px;
    transition: 0.4s;
}
.search-btn {
    transition: 0.6s;
}
.fa-search:hover {
    /* background: #940605; */
    background: #ff4f01;
    padding: 15px;
    border-radius: 50%;
}
nav .fa-window-close,
.fa-bars {
    display: none;
}
#show_menu {
    display: none;
}
#navbar {
    overflow: hidden;
}
#sectionNav {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .donate {
        display: none;
    }

    .hero-links ul li {
        /*border: 1px solid red;*/
        display: block;
        margin: 20px 0;
    }
    .hero-links ul li a {
        color: #000;
        font-size: 20px;
        white-space: nowrap;
    }
    .hero-links ul {
        padding: 15px;
    }
    .hero-links {
        position: absolute;
        background: #fff;
        width: 300px;
        top: 0;
        height: 150vh;
        right: 0;
        display: none;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    #show_menu {
        display: block;
    }

    nav .fa-window-close,
    .fa-bars {
        display: block;
        color: #000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav .fa-bars {
        color: #fff;
    }
}

/* ***************TEXT BOX************ */

@keyframes slideFromLeft {
    from {
        transform: translateX(-10%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        transform: translatex(10%);
    }
    to {
        transform: translatex(0);
    }
}
@keyframes slideFromTop {
    from {
        transform: translateY(-40%);
    }
    to {
        transform: translateY(0);
    }
}

.text-box {
    color: #fff;
    margin-top: 150px;
    margin-left: 90px;
    margin-right: 120px;
}
#homePageTextBox {
    padding-top: 10%;
    /* border: 5px solid black; */
    font-family: "Book Antiqua";
    width: 100%;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}
.homebuttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.homebuttons a {
    border: 2px solid white;
    cursor: pointer;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    transition: 0.6s;
}
.homebuttons a:hover {
    border: none;
    background-color: #ff4f01;
}
.text-box h3 {
    margin-bottom: 1px;
    margin-top: -10px;
    font-family: "Reey", sans-serif;
    font-size: 50px;
    color: #ff4f00;
    position: relative;

    /*animation: slideFromRight 2s ease-in-out;*/
}
.text-box h1 {
    /* font-family: "DM Sans", sans-serif; */
    font-family: "Book Antiqua";
    letter-spacing: 5px;
    font-size: 80px !important;
    line-height: 65px;
    margin-bottom: 5px;
    line-height: 1;

    /*animation: slideFromRight 1s ease-in-out;*/
}
.text-box p {
    margin-bottom: 50px;
    padding: 10px 0;
    font-family: "DM Sans", sans-serif;
    color: #a8a8a8;
    font-weight: 400;
    /*animation: slideFromRight 2s ease-in;*/
}

.subscribe-box {
    margin-top: 80px;
    margin-left: 90px;
    display: flex;
    flex-wrap: wrap;
}

/*************small screen (max-width:768px)*********************/
@media (max-width: 768px) {
    #navbar {
        background-image: linear-gradient(
                rgba(255, 0, 0, 0.2),
                rgba(0, 0, 0, 0.7),
                rgba(0, 0, 0, 0.7),
                rgba(255, 79, 1, 1)
            ),
            url(../../assets/images/bg-final1-removed.jpg) !important;
        max-width: 100%;
        /*min-height: calc(100vh - 50px);*/
        min-height: 85vh !important;
        background-size: cover;
        background-position: center;
        margin-bottom: 1px;
    }

    .text-box,
    .subscribe-box {
        margin-top: 150px !important;
        margin-right: 15px;
        margin-left: 20px !important;
        max-width: 100%;
    }
    .subscribe-box {
        margin-top: 80px !important;
    }
    .text-box h1 {
        font-size: calc(3vw + 3vh) !important;
        font-size: 50px !important;
        line-height: 55px !important;
    }
}

.subscribe-box p {
    white-space: nowrap;
    color: #fff;
    padding-top: 10px;
    margin-right: 10px;
    font-size: 20px;
    animation: slideFromLeft 1s ease-in-out;
}
.subscribe-box .sub-links {
    display: inline-block;
    padding: 10px 15px;
    background-color: #4d4d4d;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.2s;
    animation: slideFromTop 2s ease-in;
}

.subscribe-box ul li {
    display: inline-block;
    animation: slideFromTop 2s ease-in-out;
}
.subscribe-box ul li a {
    display: inline-block;
    background-color: #4d4d4d;
    white-space: nowrap;
    min-width: 95px;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 20px;
    margin-bottom: 10px;
    text-align: center;
    transition: 0.5s;
}
.subscribe-box ul li a:hover {
    background-color: #000;
}

/* ********************Intro********************* */
.intro {
    /* position: fixed; */
    max-width: 100%;
    background: #ff4f00;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3vh 0;
}

/* animation for disk rotation */
.rotate {
    animation: rotate 7s linear infinite;
}
@keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.intro .intro-contents {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;

    /* justify-content: space-between; */
}
.intro .intro-contents .middle {
    display: flex;
    flex-direction: column;
    flex-basis: 70%;
    margin: 0 35px;
}
.intro .intro-contents .middle .middle-top {
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}
.intro .intro-contents .middle .middle-top a {
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}
.middle-top .buttons {
    margin-right: 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.middle-top .texts h3 {
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.middle-top .texts p {
    font-size: 16px;
    color: #d6c5c5;
    font-weight: 200;
}

.middle-top .buttons button {
    border: none;
    outline: none;
    margin: 0 5px;
    width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background: #df4b06;
    color: #fff;
    transition: 0.6s;
}
.middle-top .buttons button:hover {
    background: #fff;
    color: #000;
}
.middle-top .buttons .play-button {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    transition: 0.6s;
}
.middle-top .buttons .play-button:hover {
    background: #fff;
    color: #000;
}

.intro .intro-contents .middle .middle-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intro .intro-contents .middle .middle-bottom .line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 0 10px;
    cursor: pointer;
}
.intro .intro-contents .middle .middle-bottom .line .lineChild {
    width: 1%;
    height: 2px;
    background-color: #000;
}
.intro .intro-contents .middle .middle-bottom .line .lineChild::after {
    content: "";
    position: absolute;
    background: #000;
    cursor: pointer;
    margin-top: -5px;
    margin-right: -50%;

    /* top: -30px; */

    height: 12px;
    width: 12px;
    border-radius: 50%;
}
.intro .intro-contents {
    align-items: center;
    justify-content: center;
}
.intro .intro-contents .left-intro {
    width: 150px;
    height: 150px;
    /* margin: 15px 30px; */
    padding-right: 20px;
}

.intro .intro-contents .left-intro img {
    width: 100%;
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .intro {
        min-width: 100%;
        background: #ff4f00;
        display: flex;
        align-items: center;
    }
    .intro .middle {
        margin-top: 20px !important;
        margin-left: 40px !important;
    }

    .intro .middle .middle-top {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-family: "DM Sans", sans-serif;
        /* border: 1px solid black; */
    }
    .intro .intro-contents .middle .middle-top a {
        display: none;
    }
    .intro .middle .middle-top .buttons {
        margin-bottom: 10px;
    }

    .intro-contents {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 0.4rem;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    background: #ffff;
}
input.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #000;
    border: 5px solid #fff;
    border-radius: 50%;
    width: 1.2rem;
    height: 1.2rem;
    z-index: 1;
    position: relative;
}

/* *********************Episodes********************* */
.episodes {
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 100px;
}
body {
    background: #fff;
}
.episodes p {
    font-size: 18px;
    line-height: 22px;
    font-family: "DM Sans", sans-serif;
    color: #ff4f00;
    margin-bottom: 15px;
}
.episodes h1 {
    font-size: 50px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 60px;
}
.row {
    margin-top: 5%;
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}
.episode-col {
    flex-basis: 48%;
    background: #fff;
    margin-bottom: 5%;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    transition: 0.5s;
    text-align: left;
    position: relative;
    min-height: 100px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.episode-col .main-play-btn {
    position: relative;
    top: 50%;
}

.episodes .row a {
    text-decoration: none;
}

.episode-col img {
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 5%;
    position: relative;
}

.episode-col:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.107);
}
.layer {
    width: 30%;
    padding: 10px;
    /* height: 10%; */
    background: #ff4f00;
    position: absolute;
    top: 42%;
    right: 3.4%;
    text-align: center;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .layer {
        top: 42.8%;
        right: 3.9%;
    }
}

.layer h2 {
    color: #fff;
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
}

h2 {
    font-size: 30px;
    font-family: "DM Sans", sans-serif;
    line-height: 36px;
    font-weight: 700;
    color: #000;
}
.episode-col .title h2 {
    font-size: 30px;
    font-weight: 700;
}
.play-text {
    display: flex;
    width: 100%;
    /* min-height: 300px; */

    padding: 10px 0;
    /* margin-top: 20px; */
}
.play-text .buttons {
    flex-basis: 20%;
    width: 100px;
    min-height: 100px;
}

.play-text .buttons img {
    width: 100px;
    /* min-height: 100px; */
    border-radius: 50%;
}

.play-text button {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    margin-right: 20px;
    transition: 0.6s;
    cursor: pointer;
}
.episode-col .title {
    height: 100px;
}
@media (max-width: 1000px) {
    .episodes {
        width: 95%;
        box-shadow: none !important;
    }
    .episodes h1 {
        font-size: 35px;
    }
    .play-text button {
        padding: 15px 22px;
    }
    .episode-col .title {
        height: 120px;
    }
    .episode-col .title h2 {
        font-size: 25px;
    }
}
.play-text {
    min-height: 100px;
}
.play-text button:hover {
    background: #ff4f00;
    color: #fff;
}
.play-text button i {
    font-size: 20px;
}
@media (max-width: 700px) {
    .play-text button i {
        font-size: 20px;
    }
}
.play-text .text p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #a9a9a9;
    font-weight: 300;
    margin-bottom: 2px;
}

.play-text .text a {
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: #000;
}
.play-text .text a h1:hover {
    color: #ff4f00;
}

.play-text .text h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 200;
    color: #302e2e;
}
hr {
    margin-bottom: 20px;
    border: 1px solid #f1ebebdf;
}
.episode-btn {
    position: absolute;
    bottom: 2%;

    text-align: left;
    padding: 20px;
    width: 90%;

    border: none;
    color: #a9a9a9;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    transition: 0.6s;
    cursor: pointer;
}
.episode-btn:hover {
    background: #ff4f00;
    color: #fff;
}
.episode-btn a:hover {
    color: #fff;
}

.episode-btn i {
    margin-left: 20px;
}
@media (max-width: 1000px) {
    .play-text .text h1 {
        font-size: 15px !important;
    }
    .owl-carousel__prev,
    .owl-carousel__next {
        display: none;
    }
}
/* ****************Latest Episode*********** */
.latest-episode {
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: space-between;
}
.episode-latest p {
    font-family: "DM Sans", sans-serif;
    color: #ff4f00;
    margin-top: 70px;
    margin-bottom: 10px;
}
.episode-latest h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 50px;
    margin-bottom: 10px;
}
.btn button {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    justify-content: center;
    transition: 0.6s;
}
.btn button:hover {
    background: #ff4f00;
    color: #fff;
}

.item {
    /* border: 1px solid #ff4f00; */
    min-height: 500px;
    margin: 10px 8px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.207);
}

.item .links {
    display: flex;
    padding: 20px 30px;
    text-align: center;
}
.item .links button {
    height: 50px;
    width: 50px;
    font-size: 20px;
    border-radius: 50%;
    border: none;
    background: #ff4f00;
    color: #fff;
    margin-right: 10px;
}
.item .links p {
    text-decoration: none;
    padding: 10px 0;
    color: #ff4f00;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.item .links small {
    padding: 13px 0;
    font-family: "DM Sans", sans-serif;
    color: #a9a9a9;
}
.item .thumbnail {
    height: 200px;
}
.item .thumbnail img {
    width: 100%;
    height: auto;
}
.item .texts {
    padding: 0 30px;
    padding-bottom: 20px;
}
.item .texts h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
}
.item .texts a {
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
    line-height: 14px;
    transition: 0.5s;
    position: fixed;
    bottom: 5%;
}

.item .texts a:hover {
    color: #ff4f00;
}
@media (max-width: 1200px) {
    .item {
        height: auto;
    }

    .item .links button {
        height: 40px;
        width: 40px;
        font-size: 20px;
        border-radius: 50%;
        border: none;
        background: #ff4f00;
        color: #fff;
        margin-right: 10px;
    }
}

/* *************support************* */
.support {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
        url(/frontend/assets/images/demo/Support-and-listen.jpg);
    width: 100%;
    padding: 5vh 0;
    /* height: 40vh; */
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.support a {
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-weight: 400;
}
@media (max-width: 768px) {
    .support {
        display: inline-block;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        text-align: center;
    }
}
.support .links {
    text-align: left;
    color: #fff;
    margin-right: 40px;
}
.support .links p {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #ff4000;
}
.support .links h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 50px;
    padding: 20px 0;
    color: #fff;
}
@media (max-width: 700px) {
    .support .links {
        text-align: center;
        color: #fff;
        padding: 30px 10px;
    }
    .support .links h1 {
        font-size: 30px;
    }
}
.support .support-btn button {
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    background: #ff4000;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    transition: 0.6s;
    cursor: pointer;
}
.support .support-btn button:hover {
    background: #000;
}

/* ********************Feature episode************** */
.feature-episode {
    width: 100%;
    margin: auto;
    padding-top: 120px;
    box-sizing: border-box;
}
.feature-episode .texts {
    text-align: center;
}
.feature-episode .texts p {
    font-size: 20px;
    color: #ff4000;
    padding: 20px 0;
}
.feature-episode .texts h1 {
    font-size: 50px;
}

.feature-epidsod-content {
    display: flex;
    margin: 30px 15px;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.207);
}
.feature-epidsod-content h1 {
    padding-top: 10px;
    font-size: 20px;
    transition: 0.5s;
}
.feature-epidsod-content h1:hover {
    color: #ff4000;
}
.feature-epidsod-content .top {
    display: flex;
}
.feature-epidsod-content button {
    width: 60px;
    height: 60px;
    padding: 15px 20px;
    margin-right: 20px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 20px;
    background: #000;
    transition: 0.5s;
    cursor: pointer;
}
.feature-epidsod-content button:hover {
    color: #fff;
    background: #ff4000;
}
.feature-episode-btn {
    margin-left: 20px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    justify-content: space-between;
}
.feature-episode-btn p {
    padding: 5px 35px;
    white-space: nowrap;
    color: #a9a9a9;
    font-weight: 200;
}
.feature-episode-btn a {
    text-decoration: none;
    white-space: nowrap;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    transition: 0.5s;
}
.feature-episode-btn a:hover {
    color: #ff4000;
}
.feature-episode-btn .name {
    color: #ff4000;

    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 1000px) {
    .feature-epidsod-content h1 {
        font-size: 15px;
        font-weight: 400;
    }
    .feature-epidsod-content {
        display: block;
        align-items: left;
    }
    .feature-episode-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: left;
        text-align: left;
    }
    .top {
        display: flex;
        padding: 20px 20px;
    }
}

/* ******************************TESTIMONAL******************* */
.testimonal {
    display: flex;
    padding: 100px;
    margin-top: 100px;
    /* width: 100%;
    height: 80vh; */
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url(/frontend/assets/images/demo/bg-our-testimonial.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.testimonal .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1000px) {
    .content {
        display: block !important;
        width: 100%;
    }
    .content .users {
        display: none;
    }
    .testimonal .content .inner-content {
        display: block;
    }
    #testimonal-img {
        width: 100%;
        background-size: cover;
        background-position: center;
        align-items: left;
    }
}
.testimonal .content p {
    font-family: "DM Sans", sans-serif;
    color: #ff4000;
    font-size: 18px;
    margin: 10px 0;
}
.users button {
    float: right;
    margin: 5px;
    /* margin-right: 20px; */
    padding: 20px 20px;
    border: none;
    border-radius: 50%;
    transition: 0.6s;
}
.users button:hover {
    background: #ff4000;
    color: #fff;
}
.users img {
    border-radius: 50%;
    margin: 5px;
}
.users img:nth-child(1) {
    border-radius: 50%;
    border: 2px solid #ff4000;
}
.testimonal .content h1 {
    font-size: 50px;
    padding: 10px 0;
    margin-bottom: 20px;
}

.content .inner-content {
    margin-top: 30px;
    display: flex;
    text-align: left;
}
.content .inner-content .texts .inner-rating {
    margin-top: 30px;
    color: #ff4000;
}
.content .inner-content .texts .inner-rating h2 {
    font-size: 20px;
    font-weight: 700;
}
.content .inner-content .texts .inner-rating p {
    font-size: 14px;
    font-weight: 200;
    line-height: 17px;
    color: #777777;
}
.content .inner-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}
.content .inner-content p {
    color: #a8a8a8;
    font-size: 18px;
    font-weight: 200;
    margin-right: 40px;
}

#qoute {
    font-size: 70px;
    float: right;
    margin-top: -100px;
    margin-right: 50px;
}
@media (max-width: 700px) {
    #qoute {
        font-size: 40px;
    }
}

/* *********************BLOG****************** */
.blog-post {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 90%;
    margin: auto;
}
.blog-post .blog-texts {
    text-align: center;
}
.blog-post .blog-texts p {
    font-size: 18px;
    color: #ff4f01;
}
.blog-post .blog-texts h1 {
    font-size: 50px;
    line-height: 60px;
}
.images {
    padding: 100px 15px;
    display: flex;
    margin: auto;
}
.images .img {
    flex: 1;
    margin: 10px 15px;
    flex-basis: 40% !important;
    position: relative;
}
@media (max-width: 960px) {
    .images {
        display: block;
    }
}
.images .img1 {
    background-image: linear-gradient(
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 1),
            rgb(233, 43, 0)
        ),
        url(/frontend/assets/images/demo/p3odcast-1.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
}
.images .img2 {
    background-image: linear-gradient(
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 1),
            rgb(233, 43, 0)
        ),
        url(/frontend/assets/images/demo/po3dcast-12.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat !important;
}
.images .img3 {
    background-image: linear-gradient(
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 1),
            rgb(233, 43, 0)
        ),
        url(/frontend/assets/images/demo/pod3cast-10.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat !important;
}

@media (max-width: 700px) {
    .blog-post {
        width: 90%;
    }
    .blog-post .blog-texts h1 {
        font-size: 30px;
        line-height: 35px;
        text-align: left;
    }
    .blog-post .images {
        display: block;
        align-items: left;
        justify-content: center;
    }
    .blog-post .img img {
        width: 100%;
        margin: 20px 0;
    }
}

.blog-post .images .img .calendar {
    padding: 15px;
    margin: 30px;
    margin-top: 20px;
    width: 30px;
    text-align: center;
    background: #ff4f01;
    color: #fff;
}
.img .calendar p {
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}
.img .comments {
    position: absolute;
    bottom: 0;
    margin: 30px;
    color: #fff;
}
.img .comments a {
    color: #fff;
    text-decoration: none;
}
.img .comments a i {
    font-size: 14px;
    color: #ff4f01;
}
.img .comments h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

/* **************************PLATFORMS********************** */
.platforms {
    max-width: 100%;
    overflow: hidden;
    padding: 5vh 0;
    /* height: 30vh; */
    background: #ff4f00;
    display: flex;
    align-items: center;
}
.platforms ul {
    width: 100%;
    margin: 0 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.platforms ul li {
    list-style: none;
    display: inline-block;
}
@media (max-width: 700px) {
    .platforms {
        padding: 30px 0;
        /* height: 70vh; */
    }
    .platforms ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
    }
    .platforms ul li {
        padding: 20px 0;
    }
}

/* ***********************Footer********************* */
.footer {
    width: 100%;
    /* height: 70vh; */
    background: #000;
    color: #fff;
}
.footer-content {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}
.footer-content .footer-top {
    display: flex;
    padding: 100px 100px;
    justify-content: space-between;
}
.col .col-head h2 {
    font-size: 20px;
    color: #fff;
    padding-bottom: 5px;
}
.col .col-head h2 i {
    color: #ff4f01;
}
.col .col-head p {
    font-size: 20px;
    line-height: 34px;
    font-style: normal;
    font-weight: 200;
}
.col .social-links {
    padding: 20px 0;
}
.col p {
    font-size: 16px;
    padding: 5px 0;
    font-weight: 200;
    color: #777777;
}
.col ul li {
    list-style: none;
    font-size: 16px;
    padding: 5px 10px;
    font-weight: 200;
    color: #777777;
}
.col ul li i {
    margin-right: 10px;
}
#description {
    letter-spacing: 50px !important;
    line-height: 30px;
}
.footer .footer-content .footer-bottom {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.footer .footer-content .footer-bottom a {
    width: 100%;
    padding: 20px 0;
    text-decoration: none;
}
hr {
    width: 100%;
    border: 0.02px solid #4d4d4d;
}
.footer-bottom .links {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer {
        width: 90%;
        /* height: auto; */
        padding: 100px 5%;
        background: #000;
        color: #fff;
    }
    .footer-content .footer-top {
        display: flex;
        padding: 20px;
    }
    .footer-content .footer-top {
        display: flex;
        flex-direction: column;
        padding: 20px 15px;
        justify-content: space-between;
    }
    .footer-bottom .links a {
        font-size: 10px;
    }
}

/* **************************About Page*********************** */
.about {
    /* padding-top: 2vh;
    background-image: linear-gradient(
    rgba(255, 79, 1, 0.7),
    rgba(255, 79, 1, 0.7),
    rgba(255, 79, 1, 0.7),
    rgba(255, 79, 1, 0.7),
    rgba(255, 79, 1, 0.7)
    ),
    url(/frontend/assets/images/team.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    object-fit: cover; */
}
.abou-text {
    text-align: center;
    padding: 20vh 0;
    color: #fff;
}
.abou-text h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}
.abou-text p {
    font-weight: 200;
}

.company-introduction {
    justify-content: center;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
}

.company-introduction .column {
    width: 100%;
    /* margin: 0 15px; */
    min-height: 600px;
    display: flex;
    position: relative;
    margin: 10px 40px;
    overflow: hidden;
}

.company-introduction .column .right h1 {
    font-size: 50px;
    font-family: "Book Antiqua";
}
.company-introduction .column .right .company-intro {
    color: #df4b06;
    padding: 20px 0;
    font-family: "Book Antiqua";
}
.company-introduction .column .right .company-description {
    text-align: justify;
    color: #777777;
    font-weight: 300;
    padding: 30px 0;
    line-height: 30px;
    overflow: hidden;
}

.company-introduction .column .right .checklist i {
    color: #df4b06;
    margin-right: 10px;
}

.company-introduction .column .box {
    width: 350px;
    height: 350px;
    overflow: hidden;
}
.company-introduction .column .box-1 {
    /* margin-left: 2px; */
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 30px;
    overflow: hidden;
}
.company-introduction .column .box-2 {
    position: absolute;
    border: 10px solid #ff4000;
    top: 120px;
    left: 120px;
}
.company-introduction .column .box-3 {
    /* margin-left: 2px; */
    position: absolute;
    top: 200px;
    left: 250px;
    z-index: 2;
}
.company-introduction .column .box-1 img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-introduction .column .box-3 img {
    max-width: 100%;
}
.company-introduction .left-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .company-introduction {
        min-height: 10vh !important;
    }
    .company-introduction .left-column {
        display: none;
    }
    .company-introduction .column .right .company-description {
        max-width: 95%;
        text-align: justify;
    }
    .company-introduction .column .right h1 {
        font-size: calc(3vw + 3vh);
        /* font-size: 70px; */
    }
}

/* *********************************NEW PODCAST***************** */
.hosts {
    margin-bottom: 100px;
}
.hosts .content {
    margin-top: 100px;
    text-align: center;
}
.hosts .content p {
    font-size: 18px;
    color: #df4b06;
}
.hosts .content h1 {
    font-size: 50px;
    margin-bottom: 40px;
}
.hosts .content .row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    width: 90%;
    margin: auto;
    justify-content: center;
    align-items: center;
}
.hosts .content .row .col {
    padding: 30px 0;
    background: rgb(255, 255, 255);
    min-height: 450px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    overflow: hidden !important;
}
.hosts .content .row .col .teams-img {
    /* background-color: #000; */
    width: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    /* width: 200px; */
    height: 100%; /* Assuming you want the image to take the full height */
    box-sizing: border-box; /* Include padding in the total height */
}
.hosts .content .row .col .teams-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    align-items: center;
    border: 1px solid #ff4000;
}
#team-decription {
    padding: 0 50px;
    justify-content: center;
}
#team-decription p {
    color: #777777;
    text-align: justify;
    min-height: 250px;
    font-family: "Book Antiqua";
}
.hosts .content .row .col ul {
    display: flex;
    justify-content: center;
}
.hosts .content .row .col ul li {
    list-style: none;
    padding: 0 0;
    margin: 0;
}
.hosts .content .row .col ul li {
    align-items: center;
}

.hosts .content .row .col ul li i {
    font-size: 20px;
    color: #000;
    transition: 0.3s ease-in-out;
}
.hosts .content .row .col ul li i:hover {
    color: #df4b06;
}

/* ***********************Podcast****************** */
.podcast {
    background-image: linear-gradient(
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7)
        ),
        url(/frontend/assets/images/demo/Support-and-listen.jpg);
    width: 100%;
    padding-top: 2vh;
    background-size: cover;
    background-position: center;
}
.video-grid .container {
    margin: 20px 30px;
}
.podcast-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.podcast-row .col {
    flex-basis: 30%;
}
@media (max-width: 768px) {
    .podcast-row {
        display: flex;
        flex-direction: column;
    }
    .podcast-row .col {
        flex-basis: 100%;
    }
    .podcast-row .mobile-view {
        display: none;
    }
}
/* **************************BLOG******************** */
.blog {
    background-image: linear-gradient(
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7),
            rgba(255, 79, 1, 0.7)
        ),
        url(/frontend/assets/images/demo/Support-and-listen.jpg);
    width: 100%;
    padding-top: 2vh;
    background-size: cover;
    background-position: center;
}

/* *******************BLOG************************ */
.blog-container {
    margin: 100px 100px;
    display: flex;
}

.blog-container .left-container {
    width: 70%;

    margin-right: 20px;
}
@media (max-width: 900px) {
    .blog-container .left-container {
        width: 100%;

        margin-right: 10px;
    }
}

.blog-container .left-container .row {
    display: flex;

    flex-direction: column;
}

.blog-container .left-container img {
    width: 100%;
}
.blog-container .left-container a {
    margin: 20px 0;
    text-decoration: none;
    color: #000;
}
.blog-container .left-container a h1 {
    font-size: 34px;
    font-style: normal;
    cursor: pointer;
    font-weight: 700;
    transition: 0.5s;
}
.blog-container .left-container .row .icons {
    color: #4d4d4d;
    font-weight: 200;
}

.blog-container .left-container .row .icons i {
    color: #ff4000;
    margin-bottom: 30px;
}
.left-container .row button {
    width: 150px;
    height: 45px;
    background: #ff4f00;
    color: #fff;
    margin: 15px 0;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}
.left-container .row button:hover {
    background: #fff;
    border: 1px solid #ff4000;
    color: #ff4000;
}
.blog-container .left-container a:hover {
    color: #ff4000;
}

@media (max-width: 1024px) {
    .blog-container {
        margin: 0px 20px;
        display: block;
    }
    .blog-container .left-container {
        max-width: 90%;
        /*display:none;*/
        margin: auto;
        overflow-wrap: break-word;
    }
    .blog-container .right-container {
        display: none;
    }
}
.right-container {
    margin-left: 20px;
    flex-basis: 30%;
    /* overflow: visible !important; */
}
.right-container .search-bar {
    margin-top: 45px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

hr {
    border: 0.2px solid #ded7d7;
    opacity: 0.5;
}
.right-container .list {
    display: flex;
    flex-direction: column;
}
.right-container .list h1 {
    margin-top: 30px;

    margin-bottom: 40px;
}
.right-container .list a {
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 200;
    font-size: 25px;
}
.right-container .list a:hover {
    color: #df4b06;
}
.right-container .list a i {
    margin-right: 10px;
}
.right-container .tags .buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sticky-header {
    position: sticky !important;
    top: 85px !important;
    background: white;
    /* z-index: 1000; */
}
.right-container .tags button {
    border: none;
    width: 30%;
    background: #f5f5f5;
    height: 50px;
    border-radius: 20px;
    margin: 10px 5px;
    cursor: pointer;
    transition: 0.5s;
}
.right-container .tags button:hover {
    background: #ff4f01;
    color: #fff;
}

/* *************************CONTACT********************** */
.contact {
    max-width: 90%;
    margin: auto;
}
.contact .container {
    display: flex;
    margin: 50px 0;
    align-items: center;
    justify-content: center;
}
.contact .container .row {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.contact .container .row .col {
    border: 15px solid #ff4f01;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 30px;
}
.contact .container .no-border {
    border-right: none;
}
.contact .container .row a {
    text-decoration: none;
    color: #777777;
    font-weight: 200;
    margin: 5px 0;
}
.contact .container .row a:hover {
    color: #df4b06;
}

@media (max-width: 768px) {
    .contact .container {
        display: flex;
        flex-direction: column;
    }
    .contact .container .row {
        border: none;
    }
}

/* ***********************Contact Us Form************ */
.form {
    display: flex;
    margin: 180px 150px;
    justify-content: space-between;
}
.form-col {
    flex: 1;
}
@media (max-width: 768px) {
    .form {
        margin: 100px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.form .left-form h5 {
    font-size: 20px;
    color: #df4b06;
    font-weight: 400;
}
.form .left-form h1 {
    margin: 30px 0;
    font-size: 50px;
}
.form .left-form p {
    color: #777777;
    font-weight: 200;
    line-height: 30px;
    margin-bottom: 30px;
}

.form .left-form .form-links {
    display: flex;

    text-align: center;
}
.form .left-form .form-links a {
    margin: 5px;
    background: #f5f5f5;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
}
.form .left-form .form-links a i {
    font-size: 15px;
}
@media (max-width: 768px) {
    .form .left-form .form-links {
        display: none;
    }
    .form .left-form h1 {
        font-size: calc(5vw + 5vh);
    }
}
.form-col {
    margin-bottom: 20px;
}
.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
}
.btn-warning {
    background: #ff4f01;
    color: #fff;
    font-weight: 200;
}

.form-control {
    -webkit-appearance: none;
    border: none;
    background: rgba(245, 245, 245, 0.814);
    color: #000;
    height: 50px;
    outline: none;
    padding: 5px 10px;
    margin-bottom: 30px;
    margin-right: 10px;
}
.float-end {
    float: right;
}

input::placeholder {
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 20px;
}
input::-moz-focus-outer {
    border: none;
}
input,
textarea {
    border-radius: 30px;
    /* transition: border-color 0.3s; */
    box-sizing: border-box;
    width: 100%;
    text-indent: 10px;
}
textarea:focus,
input:focus {
    border: 1px solid #df4b06;
}
.textarea {
    min-height: 100px;
    text-indent: 20px;
}

.textarea::placeholder {
    font-family: "DM Sans", sans-serif;
    font-weight: 200;
    letter-spacing: 1px;
}

.map {
    width: 100%;
    height: 60vh;
}
.map iframe {
    width: 100%;
    height: 100%;
}
.feature-audio {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    z-index: 2000;
}

audio::-webkit-media-controls-panel {
    background: #ff4f01;
}
#toast-container .toast-error,
.toast-success,
.toast-warning {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-weight: 100;
    color: #fff;
}

.test-episode .episode-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    padding: 20px 200px;
}
.test-episode-col {
    flex: 1;
    border: 1px solid red;
}
@media (max-width: 768px) {
    .test-episode .episode-row {
        display: block;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}
/***********home page video ******/
#navbar {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Optional: Add a gradient overlay */
.video-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-linear-gradient(
        rgba(0, 0, 0, 0.713),
        rgba(0, 0, 0, 0.879)
    );
    background: linear-gradient(rgba(0, 0, 0, 0.713), rgba(0, 0, 0, 0.879));
    z-index: 10000;
}

@media (max-width: 768px) {
    .background-video {
        object-fit: cover;
    }
}
