@font-face {
  font-family: 'Poppins';
  src: url("../fonts/poppins-light.woff") format("woff");
  font-weight: 300; }
@font-face {
  font-family: 'Poppins';
  src: url("../fonts/poppins-regular.woff") format("woff");
  font-weight: 400; }
@font-face {
  font-family: 'Poppins';
  src: url("../fonts/poppins-medium.woff") format("woff");
  font-weight: 500; }
@font-face {
  font-family: 'Poppins';
  src: url("../fonts/poppins-semibold.woff");
  font-weight: 600; }
@font-face {
  font-family: 'Poppins';
  src: url("../fonts/poppins-bold.woff");
  font-weight: 700; }
*,
*::before,
*::after {
  box-sizing: border-box; }

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5; }

h2 {
  color: #210D48;
  text-align: center;
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 70.4px;
  margin: 0 0 0.5em 0; }

p.intro {
  color: #210D48;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 1030px;
  margin: 0 auto; }

.pop, .button,
.btn, section.hosts .container .hosts-list article, section.listen .container .listen-list article, section.contact .container .box .social .social-icons a {
  transition: all 300ms cubic-bezier(0, 0, 0.44, 1.18);
  will-change: transform; }
  .pop:hover, .button:hover,
  .btn:hover, section.hosts .container .hosts-list article:hover, section.listen .container .listen-list article:hover, section.contact .container .box .social .social-icons a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 7px #4c217752; }
  .pop *, .button *,
  .btn *, section.hosts .container .hosts-list article *, section.listen .container .listen-list article *, section.contact .container .box .social .social-icons a * {
    will-change: transform; }

.button,
.btn {
  display: inline-flex;
  height: 55px;
  padding: 0 30px;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 2px solid #D13229;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: #D13229;
  text-decoration: none;
  transition: all 0.3s ease; }
  .button.down::after,
  .btn.down::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../img/icon-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }

img {
  max-width: 100%;
  height: auto; }

.container {
  max-width: 1578px;
  margin: 0 auto; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr); }
  @media (min-width: 1000px) {
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 42px; }
  @media (min-width: 1000px) {
    .grid-3 {
      grid-template-columns: repeat(2, 1fr);
      gap: 82px 42px; } }
  @media (min-width: 1300px) {
    .grid-3 {
      grid-template-columns: repeat(3, 1fr); } }

section,
header,
footer {
  padding: 70px 20px; }
  @media (min-width: 1618px) {
    section,
    header,
    footer {
      padding: 100px 0; } }

article {
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff; }
  article .content {
    padding: 21px; }
    @media (min-width: 1000px) {
      article .content {
        padding: 42px; } }

/* Header */
header {
  background-color: #322a96;
  padding-top: 0;
  padding-bottom: 0; }
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px 0; }
    header .container img {
      width: 265px; }
    header .container nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
      padding: 20px;
      gap: 10px;
      flex-direction: column; }
      header .container nav a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 10px; }
        header .container nav a:hover {
          text-decoration: underline; }
        header .container nav a.btn {
          color: #fff;
          border: none; }
          header .container nav a.btn:hover {
            text-decoration: none;
            background-color: #ffffff22; }
          header .container nav a.btn.red {
            background-color: #d13229; }
            header .container nav a.btn.red:hover {
              background-color: #f33b31; }
        header .container nav a img {
          max-width: 18px;
          max-height: 18px; }
    @media (min-width: 900px) {
      header .container nav {
        flex-direction: row;
        gap: 30px; } }
    @media (min-width: 1200px) {
      header .container {
        flex-direction: row;
        height: 120px;
        padding: 0; }
        header .container nav {
          padding: 0 20px;
          gap: 42px; } }

/* Welcome */
section.welcome {
  background-color: #fefbf2;
  background-image: url("../img/bkd-welcome.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #322A96;
  position: relative; }
  @media (min-width: 1618px) {
    section.welcome {
      padding: 100px 0 130px 0; } }
  section.welcome::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    background-image: url("../img/wave-welcome.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  section.welcome .container h1 {
    margin: 0; }
  section.welcome .container p {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 43.2px;
    letter-spacing: -0.72px;
    margin: 0.5em 0;
    max-width: 640px; }
  section.welcome .container .image {
    height: 570px;
    mix-blend-mode: darken;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain; }
  section.welcome .container .btn,
  section.welcome .container .button {
    margin-top: 1em; }

/* Hosts */
section.hosts {
  background-color: #f59122;
  position: relative;
  padding-bottom: 100px; }
  @media (min-width: 1618px) {
    section.hosts {
      padding: 20px 0 130px 0; } }
  section.hosts::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    background-image: url("../img/wave-hosts.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  section.hosts .container {
    background-image: url("../img/bkd-hosts.svg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center; }
    @media (min-width: 1618px) {
      section.hosts .container {
        padding-top: 80px; } }
    section.hosts .container .hosts-list {
      margin-top: 100px; }
      section.hosts .container .hosts-list article {
        overflow: visible;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px; }
        section.hosts .container .hosts-list article .image {
          border-radius: 24px 24px 0 0;
          background-color: #ffba6b;
          height: 240px;
          text-align: center; }
          section.hosts .container .hosts-list article .image img {
            height: 300px;
            width: auto;
            transform: translateY(-60px); }
        section.hosts .container .hosts-list article h1 {
          font-size: 28px;
          font-style: normal;
          font-weight: 600;
          line-height: 36.4px;
          letter-spacing: -0.56px;
          color: #07012F;
          margin: 0 0 0.5em 0; }
        section.hosts .container .hosts-list article .qualification {
          color: #D13229;
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 27px; }

/* Episodes */
section.listen {
  background-color: #322a96; }
  @media (min-width: 1618px) {
    section.listen {
      padding: 20px 0 130px 0; } }
  section.listen .container {
    background-image: url("../img/bkd-listen.svg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center; }
    @media (min-width: 1618px) {
      section.listen .container {
        padding-top: 80px; } }
    section.listen .container h2 {
      color: #F59122; }
    section.listen .container p.intro {
      color: #fff; }
    section.listen .container .listen-list {
      margin-top: 100px; }
      section.listen .container .listen-list article {
        display: flex;
        flex-direction: column; }
        section.listen .container .listen-list article .image {
          height: 240px;
          background-color: #cac7e7;
          background-position: center center;
          background-repeat: no-repeat;
          background-size: cover; }
        section.listen .container .listen-list article .content {
          display: flex;
          flex-direction: column;
          flex-grow: 1; }
          section.listen .container .listen-list article .content h1 {
            font-size: 28px;
            font-style: normal;
            font-weight: 600;
            line-height: 36.4px;
            letter-spacing: -0.56px;
            color: #07012F;
            margin: 0 0 0.5em 0; }
          section.listen .container .listen-list article .content .date {
            color: #D13229;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 27px; }
          section.listen .container .listen-list article .content .text {
            flex-grow: 1; }
          section.listen .container .listen-list article .content audio {
            margin-top: 1em;
            width: 100%; }

/* Contact */
section.contact {
  background-color: #322a96;
  background: linear-gradient(0deg, #07012f 50%, #322a96 50%);
  padding-top: 0;
  padding-bottom: 0; }
  section.contact .container h3 {
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 52.8px;
    color: #07012F; }
  section.contact .container .box {
    display: flex;
    flex-direction: column; }
    @media (min-width: 1300px) {
      section.contact .container .box {
        flex-direction: row; } }
    section.contact .container .box .social {
      background-color: #f59122;
      padding: 22px;
      border-radius: 24px 24px 0px 0px; }
      @media (min-width: 1000px) {
        section.contact .container .box .social {
          padding: 44px; } }
      @media (min-width: 1300px) {
        section.contact .container .box .social {
          max-width: 620px;
          border-radius: 24px 0px 0px 24px; } }
      section.contact .container .box .social p {
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 36.4px;
        letter-spacing: -0.56px;
        color: #07012F; }
      section.contact .container .box .social .social-icons {
        display: flex;
        flex-direction: column;
        gap: 10px; }
        section.contact .container .box .social .social-icons a {
          border-radius: 8px;
          border: 1px solid #F17917;
          background: rgba(255, 255, 255, 0.2);
          display: flex;
          padding: 16px 24px;
          align-items: center;
          align-self: stretch;
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 27px;
          color: black;
          text-decoration: none; }
          @media (min-width: 370px) {
            section.contact .container .box .social .social-icons a {
              font-size: 18px; } }
          section.contact .container .box .social .social-icons a img {
            margin-right: 12px; }
            @media (min-width: 1000px) {
              section.contact .container .box .social .social-icons a img {
                margin-right: 24px; } }
          section.contact .container .box .social .social-icons a span {
            display: none; }
            @media (min-width: 1000px) {
              section.contact .container .box .social .social-icons a span {
                display: inline; } }
    section.contact .container .box .form {
      background-color: #fff;
      padding: 22px;
      flex-grow: 1;
      border-radius: 0px 0px 24px 24px; }
      @media (min-width: 1000px) {
        section.contact .container .box .form {
          padding: 44px; } }
      @media (min-width: 1300px) {
        section.contact .container .box .form {
          border-radius: 0px 24px 24px 0px; } }

/* Footer */
footer {
  background-color: #07012f;
  color: #fff; }
  footer .container .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-bottom: 44px;
    margin-bottom: 44px;
    border-bottom: 1px solid #d0d0d0;
    flex-direction: column; }
    @media (min-width: 1000px) {
      footer .container .top {
        flex-direction: row; } }
    footer .container .top img {
      width: 252px; }
    footer .container .top .acknowledgement {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      gap: 0;
      max-width: 1200px;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 23px;
      flex-direction: column;
      text-align: center; }
      @media (min-width: 1000px) {
        footer .container .top .acknowledgement {
          flex-direction: row;
          gap: 23px;
          text-align: left; } }
      footer .container .top .acknowledgement .flags {
        display: flex;
        gap: 10px;
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        justify-content: center; }
        @media (min-width: 1000px) {
          footer .container .top .acknowledgement .flags {
            flex-direction: column; } }
        footer .container .top .acknowledgement .flags img {
          width: 48px;
          flex-shrink: 0; }
  footer .container .copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px; }
    @media (min-width: 1000px) {
      footer .container .copy {
        flex-direction: row; } }
    footer .container .copy a {
      text-decoration: none;
      color: #F59122; }
      footer .container .copy a:hover {
        text-decoration: underline; }
    footer .container .copy p {
      margin: 0;
      color: #F59122;
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: 27px; }
      footer .container .copy p.codex a {
        color: white; }

body .gform_wrapper .gform_body .gform_fields {
  column-gap: 22px;
  row-gap: 22px; }
  body .gform_wrapper .gform_body .gform_fields .gfield--input-type-text .gform-field-label, body .gform_wrapper .gform_body .gform_fields .gfield--input-type-email .gform-field-label, body .gform_wrapper .gform_body .gform_fields .gfield--input-type-textarea .gform-field-label {
    display: none; }
  body .gform_wrapper .gform_body .gform_fields .gfield--type-consent legend {
    display: none; }
  body .gform_wrapper .gform_body .gform_fields .gfield--type-consent .gform-field-label {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.6px; }
    body .gform_wrapper .gform_body .gform_fields .gfield--type-consent .gform-field-label a {
      color: inherit;
      text-decoration: none; }
      body .gform_wrapper .gform_body .gform_fields .gfield--type-consent .gform-field-label a:hover {
        text-decoration: underline; }
  body .gform_wrapper .gform_body .gform_fields .gfield textarea,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="email"],
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"] {
    display: flex;
    border: none;
    padding: 16px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    background: #F9F9F9;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; }
    body .gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder,
    body .gform_wrapper .gform_body .gform_fields .gfield input[type="email"]::placeholder,
    body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"]::placeholder {
      color: #8E8E8E; }
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="email"],
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"] {
    height: 60px; }
  body .gform_wrapper .gform_body .gform_fields .gfield textarea {
    padding-top: 27px;
    min-height: 190px; }
  body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="checkbox"]:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="email"]:focus,
  body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"]:focus {
    outline-color: #f59122; }
body .gform_wrapper .gform-footer .gform_button,
body .gform_wrapper .gform-footer .button,
body .gform_wrapper .gform-footer input[type="submit"] {
  border-radius: 16px !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important; }
  body .gform_wrapper .gform-footer .gform_button:focus,
  body .gform_wrapper .gform-footer .button:focus,
  body .gform_wrapper .gform-footer input[type="submit"]:focus {
    outline-color: #f59122 !important; }
