@font-face {
    font-family: var(--title-font);
    src: url('../fonts/Rubik-Black.eot');
    src: url('../fonts/Rubik-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Rubik-Black.woff2') format('woff2'),
        url('../fonts/Rubik-Black.woff') format('woff'),
        url('../fonts/Rubik-Black.ttf') format('truetype'),
        url('../fonts/Rubik-Black.svg#Rubik-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Bold.eot');
    src: url('../fonts/Rubik-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Rubik-Bold.woff2') format('woff2'),
        url('../fonts/Rubik-Bold.woff') format('woff'),
        url('../fonts/Rubik-Bold.ttf') format('truetype'),
        url('../fonts/Rubik-Bold.svg#Rubik-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Medium.eot');
    src: url('../fonts/Rubik-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Rubik-Medium.woff2') format('woff2'),
        url('../fonts/Rubik-Medium.woff') format('woff'),
        url('../fonts/Rubik-Medium.ttf') format('truetype'),
        url('../fonts/Rubik-Medium.svg#Rubik-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff'),
        url('../fonts/Roboto-Medium.ttf') format('truetype'),
        url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-SemiBold.eot');
    src: url('../fonts/Roboto-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-SemiBold.woff2') format('woff2'),
        url('../fonts/Roboto-SemiBold.woff') format('woff'),
        url('../fonts/Roboto-SemiBold.ttf') format('truetype'),
        url('../fonts/Roboto-SemiBold.svg#Roboto-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff'),
        url('../fonts/Roboto-Bold.ttf') format('truetype'),
        url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto-Light.woff') format('woff'),
        url('../fonts/Roboto-Light.ttf') format('truetype'),
        url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-color: #166935;
    --secondary-color: #031709;
    --dark-color: #041108;
    --text-color: #FCFCFC;
    --title-font: 'Rubik';
    --primary-font: 'Roboto';

}

body {
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 1.875;
    background-color: var(--dark-color);
    color: var(--text-color);
}

a,
img {
    text-decoration: none;
    outline: none;
    border: none;
    max-width: 100%;
}

a,
.btn {
    transition: all .5s;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

:focus {
    outline: 0 !important;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: 0px;
}

a {
    color: inherit;
}


a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    line-height: 1.2;
    font-family: var(--title-font);
    font-weight: 700;
    margin: 0 0 15px;
    padding: 0;
}

h1 {
    font: normal normal bold 45px/1.3335 var(--title-font);
    color: #FFFFFF;
    text-shadow: 0px 6px 12px #00000029;
    text-transform: uppercase;
    margin-bottom: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
    margin-bottom: 0 !important;
}

figure {
    margin: 0;
}

*::selection {
    background-color: transparent;
}

*:not(img)::selection {
    background-color: var(--primary-color);
    color: var(--text-color);
}

img {
    /* aspect-ratio: auto 204/57; */
}

/* * {
    scrollbar-width: thin;
    scrollbar-color: #20dfd6 rgb(31 33 35 / 50%);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background-color: rgb(31 33 35 / 50%);
}

*::-webkit-scrollbar-thumb {
    background-color: #20dfd6;
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar-thumb {
    border-radius: 12px;
} */

/* custom class  */
section {
    overflow: hidden;
    position: relative;
}

.section-padding {
    padding: 100px 0;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.w-992 {
    max-width: 988px;
}

.z1 {
    position: relative;
    z-index: 1;
}


.ratio img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.img-obj.cover img,
.ratio.cover img {
    object-fit: cover;
}

.btn {
    background: #a370f0;
    color: white;
    font-family: inherit;
    padding: 15px 62px 15px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em var(--main-color);
    overflow: hidden;
    position: relative;
/*     font-family: 'poppins'; */
	font-family: "Nunito", sans-serif;
    margin-top: 45px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn .icon {
    background: hsla(0, 0%, 0%, 0.12);
    margin-left: 1em;
    position: absolute;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    height: 46px;
    width: 46px;
    border-radius: 100px;
    box-shadow: inset 0 0 12px hsla(0, 0%, 0%, 0.50);
    right: 0.3em;
    transition: all 0.3s;
}

.btn:hover .icon {
    width: calc(100% - 0.6em);
    background: var(--text-color);
    box-shadow: none;
    z-index: 1;
}

.btn .icon i {
    top: 50%;
    transform: translate(50%, -50%);
    right: 50%;
    top: 50%;
    position: absolute;
}

.btn:hover .icon i {
    /* color: var(--text-color);
    transform: translate(50%, -50%);
    right: 12%;
    position: absolute; */
    color: var(--main-color);
}

.btn .icon i {
    font-size: 20px;
    transition: transform 0.3s;
    color: var(--text-color);
}

.btn:hover .icon svg {
    transform: translateX(0.1em);
}

.btn:active .icon {
    transform: scale(0.95);
}

.btn-theme {
    background-color: var(--main-color);
    color: var(--text-color);
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 0;
}

.btn:hover {
    color: var(--text-color);
}



.btn:hover:after,
button:hover:after,
.button:hover:after,
input[type="submit"]:hover:after,
.btn:focus:after,
button:focus:after,
.button:focus:after,
input[type="submit"]:focus:after,
.btn:active:after,
button:active:after,
.button:active:after,
input[type="submit"]:active:after,
.btn:not([disabled]):not(.disabled).active:after,
button:not([disabled]):not(.disabled).active:after,
.button:not([disabled]):not(.disabled).active:after,
input[type="submit"]:not([disabled]):not(.disabled).active:after,
.btn:not([disabled]):not(.disabled):active:after,
button:not([disabled]):not(.disabled):active:after,
.button:not([disabled]):not(.disabled):active:after,
input[type="submit"]:not([disabled]):not(.disabled):active:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

@-webkit-keyframes btn_shine {
    100% {
        left: 200%;
    }
}

@keyframes btn_shine {
    100% {
        left: 200%;
    }
}

.navbar-icon {
    display: inline-block;
    width: 30px;
    height: 21.3px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.navbar-icon span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}


.navbar-toggler.collapsed .navbar-icon span:nth-child(1) {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .navbar-icon span:nth-child(2) {
    width: 100%;
    opacity: 1;
}


.navbar-icon span:nth-child(2) {
    top: 50%;
    width: 0%;
    -webkit-transform: rotate(0deg) translateY(-50%);
    -moz-transform: rotate(0deg) translateY(-50%);
    -o-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.navbar-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 98%;
}

.navbar-toggler.collapsed .navbar-icon span:nth-child(3) {
    -webkit-transform: rotate(0deg) translateY(-50%);
    -moz-transform: rotate(0deg) translateY(-50%);
    -o-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.navbar-toggler.collapsed .navbar-icon span {
    left: 0;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--text-color);
}

header nav {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    transition: all 0.3s linear;
    background-color: var(--dark-color);
}


label {
    display: block;
    font-weight: bold;
}

.form-control,
.form-select {
    border-color: #ffffff14;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    color: var(--text-color) !important;
    font-size: 16px;
    padding: 12px 22px 12px;
    /* height: 54px; */
    -webkit-box-shadow: 0 10px 16px rgb(14 14 14 / 11%);
    -khtml-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    -moz-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    -ms-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    -o-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    box-shadow: 0 10px 16px rgb(14 14 14 / 11%);
    background-color: var(--secondary-color);
}

textarea.form-control {
    height: auto;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--secondary-color);
}

.form-control::placeholder {
    color: var(--text-color);
}

.form-select {
    padding-right: 32px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* slick slider */
.slick-track {
    display: flex;
}

.slick-list {
    margin: 0 -12px;
}

.slick-slide {
    margin: 0px 12px;
    height: auto;
}

.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-slide img {
    max-width: 100%;
}


.slick-arrow.slick-disabled {
    cursor: no-drop;
}


.slick-arrow.slick-disabled {
    color: #222;
    background: var(--main-color);
}

.slick-arrow.slick-disabled::after {
    display: none;
}

.slick-arrow:before {
    color: inherit;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.slick-prev {
    left: -72px;
    z-index: 1;
    opacity: 0.5;
}

.slick-next {
    right: -72px;
    z-index: 1;
    opacity: 0.5;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-dots {
    bottom: -46px;
    left: 0;
}

.slick-dots li button {
    border-radius: 100px;
}

.slick-dots li button:before {
    color: var(--text-color);
    font-size: 24px;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--main-color);
    font-size: 24px;
}

.slick-dots li.slick-active button {
    border-color: var(--main-color);
}

.slick-dots li button {
    background-color: transparent;

    border: 2px solid #E7E7E7;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    opacity: 1;
    background-color: var(--main-color);
    color: var(--text-color);
}

/* custom class  end */

header .nav-link {
    color: inherit;
}

/* navbar icon  */
.navbar-toggler:focus {
    box-shadow: none
}

.navbar-icon {
    display: inline-block;
    width: 30px;
    height: 21.3px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.navbar-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 10px;
    opacity: 1;
    left: 6px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-icon span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}

.navbar-icon span:nth-child(2) {
    top: 50%;
    width: 0%;
    -webkit-transform: rotate(0deg) translateY(-50%);
    -moz-transform: rotate(0deg) translateY(-50%);
    -o-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.navbar-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 98%;
}

.navbar-toggler.collapsed .navbar-icon span {
    left: 0;
}

.navbar-toggler.collapsed .navbar-icon span:nth-child(1) {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .navbar-icon span:nth-child(2) {
    width: 100%;
    opacity: 1;
}

.navbar-toggler.collapsed .navbar-icon span:nth-child(3) {
    -webkit-transform: rotate(0deg) translateY(-50%);
    -moz-transform: rotate(0deg) translateY(-50%);
    -o-transform: rotate(0deg) translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.dropdown-mega .dropdown-menu {
    right: 0;
}


.top-header {
    padding: 12px 0;
    background-color: var(--dark-color);
}

.top-header .contact-link .phone-icon {
    max-width: 26px;
}

.top-header .contact-link .envelope-icon {
    max-width: 32px;
}

.top-header .contact-link a {
    font: normal normal 400 20px/26px "Roboto";
    color: var(--text-color);
}

.social-link a {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    background: #FFFFFF1F;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 14px;
}

.social-link a:hover {
    background-color: var(--main-color);
}

.social-link li {
    margin-left: 8px;
}



.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.188;
    position: relative;
    transition: all 0.3s linear;
}


.navbar-light .navbar-nav .nav-link.active {
    color: var(--main-color);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active:hover {
    color: var(--main-color);
}



.navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    width: 0px;
    background: var(--main-color);
    height: 4px;
    border-radius: 100px;
    transition: all 0.3s linear;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 24px;
}


.navbar-light .navbar-nav .show>.nav-link {
    color: var(--text-color);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--main-color);
}

header {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    transition: all 0.3s linear;

}

.navbar {
    padding: 24px 0;
    background-color: transparent;
}


.banner-wrapper {
    height: 920px;
    position: relative;
    z-index: 1;
    margin-top: 52px;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    z-index: 1;
    background: linear-gradient(#04110899, #041108);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.banner-content {
    max-width: 645px;
}

.banner-content span.sub-title {
    font: normal normal normal 24px/32px var(--primary-font);
    text-shadow: 0px 3px 6px #00000040;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.banner-floting-img {
    position: absolute;
    right: 0;
    z-index: -1;
    left: auto;
    bottom: 0;
    max-height: 750px;
}

.img-obj {
    bottom: 0;
    /* height: 650px; */
    width: 100%
}

.banner-img {
    z-index: 1;
    height: 100%;
    /* position: absolute; */
    bottom: 0;
    min-width: 807px;
    position: relative;
    bottom: -24px;
}

.hosting-side-box {
    background-color: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    height: 100%;
    box-shadow: 0px 4px 24px #0000003D;
}

.hosting-side-wrapper {
    position: relative;
    margin-top: -65px;
    z-index: 2;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font: normal normal bold 45px/53px var(--title-font);
    color: var(--text-color);
    text-transform: uppercase;
}

.section-title span {
    padding-left: 33px;
    position: relative;
    font: normal normal normal 18px/1.334 var(--primary-font);
    letter-spacing: 3.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;

}

.section-title span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16.5px;
    height: 24px;
    background-image: url('../images/mic.svg');
    top: 50%;
    transform: translateY(-50%);

    right: 0;
}

.section-title.text-center span {
    padding-right: 33px;

}

.section-title.text-center span::after {
    content: '';
    position: absolute;
    left: auto;
    width: 16.5px;
    height: 24px;
    background-image: url('../images/mic.svg');
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.section-title p {
    margin-top: 24px;
    font: normal normal 400 18px/24px var(--primary-font);
}

.about-img-box .img-box {
    border-radius: 12px;
    overflow: hidden;
    height: 525px;
}

.about-img-box .img-box:hover img {
    transform: scale(1.2);
}

.about-img-box .img-box img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
}

.about-img-box .img-box1 {
    position: relative;
}

.about-img-box .img-box1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--main-color);
    left: -32px;
    bottom: -32px;
    border-radius: 12px;
    z-index: -1;
    animation: hartheartBeat 5s linear infinite;
}

@keyframes hartheartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}

.flotting-number {
    width: 120px;
    height: 120px;
    background-color: var(--main-color);
    border-radius: 100px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    left: 50%;
    transform: translatex(-50%);
    top: 10%;
    /* animation: hartheartBeat 5s linear infinite; */
}

.flotting-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 2px dashed #FFFFFF;
    width: 110px;
    height: 110px;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-img-box .flotting-img {
    position: absolute;
    z-index: 2;
    left: 49%;
    transform: translate(-50%, 0px);
    bottom: 5%;
    animation: updown 10s linear infinite;
}

@keyframes updown {

    0%,
    100% {
        transform: translate(-50%, -10px);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

.flotting-number p {
    line-height: 1.2;
    text-align: center
}

.flotting-number strong {
    font: normal normal 700 32px/34px var(--primary-font);
    display: block;

}

.flotting-number .text-about-counter {

    margin-top: 4px;
    font: normal normal 500 14px/1.2 var(--primary-font);
    text-transform: uppercase;

}

.about-img-box .img-box.img-box2 {
    margin-top: 80px;
}

.about-card .img-box {
    background-color: var(--main-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 100px;
    margin-right: 15px;
}

.about-card strong {
    font: normal normal 50 20px/1 var(--title-font);
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 8px;
}

.about-wrapper .description-text {
    font: normal normal normal 18px/1.538 var(--primary-font);
    color: #F2EDED;
    margin: 34px 0;
}

.mb-34 {
    margin-bottom: 34px;
}

.about-listing {
    position: relative;
    background-color: var(--secondary-color);
    box-shadow: 0px 0px 24px #0000004D;
    opacity: 1;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 30px 24px 24px 30px;
}

.about-listing::before {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 100%;
    background-color: var(--main-color);
}

.about-listing li:not(:last-of-type) {
    margin-bottom: 16px;
}

.about-listing li {
    font: normal normal 400 18px/1 var(--primary-font);
    color: var(--text-color);
    position: relative;
	display: flex;
	align-items: start;
	line-height: 1.3;
}

.about-listing li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    color: var(--main-color);
    font-size: 24px;
    margin-right: 12px;
    position: relative;
    top: -4px;
}

.about-card p {
    font: normal normal 400 18px/1.334 var(--primary-font);
    color: #EEFBF2;
}

footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding-top: 185px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #041108;
    opacity: 0.85;
    z-index: -1;
}

.footer-text {
    line-height: 1.334;
}

footer strong {
    font: normal normal normal 30px/36px var(--title-font);
    margin-bottom: 24px;
    display: block;
}

footer .nav-menu li:not(:last-of-type) {
    margin-bottom: 12px;
}

footer .nav-menu a {
    font: normal normal normal 18px / 24px var(--primary-font);
    padding-left: 28px;
    position: relative;
}

footer .nav-menu a:hover {
    color: var(--main-color);
}

footer .nav-menu a::before {
    content: '';
    width: 11px;
    height: 11px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/angle-right.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-addres li img {
    max-width: 18px;
    margin-right: 18px;
}

.nav-addres li {
    margin-bottom: 12px;
}

.social-media-link {
    margin-top: 68px;
    margin-bottom: 24px;
}

.social-media-link li {
    margin: 0 8px;
}

.social-media-link li a {
    color: var(--text-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid #007854;
    display: flex;
    align-items: center;
    justify-content: center;

}

.social-media-link li a:hover {
    background-color: var(--main-color);
}

.text-theme {
    color: var(--main-color);
}

.bottom-footer {
    padding: 24px 0;
    border-top: 1px solid #707070;
    text-align: center;
    font: normal normal normal 18px/22px var(--primary-font);
}

.subscribe-wapper {
    position: relative;
    margin-bottom: -85px;
    z-index: 9;
}

.subscribe-box {
    background-color: var(--secondary-color);
    padding: 46.5px 48px;
    box-shadow: 0px 0px 25px #00000029;
    border-radius: 12px;
}

.review-box {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 42px 28px;
    color: var(--text-color);
    z-index: 1;
    position: relative;
    box-shadow: 0px 15px 50px hsl(0deg 0% 0% / 7%);
}

.review-box .floting-icon {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: -1;
    opacity: 0.15;
    max-width: 34%;
}

.review-box .star-box {
    display: flex;
    align-items: center;
    color: var(--main-color);
    margin-bottom: 30px;
}

.review-box .star-box i:not(:last-of-type) {
    margin-right: 6px;
}

.review-box p {
    font: normal normal normal 18px/31px var(--primary-font);
    letter-spacing: 0px;
    margin-bottom: 32px;
}

.review-box .img-box {
    width: 84px;
    height: 84px;
    border-radius: 100px;
    margin-right: 16px;
    overflow: hidden;
}

.review-box h3 {
    font: normal normal bold 24px/1.2085 var(--primary-font);
    margin-bottom: 5px;
    display: inline;
}



.review-box span {
    font: normal normal normal 16px/21px var(--primary-font);
    display: block;
}



.slick-arrow {
    width: 60px;
    height: 60px;
    background: #166935 0% 0% no-repeat padding-box;
    border-radius: 100px;
}

.slick-arrow:before {
    content: '\f104';
    font-family: "Font Awesome 6 Free";
    color: var(--dark-color);
    font-weight: bold;
    font-size: 32px;
    opacity: 1;
}

.slick-next::before {
    content: '\f105' !important;
}

.review-wrapper {
    padding-bottom: 130px;
}














.favorite-podcast-wrapper {
    background-color: var(--secondary-color);
}

.favorite-podcast-box {
    position: relative;
    z-index: 1;
    height: 424px;
    border-radius: 12px;
    overflow: hidden;
}

.favorite-podcast-box::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: transparent linear-gradient(180deg, #04110803 0%, #000100E0 85%, #000000EB 100%) 0% 0% no-repeat padding-box;
}

.favorite-podcast-box .description-text {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    text-align: left;
    padding: 24px;
    justify-content: flex-end;
}

.favorite-podcast-box .description-text strong {
    font: normal normal 500 24px/29px var(--primary-font);
    color: var(--text-color);
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.favorite-podcast-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.3s linear;
}

.favorite-podcast-box:hover img {
    transform: scale(1.2);
}

.favorite-podcast-box span {
    font: normal normal 400 19px/22px var(--primary-font);
    display: flex;
    align-items: center;
}

.favorite-podcast-box span i {
    font-size: 26px;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    font-size: 23px;
    background-color: var(--main-color);
    box-shadow: 0px 0px 24px #FFFFFF14;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s linear;
}



.favorite-podcast-box:hover .play-btn::before {
    -webkit-animation: zoombig 2s linear infinite;
    animation: zoombig 2s linear infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.favorite-podcast-box:hover .play-btn::after {
    -webkit-animation: zoombig 2s linear infinite;
    animation: zoombig 2s linear infinite;
}

.play-btn::before {
    content: "";
    border: 3px solid var(--main-color);
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0;

}

.play-btn::after {
    content: "";
    border: 3px solid var(--main-color);
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    opacity: 0;
}



@-webkit-keyframes zoombig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 4px;
    }

    40% {
        opacity: .5;
        border-width: 4px;
    }

    65% {
        border-width: 2px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 2px;
    }
}

@keyframes zoombig {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-width: 4px;
    }

    40% {
        opacity: .5;
        border-width: 4px;
    }

    65% {
        border-width: 2px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        border-width: 2px;
    }
}

.counter-wrapper {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.counter-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #041108;
    opacity: 0.85;
    z-index: -1;
}

.counter-box {
    background-color: white;
    box-shadow: 0px 3px 25px #00000012;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    transition: all 0.3s linear;
    top: 0;
}

.counter-box:hover {
    top: -12px;
}

.counter-box .img-box {
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 12px;
    width: 116px;
    height: 111px;
}

.counter-box .img-box img {
    width: 76%;
    opacity: 0.16;
}

.counter-box strong {
    text-shadow: 0px 0px 18px #0000003D;
    font: normal normal 700 32px/55px var(--title-font);
}

.counter-box p {
    font: normal normal 500 24px/35px var(--primary-font);
    color: #2D313A;
    margin-left: 16px;
}

.episodes-list-box {
    background: var(--secondary-color);
    box-shadow: 0px 0px 24px #00000014;
    border-radius: 12px;
    padding: 12px;
}

.episodes-list-box img {
    transition: all 0.3s linear;
}

.episodes-list-box:hover img {
    transform: scale(1.2);
}

.episodes-list-box .img-box {
    min-width: 135px;
    height: 135px;
    border-radius: 12px;
    overflow: hidden;
}

/* .episodes-list-box .img-box a{
    width: 135px;
    height: 135px;
    border-radius: 12px;
    overflow: hidden;
} */
.episodes-list-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.episodes-list-box .description-text {
    margin-left: 16px;
    display: block;
    width: 100%;
}

.episodes-list-box .description-text .title {
    font: normal normal 500 20px/1.2 var(--primary-font);
    margin-bottom: 8px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.episodes-list-box .description-text ul li:not(:last-of-type) {
    margin-right: 18px;

}

.episodes-list-box .description-text ul li {
    font: normal normal 300 16px/20px var(--primary-font);
    color: #DEF7E4;
}

.episodes-list-box .description-text ul li i {
    font-size: 16px;
}

.episodes-list-box .description-text .bottom-content {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #DEF7E429;
}

.episodes-list-box .description-text .bottom-content p {
    font: normal normal normal 18px/20px var(--primary-font);
    margin-bottom: 0;

}

.episodes-list-box .description-text .bottom-content p i {
    font-size: 20px;
}

.episodes-list-box .description-text .bottom-content a {
    width: 54px;
    height: 54px;
    border-radius: 100px;
    background-color: var(--main-color);
    color: var(--secondary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}


.brand-wrapper .section-title {
    max-width: 1200px;
}

.brand-box {
    background-color: white;
    border-radius: 12px;
}

.brand-wrapper {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.brand-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #041108;
    opacity: 0.85;
    z-index: -1;
}

.city-podcasts-wrapper {
    background-color: var(--secondary-color);
    z-index: 1;
}

.city-podcasts-wrapper .flotting-img {
    max-width: 786px;
    width: 100%;
    position: absolute;
    left: -8px;
    bottom: -10px;
    z-index: -1;
    opacity: 0.08;
}

.city-podcasts-wrapper .img-box .bg-img {
    position: absolute;
    z-index: -1;
    top: 25px;
    right: 0;
    max-width: 96%;
    width: 100%;
}

.like-video-btn {
    width: 24px;
    height: 24px;
    background-color: var(--main-color);
    border-radius: 100px;
    position: absolute;
    left: 8px;
    top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.like-video-btn input {
    opacity: 0;
    /* display: none; */
    position: absolute;
    width: 0;
    height: 0;
}

.like-video-btn i {
    font-size: 12px;
    transition: all 0.3s linear;
}

.like-video-btn .heart-icon1 {
    display: inline;
    opacity: 1;
}

.like-video-btn .heart-icon2 {
    display: none;
    opacity: 0;
}

.like-video-btn input[type="checkbox"]:checked~label .heart-icon1 {
    display: none;
    opacity: 0;
}

.like-video-btn input[type="checkbox"]:checked~label .heart-icon2 {
    display: inline;
    opacity: 1;
}

.review-box .floting-icon {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: -1;
    opacity: 0.15;
    max-width: 34%;
}

/***********************************************************************************************************************************************************************
************************************************************inner page abnenr css start*********************************************************************************
***********************************************************************************************************************************************************************/

.innerbanner-wrapper {
    /* margin-top: 52px;
    z-index: 1;
    min-height: 340px;
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: flex-end; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 300px;
    padding-bottom: 100px;
    z-index: 1;
    text-transform: uppercase;

}

.innerbanner-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(hsla(138, 62%, 4%, 0.6), hsla(138, 62%, 4%, 0.99));
    z-index: -1;
}

.innerbanner-wrapper .breadcrumb-menu {
    position: relative;
    z-index: 1;
    text-align: center;
    justify-content: center;
}

.innerbanner-wrapper .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.innerbanner-wrapper .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 24px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
}

.innerbanner-wrapper .breadcrumb-item+.breadcrumb-item::before {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome 6 Free';
    left: -15px;
    top: 0px;
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
}

.innerbanner-wrapper .breadcrumb-menu li a {
    color: var(--text-color);
    transition: all 0.5s ease-in-out;
}

.innerbanner-wrapper .breadcrumb-menu li.active {
    color: var(--main-color);
}

/***********************************************************************************************************************************************************************
************************************************************inner page abnenr css End*********************************************************************************
***********************************************************************************************************************************************************************/

/***********************************************************************************************************************************************************************
************************************************************about page css start****************************************************************************************
***********************************************************************************************************************************************************************/
.about-img-box.text-end .img-box2 {
    margin-top: 00px;
    position: relative;
}

.about-img-box.text-end .img-box1 {
    margin-top: 80px;
}

.about-img-box.text-end .img-box1::before {
    display: none;
}

.about-img-box.text-end .img-box2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--main-color);
    right: -32px;
    top: -32px;
    left: auto;
    border-radius: 12px;
    z-index: -1;
    animation: hartheartBeat 5s linear infinite;
}

.faq-wrapper {
    background-color: var(--secondary-color);
}

.faq-wrapper .accordion {
    max-width: 922px;
    margin: auto;
}



.faq-accordion .accordion-item {
    background: var(--dark-color);
    margin-bottom: 16px;
    border: 0;
    border-radius: 12px !important;
    box-shadow: 0px 3px 25px #00000012;
}

.faq-accordion .accordion-body {
    padding: 0 30px 37px 78px;
    position: relative;
    background-color: var(--dark-color);
    border-radius: 0 0 12px 12px;
}

.faq-accordion .accordion-button {
    color: var(--text-color);
    font-size: 18px;
}

.faq-accordion .accordion-button:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--dark-color);
}

.faq-accordion .accordion-button.collapsed {
    background: var(--dark-color);
    border-radius: 12px !important;
    box-shadow: none;
}

.faq-accordion .accordion-button span {
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: 50%;
    margin-right: 18px;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/chevron-down-solid.svg')
}


.faq-accordion .accordion-body {
    padding: 0 30px 37px 78px;
    position: relative;
    background-color: var(--dark-color);
    border-radius: 0 0 12px 12px;
}

.faq-accordion .accordion-body p {
    font-size: 16px;
    font-weight: 500;
}

/***********************************************************************************************************************************************************************
************************************************************about page css End****************************************************************************************
***********************************************************************************************************************************************************************/

/***********************************************************************************************************************************************************************
************************************************************contact page css start****************************************************************************************
***********************************************************************************************************************************************************************/


.map-box {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.contact-info-wrapper {
    background-color: var(--secondary-color);
}

.contact-info-box {
    background-color: var(--dark-color);
    padding: 48px 34px;
    text-align: center;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0px 3px 6px hsla(0, 0%, 0%, 0.16);
    transition: all 0.3s linear;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 0;
    background-color: var(--main-color);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.contact-info-box .img-box {
    background-color: var(--main-color);
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    border-radius: 12px;
    font-size: 40px;
    overflow: hidden;
}

.contact-info-box .img-box::before {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    height: 0;
    background-color: white;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.contact-info-box:hover .img-box::before {
    height: 100%;
}

.contact-info-box:hover .img-box {
    color: var(--main-color);
}

.contact-info-box .img-box img {
    filter: brightness(0) invert(1);
    width: 43px;
    transition: all 0.2s linear;
    transition-delay: 0.15s;
}

.contact-info-box p,
.contact-info-box p a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 28px;
    transition-delay: 0.2s;
    transition: all 0.2s linear;
}

.contact-info-box .card-title strong {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 26px;
    margin-bottom: 14px;
    color: var(--text-color);
    display: inline-block;
    transition-delay: 0.2s;
    transition: all 0.2s linear;
}

.contact-info-box:hover::before {
    height: 100%;
}

/***********************************************************************************************************************************************************************
************************************************************contact page css End****************************************************************************************
***********************************************************************************************************************************************************************/

/***********************************************************************************************************************************************************************
************************************************************podcast page css start****************************************************************************************
***********************************************************************************************************************************************************************/

.podcast-sidebar {
    background: var(--secondary-color);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}


.podcast-sidebar .podcast-widget {
    margin-bottom: 25px;
}

.podcast-sidebar .widget-title {
    position: relative;
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #707070;
}

.podcast-search-form .form-group {
    position: relative;
}

.podcast-search-form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px 15px 6px 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--theme-color);
}

.podcast-sidebar .category-list li {
    margin: 8px 0;
}

.podcast-sidebar .category-list a {
    color: var(--body-text-color);
}

.podcast-sidebar .category-list a i {
    color: var(--main-color);
    margin-right: 10px;
}

.podcast-sidebar .checkbox-list li {
    margin: 8px 0;
}

.podcast-sidebar .checkbox-list .form-check-input {
    position: absolute;
    opacity: 0;
}

.podcast-sidebar .form-check {
    padding-left: 0;
}

.podcast-sidebar .form-check label {
    padding-left: 1.8em;
    position: relative;
    font-weight: 400;
}



.podcast-sidebar .form-check .form-check-label::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: 2px solid var(--main-color);
    box-shadow: none;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.podcast-sidebar .checkbox-list .form-check-input:checked~.form-check-label::before {
    /* background-color: var(--theme-color);
    border-color: var(--theme-color); */
    content: '\f00c';
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.podcast-sidebar .checkbox-list label {
    color: var(--body-text-color);
}


.podcast-sort {
    background: var(--secondary-color);
    padding: 12px 12px 12px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
}

.podcast-sort-show {
    color: var(--text-color);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    border: none;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    color: var(--text-color) !important;
    font-size: 16px;
    padding: 12px 30px 12px 22px;
    /* height: 54px; */
    -webkit-box-shadow: 0 10px 16px rgb(14 14 14 / 11%);
    -khtml-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    -moz-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    -ms-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    -o-box-shadow: 0 10px 16px rgba(14, 14, 14, 0.11);
    box-shadow: 0 10px 16px rgb(14 14 14 / 11%);
    background-color: var(--secondary-color);
    /* min-width: 200px; */
}

.podcast-sort .select2.select2-container {
    min-width: 165px;
}

.podcast-sort .select2-container--default .select2-selection--single {
    min-width: 165px;
}

.podcast-sort .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.select2-container--default .select2-selection--single {
    /* width: auto; */
    position: relative;
    background-color: var(--dark-color);
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ffffff14;
}

.select2-dropdown {
    min-width: 200px;
    background-color: var(--secondary-color);
    border: 1px solid #ffffff14;
}

.select2-results__option {
    font-size: 16px;
}




.pagination .page-link {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 0;
    margin: 0 10px;
    border-radius: 12px !important;
    width: 40px;
    height: 40px;
    line-height: 39px;
    text-align: center;
    font-weight: 500;
    border: none;
    transition: var(--transition);
}

.pagination .page-link span {
    line-height: 40px;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--main-color);
    color: var(--text-color);
}


.hosting-side-wrapper.hosting-innerpage-wrapper {
    margin-top: 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.hosting-side-wrapper.hosting-innerpage-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #041108;
    opacity: 0.85;
    z-index: -1;
}

.btn-filter {
    border: 1px solid var(--text-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 20px;
}

.btn-filter-close {
    width: 18px;
    height: 18px;

    position: absolute;
    right: 12px;
    top: 4px;
    font-size: 18px;
}

.podcast-sidebar.show {
    left: 0;
}
/***********************************************************************************************************************************************************************
************************************************************podcast page css End****************************************************************************************
***********************************************************************************************************************************************************************/

/*///////////////// Code by Muneeb - codiffy (modifications) //////////////*/
.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
	margin-right: 10px;
}
.tribe-common--breakpoint-medium.tribe-common .tribe-common-h3--min-medium,
.tribe-events .tribe-events-calendar-latest-past__event-date-tag-month,
.tribe-common--breakpoint-medium.tribe-common .tribe-common-h4--min-medium,
.tribe-events-c-small-cta__price,
.tribe-events-calendar-latest-past__event-date-tag-year,
.tribe-events-meta-group .tribe-events-single-section-title,
.tribe-events-event-meta dl {
	color: #fff !important;
}
.tribe-events-calendar-latest-past__event-header {
	display: none !important;
}
/* Popup Styles */
.subscribe-popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}

/* Popup Content */
.subscribe-popup .popup-content {
    background: #041108;
    padding: 50px 5%;
    width: 900px;
	max-width: 90%;
	margin: 0 auto;
    border-radius: 8px;
    text-align: center;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 90vh;
	overflow: auto;
}

/* Close Button */
.subscribe-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.subscribe-popup .close-btn:hover {
    color: red;
}

/* width */
.subscribe-popup .popup-content::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.subscribe-popup .popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.subscribe-popup .popup-content::-webkit-scrollbar-thumb {
  background: #888;
}

.navbar-brand img {
	height: auto;
}

/*///////////// //////////// */
.hosting-side-wrapper .hosting-link {
	display: flex;
	align-items: center;
	gap: 20px;
}

.hosting-side-wrapper .slick-slide img {
	width: 70px;
}
.hosting-side-wrapper .hosting-link span {
    font-family: "Nunito", sans-serif;
}
.footer-loop-logo {
	width: 80px;
	margin-left: 10px;
}
.brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}