/* guides */

/*
-webkit-transition: all .2s ease-out;
-moz-transition: all .2s ease-out;
-o-transition: all .2s ease-out;
transition: all .2s ease-out;
*/

/* general */

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
}

.page-section {
  padding: 3rem 0;
}

.page-section h2 {
  color: #ca2330;
  font-size: 2rem;
  font-weight: 600;
}

.btn-default {
  padding: .9rem 2.5rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  background-color: #ca2330;
  border-radius: 30px;
  border-color: #ca2330;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn-default:hover {
  color: #fff;
  background-color: #dc3340;
  border-color: #dc3340;
}

.bee {
  position: absolute;
  z-index: -1;
}

.bee-1 {
  top: 50%;
  left: 55%;
  width: 32px;
  height: 37px;
  background-image: url("../images/bee1.png");
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: fly-1 4s infinite;
  animation: fly-1 4s infinite;
}

.bee-2 {
  top: 91.5%;
  left: 20%;
  width: 33px;
  height: 37px;
  background-image: url("../images/bee2.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: fly-2 4s infinite;
  animation: fly-2 4s infinite;
}

.bee-3 {
  top: 20%;
  left: 50%;
  width: 27px;
  height: 40px;
  background-image: url("../images/bee3.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: fly-3 4s infinite;
  animation: fly-3 4s infinite;
}

@-webkit-keyframes fly-1 {
  50% {
    -webkit-transform: translate(-1.5em, 1.5em);
            transform: translate(-1.5em, 1.5em);
  }
}
@keyframes fly-1 {
  50% {
    -webkit-transform: translate(-1.5em, 1.5em);
            transform: translate(-1.5em, 1.5em);
  }
}

@-webkit-keyframes fly-2 {
  50% {
    -webkit-transform: translate(-1.5em, -1.5em);
            transform: translate(-1.5em, -1.5em);
  }
}
@keyframes fly-2 {
  50% {
    -webkit-transform: translate(-1.5em, -1.5em);
            transform: translate(-1.5em, -1.5em);
  }
}

@-webkit-keyframes fly-3 {
  50% {
    -webkit-transform: translate(-1.5em, -.75em);
            transform: translate(-1.5em, -.75em);
  }
}
@keyframes fly-3 {
  50% {
    -webkit-transform: translate(-1.5em, -.75em);
            transform: translate(-1.5em, -.75em);
  }
}

@media (max-width: 991px) {
  .width-90proc-for-xs {
    width: 90% !important;
  }

  .page-section {
    padding: 2.25rem 0;
  }

  .bee-1 {
    top: 50%;
    left: 88%;
  }

  .bee-2 {
    display: none;
  }

  .bee-3 {
    top: 25%;
    left: 70%;
  }
}

/* navigation */

.navbar {
  box-shadow: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-brand {
  padding-top: 1rem;
  padding-bottom: 1rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.navbar .navbar-brand:hover {
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #6c757d;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  cursor: pointer;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active {
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #fff !important;
}

.nav-subscribe {
  color: #222 !important;
  padding: .9rem 2.5rem !important;
  background-color: #fff !important;
  border-radius: 28px !important;
}

.nav-subscribe:hover {
  background-color: #eee !important;
}

@media (max-width: 991px) {
  .navbar.navbar-shrink {
    box-shadow: none;
    background-color: rgba(202, 35, 48, .95);
  }

  .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-weight: 600;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    box-shadow: none;
    background-color: transparent;
  }

  .navbar.navbar-shrink {
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: none;
    background-color: rgba(202, 35, 48, .95);
  }

  .navbar .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 2.5rem;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }

  .navbar .navbar-nav .nav-item:first-child .nav-link {
    padding-left: 0;
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
}

/* header */

header {
  position: relative;
  background: linear-gradient(135deg, rgba(202, 35, 48, 1) 0%, rgba(202, 35, 48, 0.85) 100%), url("../images/cover2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  z-index: 0;
}

header h1 {
  width: 85%;
  font-size: 2.5rem;
  font-weight: 600;
}

header p {
  width: 85%;
  font-size: 1rem;
  font-weight: 500;
}

header img {
  width: 100%;
  border-radius: 14px;
}

.streaming-platforms-div {
  display: flex;
  gap: 1.5rem;
  width: 95%;
  align-items: center;
}

.streaming-platforms-div > div {
  flex: auto;
  cursor: pointer;
}

.streaming-platforms-div > div img {
  width: 140px;
}

.streaming-platforms-div > div:first-child img,
.streaming-platforms-div > div:nth-child(2) img {
  width: 100px;
}

@media (max-width: 991px) {
  header {
    height: auto;
    padding-top: calc(88px + 1rem);
    padding-bottom: 3rem;
  }

  header h1 {
    width: 90%;
    font-size: 2rem;
    line-height: 1.1;
  }

  header p {
    width: 90%;
    font-size: 1rem;
  }

  header img {
    width: 90%;
  }

  .streaming-platforms-div {
    width: 100%;
    flex-wrap: wrap;
  }

  .streaming-platforms-div > div {
    flex: 1 1 45%;
  }

  .streaming-platforms-div > div img {
    width: 80% !important;
  }
}

@media (min-width: 992px) {
  header {
    height: auto;
    padding-top: calc(120px + 2rem);
    padding-bottom: 5rem;
  }
}

/* episodes section */

.episodes-section {
  background-color: #fff;
}

.individual-episode-div {
  display: flex;
  align-items: center;
  padding-bottom: 2.25rem;
  margin-bottom: 2.25rem;
  gap: 2.25rem;
  border-bottom: 1px solid #eee;
}

.individual-episode-div:nth-last-child(2) {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 2.25rem;
}

.individual-episode-div h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.individual-episode-div p {
  font-size: 1rem;
  font-weight: 500;
}

.individual-episode-div p.tags span {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  font-size: .9rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-episode-div p.tags span:hover {
  background-color: #ddd;
}

.individual-episode-div img {
  border-radius: 7px;
}

.individual-episode-div > div {
  flex: 1;
}

.individual-episode-div > div:first-child {
  display: none;
}

.individual-episode-div > div:nth-child(2) {
  flex: 5;
}

.episode-main-info-div {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

.episode-main-info-div > div:first-child {
  flex: 1;
  padding-right: 1.5rem;
}

.episode-main-info-div > div:nth-child(2) {
  flex: 5;
}

.individual-episode-div > div:nth-child(2) p:first-child {
  color: #6c757d;
  font-size: .9rem;
  font-style: italic;
}

.individual-episode-div > div:nth-child(2) p:first-child i {
  font-size: .8rem;
  vertical-align: 1px;
}

.individual-episode-div > div:nth-child(2) p:first-child span {
  margin-right: 1rem;
  text-decoration: none;
}

.individual-episode-div > div:nth-child(2) p:first-child a {
  color: #6c757d;
  text-decoration: underline;
}

.individual-episode-div > div:nth-child(2) p:first-child a:hover {
  color: #6c757d;
  text-decoration: none;
}

.categories-tags span {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  font-size: .9rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.categories-tags span:hover {
  text-decoration: none;
  background-color: #ddd;
}

.episode-tags span {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  font-size: .9rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.episode-tags span:hover {
  background-color: #ddd;
}

audio {
  width: 100%;
}

audio::-webkit-media-controls-panel {
  padding-left: 0;
  padding-right: 0;
  background-color: #fff;
}

audio::-webkit-media-controls-play-button {
  /*
  background-image: url("../images/play.svg");
  background-size: 10px;
  */
  color: #fff;
  background-color: #eee;
  border-radius: 50%;
  margin-right: .75rem;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  margin: 0;
  padding: 6px;
  border-radius: 30px;
  background-color: #eee;
}

audio::-webkit-media-controls-current-time-display {
  padding-left: 20px;
  padding-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

audio::-webkit-media-controls-time-remaining-display {
  padding-left: 5px;
  padding-right: 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

audio::-webkit-media-controls-timeline {
  padding-left: 1.25rem;
  padding-right: 1rem;
}

@media (max-width: 991px) {
  .individual-episode-div > div:nth-child(2) p:first-child span {
    display: block;
    margin-right: 0;
  }
}

/* stat section */

.stat-section {
  background: linear-gradient(135deg, rgba(202, 35, 48, .925) 0%, rgba(202, 35, 48, 0.925) 100%), url("../images/stat_cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.stat-section i {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.75rem;
}

.stat-section h3 {
  margin-bottom: .25rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

.stat-section p {
  margin-bottom: 0;
  color: #fff;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .stat-section i {
    margin-bottom: 1.25rem;
  }

  .stat-section h3 {
    margin-bottom: .75rem;
    font-size: 2rem;
  }

  .stat-section p {
    color: #fff;
  }
}

/* about section */

.about-section {
  background-color: #fff;
}

.about-section h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.about-section img {
  width: 100%;
  border-radius: 14px;
}

.about-section .about-host {
  color: #6c757d;
  font-size: .9rem;
  font-weight: 500;
  font-style: italic;
}

.about-section .social-icons {
  list-style-type: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}

.about-section .social-icons li {
  display: inline-block;
  margin-right: 1rem;
}

.about-section .social-icons li:last-child {
  margin-right: 0;
}

.about-section .social-icons li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 1rem;
  line-height: 38px;
  text-align: center;
  background-color: #eee;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.about-section .social-icons li a:hover {
  opacity: .7;
}

.about-section .social-icons li.tiktok a {
  background-color: #010101;
}

.about-section .social-icons li.instagram a {
  background-color: #d62976;
}

.about-section .social-icons li.facebook a {
  background-color: #1877f2;
}

.about-section .social-icons li.twitter a {
  background-color: #1da1f2;
}

.about-section .social-icons li.linkedin a {
  background-color: #0a66c2;
}

.about-section .social-icons li.youtube a {
  background-color: #ff0000;
}

@media (max-width: 991px) {
  .about-section .social-icons li {
    margin-right: .75rem;
  }
}

/* newsletter section */

.newsletter-section {
  background: linear-gradient(135deg, rgba(202, 35, 48, .925) 0%, rgba(202, 35, 48, 0.925) 100%), url("../images/cta_cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.newsletter-section h2 {
  color: #fff;
  font-size: 1.5rem;
}

.subscribe-div {
  display: flex;
}

.subscribe-div input {
  flex: 4;
  padding: .9rem 1.5rem;
  font-size: .95rem;
  color: #222;
  font-weight: 600;
  border: 0;
  border-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(255,255,255,0.75);
  outline: 0 !important;
  box-shadow: none;
}

.subscribe-div button {
  flex: 1;
  padding: .9rem .9rem;
  font-size: .95rem;
  color: #222;
  font-weight: 600;
  border: 0;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #fff;
  outline: 0 !important;
  box-shadow: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.subscribe-div button:hover {
  background-color: #eee;
}

/* blog section */

.blog-section {
  background-color: #fff;
}

.individual-blog-entry {
  cursor: pointer;
  margin-bottom: 2.25rem;
}

.individual-blog-entry > div {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 14px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-blog-entry > span {
  display: block;
  margin-top: 1rem;
  margin-bottom: .5rem;
  color: #6c757d;
  font-size: .9rem;
  font-style: italic;
}

.individual-blog-entry > span i {
  font-size: .8rem;
  vertical-align: 1px;
}

.individual-blog-entry h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
}

.individual-blog-entry:hover > div {
  opacity: .7;
}

/* cta section */

.cta-section {
  background: linear-gradient(135deg, rgba(202, 35, 48, .925) 0%, rgba(202, 35, 48, 0.925) 100%), url("../images/subscribe_cta_cover.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.cta-section h2 {
  color: #fff;
  font-size: 1.5rem;
}

.cta-section .streaming-platforms-div {
  display: flex;
  gap: 9rem;
  width: 100%;
  align-items: center;
}

.cta-section .streaming-platforms-div > div {
  flex: auto;
  cursor: pointer;
}

.cta-section .streaming-platforms-div > div img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .cta-section .streaming-platforms-div {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cta-section .streaming-platforms-div > div {
    flex: 1 1 40%;
  }

  .cta-section .streaming-platforms-div > div img {
    width: 90% !important;
  }
}

/* footer */

footer {
  background-color: #fff;
}

footer a {
  color: #222;
  text-decoration: underline;
}

footer a:hover {
  color: #222;
  text-decoration: none;
}













/* */
