@font-face {
  font-family: Berkshireswash;
  src: url('../fonts/BerkshireSwash-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pale-gold: #fcd69d;
  --_colours---colstdblue: #1cace6;
  --dark-teal: #133d55;
  --_colours---coltext: #fffcf1;
  --stdnavbartext: white;
  --dark-brown: #251c00;
  --stdbackgroundmid: grey;
  --colmaroon: #790101;
  --white: white;
  --_colours---colpaleblueformfield: #cfdfe6;
  --black: black;
  --stdtext: var(--_colours---coltext);
  --stdlink: red;
  --stdnavbar: blue;
  --stdfooter: blue;
  --stdfootertext: white;
  --stdbackgroundlight: white;
  --stdbackgrounddark: grey;
  --colwhatsappgreen: #31d851;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--pale-gold);
  background-image: url('../images/Repeating-Pattern---Waves.webp');
  font-family: Merriweather, serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Berkshireswash, Arial, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Berkshireswash, Arial, sans-serif;
  font-size: 2em;
  font-weight: 400;
}

p {
  margin-bottom: 10px;
}

a {
  text-underline-offset: .3em;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--pale-gold);
  text-decoration-color: var(--pale-gold);
  text-decoration-style: dotted;
}

a:hover {
  text-decoration-style: solid;
}

.navbar-section {
  z-index: 999;
  border-bottom: 1px solid var(--_colours---colstdblue);
  background-image: url('../images/blue-ripple-20br.webp');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 30%;
  width: 100%;
  height: auto;
  padding-top: 5px;
  padding-bottom: 0;
  font-size: .8em;
  position: sticky;
  top: 0;
}

.standard-container {
  text-align: center;
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 20px 5px;
  display: flex;
}

.standard-container.navbar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: end stretch;
  padding-top: 0;
  display: grid;
}

.standard-container.filler {
  border: 1px solid #0000;
  height: 100px;
}

.standard-container.top-space {
  color: var(--pale-gold);
  background-color: #040c2900;
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-left: 50px;
  margin-right: 50px;
  padding: 20px 60px;
}

.standard-container.footer {
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.footer-section {
  background-color: var(--dark-teal);
  color: var(--_colours---coltext);
  border: 0 #000;
  height: auto;
  margin-top: auto;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  font-size: .7em;
  position: static;
  transform: translate(0)translate(0);
}

.body-section {
  margin-top: 20px;
  box-shadow: 0 2px 5px #0003;
}

.navbar {
  background-color: #0000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-link {
  color: var(--stdnavbartext);
}

.nav-link.w--current {
  color: var(--pale-gold);
}

.body {
  background-image: url('../images/blue-ripple-20br.webp');
  background-position: 0 0;
  background-size: 40% 40%;
  flex-flow: column;
  display: flex;
}

.nav-menu {
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
  width: 100%;
}

.footer-left {
  color: var(--pale-gold);
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1em;
  display: flex;
}

.footer-right {
  color: var(--pale-gold);
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 1em;
  display: flex;
}

.footer-link {
  color: var(--pale-gold);
  padding-bottom: 10px;
  font-size: 14px;
}

.hero-section {
  color: var(--pale-gold);
  background-color: #0000;
  height: 100vh;
}

.flex-block {
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.listen-now-button {
  background-color: var(--_colours---colstdblue);
  border-radius: 15px;
  padding: .25em 1em;
  font-size: 1.7em;
}

.grid {
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-rows: 3fr;
  width: 100%;
  height: 100%;
}

.jose {
  text-align: left;
  width: 400px;
}

.hero-top-box {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.radio-player {
  text-align: center;
}

.centre-div {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.hero-bottom-box {
  justify-content: flex-end;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-centre-box {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.crew-left-image {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ffffff1f;
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 20px;
  padding: 0;
}

.crew-right-image {
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr;
  margin-bottom: 20px;
  padding: 0;
}

.crew-right-image.vf {
  grid-template-rows: auto auto;
  grid-template-columns: 3fr;
}

.crew-image {
  border-radius: 15px;
  width: 100%;
  box-shadow: 5px 5px 5px #0003;
}

.right-text {
  text-align: left;
}

.right-image {
  border-radius: 15px;
  padding: 2px;
}

.left-image {
  border-radius: 17px;
  padding: 3px;
}

.left-text {
  text-align: right;
}

.now-playing-div {
  color: var(--pale-gold);
  font-size: .7em;
}

.crew-block {
  margin-top: 60px;
  font-size: .8em;
}

.crew-block.vf {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.today-s-schedule {
  background-color: var(--_colours---coltext);
  margin-top: 20px;
}

.h1-centre {
  color: var(--pale-gold);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 10px;
  font-family: Pirata One, sans-serif;
  font-size: 4.5em;
}

.flex-block-3 {
  color: var(--dark-brown);
  background-image: url('../images/psd_old_paper_scroll_ancient_papyrus_isolated_on_background.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 800px;
  padding-top: 0;
}

.h1-scroll {
  color: var(--dark-brown);
  font-family: Pirata One, sans-serif;
  font-size: 6em;
}

.bmac-div {
  aspect-ratio: 1;
  text-align: center;
  text-shadow: none;
  background-image: url('../images/coffee_mug_adjusted.avif');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-top: 5%;
  font-family: Berkshireswash, Arial, sans-serif;
}

.button-link-block {
  aspect-ratio: 1;
  border: 10px solid var(--dark-teal);
  color: var(--pale-gold);
  text-align: center;
  text-shadow: 2px 1px 1px #0003;
  border-radius: 50%;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  height: 100%;
  padding-bottom: 6%;
  text-decoration: none;
  display: flex;
}

.button-link-block:hover {
  border-color: #d08c48;
}

.text-block {
  color: var(--pale-gold);
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.2em;
  -webkit-text-decoration: underline #0000;
  text-decoration: underline #0000;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-link-2 {
  color: var(--pale-gold);
  letter-spacing: 1px;
  margin-left: 0;
  margin-right: 10px;
  padding: 5px 20px 5px 0;
  font-family: Merriweather, serif;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  position: static;
}

.nav-link-2:hover {
  color: var(--stdbackgroundmid);
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.menu-button {
  background-color: var(--colmaroon);
  color: var(--pale-gold);
  text-align: center;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  padding: 15px 30px;
  font-family: Merriweather, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  box-shadow: 7px 9px 5px #0003;
}

.menu-button.teemill {
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
}

.navbar-logo-left {
  -webkit-backdrop-filter: brightness(80%);
  backdrop-filter: brightness(80%);
  background-color: #061d2a00;
  border: 1px #0000;
  border-bottom-width: 0;
  max-width: none;
  position: static;
  box-shadow: 0 2px 5px #0003;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  background-color: #fff0;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-menu-wrapper {
  text-align: left;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.list-item {
  padding-top: 5px;
  padding-bottom: 5px;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-auto-flow: row;
  place-items: center start;
  position: fixed;
}

.intro-paragraph {
  padding: 40px 10%;
}

.crew-paragraph {
  font-family: Montserrat, sans-serif;
  font-size: 1.5em;
}

.h2-heading-crew {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 3em;
  line-height: 1.1;
}

.image {
  vertical-align: top;
  max-width: none;
  max-height: none;
  margin-bottom: 10px;
}

.div-block-2 {
  box-sizing: border-box;
  object-fit: fill;
}

.navbar-logo-left-container-2 {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container-2.shadow-three {
  width: 100%;
  max-width: 1500px;
  margin-bottom: 0;
  padding: 0;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: grid;
}

.nav-menu-two-2 {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

.nav-link-4 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-4:hover {
  color: #1a1b1fbf;
}

.nav-link-4:focus-visible, .nav-link-4[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-2 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-3 {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-3:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-3:focus-visible, .nav-dropdown-toggle-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-2 {
  color: var(--pale-gold);
  margin-right: 10px;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider-2 {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent-2:hover {
  color: #1a1b1fbf;
}

.list-item-2 {
  color: var(--pale-gold);
}

.footer-text {
  font-size: 14px;
  line-height: 1.4;
}

.spacer {
  margin-top: 20px;
  margin-bottom: 20px;
}

.paragraph {
  margin-top: 180px;
}

.h2-schedule {
  text-align: center;
  background-color: #0000;
  background-image: url('../images/Parchment-Paper.webp');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: scroll;
  border-radius: 20px;
  width: 80%;
  height: 100%;
  min-height: 100%;
  margin-top: 60px;
  padding: 20px;
  font-family: Merriweather, serif;
  font-size: 24px;
  line-height: 1.6;
  overflow: auto;
}

.flex-box {
  justify-content: center;
  align-items: center;
}

.h2-weekly-schedule {
  text-align: center;
  font-family: Pirata One, sans-serif;
}

.paragraph-schedule {
  z-index: 100;
  color: var(--dark-brown);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 18%;
  font-family: Merriweather, serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  position: absolute;
  top: 0;
}

.h2-schedule-home {
  color: var(--dark-brown);
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  width: 80%;
  height: 100%;
  min-height: 100%;
  margin-top: 40px;
  padding: 20px;
  font-family: Merriweather, serif;
  font-size: 30px;
  line-height: 1.6;
  overflow: auto;
}

.div-block-3 {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-3 {
  grid-template-columns: 1fr 1fr;
}

.image-2 {
  text-align: left;
}

.standard-container-parchment {
  color: var(--pale-gold);
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  padding: 30px 40px 40px;
  display: flex;
}

.standard-container-parchment.navbar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: end stretch;
  padding-top: 0;
  display: grid;
}

.standard-container-parchment.filler {
  border: 1px solid #0000;
  height: 100px;
}

.standard-container-parchment.top-space {
  color: var(--pale-gold);
  background-color: #040c2900;
  align-items: stretch;
  max-width: none;
  margin-left: 50px;
  margin-right: 50px;
  padding-left: 60px;
  padding-right: 60px;
}

.standard-container-parchment.footer {
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.paragraph-chart {
  color: var(--pale-gold);
  text-align: center;
  font-family: Merriweather, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
}

.image-3 {
  max-width: none;
  position: relative;
}

.parchment-image {
  z-index: 0;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  max-width: none;
  position: absolute;
  inset: 0% 0% auto;
}

.grid-5 {
  grid-template-rows: auto;
}

.paragraph-whatsapp {
  text-align: center;
}

.whatsapp-link-block {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
  display: flex;
}

.whatsapp-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-5 {
  margin-right: 40px;
}

.link {
  color: var(--pale-gold);
  text-decoration: none;
}

.image-5 {
  text-align: left;
}

.div-block-wrapper {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.standard-container-test-vf {
  color: var(--pale-gold);
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  padding: 30px 40px 40px;
  display: flex;
}

.standard-container-test-vf.navbar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: end stretch;
  padding-top: 0;
  display: grid;
}

.standard-container-test-vf.filler {
  border: 1px solid #0000;
  height: 100px;
}

.standard-container-test-vf.top-space {
  color: var(--pale-gold);
  background-color: #040c2900;
  align-items: stretch;
  max-width: none;
  margin-left: 50px;
  margin-right: 50px;
  padding-left: 60px;
  padding-right: 60px;
}

.standard-container-test-vf.footer {
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.div-block-6 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-video {
  max-width: none;
}

.h1-hero {
  margin-top: 80px;
  font-family: Pirata One, sans-serif;
  font-size: 150px;
}

.roster-div {
  aspect-ratio: 10 / 19;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.donate-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.capt-jose-div {
  margin-bottom: 30px;
}

.requests-div {
  margin-bottom: 100px;
}

.schedule-div {
  text-align: center;
  width: 100%;
}

.hugo-speaks {
  background-color: var(--colmaroon);
  cursor: pointer;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.code-embed {
  text-align: center;
  background-color: #fff0;
  font-size: 30px;
}

.hugo-button {
  background-color: var(--colmaroon);
  width: 200px;
  height: 50px;
}

.no-ads {
  font-size: 1.5em;
}

.whatsapp-message {
  color: var(--white);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1.7em;
  text-decoration: none;
  display: inline;
}

.whatsapp-message:hover {
  text-decoration: none;
}

.hugo-text {
  text-align: center;
  font-family: Merriweather, serif;
  font-size: 1.5em;
  line-height: 1;
}

.player-button {
  background-color: var(--colmaroon);
  color: var(--pale-gold);
  text-align: center;
  border-radius: 20px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-top: 0;
  padding: 15px 30px;
  font-family: Merriweather, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  box-shadow: 7px 9px 5px #0003;
}

.player-button.teemill {
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
}

.radio-player-div {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bmac-text {
  margin-top: -20%;
}

.navbar-now-playing {
  font-size: 12px;
}

.contact-section {
  border-top: 1px solid var(--_colours---colstdblue);
  background-color: #0000003d;
  padding-top: 40px;
  padding-bottom: 60px;
}

.form-block {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
}

.text-field {
  background-color: var(--_colours---colstdblue);
}

.form-field {
  background-color: var(--_colours---colpaleblueformfield);
  color: var(--black);
  border-radius: 7px;
}

.form-field.message {
  height: 200px;
}

.submit-button {
  background-color: var(--colmaroon);
  color: var(--pale-gold);
  border-radius: 10px;
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-section-2 {
  transform: none;
}

.text-span {
  white-space: nowrap;
}

.success-message {
  background-color: #0000;
}

.mixcloud-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.mixcloud-text {
  color: var(--pale-gold);
  font-family: Merriweather, serif;
  font-size: 1.7em;
  text-decoration: none;
  display: inline;
}

.mixcloud-text:hover {
  text-decoration: none;
}

.paragraph-mixcloud {
  text-align: center;
}

.mixcloud-link-block {
  background-color: var(--colmaroon);
  color: var(--pale-gold);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.socials-hflex {
  justify-content: center;
  align-items: center;
}

.facebook-icon {
  background-color: #1878f2;
  border-radius: 20%;
}

.image-6 {
  border-radius: 20%;
}

@media screen and (max-width: 991px) {
  .standard-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .standard-container.top-space {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .standard-container.footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-link {
    font-size: 12px;
  }

  .jose {
    width: 300px;
  }

  .radio-player {
    font-size: .8em;
  }

  .crew-left-image, .crew-right-image {
    padding: 15px;
  }

  .right-image {
    box-shadow: none;
  }

  .crew-block {
    max-width: 98vw;
  }

  .h1-centre {
    font-size: 4em;
  }

  .flex-block-3 {
    width: 80%;
  }

  .h1-scroll {
    margin-top: -72px;
    font-size: 3.5em;
  }

  .button-link-block {
    width: 50%;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .menu-button {
    justify-content: flex-start;
    align-items: center;
    padding: 12px 25px;
    font-size: 24px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .intro-paragraph {
    padding-left: 5%;
    font-size: 24px;
  }

  .section {
    margin-left: 10px;
    margin-right: 10px;
  }

  .navbar-container {
    max-width: 728px;
  }

  .navbar-wrapper-2 {
    grid-template-rows: auto;
  }

  .nav-menu-wrapper-2 {
    background-color: #0000;
  }

  .nav-menu-two-2 {
    background-color: var(--dark-teal);
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-4 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #0000;
  }

  .icon {
    color: var(--pale-gold);
  }

  .footer-text {
    font-size: 12px;
  }

  .spacer {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .h2-schedule {
    font-size: 22px;
  }

  .paragraph-schedule {
    clear: none;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 3.5vw;
    position: absolute;
  }

  .h2-schedule-home {
    font-size: 22px;
  }

  .standard-container-parchment {
    background-image: none;
    width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    position: static;
  }

  .standard-container-parchment.top-space {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .standard-container-parchment.footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-3 {
    position: absolute;
  }

  .image-wrapper {
    position: relative;
  }

  .whatsapp-link-block {
    padding-left: 0;
  }

  .standard-container-test-vf {
    background-image: none;
    width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    position: static;
  }

  .standard-container-test-vf.top-space {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .standard-container-test-vf.footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1-hero {
    margin-top: 40px;
    line-height: 1.1;
  }

  .player-button {
    justify-content: flex-start;
    align-items: center;
    padding: 12px 25px;
    font-size: 24px;
  }

  .player-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .div-block-7 {
    text-align: right;
  }

  .mixcloud-text {
    font-size: 1.5em;
  }

  .mixcloud-link-block {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .standard-container.top-space {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .standard-container.footer {
    margin-left: auto;
    padding: 20px;
  }

  .footer-section {
    height: 150px;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .jose {
    width: 250px;
  }

  .crew-left-image {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .crew-right-image {
    grid-template-rows: auto auto;
    grid-template-columns: 2fr;
  }

  .right-text, .left-text {
    text-align: center;
  }

  .h1-centre {
    font-size: 3.5em;
  }

  .h1-scroll {
    margin-top: -57px;
    font-size: 3em;
  }

  .button-link-block {
    width: 60%;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .menu-button {
    font-size: 20px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .intro-paragraph {
    padding-left: 1%;
    padding-right: 1%;
    font-size: 4vw;
  }

  .image {
    width: auto;
  }

  .navbar-logo-left-container-2 {
    max-width: 100%;
  }

  .navbar-brand-2 {
    padding-left: 0;
  }

  .nav-menu-two-2 {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link-4 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-3 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider-2 {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent-2 {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-11 {
    margin-top: 10px;
  }

  .spacer {
    margin-top: 0;
    margin-bottom: 0;
  }

  .h2-schedule, .h2-schedule-home {
    width: 90%;
    font-size: 20px;
  }

  .standard-container-parchment {
    padding: 10px;
  }

  .standard-container-parchment.top-space {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .standard-container-parchment.footer {
    margin-left: auto;
    padding: 20px;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .paragraph-whatsapp {
    text-align: center;
  }

  .link-block {
    text-align: left;
  }

  .whatsapp-link-block {
    margin-top: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .whatsapp-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: grid;
  }

  .div-block-5 {
    margin-right: 0;
  }

  .div-block-wrapper {
    width: auto;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .standard-container-test-vf {
    padding: 10px;
  }

  .standard-container-test-vf.top-space {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .standard-container-test-vf.footer {
    margin-left: auto;
    padding: 20px;
  }

  .h1-hero {
    margin-top: 20px;
    font-size: 100px;
  }

  .hugo-speaks {
    height: 60px;
  }

  .hugo-text {
    font-size: 1.2em;
  }

  .player-button {
    font-size: 20px;
  }

  .bmac-text {
    font-size: .6em;
  }

  .footer-section-2 {
    height: auto;
  }

  .mixcloud-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: grid;
  }

  .mixcloud-text {
    font-size: 1.2em;
  }

  .paragraph-mixcloud {
    text-align: center;
  }

  .mixcloud-link-block {
    margin-top: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .standard-container.top-space {
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .standard-container.footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
  }

  .footer-section {
    filter: none;
  }

  .body {
    font-family: Merriweather, serif;
    font-weight: 300;
  }

  .footer-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1.5fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-left {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .footer-right {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-link {
    font-size: 10px;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .jose {
    width: 180px;
  }

  .radio-player {
    font-size: .6em;
  }

  .crew-left-image {
    padding: 5px;
  }

  .crew-right-image {
    margin-bottom: 20px;
    padding: 5px;
  }

  .left-text {
    font-size: .9em;
  }

  .crew-block {
    max-width: 98vw;
    font-size: .6em;
  }

  .h1-centre {
    font-size: 2.5em;
  }

  .h1-scroll {
    margin-top: -42px;
    font-size: 1.7em;
  }

  .button-link-block {
    width: 80%;
  }

  .text-block {
    color: var(--pale-gold);
    font-family: Merriweather, serif;
  }

  .menu-button {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    place-items: center;
  }

  .intro-paragraph {
    padding-left: 0%;
    padding-right: 0%;
    font-size: 18px;
  }

  .h2-heading-crew {
    padding-top: 10px;
    line-height: 1.25;
  }

  .section {
    margin-left: 5px;
    margin-right: 5px;
  }

  .navbar-container {
    max-width: none;
  }

  .nav-menu-two-2 {
    flex-direction: column;
  }

  .footer-text {
    font-size: 10px;
  }

  .h2-schedule, .h2-schedule-home {
    font-size: 18px;
    line-height: 1.2;
  }

  .standard-container-parchment {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .standard-container-parchment.top-space {
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .standard-container-parchment.footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
  }

  .image-3 {
    max-width: none;
  }

  .whatsapp-link-block {
    margin-left: 0;
  }

  .div-block-5 {
    margin-right: 0;
  }

  .standard-container-test-vf {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .standard-container-test-vf.top-space {
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .standard-container-test-vf.footer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    padding-left: 10px;
    padding-right: 10px;
    display: grid;
  }

  .h1-hero {
    font-size: 60px;
  }

  .schedule-div {
    margin-top: 40px;
  }

  .hugo-speaks {
    height: 40px;
  }

  .no-ads {
    font-size: 1.3em;
  }

  .whatsapp-message {
    font-size: 1em;
  }

  .hugo-text {
    font-size: 19px;
  }

  .player-button {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
  }

  .heading {
    font-size: 2em;
  }

  .mixcloud-text {
    font-size: 19px;
  }

  .mixcloud-link-block {
    margin-left: 0;
  }
}

#w-node-_5a9271fe-f2cb-37f9-5a8d-44bb367f391b-fcbb0c47 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_9ec04205-8ab2-f46a-fedd-935d7559c611-fcbb0c47 {
  place-self: center;
}

#w-node-_9dcdcf17-beba-e0b6-6bf4-c5174e3214f3-4e3214f0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9dcdcf17-beba-e0b6-6bf4-c5174e3214f8-4e3214f0 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6b6-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6be-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6c9-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6cc-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6d4-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6df-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6e2-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6ea-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6f5-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6f8-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e700-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e70b-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e70e-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e716-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e721-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e724-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e72c-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e738-48f34b17, #w-node-_998eca45-db3a-ec1e-7295-4927f753dbb9-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_998eca45-db3a-ec1e-7295-4927f753dbc1-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e746-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e73b-48f34b17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_292510e7-9c37-2998-eb40-fe3c4b25e743-48f34b17 {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_1cd79767-1599-f7c5-072c-4e934cb082c0-fcbb0c47 {
    justify-self: center;
  }

  #w-node-_9ec04205-8ab2-f46a-fedd-935d7559c611-fcbb0c47 {
    align-self: center;
  }

  #w-node-_0cab689f-b137-dcf5-fb3d-1eeaa5eb5a2b-fcbb0c47, #w-node-_64d91302-89e6-d170-5699-d9ea65606811-fcbb0c47, #w-node-_3ae0a24b-cdcf-da43-0215-638d2d4efa4d-83aac25d {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_9ec04205-8ab2-f46a-fedd-935d7559c611-fcbb0c47 {
    justify-self: center;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6b6-48f34b17 {
    grid-row-start: 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6b7-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6be-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6bf-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6c9-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6cc-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6d4-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6df-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6e2-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6ea-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6f5-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e6f8-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e700-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e70b-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e70e-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e716-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e721-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e724-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e72c-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e738-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_998eca45-db3a-ec1e-7295-4927f753dbb9-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_998eca45-db3a-ec1e-7295-4927f753dbc1-48f34b17, #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e746-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e73b-48f34b17 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_292510e7-9c37-2998-eb40-fe3c4b25e743-48f34b17 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9dcdcf17-beba-e0b6-6bf4-c5174e3214f2-4e3214f0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9dcdcf17-beba-e0b6-6bf4-c5174e3214f3-4e3214f0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_9dcdcf17-beba-e0b6-6bf4-c5174e3214f8-4e3214f0 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-ae6ad1b5-6d4c-6317-b441-44fa755326e4-4e3214f0 {
    grid-area: 3 / 1 / 4 / 2;
  }
}


@font-face {
  font-family: 'Berkshireswash';
  src: url('../fonts/BerkshireSwash-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}