*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
}

body {
  position: relative;
  font-family: 'Inter';
  color: #1f3b60;
}

html {
  height: 100%;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: inherit;
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin: auto;
  padding: 0 20px;
}

@-webkit-keyframes bounceRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}

@keyframes bounceRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}

@-webkit-keyframes bounceLeft {
  from {
    -webkit-transform: translateX(0) rotate(180deg);
            transform: translateX(0) rotate(180deg);
  }
  to {
    -webkit-transform: translateX(3px) rotate(180deg);
            transform: translateX(3px) rotate(180deg);
  }
}

@keyframes bounceLeft {
  from {
    -webkit-transform: translateX(0) rotate(180deg);
            transform: translateX(0) rotate(180deg);
  }
  to {
    -webkit-transform: translateX(3px) rotate(180deg);
            transform: translateX(3px) rotate(180deg);
  }
}

body[lang] .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  background-color: #4b7dae;
  font-size: 29px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  cursor: pointer;
}

body[lang] .button .arrow {
  background: url("./button_arrow.svg") no-repeat center left;
  padding: 17px;
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

body[lang] .button:hover .arrow, body[lang] .button:focus .arrow {
  -webkit-animation: bounceRight 0.3s alternate ease infinite;
          animation: bounceRight 0.3s alternate ease infinite;
}

body[lang] .button.loader .arrow {
  display: none;
}

body[lang] .bold {
  font-weight: 800;
}

body[lang] .title {
  font-size: 45px;
  line-height: 155%;
}

body[lang] .main {
  background: url("./main_bg_1920.png") no-repeat top center;
  padding-bottom: 100px;
}

body[lang] .main header {
  padding-top: 74px;
}

body[lang] .main header #logo {
  height: 63px;
  background: url(./logo.svg) no-repeat;
  background-size: auto 63px;
}

body[lang] .main__title {
  padding-top: 100px;
  font-size: 53px;
  line-height: 135%;
  max-width: 667px;
}

body[lang] .main__sub_title {
  padding-top: 45px;
  font-size: 27px;
  line-height: 150%;
  max-width: 667px;
}

body[lang] .main__button {
  margin-top: 71px;
}

body[lang] .many {
  padding-top: 85px;
}

body[lang] .many__cards {
  padding-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

body[lang] .many__cards__title {
  padding-top: 15px;
  font-size: 30px;
  line-height: 140%;
}

body[lang] .many__cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 10px;
  border: 2px solid #9ec8f0;
  border-bottom-width: 12px;
}

body[lang] .many__cards .card::before {
  content: '';
  background: url("./x.svg") no-repeat center;
  padding: 16px;
}

body[lang] .many__note {
  padding-top: 52px;
}

body[lang] .many__note__title {
  font-size: 25px;
}

body[lang] .many__note__text {
  padding-top: 15px;
  font-size: 23px;
  line-height: 156%;
}

body[lang] .how {
  padding-top: 100px;
}

body[lang] .how__steps {
  margin-top: 30px;
  background: url("./steps_bg_1920.png") no-repeat top center;
  padding-bottom: 128px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 360px 287px 287px;
      grid-template-columns: 360px 287px 287px;
  gap: 81px;
}

body[lang] .how__steps .card {
  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;
  padding: 45px 18px;
  font-size: 24px;
  font-weight: 800;
}

body[lang] .how__steps .card__icon {
  margin-top: 52px;
  padding: 28px;
}

body[lang] .how__steps .card.card1 .card__icon {
  background: url("./step1.svg") no-repeat center;
}

body[lang] .how__steps .card.card2 .card__icon {
  background: url("./step2.svg") no-repeat center;
}

body[lang] .how__steps .card.card3 .card__icon {
  background: url("./step3.svg") no-repeat center;
}

body[lang] .how__steps .card__title {
  padding-top: 50px;
}

body[lang] .how__steps .card__text {
  padding-top: 20px;
  font-size: 20px;
  font-weight: 400;
}

body[lang] .how__steps .card.card1 {
  -webkit-margin-start: 70px;
          margin-inline-start: 70px;
}

body[lang] .how__steps .card.card1, body[lang] .how__steps .card.card3 {
  color: #4b7dad;
}

body[lang] .why {
  background: url("./handshake_bg_1920.png") no-repeat top right;
  padding-bottom: 135px;
}

body[lang] .why__bullets {
  padding-top: 35px;
}

body[lang] .why__bullets .bullet {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35px 430px;
      grid-template-columns: 35px 430px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 137%;
}

body[lang] .why__bullets .bullet:not(:first-child) {
  padding-top: 15px;
}

body[lang] .why__bullets .bullet::before {
  content: '';
  background: url("./star.svg") no-repeat center;
  padding: 16px 18px;
}

body[lang] .testimonials {
  background: url("./testimonials_bg_1920.png") no-repeat top center #f2f2f2;
  padding-block: 80px 100px;
}

body[lang] .testimonials__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 62px;
}

body[lang] .testimonials__grid .testimonial {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 135%;
  padding: 150px 40px 30px;
}

body[lang] .testimonials__grid .testimonial__author {
  padding-top: 30px;
  color: #4b7dae;
}

body[lang] .ready {
  background: url("./ready_bg_1920.png") no-repeat top center #1e3a5e;
  padding-block: 37px 43px;
  color: #fff;
}

body[lang] .ready__title {
  font-size: 38px;
  font-weight: 700;
}

body[lang] .ready__text {
  padding-top: 20px;
  font-size: 25px;
}

body[lang] .ready__button {
  margin-top: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body[lang] .footer {
  padding-block: 30px;
  font-size: 16px;
  text-align: center;
}

body[lang] .dropshadow {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  padding-top: 95px;
}

body[lang] .dropshadow form {
  font-family: 'Open Sans';
  position: relative;
  text-align: center;
  background-color: #ffffff;
  padding: 60px;
  max-width: 750px;
  margin: auto;
}

body[lang] .dropshadow form .close_btn {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  background: url("./close.svg") no-repeat center;
  background-size: 30px 30px;
  cursor: pointer;
}

body[lang] .dropshadow form select,
body[lang] .dropshadow form input {
  width: 100%;
  font-size: 16px;
  height: 44px;
  background-color: #ffffff;
  padding-left: 14px;
  color: #535353;
  outline: none;
  border: 1px solid #bed6ea;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  /* Firefox 1-3.6 */
  border-radius: 5px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}

body[lang] .dropshadow form select::-webkit-input-placeholder,
body[lang] .dropshadow form input::-webkit-input-placeholder {
  color: #535353;
}

body[lang] .dropshadow form select:-ms-input-placeholder,
body[lang] .dropshadow form input:-ms-input-placeholder {
  color: #535353;
}

body[lang] .dropshadow form select::-ms-input-placeholder,
body[lang] .dropshadow form input::-ms-input-placeholder {
  color: #535353;
}

body[lang] .dropshadow form select::placeholder,
body[lang] .dropshadow form input::placeholder {
  color: #535353;
}

body[lang] .dropshadow form select:focus,
body[lang] .dropshadow form input:focus {
  border: 2px solid #812696;
  color: #812696;
}

body[lang] .dropshadow form select:focus::-webkit-input-placeholder,
body[lang] .dropshadow form input:focus::-webkit-input-placeholder {
  color: #812696;
}

body[lang] .dropshadow form select:focus:-ms-input-placeholder,
body[lang] .dropshadow form input:focus:-ms-input-placeholder {
  color: #812696;
}

body[lang] .dropshadow form select:focus::-ms-input-placeholder,
body[lang] .dropshadow form input:focus::-ms-input-placeholder {
  color: #812696;
}

body[lang] .dropshadow form select:focus::placeholder,
body[lang] .dropshadow form input:focus::placeholder {
  color: #812696;
}

body[lang] .dropshadow form .Form_Element_Holder_Div {
  text-align: initial;
  margin-bottom: 20px;
}

body[lang] .dropshadow form #divBday {
  margin-top: -15px;
}

body[lang] .dropshadow form input[type='radio'],
body[lang] .dropshadow form input[type='checkbox'] {
  width: 17px;
  height: 17px;
}

body[lang] .dropshadow form .button {
  margin: 25px auto 0;
}

body[lang] .dropshadow form #gdpr {
  margin-top: 24px;
  font-size: 14px;
}

body[lang='fr'] .main__title {
  padding-top: 75px;
  font-size: 49px;
}

body[lang='fr'] .how__steps .card {
  font-size: 21px;
}

body[lang='fr'] .how__steps .card__text {
  font-size: 18px;
}

body[lang='fr'] .why__title {
  font-size: 38px;
}

body[lang='fr'] .why__bullets {
  padding-top: 20px;
}

body[lang='fr'] .why__bullets .bullet {
  font-size: 20px;
}

body[lang='es'] .ready__title {
  font-size: 35px;
}

body[lang='tr'] .main__title,
body[lang='ru'] .main__title {
  padding-top: 50px;
  font-size: 48px;
}

body[lang='tr'] .main__button,
body[lang='ru'] .main__button {
  margin-top: 60px;
}

body[lang='tr'] .how__steps .card__text,
body[lang='ru'] .how__steps .card__text {
  font-size: 18px;
}

body[lang='tr'] .why__title,
body[lang='ru'] .why__title {
  font-size: 39px;
}

body[lang='ar'] {
  direction: rtl;
}

body[lang='ar'] .button .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body[lang='ar'] .button:hover .arrow, body[lang='ar'] .button:focus .arrow {
  -webkit-animation: bounceLeft 0.3s alternate ease infinite;
          animation: bounceLeft 0.3s alternate ease infinite;
}

body[lang='ar'] .main {
  background: url("./main_bg_1920_ar.png") no-repeat top center;
}

body[lang='ar'] .main header #logo {
  background-position: right;
}

body[lang='ar'] .how__steps {
  background: url("./steps_bg_1920_ar.png") no-repeat top center;
}

body[lang='ar'] .why {
  background-position: left;
}

body[lang='ar'] .ready {
  background: url("./ready_bg_1920_ar.png") no-repeat top center #1e3a5e;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] .button {
    font-size: 18px;
    border-radius: 6px;
    padding: 10px 20px;
  }
  body[lang] .button .arrow {
    background-size: 98%;
    padding: 10px;
    -webkit-margin-start: 8px;
            margin-inline-start: 8px;
  }
  body[lang] .title {
    font-size: 31px;
  }
  body[lang] .main {
    background: url("./main_bg_1200.png") no-repeat top center;
    padding-bottom: 60px;
  }
  body[lang] .main header {
    padding-top: 46px;
  }
  body[lang] .main__title {
    padding-top: 60px;
    font-size: 35px;
    max-width: 380px;
  }
  body[lang] .main__sub_title {
    padding-top: 34px;
    font-size: 20px;
    max-width: 411px;
  }
  body[lang] .main__button {
    margin-top: 43px;
  }
  body[lang] .many {
    padding-top: 34px;
  }
  body[lang] .many__cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
  }
  body[lang] .many__cards__title {
    padding-top: 10px;
    font-size: 22px;
  }
  body[lang] .many__cards .card {
    max-width: 360px;
  }
  body[lang] .many__cards .card.card3 {
    grid-column: span 2;
    margin: auto;
  }
  body[lang] .how {
    padding-top: 76px;
  }
  body[lang] .how__steps {
    margin-top: 20px;
    background: url("./steps_bg_1200.png") no-repeat top center;
    padding-bottom: 76px;
    -ms-grid-columns: 317px 262px;
        grid-template-columns: 317px 262px;
    gap: 55px 75px;
  }
  body[lang] .how__steps .card {
    font-size: 21px;
  }
  body[lang] .how__steps .card__icon {
    margin-top: 35px;
  }
  body[lang] .how__steps .card__title {
    padding-top: 40px;
  }
  body[lang] .how__steps .card__text {
    padding-top: 15px;
    font-size: 18px;
  }
  body[lang] .how__steps .card.card1 {
    -webkit-margin-start: 55px;
            margin-inline-start: 55px;
  }
  body[lang] .how__steps .card.card3 {
    grid-column: span 2;
    -webkit-margin-start: 218px;
            margin-inline-start: 218px;
    max-width: 263px;
  }
  body[lang] .why {
    background: none;
    padding-bottom: 58px;
  }
  body[lang] .why__bullets {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (335px)[2];
        grid-template-columns: repeat(2, 335px);
    gap: 24px 55px;
    background: url("./handshake_bg_1200.png") no-repeat bottom center;
    padding-bottom: 400px;
  }
  body[lang] .why__bullets .bullet {
    -ms-grid-columns: 35px 290px;
        grid-template-columns: 35px 290px;
  }
  body[lang] .why__bullets .bullet:not(:first-child) {
    padding-top: 0;
  }
  body[lang] .testimonials {
    background: url("./testimonials_bg_1200.png") no-repeat top center #f2f2f2;
    padding-block: 36px 65px;
  }
  body[lang] .testimonials__grid {
    gap: 24px;
  }
  body[lang] .testimonials__grid .testimonial {
    font-size: 19px;
    padding: 190px 50px 32px 30px;
  }
  body[lang] .testimonials__grid .testimonial__author {
    padding-top: 70px;
  }
  body[lang] .ready {
    background: url("./ready_bg_1200.png") no-repeat top center #1e3a5e;
    padding-block: 30px;
  }
  body[lang] .ready__title {
    font-size: 30px;
    max-width: 360px;
  }
  body[lang] .ready__text {
    padding-top: 35px;
    font-size: 21px;
    max-width: 360px;
  }
  body[lang] .ready__button {
    margin-top: 35px;
  }
  body[lang='fr'] .main__title {
    padding-top: 40px;
  }
  body[lang='fr'] .main__button {
    margin-top: 30px;
  }
  body[lang='fr'] .how__steps {
    gap: 23px 75px;
  }
  body[lang='fr'] .how__steps .card__title {
    padding-top: 34px;
    font-size: 20px;
  }
  body[lang='fr'] .how__steps .card__text {
    font-size: 16px;
  }
  body[lang='fr'] .testimonials__grid .testimonial__author {
    padding-top: 45px;
  }
  body[lang='fr'] .ready__title {
    font-size: 28px;
  }
  body[lang='fr'] .ready__text {
    padding-top: 20px;
  }
  body[lang='fr'] .ready__button {
    margin-top: 20px;
  }
  body[lang='es'] .how__steps {
    gap: 18px 75px;
  }
  body[lang='tr'] .main__title,
  body[lang='ru'] .main__title {
    font-size: 30px;
  }
  body[lang='tr'] .how__steps,
  body[lang='ru'] .how__steps {
    gap: 20px 75px;
  }
  body[lang='ru'] .how__steps .card3 {
    padding-top: 0;
  }
  body[lang='ar'] .main {
    background: url("./main_bg_1200_ar.png") no-repeat top center;
  }
  body[lang='ar'] .how__steps {
    background: url("./steps_bg_1200_ar.png") no-repeat top center;
  }
  body[lang='ar'] .ready {
    background: url("./ready_bg_1200_ar.png") no-repeat top center #1e3a5e;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] .button {
    font-size: 16px;
    padding: 8px 15px;
  }
  body[lang] .button .arrow {
    background-size: 94%;
  }
  body[lang] .title {
    font-size: 24px;
    text-align: center;
  }
  body[lang] .main {
    background: url("./main_bg_768.png") no-repeat top center;
    padding-bottom: 255px;
    text-align: center;
  }
  body[lang] .main header {
    padding-top: 22px;
  }
  body[lang] .main header #logo {
    height: 37px;
    background-size: auto 37px;
    background-position: center;
  }
  body[lang] .main__title {
    padding-top: 30px;
    font-size: 23px;
    max-width: 317px;
    margin: auto;
  }
  body[lang] .main__sub_title {
    padding-top: 20px;
    font-size: 16px;
    max-width: 310px;
    margin: auto;
  }
  body[lang] .main__button {
    display: block;
    margin: 20px auto;
  }
  body[lang] .many {
    text-align: center;
  }
  body[lang] .many__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0px;
  }
  body[lang] .many__cards__title {
    font-size: 20px;
  }
  body[lang] .many__cards .card {
    max-width: unset;
    margin: auto;
  }
  body[lang] .many__note {
    padding-top: 34px;
  }
  body[lang] .many__note__title {
    font-size: 18px;
  }
  body[lang] .many__note__text {
    font-size: 16px;
  }
  body[lang] .how {
    padding-top: 30px;
  }
  body[lang] .how__steps {
    background: url("./steps_bg_768.png") no-repeat top center;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 31px;
  }
  body[lang] .how__steps .card {
    font-size: 17px;
    padding: 40px 12px 30px 0;
  }
  body[lang] .how__steps .card.card1 {
    margin: auto;
    max-width: 190px;
  }
  body[lang] .how__steps .card.card1 .card__icon {
    margin-top: 18px;
    background-size: 70%;
  }
  body[lang] .how__steps .card.card2 {
    margin: auto;
    max-width: 190px;
  }
  body[lang] .how__steps .card.card2 .card__icon {
    margin-top: 18px;
    background-size: 70%;
  }
  body[lang] .how__steps .card.card3 {
    margin: auto;
    max-width: 190px;
  }
  body[lang] .how__steps .card.card3 .card__icon {
    margin-top: 18px;
    background-size: 70%;
  }
  body[lang] .how__steps .card__title {
    padding-top: 30px;
  }
  body[lang] .how__steps .card__text {
    padding-top: 10px;
    font-size: 15px;
  }
  body[lang] .why__bullets {
    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;
    gap: 20px;
    background: url("./handshake_bg_768.png") no-repeat bottom center;
    padding-bottom: 220px;
  }
  body[lang] .why__bullets .bullet {
    -ms-grid-columns: 25px 245px;
        grid-template-columns: 25px 245px;
    gap: 5px;
    font-size: 16px;
  }
  body[lang] .why__bullets .bullet::before {
    padding: 12px 13px;
    background-size: 90%;
  }
  body[lang] .testimonials {
    background: url("./testimonials_bg_768.png") no-repeat top center #f2f2f2;
    padding-block: 24px 45px;
  }
  body[lang] .testimonials__grid {
    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;
    gap: 17px;
  }
  body[lang] .testimonials__grid .testimonial {
    font-size: 15px;
    padding: 142px 40px 40px 40px;
    max-width: 280px;
  }
  body[lang] .testimonials__grid .testimonial__author {
    padding-top: 50px;
  }
  body[lang] .ready {
    background: #1e3a5e;
    text-align: center;
  }
  body[lang] .ready__title {
    font-size: 22px;
    max-width: 285px;
    margin: auto;
  }
  body[lang] .ready__text {
    padding-top: 25px;
    font-size: 18px;
    max-width: 285px;
    margin: auto;
  }
  body[lang] .ready__button {
    margin: 20px auto 0;
  }
  body[lang] .dropshadow form {
    padding: 60px 30px;
  }
  body[lang='fr'] .how__steps,
  body[lang='ru'] .how__steps {
    gap: 20px;
  }
  body[lang='fr'] .how__steps .card,
  body[lang='ru'] .how__steps .card {
    padding: 30px 12px 30px 0;
  }
  body[lang='fr'] .how__steps .card__title,
  body[lang='ru'] .how__steps .card__title {
    padding-top: 22px;
    font-size: 17px;
  }
  body[lang='fr'] .how__steps .card__text,
  body[lang='ru'] .how__steps .card__text {
    font-size: 14px;
  }
  body[lang='fr'] .how__steps .card.card3 .card__title,
  body[lang='ru'] .how__steps .card.card3 .card__title {
    font-size: 15px;
  }
  body[lang='es'] .how__steps {
    gap: 33px;
  }
  body[lang='es'] .how__steps .card {
    padding: 30px 12px 30px 0;
  }
  body[lang='es'] .how__steps .card__title {
    padding-top: 22px;
    font-size: 17px;
  }
  body[lang='es'] .how__steps .card__text {
    font-size: 14px;
  }
  body[lang='tr'] .how__steps .card {
    padding: 40px 12px 0px 0;
  }
  body[lang='tr'] .how__steps .card.card3 {
    padding-top: 56px;
  }
  body[lang='ru'] .how__steps .card {
    padding-bottom: 23px;
  }
  body[lang='ar'] .how__steps .card {
    padding-bottom: 56px;
  }
  body[lang='ar'] .testimonials__grid .testimonial {
    padding-top: 165px;
  }
}
/*# sourceMappingURL=style.css.map */