:root {
  --accent: #ff9800;
}

.main-podcast {
  width: 100%;
}

.overlay {
  position: fixed;
  /* Sit on top of the page content */
  display: none;
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
}



.gradient-x-overlay-lg-dark::before {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
}

.gradient-x-overlay-md-dark::before {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
}

.centered {
  position: absolute;
  bottom: 0%;
}

.right {
  position: absolute;
  right: 0px;
}

.podcast-section .equalizer {
  align-items: center;
  display: flex;
}

.podcast-section .other-podcasts {
  padding-left: 50px;
}

.podcast-section .col-md-3 .subscribe-podcast {
  display: none;
}

.podcast-section .other-podcasts h3 {
  color: var(--accent);
  font-size: 3rem;
  border-bottom: 1px solidvar(--accent);
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.podcast-section .other-podcasts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.podcast-section .other-podcasts li {
  margin-bottom: 25px;
}

.podcast-section .other-podcasts li:last-of-type {
  margin-bottom: 0;
}

.podcast-section .other-podcasts li h4 {
  font-size: 1.7rem;
}

.podcast-section .other-podcasts li a {
  color: var(--accent);

}

.podcast-section .other-podcasts li a:hover {
  color: #ddd;
}

.podcast-section .col-md-6 .subscribe-podcast {
  display: block;
}

.equaliser-container {
  width: 120px;
  margin: 0 auto;
  position: relative;
}

.colour-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--accent)fff;
}

.equaliser-column {
  width: 10px;
  float: left;
  margin: 0 1px 0 0;
  padding: 0;
  height: 90px;
  position: relative;
  list-style-type: none;
}

.equaliser-column:nth-child(1) .colour-bar {
  animation: color-bar 2s 1s ease-out alternate infinite;
}

.equaliser-column:nth-child(2) .colour-bar {
  animation: color-bar 2s 0.5s ease-out alternate infinite;
}

.equaliser-column:nth-child(3) .colour-bar {
  animation: color-bar 2s 1.5s ease-out alternate infinite;
}

.equaliser-column:nth-child(4) .colour-bar {
  animation: color-bar 2s 0.25s ease-out alternate infinite;
}

.equaliser-column:nth-child(5) .colour-bar {
  animation: color-bar 2s 2s ease-out alternate infinite;
}

.equaliser-column:nth-child(6) .colour-bar {
  animation: color-bar 2s 0.13s ease-out alternate infinite;
}

.equaliser-column:nth-child(7) .colour-bar {
  animation: color-bar 2s 0.19s ease-out alternate infinite;
}

.equaliser-column:nth-child(8) .colour-bar {
  animation: color-bar 2s 0.15s ease-out alternate infinite;
}

.equaliser-column:nth-child(9) .colour-bar {
  animation: color-bar 2s 0.05s ease-out alternate infinite;
}

.equaliser-column:nth-child(10) .colour-bar {
  animation: color-bar 2s 0.25s ease-out alternate infinite;
}

.equaliser-column:last-child {
  margin-right: 0;
}




@keyframes color-bar {
  0% {
    height: 10px;
    background: var(--accent);
  }

  10% {
    height: 30px;
    background: var(--accent);
  }

  20% {
    height: 50px;
    background: var(--accent);
  }

  30% {
    height: 20px;
    background: var(--accent);
  }

  40% {
    height: 70px;
    background: var(--accent);
  }

  50% {
    height: 90px;
    background: var(--accent);
  }

  60% {
    height: 30px;
    background: var(--accent);
  }

  70% {
    height: 80px;
    background: var(--accent);
  }

  80% {
    height: 50px;
    background: var(--accent);
  }

  90% {
    height: 30px;
    background: var(--accent);
  }

  100% {
    height: 10px;
    background: var(--accent);
  }


}

/* Video JS */

.video-js .vjs-big-play-button {
  margin: 0 auto;
  position: absolute;
  left: 45%;
  top: 45%;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  display: none;
  /* width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  transition: 0.3s; */
}

.vjs-poster {
  background-size: cover;
}

.video-js .vjs-control-bar {
  height: auto;
  /* background-color:var(--accent) !important;; */
  padding: 10px 10px;
  /* margin-bottom: 20px; */
}

.video-js .vjs-progress-control {
  padding: 15px 0px;
}

.btn-accent {
  color: var(--accent) !important;
}

.btn-bg-accent {
  background-color: var(--accent) !important;
  color: white;
}

.bold-titles-uppercase {
  text-transform: uppercase;
  font-weight: bolder;
}


.gradient-overlay-lg-video {
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(33, 50, 91, 0.1) 0%, rgba(33, 50, 91, 0.95) 100%);
  background-repeat: repeat-x;
}

.min-vh-md-85 {
  min-height: 82vh;
}

.bg-black {
  background-color: #000000 !important;
}

.header-section-dark {
  position: relative;
  z-index: 1;
  background-color: #1e2022;
}

.zoom {
  transition: transform .7s;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.5);
  /* IE 9 */
  -webkit-transform: scale(1.5);
  /* Safari 3-8 */
  transform: scale(1.5);
}


.bg-transparent-reduced {
  /* background-color: wheat !important; */
  background-color: rgba(0, 0, 0, 0.6) !important;
}

blockquote {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #1e2022 !important;
  font-weight: 600 !important;
  text-align: center !important;
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
  border-radius: 0.3125rem !important;
  border: 0 !important;
  margin: 0 0 1rem;
  box-sizing: border-box;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
}

.min-h-50rem {
  min-height: 50rem;
}
