.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.header--modal {
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  visibility: visible;
  position: absolute;
  z-index: 20;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header--modal::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header--modal:not(.active) {
  opacity: 0;
  visibility: hidden;
}
.header--modal .header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-bottom: 30px;
}
.header--modal .header__nav a {
  padding: 0;
  margin-bottom: 30px;
}
.header--modal .header__nav a:last-child {
  margin-bottom: 0;
}
.header--modal .header__nav a::after {
  display: none;
}
.header--modal .header__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 70px;
  padding-right: 60px;
}
@media (max-width: 1300px) {
  .header__inner {
    padding: 0;
  }
}
@media (max-width: 1050px) {
  .header__inner {
    padding: 15px 0;
  }
}

.header__logo {
  margin-right: 70px;
}
@media (max-width: 1300px) {
  .header__logo {
    margin-right: 20px;
  }
}
@media (max-width: 1050px) {
  .header__logo {
    width: 61px;
    height: 56px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  display: block;
  padding: 48px 20px;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #a2fd5a;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__nav a:hover {
  color: #a2fd5a;
}
.header__nav a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__nav a:last-child {
  margin-right: 0;
}
@media (max-width: 1300px) {
  .header__nav a {
    padding: 48px 10px;
  }
}
@media (max-width: 1050px) {
  .header__nav {
    display: none;
  }
}

.header__btn-box {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 374px;
  gap: 14px;
}
.header__btn-box img {
  margin-left: 10px;
}
@media (max-width: 1050px) {
  .header__btn-box {
    display: none;
  }
}

.burger {
  width: 26px;
  height: 20px;
  margin-left: auto;
  display: none;
}
.burger span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background-color: none;
}
.burger span::after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #FFFFFF;
  height: 2px;
  width: 26px;
  rotate: 46deg;
}
.burger span::before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #FFFFFF;
  height: 2px;
  width: 26px;
  rotate: 140deg;
}
.burger:not(.active) span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #a2fd5a;
}
.burger:not(.active) span::after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: -10px;
  rotate: 0deg;
}
.burger:not(.active) span::before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 10px;
  rotate: 0deg;
}
@media (max-width: 1050px) {
  .burger {
    display: block;
  }
}

.main-section__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(300px, 726px) minmax(200px, 385px);
  grid-template-columns: minmax(300px, 726px) minmax(200px, 385px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 70px;
  padding-top: 56px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 40px;
  border: 1px solid #353535;
}
.main-section__inner h1 {
  font-weight: 500;
  font-size: 28px;
  line-height: 175%;
  max-width: 550px;
  font-family: "Unbounded";
  margin-bottom: 50px;
}
@media (max-width: 1050px) {
  .main-section__inner h1 {
    max-width: none;
  }
}
@media (max-width: 650px) {
  .main-section__inner h1 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1050px) {
  .main-section__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .main-section__inner {
    padding: 20px;
  }
}

.main-section__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.main-section__btn-box .btn-green {
  padding: 26px;
  -webkit-box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
          box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
}
@media (max-width: 650px) {
  .main-section__btn-box .btn-green {
    padding: 22px;
  }
}
.main-section__btn-box .btn-green img {
  margin-left: 30px;
}
.main-section__btn-box .btn-ghost {
  padding: 26px;
}
@media (max-width: 650px) {
  .main-section__btn-box .btn-ghost {
    padding: 22px;
  }
}
@media (max-width: 1050px) {
  .main-section__btn-box {
    margin-top: 20px;
  }
}
@media (max-width: 650px) {
  .main-section__btn-box {
    margin-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.main-section__descr {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid #2b2a2a;
  padding: 30px;
  position: relative;
  max-height: 138px;
}
.main-section__descr p {
  font-weight: 400;
  font-size: 15px;
  line-height: 175%;
  color: #fff;
  font-family: "Unbounded";
}
@media (max-width: 650px) {
  .main-section__descr p {
    font-size: 12px;
    max-width: 200px;
  }
}
.main-section__descr img {
  position: absolute;
  top: -34px;
  right: 50px;
}
@media (max-width: 650px) {
  .main-section__descr img {
    top: -10px;
    right: 0px;
  }
}

.web__inner {
  padding: 70px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #2b2a2a;
  border-radius: 40px;
}
@media (max-width: 650px) {
  .web__inner {
    padding: 20px;
  }
}

.web__content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 8px;
}

.web__content-item {
  padding: 15px 15px 30px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #2b2a2a;
  border-radius: 10px;
  position: relative;
  height: 100vh;
  max-height: 143px;
}
.web__content-item h3 {
  font-weight: 400;
  font-size: 15px;
  line-height: 175%;
  max-width: 194px;
  margin-top: 15px;
}
@media (max-width: 650px) {
  .web__content-item h3 {
    font-size: 14px;
    margin-top: 0;
  }
}
.web__content-item p {
  font-weight: 400;
  font-size: 13px;
  line-height: 175%;
  max-width: 194px;
  margin-top: 10px;
}
@media (max-width: 650px) {
  .web__content-item p {
    font-size: 12px;
    margin-top: 8px;
  }
}
.web__content-item span {
  font-weight: 700;
  font-size: 15px;
  line-height: 175%;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 15px;
  right: 15px;
}
@media (max-width: 650px) {
  .web__content-item span {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 650px) {
  .web__content-item {
    padding: 16px;
    max-height: 107px;
  }
}

.web__content-item--green {
  border: 1px solid #a2fd5a;
  border-radius: 10px;
  -webkit-box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
          box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
  position: relative;
  height: 100vh;
  max-height: 107px;
}
.web__content-item--green img {
  position: absolute;
  top: 30px;
  right: 30px;
}
.web__content-item--green p {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #a2fd5a;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.top__banner {
  padding: 50px 70px;
  margin-bottom: 30px;
  border-radius: 40px;
  background-image: url("../images/top-bg.webp");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
.top__banner p {
  font-weight: 400;
  font-size: 18px;
  line-height: 175%;
  margin-bottom: 30px;
  max-width: 745px;
}
@media (max-width: 650px) {
  .top__banner p {
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__banner .btn-green {
  -webkit-box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
          box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
  background: #a2fd5a;
  max-width: 350px;
  padding: 26px;
}
.top__banner .btn-green img {
  margin-left: 30px;
}
@media (max-width: 650px) {
  .top__banner .btn-green {
    max-width: none;
    padding: 22px;
  }
}
@media (max-width: 650px) {
  .top__banner {
    padding: 20px;
    height: 320px;
  }
}

.top__swiper {
  max-width: 1230px;
}

.top__slide-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
  gap: 10px;
}
@media (max-width: 6500px) {
  .top__slide-grid {
    grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
  }
}

.top__grid-item {
  padding-top: 26px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 40px 40px 20px 20px;
  border: 1px solid #2b2a2a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  height: 100%;
}
.top__grid-item h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
}
@media (max-width: 650px) {
  .top__grid-item h3 {
    font-size: 14px;
  }
}
.top__grid-item p {
  font-weight: 500;
  font-size: 13px;
  line-height: 175%;
  text-align: center;
  margin: auto 0;
}
@media (max-width: 650px) {
  .top__grid-item p {
    font-size: 10px;
  }
}
.top__grid-item button {
  font-weight: 500;
  font-size: 14px;
  line-height: 175%;
  color: #111;
  padding: 15px 25px;
  background: #a2fd5a;
  border-radius: 0 0 20px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.top__grid-item button img {
  margin-right: 6px;
}
.top__grid-item button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__grid-item button span:last-child {
  font-weight: 700;
  margin-left: 16px;
  white-space: nowrap;
}
@media (max-width: 650px) {
  .top__grid-item button {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 650px) {
  .top__grid-item {
    padding-top: 15px;
  }
}

.top__grid-imgs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.top__grid-imgs::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  display: block;
  position: absolute;
}
.top__grid-imgs img {
  width: 100%;
  max-width: 200px;
  height: 100vh;
  max-height: 200px;
}
@media (max-width: 650px) {
  .top__grid-imgs img {
    max-width: 127px;
    max-height: 127px;
  }
}
@media (max-width: 650px) {
  .top__grid-imgs {
    max-width: 127px;
    max-height: 127px;
  }
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.top__swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  position: static;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 6px;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  border-radius: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid #2b2a2a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #a2fd5a;
  color: #111;
}

.top__swiper-prev {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  padding: 8px;
  border: 0.5px solid #7a7b78;
  border-radius: 2px;
  width: 40px;
  height: 40px;
}
.top__swiper-prev::after {
  content: "";
}
.top__swiper-prev svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top__swiper-next {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  padding: 8px;
  border: 0.5px solid #7a7b78;
  border-radius: 2px;
  width: 40px;
  height: 40px;
}
.top__swiper-next::after {
  content: "";
}
.top__swiper-next svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reviews .section-title {
  text-align: left;
}
@media (max-width: 850px) {
  .reviews .section-title {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
@media (max-width: 650px) {
  .reviews .section-title {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.reviews .container {
  max-width: 1230px;
  position: relative;
}
@media (max-width: 650px) {
  .reviews .container {
    padding-right: 0;
  }
}
.reviews .btn-green {
  -webkit-box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
          box-shadow: 0 15px 50px -15px rgba(162, 253, 90, 0.6);
  max-width: 350px;
  padding: 26px;
  margin: 0 auto;
  margin-top: 30px;
}
.reviews .btn-green img {
  margin-left: 30px;
}
@media (max-width: 650px) {
  .reviews .btn-green {
    max-width: 320px;
  }
}
@media (max-width: 360px) {
  .reviews .btn-green {
    margin-left: 0;
  }
}

.reviews__swiper {
  position: static;
}

.reviews__slide-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  max-width: 392px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 auto;
  border: 1px solid #2b2a2a;
}
.reviews__slide-wrapper h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 6px;
  margin-left: 20px;
}
@media (max-width: 650px) {
  .reviews__slide-wrapper h3 {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.reviews__slide-wrapper h4 {
  font-weight: 500;
  font-size: 13px;
  line-height: 175%;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media (max-width: 650px) {
  .reviews__slide-wrapper h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.reviews__slide-wrapper p {
  font-weight: 500;
  font-size: 14px;
  line-height: 175%;
  padding: 20px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.14);
}
@media (max-width: 650px) {
  .reviews__slide-wrapper p {
    font-size: 10px;
  }
}
@media (max-width: 650px) {
  .reviews__slide-wrapper {
    padding: 16px;
  }
}

.reviews__swiper-pagination {
  position: static;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 14px;
}
.reviews__swiper-pagination span {
  font-weight: 400;
  font-size: 13px;
  line-height: 175%;
}
.reviews__swiper-pagination span:first-child {
  font-weight: 700;
  color: #a2fd5a;
}

.reviews__swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 15px;
  top: 20px;
}
@media (max-width: 850px) {
  .reviews__swiper-navigation {
    top: 9px;
  }
}
@media (max-width: 650px) {
  .reviews__swiper-navigation {
    position: static;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
  }
}

.reviews__swiper-prev {
  cursor: pointer;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  padding: 8px;
  border: 0.5px solid #7a7b78;
  border-radius: 2px;
  width: 40px;
  height: 40px;
}
.reviews__swiper-prev::after {
  content: "";
}
.reviews__swiper-prev svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reviews__swiper-next {
  cursor: pointer;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  padding: 8px;
  border: 0.5px solid #7a7b78;
  border-radius: 2px;
  width: 40px;
  height: 40px;
}
.reviews__swiper-next::after {
  content: "";
}
.reviews__swiper-next svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.tg__content {
  padding: 50px;
  background: rgba(46, 165, 222, 0.2);
  border-radius: 40px;
  border: 1px solid #3687A9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto;
}
.tg__content a {
  padding: 10px 45px;
  -webkit-box-shadow: 0 15px 50px -15px rgba(67, 186, 243, 0.6);
          box-shadow: 0 15px 50px -15px rgba(67, 186, 243, 0.6);
  background: -webkit-gradient(linear, left top, right top, from(#2aa1da), to(#48bff8));
  background: linear-gradient(90deg, #2aa1da 0%, #48bff8 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  max-height: 118px;
  border-radius: 20px;
}
.tg__content a img {
  margin-right: 45px;
}
@media (max-width: 650px) {
  .tg__content a img {
    width: 24px;
    height: 24px;
    margin-right: 18px;
  }
}
.tg__content a span {
  padding-left: 45px;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: #fff;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 650px) {
  .tg__content a span {
    font-size: 16px;
    padding-left: 24px;
  }
}
@media (max-width: 650px) {
  .tg__content a {
    border-radius: 4px;
    padding: 8px 18px;
    padding-right: 38px;
    max-height: 60px;
  }
}
@media (max-width: 1050px) {
  .tg__content {
    -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;
    padding-top: 20px;
  }
}
@media (max-width: 650px) {
  .tg__content {
    padding: 20px;
  }
}

.tg__content-descr {
  max-width: 514px;
}
.tg__content-descr h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 175%;
  margin-bottom: 10px;
}
@media (max-width: 1050px) {
  .tg__content-descr h2 {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .tg__content-descr h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.tg__content-descr p {
  font-weight: 500;
  font-size: 18px;
  line-height: 175%;
}
@media (max-width: 1050px) {
  .tg__content-descr p {
    text-align: center;
    margin-bottom: 16px;
  }
}
@media (max-width: 650px) {
  .tg__content-descr p {
    font-size: 12px;
    margin-bottom: 16px;
  }
}

.footer {
  background: #000;
  padding: 20px 0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  max-width: 1230px;
  margin: 0 auto;
}
@media (max-width: 1050px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__logo {
  margin-right: 70px;
}
@media (max-width: 1300px) {
  .footer__logo {
    margin-right: 20px;
  }
}
@media (max-width: 1050px) {
  .footer__logo {
    width: 61px;
    height: 56px;
    position: absolute;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  display: block;
  padding: 48px 20px;
}
.footer__nav a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #a2fd5a;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1050px) {
  .footer__nav a::after {
    display: none;
  }
}
.footer__nav a:hover {
  color: #a2fd5a;
}
.footer__nav a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.footer__nav a:last-child {
  margin-right: 0;
}
@media (max-width: 1300px) {
  .footer__nav a {
    padding: 48px 10px;
  }
}
@media (max-width: 1050px) {
  .footer__nav a {
    padding: 10px 0;
  }
}
@media (max-width: 1050px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.footer__btn-box {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 374px;
  gap: 14px;
}
.footer__btn-box img {
  margin-left: 10px;
}
@media (max-width: 1050px) {
  .footer__btn-box {
    max-width: none;
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .footer__btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  max-width: 1230px;
  margin: 0 auto;
}
.footer__row a:last-child {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 650px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    font-size: 13px;
  }
}

.registration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh !important;
}

.registration__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 35px 25px;
  padding-bottom: 44px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
}
.registration__form-wrapper h2 {
  font-weight: 400;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}
@media (max-width: 500px) {
  .registration__form-wrapper h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.registration__form-wrapper a:nth-last-child(2) {
  margin-top: 32px;
}
.registration__form-wrapper a:last-child {
  margin-top: 20px;
}
.registration__form-wrapper--hidden {
  opacity: 0;
  visibility: hidden;
}

.registration__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 100%;
  max-width: 400px;
  padding-bottom: 32px;
  position: relative;
}
.registration__form label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background: rgba(204, 204, 204, 0);
  padding-right: 20px;
  margin-bottom: 15px;
}
@media (max-width: 500px) {
  .registration__form label {
    margin-bottom: 10px;
    padding-left: 10px;
  }
}
.registration__form input {
  width: 100%;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.01em;
}
.registration__form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.registration__form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.registration__form input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.registration__form input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.registration__form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
  .registration__form input {
    padding: 10px;
    font-size: 16px;
  }
}
.registration__form::before {
  content: "";
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), color-stop(50%, #000000), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, #000000 50%, rgba(0, 0, 0, 0.1));
  position: absolute;
  bottom: 0;
}
@media (max-width: 500px) {
  .registration__form {
    padding-bottom: 15px;
  }
}

.btn--black {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #000;
  margin-top: 30px;
  padding: 13px;
  width: 100%;
}
@media (max-width: 500px) {
  .btn--black {
    font-size: 15px;
    margin-top: 15px;
  }
}

.btn-reg--green {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  padding: 13px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, right top, left top, color-stop(0.66%, #4e9756), color-stop(98.99%, #81e75d));
  background: linear-gradient(270deg, #4e9756 0.66%, #81e75d 98.99%);
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 500px) {
  .btn-reg--green {
    font-size: 15px;
  }
}

.btn-reg:last-child {
  margin-top: 32px !important;
}

html,
body {
  font-family: "Montserrat";
  color: #fff;
  background: #060f00;
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
}
@media (max-width: 650px) {
  .wrapper {
    background-image: url("../images/bg-mob.jpg");
  }
}

.blur__wrapper--blur {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.container {
  max-width: 1370px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
}

.btn-ghost {
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-green {
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  border-radius: 100px;
  width: 100%;
  background: #a2fd5a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section {
  padding-bottom: 100px;
}
.section:first-child {
  padding-top: 60px;
}
@media (max-width: 650px) {
  .section:first-child {
    padding-top: 20px;
  }
}
@media (max-width: 650px) {
  .section {
    padding-bottom: 40px;
  }
}

.green-text {
  color: #a2fd5a;
}

.section-title {
  font-family: "Unbounded";
  font-weight: 500;
  font-size: 44px;
  line-height: 175%;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 650px) {
  .section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}