/*
[Master Stylesheet] 
Project:Rockon Podcast
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
 
:root {
    --primary-color: #9421b5;        
    --text-color: #c8c9da;
    --white-color: #ffffff;      
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;    
    overflow-x:hidden;
    font-family: 'Lato';
    overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color:#171c39;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;    
    background-color: var(--primary-color);
}
/* Scroll */
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;
    font-family: 'Volkhov';
}

*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
a:hover, a:focus{
    color: #fff;
}
img, video {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
    border: none;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;  
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}
/* Buttton CSS Start */
.rock-podcast-btn {
    min-height: 42px;
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: uppercase;    
    background: linear-gradient(140deg, #9F23C1 24.53%, rgb(58, 83, 216) 59.54%, #1384CC 81.64%);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    transition: all 0.3s;
    cursor: pointer;
}
.rock-podcast-btn .rock-podcast-btn-text {
    position: relative;
    pointer-events: none;
  }
.rock-podcast-btn::before{
    content: '';
    position: absolute;
    --size: 0px;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at center,rgba(255, 255, 255,.8) 0,rgba(140, 100, 255,0) 50%) no-repeat;    
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;        
}
.rock-podcast-btn:hover{    
    text-transform: uppercase;
}
.rock-podcast-btn:hover::before {
    --size: 120px;
}
.rock-podcast-btn-effect {
    inset: calc(1px);
    padding: 2px;
    background: var(--lqd-outline-glow-color-secondary,transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    position: absolute;
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
}
.rock-podcast-btn-effect-inner {
    background: conic-gradient(from 290deg at 50%,var(--lqd-outline-glow-color-secondary,transparent) 0%,var(--lqd-outline-glow-color,#fff) 20%,var(--lqd-outline-glow-color-secondary,transparent) 25%);
    animation: button-effect var(--lqd-outline-glow-duration,3s) linear infinite;
    display: inline-block;
    padding: 1px;
    border-radius: 50px;
    inset-inline-start: 50%;
    top: 50%;
    aspect-ratio: 1/1;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    overflow: hidden;
}
@keyframes button-effect {
    0% {
        transform: translate(-88%,-50%) rotate(0deg)
    }

    33% {
        transform: translate(-12%,-50%) rotate(0deg)
    }

    50% {
        transform: translate(-12%,-50%) rotate(180deg)
    }

    83% {
        transform: translate(-88%,-50%) rotate(180deg)
    }

    to {
        transform: translate(-88%,-50%) rotate(360deg)
    }
}
/* Buttton CSS End*/
/* Animated Cursor */
.rock-podcast-aimated-cursor {
    position: absolute;
    left: 0;
    display: none;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s;
    -o-transition: opacity 0.2s ease-in-out 0.5s;
    transition: opacity 0.2s ease-in-out 0.5s;
}
body:hover .rock-podcast-aimated-cursor{
    display: inline-block;
    z-index: 9999999;
}
.rock-podcast-cursor {
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--white-color);    
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 999999999;
}
/* Animated Cursor */
/* Main Headng CSS Start*/
.rock-podcast-main-heading{
    text-align: center;
}
.rock-podcast-main-heading h1 {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(0.83deg, rgba(15, 12, 37, 0.2) 19.7%, rgba(159, 35, 193, 0.2) 45.25%, rgba(58, 83, 216, 0.2) 67.01%, rgba(19, 132, 204, 0.2) 98.91%);
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}
.rock-podcast-main-heading h2{
    font-size: 34px;
    font-weight: 400;
    color: var(--white-color);
    z-index: 1;
    margin-top: -30px;
    position: relative;
}
.rock-podcast-line-shape{
    display: block;
    width: 142px;
    height: 2px;
    background: linear-gradient(108.39deg, #9F23C1 24.53%, #3A53D8 59.54%, #1384CC 81.64%);
    border-radius: 30px;
    margin: 15px auto;    
}
.rock-podcast-main-heading > p {
    font-size: 18px;
    padding-bottom: 50px;
    max-width: 500px;
    width: 100%;
    margin: auto;
}
.rock-podcast-main-heading h1 {
    display: inline;    
}
.rock-podcast-animate-text {
    opacity: 0;
}
.rock-podcast-animate-text.ready {
    opacity: 1;
}
.rock-podcast-animate-text h1 {
    animation: 1s both rock-podcast-animated-text;
}
@keyframes rock-podcast-animated-text {
    0% {
        opacity: 0
    }

    65% {
        opacity: 1;
        text-shadow: 0px 0px 4px var(--primary-color);  

    }

    75% {
        opacity: 1
    }

    100% {
        opacity: 1
    }
}
/* Main Headng CSS End*/

/* Background Cover */
.rock-podcast-bg-cover{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* padding: 80px 0; */
}
/* Background Cover */

/* Smoke Canvas */
.rock-podcast-smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.07;
    z-index: 9999;
    pointer-events: none;
}
/* Smoke Canvas */

/* Container */
.container{
    max-width: 1170px;
    width: 100%;
}
.rock-podcast-banner-wrapper .container, .rock-podcast-about-wrapper .container, .rock_container_parent .container{
    max-width: 1320px;    
    width: 100%;
}
/* Container */

/* Gradient Line */
.rock-podcast-gradient-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(180deg, rgba(159, 35, 193, 0.3) 0%, rgba(19, 132, 204, 0.3) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}
/* Gradient Line */

/* Search Box */
.rock-podcast-searchBox {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    left: 0%;    
    background: linear-gradient(180deg, #400351 30%, #0d1749 80%, #041927 100%);        
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.rock-podcast-searchBox.rock-podcast-show {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.rock-podcast-searchBox.rock-podcast-show,
.rock-podcast-searchBox {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.rock-podcast-searchBoxContainer {
    width: 50%;
    position: relative;
    text-align: end;
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px);
    visibility: hidden;
}
.rock-podcast-searchBox.rock-podcast-show .rock-podcast-searchBoxContainer {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
}
.rock-podcast-searchBox.rock-podcast-show .rock-podcast-searchBoxContainer, .rock-podcast-searchBoxContainer {
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}
.rock-podcast-search-bar-inner {
    position: relative;
    height: 60px;
}
.rock-podcast-search-bar-inner input {
    width: 100%;
    height: 60px;
    padding: 0px 50px 0 20px;
    border-radius: 10px;
    color: var(--white-color);
    background: #FFFFFF0D;
    border: 2px solid #FFFFFF0D;
}
.rock-podcast-search-bar-inner input::placeholder{
    color: #FFFFFF99;
}
.rock-podcast-closeBtn svg {
    width: 20px;
    fill: #FFFFFF99 !important;
}
.rock-podcast-search-bar-inner button {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border: none;
    background: transparent;
    width: 45px;
    font-size: 20px;
    border-radius: 26px;
}
.rock-podcast-closeBtn {
    margin: 0 0 20px 0;
    display: inline-block;
    padding: 0 15px;
}
.rock-podcast-closeBtn svg {
    width: 20px;
    fill: var(--white-color);
}
span.searchBtn {
    cursor: pointer;
}
/* Search Box */
/* Header CSS Start */
.rock-podcast-header-wrapper {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 15px 0;
}
.logged-in .rock-podcast-header-wrapper {
    top: 30px;
}
 
.rock-podcast-header-wrapper .container{
    max-width: 1320px;
    width: 100%;
}
.rock-podcast-header-parent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.rock-podcast-nav-menu ul{
    display: flex ;
    align-items: center;
    gap: 30px;
}
.rock-podcast-nav-menu ul li a{
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
    position: relative;
    transition: all 0.3s;
}
.rock-podcast-nav-menu ul li a:hover, .rock-podcast-nav-menu ul li.active a{
    color: var(--primary-color);
}
.rock-podcast-nav-menu ul li a::before{
    content: '';
    height: 1px;
    background: var(--primary-color);
    width: 0;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: all 0.3s;
}
.rock-podcast-nav-menu ul li a:hover:before, .rock-podcast-nav-menu ul li.active a:before{
    width: 100%;
}
.rock-podcast-header-right{
    display: flex;
    align-items: center;
    gap: 30px;
}
.rock-podcast-header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;  
}
.rock-podcast-header-search p{
    font-size: 16px;
    font-weight: 400;
    color:#FFFFFF99;      
}
@media (min-width: 768px) {
    .navbar-collapse.collapse {
        display: flex !important;
        height: 100% !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}
/* Header CSS End */

/* Banner CSS Start
.rock-podcast-banner-wrapper {
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 180px;
}
 */
.rockBannerShape{
    position: absolute;
}
.rockBanrshap1{
    right: 40px;
    bottom: 100px;
    border-radius: 100%;
    animation: rotate 5s linear infinite;
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(235,101,247,1)
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
.rockBanrshap2{
    top: 45%;
    right: 80px;
    animation: rotate-reverse 5s linear infinite;
}
@keyframes rotate-reverse{
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.rockBanrshap3{
    top: 150px;
    left: 150px;
    animation: rotate 5s linear infinite;
}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.rock-podcast-banner-parent{
    padding-top: 150px;
}
.rock-podcast-banner-content {
    padding-bottom: 250px;
}
.rock-podcast-banner-content h4{
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Lato';
}
.rock-podcast-banner-content h1 {
    font-size: 56px;
    font-weight: 400;
    color: var(--white-color);
    padding: 15px 0;
}
.rock-podcast-banner-content p {
    font-size: 20px;
    max-width: 600px;
    width: 100%;
    padding-bottom: 25px;
}
.rock-podcast-banner-btns {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.rock-podcast-banner-btns a:last-child{
    background: transparent;
    border: 1px solid var(--white-color);
}
.rock-podcast-banner-img {
    position: relative;
    height: 400px;
}
.rockBannerSocial {
    position: absolute;
    transform: scale(0.9);
    transition: all 0.3s;
}
.rockBannerSocial:hover{
    transform: scale(1.05);
}
.rockBanrFb {
    bottom: 30px;
    left: -100px;
}
.rockBanrInsta {
    top: -80px;
    right: -70px;
}
.rockBanrYtb {
    bottom: 80px;
    right: -70px;
}
/* Banner CSS End */

/* About CSS Start 
.rock-podcast-about-wrapper{
    background-image: url(../images/about-bg.jpg);    
}
*/
.rock-podcast-about-content .rock-podcast-main-heading{
    text-align: left;
}
.rock-podcast-about-content .rock-podcast-main-heading .rock-podcast-line-shape{
    margin-left: 0;
}
.rock-podcast-about-content .rock-podcast-main-heading > p {
    padding-bottom: 40px;
    font-size: 16px;
    margin-left: 0;
}
.rock-podcast-about-box-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.rock-podcast-abt-box{
    background: #FFFFFF0A;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 20px 25px;
    max-width: 270px;
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.rock-podcast-abt-box h4{
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
}
.rock-podcast-abt-box .rock-podcast-line-shape{
    width: 74px;   
    margin: 0; 
}
.rock-podcast-abt-box .rock-podcast-btn-effect {
    border-radius: 5px;    
}
.rock-podcast-abt-box .rock-podcast-btn-effect-inner {
    border-radius: 5px;
    background: conic-gradient(from 290deg at 50%,#3A53D8,transparent 0%,#1384CC,#8c2cc5 20%,#fff,transparent 25%);
    animation: button-effect var(--lqd-outline-glow-duration,5s) linear infinite;    
}
/* About CSS End */

/* Ticket Section CSS Start */
.rock-podcast-ticket-wrapper{
    background-image: url(../images/ticket-bg.jpg);    
}
.rock-podcast-ticekt-box {    
    position: relative;
    z-index: 2;
}
.rock-podcast-ticket-inner {
    backdrop-filter: blur(6px);    
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rock-podcast-ticket-inner .rock-podcast-main-heading > p {    
    max-width: 500px;
}
.rock-podcast-countdown ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}
.rock-podcast-countdown ul li {
    background: #FFFFFF08;
    backdrop-filter: blur(6px);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    width: 95px;
    height: 95px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.rock-podcast-countdown ul li::after{
    content: ':';
    position: absolute;
    right: -25px;
    font-size: 30px;
    font-weight: 800;
    color: #FFFFFF33;    
}
.rock-podcast-countdown ul li:last-child::after{
    display: none;
}
.rock-podcast-countdown ul li::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    border: 2px solid transparent;
    background: linear-gradient(180deg, rgba(159, 35, 193, 0.3) 0%, rgba(19, 132, 204, 0.3) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;   
}
.rock-podcast-countdown ul li span {
    font-size: 38px;
    font-weight: 700;
    color: var(--white-color);
    display: block;
    line-height: 1.2;
}
/* Range Slider */
.rock-podcast-ticket-right{
    max-width: 510px;
    width: 100%;
    margin: auto;
}
.rock-podcast-range-inner {
    position: relative;
    width: 100%;
    font-size: 0;
    border-radius: 50px;        
}
.rock-podcast-range-input {
    width: 100%;
    height: 16px;
    opacity: 0;
    display: inline-block;
}
.rock-podcast-range-value {
    --position: 0;
    position: absolute;
    top: -30px;
    left: 10px;    
    transform: translateX(calc(var(--position) * 2 * 1%));
    pointer-events: none;
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
}
.rock-podcast-range-value::after{
    content: 'K';
}
.rock-podcast-fir-line {
    --size: 0.5;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 16px;
    background: linear-gradient(108.39deg, #9F23C1 24.53%, #3A53D8 59.54%, #1384CC 81.64%);
    border-radius: 50px 0 0 50px;
    z-index: 2;
    transform-origin: left top;
    transform: scaleX(var(--size));
    pointer-events: none;
}
.rock-podcast-range-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 16px;
    background: #FFFFFF1A;    
    z-index: 1;
    pointer-events: none;    
    border-radius: 50px;
}
.rock-podcast-fir-line::before {
    content: '';
    width: 3px;
    height: 22px;
    background: var(--white-color);
    position: absolute;
    right: 0;
    top: -3px;
}
.rock-podcast-range{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rock-podcast-range p{
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    padding-top: 10px;
}
.rock-podcast-mange-value .rock-podcast-range p:last-child{
    display: none;
}
/* Range Slider */
.rock-podcast-range-date {
    padding-top: 20px;
}
.rock-podcast-range-date-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px 0;
}
.rock-podcast-range-date .rock-podcast-range-date-flex:nth-child(2){
    border-bottom: 0;
}
.rock-podcast-range-date-flex p{
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    min-width: 220px;
    position: relative;
}
.rock-podcast-range-date-flex p:first-child::before {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 7px;
    right: 15px;
}
.rock-podcast-range-slider .rock-podcast-btn {
    margin-top: 25px;
}
.rockTicktShape{
    position: absolute;
}
.rockTicktShape1 {
    top: 50px;
    left: -35px;
    animation: rotate 5s linear infinite;
}
.rockTicktShape2 {
    bottom: -25px;
    right: -10px;
    z-index: 2;
    animation: rotate 5s linear infinite;
}
/* Ticket Section CSS End */

/* Service Section CSS Start */
/*
.rock-podcast-service-wrapper{
    background-image: url(../images/service-bg.jpg);    
    position: relative;
}
*/
.rock-podcast-service-box{
    position: relative;
}
.rock-podcast-service-box .rock-podcast-btn-effect{    
    border-radius: 20px;    
}
.rock-podcast-service-box .rock-podcast-btn-effect-inner {    
    background: conic-gradient(from 290deg at 50%,#3A53D8,transparent 0%,#1384CC,#8c2cc5 20%,#fff,transparent 25%);
    animation: button-effect var(--lqd-outline-glow-duration,6s) linear infinite;
}
.rock-podcast-service-inner{
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.rock-podcast-service-icon > img{
    display: block;
    margin: auto;
}
.rock-podcast-service-box:hover .rock-podcast-service-icon > img {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.rock-podcast-servi-head {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 15px 0;
}
.rock-podcast-servi-head > span {
    width: 45px;
    margin: 0 15px;
    background: linear-gradient(108.39deg, rgba(159, 35, 193, 0.3) 24.53%, rgba(58, 83, 216, 0.3) 59.54%, rgba(19, 132, 204, 0.3) 81.64%);
    transition: all 0.3s;
}
.rock-podcast-servi-head h4 a{
    font-size: 26px;
    font-weight: 400;
    color: var(--white-color);
    transition: all 0.3s;
    text-transform: capitalize;
}
.rock-podcast-service-box:hover .rock-podcast-servi-head h4 a{
    color: var(--primary-color);
}
.rock-podcast-service-box:hover .rock-podcast-servi-head > span {    
    background: linear-gradient(108.39deg, #9F23C1 24.53%, #3A53D8 59.54%, #1384CC 81.64%);
}
/* Service Section CSS End */

/* Gallery Section CSS Start */
.rock-podcast-galry-wrapper{
    background-image: url(../images/gallery-bg.jpg);    
    position: relative;
}
.rock-podcast-galry-wrapper .rock-podcast-glry-content {
    margin-top: 25px;
}
.rock-podcast-glry-single-parent{
    width: calc(33.35% - 0px);  
    padding: 15px;      
}
.rock-podcast-demo img.mfp-img{
    border-radius: 7px !important;
}
.rock-podcast-demo .mfp-wrap {
    background: linear-gradient(180deg, rgba(64, 3, 81, 0.5) 30%, rgba(13, 23, 73, 0.5) 80%, #041927a6 100%) !important;
    backdrop-filter: blur(10px);
}
.rock-podcast-demo .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid var(--primary-color);    
    opacity: 1;
}
.rock-podcast-demo .mfp-arrow-right:before {
    border-left: 27px solid var(--primary-color);
    opacity: 1;
}
.rock-podcast-gallery-img {
    border-radius: 7px;
    position: relative;
    overflow: hidden;
}
.rock-podcast-galry-wrapper .rock-podcast-glry-single-parent img {	
    width: 100%;
    border-radius: 7px;
    transition: all 0.3s;
}
.rock-podcast-glry-single-parent:hover .rock-podcast-gallery-img img{
    transform: scale(1.2);
}
.rock-podcast-glry-overlay{
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(10px);
    min-height: 80px;
    position: absolute;
    bottom: 0;
    width: 0;
    right: 0;
    transition: all 0.6s;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}
.rock-podcast-glry-single-parent:hover .rock-podcast-glry-overlay{
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.rock-podcast-glry-text{
    position: absolute;
    bottom: 15px;
    left: 0px;
    transform: translateX(-100px);
    z-index: 1;  
    opacity: 0;  
    visibility: hidden;
    transition: all 1s;
}
.rock-podcast-glry-single-parent:hover .rock-podcast-glry-text{
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
.rock-podcast-glry-text h4 {
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.rock-podcast-glry-text h4 span {
    width: 28px;
    margin: 0 15px 0 0;
}
.rock-podcast-glry-text p{
    padding-left: 43px;
}
.rock-podcast-galry-wrapper .rock-podcast-filters {
	width: 100%;
	text-align: center;
}
.rock-podcast-filter-button-group ul.rock-podcast-gradient-line::before {
    border-radius: 50px;
}
.rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 672px;
    width: 100%;
    margin: auto;
    padding: 8px 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50px;
    position: relative;
    z-index: 1;
}
.rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li a{
    display: inline-flex;
    padding: 5px 25px;
	font-size: 18px;
	color: var(--white-color);
	font-weight: 400;
    border-radius: 50px;	
  	text-transform: capitalize;  
    transition: all 0.3s;
    font-family: 'Lato';
}
.rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li:hover a, .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li.active a{
    background: linear-gradient(108.39deg, #9F23C1 24.53%, #3A53D8 59.54%, #1384CC 81.64%);
	color: var(--white-color);	
}
.rockGlryShp{
    position: absolute;
}
.rockGlryShp1{
    left: 0;
    bottom: 150px;
}
.rockGlryShp2{
    top: 30%;
    right: 150px;
    animation: rotate 5s linear infinite;
}
/* Gallery Section CSS End */

/* Event Section CSS Start */
.rock-podcast-event-wrapper{
    background-image: url(../images/event-bg.jpg);
    position: relative;
}
.rock-podcast-event-box{
    margin-bottom: 40px;
}
.rock-podcast-event-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    padding: 25px;
    border-radius: 20px;    
}
.rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner{
    flex-direction: row-reverse;
}
.rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner .rock-podcast-event-left{
    flex-direction: row-reverse;
}
.rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner .rock-podcast-countdown{
    border-radius: 20px 0px 0px 20px;
}
.rock-podcast-event-left {    
    display: flex;
    align-items: center;    
}
.rock-podcast-event-img{
    overflow: hidden;
    border-radius: 22px;
    max-width: 540px;
    width: 100%;
}
.rock-podcast-event-img img{
    border-radius: 22px;  
    transition: all 0.3s;  
}
.rock-podcast-event-img img:hover{
    transform: scale(1.3);
}
.rock-podcast-event-inner .rock-podcast-countdown{
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 0 20px 20px 0;
    padding: 15px;
}
.rock-podcast-event-inner .rock-podcast-countdown ul{
    flex-direction: column;
    gap: 15px 0;
}
.rock-podcast-event-inner .rock-podcast-countdown ul li {
    font-size: 14px;
    width: 70px;
    height: 70px;
}
.rock-podcast-event-inner .rock-podcast-countdown ul li::after{
    display: none;
}
.rock-podcast-event-inner .rock-podcast-countdown ul li span{
    font-size: 28px;
}
.rock-podcast-event-content{
    max-width: 430px;
    width: 100%;
}
.rock-podcast-event-content h4 a{
    font-size: 26px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
}
.rock-podcast-event-content h4 a:hover{
    color: var(--primary-color);
}
.rock-podcast-event-content span{
    width: 69px;
    margin: 10px 0 0 0;
}
.rock-podcast-event-content p{
    padding-top: 15px;
}
.rock-podcast-range-date .rock-podcast-range-date-flex p{
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Event Section CSS End */

/* Contact Section CSS Start */
.rock-podcast-contact-wrapper{
    background-image: url(../images/contact-bg.jpg);    
}
.rock-podcast-contact-box{
    position: relative;
}
.rock-podcast-contact-inner {
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;    
    gap: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    padding: 50px 30px 0 30px;
    overflow: hidden;
}
.rock-podcast-contact-img {
    max-width: 525px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.rockCntctImgShape{
    position: absolute;
    top: 60px;    
    left: 0;    
    z-index: -1;
    animation: rotate 10s linear infinite;
}
.rock-podcast-contact-name-field, .rock-podcast-contact-book-field{
    display: flex;
    align-items: center;
    gap: 30px;
}
.rock-podcast-contact-book-field{
    gap: 20px;
}
.rock-podcast-input-field {
    width: 100%;
    margin-bottom: 20px;
}
.rock-podcast-input-field label{
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
    padding-bottom: 10px;
    display: block;
}
.rock-podcast-input-field input, .rock-podcast-input-field textarea{
    width: 100% !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 5px !important;
    padding: 0 45px 0 20px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--text-color) !important;
    margin-top: 0 !important;
}
.rock-podcast-input-field textarea {
    min-height: 125px;
    padding: 10px 40px 10px 20px;
    resize: none;
    padding-top: 10px !important;
}
.rock-podcast-input-field input:focus, .rock-podcast-input-field textarea:focus{
    border: 1px solid var(--primary-color);    
}
.rock-podcast-input-field input::placeholder, .rock-podcast-input-field textarea::placeholder{
    color: var(--text-color);
}
.rock-podcast-input{
    position: relative;
}
.rock-podcast-input > svg , .rock-podcast-input > img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.rock-podcast-textarea > img{
    top: 20px;
}
.rockCntBoxShape{
    position: absolute;
}
.rockCntBoxShape1 {
    top: 80px;
    left: -35px;
    animation: rotate 5s linear infinite;
}
.rockCntBoxShape2{
    bottom: -25px;
    right: -10px;
    animation: rotate 5s linear infinite;
    z-index: 2;
}
.rock-podcast-btn .wpcf7-submit{
    background: transparent;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
}
.rock-podcast-btn .wpcf7-spinner{
    position: absolute;
    top: 10px;
    right: -20px;
}
.rock-podcast-contact-btn.rock-podcast-btn{
    padding: 0;
}
/* Date and Time Picker CSS Start */
.rock-podcast-demo .flatpickr-calendar{
    background: rgb(30 38 71 / 87%) !important;
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;  
    box-shadow: none !important;
    margin-top: 10px;
}
.rock-podcast-demo .flatpickr-months .flatpickr-month, .rock-podcast-demo  span.flatpickr-weekday, .rock-podcast-demo  .flatpickr-day {    
    color: var(--white-color) !important;
    fill: var(--white-color) !important;
}
.rock-podcast-demo .flatpickr-day.today {
    background: var(--primary-color);
    border-color: var(--primary-color) !important;
}
.rock-podcast-demo .flatpickr-calendar:before {
    border-width: 10px !important;
    margin: 0 -10px !important;
}
.rock-podcast-demo .flatpickr-calendar.arrowBottom:before {
    border-top-color: #1e2446 !important;
}
.rock-podcast-demo .flatpickr-calendar.arrowBottom:after {
    border-top-color: #1e2446 !important;
}
.rock-podcast-demo .flatpickr-calendar.arrowTop:before {
    border-bottom-color: #1d2646 !important;
}
.rock-podcast-demo .flatpickr-calendar.arrowTop:after {
    border-bottom-color: #1d2646 !important;
}
.rock-podcast-demo .flatpickr-months .flatpickr-prev-month svg path, .rock-podcast-demo .flatpickr-months .flatpickr-next-month svg path {    
    fill: var(--white-color) !important;
}
.rock-podcast-demo .flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--white-color) !important;
}
.rock-podcast-demo .flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: var(--white-color) !important;
}
.rock-podcast-demo .numInputWrapper span {    
    right: -5px !important;
    border: none !important;
}
.rock-podcast-demo .flatpickr-months .flatpickr-prev-month, .rock-podcast-demo .flatpickr-months .flatpickr-next-month {
    top: -5px !important;
}
.rock-podcast-demo .flatpickr-day.selected, .rock-podcast-demo .flatpickr-day.startRange, .rock-podcast-demo .flatpickr-day.endRange, .rock-podcast-demo .flatpickr-day.selected.inRange, .rock-podcast-demo .flatpickr-day.startRange.inRange, .rock-podcast-demo .flatpickr-day.endRange.inRange, .rock-podcast-demo .flatpickr-day.selected:focus, .rock-podcast-demo .flatpickr-day.startRange:focus, .rock-podcast-demo .flatpickr-day.endRange:focus, .rock-podcast-demo .flatpickr-day.selected:hover, .rock-podcast-demo .flatpickr-day.startRange:hover, .rock-podcast-demo .flatpickr-day.endRange:hover, .rock-podcast-demo .flatpickr-day.selected.prevMonthDay, .rock-podcast-demo .flatpickr-day.startRange.prevMonthDay, .rock-podcast-demo .flatpickr-day.endRange.prevMonthDay, .rock-podcast-demo .flatpickr-day.selected.nextMonthDay, .rock-podcast-demo .flatpickr-day.startRange.nextMonthDay, .rock-podcast-demo .flatpickr-day.endRange.nextMonthDay {
    background: #434fd6;    
    border-color: #434fd6;
}
.rock-podcast-demo .flatpickr-day.inRange, .rock-podcast-demo .flatpickr-day.prevMonthDay.inRange, .rock-podcast-demo .flatpickr-day.nextMonthDay.inRange, .rock-podcast-demo .flatpickr-day.today.inRange, .rock-podcast-demo .flatpickr-day.prevMonthDay.today.inRange, .rock-podcast-demo .flatpickr-day.nextMonthDay.today.inRange, .rock-podcast-demo .flatpickr-day:hover, .rock-podcast-demo .flatpickr-day.prevMonthDay:hover, .rock-podcast-demo .flatpickr-day.nextMonthDay:hover, .rock-podcast-demo .flatpickr-day:focus, .rock-podcast-demo .flatpickr-day.prevMonthDay:focus, .rock-podcast-demo .flatpickr-day.nextMonthDay:focus {    
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.rock-podcast-demo .flatpickr-time input, .rock-podcast-demo .flatpickr-time .flatpickr-time-separator, .rock-podcast-demo .flatpickr-time .flatpickr-am-pm{
    color: var(--white-color) !important;
}
.rock-podcast-demo .flatpickr-calendar.hasTime .flatpickr-time{
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.rock-podcast-demo .flatpickr-time input:hover, .rock-podcast-demo .flatpickr-time .flatpickr-am-pm:hover, .rock-podcast-demo .flatpickr-time input:focus, .rock-podcast-demo .flatpickr-time .flatpickr-am-pm:focus {
    background: rgb(30 38 71 / 87%) !important;
}
.rock-podcast-demo .flatpickr-time .numInputWrapper span {
    right: -3px !important;
    border: none !important;
}
.rock-podcast-demo .flatpickr-time .numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--white-color) !important;
}
.rock-podcast-demo .flatpickr-time .numInputWrapper span.arrowDown:after {
    border-top-color: var(--white-color) !important;
}
.rock-podcast-demo .flatpickr-calendar.hasTime.noCalendar.animate.arrowTop.arrowLeft {
    width: 180px !important;
}
.rock-podcast-demo .flatpickr-calendar.noCalendar.hasTime .flatpickr-time {    
    justify-content: space-between !important;
}
.rock-podcast-demo .flatpickr-time .numInputWrapper {    
    -webkit-flex: 0 0 30% !important;
    -ms-flex: 0 0 30% !important;
    flex: 0 0 30% !important;
    width: 30% !important;
}
/* Date and Time Picker CSS End */

/* Select2 CSS Start */
.rock-podcast-demo .select2-container {
    width: 100% !important;
}
.rock-podcast-demo .select2-container .select2-selection--single {    
    height: 50px !important;
}
.rock-podcast-demo .select2-container--default .select2-selection--single .select2-selection__rendered {    
    line-height: 50px !important;    
    border-radius: 5px !important;
    padding: 0 50px 0 20px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--text-color) !important;
}
.rock-podcast-demo .select2-container--default .select2-selection--single {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    width: 100% !important;
}
.rock-podcast-demo .select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none !important;
}
.rock-podcast-demo .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url(../images/person-icon.svg) !important;
    background-repeat: no-repeat;
    background-position: 0px 11px;
    height: 50px;
    width: 25px;
}
.rock-podcast-demo .select2-dropdown {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;    
}
.rock-podcast-demo .select2-container--default .select2-results__option[aria-selected=true], .rock-podcast-demo .select2-container--default .select2-results__option[aria-selected=false] {    
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--white-color) !important;
}
.rock-podcast-demo .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color) !important;    
}
.rock-podcast-demo .select2-results__option {
    padding-left: 20px !important;
}
.rock-podcast-demo .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 3px !important;
    background: transparent !important;
    color: var(--text-color) !important;
}
/* Select2 CSS End */

/* Contact Section CSS End */

/* Testimonial Section CSS Start */
.rock-podcast-testml-wrapper{
    background-image: url(../images/testml-bg.jpg);
    position: relative;
}
.rock-podcast-tstml-slider-parent{
    position: relative;
    overflow: hidden;
    padding-bottom: 80px !important;
}
.rock-podcast-tstnl-slider-inner{
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 1;
}
.rock-podcast-tstnl-slider-inner p{
    font-size: 16px;
}
.rock-podcast-tsml-slider-client-details{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}
.rock-podcast-tsml-slider-client-details > img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    /* background: var(--primary-color); */
}
.rock-podcast-tsml-client-name h4{
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 15px;
}
.rock-podcast-tsml-client-name h4 span{
    width: 53px;
    margin: 0;
}
.rock-podcast-tesml-navigation {
    max-width: 120px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.rock-podcast-tstml-slider-parent .swiper-button-next:after, .rock-podcast-tstml-slider-parent .swiper-button-prev:after{
    display: none;
}
.rock-podcast-tstml-slider-parent .swiper-button-prev, .rock-podcast-tstml-slider-parent .swiper-button-next{
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: unset;
    transition: all 0.3s;
}
.rock-podcast-tstml-slider-parent .swiper-button-prev:hover, .rock-podcast-tstml-slider-parent .swiper-button-next:hover{
    background: linear-gradient(108.39deg, #9F23C1 24.53%, #3A53D8 59.54%, #1384CC 81.64%);
}
.rock-podcast-tstml-slider-parent .swiper-button-next svg, .rock-podcast-tstml-slider-parent .swiper-button-prev svg {
    width: auto;
    height: auto;    
    fill: var(--white-color);
}
.rockTsmlShape{
    position: absolute;
    bottom: 100px;
    right: 100px;
    border-radius: 50%;
    animation: rotate 5s linear infinite;
}
/* Testimonial Section CSS End */

/* Blog Section CSS Start */
.rock-podcast-blog-wrapper{
    /* background-image: url(../images/blog-bg.jpg); */
    position: relative;
}
.rock-podcast-blog-img{
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}
.rock-podcast-blog-img > img{
    display: block;
    width: 100%;
    border-radius: 6px;
    transition: all 0.3s;
}
.rock-podcast-blog-box:hover .rock-podcast-blog-img > img{
    transform: scale(1.3);
}
.rock-podcast-blog-box{
    margin-bottom: 30px;
}
.rock-podcast-blog-content{
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 0 0 7px 7px;
    padding: 30px 20px 30px 00px;
    transition: all 0.5s;
    position: absolute;
    left: 0;
    right: 0;    
    bottom: -50px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.rock-podcast-blog-box:hover .rock-podcast-blog-content{    
    bottom: 0px;
    opacity: 1;
    visibility: visible;
}
.rock-podcast-blog-content > h4  {
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
    padding: 18px 0 10px 0;
    display: flex;
    align-items: center;
}
.rock-podcast-blog-content > h4  a{
    font-size: 22px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
}
.rock-podcast-blog-content > h4 > span{
    margin:0 15px 0 0;
    width: 18px;
}
.rock-podcast-blog-date, .rock-podcast-blog-content > p{
    padding-left: 30px;
}
.rock-podcast-blog-date, .rock-podcast-blog-date p{
    display: flex;
    align-items: center;
    gap: 50px;
}
.rock-podcast-blog-date p{
    gap: 8px;
    position: relative;
}
.rock-podcast-blog-date p::before {
    content: '';
    height: 20px;
    width: 1px;
    background: rgb(144 143 158);
    position: absolute;
    right: -25px;
}
.rock-podcast-blog-date p:last-child::before{
    display: none;
}
.rockBlogBoxShape{
    position: absolute;
}
.rockBlogBoxShape1{
    left: 0;
    bottom: 100px;
}
.rockBlogBoxShape2{
    top: 25%;
    right: 100px;
    animation: rotate 5s linear infinite;
}
/* Blog Section CSS End */

/* Footer CSS Start */
.rock-podcast-footer-wrapper{
    background: #0d0a20;
    padding: 80px 0;
}
.rock-podcast-newsltr-box{
    position: relative;
    z-index: 1;
}
.rock-podcast-newsltr-inner{
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 75px;    
    position: relative;
    z-index: 1;
}
.rock-podcast-newsltr-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}
.rock-podcast-newsltr-content h2 {
    font-size: 30px;
    font-weight: 400;
    color: var(--white-color);
    max-width: 350px;
    width: 100%;
}
.rock-podcast-newsltr-input{
    max-width: 570px;
    width: 100%;
}
.rock-podcast-newsltr-input .rock-podcast-input-field {    
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}
.rock-podcast-input.rock-podcast-gradient-line::before {
    border-radius: 50px !important;
}
.rock-podcast-newsltr-input .rock-podcast-input-field .rock-podcast-input{
    position: relative;
    z-index: 1;
    border-radius: 50px;
    width: 100%;    
}
.rock-podcast-newsltr-input .rock-podcast-input-field input{ 
    height: 46px !important;   
    border-radius: 50px !important;    
    backdrop-filter: none !important;
}
.rock-podcast-newsltr-input .rock-podcast-input-field input::placeholder{
    color: #E1E1E133;
}
.rock-podcast-newsltr-box .rockCntBoxShape1 {
    top: 40px;    
}
.rock-podcast-newsltr-box .rockCntBoxShape2 {
    bottom: -15px;
    right: -10px;
}
.rock-podcast-footer-parent{
    padding-top: 80px;
}
.rock-podcast-footer-widget p{
    padding: 25px 0;
}
.rock-podcast-footer-social-icons{
    display: flex;
    align-items: center;
    gap: 15px;
}
.rock-podcast-footer-social-icons a{
    display: block;
    transition: all 0.3s;
    transform: scale(0.95);
}
.rock-podcast-footer-social-icons a:hover{
    transform: scale(1.1);
}
.rock-podcast-footer-widget-title {
    padding-bottom: 30px;
}
.rock-podcast-footer-widget-title h4{
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
}
.rock-podcast-footer-widget-title .rock-podcast-line-shape{
    width: 69px;
    margin: 7px 0 0 0;
}
.rock-podcast-footer-post ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rock-podcast-footer-post ul li{
    overflow: hidden;
    border-radius: 6px;
    /* flex: 0 0 26%; */
    width: calc(26% - 0px);
}
.rock-podcast-footer-post ul li img{
    width: 100%;
    border-radius: 6px;
    display: block;
    transition: all 0.3s;
}
.rock-podcast-footer-post ul li img:hover{
    transform: scale(1.2);
}
.rock-podcast-footer-widget-addres p{
    padding: 15px 0 0 0;
}
.rock-podcast-footer-widget-addres p:first-child{
    padding-top: 0px;
}
.rock-podcast-footer-widget-addres p img{
    display: inline-block;
}
.rock-podcast-footer-widget-hours > p{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.rock-podcast-footer-widget-time-inner{
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(7px);
    position: relative;
    z-index: 1;
    padding: 15px 20px;
    text-align: center;
    border-radius: 6px;
    margin-top: 15px;
}
.rock-podcast-footer-widget-time-inner.rock-podcast-gradient-line::before{
    border-radius: 6px;
}
.rock-podcast-footer-widget-time-inner h4{
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    font-family: 'Lato';
    line-height: 1.5;
}
/* Footer CSS End */

/* Copyright CSS Start */
.rock-podcast-copyright-wrapper{
    background: #05040B;
    padding: 10px 0;
    text-align: center;
}
/* Copyright CSS End */

/* ==================================== Inner Pages CSS Start ==================================== */

/* Breadcrumb CSS Start */
.rock-podcast-breadcrumb-wrapper {
    background-image: url(../images/breadcrm-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 0 80px 0;
    position: relative;
    z-index: 1;
}
.rock-podcast-breadcrumb-wrapper::before {
    content: '';
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.rock-podcast-page-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.rock-podcast-right ul{
    display: flex;
    align-items: center;
    gap: 5px;
}
.rock-podcast-right ul li, .rock-podcast-right ul li a{
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
}
.rock-podcast-right ul li:nth-child(2) {
    color: #fff;
}
.rock-podcast-right ul li a{
    color: var(--white-color);    
}
/* Breadcrumb CSS End */
#datepicker-icon, #timepicker-icon{
    cursor: pointer;
}
.rock-podcast-nav-menu ul > li > ul {
    position: absolute;
    z-index: 100;
    min-width: 250px;
    margin-top: -1px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
.rock-podcast-nav-menu ul > li > ul > li{
    position: relative;
}
.rock-podcast-nav-menu ul > li > ul > li > ul{
    position: absolute;
    right: 0;
}
.rock-podcast-nav-menu ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}
.rock-podcast-nav-menu  ul > li {
    display: inline-block;
    position: relative;
}
.rock-podcast-nav-menu ul > li > ul > li {
    display: block;
    border-bottom: 1px solid #ffffff2c;
    /* box-shadow: inset 0px 1px 0px #FFF; */
    position: relative;
}
.rock-podcast-nav-menu ul > li > ul.sub-menu {
    background: linear-gradient(180deg, #400351 30%, #0d1749 80%, #041927 100%);
}
.rock-podcast-nav-menu ul > li > ul > li > a {
    padding: 10px 30px;
    width: 100%;
    /* background: rgba(0,0,0,0.9); */
}
.rock-podcast-nav-menu ul > li > ul.sub-menu li a::before{
    bottom: -1px;
}
.d-flex{
    display: flex;
}
.align-items-center{
    align-items: center;
}
.justify-content-center{
    justify-content: center;
}
/* Basic styling to hide all submenus initially */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111; /* Adjust background */
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 99;
}

/* Show first-level submenu when parent hovered */
.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Second-level submenu (submenu of submenu) */
.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  top: 0;
  left: 100%; /* open to the right */
  display: none;
}

/* Show second-level submenu on hover */
.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
}
/* ==================================== Inner Pages CSS End   ==================================== */
/* new css start */
.rock_blog_single img, .blogcategory_image img{
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}
.rockon_no_comments > i {
    color: var(--primary-color);
}
.rock_heading p:after{
    border-color: var(--primary-color);
}
.rock_heading p, .rockon_no_comments > h5{
    color: var(--primary-color);
}
textarea.form-control, .form-control {
    width: 100%;
    height:50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding:0 45px 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}
textarea.form-control{
    height: auto;
    padding-top: 10px;
}
.form-control:hover, .form-control:focus{
    border-color:var(--primary-color) ;
}
p.form-submit #commentsubmit{
    min-height: 42px;
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: uppercase;
    background: linear-gradient(140deg, #9F23C1 24.53%, rgb(58, 83, 216) 59.54%, #1384CC 81.64%);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
p.form-submit #commentsubmit::before {
    content: '';
    position: absolute;
    --size: 0px;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at center,rgba(255, 255, 255,.8) 0,rgba(140, 100, 255,0) 50%) no-repeat;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;
}
.comment-form .form-submit {
    margin-top: 10px;
}
.rock_pager ul li:last-child{
    color: var(--primary-color);
}
.rock_page_title_main.no_flip_gallery{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0 20px 0;
    position: relative;
    z-index: 1;
}
.rock_page_title_main.no_flip_gallery::before {
    content: '';
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.blog_entry_meta ul li a i{
    color: var(--primary-color);
}
.rock_blog_single h3 {
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 10px;
}
.rock_club_photo_detail{
    background: linear-gradient(140deg, #9F23C1 24.53%, rgb(58, 83, 216) 59.54%, #1384CC 81.64%);
}
.photo_link a:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color);
}
.photo_link a:hover i{
    color: var(--primary-color);
}
.rock_404 h1{
    color: var(--primary-color);
}
.rockon_sidebar_wrapper .widget.widget_recent_entries ul li > a{
    color: var(--primary-color);
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default{
    border-color: var(--primary-color);
}
.rock-podcast-glry-filters p{
    color: var(--white-color);
}
.rock_pagination ul li.active a{
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.blog_entry_meta {
    margin-top: 10px;
    margin-bottom: 5px;
}
.btn-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.rockon-blog-submitbtn img{
    display: none;
}
.rockon_sidebar_wrapper .widget table tbody td#today{
    background-color: var(--primary-color);
    color: #fff;
}
.rockon_sidebar_wrapper .widget table tbody td a{
    color: var(--primary-color);
}
.rockon_sidebar_wrapper .widget.widget_categories ul > li > a{
    color: var(--primary-color);
}
.rock_pagination ul li a:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
}
form.rock-blog-form {
    width: 100%;
}
.rock_blog_detail .btn {
 border-radius: 40px;
}
.mep-default-sidrbar-address ul li i, .mep-default-sidrbar-meta i, .df-ico i, .mep-default-sidrbar-events-schedule ul li i, .mep-social-share a{
    background: var(--primary-color) !important;
}
.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-price, .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-price{
    color: var(--primary-color) !important;
}
.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-header, .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-header{
    background: var(--primary-color) !important;
}
.mpwem_registration_area .mpwem_booking_panel .mpwem_form_submit_area button[type=submit]{
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}
.mep-default-sidrbar-meta{
    background: var(--primary-color) !important;
}
.mep-default-sidrbar-events-schedule ul.mep_event_date_sch li::before{
    background: var(--primary-color) !important;
}
.mep-default-sidrbar-calender-btn a, .mep-event-theme-1 .mep-add-calender, .mep-template-2-hamza .mep-add-calender, .mep-tem3-mid-sec .mep-add-calender, #mep_add_calender_button, .royal_theme #mep_add_calender_button, .royal_theme ul#mep_add_calender_links li a{
    background: var(--primary-color) !important;
}
.mep-default-theme div.mep-default-feature-date, .mep-default-theme div.mep-default-feature-time, .mep-default-theme div.mep-default-feature-location {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px;
    padding: 10px 15px;
}
.rock_page_title_main  .rock_page_title .rock-btn{
    display: none;
}
.mep-events-wrapper, .mep_related_product_area {
    background: transparent !important;
}
.rock_margin_30 {
    margin: 80px auto;
}
.rockon_sidebar_wrapper .widget h2{
    font-size: 30px;
    margin-bottom: 15px;
    padding-bottom: 0;
}
.rockon_sidebar_wrapper .rockon_footer_post_info h2{
    font-size: 18px;
    margin-bottom: 0;
}
.rockon_sidebar_wrapper .widget.widget_categories ul > li > a{
    color: var(--white-color);
}
.rockon_sidebar_wrapper .widget.widget_categories ul > li > a{
    color: var(--white-color);
}
.rockon_sidebar_wrapper .widget.widget_categories ul > li.cat-item:hover {
    background-color: var(--primary-color);
}
.rockon_sidebar_wrapper .widget.widget_categories ul > li.cat-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}
.comment-body a {
    color: var(--primary-color);
}
.rock_comment {
    width: 100%;
    float: left;
    background: #ffffff0a;
    border: 1px solid rgb(255 255 255 / 7%);
    padding: 20px;
    margin-top: 30px;
}
.rock_comment:hover {
    border-color: var(--primary-color);
}
.rock-podcast-service-box {
    margin-bottom: 30px;
}
.mpwem_registration_area .mpwem_booking_panel .mpwem_form_submit_area {
    background-color: #424055 !important;
    margin-top: -10px !important;
    border-top: 1px solid #ffffff5c !important;
}
.rock_heading ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.rock_heading  ul li:after {
    position: absolute;
    content: '';
    right: -8px;
    top: 5px;
    width: 9px;
    height: 13px;
    background: url('../images/icon/pager_divider.png') no-repeat;
    background-position: right center;
}
.rock_heading ul li a {
    text-transform: uppercase;
    color: inherit;
}
.rock_heading ul li {
    display: inline-block;
    position: relative;
    padding:0px 10px 0px 15px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
}
.rock_heading  ul li:last-child::after{
    display: none;
}
.rock_heading ul li:last-child {
    color: var(--primary-color);
}
.rock_page_title_main .rock_heading h1 {
    margin: 0;
    padding: 50px 0 10px;
}
.rock_pager ul li:last-child a{
    color: var(--primary-color);
}
.search .entry-title a{
    color: var(--primary-color);
    text-transform: capitalize;

}
.hentry{
    margin-bottom: 0;
}
.search  .entry-header{
    padding-top: 30px;
}
.search  .rockon_sidebar_wrapper{
    margin-top: 30px;
}
.rockon-defalt-search{
    margin-top: 40px;
}

/* new css start */

/* ==================================== Responsive CSS Start ==================================== */
@media(min-width:1200px){
    .rock-podcast-header-wrapper.rock-podcast-header-wrapper-fixed {
        background: rgb(255 255 255 / 4%);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        z-index: 99;
    }
}
@media(max-width:1550px){
    .rockBanrshap1 {
        bottom: 40px;     
    }
    .rockBanrshap2 {
        top: 20%;
        right: 40px;     
    }
    .rockBanrshap3 {
        left: 50px;     
    }
    .rockBanrInsta {     
        right: 0;
    }
    .rockBanrYtb {
        right: -40px;
    }
}
@media(max-width:1400px){
    .rock-podcast-banner-wrapper {
        background-position: -350px center;        
    }
    .rockBanrYtb {
        right: 0;
    }
}
@media(max-width:1199px){
    .rock-podcast-service-parent .rock-podcast-service-box{
        margin-bottom: 24px;
    }
    .rockBanrYtb {     
        right: auto;
        top: 10%;
    }
    .rock-podcast-header-wrapper {        
        top: 0px;
    }
    .rock-podcast-nav-menu ul {  
        background: linear-gradient(180deg, #400351 30%, #0d1749 80%, #041927 100%);      
        flex-direction: column;
        align-items: baseline;
        gap: 0px;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        left: -300px;
        height: 100% !important;  
        z-index: 999;      
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
    }
    .rock-podcast-menu-open .rock-podcast-nav-menu ul{
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    .rock-podcast-nav-menu ul li {
        width: 100%;
        padding: 15px 0 15px 30px;
        border-bottom: 1px solid rgb(255 255 255 / 11%);
    }
    .rock-podcast-nav-menu ul li:last-child{
        border-bottom: 0;
    }
    .rock-podcast-nav-menu ul li a:before{
        display: none;
    }
    .rock-podcast-nav-menu ul > li > ul.sub-menu{
        position: unset;
        background:transparent;
        opacity: 0;
        visibility: hidden;
        display: none;
        min-width: 180px;
        max-width: 230px;
    }
    .rock-podcast-nav-menu ul > li > ul.sub-menu.openSub_menu{
        opacity: 1;
        visibility: visible;
        display: block;
    }
    .rock-podcast-nav-menu ul > li > ul > li {
    /* display: block; */
    border-bottom: 1px solid #ffffff2c;
    /* box-shadow: inset 0px 1px 0px #FFF; */
    position: relative;
    padding: 10px 10px;
    width: unset;
}
    .rock-podcast-toggle-btn {
        cursor: pointer;
        position: relative;
        z-index: 9;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .rock-podcast-toggle-btn span {
        display: block;
        background: var(--white-color);
        width: 30px;
        height: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-transition: .25s margin .25s, .25s transform;
        -moz-transition: .25s margin .25s, .25s transform;
        transition: .25s margin .25s, .25s transform;
        transition: all 0.4s;
        margin-left: auto;
    }
    .rock-podcast-toggle-btn span:nth-child(1) {
        margin-bottom: 7px;
        width: 25px;
    }
    .rock-podcast-toggle-btn span:nth-child(3) {
        margin-top: 7px;
        width: 15px;
    }
    .rock-podcast-toggle-btn:hover span:nth-child(1) {
        width: 30px;
    }
    .rock-podcast-toggle-btn:hover span:nth-child(2) {
        width: 20px;
    }
    .rock-podcast-toggle-btn:hover span:nth-child(3) {
        width: 25px;
    }
    .rock-podcast-header-parent.rock-podcast-menu-open .rock-podcast-toggle-btn:hover {
        animation: .8s rotate;
    }
    @keyframes rotate {
        from{
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        to{
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
    .rock-podcast-header-parent.rock-podcast-menu-open .rock-podcast-toggle-btn span:nth-child(1) {
        display: none;
    }
    .rock-podcast-header-parent.rock-podcast-menu-open .rock-podcast-toggle-btn span {
        -webkit-transition: .25s margin, .25s transform .25s;
        -moz-transition: .25s margin, .25s transform .25s;
        transition: .25s margin, .25s transform .25s;
        width: 30px;
    }
    .rock-podcast-header-parent.rock-podcast-menu-open .rock-podcast-toggle-btn span:nth-child(2) {
        transform: rotate(45deg);
    }
    .rock-podcast-header-parent.rock-podcast-menu-open .rock-podcast-toggle-btn span:nth-child(3) {
        margin-top: -3px;
        transform: rotate(135deg);
    }
    .rock-podcast-banner-parent {
        padding-top: 100px;
    }
    .rock-podcast-banner-content h4 {
        font-size: 20px;
    }
    .rock-podcast-banner-content h1 {
        font-size: 45px;
    }    
    .rock-podcast-banner-content p {
        font-size: 18px;
        max-width: 500px;     
    }
    .rock-podcast-banner-content {
        padding-bottom: 150px;
    }
    .rock-podcast-banner-wrapper {
        background-position: -180px center;
    }
    .rockTicktShape1, .rockCntBoxShape1, .rock-podcast-newsltr-box .rockCntBoxShape1 {
        top: -35px;
        left: 20px;     
    }
    .rockTicktShape2, .rockCntBoxShape2, .rock-podcast-newsltr-box .rockCntBoxShape2 {        
        right: 40px;     
    }
    .rock-podcast-newsltr-box .rockCntBoxShape2 {
        bottom: -25px;     
    }
    .rock-podcast-ticket-inner .rock-podcast-main-heading > p {        
        padding-bottom: 30px;
    }
    .rock-podcast-ticket-inner {
        gap: 15px;
    }
    .rock-podcast-countdown ul {     
        gap: 35px;
    }
    .rock-podcast-countdown ul li {
        font-size: 16px;
        width: 80px;
        height: 80px;
    }
    .rock-podcast-countdown ul li span {
        font-size: 30px;
    }
    .rock-podcast-countdown ul li::after {
        right: -20px;
        font-size: 25px;
        font-weight: 600;
    }
    .rock-podcast-range-date .rock-podcast-range-date-flex p {
        font-size: 16px;
    }
    .rock-podcast-range-date-flex {
        padding: 10px 0;
    }
    .rock-podcast-range-date-flex p {
        min-width: 200px;     
    }
    .rock-podcast-ticket-right {
        max-width: 450px;     
    }
    .rock-podcast-event-inner {
        gap: 15px;
    }
    .rock-podcast-contact-inner {
        justify-content: space-between;
        gap: 10px;
        padding: 30px 20px 0 0;
    }
    .rock-podcast-contact-img {
        max-width: 480px; 
        width: 100%;    
    }
    .rock-podcast-contact-name-field, .rock-podcast-contact-book-field, .rock-podcast-contact-book-field{     
        gap: 15px;
    }
    .rock-podcast-newsltr-inner {
        padding: 40px;     
    }
    .rock-podcast-newsltr-content {     
        gap: 10px;
    }
    .rock-podcast-newsltr-content h2 {
        font-size: 25px;        
        max-width: 300px;     
    }
    .rockGlryShp2 {
        top: 15%;
        right: 50px;     
    }
    .rockGlryShp1{
        bottom: auto;
        top: 30px;
    }
    .rock-podcast-service-inner {
        padding: 40px 20px 30px;
    }
    .rockTsmlShape {
        bottom: 50px;
        right: 50px;
    }
    .rockBlogBoxShape1 {
        left: 0;
        top: 50px;
    }
    .rock-podcast-blog-content > h4 {
        font-size: 20px;
        padding: 15px 0 10px 0;
    }
    .rock-podcast-blog-content {
        padding: 20px 20px 20px 0px;
    }
    .rock-podcast-footer-widget-time-inner {
        padding: 15px 20px;
    }
    .rock-podcast-footer-widget-time-inner h4 {
        font-size: 16px;
    }
}
@media(max-width:1024px){
    .rock-podcast-banner-img, .rockBanrshap1{
        display: none;
    }
    .rock-podcast-banner-wrapper {
        background-position: center;
        padding-top: 100px;
    }
    .rockBanrshap3 {
        left: 40px;
        top: 100px;
    }
}
@media(max-width:991px){
    .rock-podcast-banner-content h4 {
        font-size: 18px;
    }
    .rock-podcast-banner-content h1 {
        font-size: 35px;
        max-width: 500px;
        width: 100%;
    }
    .rock-podcast-banner-content p {
        font-size: 15px;     
    }
    .rock-podcast-banner-btns {        
        gap: 20px;     
    }   
    .rock-podcast-ticket-inner {
        gap: 60px;
        flex-direction: column;
    }
    .rock-podcast-ticekt-box, .rock-podcast-contact-box {     
        max-width: 700px;
        width: 100%;
        margin: auto;
    } 
    .rock-podcast-event-inner, .rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner {
        flex-direction: column;
    }
    .rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner .rock-podcast-event-left {
        flex-direction: row;
    }
    .rock-podcast-event-content {
        max-width: 620px;     
    }
    .rock-podcast-event-box {
        margin-bottom: 30px;
    }
    .rock-podcast-contact-img {     
        display: none;
    }
    .rock-podcast-contact-inner {
        justify-content: center;     
        padding: 60px 30px 30px 30px;
    }
    .rock-podcast-contact-form {
        width: 100%;
    }
    .rock-podcast-newsltr-content {
        gap: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .rock-podcast-newsltr-content h2 {     
        line-height: 1.3;
    }
    .rock-podcast-about-parent {
        max-width: 620px;
        width: 100%;
        margin: auto;
    }
    .rock-podcast-glry-single-parent {        
        padding: 5px;
    }
    .rock-podcast-blog-parent {
        max-width: 730px;
        width: 100%;
        margin: auto;
    }
    .rock-podcast-blog-box {
        max-width: 350px;
        width: 100%;
        margin: auto;
        margin-bottom: 30px;
    }
    .rockBlogBoxShape2 {
        top: 10%;
        right: 50px;     
    }
    .rock-podcast-footer-post ul{
        max-width: 280px;
        width: 100%;
    }
    .rock-podcast-footer-post ul li {
        width: calc(25% - 0px);
    }
    .rock-podcast-footer-widget-hours, .rock-podcast-footer-widget-time-inner {
        max-width: 300px;
        width: 100%;
    }
}
@media(max-width:767px){
    .rock-podcast-banner-content p {     
        max-width: 420px;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul {
        gap: 15px;
        max-width: 550px;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li a {        
        padding: 5px 20px;
        font-size: 16px;
    }
    .rock-podcast-blog-date p {     
        font-size: 14px;
    }
    .rock-podcast-blog-date, .rock-podcast-blog-content > p {
        padding: 0px;
        font-size: 14px;
        gap: 20px;
    }
    .rock-podcast-blog-content > h4 {
        font-size: 18px;
        padding: 15px 0 5px 0;
    } 
    .rock-podcast-blog-content {
        padding: 20px 10px 20px 15px;
    }
    .rock-podcast-blog-content > h4 > span {     
        display: none;
    }  
    .rock-podcast-searchBoxContainer {
        width: 90%;
    }
}
@media(max-width:575px){
    .rock-podcast-banner-wrapper {
        background-position: -30px center;
        padding-top: 70px;
    }
    .rock-podcast-banner-content {
        padding-bottom: 110px;
        text-align: center;
    }
    .rock-podcast-banner-content h1, .rock-podcast-banner-content p {     
        margin: auto;
    }
    .rock-podcast-banner-btns {     
        justify-content: center;
    }
    .rockBanrshap3 {
        left: 30px;
        top: auto;
        bottom: 20px;
    }
    .rock-podcast-header-right {     
        gap: 20px;
    }
    .rock-podcast-header-parent {     
        gap: 10px;
    }
    .rock-podcast-header-right .rock-podcast-btn {
        min-height: 35px;
        min-width: 130px;
        padding: 0 15px;
        font-size: 15px;
    }
    .rock-podcast-main-logo a {
        display: block;
        max-width: 150px;
        height: auto;
        width: 100%;
    }
    .rock-podcast-glry-single-parent {
        width: calc(50% - 0px);
        padding: 5px;
    }  
    .rockGlryShp2 {
        top: 2%;
        right: 30px;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul {
        gap: 0;
        max-width: 440px;
        padding: 5px;
    }  
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li a {
        padding: 5px 15px;
        font-size: 15px;
    }
    .rock-podcast-event-left, .rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner .rock-podcast-event-left {        
        flex-direction: column;
    }
    .rock-podcast-event-inner .rock-podcast-countdown, .rock-podcast-event-box:nth-of-type(odd) .rock-podcast-event-inner .rock-podcast-countdown {
        border-radius: 0 0 10px 10px;     
    }
    .rock-podcast-event-inner .rock-podcast-countdown ul {
        flex-direction: row;
        gap: 15px;
    }
    .rock-podcast-contact-book-field {
        flex-direction: column;
        gap: 0;
    }
    .rockBlogBoxShape2 {
        top: 2%;
        right: 40px;
    }
    .rock-podcast-newsltr-inner {
        padding: 40px 30px;
    }
    .rockBanrshap2 {
        top: 15%;     
    }
}
@media(max-width:480px){
    .rock-podcast-bg-cover {     
        padding: 50px 0;
    }
    .rock-podcast-header-search p {     
        display: none;
    }
    .rock-podcast-about-box-flex {        
        gap: 15px;     
    }
    .rock-podcast-abt-box {
        padding: 20px;
        min-height: 195px;
        gap: 15px;
    }
    .rock-podcast-main-heading h1 {
        font-size: 40px;
    }
    .rock-podcast-main-heading h2 {
        font-size: 30px;
        margin-top: -20px;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul {        
        max-width: 400px;        
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li a {
        padding: 5px 10px;
        font-size: 15px;
    }
    .rock-podcast-contact-inner {     
        padding: 60px 20px 30px 25px;
    }
    .rock-podcast-newsltr-input .rock-podcast-input-field {
        flex-direction: column;
        gap: 15px;
    }
    .rock-podcast-input-field .rock-podcast-btn {
        width: 100%;
    }
    .rock-podcast-newsltr-content h2 {
        font-size: 20px;     
    }
    .rock-podcast-banner-content h1 {
        font-size: 30px;     
    }
    .rock-podcast-countdown ul {
        gap: 25px;
    }
    .rock-podcast-countdown ul li {
        font-size: 14px;
        width: 70px;
        height: 70px;
    }
    .rock-podcast-countdown ul li span {
        font-size: 25px;
    }
    .rock-podcast-countdown ul li::after {
        right: -15px;
        font-size: 20px;     
    }
    .rock-podcast-range-date-flex {        
        justify-content: space-between;
        gap: 10px;
    }
    .rock-podcast-range-date-flex p {
        min-width: auto;
    }
    .rock-podcast-main-heading > p {        
        padding-bottom: 30px;
    }
    .rock-podcast-event-content h4 {
        font-size: 22px;     
    }
    .rock-podcast-contact-box {
        margin-top: 30px;
    }
    .rock-podcast-newsltr-inner {
        padding: 40px 30px 60px 30px;
    }
    #sb_instagram .sbi_photo img, #sb_instagram #sbi_images .sbi_item {
        width: 100px !important;
        height: 100px !important;
    }
    #sbi_images{
        display: grid !important;
        grid-template-columns: repeat(auto-fit , minmax(100px,1fr)) !important;
    }
}
@media(max-width:425px){
    .rock-podcast-header-right .rock-podcast-btn {
        min-height: 30px;
        min-width: 110px;
        padding: 0 10px;
        font-size: 14px;
    }
    .rockBanrshap2{
        display: none;
    }
    .rock-podcast-banner-content h4 {
        font-size: 16px;
    }
    .rock-podcast-banner-parent {
        padding-top: 50px;
        overflow: hidden;
    }
    .rock-podcast-banner-content p {
        font-size: 14px;
    }
    .rock-podcast-btn {
        min-height: 38px;
        min-width: 130px;
        padding: 0 10px;
        font-size: 15px;
    }
    .rock-podcast-banner-content h1 {
        font-size: 25px;
        max-width: 300px;
    }
    .rock-podcast-toggle-btn span {
        width: 25px;
    }
    .rock-podcast-toggle-btn span:nth-child(1) {
        margin-bottom: 5px;
        width: 20px;
    }
    .rock-podcast-toggle-btn span:nth-child(3) {
        margin-top: 5px;
        width: 15px;
    }
    .rock-podcast-header-parent.rock-podcast-menu-open .rock-podcast-toggle-btn span {     
        width: 20px;
    }
    .rock-podcast-header-right {
        gap: 15px;
    }
    .rock-podcast-main-logo a {     
        max-width: 130px;
    }
    .rock-podcast-about-box-flex {     
        flex-direction: column;
        align-items: baseline;
        margin-bottom: 20px;
    }
    .rock-podcast-about-content .rock-podcast-main-heading > p {
        padding-bottom: 20px;     
    }
    .rock-podcast-main-heading h2 {
        font-size: 25px;     
    }
    .rock-podcast-abt-box h4 {
        font-size: 20px;     
    }
    .rock-podcast-main-heading > p {
        font-size: 16px;
    }
    .rock-podcast-range-value {
        left: -10px;
    }
    .rock-podcast-range p, .rock-podcast-range-value{
        font-size: 20px;     
    }
    .rock-podcast-range-value {
        left: 45px;
    }
    .rock-podcast-range-date .rock-podcast-range-date-flex p {
        font-size: 14px;
    }
    .rock-podcast-countdown ul {
        gap: 10px;
    }
    .rock-podcast-countdown ul li {
        font-size: 13px;
        width: 60px;
        height: 60px;
    }
    .rock-podcast-countdown ul li span {
        font-size: 20px;
    }
    .rock-podcast-countdown ul li::after{
        display: none;
    }
    .rock-podcast-ticket-inner {
        padding: 40px 20px;     
    }    
    .rock-podcast-range-date-flex {
        flex-direction: column;
        align-items: baseline;
        border-bottom: 0;
        padding-bottom: 0;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul {
        white-space: nowrap;
        overflow: auto;
        background: transparent;
        justify-content: flex-start;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul::-webkit-scrollbar{
        width: 5px;
        height: 5px;
    }    
    .rock-podcast-filter-button-group ul.rock-podcast-gradient-line::before{
        display: none;
    }
    .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li:hover a, .rock-podcast-galry-wrapper .rock-podcast-filter-button-group ul li.active a {
        background: transparent;
        color: var(--primary-color);
    }
    .rock-podcast-event-inner .rock-podcast-countdown ul li span {
        font-size: 22px;
    }
    .rock-podcast-event-inner .rock-podcast-countdown ul li {
        font-size: 12px;
        width: 65px;
        height: 65px;
    }
    .rock-podcast-event-content h4 {
        font-size: 20px;
    }
    .rock-podcast-event-content p {
        padding-top: 10px;
        font-size: 15px;
    }
    .rock-podcast-event-inner {
        padding: 15px;     
    }
    .rock-podcast-event-img {        
        max-width: 330px;     
    }
    .rock-podcast-event-box {
        margin-bottom: 20px;
    }
    .rock-podcast-contact-name-field {
        flex-direction: column;
        gap: 0;
    }
    .rock-podcast-input-field label {
        font-size: 15px;     
    }
    .rock-podcast-tsml-slider-client-details > img {
        width: 60px;
        height: 60px;     
    }
    .rock-podcast-tsml-client-name h4 {
        font-size: 16px;     
    }
    .rock-podcast-tsml-client-name h4 span {
        width: 30px;     
    }
    .rock-podcast-tstnl-slider-inner p {
        font-size: 15px;
    }
    .rock-podcast-tstnl-slider-inner {
        padding: 20px;     
    }
    .rock-podcast-newsltr-content {
        gap: 20px;     
    }
    .rock-podcast-newsltr-input .rock-podcast-input-field input {
        height: 42px;     
    }
    .rock-podcast-newsltr-inner {
        padding: 40px 20px 50px 20px;
    }
    .rock-podcast-copyright-wrapper p {
        font-size: 14px;
    }
}
@media(max-width:375px){
    .rock-podcast-header-right .rock-podcast-btn {
        min-height: 25px;
        min-width: 80px;     
        font-size: 12px;
    }
    .rock-podcast-header-right {
        gap: 10px;
    }
    .rock-podcast-main-logo a {
        max-width: 110px;
    }
    .rock-podcast-nav-menu ul{
        width: 250px;
    }   
    .rock-podcast-event-img {
        max-width: 270px;
    }
    .rock-podcast-event-inner .rock-podcast-countdown ul {     
        gap: 10px;
    } 
    .rock-podcast-event-inner .rock-podcast-countdown {     
        padding: 10px;
    }
    .rock-podcast-event-inner .rock-podcast-countdown ul li span {
        font-size: 20px;
    }
    .rock-podcast-event-inner .rock-podcast-countdown ul li {     
        width: 60px;
        height: 60px;
    }
}
/* ==================================== Responsive CSS End ======================================*/














.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .rock-podcast-about-parent .col-md-6 {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
     .rock-podcast-about-parent .col-lg-6{
        flex: 0 0 auto;
        width: 50%;
     }
}


.rock-podcast-input-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
}



.rock-podcast-input-field #datepicker-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* keep input clickable */
  font-size: 1.2rem;
  color: #888;
}
.search .rock_page_title a{
    font-size: 16px;
    color: #fff;
    opacity: 1;
}
.search .rock_page_title span{
    font-size: 16px;
    color: #fff;
    opacity: 1;
    text-transform: uppercase;
}
.search .rock_page_title{
    opacity: 1;
    color: #fff;
    padding: 100px 0 0px;
 }
 .rock_page_title_main .rock_page_title_bg {
    opacity: 1;
}
.rock-podcast-event-right .rock-podcast-btn{
    margin-top: 20px;
}