* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1460px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

h2 {
  color: #000;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.72px;
}
@media (max-width: 576px) {
  h2 {
    /* 576 */
    font-size: 28px;
  }
}

h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
}
@media (max-width: 576px) {
  p {
    /* 576 */
    font-size: 14px;
    line-height: 22px; /* 157.143% */
  }
}

.gform_confirmation_message {
  text-align: center !important;
  font-size: 20px !important;
}

.btn {
  width: 180px;
  height: 48px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  opacity: 0.8;
}

.home-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
}
@media (max-width: 576px) {
  .home-hero {
    /* 576 */
    height: auto;
    padding: 90px 0;
    min-height: unset;
  }
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}
.home-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 630px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
}
.home-hero .inner img {
  margin-bottom: 43px;
}
@media (max-width: 576px) {
  .home-hero .inner img {
    /* 576 */
    margin-bottom: 30px;
  }
}
.home-hero .inner h4 {
  text-align: center;
  margin-bottom: 38px;
  color: #fff;
}
@media (max-width: 576px) {
  .home-hero .inner h4 {
    /* 576 */
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.home-hero .inner p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 166.667% */
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .home-hero .inner p {
    /* 576 */
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.home-hero .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-block {
  padding: 95px 0px;
}
@media (max-width: 991px) {
  .icon-block {
    /* 991 */
    padding: 60px 0px;
  }
}
@media (max-width: 576px) {
  .icon-block {
    /* 576 */
    padding: 40px 0px;
  }
}
.icon-block h2 {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .icon-block h2 {
    /* 991 */
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .icon-block h2 {
    /* 576 */
    margin-bottom: 30px;
  }
}
.icon-block .icon-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .icon-block .icon-grid {
    /* 767 */
    flex-direction: column;
    align-items: center;
  }
}
.icon-block .icon-grid .item .image {
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 25px;
}
.icon-block .icon-grid .item {
  flex: 1;
  max-width: 360px;
}
.icon-block .icon-grid .item h4,
.icon-block .icon-grid .item p {
  text-align: center;
}
.icon-block .icon-grid .item h4 {
  margin-bottom: 16px;
}

.form-block {
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .form-block {
    /* 576 */
    margin-bottom: 60px;
  }
}
.form-block .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .form-block .inner {
    /* 767 */
    display: flex;
    flex-direction: column;
  }
}
.form-block .inner .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .form-block .inner .image {
    /* 767 */
    aspect-ratio: 1/1;
  }
}
.form-block .inner .form-section {
  padding: 75px;
  border: 1px solid #000;
}
@media (max-width: 991px) {
  .form-block .inner .form-section {
    /* 991 */
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .form-block .inner .form-section {
    /* 767 */
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .form-block .inner .form-section {
    /* 576 */
    padding: 20px;
  }
}
.form-block .inner .form-section h2 {
  color: #000;
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.6px;
  margin-bottom: 19px;
}
@media (max-width: 576px) {
  .form-block .inner .form-section h2 {
    /* 576 */
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.form-block .inner .form-section p {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .form-block .inner .form-section p {
    /* 576 */
    margin-bottom: 20px;
  }
}
.form-block .inner .form-section form .gform_fields {
  column-gap: 15px;
  row-gap: 20px;
}
.form-block .inner .form-section form input[type=text],
.form-block .inner .form-section form input[type=email],
.form-block .inner .form-section form select {
  height: 48px !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  border: 1px solid #000 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 15px !important;
  justify-content: center !important;
  color: #000 !important;
  font-family: Inter !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 24px !important; /* 150% */
}
.form-block .inner .form-section form select {
  cursor: pointer;
}
.form-block .inner .form-section form .gform_button {
  width: 180px !important;
  height: 48px !important;
  background-color: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  text-align: center !important;
  font-family: "Space Grotesk" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  margin: 0 auto !important;
}
.form-block .inner .form-section form .gform_button:hover {
  opacity: 0.8 !important;
}

.footer {
  background-color: #000;
  padding: 60px 0px;
}
.footer img.logo {
  height: 26px;
  margin: 0 auto;
  margin-bottom: 35px;
}
.footer h4 {
  text-align: center;
  color: #fff;
  margin-bottom: 27px;
}
.footer p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 166.667% */
  margin-bottom: 32px;
}
.footer p a {
  color: #fff;
  text-decoration: none;
}
.footer p a:hover {
  text-decoration: underline;
}
.footer .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  height: 40px;
  width: 40px;
  transition: all 0.2s ease-in-out;
}
.footer .social-links a:hover {
  opacity: 0.8;
}

.gform_validation_errors {
  display: none !important;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}
/*# sourceMappingURL=style.min.css.map */
