@import "./animate.css"; /*** 

====================================================================
	Reset
====================================================================

***/
html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  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;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #4b516a;
  background: #f5f8ff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
}

.auto__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 65px;
  line-height: 110%;
  letter-spacing: -0.02em;
}

h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 140%;
}

h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
}

h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
}

p.big {
  font-size: 22px;
  line-height: 150%;
}
p.sm {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
}

.button {
  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;
  display: inline-block;
}
.button.primary {
  padding: 18px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: #f0b510;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111e6c;
}
.button.primary img {
  width: 16px;
  margin-left: 10px;
}
.button.primary:hover {
  background: #ffce45;
}
.button.white {
  padding: 10px 23px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #111e6c;
  background: #fff;
  border-radius: 50px;
}
.button.white:hover {
  color: #f5f8ff;
  background: rgba(255, 255, 255, 0.2);
}
.button.submit {
  padding: 12px 44px;
  border-radius: 50px;
  background: #f0b510;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #111e6c;
}
.button.submit:hover {
  background: #ffce45;
}

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

.wrapper {
  overflow: hidden;
}

.cookie {
  position: fixed;
  bottom: 20px;
  left: 30px;
  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;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 25, 74, 0.6);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 10px;
  color: #fff;
  width: calc(100% - 60px);
  max-width: 480px;
  z-index: 99;
}
.cookie__content {
  width: calc(100% - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie__content-icon {
  width: 35px;
  height: 35px;
  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-right: 16px;
}
.cookie__content-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cookie__content p {
  width: calc(100% - 51px);
  font-size: 15px;
}
.cookie.remove {
  display: none;
}

.footer {
  color: #fff;
  background: #111e6c;
}
.footer .auto__container {
  max-width: 1280px;
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 145px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__logo img {
  width: 100%;
}
.footer__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -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;
  color: #fff;
}
.footer__mail:hover {
  color: #f0b510;
}
.footer__mail svg {
  height: 24px;
  width: 24px;
  margin-right: 15px;
}
.footer__top {
  padding: 40px 0;
  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-bottom: 1px solid rgba(214, 222, 251, 0.2);
}
.footer__bot {
  padding: 40px 0;
  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;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  -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;
  color: #fff;
  margin-left: 40px;
}
.footer__link:hover {
  color: #f0b510;
}

.header {
  padding: 16px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header .auto__container {
  max-width: 1240px;
}
.header__inner {
  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;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 28%;
}
.header__inner-logo img {
  max-width: 146px;
}
.header__inner-nav {
  width: 72%;
}
.header.sticky {
  position: fixed;
  -webkit-animation: 0.2s sticky;
          animation: 0.2s sticky;
  background: #111e6c;
}

@-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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-right: 70px;
  -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__inner-link.active {
  color: #f0b510;
}
.nav__inner-link:hover {
  color: #f0b510;
}

.burger {
  display: none;
}

.intro {
  background: #111e6c;
  padding-top: 86px;
  margin-bottom: 75px;
  position: relative;
  z-index: 1;
}
.introBg {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  max-width: 1440px;
  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;
}
.introBg img {
  width: 100%;
}
.intro .auto__container {
  max-width: 1240px;
}
.intro__inner {
  padding: 128px 0 190px 0;
  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;
}
.intro__inner-image {
  margin-left: -5%;
  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;
  width: 50%;
}
.intro__inner-image img {
  width: 100%;
}
.intro__inner-content {
  width: calc(50% - 50px);
  color: #fff;
}
.intro h1 {
  margin-bottom: 30px;
  max-width: 540px;
}
.intro p {
  max-width: 490px;
}

.about {
  padding: 75px 0;
}
.about__head {
  margin: 0 auto 40px auto;
  max-width: 820px;
  text-align: center;
}
.about__head-slogan {
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
  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-bottom: 20px;
}
.about__head-slogan img {
  width: 100%;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aboutItem {
  width: calc(50% - 10px);
  background: #111e6c;
  border-radius: 20px;
  padding: 40px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.aboutItem__icon {
  width: 80px;
  height: 80px;
  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-right: 30px;
}
.aboutItem__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboutItem__content {
  width: calc(100% - 110px);
  color: #fff;
  max-width: 350px;
}
.aboutItem__content h5 {
  margin-bottom: 10px;
}

.why {
  padding: 75px 0;
}
.why__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
}
.why__inner-content {
  width: calc(50% - 15px);
}
.why__inner-image {
  width: calc(50% - 15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  position: relative;
  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;
}
.why__inner-image::before {
  position: absolute;
  content: "";
  right: 0;
  height: 100%;
  top: 0;
  width: 110%;
  background: linear-gradient(260.62deg, #e0eaff 7.09%, rgba(225, 234, 255, 0) 57.09%);
}
.why__inner-image img {
  max-width: 450px;
  position: relative;
  width: 100%;
}
.why h2 {
  margin-bottom: 40px;
  color: #111e6c;
}
.why h6 {
  color: #111e6c;
  margin-bottom: 10px;
}
.why p {
  max-width: 405px;
}
.whyItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.whyItem:last-child {
  margin-bottom: 0;
}
.whyItem__icon {
  background: #e0eaff;
  border: 3px solid #ffffff;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 70px;
  height: 70px;
  margin-right: 30px;
  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;
}
.whyItem__icon img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
.whyItem__content {
  width: calc(100% - 100px);
}

.crit {
  padding: 75px 0;
}
.crit__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}
.crit__inner-content {
  width: calc(50% - 15px);
}
.crit__inner-image {
  width: calc(50% - 15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  position: relative;
  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;
}
.crit__inner-image::before {
  position: absolute;
  content: "";
  right: 0;
  height: 100%;
  top: 0;
  width: 110%;
  background: -webkit-gradient(linear, left top, right top, color-stop(7.09%, #e0eaff), color-stop(57.09%, rgba(225, 234, 255, 0)));
  background: linear-gradient(90deg, #e0eaff 7.09%, rgba(225, 234, 255, 0) 57.09%);
}
.crit__inner-image img {
  max-width: 450px;
  position: relative;
  width: 100%;
}
.crit h2 {
  margin-bottom: 30px;
  color: #111e6c;
}
.crit h6 {
  color: #111e6c;
  margin-bottom: 30px;
}
.crit p {
  max-width: 405px;
}
.critItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.critItem:last-child {
  margin-bottom: 0;
}
.critItem__tick {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  position: relative;
  background: url(../images/icons/tick.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.critItem p {
  width: calc(100% - 42px);
}

.gf {
  padding: 75px 0 50px 0;
}
.gf .auto__container {
  max-width: 1280px;
}
.gf__inner {
  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;
  padding: 100px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  background: #111e6c;
}
.gf__inner-more {
  width: calc(50% - 15px);
  max-width: 502px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(141.41deg, rgba(102, 118, 186, 0) 15.51%, #6778ba 84.73%);
}
.gf__inner-image {
  position: relative;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}
.gf__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gf__inner-content {
  width: calc(50% - 15px);
  max-width: 505px;
  color: #fff;
}
.gf h2 {
  margin-bottom: 24px;
}
.gf p {
  margin-bottom: 24px;
}
.gf p:last-child {
  margin-bottom: 0;
}

.join {
  padding: 50px 0 100px 0;
}
.join .auto__container {
  max-width: 1280px;
}
.join__inner {
  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;
  padding: 0 80px 80px 140px;
  position: relative;
  background: url(../images/join.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.join__inner-content {
  width: calc(50% - 15px);
  max-width: 280px;
  color: #fff;
}
.join__inner-form {
  width: calc(50% - 15px);
}
.join h2 {
  margin-bottom: 20px;
}

.form {
  max-width: 564px;
  background: #ffffff;
  -webkit-box-shadow: 0px 14px 84px rgba(156, 163, 190, 0.16);
          box-shadow: 0px 14px 84px rgba(156, 163, 190, 0.16);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 40px;
}

.input {
  margin-bottom: 20px;
}
.input input,
.input textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 25px;
  resize: none;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(84, 113, 168, 0.3);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5471a8;
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: rgba(84, 113, 168, 0.6);
  opacity: 1;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: rgba(84, 113, 168, 0.6);
  opacity: 1;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: rgba(84, 113, 168, 0.6);
  opacity: 1;
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  color: rgba(84, 113, 168, 0.6);
  opacity: 1;
}
.input input::placeholder,
.input textarea::placeholder {
  color: rgba(84, 113, 168, 0.6);
  opacity: 1;
}

.check {
  margin-bottom: 30px;
  position: relative;
}
.check input {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.check input:checked + label::before {
  background: #3457b4;
}
.check input:checked + label::after {
  opacity: 1;
}
.check label {
  display: block;
  padding-left: 35px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4b516a;
}
.check label a {
  position: relative;
  z-index: 1;
  text-decoration-line: underline;
  color: #3457b4;
}
.check label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  -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;
  background: #ffffff;
  border: 2px solid #3457b4;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.check label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 7.5px;
  opacity: 0;
  width: 4px;
  height: 10px;
  -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-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 1340px) {
  .nav__inner-link {
    margin-right: 40px;
  }
  .join__inner {
    padding: 0 50px 50px 100px;
  }
}
@media (max-width: 1240px) {
  .header__inner-logo {
    width: 20%;
  }
  .header__inner-nav {
    width: 80%;
  }
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 30px;
  }
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 20px;
  }
  p.big {
    font-size: 20px;
  }
  body {
    font-size: 14px;
  }
  .intro {
    margin-bottom: 50px;
  }
  .intro__inner {
    padding: 80px 0 140px 0;
  }
  .about {
    padding: 50px 0;
  }
  .about__head-slogan {
    max-width: 500px;
    margin-bottom: 4px;
  }
  .aboutItem {
    padding: 32px 24px;
  }
  .aboutItem__icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  .aboutItem__content {
    width: calc(100% - 70px);
  }
  .why {
    padding: 50px 0;
  }
  .why__inner-image {
    padding: 24px 16px 24px 0;
  }
  .whyItem__icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border: 3px solid #fff;
  }
  .whyItem__icon img {
    width: 20px;
    height: 20px;
  }
  .whyItem__content {
    width: calc(100% - 80px);
  }
  .why h2 {
    margin-bottom: 30px;
  }
  .why h6 {
    margin-bottom: 6px;
  }
  .crit {
    padding: 50px 0;
  }
  .crit__inner-image {
    padding: 24px 0 24px 16px;
    width: 50%;
  }
  .crit h2 {
    margin-bottom: 16px;
  }
  .gf {
    padding: 50px 0;
  }
  .gf__inner {
    padding: 60px 50px;
  }
  .join {
    padding: 50px 0 60px 0;
  }
  .join__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .join__inner-content {
    width: calc(40% - 15px);
    padding-bottom: 100px;
  }
  .join__inner-form {
    width: calc(60% - 15px);
  }
}
@media (max-width: 1024px) {
  .header__inner-logo {
    width: 145px;
  }
  .header__inner-logo img {
    width: 100%;
  }
  .header__inner-nav {
    width: unset;
  }
  .nav {
    position: fixed;
    top: 71.72px;
    left: 0;
    width: 100%;
    height: calc(100% - 71.72px);
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-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;
            flex-direction: column;
    -ms-flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    top: 0;
    right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 390px;
    width: 100%;
    padding: 0;
    z-index: 1;
    padding: 50px 20px;
    height: 100%;
    overflow-y: auto;
    background: #111e6c;
  }
  .nav__inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../images/bgMenu.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .nav__inner-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner-link {
    border: none;
    padding: 15px;
    display: block;
    text-align: left;
    width: unset;
    color: #fff;
    margin-right: 0;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .nav .button {
    text-align: center;
    max-width: 140px;
    margin: 15px auto;
  }
  .body.active {
    overflow: hidden;
  }
  .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 26px;
  }
  .burger::before {
    top: 20%;
    width: calc(100% - 0.4rem);
    height: 2px;
    background-color: #fff;
    border-radius: 0.125rem;
    -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%);
  }
  .burger span {
    top: 50%;
    width: calc(100% - 0.4rem);
    height: 2px;
    background-color: #fff;
    border-radius: 0.125rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    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%);
  }
  .burger::after {
    bottom: 20%;
    width: calc(100% - 0.4rem);
    height: 2px;
    background-color: #fff;
    border-radius: 0.125rem;
    -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%);
  }
  .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);
  }
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 28px;
  }
  .intro {
    padding-top: 72px;
  }
  .intro__inner-content {
    width: calc(50% - 30px);
  }
  .gf__inner {
    padding: 30px;
  }
  .gf h2 {
    margin-bottom: 16px;
  }
  .gf p {
    margin-bottom: 16px;
  }
  .join__inner {
    padding: 0 0 50px 50px;
  }
  .join__inner-content {
    padding-bottom: 60px;
  }
}
@media (max-width: 840px) {
  .auto__container {
    padding: 0 40px;
  }
  .footer__logo {
    margin-bottom: 18px;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0 18px 0;
  }
  .footer__bot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
  .footer p.sm {
    margin-bottom: 30px;
    text-align: center;
  }
  .footer__link {
    margin: 0 20px;
  }
  .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro__inner-image {
    width: calc(100% + 40px);
    margin: 0 0 40px -40px;
  }
  .intro__inner-content {
    width: 100%;
    max-width: unset;
  }
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutItem {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .aboutItem__icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
  .aboutItem__content {
    width: calc(100% - 100px);
    max-width: unset;
  }
  .why__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0 0 20px 20px;
  }
  .why__inner-content {
    width: 100%;
  }
  .why__inner-image {
    width: 100%;
    padding: 50px 22px;
  }
  .why__inner-image img {
    max-width: 540px;
  }
  .why__inner-image::before {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7.09%, #e0eaff), color-stop(57.09%, rgba(225, 234, 255, 0)));
    background: linear-gradient(0deg, #e0eaff 7.09%, rgba(225, 234, 255, 0) 57.09%);
  }
  .why p {
    max-width: unset;
  }
  .crit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0 0 20px 20px;
  }
  .crit__inner-content {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }
  .crit__inner-image {
    width: 100%;
    padding: 40px 20px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .crit__inner-image img {
    max-width: 540px;
  }
  .crit__inner-image::before {
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7.09%, #e0eaff), color-stop(57.09%, rgba(225, 234, 255, 0)));
    background: linear-gradient(0deg, #e0eaff 7.09%, rgba(225, 234, 255, 0) 57.09%);
  }
  .crit p {
    max-width: unset;
  }
  .gf__inner {
    padding: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gf__inner-more {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }
  .gf__inner-content {
    width: 100%;
    max-width: unset;
  }
  .join__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: unset;
    padding: 0;
  }
  .join__inner-content {
    width: 100%;
    max-width: unset;
    text-align: center;
    padding-bottom: 20px;
  }
  .join__inner-content h2 {
    color: #111e6c;
    margin-bottom: 4px;
  }
  .join__inner-content h2 img {
    display: none;
  }
  .join__inner-content p {
    color: #4b516a;
  }
  .join__inner-form {
    width: 100%;
    max-width: unset;
  }
  .form {
    max-width: unset;
  }
}
@media (max-width: 540px) {
  .auto__container {
    padding: 0 20px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 25px;
  }
  h5 {
    font-size: 20px;
  }
  p.big {
    font-size: 18px;
  }
  p.sm {
    font-size: 12px;
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__link {
    font-size: 12px;
    margin: 0 0 20px 0;
  }
  .footer__link:last-child {
    margin-bottom: 0;
  }
  .footer__mail {
    font-size: 13px;
  }
  .footer__mail svg {
    width: 20px;
    height: 20px;
  }
  .cookie {
    left: 20px;
    width: calc(100% - 40px);
    bottom: 20px;
    -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: flex-start;
  }
  .cookie__content {
    width: 100%;
    margin-bottom: 16px;
  }
  .intro {
    margin-bottom: 40px;
  }
  .intro__inner {
    padding: 30px 0 60px 0;
  }
  .intro h1 {
    margin-bottom: 16px;
  }
  .about {
    padding: 40px 0;
  }
  .about__head {
    margin-bottom: 20px;
  }
  .about__head-slogan {
    margin-bottom: 16px;
  }
  .aboutItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutItem__icon {
    margin: 0 0 20px 0;
  }
  .aboutItem__content {
    width: 100%;
  }
  .why {
    padding: 40px 0;
  }
  .crit {
    padding: 40px 0;
  }
  .critItem__tick {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px;
  }
  .critItem p {
    width: calc(100% - 30px);
  }
  .crit h6 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .gf {
    padding: 20px 0 30px 0;
  }
  .gf__inner {
    padding: 30px 20px 60px 20px;
  }
  .gf__inner-more {
    padding: 10px;
    max-width: 90%;
  }
  .join {
    padding: 30px 0 60px 0;
  }
  .join h2 {
    font-size: 22px;
  }
  .form {
    padding: 30px 24px 40px 24px;
  }
  .input input,
.input textarea {
    padding: 16px 14px;
  }
}