@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
* {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  color: #2b2b2b;
}

.logo-block {
  width: 192px;
  padding: 1rem 0rem;
  overflow: hidden;
  margin-right: 1rem;
}

.nav-link.active {
  position: relative;
  color: #0F382B !important;
}
.nav-link.active:after {
  bottom: 5px;
  left: 0;
  content: " ";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #B89E8D;
}

.home {
  padding: 4rem 0rem;
  background: #0F382B;
  background: linear-gradient(45deg, #0F382B 0%, #0F2A38 100%);
}
.home * {
  color: #ffffff;
}

.episodes {
  padding: 4rem 0rem;
}
.episodes .episode-container {
  border: 1px solid #0F2A38;
  border-radius: 1rem;
  padding: 1rem;
}

.text-container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.text-container h1 {
  font-size: 3.5rem;
  font-weight: bold;
}
.text-container p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.image-container {
  border-radius: 1rem;
  overflow: hidden;
}
.image-container img {
  max-width: 100%;
}

.bg-body-tertiary {
  background-color: rgb(226, 0, 15) !important;
}
.bg-body-tertiary * {
  color: #ffffff !important;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 2.25rem;
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}
.btn-primary.btn-small {
  padding: 0.5rem 2rem !important;
}
.btn-primary span {
  color: #ffffff !important;
}
.btn-primary svg path {
  fill: #ffffff;
}
.btn-primary:hover {
  background-color: rgb(226, 0, 15);
  border-color: rgb(226, 0, 15);
}
.btn-primary .adjust-text {
  line-height: 2.25rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.btn-outline-primary {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border-color: #ffffff;
  line-height: 2.25rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.btn-outline-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #2b2b2b;
}

.episode-container .text-container h3 {
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.episode-container .text-container .meta-data {
  display: inline-flex;
  align-items: center;
  color: rgb(226, 0, 15);
  margin-bottom: 0.5rem;
}
.episode-container .text-container .meta-data svg path {
  fill: rgb(226, 0, 15);
}

.follow {
  padding: 4rem 0rem;
  background: #B89E8D;
}
.follow .icon-svg {
  transition-duration: 220ms;
}
.follow .icon-svg svg {
  width: 4rem;
}
.follow .icon-svg:hover svg path {
  fill: rgb(226, 0, 15);
}

.all-episodes .btn-outline-primary {
  border-color: #2b2b2b;
  color: #2b2b2b !important;
}
.all-episodes .btn-outline-primary:hover {
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: #ffffff !important;
}

.video-js {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  box-shadow: 0px 0 8px -4px rgba(0, 0, 0, 0.2);
}
.video-js .vjs-poster img {
  width: 100%;
}

.vjs-big-play-button {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.link-container a {
  margin-right: 0.5rem;
  text-decoration: none;
}
.link-container a svg {
  width: 32px;
  height: auto;
}
.link-container a svg path {
  fill: #bbbbbb;
}
.link-container a:hover svg path {
  fill: rgb(226, 0, 15);
}

footer {
  background-color: #f8f8f8;
}
footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  margin-bottom: 0.25rem;
}
footer ul a {
  color: #000000;
  text-decoration: none;
}
footer ul a:hover {
  color: rgb(226, 0, 15);
}

.navbar-brand {
  display: flex;
}
.navbar-brand .logo-claim {
  display: flex;
  align-items: end;
  justify-content: end;
}
.navbar-brand .logo-claim span {
  padding-left: 1rem;
  line-height: 0.75;
  font-size: 1.5rem;
  font-weight: bolder;
}
@media screen and (max-width: 992px) {
  .navbar-brand img {
    height: 1.5rem;
  }
  .navbar-brand .logo-claim {
    display: flex;
    align-items: end;
    justify-content: end;
  }
  .navbar-brand .logo-claim span {
    padding-left: 1rem;
    line-height: 0.75;
    font-size: 1rem;
    font-weight: bolder;
  }
}

#navbarSupportedContent {
  justify-content: end;
}
#navbarSupportedContent .menu-item {
  position: relative;
  padding: 0rem 1.15rem;
}
#navbarSupportedContent .menu-item a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding-bottom: 0.25rem;
  position: relative;
}
#navbarSupportedContent .menu-item a:hover {
  color: rgb(226, 0, 15);
}
#navbarSupportedContent .menu-item a:hover::before {
  position: absolute;
  content: " ";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(226, 0, 15);
}
#navbarSupportedContent .current-menu-item a {
  color: rgb(226, 0, 15);
  font-weight: bold;
}
#navbarSupportedContent .current-menu-item a::before {
  position: absolute;
  content: " ";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(226, 0, 15);
}

.content-hero {
  position: relative;
  padding-top: 2rem;
  overflow-x: hidden;
}
.content-hero img {
  max-width: 100%;
}
.content-hero::before {
  background-color: #e3000f;
  content: "";
  height: calc(180px + 1rem);
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

h2, h3 {
  font-weight: bolder;
  color: rgb(226, 0, 15);
}

.action-box {
  background-color: rgb(226, 0, 15);
  display: inline-flex;
}
.action-box .box-left {
  width: 40%;
  padding: 3rem;
}
.action-box .box-right {
  padding-top: 3rem;
}
.action-box h3, .action-box p {
  color: #ffffff;
}
.action-box .btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: rgb(226, 0, 15);
}
@media screen and (max-width: 992px) {
  .action-box {
    flex-direction: column-reverse;
  }
  .action-box .box-right {
    padding-top: 0;
  }
  .action-box .box-left {
    width: 100%;
  }
}

.masonry-grid {
  display: inline-flex;
  flex-direction: unset;
  justify-content: space-between;
  flex-wrap: wrap;
}
.masonry-grid .news-box {
  background-color: #f8f8f8;
  display: inline-flex;
  flex-direction: column;
  width: 32%;
}
.masonry-grid .news-box .news-content {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
}
.masonry-grid .news-box .news-content h3 {
  font-size: 1.5rem;
}
.masonry-grid .news-box .news-content p:first-of-type {
  display: block;
  flex: 1;
}
.masonry-grid .news-box .news-image {
  position: relative;
  overflow: hidden;
  height: 190px;
  max-width: 100%;
}
.masonry-grid .news-box .news-image img {
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .masonry-grid {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .masonry-grid .news-box {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-bottom: 1rem;
  }
  .masonry-grid .news-box .news-image {
    height: 240px;
  }
}
.action-box-alt {
  background-color: rgb(226, 0, 15);
  display: inline-flex;
}
.action-box-alt .box-left {
  width: 70%;
  padding: 3rem;
}
.action-box-alt .box-right {
  padding-top: 3rem;
}
.action-box-alt h3, .action-box-alt p {
  color: #ffffff;
}
.action-box-alt .btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: rgb(226, 0, 15);
}
@media screen and (max-width: 992px) {
  .action-box-alt {
    flex-direction: column-reverse;
  }
  .action-box-alt .box-right {
    padding-top: 0;
  }
  .action-box-alt .box-left {
    width: 100%;
  }
}

.content img {
  max-width: 100%;
}

.action-box-big {
  background-color: rgb(226, 0, 15);
  display: inline-flex;
}
@media screen and (max-width: 992px) {
  .action-box-big .box-left {
    width: 100%;
    padding: 3rem 1.75rem !important;
  }
}
.action-box-big .box-left {
  width: 100%;
  padding: 3rem;
}
.action-box-big .box-left img {
  max-width: 100%;
}
.action-box-big .box-left .accordion-item, .action-box-big .box-left .accordion-body {
  background-color: transparent;
  border-color: #ffffff;
}
.action-box-big .box-left .accordion-item button, .action-box-big .box-left .accordion-body button {
  background-color: transparent;
  border-color: #ffffff;
}
.action-box-big .box-left .accordion-item button strong, .action-box-big .box-left .accordion-body button strong {
  color: #ffffff;
}
.action-box-big h3, .action-box-big p {
  color: #ffffff;
}
.action-box-big .btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: rgb(226, 0, 15);
}
@media screen and (max-width: 992px) {
  .action-box-big {
    flex-direction: column-reverse;
  }
  .action-box-big .box-left {
    width: 100%;
  }
}

.topic-grid {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topic-grid .topic-block {
  background-color: rgb(226, 0, 15);
  padding: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
}
.topic-grid .topic-block .topic-icon {
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  margin-bottom: 1rem;
}
.topic-grid .topic-block .topic-icon svg {
  height: 3rem;
}
.topic-grid .topic-block .topic-icon svg path {
  fill: rgb(226, 0, 15);
}
.topic-grid .topic-block .topic-text h3 {
  text-align: center;
}
.topic-grid .topic-block .topic-text h3, .topic-grid .topic-block .topic-text p {
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .topic-grid {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .topic-grid .topic-block {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.news a {
  color: rgb(226, 0, 15);
  text-decoration: none;
}

.back-button span {
  color: rgb(226, 0, 15);
  display: inline-flex;
  padding-left: 0.25rem;
}
.back-button svg {
  width: 1rem;
}
.back-button svg path {
  fill: rgb(226, 0, 15);
}

.cookie-revoke-container *, .cookie-notice-container * {
  color: #ffffff;
}

/*# sourceMappingURL=main.css.map */
