@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1170px;
  --container-offset: 0px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-black-solid: #000;
  --color-grey-62: #9e9e9e;
  --color-grey-4: #090909;
  --color-orange-86: #f2ddc4;
  --color-azure-5: #050f17;
  --color-black--49-80: rgba(0, 0, 0, 0.5);
  --color-white-solid: #fff;
  --color-grey-93: #eee;
  --color-white--800: rgba(255, 255, 255, 0.8);
  --color-grey-84: #d5d5d5;
  --color-orange-48: #a8894d;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.gb-checkbox__field:checked + .gb-checkbox__content::after {
  opacity: 1;
}

.gb-checkbox__field:focus + .gb-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.gb-checkbox__field:disabled + .gb-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.gb-lock-scroll {
  overflow: hidden;
  height: 100%; /* Это гарантирует, что высота будет фиксированной */
}

main {
  background: #000;
}

.gb-page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.gb-page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.gb-wrap {
  overflow: hidden;
}

.gb-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.gb-reset-btn {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.gb-reset-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gb-reset-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.gb-reset-input::-webkit-search-decoration, .gb-reset-input::-webkit-search-cancel-button, .gb-reset-input::-webkit-search-results-button, .gb-reset-input::-webkit-search-results-decoration {
  display: none;
}

.gb-sr-only {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.gb-container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.gb-disable-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.gb-page--ios .gb-disable-scroll {
  position: relative;
}

.gb-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gb-flex-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gb-toggle {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.gb-toggle::before, .gb-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gb-toggle::before {
  top: 0;
}
.gb-toggle::after {
  top: calc(100% - var(--burger-line-height));
}
.gb-toggle__bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gb-toggle--open::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gb-toggle--open::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gb-toggle--open .gb-toggle__bar {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gb-toggle {
  display: none;
  color: white;
  --burger-height: 20px;
}
@media (max-width: 998px) {
  .gb-toggle {
    display: block;
    z-index: 101;
  }
}

.gb-toggle--open {
  color: white;
}

.gb-topbar {
  background: black;
  border-bottom: 1px solid #27272a;
}
.gb-topbar__brand {
  max-width: 144px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.gb-topbar__brandname {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 143%;
  letter-spacing: -0.03em;
  color: var(--color-white-solid);
  margin: 0;
}

.gb-topbar__inner {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 106px;
}
@media (max-width: 998px) {
  .gb-topbar__inner {
    padding: 20px;
  }
}

@media (max-width: 998px) {
  .gb-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    background: #000;
    height: 130vh;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.gb-menu__list {
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 998px) {
  .gb-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
    gap: 31px;
  }
}
.gb-menu__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 144%;
  color: #e4e4e7;
}

.gb-menu.gb-menu--open {
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.gb-intro {
  position: relative;
  background-image: url(".././img/hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.gb-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* степень затемнения */
  z-index: 1;
}
.gb-intro > * {
  position: relative;
  z-index: 2;
}
.gb-intro__heading {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 54px;
  line-height: 132%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
@media (max-width: 700px) {
  .gb-intro__heading {
    font-size: 38px;
  }
}
.gb-intro__heading-accent {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 54px;
  line-height: 132%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #10b981;
  margin: 0;
}
@media (max-width: 700px) {
  .gb-intro__heading-accent {
    font-size: 38px;
  }
}
.gb-intro__text {
  max-width: 672px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 141%;
  text-align: center;
  color: #d1d5db;
  margin: 0;
}
.gb-intro__cta {
  max-width: 240px;
  width: 100%;
  -webkit-box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #10b981;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 153%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
  margin-top: 16px;
}

.gb-intro__inner {
  max-width: 985px;
  width: 100%;
  margin: 0 auto;
  padding: 127px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.gb-highlights {
  padding: 80px 0px;
}
.gb-highlights__intro {
  max-width: 712px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.gb-highlights__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 122%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-highlights__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  text-align: center;
  color: #9ca3af;
  margin: 0;
}
.gb-highlights__cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.gb-highlights__card {
  max-width: 384px;
  width: 100%;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
}
.gb-highlights__card-body {
  gap: 8px;
  padding: 24px;
}
.gb-highlights__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 143%;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-highlights__desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  color: #9ca3af;
  margin: 0;
}

.gb-highlights__inner {
  max-width: 1256px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 32px;
}
@media (max-width: 900px) {
  .gb-highlights__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.gb-latest {
  padding: 80px 0px;
}
.gb-latest__content {
  max-width: 584px;
  width: 100%;
  gap: 16px;
}
.gb-latest__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 122%;
  color: var(--color-white-solid);
  margin: 0;
  border-left: 4px solid #10b981;
  padding-left: 10px;
}
.gb-latest__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 162%;
  color: #d1d5db;
  margin: 0;
}
.gb-latest__gallery {
  gap: 16px;
}
@media (max-width: 650px) {
  .gb-latest__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.gb-latest__gallery-img {
  max-width: 284px;
  width: 100%;
}
.gb-latest__hero-img {
  max-width: 584px;
  width: 100%;
}

.gb-latest__inner {
  max-width: 1246px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1150px) {
  .gb-latest__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gb-categories {
  padding: 60px 0px;
}
.gb-categories__item {
  max-width: 189px;
  width: 100%;
  border: 1px solid #27272a;
  border-radius: 12px;
  background: #18181b;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 25px 0px;
}
@media (max-width: 440px) {
  .gb-categories__item {
    max-width: 150px;
  }
}
.gb-categories__label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: #d1d5db;
  margin: 0;
}

.gb-categories__inner {
  max-width: 1256px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .gb-categories__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.gb-deals {
  background-image: url(".././img/aboutbg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0px;
}
@media (max-width: 1214px) {
  .gb-deals {
    padding: 64px 20px;
  }
}
.gb-deals__content {
  max-width: 724px;
  width: 100%;
  gap: 16px;
}
.gb-deals__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 122%;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-deals__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #d1d5db;
  margin: 0;
}
.gb-deals__gallery {
  gap: 16px;
}
.gb-deals__gallery-img {
  max-width: 40px;
  width: 100%;
}

.gb-deals__inner {
  max-width: 1216px;
  width: 100%;
  margin: 0 auto;
  padding: 75px 49px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#18181b), to(#000));
  background: linear-gradient(90deg, #18181b 0%, #000 100%);
}
@media (max-width: 740px) {
  .gb-deals__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gb-pick {
  padding: 50px 0px;
}
.gb-pick__content {
  max-width: 592px;
  width: 100%;
  gap: 16px;
}
.gb-pick__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-pick__divider {
  max-width: 80px;
  width: 100%;
  height: 4px;
  background: #10b981;
}
.gb-pick__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 156%;
  color: #d1d5db;
  margin: 0;
  margin-top: 8px;
}
.gb-pick__img {
  max-width: 592px;
  width: 100%;
}

.gb-pick__inner {
  max-width: 1256px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) {
  .gb-pick__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.gb-testimonials {
  padding: 80px 0px;
}
.gb-testimonials__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  text-align: center;
  color: #f8fafc;
  margin: 0;
}
.gb-testimonials__card {
  max-width: 395px;
  width: 100%;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 33px;
  gap: 16px;
}
.gb-testimonials__head {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.gb-testimonials__profile {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.gb-testimonials__avatar {
  max-width: 48px;
  width: 100%;
}
.gb-testimonials__author {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-testimonials__meta {
  gap: 4px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.gb-testimonials__quote {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  color: #cbd5e1;
  margin: 0;
}

.gb-testimonials__inner {
  max-width: 1288px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 900px) {
  .gb-testimonials__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.gb-story {
  padding: 80px 0px;
  border-top: 1px solid #27272a;
}
.gb-story__img {
  max-width: 64px;
  width: 100%;
  margin-bottom: 8px;
}
.gb-story__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 122%;
  text-align: center;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-story__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 161%;
  text-align: center;
  color: #d1d5db;
  margin: 0;
}

.gb-story__inner {
  max-width: 872px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.gb-reach {
  padding: 80px 0px;
}
@media (max-width: 1214px) {
  .gb-reach {
    padding: 80px 20px;
  }
}
.gb-reach__info {
  max-width: 559px;
  width: 100%;
  gap: 16px;
}
.gb-reach__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 123%;
  color: var(--color-white-solid);
  margin: 0;
}
.gb-reach__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 151%;
  color: #d1d5db;
  margin: 0;
}
.gb-reach__email {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 155%;
  color: #10b981;
}
.gb-reach__form {
  max-width: 373px;
  width: 100%;
  gap: 16px;
}
.gb-reach__field {
  width: 100%;
  border: 1px solid #27272a;
  border-radius: 8px;
  background: #09090b;
  padding: 12px 17px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a9a9a9;
}
.gb-reach__field::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a9a9a9;
}
.gb-reach__field::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a9a9a9;
}
.gb-reach__field:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a9a9a9;
}
.gb-reach__field::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a9a9a9;
}
.gb-reach__field::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #a9a9a9;
}
.gb-reach__submit {
  width: 100%;
  background: #10b981;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 152%;
  text-align: center;
  color: var(--color-white-solid);
  padding: 12px 0px;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gb-reach__inner {
  max-width: 1216px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #27272a;
  border-radius: 16px;
  background: #18181b;
  padding: 49px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 800px) {
  .gb-reach__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gb-thanks {
  padding: 200px 0px;
}
.gb-thanks__img {
  max-width: 120px;
  width: 100%;
}
.gb-thanks__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #fff;
}

.gb-thanks__inner {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.gb-bottom {
  background: #000;
  padding: 40px 0px;
}
.gb-bottom__cols {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 600px) {
  .gb-bottom__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.gb-bottom__col {
  max-width: 560px;
  width: 100%;
  gap: 8px;
}
.gb-bottom__link {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 13px;
  line-height: 145%;
  color: var(--color-white-solid);
}
.gb-bottom__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 143%;
  color: #9ca3af;
  margin: 0;
}
.gb-bottom__divider {
  width: 100%;
  height: 1px;
  background: #111827;
  margin-top: 16px;
}
.gb-bottom__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: #4b5563;
  margin: 0;
}

.gb-bottom__inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 32px;
}

.gb-legal {
  max-width: 1163px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}
.gb-legal h2 {
  font-family: var(--font-family);
  font-weight: 700;
  text-align: center;
  font-size: 36px;
  color: #fff;
}
.gb-legal h4 {
  font-family: var(--font-family);
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.gb-legal p {
  font-family: var(--font-family);
  font-weight: 400;
  text-align: center;
  line-height: 160%;
  font-size: 20px;
  color: #9CA3AF;
}/*# sourceMappingURL=main.css.map */
