@font-face {
  font-family: Orbitron Variablefont Wght;
  src: url('../fonts/Orbitron-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Redig;
  src: url('../fonts/Redig-Regular.ttf') format("truetype");
  font-weight: 400;
  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;
}

@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-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --fonts--neue-montreal: Neuemontreal, Arial, sans-serif;
  --colors--eerie-black: #252525;
  --section-margins--up-down: 80px;
  --section-margins--left-right: 60px;
  --colors--primary: #f97643;
  --colors--light-white: #dbe0dc;
  --sizes--max-width: 1440px;
  --colors--white: white;
  --border-radiuses--normal: 12px;
  --colors--secondary: #284435;
  --fonts--orbitron: "Orbitron Variablefont Wght", Impact, sans-serif;
  --fonts--redig: Redig, "Times New Roman", sans-serif;
  --colors--black: black;
  --colors--transparent: transparent;
  --colors--dark-eerie-black: #121212;
  --colors--saddle-brown: #863f15;
  --border-radiuses--small: 3.3px;
}

body {
  font-family: var(--fonts--neue-montreal);
  color: var(--colors--eerie-black);
  font-size: 14px;
  line-height: 20px;
  overflow-x: hidden;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.body-wrapper {
  width: 100vw;
  min-height: 100vh;
  position: relative;
}

.section {
  padding: var(--section-margins--up-down) var(--section-margins--left-right);
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.hero {
  height: 100vh;
  max-height: 850px;
  padding-right: 0;
}

.section.ribbon {
  background-color: var(--colors--primary);
  padding: 40px 0;
}

.section.about {
  padding: 0;
  overflow: visible;
}

.section.section-faqs {
  display: block;
}

.section.section-form {
  background-color: var(--colors--light-white);
  padding-top: 30px;
  padding-bottom: 0;
  padding-left: 0;
}

.section.footer {
  background-color: var(--colors--eerie-black);
  padding-top: 40px;
  padding-bottom: 20px;
}

.container {
  z-index: 3;
  max-width: var(--sizes--max-width);
  flex-flow: column;
  width: 100%;
  position: relative;
}

.container.hero {
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.container.ribbon {
  max-width: 1440px;
}

.container.about {
  grid-column-gap: 0%;
  grid-row-gap: 0%;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  max-width: none;
  display: flex;
}

.container.container-faqs {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.container-form {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.container.footer {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.navbar-menu-btn-div {
  display: none;
}

.navbar-menu-div {
  justify-content: center;
  align-items: center;
  height: 65px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar-logo-wrap {
  z-index: 999;
  text-decoration: none;
}

.navbar-link-img {
  width: 100%;
  height: 30px;
  position: absolute;
  inset: auto 0% -12px;
}

.navbar-link-img._2 {
  display: none;
  transform: translate(0, 100%);
}

.navbar-link-text {
  font-family: var(--fonts--neue-montreal);
  color: var(--colors--white);
  font-size: 20px;
  line-height: 28px;
  transition: all .2s;
}

.navbar-link-text:hover {
  color: var(--colors--primary);
}

.navbar-logo-img {
  width: 85px;
}

.navbar-menu-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: var(--border-radiuses--normal);
  background-color: var(--colors--eerie-black);
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.navbar-main {
  z-index: 1000;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  position: fixed;
  inset: 1rem 0% auto;
}

.navbar-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-radius: var(--border-radiuses--normal);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #fff9;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  display: flex;
  box-shadow: 0 0 8px 3px #ffffff4d;
}

.button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: var(--border-radiuses--normal);
  background-color: #f97643;
  justify-content: center;
  align-items: center;
  height: 65px;
  padding: 15px 15px 15px 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-primary.mob-visible {
  display: none;
}

.button-primary.submit {
  color: var(--colors--eerie-black);
  width: 150px;
  height: 50px;
  margin-top: 30px;
  padding-left: 15px;
  font-size: 20px;
}

.button-primary.submit.footer {
  margin-top: 20px;
}

.primary-paragraph {
  font-family: var(--fonts--neue-montreal);
  color: #252525;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}

.btn-arrow-div {
  border-radius: var(--border-radiuses--normal);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 4px;
  display: flex;
  position: relative;
}

.btn-arrow-div.white {
  background-color: #fff;
}

.btn-arrow-img {
  width: 16px;
}

.auto-center {
  margin-left: auto;
  margin-right: auto;
}

.hero-content-wrapper {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 660px;
  display: flex;
}

.main-heading {
  font-size: 60px;
  line-height: 96%;
}

.orange {
  color: var(--colors--primary);
}

.hero-img-div {
  z-index: 1;
  width: 600px;
  position: absolute;
  inset: auto 0% -13% auto;
}

.hero-green-bar {
  background-color: var(--colors--secondary);
  width: 100%;
  height: 135px;
  position: absolute;
  inset: auto 0% 0%;
}

.carousel {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  will-change: transform;
  display: flex;
}

.carousel-slide {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.orbitron {
  font-family: var(--fonts--orbitron);
}

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

.about-img-div {
  background-image: url('../images/about-us.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}

.about-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.about-heading-div {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.about-paragraph-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  padding-left: 30px;
  padding-right: 40px;
  display: flex;
}

.about-btn-div {
  padding-left: 30px;
}

.medium {
  font-weight: 500;
}

.medium.about-heading {
  padding-left: 30px;
  padding-right: 30px;
}

.about-heading-green-div {
  background-color: var(--colors--secondary);
  width: 100%;
  padding: 10px 40px 10px 30px;
}

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

.secondary-heading {
  font-size: 48px;
  line-height: 96%;
}

.faqs-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  display: flex;
}

.about-decor-img {
  height: 30%;
  position: absolute;
  inset: auto 0% -10% auto;
}

.faqs-heading-div {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.faq {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.faq-question-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: var(--border-radiuses--normal);
  background-color: var(--colors--primary);
  justify-content: flex-start;
  align-items: flex-end;
  padding: 8px 25px;
  display: flex;
}

.faq-answer-div {
  padding: 5px 20px;
}

.form-heading-div {
  padding-left: var(--section-margins--left-right);
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.form-description-div {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.form-img {
  width: 100%;
}

.form-div-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: var(--border-radiuses--normal);
  background-color: var(--colors--eerie-black);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  margin-bottom: 30px;
  padding: 30px 60px;
  display: flex;
}

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

.italic {
  font-style: italic;
}

.form-wrapper {
  width: 100%;
}

.form-field {
  border-radius: var(--border-radiuses--normal);
  background-color: var(--colors--light-white);
  color: var(--colors--eerie-black);
  height: 50px;
  margin-bottom: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
}

.form-field::placeholder {
  color: #a1a1a1;
  font-size: 20px;
}

.success-message {
  border-radius: var(--border-radiuses--normal);
  background-color: var(--colors--primary);
  font-size: 18px;
}

.error-message {
  border-radius: var(--border-radiuses--normal);
  color: var(--colors--light-white);
  background-color: #c22222;
  margin-top: 20px;
  font-size: 18px;
  line-height: 23px;
}

.footer-content-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-logo-content {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  max-width: 300px;
  display: flex;
}

.footer-logo {
  width: 110px;
}

.footer-links-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.secondary-paragraph {
  font-family: var(--fonts--neue-montreal);
  color: #252525;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

.secondary-paragraph.white {
  color: var(--colors--white);
}

.secondary-paragraph.white.link {
  text-decoration: none;
}

.secondary-paragraph.white.link:hover {
  color: #ffffffb3;
}

.footer-email-form-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.footer-decor-img {
  width: 100px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.redig {
  font-family: var(--fonts--redig);
  font-weight: 400;
}

@media screen and (min-width: 1280px) {
  body {
    --fonts--neue-montreal: Neuemontreal, Arial, sans-serif;
    --colors--eerie-black: #252525;
    --section-margins--up-down: 80px;
    --section-margins--left-right: 60px;
    --colors--primary: #f97643;
    --colors--light-white: #dbe0dc;
    --sizes--max-width: 1440px;
    --colors--white: white;
    --border-radiuses--normal: 12px;
    --colors--secondary: #284435;
    --fonts--orbitron: "Orbitron Variablefont Wght", Impact, sans-serif;
    --fonts--redig: Redig, "Times New Roman", sans-serif;
    --colors--black: black;
    --colors--transparent: transparent;
    --colors--dark-eerie-black: #121212;
    --colors--saddle-brown: #863f15;
    --border-radiuses--small: 3.3px;
  }

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

  .button-primary.submit, .primary-paragraph {
    font-size: 22px;
  }

  .hero-content-wrapper {
    max-width: 780px;
  }

  .main-heading {
    font-size: 62px;
  }

  .hero-img-div {
    width: 680px;
    bottom: -11%;
  }

  .hero-green-bar {
    height: 155px;
  }

  .secondary-heading {
    font-size: 52px;
  }

  .form-field, .form-field::placeholder {
    font-size: 22px;
  }

  .footer-logo-content {
    max-width: 340px;
  }

  .secondary-paragraph {
    font-size: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .section.about {
    height: 100vh;
  }

  .container.about {
    height: 100%;
  }

  .button-primary.submit, .primary-paragraph {
    font-size: 24px;
  }

  .main-heading {
    font-size: 64px;
  }

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

  .form-field, .form-field::placeholder {
    font-size: 24px;
  }

  .secondary-paragraph {
    font-size: 22px;
  }
}

@media screen and (max-width: 991px) {
  body {
    --fonts--neue-montreal: Neuemontreal, Arial, sans-serif;
    --colors--eerie-black: #252525;
    --section-margins--up-down: 60px;
    --section-margins--left-right: 40px;
    --colors--primary: #f97643;
    --colors--light-white: #dbe0dc;
    --sizes--max-width: 1440px;
    --colors--white: white;
    --border-radiuses--normal: 12px;
    --colors--secondary: #284435;
    --fonts--orbitron: "Orbitron Variablefont Wght", Impact, sans-serif;
    --fonts--redig: Redig, "Times New Roman", sans-serif;
    --colors--black: black;
    --colors--transparent: transparent;
    --colors--dark-eerie-black: #121212;
    --colors--saddle-brown: #863f15;
    --border-radiuses--small: 3.3px;
  }

  .section.section-form {
    padding-right: 10px;
  }

  .container.container-form {
    grid-column-gap: 2%;
    grid-row-gap: 2%;
  }

  .navbar-link-text {
    font-size: 18px;
    line-height: 25px;
  }

  .navbar-main {
    padding-left: 30px;
    padding-right: 30px;
  }

  .navbar-content-wrapper {
    border-style: none;
    padding: 5px;
  }

  .primary-paragraph {
    font-size: 19px;
  }

  .hero-content-wrapper {
    max-width: 600px;
  }

  .main-heading {
    font-size: 52px;
  }

  .hero-img-div {
    width: 560px;
    bottom: -10%;
    right: -15%;
  }

  .hero-green-bar {
    height: 130px;
  }

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

  .secondary-heading {
    font-size: 52px;
  }

  .form-description-div {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 49%;
  }

  .form-div-wrapper {
    width: 49%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-field, .form-field::placeholder {
    font-size: 19px;
  }

  .footer-content-wrapper {
    grid-column-gap: 150px;
    grid-row-gap: 80px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-end;
  }

  .secondary-paragraph {
    font-size: 18px;
  }

  .footer-email-form-wrapper {
    width: 340px;
  }
}

@media screen and (max-width: 767px) {
  body {
    --fonts--neue-montreal: Neuemontreal, Arial, sans-serif;
    --colors--eerie-black: #252525;
    --section-margins--up-down: 80px;
    --section-margins--left-right: 10px;
    --colors--primary: #f97643;
    --colors--light-white: #dbe0dc;
    --sizes--max-width: 1440px;
    --colors--white: white;
    --border-radiuses--normal: 12px;
    --colors--secondary: #284435;
    --fonts--orbitron: "Orbitron Variablefont Wght", Impact, sans-serif;
    --fonts--redig: Redig, "Times New Roman", sans-serif;
    --colors--black: black;
    --colors--transparent: transparent;
    --colors--dark-eerie-black: #121212;
    --colors--saddle-brown: #863f15;
    --border-radiuses--small: 3.3px;
  }

  .body-wrapper {
    overflow: hidden;
  }

  .section.hero {
    flex-flow: column;
    height: auto;
    max-height: none;
    padding-top: 150px;
  }

  .section.section-form {
    padding-left: 10px;
  }

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

  .container.about {
    flex-flow: column;
  }

  .container.container-form {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .navbar-menu-btn-div {
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 250px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .navbar-menu-div._1 {
    margin-bottom: -20px;
  }

  .navbar-link-img {
    display: none;
    inset: 0% 0% 0% auto;
    transform: rotate(-90deg);
  }

  .navbar-logo-img {
    width: 80px;
  }

  .navbar-menu-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    outline-offset: 0px;
    outline: 2px solid #fffdf7;
    flex-flow: column;
    max-width: 550px;
    margin-left: auto;
    padding: 30px 0 40px;
    position: absolute;
    inset: auto 0% -30px;
    transform: translate(0, 100%);
  }

  .navbar-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-content-wrapper {
    padding: 10px;
  }

  .navbar-menu-btn-img {
    width: 36px;
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
  }

  .navbar-menu-btn-img._2 {
    transform: translate(-100%)translate(-50%, -50%);
  }

  .button-primary {
    height: 60px;
    padding: 12px 15px;
  }

  .button-primary.mob-visible {
    display: flex;
  }

  .button-primary.mob-hidden {
    display: none;
  }

  .button-primary.submit {
    height: 50px;
  }

  .button-primary.submit.footer {
    margin-top: 10px;
  }

  .primary-paragraph {
    font-size: 18px;
  }

  .primary-paragraph.white.mob-center {
    text-align: center;
  }

  .main-heading {
    font-size: 47px;
  }

  .hero-img-div {
    width: 90%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .hero-green-bar {
    height: 170px;
  }

  .about-img-div {
    width: 100%;
    height: 500px;
  }

  .about-content-wrapper {
    order: -9999;
    width: 100%;
  }

  .about-paragraph-div {
    max-width: 650px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-btn-div {
    padding-left: 10px;
  }

  .medium.about-heading.secondary-heading {
    padding-left: 10px;
    padding-right: 10px;
  }

  .medium.orange.mob-center {
    text-align: center;
  }

  .about-heading-green-div {
    padding-left: 10px;
    padding-right: 20px;
  }

  .secondary-heading {
    font-size: 42px;
  }

  .faq-question-div {
    padding-left: 15px;
    padding-right: 15px;
  }

  .faq-answer-div {
    padding-left: 10px;
    padding-right: 10px;
  }

  .form-description-div {
    width: 100%;
  }

  .form-img {
    display: none;
  }

  .form-div-wrapper {
    width: 100%;
  }

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

  .form-field, .form-field::placeholder {
    font-size: 18px;
  }

  .footer-content-wrapper {
    grid-row-gap: 60px;
    justify-content: center;
    align-items: center;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo {
    align-self: center;
  }

  .footer-links-wrapper {
    order: 3;
  }

  .secondary-paragraph {
    font-size: 16px;
  }

  .secondary-paragraph.white.link.mob-center {
    text-align: center;
  }

  .footer-email-form-wrapper {
    order: 1;
  }

  .footer-decor-img {
    display: none;
    bottom: 60px;
  }
}

@media screen and (max-width: 479px) {
  .navbar-menu-wrap {
    bottom: -22px;
  }

  .navbar-main {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-primary {
    height: 55px;
    padding: 10px 15px;
  }

  .hero-img-div {
    width: 100%;
  }

  .about-img-div {
    height: 360px;
  }

  .secondary-heading {
    font-size: 36px;
  }

  .about-decor-img {
    height: 20%;
    bottom: 40%;
  }

  .footer-email-form-wrapper {
    width: 100%;
  }
}


@font-face {
  font-family: 'Orbitron Variablefont Wght';
  src: url('../fonts/Orbitron-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Redig';
  src: url('../fonts/Redig-Regular.ttf') format('truetype');
  font-weight: 400;
  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;
}
@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-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}