@font-face {
  font-family: Ppeditorialnew;
  src: url('../fonts/fonnts.com-PP_Editorial_New_Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppeditorialnew;
  src: url('../fonts/PPEditorialNew-Regular-BF644b214ff145f.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemontreal;
  src: url('../fonts/NeueMontreal-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemontreal;
  src: url('../fonts/NeueMontreal-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neuemontreal;
  src: url('../fonts/NeueMontreal-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --light: #e7e7e5;
  --primary: #052bc7;
}

body {
  background-color: var(--light);
  color: var(--primary);
  font-family: Neuemontreal, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

h1 {
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppeditorialnew, Arial, sans-serif;
  font-size: 20vw;
  font-weight: 300;
  line-height: .8;
}

p {
  margin-bottom: 0;
  font-size: 1.875rem;
}

a {
  text-decoration: underline;
}

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

.header {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding-bottom: 2rem;
  display: flex;
}

.heading-holder {
  position: relative;
}

.symbol {
  border: 6px solid var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 9.25rem;
  height: 9.25rem;
  display: flex;
  position: absolute;
  inset: -9rem 1vw auto auto;
}

.character {
  width: 6rem;
  font-family: Neuemontreal, Arial, sans-serif;
}

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

.text-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  max-width: 56rem;
  display: flex;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.footer-wrap {
  border-top: 1px solid var(--primary);
  justify-content: space-between;
  align-items: center;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  display: flex;
}

.fo-links {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fo-link {
  font-size: 1.5rem;
  text-decoration: none;
  transition: all .35s ease-in-out;
}

.fo-link:hover {
  opacity: .7;
}

.nav {
  background-color: #ddd0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  inset: 0% 0% auto;
}

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

.nav-buttons {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: #3898ec00;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 1.75rem;
  transition: all .35s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.button:hover {
  background-color: var(--primary);
  color: var(--light);
}

.brand-w {
  font-size: 1.5rem;
  font-weight: 700;
}

.bold-text {
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 19vw;
  }

  p {
    font-size: 1.8rem;
  }

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

  .header {
    height: 100svh;
    padding-bottom: 4rem;
  }

  .symbol {
    border-width: 4px;
  }

  .text-grid {
    max-width: none;
  }

  .fo-link {
    font-size: 1.6rem;
  }

  .nav-buttons {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .button {
    height: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 2rem;
  }

  .brand-w {
    font-size: 2rem;
  }

  .menu-button {
    padding: 0;
  }

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

  .m-line {
    background-color: var(--primary);
    width: 24px;
    height: 2px;
  }

  .m-line-2 {
    background-color: var(--primary);
    width: 24px;
    height: 2px;
    margin-top: 5px;
  }

  .nav-menu {
    background-color: var(--light);
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .symbol {
    border-width: 2px;
    width: 5rem;
    height: 5rem;
    top: -5rem;
    right: 0;
  }

  .character {
    width: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header {
    padding-bottom: 1.5rem;
  }

  .fo-links {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .button {
    height: 3.2rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.7rem;
  }
}


@font-face {
  font-family: 'Ppeditorialnew';
  src: url('../fonts/fonnts.com-PP_Editorial_New_Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppeditorialnew';
  src: url('../fonts/PPEditorialNew-Regular-BF644b214ff145f.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}