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

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa Brands;
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa Solid;
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../images/') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font--system: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --color--1st: #ff426f;
  --color--white: #fff;
  --color--3rd: #ff31c8;
  --color--2nd: #fc6767;
  --color--grey: #cfc8cf;
  --color--transparent: transparent;
  --color--ffffff-0-8\<deleted\|variable-ea0e88d6-b17f-2739-f692-93f20529180b\>: #d8d0d2;
  --color--black: black;
  --color--background: #000;
  --stroke: #ffffff47;
  --color--divider-color: #a591a4;
  --form-box-shadow: #f2f4f8;
}

.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;
}

body {
  font-family: var(--font--system);
  color: var(--color--1st);
  font-size: 16px;
  line-height: 140%;
}

h1 {
  font-family: var(--font--system);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 600;
  line-height: 130%;
}

h2 {
  color: var(--color--1st);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 140%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 140%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
}

h5 {
  font-family: var(--font--system);
  color: var(--color--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}

h6 {
  font-family: var(--font--system);
  color: var(--color--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

p {
  font-family: var(--font--system);
  color: var(--color--white);
  margin-bottom: 20px;
  line-height: 165%;
}

a {
  color: var(--color--1st);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  color: var(--color--white);
  margin-bottom: 8px;
}

img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.page-wrapper {
  overflow: clip;
}

.container {
  z-index: 10;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.color-white {
  color: var(--color--white);
}

.button-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-image: linear-gradient(to bottom, var(--color--1st), var(--color--1st));
  color: var(--color--white);
  white-space: nowrap;
  border-radius: 999px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 162%;
  transition: all .25s;
  display: inline-flex;
  box-shadow: 0 2px 20px #e0b34147;
}

.button-primary:hover {
  transform: translate(0, -4px);
}

.button-primary._1 {
  background-image: linear-gradient(to bottom, var(--color--3rd), var(--color--3rd));
}

.button-primary._2 {
  background-image: linear-gradient(to bottom, var(--color--2nd), var(--color--2nd));
}

.button-secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--color--white);
  color: var(--color--white);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  padding: 14px 40px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 162%;
  display: inline-flex;
}

.heading-custom-h6 {
  color: var(--color--1st);
  font-size: 22px;
  font-weight: 700;
}

.heading-custom-h6.white {
  color: var(--color--grey);
  font-size: 20px;
}

.success-state {
  color: #027a48;
  background-color: #6ce9a633;
  background-image: url('../images/check-circle.svg');
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #6ce9a6;
  border-radius: 8px;
  padding: 14px 16px 14px 44px;
}

.error-empty-state {
  color: #ff1948;
  background-color: #ffeef1;
  background-image: url('../images/alert-circle.svg');
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #ff1948;
  border-radius: 8px;
  max-width: 100%;
  padding: 14px 16px 14px 44px;
}

.error-empty-state.no-bg {
  background-color: var(--color--transparent);
  color: var(--color--white);
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  border-style: none;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.z-index-up {
  z-index: 1;
  position: relative;
}

.position-absolute {
  pointer-events: auto;
  position: absolute;
  inset: 0%;
}

.position-absolute.center-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-default {
  opacity: .6;
  object-fit: cover;
  object-position: 100% 100%;
  height: 100vh;
}

.button-icon {
  width: 30px;
}

.navbar {
  z-index: 999;
  background-color: var(--color--transparent);
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  left: 0%;
  right: 0%;
}

.section-home-hero {
  justify-content: center;
  align-items: center;
  height: 90vh;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-hero-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.global-gradiant-background {
  color: var(--color--white);
  background-color: #000;
  background-image: linear-gradient(186deg, #12052700, #08021199 75%, #000000d9 90%), url('../images/bgpic.webp');
  background-position: 0 0, 50% 100%;
  position: absolute;
  inset: 0%;
}

.home-hero-column-01 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  flex: 1;
  max-width: 90%;
  display: flex;
}

.home-hero-column-01.color-white {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  display: flex;
}

.home-hero-column-01.left {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: none;
  display: flex;
}

.bottom-margin-small {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 0;
  display: flex;
}

.global-hero-heading {
  color: var(--color--white);
  text-align: center;
  font-size: 70px;
}

.bottom-margin-big {
  margin-bottom: 40px;
  padding-bottom: 0;
}

.bottom-margin-big.display-flex-16px-gap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.padding-primary {
  padding-top: 120px;
  padding-bottom: 120px;
}

.testimonial-card {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #ffffff0d;
  border: 1px #ffffff1a;
  border-radius: 12px;
  padding: 25px 24px;
}

.button-tertiary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--color--1st);
  color: var(--color--1st);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  height: 52px;
  padding: 14px 24px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 162%;
  display: inline-flex;
}

.global-social-icon {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  cursor: pointer;
  display: flex;
}

.fa-font {
  color: var(--color--grey);
  font-family: Fa Solid, sans-serif;
  font-size: 20px;
}

.fa-font:hover {
  color: var(--color--3rd);
}

.global-cta {
  background-color: var(--color--1st);
  position: relative;
}

.cta-heading {
  color: var(--color--white);
  width: 100%;
  max-width: 530px;
  font-size: 40px;
}

.cta-content {
  color: var(--color--ffffff-0-8\<deleted\|variable-ea0e88d6-b17f-2739-f692-93f20529180b\>);
}

.cta-content-wrapper {
  position: relative;
}

.cta-image-left {
  max-width: 288px;
  position: absolute;
  inset: auto auto -54% 0%;
}

.cta-image-right {
  max-width: 234px;
  position: absolute;
  inset: auto -5% -34% auto;
}

.cta-form {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 444px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.cta-email-field {
  border: 1px solid var(--color--white);
  background-color: var(--color--transparent);
  color: var(--color--white);
  border-radius: 8px;
  height: 52px;
  margin-bottom: 0;
  padding: 14px 24px;
  font-size: 16px;
  transition: border-color .4s;
}

.cta-email-field:focus {
  border-color: var(--color--3rd);
}

.cta-email-field::placeholder {
  color: var(--color--white);
}

.footer {
  background-color: var(--color--black);
}

.footer-content-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-logo-wrapper {
  flex-flow: column;
  width: 50%;
}

.footer-menu-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-logo {
  width: 130px;
  max-width: 180px;
}

.margin-y-medium {
  margin-top: 16px;
  margin-bottom: 30px;
}

.footer-menu-list-wrapper.footer-contact-manu-wrapper {
  width: 100%;
  max-width: 340px;
}

.footer-menu-item {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.footer-menu-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--color--1st);
  flex-flow: column;
  display: flex;
}

.nav-link {
  color: var(--color--white);
  white-space: nowrap;
  cursor: pointer;
  padding: 12px 8px;
  line-height: 162%;
}

.copyright-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer-privacy-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--color--black);
  align-items: center;
  display: flex;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-logo {
  max-width: 180px;
}

.bottom-margin-medium {
  margin-bottom: 24px;
  padding-bottom: 0;
  display: inline-block;
}

.section-404-hero {
  margin-left: auto;
  margin-right: auto;
}

._404-hero-heading {
  font-size: 200px;
  font-weight: 500;
  line-height: 100%;
}

._404-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

._404-gradiant {
  background-image: linear-gradient(90deg, var(--color--background) 28%, var(--color--3rd));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

._404-content {
  width: 100%;
  max-width: 454px;
  font-size: 24px;
  font-weight: 500;
  line-height: 134%;
}

.footer-link {
  color: var(--color--grey);
  cursor: pointer;
  padding: 4px 8px;
  font-size: 20px;
  line-height: 162%;
}

.marquee-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-transform: capitalize;
  justify-content: flex-start;
  align-items: center;
  margin-right: 24px;
  font-size: 32px;
  display: flex;
}

.episodes-social-link {
  flex: 1;
}

.button-link-box {
  position: relative;
  overflow: hidden;
}

.button-link-text-absolute {
  font-size: 20px;
  position: absolute;
}

.global-link {
  color: var(--color--1st);
  text-decoration: underline;
}

.text-block {
  -webkit-text-stroke-color: #bee4d4;
}

.footer-cta {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  border-top: 1px solid #220b131a;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 60px;
  display: flex;
}

.footer-cta-title {
  margin-bottom: 16px;
  font-size: 30px;
}

.footer-top {
  color: var(--color--grey);
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-bottom {
  border-top: 1px solid var(--color--ffffff-0-8\<deleted\|variable-ea0e88d6-b17f-2739-f692-93f20529180b\>);
  padding-top: 32px;
  padding-bottom: 32px;
}

.btn-text {
  font-size: 20px;
  font-weight: 400;
}

.text-block-3 {
  color: var(--color--grey);
  font-size: 15px;
}

.text-block-4 {
  font-size: 16px;
}

.image-3 {
  width: 100px;
}

.herosec {
  background-color: var(--color--black);
  padding-top: 140px;
  padding-bottom: 100px;
}

.pageheading {
  color: var(--color--white);
  text-align: center;
}

.sec {
  background-color: var(--color--black);
  padding: 60px 20px;
}

.herotext {
  color: var(--color--white);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading {
  color: var(--color--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 42px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-grid {
  grid-column-gap: 28px;
  grid-row-gap: 30px;
  -webkit-text-stroke-color: var(--stroke);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: grid;
}

.team-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px none var(--stroke);
  text-align: center;
  -webkit-text-stroke-color: var(--color--1st);
  background-image: linear-gradient(#1b1b1b, #30303066);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 22px;
  transition: all .4s;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  width: 100px;
  height: auto;
  margin-bottom: 24px;
}

.featuretitle {
  color: var(--color--white);
  text-align: center;
  margin-bottom: 6px;
  font-size: 26px;
  font-weight: 600;
  line-height: 140%;
}

.team-member-position {
  color: var(--color--white);
  margin-bottom: 24px;
}

.paragraph {
  color: var(--color--white);
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
}

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

.button-secondary-2 {
  color: #fff;
  text-align: center;
  background-color: #ffffff14;
  border-radius: .5rem;
  flex: none;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: transform .25s, opacity .25s;
}

.button-secondary-2:hover {
  opacity: .72;
}

.button-secondary-2:active {
  transform: scale(.98);
}

.button-secondary-2.small {
  border-style: none;
  border-radius: .375rem;
  min-height: 2.5rem;
  padding: .5625rem 1.25rem;
  font-size: .9375rem;
}

.nav-container {
  z-index: 0;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  height: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  position: relative;
}

.actions-wrapper {
  grid-column-gap: .75rem;
  display: flex;
}

.nav-menu-button {
  padding: 0;
}

.nav {
  z-index: 99;
  border: 1px none var(--stroke);
  -webkit-text-fill-color: inherit;
  background-color: #160b1500;
  background-image: linear-gradient(#2c0218, #0000);
  background-clip: border-box;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4.5rem;
  display: flex;
  position: fixed;
  top: 0;
}

.logo-wrapper {
  grid-column-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-link-2 {
  color: #dbdbdb;
  border-radius: .5rem;
  align-items: center;
  min-height: 2.5rem;
  margin-left: .125rem;
  margin-right: .125rem;
  padding: 0 .875rem;
  font-size: .9375rem;
  transition: all .25s;
  display: flex;
}

.nav-link-2:hover {
  opacity: .84;
  color: var(--color--1st);
  background-color: #00000080;
  border-radius: 8rem;
}

.nav-link-2:focus {
  color: var(--color--1st);
}

.nav-link-2.w--current {
  z-index: 1;
  background-color: var(--color--transparent);
  color: #fff;
  border-radius: 8rem;
}

.nav-link-2.w--current:hover {
  opacity: 1;
}

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  align-items: stretch;
  margin-right: -.25rem;
  display: flex;
}

.logo {
  margin-bottom: .25rem;
  padding-left: 0;
  display: inline-block;
  position: static;
}

.logo:hover {
  opacity: .72;
}

.button {
  color: #101211;
  text-align: center;
  background-color: #ffc44d;
  border-radius: .5rem;
  flex: none;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: transform .25s, opacity .25s;
}

.button:hover {
  opacity: .88;
}

.button:active {
  transform: scale(.98);
}

.button.small {
  border-radius: .5rem;
  min-height: 2.5rem;
  padding: .5625rem 1rem;
  font-size: .9375rem;
}

.image-5 {
  width: 60%;
}

.div-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.image-6 {
  width: 100%;
}

.team-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.flex_vertical {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.flex_vertical.gap-large {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.grid_2-col {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_2-col.tablet-1-col.gap-xxlarge {
  grid-row-gap: 24px;
}

.grid_2-col.tablet-1-col.gap-xxlarge.ratio_3x2 {
  grid-row-gap: 12px;
  aspect-ratio: auto;
}

.section {
  background-color: #15191a;
  padding-top: 0;
  padding-bottom: 8rem;
}

.subheading {
  letter-spacing: 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  text-wrap: balance;
  max-width: 1000px;
  margin-bottom: 1.25rem;
  font-size: 1.13rem;
  line-height: 1.6em;
}

.eyebrow {
  letter-spacing: .01em;
  text-transform: uppercase;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.3em;
  display: inline-block;
}

.image_cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 3rem;
  display: flex;
}

.card {
  color: #dae4e5;
  background-color: #15191a;
  border: 1px solid #dae4e533;
  border-radius: .75rem;
  flex-flow: row;
  flex: 0 auto;
  list-style-type: none;
  overflow: hidden;
}

.card.card_body.margin-top_large {
  height: auto;
  margin-top: 4rem;
}

.ix_sticky-card {
  position: sticky;
  top: 0;
}

.container-3 {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.drama-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--stroke);
  text-align: center;
  -webkit-text-stroke-color: var(--color--1st);
  background-image: linear-gradient(#000, #38383866);
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  font-size: 14px;
  line-height: 22px;
  transition: all .4s;
  display: flex;
}

.drama-card:hover {
  border-color: var(--color--1st);
  box-shadow: 0 0 40px 3px #fe5e2480;
}

.drama-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.drama-pic {
  border-radius: 16px;
  width: 70%;
}

.tag {
  color: var(--color--white);
  text-transform: capitalize;
  font-size: 10px;
  line-height: 14px;
}

.tag-group {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.tag-item {
  background-color: #ffffff29;
  border-radius: 20px;
  padding: 4px 10px;
}

.drama-grid {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  -webkit-text-stroke-color: var(--stroke);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: grid;
}

.sheet {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--color--divider-color);
  grid-template-rows: auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

.sheet._3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.sheet-block {
  border: 1px solid var(--color--divider-color);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
}

.sheet-text {
  color: var(--color--white);
  font-size: 14px;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
}

.overflow-hidden.border-radius-10px {
  border-radius: 10px;
}

.featured-categories-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  display: grid;
}

.episode-image-wrapper {
  height: 100%;
  position: relative;
}

.image-scale-for-animation {
  width: 100%;
  height: 100%;
}

.heading-custom-h6-2 {
  color: #030029;
  font-family: Exo, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.author-image {
  object-fit: cover;
  height: 100%;
}

.text-block-2 {
  font-size: 18px;
}

.global-episode-card {
  display: block;
}

.date-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  color: #707070;
  align-items: center;
  display: flex;
}

.episode-info-wrapper {
  color: #030029;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  padding-right: 0;
  display: flex;
}

.margin-y-small {
  margin-top: 4px;
  margin-bottom: 12px;
}

.about-host-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  display: flex;
}

.about-host-column-01 {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 50%;
  display: flex;
}

.global-section-caption {
  color: #ff426f;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Droid Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
}

.meet-host-content {
  font-size: 18px;
  line-height: 165%;
}

.about-host-column-02 {
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  display: flex;
}

.image {
  width: 42%;
}

.image-7, .image-8 {
  width: 24px;
}

@media screen and (min-width: 1280px) {
  .button-primary {
    transition: all .225s;
  }

  .home-hero-wrapper {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    flex-flow: wrap;
  }

  .herosec {
    background-color: var(--color--black);
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 100px;
    display: flex;
  }

  .pageheading {
    color: var(--color--white);
  }

  .sec {
    padding: 100px 20px;
  }
}

@media screen and (min-width: 1440px) {
  .team-member-image {
    max-height: none;
  }
}

@media screen and (min-width: 1920px) {
  .content-align-center {
    justify-content: flex-start;
    align-items: center;
  }

  .z-index-up {
    justify-content: center;
    align-items: center;
  }

  ._404-wrapper {
    width: 100vw;
    height: 100vh;
  }

  .sheet-block {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 116%;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }

  .button-primary, .button-secondary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .heading-custom-h6 {
    flex-flow: wrap;
    display: flex;
  }

  .section-home-hero {
    height: auto;
  }

  .home-hero-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .home-hero-column-01 {
    max-width: 90%;
  }

  .global-hero-heading {
    font-size: 40px;
  }

  .bottom-margin-big {
    margin-bottom: 24px;
  }

  .padding-primary {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .testimonial-card {
    padding: 16px;
  }

  .button-tertiary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-image-left {
    max-width: 28%;
    display: none;
    bottom: -35%;
    left: -6%;
  }

  .cta-image-right {
    max-width: 32%;
    display: none;
  }

  .footer-content-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    align-items: center;
  }

  .footer-logo-wrapper {
    align-items: center;
    display: flex;
  }

  .footer-menu-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 24px;
  }

  .copyright-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
  }

  ._404-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-extra {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .footer-link {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .marquee-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-right: 20px;
    font-size: 28px;
  }

  .footer-cta {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .footer-top {
    padding-top: 80px;
  }

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

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .menu-icon-line-top {
    background-color: #fff;
    border-radius: .0625rem;
    width: 2rem;
    height: .15625rem;
    margin-bottom: .25rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .button-secondary-2 {
    position: relative;
  }

  .menu-icon-line-bottom {
    background-color: #fff;
    border-radius: .0625rem;
    width: 2rem;
    height: .15625rem;
    margin-top: .25rem;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .actions-wrapper {
    align-items: center;
  }

  .nav-menu-button {
    flex-direction: row;
    justify-content: center;
    margin-left: 1rem;
    margin-right: -.5rem;
    padding: 0;
    display: flex;
  }

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

  .nav-link-2 {
    margin: .25rem 0;
  }

  .nav-menu {
    background-color: #101211;
    border-bottom: .0625rem solid #2e3130;
    align-items: flex-start;
    width: 100vw;
    min-width: 100vw;
    margin-right: 0;
    padding: 1rem 3.125rem 2rem;
  }

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .button {
    position: relative;
  }

  .div-block {
    flex-flow: column;
  }

  .flex_vertical.gap-large {
    justify-content: flex-end;
    align-items: stretch;
  }

  .grid_2-col.tablet-1-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .subheading {
    font-size: 1.13rem;
  }

  .eyebrow {
    font-size: .9rem;
  }

  .drama-grid {
    grid-column-gap: 40px;
  }

  .heading-custom-h6-2 {
    flex-flow: wrap;
    display: flex;
  }

  .about-host-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .about-host-column-01, .about-host-column-02 {
    max-width: none;
  }

  .image {
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    line-height: 110%;
  }

  .home-hero-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .home-hero-column-01 {
    flex: 0 auto;
    max-width: 100%;
  }

  .home-hero-column-01.color-white, .home-hero-column-01.left {
    flex: 0 auto;
  }

  .padding-primary {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .footer-menu-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
    place-content: stretch center;
  }

  .nav-link {
    font-size: 18px;
  }

  .copyright-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-privacy-wrapper {
    order: -1;
  }

  ._404-hero-heading {
    font-size: 150px;
  }

  .navbar-button-primary {
    display: none;
  }

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

  .marquee-item {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-right: 16px;
    font-size: 24px;
  }

  .episodes-social-link {
    white-space: nowrap;
    flex: 0 auto;
  }

  .footer-cta {
    margin-bottom: 24px;
    padding-top: 24px;
  }

  .footer-cta-title {
    font-size: 24px;
  }

  .footer-top {
    padding-top: 60px;
  }

  .team-slider, .team-circles {
    padding: 60px 15px;
  }

  .team-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .featuretitle {
    font-size: 28px;
  }

  .paragraph {
    font-size: 18px;
  }

  .image-4 {
    width: 70%;
  }

  .logo-wrapper {
    display: flex;
  }

  .nav-link-2.w--current {
    background-position: 0%;
  }

  .nav-menu {
    -webkit-backdrop-filter: blur(.375rem);
    backdrop-filter: blur(.375rem);
    background-color: #101211;
    border-right: .0625rem solid #202221;
    margin-right: 0;
  }

  .flex_vertical.gap-large {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .grid_2-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .subheading {
    font-size: 1.1rem;
  }

  .eyebrow {
    font-size: .8rem;
  }

  .header {
    margin-bottom: 2rem;
  }

  .drama-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .featured-categories-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .episode-image-wrapper {
    height: auto;
  }

  .about-host-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .about-host-column-01 {
    flex: 0 auto;
    max-width: 100%;
  }

  .about-host-column-02 {
    max-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 35px;
    line-height: 120%;
  }

  h2 {
    font-size: 30px;
    line-height: 118%;
  }

  h3 {
    font-size: 28px;
    line-height: 118%;
  }

  h4 {
    font-size: 24px;
    line-height: 118%;
  }

  h5 {
    font-size: 20px;
    line-height: 118%;
  }

  h6 {
    font-size: 18px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-primary, .button-secondary {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .form {
    flex-flow: wrap;
  }

  .button-container {
    width: 100%;
  }

  .section-home-hero {
    height: auto;
    padding-top: 80px;
  }

  .home-hero-column-01.color-white {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
  }

  .home-hero-column-01.left {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .global-hero-heading {
    text-align: center;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
  }

  .padding-primary {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button-tertiary {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .footer-content-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-logo-wrapper {
    max-width: 100%;
  }

  .footer-menu-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 30px;
  }

  ._404-hero-heading {
    font-size: 100px;
    line-height: 80%;
  }

  ._404-content {
    font-size: 20px;
    line-height: 118%;
  }

  .navbar-button-primary {
    display: none;
  }

  .marquee-item {
    font-size: 20px;
  }

  .footer-top {
    padding-top: 40px;
  }

  .btn-text {
    font-size: 16px;
  }

  .sec {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

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

  .team-member-image {
    width: 70px;
  }

  .featuretitle {
    font-size: 24px;
  }

  .paragraph {
    text-align: center;
  }

  .button-secondary-2 {
    font-size: 1rem;
  }

  .button-secondary-2.small.hide-mobile-portrait {
    display: none;
  }

  .nav-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .nav-menu {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }

  .button {
    font-size: 1rem;
  }

  .button.small.hide-mobile-portrait {
    display: none;
  }

  .div-block {
    flex-flow: column;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .subheading {
    margin-bottom: .25rem;
    font-size: 1.1rem;
  }

  .eyebrow {
    font-size: .8rem;
  }

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

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

  .featured-categories-wrapper {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}

#w-node-_59655335-3dd9-10a6-6a50-1bcf3c7cab0a-fcdcf32d {
  justify-self: center;
}

#w-node-_59655335-3dd9-10a6-6a50-1bcf3c7cab13-fcdcf32d {
  justify-self: end;
}

#w-node-d0858b31-b4a1-41a2-6c2d-6b37552738f9-fcdcf32d, #w-node-d0858b31-b4a1-41a2-6c2d-6b3755273904-fcdcf32d, #w-node-ddcccb55-bd9c-2031-9fb4-90c8db8274f4-fcdcf32d, #w-node-d0858b31-b4a1-41a2-6c2d-6b375527390e-fcdcf32d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7515ac1d-32ed-beee-35e9-eb3ec737c5b7-fcdcf32f, #w-node-_884ea2dc-3b82-11b7-acfd-a7662def65da-fcdcf32f, #w-node-_051da465-8144-e61d-3a59-c38fcd108db4-fcdcf32f, #w-node-_7fbf8192-47eb-4ab8-9352-66e3e80d5394-fcdcf32f, #w-node-_26aab763-674a-5695-3cc6-77f2ab74b4ee-fcdcf32f, #w-node-a0c65ef1-cb81-7028-9da5-69395e33003e-fcdcf32f, #w-node-_5de94cbd-c5c0-f0b2-b9ad-28255c8cf639-fcdcf32f, #w-node-_65076acb-9731-740d-3afe-bb7828181951-fcdcf32f, #w-node-_371fb60f-be25-ce78-fee7-318d654d9c7f-fcdcf32f, #w-node-_780d98d9-c244-4648-25f6-d274c19a3bda-fcdcf32f, #w-node-_32620554-49df-3b8e-9a68-515494d4980d-fcdcf32f, #w-node-_6b696ce7-a056-38de-7ef8-6602ebf271ae-fcdcf32f, #w-node-_92b4390e-bcfc-70c0-6823-eb7e38c217a3-fcdcf32f, #w-node-a9b694cc-6b62-a044-cfcd-9dd5ba1db7ab-fcdcf32f, #w-node-dd583019-1199-99a7-4b0e-2d9effb44250-fcdcf32f, #w-node-_8b7f2edf-26bb-794e-f821-d8b5ed659cde-fcdcf32f, #w-node-cbb0ba51-7d65-dcb4-513a-c60adf47ef31-fcdcf32f, #w-node-_306c569b-7557-bcee-4d18-02129f98ae99-fcdcf32f, #w-node-_9e2a68b4-5cef-19ee-971a-e8af9d5c9706-fcdcf32f, #w-node-bbac3a33-8fa6-d9d6-c140-da55efc8dd04-fcdcf32f, #w-node-_16544879-b4a0-250b-90f9-38ea6cc4208e-fcdcf32f, #w-node-_8bc7ea8f-8968-d817-fa09-d1c9d8329676-fcdcf32f, #w-node-b3c2dba6-8694-b3c8-8f96-ff5a02de6d2a-fcdcf32f, #w-node-_78d2ab43-4e41-bd20-2715-8b9983b1e2fe-fcdcf32f, #w-node-a905aa58-88c6-dbce-9577-7a659af79bf1-fcdcf32f, #w-node-_378736d8-bc59-081c-4d73-5548004a97fa-fcdcf32f, #w-node-bdbf4c60-edf3-8619-1fea-e2d4e5c9dd9d-fcdcf32f, #w-node-_6490712e-15ee-2dd5-6a3d-5b426b6b2dc1-fcdcf32f, #w-node-_3a835709-70b1-96e6-66b3-2be83507bf09-fcdcf32f, #w-node-_8405ef24-db9e-28ec-0ca7-17027acc92bf-fcdcf32f, #w-node-_1ac0524c-b0d7-0294-f547-08b66221c24b-fcdcf32f, #w-node-_7f171139-cd35-25fa-422d-06c01230851d-fcdcf32f, #w-node-_1a75e595-4693-64fc-ea51-f5b2dd6dc3b4-fcdcf32f, #w-node-c778c77c-3567-3769-3fcb-0a65c1331fc9-fcdcf32f, #w-node-f38e0382-34de-db29-ba2b-41f2c49a1e45-fcdcf32f, #w-node-_4f246048-23aa-bea7-775d-b9e7301c9c1b-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819170-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819174-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819178-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b81917c-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b81917f-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819186-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819189-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819190-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b819193-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b81919a-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b81919d-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b8191a4-fcdcf32f, #w-node-_29d0faef-a886-5f4e-d7f7-e3c40b8191a7-fcdcf32f, #w-node-aa195aae-377c-ba28-f27c-c4e4d80d5d6c-fcdcf32f {
  place-self: auto;
}

@media screen and (min-width: 1440px) {
  #w-node-d0858b31-b4a1-41a2-6c2d-6b3755273904-fcdcf32d, #w-node-ddcccb55-bd9c-2031-9fb4-90c8db8274f4-fcdcf32d, #w-node-d0858b31-b4a1-41a2-6c2d-6b375527390e-fcdcf32d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d0858b31-b4a1-41a2-6c2d-6b37552738f9-fcdcf32d, #w-node-d0858b31-b4a1-41a2-6c2d-6b375527390e-fcdcf32d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../images/') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}