/*---------------------------------------------
/////  Podcast HTML  /////
----------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
--------------------------------------------------------------*/
/***********************
* Variable
* Common
* button style
* header
* banner
* text-slider
* about
* show
* sponsore
* cta
* testimonial
* vibe section
* cta-two-section
* blog section
* main-footer
***********************/
/*----------------------------------------------------------------
* Variable
--------------------------------------------------------------*/
:root {
    --pod-black: #254566;
    --pod-light: #fff;
    --pod-body-font:"Onest", sans-serif;
    --pod-heading-font: "Unbounded", sans-serif;
}
html {
    scroll-behavior: smooth;
}
/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: var(--pod-body-font);
    font-size: 16px;
    font-weight: 400;
    background-color: #d8d8d8;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
    font-style: normal;
    /* background-image: url(../images/background/body-bg.png); */
}
body.black-theme{
    background-color: #0D0F14;
    background-image: url(../images/background/body-bg-two.png);
    background-blend-mode: overlay;
    color: #fff;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   font-family:var(--pod-heading-font);
}
h1 {
    font-size: 63px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h2 {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h4 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h5 {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}
h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}
p {
    margin: 0 0 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible,
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-50 {
    --bs-gutter-y: 50px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background-color: var(--pod-primary);
    color: var(--pod-black);
    border: none;
}
/***********************
* button style
***********************/
.btn {
    display: inline-flex;
    column-gap: 19px;
    align-items: center;
    text-transform: uppercase;
    color: var(--pod-black);
    font-family: var(--pod-heading-font);
    letter-spacing: 0.03em;
    font-size: 14px;
    line-height: 1.5;
    padding: 9px;
    padding-left: 24px;
    border-radius: 30px;
    border: 1px solid var(--pod-black);
    transition: all 0.5s;
}
.btn span {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-light span{
    background-color: var(--pod-black);
    transition: all 0.5s;
}
.btn-light:hover{
    background-color: var(--pod-black);
    color: var(--pod-light);
}
.btn-light:hover span{
    background-color: var(--pod-light);
}
.btn-light:hover span img{
    filter: brightness(0);
}
/***********************
* header one
***********************/
header.main-header {
    padding: 46px 48px;
}
nav.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.main-menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    column-gap: 50px;
    padding-left: 15px;
}
.main-menu-logo {
    flex: 1;
    text-align: center;
}
ul.main-menu-list li {
    display: flex;
    column-gap: 6px;
    align-items: center;
    padding: 20.5px 0;
    position: relative;
}
ul.main-menu-list li>img {
    position: absolute;
    top: 50%;
    left: -0px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s;
}
ul.main-menu-list li.active>img, ul.main-menu-list li:hover>img{
   opacity: 1;
   left: -15px;
}
ul.main-menu-list li a{
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    font-family: var(--pod-heading-font);
    text-transform: uppercase;
    color: var(--pod-black);
    letter-spacing: 0.02em;
}
ul.main-menu-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--pod-black);
    transition: all 0.5s;
}
ul.main-menu-list li.active a::after, ul.main-menu-list li:hover a::after{
    width: 100%;
}
.main-menu-right {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex: 1;
    justify-content: end;
}
a.search-btn {
    text-transform: uppercase;
    display: flex;
    column-gap: 7px;
    align-items: center;
    color: var(--pod-black);
    font-family: var(--pod-heading-font);
    letter-spacing: 0.02em;
    font-size: 14px;
    line-height: 1.5;
}
ul.main-menu-list li ul {
    position: absolute;
    width: 250px;
    padding: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: var(--pod-black);
    z-index: 999;
    padding: 10px 0;
}
ul.main-menu-list li:hover ul {
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
ul.main-menu-list li ul li {
    padding: 10px;
    padding-left: 20px;
}
ul.main-menu-list li ul li a {
    color: var(--pod-light);
    position: relative;
}
ul.main-menu-list li ul li img {
    filter: brightness(50);
    left: 21px;
}
ul.main-menu-list li ul li:hover img{
    opacity: 1;
    left: 21px;
}
ul.main-menu-list li ul li:hover a{
    padding-left: 25px;
}
/***********************
* banner one
***********************/
.banner-section {
    padding: 34px 48px 100px;
}
.banner-section h1 {
    font-size: 6.2vw;
    line-height: 128px;
    margin-bottom: 23px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}
.banner-content {
    position: relative;
}
.banner-content h2 {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 800;
    font-size: 70px;
    line-height: 76px;
    text-transform: uppercase;
    -webkit-text-fill-color: #EFF0F2;
    -webkit-text-stroke: 1px black;
    font-family: sans-serif;
}
.total-user ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    padding-left: 17px;
}
.total-user ul li {
    margin-left: -17px;
}
.total-user {
    display: flex;
    column-gap: 25px;
    align-items: center;
    position: absolute;
    bottom: 28px;
    left: 50px;
}
.total-user-text h3 {
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 30px;
    font-size: 30px;
}
.total-user-text{
    color: var(--pod-light);
}
.total-user-text p{
    margin-bottom: 0;
    font-size: 14px;
    line-height: 16px;
    font-weight: 16px;
}
.play-btn {
    cursor: pointer;
    background-color: black;
    height: 60px;
    width: 60px;
    border: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.play-btn img {
    height: 24px;
}
.audio-block {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 67%;
    display: flex;
    align-items: center;
    column-gap: 24px;
}
.audio-player {
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: relative;
    width: 100%;
}
.audio-block h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    max-width: 270px;
}
a.share-btn {
    height: 40px;
    width: 40px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
}
.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: absolute;
    width: 100%;
    justify-content: right;
    bottom: 0;
}
.controls button {
    border: none;
    background: none;
}
.current-time {
    margin-left: auto;
}
.backward-btn {
    margin-left: 80px;
}
.waveform {
    width: 100%;
    padding-bottom: 30px;
}
.duration-time {
    margin-right: 150px;
}
button.volume-toggle {
    height: 40px;
    width: 40px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
    background: none;
}
.volume-wrapper {
    position: relative;
}
.hidden {
    display: none;
}
.volume {
    appearance: none;
    background: rgb(73, 3, 236);
    height: 4px;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    top: -66px;
    left: -45px;
    transform: rotate(270deg);
}
.volume::-webkit-slider-thumb {
    appearance: none;
    height: 16px;
    width: 16px;
    background: rgb(73, 3, 236);
    border-radius: 50%;
    border: none;
  }
  /* Firefox */
.volume::-moz-range-thumb {
    height: 16px;
    width: 16px;
    background: rgb(73, 3, 236);
    border-radius: 50%;
    border: none;
  }
.volume-slider {
    display: none;
}
.volume-wrapper:hover .volume-slider {
    display: block;
}
/***********************
* text-slider one
***********************/
.text-slider-section {
    overflow: hidden;
    height: 150px;
    margin-top: -17%;
}
.text-slider {
    transform: rotate(-1.44deg);
    /* background-image: url(../images/background/text-slider.jpg); */
     background: linear-gradient(270deg, #274768 0%, #d4b24c 100%);

    background-position: center;
    background-size: cover;
    margin-top: 30px;
}
.text-slider-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-right: 50px;
    padding: 20px 0;
}
.text-slider-box h4{
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--pod-light);
}
.gly{
    margin-top: 100px;
}
/***********************
* about one
***********************/
.about-section {
    padding: 180px 0 60px 0;
}
.about-image {
    position: relative;
  width:400px;
      filter: drop-shadow(2px 4px 6px black);
}
.about-image:nth-child(2) {
    position: relative;
    width:400px;top:-260px;left:200px;

}
a.about-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    column-gap: 13px;
    color: var(--pod-black);
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}
a.about-btn span{
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--pod-black);
}
.about-content {
    padding-left: 10px;
    padding-right: 30px;
}
.about-content h2 {
    font-weight: 800;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.about-content p {
    color: #4A4F62;
}
ul.about-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 30px;
    margin-bottom: 40px;
}
ul.about-list li{
    margin-bottom: 25px;
    display: flex;
    column-gap: 14px;
    font-weight: 500;
    line-height: 30px;
    font-family: var(--pod-heading-font);
}
.about-social-media p {
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-social-media ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.about-social-media ul li a{
    height: 45px;
    width: 45px;
    border-radius: 100%;
    border: 1px solid var(--pod-black);
    color: var(--pod-black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-social-media ul li a:hover{
    color: var(--pod-light);
    background-color: var(--pod-black);
}
/***********************
* show one
***********************/
.shows-section {
    padding-bottom: 150px;
}
.heading-box{
    margin-bottom: 50px;
}
.heading-box h2{
    font-weight: 800;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
}
.show-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 4px 15px 0px #0000000D;
    height: 100%;
}
.show-image {
    height: 100%;
}
.show-image>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.show-box::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(360deg, #2C0571 21.85%, rgba(0, 0, 0, 0) 78.04%);
}
.show-content {
    position: absolute;
    bottom: -160px;
    z-index: 1;
    transition: all 0.5s;
}
.show-box:hover .show-content{
    bottom: -120px;
}
.show-content-inner h4{
    height: 40px;
}
a.show-share-btn {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #fff;
}
a.show-share-btn:hover{
    background-color: var(--pod-black);
}
img{
    transition: all 0.5s;
}
a.show-share-btn:hover img{
    filter: brightness(50);
}
.show-content-inner {
    position: relative;
    bottom: 4px;
    padding: 25px;
}
.show-content-inner ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    column-gap: 10px;
    margin-bottom: 16px;
}
.show-content-inner ul li{
    border: 1px solid var(--pod-black);
    padding: 4px 13px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: start;
    column-gap: 4px;
}
.show-content-inner h4{
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
}
.show-content-inner h4 a{
    color: var(--pod-black);
}
.show-gues-box {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.show-gues-box p{
    margin-bottom: 0;
}
.show-content-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 82px);
    background-color: #fff;
    z-index: -1;
}
.show-content svg {
    position: absolute;
    top: -0px;
    width: 100%;
    left: 0;
    height: auto;
}
.show-audio-box{
    margin-top: 30px;
}
.show-audio-box .waveform {
    padding: 0;
}
.show-audio-box  .duration-time{
    margin: 0;
}
.show-audio-box .current-time {
    display: none;
}
/***********************
* sponsore
***********************/
.sponsore-section {
    padding-bottom: 150px;
}
.sponsores {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 40px;
    position: relative;
}
.sponsores::after{
    content: "";
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(88, 98, 130, 0) -22.5%, #254566 48.51%, rgba(88, 98, 130, 0) 123.14%);
}
.sponsores-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}
.sponsores-logo:nth-child(1):after,.sponsores-logo:nth-child(2):after , .sponsores-logo:nth-child(3):after{
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    height: 250px;
    width: 1px;
    background: linear-gradient(180deg, rgba(88, 98, 130, 0) -25.42%, #254566 49.5%, rgba(88, 98, 130, 0) 125.08%);
}
/***********************
* cta
***********************/
.cta-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 0 60px;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .cta-bg svg {
    width: 100%;
    height: 100%;
    display: block;
    preserveAspectRatio: none;
}
a.cta-btn {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    align-items: center;
    column-gap: 13px;
    color: var(--pod-black);
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}
a.cta-btn span {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--pod-black);
}
/* .cta-content-inner {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
} */
.other-site {
    color: #fff;
    display: flex;
    column-gap: 20px;
}
.other-site .site-name {
    display: flex;
    align-items: center;
    column-gap: 12px;
    flex: auto;
}
.other-site .site-name span {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.other-site .site-name p {
    font-weight: 500;
    font-size: 12px;
    line-height: 26px;
    margin-bottom: 0;
}
.other-site .site-name h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
span.cta-tag {
    background-color: #fff;
    padding: 4px 13px;
    border-radius: 20px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
}
.podcats-live-box {
    margin-top: 40px;
    margin-bottom: 50px;
    display: flex;
    border: 1px solid #FFF;
    color: #fff;
}
.podcats-live-left {
    flex: 1;
    padding: 22px 0;
    padding-left: 30px;
}
.podcats-live-right {
    flex: 1;
    border-left: 1px solid #fff;
}
.podcats-live-left p {
    font-family: Unbounded;
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.podcats-live-left h4 {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.podcats-live-right .live-time {
    padding: 12px 0;
    padding-left: 30px;
}
.podcats-live-right .live-time:last-child {
    border-top: 1px solid #fff;
}
.podcats-live-right .live-time h6 {
    margin-bottom: 0;
    font-family: Unbounded;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
}
/***********************
* testimonial
***********************/
.testimonial-section {
    padding: 150px 0;
}
.testimonia-content {
    height: 365px;
    overflow-y: auto;
    position: relative;
}
.testimonia-content::-webkit-scrollbar {
    width: 4px;
  }
  .testimonia-content::-webkit-scrollbar-track {
    background: #D8D9DA;
    border-radius: 4px;
  }
  .testimonia-content::-webkit-scrollbar-thumb {
    background: #254566;
    border-radius: 4px;
  }
  .testimonial-box {
    padding-right: 60px;
    padding-left: 20px;
    margin-bottom: 40px;
}

.testimonial-details {
    display: flex;
    column-gap: 28px;
    margin-bottom: 14px;
}
.testimonial-details .icon {
    flex-shrink: 0;
}
.testimonial-details p {
    text-align: end;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}
.post-auther {
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: end;
    column-gap: 30px;
}
.post-auther h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}
.post-auther p {
    margin-bottom: 0;
    line-height: 30px;
    color: #4A4F62;
}
/***********************
* vibe section
***********************/
.vibe-section {
    padding-bottom: 150px;
}
.vibe-box {
    width: 640px;
    margin: 0 40px;
}
.vibe-image {
    position: relative;
    margin-bottom: 20px;
}
.vibe-image a.vibe-season {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    column-gap: 6px;
    color: #4A4F62;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
    padding: 3px 14px;
    border: 1px solid var(--pod-black);
    border-radius: 20px;
}
.vibe-box .show-gues-box p {
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
    color: #4A4F62;
}
.vibe-box .show-gues-box {
    margin-bottom: 10px;
}
.vibe-box h4 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}
.vibe-box h4 a {
    color: var(--pod-black);
}
ul.vibe-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.vibe-list li {
    display: flex;
    column-gap: 14px;
    margin-bottom: 20px;
}
ul.vibe-list li span.pay-icon {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--pod-black);
    cursor: pointer;
}
ul.vibe-list li span.pay-icon img {
    height: 12px;
}
ul.vibe-list li #podcast-audio {
    opacity: 0;
    visibility: hidden;
}
ul.vibe-list li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--pod-black);
}
ul.vibe-list li p {
    margin-bottom: 0;
    margin-left: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
.custom-progress {
    max-width: 530px;
    height: 4px;
    background: #D5D8E1;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    margin: auto;
    margin-top: 50px;
}
.custom-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--pod-black);
    transform: translateX(0%);
    transition: transform 0.5s ease;
    border-radius: 4px;
}
/***********************
* cta-two-section
***********************/
.cta-two-section {
    overflow: hidden;
    padding-bottom: 26px;
    background-image: url(../images/background/cta-two-bg.png);
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}
.cta-two-section::after {
    content: "";
    position: absolute;
    bottom: 26px;
    left: -3px;
    width: 105%;
    height: 82px;
    background: linear-gradient(270deg, #4527FE 0%, #BD212C 100%);
    z-index: 1;
    transform: rotate(1.44deg);
}
.text-slider {
    position: relative;
    z-index: 2;
    width: 105%;
    left: -2px;
}
.cta-two-section .heading-box{
    margin-bottom: 0;
}
.cta-two-section .heading-box h2{
    margin-bottom: 15px;
}
.cta-two-section p{
    margin-bottom: 40px;
    text-align: center;
    line-height: 24px;
}
.cta-subscribe-form form .form-control {
    padding: 17px 20px;
    border-radius: 30px;
    color: var(--pod-black);
    background: transparent;
    border-color: var(--pod-black);
}
.cta-subscribe-form form .form-control::placeholder{
    color: #4A4F62;
}
.cta-subscribe-form form {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}
.cta-subscribe-form form .subscribe-btn{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--pod-black);
    color: #fff;
    padding: 9px;
    padding-left: 34px;
    border: none;
    display: flex;
    align-items: center;
    column-gap: 28px;
    border-radius: 30px;
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.cta-subscribe-form form .subscribe-btn span{
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #fff;
}
.cta-subscribe-form form .subscribe-btn span img{
    filter: brightness(0);
}
.total-subscribers {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-bottom: 150px;
}
.total-subscribers p{
    margin-bottom: 0;
    color: #4A4F62;
}
/***********************
* blog section
***********************/
.blog-section {
    padding: 150px 0;
}
.blog-image {
    position: relative;
    margin-bottom: 20px;
}
a.meda-date {
    position: absolute;
    bottom: 0;
    right: 0;
    writing-mode: sideways-lr;
    font-family: Unbounded;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: var(--pod-black);
}
a.meta-category {
    padding: 3px 13px;
    border: 1px solid #000;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    line-height: 22px;
    color: #4A4F62;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.blog-details h4{
    font-family: Unbounded;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 12px;
}
.blog-details h4 a{
    color: var(--pod-black);
    background-image: linear-gradient(transparent calc(100% - 1px), #000 1px);
    background-repeat: no-repeat;
    background-position-y: 0px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
}
.blog-details h4 a:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }

    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}
@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }

    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}
.blog-details p{
    margin-bottom: 25px;
    color: #4A4F62;
}
a.blog-btn {
    font-family: Unbounded;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000;
    display: inline-flex;
    align-items: center;
    column-gap: 14px;
}
a.blog-btn img{
    filter: brightness(0);
}
/***********************
* main-footer
***********************/
.main-footer {
    position: relative;
    padding: 100px 0 48px;
    margin: 0 60px;
    margin-bottom: 60px;
    color: #fff;
    overflow: hidden;
    background: transparent;
}
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
.main-footer svg {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    display: block;
    preserveAspectRatio: none;
}
.footer-about {
    position: relative;
    padding-right: 20px;
}
.footer-right {
    position: relative;
    display: flex;
        justify-content: space-evenly;
    column-gap: 80px;
}
.footer-about h4 {
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
}
.footer-about  p {
    margin-bottom: 30px;
}
.footer-right h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
}
.footer-link ul {
    padding-left: 18px;
    margin-bottom: 0;
}
.footer-link ul li a{
    color: #fff;
    line-height: 36px;
}
.footer-link {
    flex-shrink: 0;
}
.footer-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-contact ul li {
    display: flex;
    column-gap: 22px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.footer-contact ul li p{
    margin-bottom: 0;
}
.footer-contact ul li a{
    color: #fff;
}
.footer-lower {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}
.footer-lower p{
    margin-bottom: 0;
}
.footer-lower ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.footer-lower ul li a{
    color: #fff;
}
.footer-social-media {
    position: absolute;
    top: 0;
    right: 0;
}
.footer-social-media ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.footer-social-media ul li a {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #000;
    color: #000;
}
.footer-social-media ul li a:hover{
    background-color: #000;
    color: #fff;
}
/***********************
* header-two
***********************/
header.main-header.header-two {
    padding: 0;
}
.header-topbar {
    display: flex;
    border-bottom: 1px solid #555964;
}
.header-two .main-menu-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-left {
    display: flex;
    align-items: center;
    column-gap: 18px;
    padding: 0 60px;
    border-right: 1px solid #555964;
}
.topbar-left p {
    margin-bottom: 0;
    color: #C0C6DE;
}
.topbar-left ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.topbar-left ul li a {
    border: 1.5px solid #fff;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
}
.topbar-left ul li a:hover{
    background-color: #fff;
    color: var(--pod-black);
}
.topbar-right {
    display: flex;
    align-items: center;
    column-gap: 14px;
    padding: 25px 60px;
    border-left: 1px solid #555964;
}
.topbar-right .icon {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-right .icon img {
    filter: brightness(0);
}
.topbar-right-details p {
    display: flex;
    align-items: center;
    column-gap: 4px;
    margin-bottom: 0;
    font-family: Unbounded;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.topbar-right-details h6 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}
.header-two ul.main-menu-list li a{
    color: #fff;
}
.header-two ul.main-menu-list>li {
    padding: 19.5px 0;
}
.header-two ul.main-menu-list{
    padding-left: 60px;
}
.header-two a.search-btn{
    color: #fff;
}
.header-two a.search-btn img{
    filter: brightness(50);
}
.header-two .main-menu-right{
    padding-right: 60px;
    flex: auto;
}
.header-two nav.main-menu{
    border-bottom: 1px solid #555964;
}
/***********************
* banner-two
***********************/
.banner-two {
    padding: 130px 0px 0px 0px;
}
.banner-content-two {
    position: relative;
}
.banner-top-two {
    position: absolute;
    top: 0;
    left: 0;
}
.banner-top-two ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 12px;
}
.podup-tag {
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
    padding: 1px 15px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    display: inline-block;
}
.banner-top-two h4 {
    font-weight: 500;
    font-size: 20px;
width: 400px;
    line-height: 30px;
    margin-bottom: -20px;
}
.audio-player.two {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 69%;
}
.audio-player.two .play-btn {
    background-color: #fff;
}
.audio-player.two .play-btn img {
    filter: brightness(0);
}
.audio-player.two .share-btn {
    border-color: #fff;
}
.audio-player.two .share-btn img {
    filter: brightness(50);
}
.audio-player.two .volume-wrapper .volume-toggle {
    border: none;
}
.audio-player.two .volume-wrapper .volume-toggle img {
    filter: brightness(50);
}
.audio-player.two .volume.volume-slider {
    display: block;
    transform: none;
    position: relative;
    top: 0;
    left: 0;
}
.audio-player.two .volume-wrapper {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.audio-player.two  .volume {
    background: rgb(255 255 255);
}
.audio-player.two .volume::-webkit-slider-thumb {
    background: rgb(255 255 255);
}
.audio-player.two .duration-time {
    margin-right: 260px;
}
.audio-player.two .controls button {
    color: #fff;
    display: flex;
}
.audio-player.two .controls button img{
    filter: brightness(50);
}
.banner-box-two {
    width: 1050px;

    margin: 0 70px;
}
/***********************
* process section
***********************/
.process-box {
    text-align: center;
    padding: 0 30px;
    position: relative;
}
.process-box::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -160px;
    height: 24px;
    width: 135px;
    background-image: url(../images/svg/process.svg);
}
.process-box .icon {
    margin-bottom: 20px;
}
.process-box h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 14px;
}
.process-box p {
    color: #C0C6DE;
}
.col-lg-3:last-child .process-box::after{
    display: none;
}
/***********************
* event section
***********************/
.event-section {
    padding: 150px 0;
}
.event-date {
    position: absolute;
    background-color: #fff;
    color: #000;
    z-index: 1;
    padding: 14px 5px;
    border-radius: 10px;
    text-align: center;
    top: 50%;
    left: 40px;
    width: 86px;
    text-align: center;
    transform: translateY(-50%);
}
.event-box {
    position: relative;
    padding: 11px;
    padding-left: 150px;
    border-radius: 45px 0 0 45px;
    margin-bottom: 50px;
    border-right: 0;
    transition: all 0.5s;
    background-color: var(--pod-black);
}
.event-box::after{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    border-radius: 45px 0 0 45px;
    background: linear-gradient(90deg, #8D91A2 0%, #34363C 71.1%);
    z-index: -1;
}
.event-date h6 {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
}
.event-date p {
    margin-bottom: 0;
    font-family: Unbounded;
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
}
.event-details h4 {
    font-family: Unbounded;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 6px;
}
.event-details img {
    filter: brightness(11);
}
.event-details p {
    color: #C0C6DE;
}
.event-box:last-child{
    margin-bottom: 0;
}
.event-image {
    position: relative;
}
a.event-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    font-family: Unbounded;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 22px;
    color: #fff;
}
a.event-btn span {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 100%;
}
a.event-btn span img {
    filter: brightness(0);
}
.event-box:hover {
    background: linear-gradient(90deg, #2A2D37 0%, #050608 100%);
}
/***********************
* text-slider-section two
***********************/
.text-slider-section.two {
    position: relative;
}
.text-slider-section.two::after {
    content: "";
    position: absolute;
    bottom: 36px;
    left: -3px;
    width: 105%;
    height: 82px;
    background: linear-gradient(270deg, #4527FE 0%, #BD212C 100%);
    z-index: 1;
    transform: rotate(1.44deg);
}
.text-slider-section.two .text-slider {
    background-image: url(../images/background/text-slider-2.jpg);
}
.text-slider-section.two .text-slider-box h4{
    color: var(--pod-black);
}
.text-slider-section.two .text-slider-box img{
    filter: brightness(0);
}
/***********************
* episodes-section
***********************/
.episodes-section {
    padding: 150px 0;
}
.episodes-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    column-gap: 10px;
    margin-bottom: 16px;
}
.episodes-content ul li {
    border: 1px solid var(--pod-light);
    padding: 4px 13px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: start;
    column-gap: 4px;
}
.episodes-content ul li img {
    filter: brightness(50);
}
.episodes-content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
}
.episodes-content h4 a {
    color: #fff;
}
.episodes-content
 .show-gues-box {
    margin-bottom: 57px;
}
.episodes-content .show-gues-box img {
    filter: brightness(11);
}
.episodes-content .show-gues-box  p {
    color: #C0C6DE;
}
.episodes-image {
    position: relative;
    width: calc(100% - 1px);
    left: 1px;
}
.episodes-image a {
    position: absolute;
    bottom: 0;
    right: 16px;
}
.episodes-image a span {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
}
.episodes-image a span img {
    filter: brightness(0);
}
.episodes-box {
    margin: 0 15px;
    width: 470px;
    position: relative;
    border-radius: 45px ;
    margin-top: 1px;
    margin-bottom: 1px;
    background: linear-gradient(0deg, #050608 -6.37%, #050608 59.75%);
}
.episodes-box::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    border-radius: 45px;
    background: linear-gradient(179deg, #8D91A2 -8.59%, #34363C 33.07%);
    z-index: -1;
}
.episodes-box:hover {
    background: linear-gradient(180deg, #2A2D37 -6.37%, #050608 59.75%);
}
.episodes-content {
    padding: 25px;
    padding-bottom: 0;
}
.custom-progress-two {
    margin: auto;
    margin-top: 75px;
    width: 370px;
    height: 2px;
    border-radius: 2px;
    background-color: #5F6676;
}
.custom-progress-two span {
    display: block;
    background-color: #C9CDD8;
    border-radius: 2px;
    width: 100%;
    height: 100%;
    transform: translateX(0%);
    transition: transform 0.5s ease;
}
/***********************
* vibe-section two
***********************/
.vibe-section-two {
    padding-bottom: 150px;
}
.vibe-item-two {
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 40px;
}
.vibe-item-two:last-child{
    margin-bottom: 0;
}
.vibe-image-two {
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
}
.vibe-details-two h4 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}
.vibe-details-two h4 a {
    color: #fff;
}
.vibe-details-two>p {
    margin-bottom: 20px;
    color: #C0C6DE;
}
.vibe-gues-box-outer {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid #343847;
}
.vibe-gues-box-outer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.vibe-gues-box-outer ul li {
    margin-left: -15px;
}
.vibe-gues-box-outer ul li:first-child {
    margin: 0;
}
.vibe-gues-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.vibe-gues-box img {
    filter: brightness(11);
}
.vibe-gues-box p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
    color: #C0C6DE;
}
.vibe-other-site ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.vibe-other-site ul li a {
    height: 45px;
    width: 45px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
}
.vibe-gues-box-outer ul li img{
    height: 40px;
    width: 40px;
}
.vibe-audio-player {
    display: flex;
    align-items: center;
}
.vibe-audio-player .audio-player.two {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 0px;
    overflow: hidden;
    transition: all 0.5s;
}
.vibe-item-two:hover .vibe-audio-player .audio-player.two{
    max-width: 100%;
}
.vibe-audio-player .audio-player.two .duration-time {
    margin-right: 0;
}
.vibe-audio-player .waveform {
    width: 220px;
    padding-bottom: 0;
}
.vibe-audio-player .current-time {
    margin-left: 0;
}
.vibe-audio-player .play-btn{
    height: 50px;
    width: 50px;
}
.vibe-audio-player .audio-player{
    column-gap: 15px;
}
.vibe-btn-two {
    margin-top: 70px;
}
.vibe-btn-two a {
    color: #fff;
    display: inline-flex;
    column-gap: 25px;
    padding: 9px;
    align-items: center;
    padding-left: 30px;
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 30px;
}
.vibe-btn-two a span {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #fff;
}
.vibe-btn-two a span img {
    filter: brightness(0);
}
.vibe-item-two {
    display: none;
}
.vibe-item-two.show {
    display: flex !important;
}
/***********************
* cta three
***********************/
.cta-section-three {
    padding: 150px 0;
    background-image: url(../images/background/cta-three-bg.png);
    background-size: cover;
    background-position: center;
    border-radius: 80px;
    margin: 0 60px;
}
.cta-section-three .heading-box h2{
    margin-bottom: 12px;
}
.cta-section-three .heading-box {
   margin-bottom: 40px;
}
.cta-section-three  .cta-subscribe-form form .form-control::placeholder{
    color: #C0C6DE;
}
.cta-section-three  .cta-subscribe-form form .form-control {
    color: #ffffff;
    background: #3A1025;
    border-color: #ffffff;
}
.cta-section-three  .cta-subscribe-form form .subscribe-btn {
    background-color: #ffffff;
    color: var(--pod-black);
}
.cta-section-three  .cta-subscribe-form form .subscribe-btn span {
    background-color: var(--pod-black);
}
.cta-section-three .cta-subscribe-form form .subscribe-btn span img {
    filter: none;
}
.cta-section-three .total-subscribers {
    margin-bottom: 0;
}
.cta-section-three .total-subscribers p {
    color: #ffffff;
}
.cta-section-three .total-subscribers img{
    filter: brightness(50);
}
/***********************
* guest-section
***********************/
.guest-section {
    padding: 150px 0;
}
.guest-image {
    position: relative;
    margin-bottom: 20px;
}
.guest-social-media {
    position: absolute;
    bottom: 0;
    right: 0;
}
.guest-social-media ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.guest-social-media ul li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
}
.guest-box h4{
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 8px;
}
.guest-box p{
    color: #C0C6DE;
}
/***********************
* tag-section
***********************/
.tag-slider:first-child {
    margin-bottom: 40px;
}
.tag-slider.lrt {
    transform: rotate(180deg);
}
.tag-slider.lrt .tag-box{
    transform: rotate(180deg);
}
.tag-box {
    display: inline-flex;
    align-items: center;
    column-gap: 23px;
    border: 1px solid #7F8392;
    border-radius: 40px;
    padding-right: 24px;
    background-color: #07080B;
    margin: 0 10px;
}
.tag-box h4 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}
.tag-icon {
    padding: 15px 30px;
    border-radius: 40px;
    border: 1px solid #7F8392;
    background-color: #254566;
    transform: translateX(-1px);
}
/***********************
* app-section
***********************/
.app-section {
    padding: 150px 0;
}
.app-image {
    position: relative;
    margin-right: 80px;
}
.app-download-option {
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.app-download-option p {
    margin-bottom: 0;
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.app-download-option ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.btn.btn-dark {
    border-color:  #fff;
    color: #fff;
    background-color: var(--pod-black);
}
.btn.btn-dark:hover{
    color: var(--pod-black);
    border-color:var(--pod-black) ;
    background-color: var(--pod-light);
}
.btn.btn-dark span{
    background-color: var(--pod-light);
}
.btn.btn-dark:hover span{
    background-color: var(--pod-black);
}
.btn.btn-dark span img{
    filter: brightness(0);
}
.btn.btn-dark:hover span img{
    filter: brightness(50);
}
.app-details h2 {
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 55px;
    text-transform: uppercase;
}
.app-details p{
    margin-bottom: 30px;
    color: #C0C6DE;
}
.footer-social-media.light a {
    border-color: #fff;
    color: #fff;
}
header.light {
    color: var(--pod-black);
}
header.light .topbar-left,header.light .topbar-right,header.light .header-topbar, header.light nav.main-menu {
    border-color: #BABECE;
}
header.light .topbar-left p{
    color: var(--pod-black);
}
header.light  .topbar-left ul li a{
    color: var(--pod-black);
    border-color: var(--pod-black);
}
header.light  .topbar-left ul li a:hover{
    background-color: var(--pod-black);
    color: #fff;
}
header.light .topbar-right .icon{
    background-color:var(--pod-black) ;
}
header.light .topbar-right .icon img{
    filter: brightness(50);
}
header.light .topbar-right-details p img{
    filter: brightness(0);
}
header.light ul.main-menu-list>li>a{
    color: var(--pod-black);
}
header.main-header.header-two ul.main-menu-list li a::after{
    display: none;
}
header.light a.search-btn{
    color: var(--pod-black);
}
header.light a.search-btn img {
    filter: brightness(0);
}
/***********************
* breadcrumb
***********************/
.breadcrumb {
    justify-content: center;
    padding: 50px 0;
    border-bottom: 1px solid #BABECE;
}
.breadcrumb ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.breadcrumb ul li{
    position: relative;
}
.breadcrumb ul li a, .breadcrumb ul li span{
    font-family: Unbounded;
    line-height: 26px;
    color: var(--pod-black);
}
.breadcrumb ul li::after {
    content: "/";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    right: -20px;
}
.breadcrumb ul li:last-child:after{
    display: none;
}
/***********************
* podcast-section
***********************/
.podcast-section {
    padding: 150px 0;
}
.prodcast-image {
    position: relative;
    margin-bottom: 50px;
}
.podcast-section .other-site {
    color: var(--pod-black);
    position: absolute;
    right: 0;
    bottom: 0;
    column-gap: 30px;
}
.podcast-section .other-site .site-name span {
    background-color: transparent;
    border: 1px solid #000;
}
.podcast-section .other-site .site-name span img{
    filter: brightness(0);
}
.podcast-details h4 {
    font-weight: 500;
    font-size: 30px;
    line-height: 26px;
    margin-bottom: 20px;
}
.podcast-details p {
    margin-bottom: 14px;
}
.podcast-list {
    padding-left: 60px;
}
.podcast-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.podcast-list ul li {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 25px;
    font-family: Unbounded;
    font-weight: 500;
    line-height: 30px;
}
.podcast-list ul li img {
    filter: brightness(0);
    height: 24px;
}
.guest-section.about p {
    color: #4A4F62;
}
.guest-section.about .guest-social-media ul li a{
    border-color: var(--pod-black);
    color: var(--pod-black);
}
/***********************
* testimonial-two
***********************/
.testimonial-two {
    position: relative;
    margin: 0 60px;
    padding: 150px 0;
    color: #fff;
}
.testimonial-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.testimonial-two svg {
    width: 100%;
    height: 100%;
    display: block;
    preserveAspectRatio: none;
}
.testimonial-slider-two {
    position: relative;
    margin-left: 60px;
}
.testimonial-two .post-auther p {
    color: #B4B8C6;
}
.testimonial-two  .testimonial-details .icon img {
    filter: brightness(50);
}
.post-auther img {
    height: 70px;
    width: 70px;
}
.custom-arrows {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    column-gap: 15px;
}
.custom-arrows .slick-arrow {
    border: 1px solid #000;
    border-radius: 100%;
    background: no-repeat;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-arrows .slick-arrow img {
    filter: brightness(0);
}
.custom-arrows button.slick-prev.slick-arrow {
    transform: rotate(180deg);
}
.blog-section-two {
    padding: 150px 0;
}
/***********************
* blog
***********************/
.blog-image-two {
    position: relative;
    margin-bottom: 30px;
}
.blog-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.blog-box-two {
    margin-bottom: 40px;
}
.blog-search-widget form {
    position: relative;
}
.blog-search-widget .form-control {
    border-color: #254566;
    background-color: #fff;
    border-radius: 30px;
    padding: 17px 20px;
}
.blog-search-widget button {
    position: absolute;
    top: 0;
    right: 0;
    background: no-repeat;
    border: none;
}
.blog-search-widget button span {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #000;
}
.widget {
    margin-bottom: 50px;
}
.widget h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}
.blog-category-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-category-widget ul li a {
    display: flex;
    align-items: center;
    column-gap: 14px;
    color: #4A4F62;
}
.blog-category-widget ul li {
    margin-bottom: 22px;
}
.blog-category-widget ul li a img {
    filter: brightness(0);
}
.blog-sidebar {
    padding-left: 30px;
    position: sticky;
    top: 50px;
}
.popular-post-item {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}
.popularpost-image {
    position: relative;
    width: 150px;
    flex-shrink: 0;
}
.popularpost-image p {
    position: absolute;
    bottom: -5px;
    right: 0;
    margin-bottom: 0;
    font-family: Unbounded;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
}
.popular-post-details a.meta-category {
    margin-bottom: 10px;
}
.popular-post-details h4 {
    margin-bottom: 0;
    font-size: 16px;
}
.popular-post-details h4 a {
    color: #000;
}
.blog-social-media-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.blog-social-media-widget ul li a {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 100%;
    color: #000;
}
.blog-cta-image {
    position: relative;
}
.blog-cta-details {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    color: #fff;
    width: 265px;
}
.blog-cta-details .image {
    margin-bottom: 25px;
}
.blog-cta-details h4 {
    font-family: Unbounded;
    font-weight: 600;
    font-size: 30px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.blog-cta-details h4:last-child {
    font-size: 20px;
    margin-bottom: 0;
}
.blog-cta-details  p {
    font-family: Unbounded;
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.blog-cta-image a {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: flex;
    column-gap: 12px;
    color: #000;
    align-items: center;
}
.blog-cta-image a span {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #000;
}
.blog-box-two:last-child{
    margin-bottom: 0;
}
.pagination {
    margin-top: 80px;
    column-gap: 15px;
}
.pagination a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #000;
    color: #000;
    font-family: Unbounded;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.pagination a img {
    filter: brightness(0);
}
.pagination a.pre-btn {
    transform: rotate(180deg);
}
.pagination a.active ,.pagination a:hover {
    background-color: #000;
    color: #fff;
}
.pagination a:hover img{
    filter: brightness(50);
}
.page-header-section {
    background-image: url(../images/blog/blog-banner-bg.jpg);
    height: 560px;
    background-position: center;
    background-size: cover;
}
.blog-details-box-two {
    margin-bottom: 40px;
}
.blog-details-box-two .heading-box {
    margin-bottom: 30px;
}
.blog-details-box-two p {
    margin-bottom: 25px;
    color: #4A4F62;
}
.blog-details-box-two h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
}
.qute-text {
    position: relative;
    margin-bottom: 25px;
}
.qute-text .text-inner {
    position: absolute;
    top: 42%;
    left: 180px;
    width: 570px;
    color: #fff;
    transform: translateY(-50%);
}
.qute-text .text-inner h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
}
.qute-text .text-inner p {
    color: #fff;
}
.qute-text .image {
    position: absolute;
    bottom: 0;
    left: 0;
}
.blog-details-box-two ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-details-box-two ul li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 15px;
}
.blog-details-box-two ul li:last-child {
    margin-bottom: 0;
}
.blog-details-box-two ul li img {
    filter: brightness(0);
    height: 24px;
}
.blog-details-image {
    margin-bottom: 25px;
}
.blog-pagination {
    position: relative;
    padding-top: 40px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
.blog-pagination::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(88, 98, 130, 0) -22.5%, #254566 48.51%, rgba(88, 98, 130, 0) 123.14%);
}
.pagination-box {
    width: 45%;
}
.pagination-box>a {
    font-family: Unbounded;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 13px;
    color: #000;
}
.pagination-box>a span {
    filter: brightness(0);
    margin-bottom: 4px;
}
.pagination-box h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
}
.pagination-box h4 a {
    color: #000;
}
.next.pagination-box {
    text-align: end;
}
.blog-comment-widget .heading-box {
    margin-bottom: 30px;
}
.comment-item {
    margin-bottom: 58px;
    display: flex;
    column-gap: 24px;
}
.blog-comment-widget {
    margin-bottom: 100px;
}
.comment-item .comment-image {
    flex-shrink: 0;
}
.comment-details .comment-title {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
}
.comment-details .comment-title h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
}
.comment-details .comment-title  p {
    margin-bottom: 0;
    color: #4A4F62;
}
.comment-details p {
    margin-bottom: 0;
}
.comment-item.replay {
    padding-left: 100px;
}
.blog-comment-form .heading-box {
    margin-bottom: 30px;
}
.blog-comment-form .heading-box h2 {
    margin-bottom: 10px;
}
.blog-comment-form .heading-box p {
    color: #4A4F62;
}
.form-group {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    column-gap: 24px;
}
.form-group .form-control {
    border-color: #254566;
    border-radius: 30px;
    padding: 18px 22px;
}
/***********************
* contact
***********************/
.contact-section {
    padding: 150px 0;
}
.contact-details .heading-box {
    margin-bottom: 30px;
}
.contact-details .heading-box h2 {
    margin-bottom: 12px;
}
.contact-details .heading-box p {
    color: #4A4F62;
}
.address-box {
    width: 60%;
    margin-bottom: 30px;
}
.address-box h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}
.contact-details>h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}
.contact-details>h6 a {
    color: #000;
}
.contact-social-media {
    margin-top: 30px;
}
.contact-social-media h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}
.contact-social-media ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.contact-social-media ul li a {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #000;
    color: #000;
}
.contact-form {
    position: relative;
    padding: 92px 48px 58px;
    margin-left: 70px;
    border-radius: 30px;
    overflow: hidden;
}
.contact-image {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.contact-image svg {
    width: auto;
    height: 100%;
    display: block;
    preserveAspectRatio: none;
}
.guest-box-2 {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.guest-box-2 .guest-image {
    width: 340px;
    flex-shrink: 0;
}
.guest-box-2 .guest-social-media ul li a{
    color: var(--pod-black);
    border-color: var(--pod-black);
}
.podcast-gues-two {
    padding-bottom: 150px;
}
.podcast-gues-two {
    padding-bottom: 150px;
}
.guest-details-two h4 {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}
.guest-details-two span {
    margin-bottom: 15px;
    color: #4A4F62;
    display: inline-block;
}
.guest-details-two p {
    margin-bottom: 20px;
    color: #4A4F62;
}
a.guest-btn {
    font-family: Unbounded;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
a.guest-btn span {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #000;
    margin-bottom: 0;
}
.guest-section.two .guest-box p {
    color: #4A4F62;
}
.guest-section.two .guest-social-media ul li a{
    color: var(--pod-black);
    border-color: var(--pod-black);
}
/***********************
* podcast-list
***********************/
.podcast-list-section {
    padding: 150px 0;
}
.podcast-list-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.podcast-list-image {
    flex-shrink: 0;
    width: 290px;
    position: relative;
}
.podcast-list-image a.btn {
    padding: 0;
    border: none;
    position: absolute;
    right: 16px;
    bottom: 0;
}
.podcast-list-image a.btn span {
    background-color: #000;
}
.podcast-list-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 16px;
}
.podcast-list-details ul li {
    border: 1px solid var(--pod-black);
    padding: 4px 13px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: start;
    column-gap: 4px;
}
.podcast-list-details h4 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}
.podcast-list-details h4 a {
    color: #000;
}
.podcast-list-details p {
    color: #4A4F62;
}
/***********************
* podcast-single
***********************/
.podcast-banner {
    padding: 150px 48px 100px;
}
.podcast-banner-image {
    position: relative;
}
.podcast-banner-image ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
}
.podcast-banner-image ul li {
    padding: 10px;
    color: #fff;
    background-color: #000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding-right: 25px;
}
.podcast-banner-image ul li span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #fff;
}
.podcast-banner-image ul li span img {
    filter: brightness(0);
}
.other-site-details p {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 0;
}
.other-site-details h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
.audio-block.two {
    max-width: 78%;
}
.podcast-sigle-details {
    width: 420px;
    flex-shrink: 0;
}
.podcast-sigle-details .show-gues-box {
    margin-bottom: 8px;
}
.podcast-sigle-details .show-gues-box p {
    font-size: 13px;
    color: #4A4F62;
}
.podcast-sigle-details h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 100%;
}
.podcast-about-details .heading-box {
    margin-bottom: 20px;
}
.podcast-about-details p {
    color: #4A4F62;
}
.podcast-about-details ul {
    padding: 0;
    margin: 0;
    margin-top: 30px;
    list-style: none;
}
.podcast-about-details ul li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 15px;
    color: #4A4F62;
}
.podcast-about-details ul li img {
    filter: brightness(0);
}
.podcast-about-section {
    padding-bottom: 100px;
}
.podcast-about-image {
    position: relative;
}
.script-section {
    padding: 150px 0;
    margin: 0 60px;
    position: relative;
    color: #fff;
}
.script-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.script-section svg {
    width: 100%;
    height: 100%;
    display: block;
    preserveAspectRatio: none;
}
.script-details {
    position: relative;
}
.script-item-list {
    max-height: 340px;
    overflow-y: auto;
    padding-right: 50px;
}
.script-item {
    margin-bottom: 30px;
}
.script-item h4 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
}
.script-item p {
    color: #C0C6DE;
}
.script-item-list::-webkit-scrollbar {
    width: 4px;
}
.script-item-list::-webkit-scrollbar-track {
    background: #7B7184;
    border-radius: 4px;
}
.script-item-list::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 4px;
}
.episode-time-section {
    padding-top: 150px;
}
.episode-time-box {
    margin-bottom: 25px;
    padding: 16px;
    border: 1px solid #000;
    border-radius: 45px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.episode-time-box span.pay-icon {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 100%;
    flex-shrink: 0;
}
.episode-time-box h4 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
.episode-time-box h4 a {
    color: #000;
}
.episode-time-box .audio-duration {
    margin-bottom: 0;
    margin-left: auto;
    font-size: 18px;
    font-weight: 500;
}
.app-section.two {
    padding-top: 0;
}
.app-section.two p {
    color: #4A4F62;
}
.app-section.two .app-image img {
    border: 1px solid #000;
    border-radius: 100%;
}
.heading-box-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.podcst-pagination {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
.podcst-pagination a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #000;
}
.podcst-pagination a img {
    filter: brightness(0);
}
.podcst-pagination a:first-child img {
    transform: rotate(180deg);
}
a.btn.btn-link {
    padding: 0;
    border: none;
    text-decoration: none;
}
a.btn.btn-link:hover{
    color: #000;
}
a.btn.btn-link img {
    filter: brightness(0);
}
ul.vibe-list.two {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
}
ul.vibe-list.two::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(88, 98, 130, 0) -22.5%, #254566 48.51%, rgba(88, 98, 130, 0) 123.14%);
}
.season-list-section {
    padding: 150px 0;
}
.season-single-section {
    padding: 150px 0;
}
.episodes-box.two {
    background: #fff;
    width: 100%;
    margin: 0;
}
.episodes-box.two::after {
    height: 80%;
}
.episodes-box.two .episodes-image {
    width: calc(100% + 3px);
    left: -1px;
}
.episodes-box.two .episodes-content ul li{
    border-color: #000;
}
.episodes-box.two .episodes-content ul li img {
    filter: brightness(0);
}
.episodes-box.two .episodes-content h4 a{
    color: #000;
}
.episodes-box.two .episodes-content .show-gues-box img {
    filter: brightness(0);
}
.episodes-box.two  .episodes-content .show-gues-box  p {
    color: #4A4F62;
}
.episodes-box.two .episodes-image a span{
    background-color: var(--pod-black);
}
.episodes-box.two .episodes-image a span img{
    filter: brightness(50);
}
/***********************
 * mobile-nav
***********************/
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #56736c49;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: var(--pod-black);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: var(--pod-light);
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
 ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
 ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
 }
 ul.mobile-menu-list li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
 ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 ul.mobile-menu-list .dropdown ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
 ul.mobile-menu-list .dropdown ul li a {
    padding-left: 35px;
 }
 .mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
 .mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
 }
.header-menu-collaps {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: start;
    cursor: pointer;
    display: none;
}
.header-menu-collaps span {
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color: var(--pod-black);
}
.header-menu-collaps span:nth-child(2){
    width: 32px;
}
.header-menu-collaps span:nth-child(3){
    width: 16px;
}
.season-list-section .vibe-box {
    width: 100%;
    margin: 0;
}
.preloader {
    position: fixed;
    background-color: #0f110ff7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
}
.loading-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.loading-container img {
    width: 600px;
    height: 170px;
    object-fit: cover;
    object-position: left;
    animation: ltr 10s linear ;
}
@keyframes ltr {
    0%{
        object-position: left;
    }
    100%{
        object-position: right;
    }
}
a.top-to-bottom {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    transform: rotate(270deg);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}
a.top-to-bottom.active{
    opacity: 1;
    visibility: visible;
}




