﻿.podcast-navbar {
    z-index:2;
}

.podcast-navbar .nav-center {
    background-color:transparent;
}

.podcast-navbar .navbar-nav .nav-link {
    color:var(--white)!important;
}

.podcast-slide {
    padding-top: 0px!important;
    background-color:black!important;
}

.podcast-home-hero-h {
    background-color: black !important;
}

.podcast-login .bottom-left-corner-inner, .podcast-login .top-right-corner-inner {
    display: none;
}

.pod-hero-img > img {
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    top: -80px;
    z-index: 1;
}

.podcast-hero .pod-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 3;
    max-width: unset;
}

.red-brd {
    background: linear-gradient(90deg,#ff0000,#ffffff,#ffffff);
    padding: 1px;
    overflow: hidden;
}

.red-box {
    background: var(--black);
    color: #ff3131;
    font-size: var(--font-sm);
    font-weight: 600;
    padding: 5px 30px;
    text-align: center;
}

.power span {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.power img {
    max-height: 35px;
}

.pod-yt img {
    max-height: 40px;
}

.bl-w-r-box {
    background: linear-gradient(90deg,#5d9cf9,#f9fbfe,#9d0120,#ffffff);
    padding: 1px;
    overflow: hidden;
    display: inline-block;
}

.bl-w-r-box > div {
    background-color: var(--black);
}

.bl-w-r-box a, .bl-w-r-box a:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    border: 0px !important;
}

.pod-btn, .pod-btn:hover {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-h);
    font-size: var(--font-sz);
    display: block;
}

.pad-530 {
    padding: 5px 30px;
}

#hero-slider-container {
	position: relative;
}

.hero-slide {
	display: none;
	animation: sliderFadeOut 1s forwards;
}

.hero-slide.active {
	display: block;
	animation: sliderFadeIn 1s forwards;
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #0bff00;
}

@keyframes sliderFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes sliderFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media (max-width:991.98px) {
    .podcast-slide {
        padding-top: 40px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width:575.98px) {
    .pod-hero-img {
        padding: 40px 0px 0px;
        background-color: rgba(0, 10, 37, 0.6);
    }

    .pod-hero-img > img {
        /*height: auto;
        position: relative;
        top: 0px;*/
        z-index: 1;
    }

    .pod-container img {
        width: auto!important;
    }

    .pod-container .pb-80 {
        padding-bottom:120px;
    }

    .hero-slider-nav {
        top:50vh!important;
    }
}