:root {
  --black: #191b22;
  --brand: #31999E;
  --white: white;
  --alice-blue: #f5fbfc;
  --slate-grey: #444;
  --light-grey: #c8c8c8;
  --overlay: #0006;
}

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

.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 {
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 20px;
}

h1 {
  color: var(--black);
  letter-spacing: -.03em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--brand);
  letter-spacing: -.03em;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.6rem;
}

.h2--black {
  color: black;
}

.h2--home {
  color: black;
  font-size: 3rem;
  line-height: 3.4rem;
}

.h2--contact {
  color: black;
  font-size: 1.3rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

h3 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2rem;
}

.h3--brand {
  color: var(--brand);
}

h4 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

h5 {
  color: #08090a;
  letter-spacing: -.03em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

h6 {
  color: #08090a;
  letter-spacing: -.03em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

p {
  color: #444;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6rem;
}

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

li {
  color: #444;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6rem;
}

.li--hours {
  color: #444;
  letter-spacing: -.02em;
  font-size: 1rem;
  line-height: 1rem;
  list-style: none;
  padding-left: 0px;
}

.bold {
  font-weight: 700;
}

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

.banner {
  background-color: var(--brand);
  color: #fff;
  background-image: url('../images/Banner-Wave.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  padding: 5px 3%;
  font-size: 15px;
  display: flex;
}

.banner-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  display: flex;
}

.nav-link {
  opacity: .8;
  color: #28224b;
  text-transform: none;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: 1;
  color: #28224b;
}

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

.navigation-container {
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 40px;
}

.navbar {
  background-color: #fff;
  align-items: center;
  padding: 30px 3%;
  display: flex;
}

.navigation-right, .navigation-left {
  align-items: center;
  display: flex;
}

.nav-menu {
  margin-right: 14px;
}

.hero-paragraph {
  color: var(--alice-blue);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.34;
}

.button {
  background-color: var(--brand);
  text-align: center;
  background-image: url('../images/Button-Wave.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  min-height: 60px;
  padding: 20px 35px 0;
  font-size: 18px;
  font-weight: 600;
  transition: background-color .25s;
}

.button:hover {
  background-color: #2faeb4;
}

.button.phone {
  min-height: 40px;
  margin-top: 5px;
  margin-left: 5px;
  padding: 14px 20px 15px;
  font-size: 16px;
  font-weight: 600;
}

.button.small {
  min-height: 50px;
  margin-top: 10px;
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.container-flex {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.hero-h1 {
  color: var(--white);
  letter-spacing: -.03em;
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 3.8rem;
  line-height: 4rem;
}

.button-wrapper {
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer {
  background-color: var(--alice-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 3% 10px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.content-section {
  background-color: #0000;
  padding-top: 40px;
  padding-left: 3%;
  padding-right: 3%;
  position: static;
  top: 60vh;
}

.content-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  margin-bottom: 100px;
}

.content-block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.image-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-2 {
  border-radius: 40px;
}

.services-intro {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 670px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.services-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .3fr 1fr;
}

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

.service-2-image {
  border-radius: 20px;
  margin-bottom: 40px;
}

.cta-grid {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  grid-template-rows: auto;
  min-height: 640px;
}

.cta-image {
  background-image: url('../images/welcome-to-amann-dental.jpg');
  background-position: 50%;
  background-size: cover;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.cta-content {
  background-color: var(--brand);
  border-radius: 0 30px 30px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 25px 60px;
  display: flex;
}

.cta-section {
  padding: 3%;
}

.footer-legal {
  border-top: 1px solid var(--light-grey);
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 60px;
  padding-top: 60px;
  display: flex;
  color: #353448;
  font-size: .75rem;
  line-height: 1.5;
}

.social-icon {
  width: 3rem;
}

.link {
  color: var(--brand);
}

.button-white {
  background-color: var(--brand);
  text-align: center;
  background-image: url('../images/Button-Wave.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  min-height: 60px;
  padding: 20px 35px;
  font-size: 18px;
  transition: background-color .25s;
}

.button-white.button-space {
  color: var(--brand);
  background-color: #fff;
  border-radius: 10px;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
}

.cta-heading {
  color: #fff;
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.paragraph {
  color: #333;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
}

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

.line-column {
  justify-content: center;
  align-items: center;
  padding-bottom: 140px;
  display: flex;
}

.line {
  border: 1.3px #d1cdcd;
  border-top-style: dashed;
  width: 100%;
  height: 1px;
}

.header-section {
  background-color: var(--alice-blue);
  justify-content: center;
  align-items: center;
  min-height: 100px;
  padding: 40px 3%;
  display: flex;
}


.list {
  margin-top: 15px;
  margin-bottom: 15px;
}

.content-section-short {
  padding: 30px 8%;
  position: relative;
}

.f-container-regular {
  width: 100%;
  max-width: 1200px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-paragraph-small {
  letter-spacing: -.01em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.f-margin-bottom-08 {
  margin-bottom: 8px;
}

.f-image-cover {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.f-paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.f-paragraph-regular.f-text-weight-medium {
  font-weight: 500;
}

.f-heading-detail-small {
  color: var(--brand);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.f-team-detail-wrapper {
  flex-direction: column;
  display: flex;
}

.f-team-image-tall {
  background-color: #f3f5fb;
  border-radius: 16px;
  height: 400px;
  position: relative;
}

.f-team-title-wrapper-left {
  max-width: 500px;
  margin-bottom: 48px;
}

.f-text-weight-medium {
  font-weight: 500;
}

.f-team-card-small {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
  display: flex;
  position: relative;
  box-shadow: 40px 20px 80px 10px #393b6a14;
}

.f-team-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.f-team-card-wrapper {
  margin-top: -64px;
}

.image {
  border-radius: 30px;
}

.hero-button {
  background-color: var(--brand);
  text-align: center;
  background-image: url('../images/Button-Wave.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  min-height: 60px;
  padding: 20px 35px;
  font-size: 18px;
  transition: background-color .25s;
}

.hero-button:hover {
  background-color: #2faeb4;
}

.slide-1 {
  background-image: linear-gradient(#0000, #0b3b6ee5), url('../images/hero-amann-dental-chair.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide-2 {
  background-image: linear-gradient(#fff0, #0b3b6ee5), url('../images/hero-amann-dental-office.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide-3 {
  background-image: linear-gradient(#fff0, #0b3b6ee5), url('../images/spearfish-dentist.jpg');
  background-position: 0px 0px, 75% 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slider {
  height: 100%;
}

.hero-text {
  z-index: 1;
  float: none;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: 20vh 0% auto;
}

.body {
  height: 100%;
}

.background {
  z-index: 1;
  width: 100%;
  height: 60vh;
  position: absolute;
}

.foreground {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.services {
  clear: none;
  position: static;
  top: 65vh;
}

.homepage {
  position: relative;
  top: 65vh;
}

.footer-details {
  color: #444;
  font-size: 1rem;
}

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

.hero-button-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.columns {
  display: block;
}

.divider-black {
  border-bottom: 1px dashed var(--light-grey);
  width: 100%;
  height: 1px;
}

.content-image-wrapper {
  border: 4px #000;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.content-feature {
  border-bottom: 1px solid var(--light-grey);
  flex: none;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.content-right {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  display: flex;
}

.overline-regular {
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.wrap-v-small {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.container-large {
  width: 100%;
  max-width: 1280px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-regular {
  padding: 40px 5% 0px;
}

.wrap-v-large {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.content-grid-large {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.image-cover {
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  object-position: 50% 50%;
  background-clip: border-box;
  width: 100%;
  height: 100%;
}

.content-left {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.content-features-list {
  grid-column-gap: 40px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto auto;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}

.div-block {
  border-bottom: 1px dashed var(--light-grey);
  margin-bottom: 30px;
  padding-bottom: 30px;
  margin-left: 0;
}

.image-4 {
  border-radius: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .nav-link {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 32px;
  }

  .nav-link.w--current {
    padding-left: 32px;
  }

  .icon {
    display: block;
  }

  .navbar {
    z-index: 5;
    background-color: #0000;
    width: 100%;
    display: flex;
  }

  .navigation-right {
    flex-direction: row-reverse;
  }

  .menu-button {
    background-color: #7e828f1a;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    min-width: 55px;
    min-height: 55px;
    margin-left: 14px;
    margin-right: 0;
    padding: 16px;
    display: flex;
  }

  .nav-menu {
    background-color: #fff;
    margin-right: 0;
    box-shadow: 0 50px 80px -30px #35344833;
  }

  .button {
    margin-bottom: 60px;
  }

  .button.phone {
    float: left;
    text-align: left;
    margin-bottom: 40px;
    margin-left: 32px;
    padding-top: 15px;
    position: relative;
  }

  .container-flex {
    flex-wrap: wrap;
  }

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

  .container {
    color: #444;
    width: 90%;
    max-width: 1200px;
  }

  .content-section {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .content-grid {
    grid-row-gap: 80px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .content-block {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    grid-row-gap: 32px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .cta-image {
    min-height: 420px;
  }

  .cta-content {
    min-height: 420px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .cta-heading {
    font-size: 55px;
  }

  .line-column {
    flex-direction: column;
    padding-bottom: 0;
  }

  .line {
    border-style: none dashed none none;
    width: 1px;
    height: 100%;
    min-height: 50px;
  }

  .f-image-cover {
    object-position: 50% 10%;
  }

  .f-team-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .hero-text {
    max-width: 700px;
  }

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

  .content-image-wrapper {
    max-height: 350px;
  }

  .content-right {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

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

@media screen and (max-width: 767px) {
  .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  .nav-link.w--current {
    padding-left: 40px;
  }

  .button.phone {
    float: left;
    text-align: left;
    margin-right: auto;
    position: relative;
  }

  .button-wrapper {
    flex-direction: column;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .cta-image {
    background-image: url('../images/welcome-to-amann-dental.jpg');
    background-position: 50%, 50%;
    background-repeat: repeat, no-repeat;
    background-size: cover, cover;
  }

  .f-container-regular {
    width: 90%;
  }

  .f-image-cover {
    object-fit: cover;
    object-position: 50% 10%;
  }

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

  .hero-text {
    padding-left: 2rem;
    padding-right: 5rem;
  }

  .hero-button-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {

  .banner {
    display: none;
  }
  h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .h2--home {
    color: black;
    font-size: 2.8rem;
    line-height: 3rem;
    margin-top: 3rem;
  }

  .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  .nav-link.w--current {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navigation-container {
    background-color: var(--white);
  }

  .navbar {
    background-color: #fff;
    position: absolute;
  }

  .button {
    width: 100%;
    max-width: 250px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button.phone {
    float: left;
    vertical-align: baseline;
    border-radius: 10px;
    width: auto;
    max-width: none;
    margin: 20px auto 40px 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: inline-block;
    position: relative;
    overflow: visible;
  }

  .hero-h1 {
    font-size: 4rem;
    line-height: 4.2rem;
  }

  .container {
    width: auto;
    margin-bottom: auto;
    padding-left: 5%;
    padding-right: 5%;
  }

  .footer {
    padding-top: 60px;
  }

  .content-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .content-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .services-grid {
    grid-row-gap: 30px;
    max-width: none;
  }

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

  .service-2-image {
    margin-bottom: 20px;
  }

  .cta-image {
    background-position: 25% 30%;
    background-size: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 0;
    min-height: 420px;
  }

  .cta-content {
    border-top-right-radius: 0;
    border-bottom-left-radius: 30px;
    padding: 20px;
  }

  .cta-section {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .social-icon {
    width: 32px;
  }

  .button-white {
    width: 100%;
    max-width: 250px;
  }

  .button-white.button-space {
    margin-top: 10px;
  }

  .cta-heading {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 36px;
  }

  .line-column {
    line-height: 20px;
  }

  .header-section {
    text-align: center;
    min-height: 240px;
    padding: 100px 10% 0;
  }

  .f-image-cover {
    object-fit: cover;
    object-position: 50% 0%;
    position: static;
  }

  .f-team-card-small {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-button {
    flex: 0 auto;
    width: 100%;
    max-width: 250px;
  }

  .hero-text {
    padding-left: 8%;
    padding-right: 10%;
  }

  .background {
    height: 75%;
  }

  .hero {
    position: static;
  }

  .homepage {
    top: 75vh;
  }

  .footer-details {
    color: #444;
    margin-bottom: 40px;
  }

  .grid-footer {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    justify-content: stretch;
    place-items: stretch start;
    display: block;
  }

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

  .content-features-list {
    grid-template-columns: 1fr;
  }
}

#w-node-a43bcc98-46b9-4086-8b50-ec2228446fda-e91d0f3f, #w-node-a43bcc98-46b9-4086-8b50-ec2228446fe8-e91d0f3f, #w-node-a43bcc98-46b9-4086-8b50-ec2228446ff6-e91d0f3f, #w-node-e8e3f4bb-c469-0a4d-fc59-457ed60e474d-e91d0f3f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2f42de3-d18c-fe64-de09-e389235f3c63-e91d0f45, #w-node-e2f42de3-d18c-fe64-de09-e389235f3c65-e91d0f45, #w-node-e2f42de3-d18c-fe64-de09-e389235f3c67-e91d0f45 {
  justify-self: start;
}

#gen-dentist-svc, #gen-dentist-svc-txt, #w-node-eba09410-4efa-e8f2-044f-f15f244dd5db-3617b50f, #dental-hygiene-img, #dental-hygiene-txt, #w-node-c356c3b2-18dd-5d54-d238-b57971391477-3617b50f, #dental-partner-img, #dental-partner-txt, #w-node-ebe2996a-03e6-c9fb-94e2-f2cda495be88-3617b50f, #t1-img, #t2-imgb, #t3-img, #t4-img, #t5-img, #t6-img, #t7-img, #t8-img {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #drj-txt, #dre-txt {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #dre-txt {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #drj-img {
    order: -9999;
  }

  #dre-txt {
    order: 9999;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}