@import "./fonts/stylesheet.css";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "Poppins", sans-serif;
  color: #000;
  background: #F6F1EB;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}
.auto__container.sm {
  max-width: 1180px;
}

h1 {
  font-weight: 400;
  font-size: 55px;
  line-height: 115%;
}
h1 span {
  color: #00A264;
  font-weight: 500;
}

h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 115%;
  letter-spacing: -0.03em;
}
h2 span {
  color: #00A264;
  font-weight: 500;
}

h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.03em;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
}

h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.03em;
}

p {
  letter-spacing: -0.03em;
}
p.big {
  font-size: 20px;
  line-height: 30px;
}
p.sm {
  font-size: 15px;
  line-height: 22px;
}

.main {
  overflow: hidden;
  padding-top: 132px;
}

.anchor {
  position: relative;
  top: -100px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.03em;
  color: #000000;
  border-radius: 27px;
}
.button.primary {
  background-color: #00A264;
  padding: 7px 7px 7px 35px;
  color: #000;
}
.button.primary:hover {
  background-color: #000;
  color: #fff;
}
.button.primary:hover svg {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.button.primary:hover > svg {
  color: #fff;
}
.button.sm {
  padding: 13px 35px;
}
.button span {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  border-radius: 50%;
  background-color: #fff;
}
.button span svg {
  width: 54%;
  height: 28%;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button > svg {
  margin-left: 15px;
  width: 21px;
  height: 10px;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.modall__inner .input__success {
  top: calc(100% - 150px)!important;
}

.input__success {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00A264;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.input__success.active {
  opacity: 1;
  visibility: visible;
}
.input__success span {
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
}
.input__success span img {
  width: 100%;
}
.input input {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.03em;
  color: #000;
  background-color: #fff;
  border-radius: 27px;
  border: 2px solid #000;
  padding: 13px 35px;
}
.input input::-webkit-input-placeholder {
  color: #b4b4b4;
}
.input input::-moz-placeholder {
  color: #b4b4b4;
}
.input input:-ms-input-placeholder {
  color: #b4b4b4;
}
.input input::-ms-input-placeholder {
  color: #b4b4b4;
}
.input input::placeholder {
  color: #b4b4b4;
}

.modall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  display: none;
  z-index: 9999;
}
.modall.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.4s;
          animation: fadeIn 0.4s;
}
.modall__inner {
  background-color: #f6f1eb;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
  border-radius: 20px;
  padding: 120px 30px 170px;
}
.modall__inner-close {
  position: absolute;
  top: 36px;
  right: 54px;
  width: 30px;
  height: 30px;
  background-color: #00A264;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
}
.modall__inner-close:hover {
  opacity: 0.8;
}
.modall__inner-close::before {
  width: 60%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
  border-radius: 3px;
}
.modall__inner-close::after {
  width: 60%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
  border-radius: 3px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-box-shadow: 0px 4px 4px 0px #00000021;
          box-shadow: 0px 4px 4px 0px #00000021;
  background-color: #F6F1EB;
}
.header.sticky .header__inner {
  padding: 22px 0;
}
.header__inner {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 141px;
}
.header__inner-logo img {
  width: 100%;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links {
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}
.nav__inner li:last-child {
  margin: 0;
}
.nav__inner li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.03em;
  padding: 5px;
}

.burger {
  display: none;
}

.footer {
  border-radius: 30px 30px 0 0;
  background-color: #00A264;
  padding: 25px 0;
}
.footer__inner {
  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;
  text-align: center;
}
.footer__inner-logo {
  width: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner a {
  font-size: 15px;
  line-height: 100%;
  margin-bottom: 15px;
}
.footer__inner a:hover {
  color: #fff;
}
.footer__inner a:hover svg {
  color: #fff;
}
.footer__inner a svg {
  width: 12px;
  height: 10px;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero {
  padding: 90px 0 128px;
}
.hero__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero__inner-content {
  width: calc(44% - 10px);
  max-width: 482px;
}
.hero__inner-image {
  width: calc(56% - 10px);
  max-width: 664px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__inner-image.mob {
  display: none;
}
.hero__inner-image img {
  width: 100%;
}
.hero__inner p {
  margin-bottom: 28px;
}
.hero__inner p a {
  color: #00A264;
  font-weight: 600;
}
.hero__inner h1 {
  max-width: 875px;
  margin-bottom: 28px;
}

.partners {
  padding: 65px 0 90px;
  background-color: #fff;
}
.partners__inner-title {
  text-align: center;
  margin-bottom: 75px;
}
.partners__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1090px;
  margin: 0 auto;
}
.partnersItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 202px;
}
.partnersItem.ex {
  width: 75px;
}
.partnersItem.sm {
  width: 127px;
}
.partnersItem.big {
  width: 283px;
}
.partnersItem img {
  width: 100%;
}

.about {
  padding: 140px 0;
}
.about.light {
  background-color: #fff;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__inner-text p {
  margin-bottom: 14px;
}
.about__inner-text p:last-child {
  margin: 0;
}
.about__inner-image {
  width: calc(40% - 25px);
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__inner-image.big {
  width: calc(50% - 15px);
  max-width: 560px;
}
.about__inner-image.sm {
  width: calc(34% - 15px);
  max-width: 300px;
}
.about__inner-image img {
  width: 100%;
}
.about__inner-content {
  width: calc(60% - 25px);
  max-width: 625px;
}
.about__inner-content.big {
  width: calc(66% - 15px);
  max-width: 660px;
}
.about__inner-content.sm {
  width: calc(50% - 15px);
  max-width: 528px;
}
.about__inner-content > p {
  margin-bottom: 55px;
}
.about__inner-content > p b {
  display: block;
  margin-top: 10px;
}
.about__inner h2,
.about__inner h3 {
  margin-bottom: 25px;
}
.about__inner h2 span,
.about__inner h3 span {
  color: #00A264;
  font-weight: 500;
}
.about__inner ul li {
  margin-bottom: 18px;
}
.about__inner ul li:last-child {
  margin: 0;
}
.about__inner ul li b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-weight: 500;
  margin-bottom: 3px;
}
.about__inner ul li span {
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  right: calc(100% + 6px);
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

.insights {
  padding: 100px 0;
}
.insights__inner-title {
  margin-bottom: 80px;
  text-align: center;
}
.insights__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.insightsItem {
  width: calc(33.3% - 15px);
  max-width: 340px;
  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;
  text-align: center;
}
.insightsItem__icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}
.insightsItem h4 {
  margin-bottom: 10px;
}

.join {
  padding: 130px 0 120px;
}
.join__inner.big .join__inner-title {
  margin-bottom: 80px;
}
.join__inner.big h2 {
  margin-bottom: 36px;
  line-height: 150%;
}
.join__inner-title {
  text-align: center;
  margin-bottom: 58px;
}
.join__inner-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 568px;
  margin: 0 auto;
}
.join__inner h2 {
  margin-bottom: 10px;
}
.join__inner .input {
  width: calc(100% - 180px);
}
.join__inner .button {
  margin-left: 15px;
}

@media (max-width: 1380px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 45px;
  }

  .main {
    padding-top: 112px;
  }

  .header__inner {
    padding: 30px 0;
  }
  .header__inner-logo {
    width: 130px;
  }

  .hero {
    padding: 80px 0;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 35px;
  }

  h4 {
    font-size: 22px;
  }

  .modall {
    padding: 30px;
  }
  .modall__inner {
    padding: 120px 30px 155px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .about {
    padding: 100px 0;
  }

  .join {
    padding: 100px 0;
  }
  .join__inner.big .join__inner-title {
    margin-bottom: 60px;
  }
  .join__inner.big h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  .main {
    padding-top: 97px;
  }

  .header__inner {
    padding: 22px 0;
  }
  .header__inner-logo {
    width: 98px;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 97px;
    left: 0;
    width: 100%;
    height: calc(100% - 97px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 240px;
    z-index: 1;
    padding: 50px 20px 40px 20px;
    height: 100%;
    overflow-y: auto;
    background: #F6F1EB;
  }
  .nav__inner-links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 40px 0;
  }
  .nav__inner li {
    width: 100%;
    margin: 0 0 24px 0;
  }
  .nav__inner li a {
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 53px;
    height: 53px;
    background-color: #00A264;
    border-radius: 50%;
  }
  .burger:hover {
    opacity: 0.9;
  }
  .burger::before {
    top: 34%;
    width: 45%;
    height: 2.5px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 3px;
  }
  .burger span {
    top: 50%;
    width: 45%;
    height: 2.5px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-radius: 3px;
  }
  .burger::after {
    bottom: 34%;
    width: 45%;
    height: 2.5px;
    background-color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 3px;
  }
  .burger.active {
    background-color: #fff;
    -webkit-box-shadow: 0px 8px 12px 0px #00000021;
            box-shadow: 0px 8px 12px 0px #00000021;
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .hero {
    padding: 38px 0 60px;
  }
  .hero__inner h1 {
    margin-bottom: 20px;
  }
  .hero__inner p {
    margin-bottom: 20px;
  }

  .partners {
    padding: 50px 0 70px;
  }
  .partners__inner-title {
    margin-bottom: 45px;
  }
  .partners__inner-row {
    max-width: 840px;
  }
  .partnersItem {
    width: 160px;
  }
  .partnersItem.ex {
    width: 50px;
  }
  .partnersItem.sm {
    width: 95px;
  }
  .partnersItem.big {
    width: 220px;
  }

  .insights {
    padding: 75px 0;
  }
  .insights__inner-title {
    margin-bottom: 60px;
  }
  .insightsItem {
    width: calc(33.3% - 8px);
  }
  .insightsItem__icon {
    margin-bottom: 14px;
    width: 50px;
    height: 50px;
  }
  .insightsItem h4 {
    margin-bottom: 6px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 18px;
  }

  body {
    font-size: 15px;
    line-height: 22px;
  }

  p {
    font-size: 15px;
    line-height: 22px;
  }
  p.big {
    font-size: 17px;
    line-height: 24px;
  }

  .modall__inner {
    padding: 100px 25px 100px;
  }
  .modall__inner-close {
    top: 29px;
    right: 25px;
  }

  .about {
    padding: 70px 0;
  }
  .about__inner-content > p {
    margin-bottom: 30px;
  }
  .about__inner h2,
.about__inner h3 {
    margin-bottom: 12px;
  }

  .join {
    padding: 70px 0 100px;
  }
  .join__inner.big .join__inner-title {
    margin-bottom: 52px;
  }
  .join__inner-title {
    margin-bottom: 40px;
  }
  .join__inner .input {
    width: calc(100% - 172px);
  }
  .join__inner .button {
    margin-left: 10px;
  }

  .footer {
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 20px;
  }

  .modall {
    padding: 20px;
  }
  .modall__inner {
    padding: 125px 25px;
  }

  .hero {
    padding: 28px 0 100px;
  }
  .hero__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__inner-content {
    width: 100%;
    max-width: unset;
  }
  .hero__inner-image {
    width: 100%;
    max-width: 600px;
    display: none;
    margin: 0 auto 48px;
  }
  .hero__inner-image.mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero__inner p {
    margin-bottom: 28px;
  }

  .partners {
    padding: 35px 0 45px;
  }
  .partners__inner-title {
    margin-bottom: 32px;
  }
  .partners__inner-row {
    max-width: 560px;
  }
  .partners__inner h3 {
    font-size: 20px;
  }
  .partnersItem:last-child {
    display: none;
  }

  .about__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;
  }
  .about__inner-content {
    width: 100%;
    max-width: unset;
    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;
  }
  .about__inner-content.sm {
    width: 100%;
    max-width: unset;
  }
  .about__inner-content.big {
    width: 92%;
    max-width: unset;
  }
  .about__inner-content > p {
    width: 100%;
  }
  .about__inner-content > p b {
    margin-top: 24px;
  }
  .about__inner-image {
    width: 54%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0 0 55px 0;
  }
  .about__inner-image.big {
    width: 80%;
    max-width: unset;
  }
  .about__inner-image.sm {
    width: 37%;
  }
  .about__inner ul {
    width: 77%;
    margin: 0 auto;
  }
  .about__inner h2,
.about__inner h3 {
    text-align: center;
    margin-bottom: 16px;
  }

  .insights {
    padding: 60px 0;
  }
  .insights__inner-title {
    margin-bottom: 80px;
  }
  .insights__inner-row {
    width: 92%;
    margin: 0 auto;
    -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;
  }
  .insightsItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 85px;
  }
  .insightsItem:last-child {
    margin: 0;
  }
  .insightsItem__icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 24px;
  }

  h5 {
    font-size: 18px;
  }

  p.big {
    font-size: 15px;
    line-height: 22px;
  }
  p.sm {
    font-size: 12px;
    line-height: 16px;
  }

  .modall {
    padding: 0;
  }
  .modall__inner {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .hero__inner-image {
    width: calc(100% + 32px);
    margin: 0 -16px 48px;
    max-width: unset;
  }

  .partners__inner h3 {
    font-size: 16px;
  }
  .partnersItem.ex {
    width: 38px;
  }
  .partnersItem.sm {
    width: 63px;
  }
  .partnersItem.big {
    width: 140px;
  }

  .join {
    padding: 65px 0 100px;
  }
  .join__inner-title {
    margin-bottom: 48px;
  }
  .join__inner-form {
    -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;
    position: relative;
  }
  .join__inner .input {
    width: 100%;
    margin-bottom: 16px;
    position: static;
  }
  .join__inner .button {
    margin: 0;
  }

  .about__inner-image {
    width: 72%;
    max-width: unset;
  }
  .about__inner-image.big {
    width: 100%;
    max-width: unset;
  }
  .about__inner-image.sm {
    width: 58%;
  }

  .footer {
    border-radius: 10px 10px 0 0;
    padding: 28px 0;
  }
  .footer__inner-logo {
    width: 82px;
  }
  .footer__inner a {
    font-size: 12px;
    line-height: 15px;
  }
  .footer__inner a svg {
    width: 10px;
    height: 8px;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 22px;
  }
}

.submitBtn:disabled {
  background-color: #cccccc; /* Light gray */
  color: #666666; /* Dark gray */
  cursor: not-allowed;
}

.submitBtn:disabled:hover {
  /* No hover effect */
  background-color: #cccccc; /* Light gray */
  color: #666666; /* Dark gray */
  cursor: not-allowed;

}