/*===================================================
Project: Podmix | podcast HTML template  
Author: ERRAMIX
Version: 1.0
====================================================*/
/* start global classes */
:root {

  /* body bg color */
  --bodyColor: #FFF;

  --primaryColor: #FED231;

  --black-base: #000;

  --gray-color: #4D4D4D;

  /* border radius */
  --border-radius: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--primaryColor);
  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

::selection {
  color: #F9F9F9;
  background-color: var(--primaryColor);
}

.heading-1 {
  color: var(--black-base);
  font-size: 64px;
  font-weight: 700;
  line-height: auto;
  text-transform: capitalize;
}

.heading-2 {
  color: var(--black-base);
  font-size: 48px;
  font-weight: bold;
  line-height: normal;
  position: relative;
  text-transform: capitalize;
}

.heading-3 {
  color: var(--black-base);
  font-size: 36px;
  position: relative;
  font-weight: bold;
  line-height: auto;
  text-transform: capitalize;
}

.clr-primary {
  color: var(--primaryColor);
}

section {
  margin: 6rem 0;
}

p {
  color: var(--gray-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}


@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 16px;
  }

  .heading-1 {
    font-size: 40px;
  }

  .heading-2 {
    font-size: 28px;
  }

  .heading-3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 28px;
  }
}

hr {
  height: .5px;
  color: var(--gray-color);
}

a {
  text-decoration: none;
}

.bg-brimary {
  background-color: var(--primaryColor) !important;
}

.navbar .bg-brimary .dropdown-menu {
  background-color: var(--primaryColor) !important;
}

/* start buttons style */
.btn {
  background-color: var(--primaryColor);
  color: var(--black-base);
  font-weight: 800;
  border-radius: var(--border-radius);
  padding: 16px 32px;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: .5px;
  outline: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
}

/* end main button style */



/* end global classes */

/* ==== start  preloader style  ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bodyColor);
  z-index: 9999;
}

.spinner {
  position: absolute;
  top: 45%;
  left: 45%;
  border: 16px solid #e6e6e6;
  border-top: 16px solid var(--primaryColor);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* ==== end  preloader style  ===== */

/* ======== start scroll-to-top button style  =========== */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 800;
}

#progress i {
  font-size: 26px;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--black-base);
}

/* ======== end scroll-to-top button style  =========== */

/*================== start navbar section ==================*/
.navbar {
  z-index: 900;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

.navbar ul li a {
  font-weight: 600;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--black-base) !important;
}

.navbar i {
  font-size: 32px;
  color: var(--black-base);
}

.navbar i:hover {
  color: var(--bodyColor);
}

/*================== end navbar section ==================*/

/*================== Start breadcrumbs section ==================*/
.breadcrumb {
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: solid .5px #c2c2c2;
}

.breadcrumb p {
  width: 75%;
}

@media (max-width: 768px) {
  .breadcrumb p {
    width: 100%;
  }
}

/*================== End breadcrumbs section ==================*/

/*================== start hero section ==================*/
.hero {
  min-height: 140vh;
  position: relative;
}

.hero .heading-1 {
  width: 75%;
}

.hero-text {
  margin-top: 5%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-color: var(--primaryColor);
  border-radius: 0 0 60% 60%;
}

.hero .hero-img {
  position: absolute;
  width: 900px;
  top: 45%;
  z-index: 100;
}

@media (max-width: 768px) {
  .hero .heading-1 {
    width: 100%;
  }

  .hero::after {
    border-radius: 0;
    height: 90vh;
  }

  .hero .hero-img {
    width: 600px;
  }

  .hero {
    min-height: 110vh;
    position: relative;
  }
}

@media (max-width: 560px) {
  .hero .hero-img {
    width: 450px;
    top: 60%;

  }
}

.box {
  padding: 8px;
}

.box i , .cta .box i {
  font-size: 26px;
  color: var(--black-base);
}

.hero-episode-container .box i  {
  color: var(--bodyColor);
}

.box a {
  font-size: 22px;
  font-weight: 700;
  color: var(--black-base);
}

@media (max-width: 768px) {
  .hero .box {
    padding: 4px;
  }

  .box img {
    width: 14px;
  }

  .box a {
    font-size: 16px;
    font-weight: 700;
    color: var(--black-base);
  }
}


/* =============== Episodes ================= */

.episodes .heading .more {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primaryColor);
}

.episodes .heading .more i {
  font-size: 42px;
  color: var(--black-base);
}

@media (max-width: 768px) {
  .episodes .heading .more {
    width: 40px;
    height: 40px;
  }

  .episodes .heading .more i {
    font-size: 20px;
  }
}

.episode .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  color: var(--bodyColor);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.episode .img-overlay .content {
  padding: 1.5rem;
  width: 100%;
  color: var(--bodyColor);
}


.podcast-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--bodyColor);
  line-height: normal;
}

.episodes h6,
.hero-episode-container h6 {
  font-size: 14px;
  color: #868686;
  font-weight: 400;
}

/*================== end hero section =====================*/

/*============== Start About section ==========*/

.about .counter::before {
  content: "+";
}

.about .icons i {
  font-size: 26px;
  color: var(--primaryColor);
}

.about .icons i:hover {
  color: var(--black-base);
}

/*============== End About section ==========*/

/*============== Start testimonials section ==========*/

.testimonials .item {
  background-color: #F5F5F5;
}

.testimonials .item img {
  width: 80px;
  height: 80px;
}

.testimonials .item .testimonial-name {
  color: var(--black-base);
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.testimonials .item i {
  font-size: 24px;
}


/*============== End testimonials section ==========*/

/*============== Start sponsors section ==========*/

.sponsors img {
  filter: grayscale(100%);
}

.sponsors img:hover {
  filter: grayscale(0);
}

/*============== Start sponsors section ==========*/

/*============== Start cta section ==========*/
.cta {
  background-color: var(--primaryColor);
}
/*============== end cta section ==========*/

/*============== Start single episode section ==========*/
.hero-episode-container {
  position: relative;
  height: 70vh;
}

.hero-episode {
  height: 70vh;
}

.hero-episode-container .hero-episode-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
  z-index: -1;
  background-color: var(--primaryColor);
  border-radius: 50% 0 0 50%;
}

@media (max-width: 920px) {
  .hero-episode-container .hero-episode-img::after {
    opacity: 0;
  }
}



.hero-episode-container .hero-episode-img img {
  width: 400px;
}

@media (max-width: 720px) {
  .hero-episode-container .hero-episode-img img {
    width: 250px;
  }
}

.hero-episode-container video {
  margin-top: 4rem;
  width: 100%;
  height: 100%;
}

/*============== End single episode section ==========*/

/*============== End Footer section ==========*/

.footer .links a,
.links p {
  color: #4D4D4D;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.form {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
}

.form input {
  background-color: #F5F5F5;
  border: none;
  outline: none;
  width: 75%;
  height: 100%;
}

.form .btn {
  width: 25%;
  height: 100%;
}

/*============== End Footer section ==========*/