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

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

body {
  position: relative;
  font-family: 'Poppins', sans-serif;
}

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;
}

#sticky {
  position: fixed;
  width: 100%;
  top: 0;
  border-radius: 0px;
  z-index: 10;
}

body[lang] .button {
  font-size: 20px;
  font-weight: 700;
  padding: 12px 32px;
  color: #fff;
  background-color: #dc2626;
  border: none;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(220, 38, 38, 0.4);
          box-shadow: 0 4px 16px 0 rgba(220, 38, 38, 0.4);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
  cursor: pointer;
}

body[lang] .button:hover, body[lang] .button:focus {
  background-color: #c81010;
}

body[lang] .header {
  padding-block: 10px;
  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;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}

body[lang] .header #logo {
  background: url("./logo.svg") no-repeat top left;
  background-size: contain;
  padding: 23px 90px;
}

body[lang] .main {
  padding-block: 96px;
  background-color: #1a2b49;
  color: #fff;
}

body[lang] .main .container {
  padding-block: 50px 60px;
  background: url("./main_bg_1920.png") no-repeat top right;
}

body[lang] .main__note {
  font-size: 14px;
  font-weight: 700;
  border-radius: 25px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  max-width: 513px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body[lang] .main__title {
  padding-top: 20px;
  font-size: 48px;
  line-height: 100%;
  max-width: 513px;
}

body[lang] .main__subtitle {
  padding-top: 20px;
  color: #d1d5db;
  font-size: 20px;
  max-width: 513px;
}

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

body[lang] .bullets {
  padding-block: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

body[lang] .bullets .bullet {
  padding: 20px;
}

body[lang] .bullets .bullet__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: #1a2b49;
  font-size: 20px;
  font-weight: 700;
  max-width: 235px;
  margin: auto;
}

body[lang] .bullets .bullet.bullet2 .bullet__title {
  max-width: 195px;
}

body[lang] .bullets .bullet1 .bullet__title::before {
  content: '';
  background: url("./bullet1_icon.svg") no-repeat top center;
  padding: 14px;
}

body[lang] .bullets .bullet2 .bullet__title::before {
  content: '';
  background: url("./bullet2_icon.svg") no-repeat top center;
  padding: 14px;
}

body[lang] .bullets .bullet3 .bullet__title::before {
  content: '';
  background: url("./bullet3_icon.svg") no-repeat top center;
  padding: 14px;
}

body[lang] .bullets .bullet4 .bullet__title::before {
  content: '';
  background: url("./bullet4_icon.svg") no-repeat top center;
  padding: 14px;
}

body[lang] .bullets .bullet__text {
  padding-top: 8px;
  color: #4a5568;
  font-size: 16px;
}

body[lang] .process {
  padding-block: 60px;
  background: linear-gradient(120deg, #f0f4ff 0%, #f8f9fa 50%, #e8f5e9 100%);
}

body[lang] .process__title {
  color: #1a2b49;
  text-align: center;
  font-size: 36px;
}

body[lang] .process__subtitle {
  padding-top: 16px;
  color: #4a5568;
  text-align: center;
  font-size: 20px;
}

body[lang] .process__cards {
  padding-top: 56px;
  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;
  counter-reset: step-counter1;
}

body[lang] .process__cards .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 11px 21px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  max-width: 843px;
  counter-increment: step-counter;
}

body[lang] .process__cards .wrapper::before,
body[lang] .process__cards .wrapper .card__title::before {
  content: "0" counter(step-counter);
  color: #0056b3;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  background-color: #eff6ff;
}

body[lang] .process__cards .wrapper.wrapper4::before,
body[lang] .process__cards .wrapper.wrapper4 .card__title::before {
  color: #28a745;
}

body[lang] .process__cards .wrapper .card {
  min-width: 715px;
}

body[lang] .process__cards .wrapper .card__title {
  color: #1a2b49;
  font-size: 20px;
  font-weight: 700;
}

body[lang] .process__cards .wrapper .card__title::before {
  display: none;
}

body[lang] .process__cards .wrapper .card__text {
  padding-top: 5px;
  color: #4a5568;
  font-size: 16px;
}

body[lang] .process__cards .wrapper::after {
  content: '';
  border-radius: 25px;
  background-color: #0056b34d;
  width: 4px;
  height: 50px;
}

body[lang] .visa {
  padding-block: 60px;
}

body[lang] .visa__title {
  color: #1a2b49;
  text-align: center;
  font-size: 36px;
}

body[lang] .visa__subtitle {
  padding-top: 16px;
  color: #4a5568;
  text-align: center;
  font-size: 20px;
  max-width: 635px;
  margin: auto;
}

body[lang] .visa__note {
  color: #1a2b49;
  font-size: 16px;
  text-align: center;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #0056b3;
  background-color: #eff6ff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
}

body[lang] .visa__cards {
  padding-top: 48px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 32px;
}

body[lang] .visa__cards .card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  background-color: #f9fafb;
}

body[lang] .visa__cards .card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  color: #1a2b49;
  font-size: 20px;
  font-weight: 700;
}

body[lang] .visa__cards .card__title::before {
  content: '';
  padding: 12px;
}

body[lang] .visa__cards .card1 .card__title::before {
  background: url("./visa_card1_icon.svg") no-repeat center;
}

body[lang] .visa__cards .card2 .card__title::before {
  background: url("./visa_card2_icon.svg") no-repeat center;
}

body[lang] .visa__cards .card3 .card__title::before {
  background: url("./visa_card3_icon.svg") no-repeat center;
}

body[lang] .visa__cards .card4 .card__title::before {
  background: url("./visa_card4_icon.svg") no-repeat center;
}

body[lang] .visa__cards .card__text {
  padding-top: 8px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  color: #4a5568;
  font-size: 16px;
}

body[lang] .why {
  padding-block: 60px;
  color: #fff;
  background-color: #1a2b49;
}

body[lang] .why .container {
  background: url("./why_bg_1920.png") no-repeat center right;
  padding-bottom: 33px;
}

body[lang] .why__title {
  font-size: 36px;
}

body[lang] .why__subtitle {
  padding-top: 20px;
  font-size: 20px;
  max-width: 563px;
}

body[lang] .why__cards {
  padding-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 260px;
      grid-template-columns: 260px 260px;
  gap: 16px;
}

body[lang] .why__cards .card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #4a5b7c;
  background-color: #2a3b5c;
}

body[lang] .why__cards .card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
}

body[lang] .why__cards .card__title::before {
  content: '';
  padding: 10px;
}

body[lang] .why__cards .card1 .card__title::before {
  background: url("./why_card1_icon.svg") no-repeat center;
}

body[lang] .why__cards .card2 .card__title::before {
  background: url("./why_card2_icon.svg") no-repeat center;
}

body[lang] .why__cards .card3 .card__title::before {
  background: url("./why_card3_icon.svg") no-repeat center;
}

body[lang] .why__cards .card4 .card__title::before {
  background: url("./why_card4_icon.svg") no-repeat center;
}

body[lang] .why__cards .card__text {
  padding-top: 5px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 140%;
}

body[lang] .faqs {
  padding-block: 60px;
  background-color: #f8f9fa;
}

body[lang] .faqs__title {
  color: #1a2b49;
  text-align: center;
  font-size: 36px;
}

body[lang] .faqs__subtitle {
  padding-top: 16px;
  color: #4a5568;
  text-align: center;
  font-size: 20px;
}

body[lang] .faqs .wrapper {
  padding-top: 48px;
  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: 16px;
}

body[lang] .faqs .wrapper .faq {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  max-width: 728px;
}

body[lang] .faqs .wrapper .faq__question {
  color: #1a2b49;
  font-size: 20px;
  font-weight: 700;
}

body[lang] .faqs .wrapper .faq__answer {
  padding-top: 8px;
  color: #4a5568;
  font-size: 16px;
}

body[lang] .ready {
  padding-block: 60px;
  color: #fff;
  background-color: #1a2b49;
}

body[lang] .ready .container {
  background: url("./ready_bg_1920.png") no-repeat top left;
  padding-bottom: 36px;
}

body[lang] .ready__title {
  padding-top: 30px;
  -webkit-padding-start: 605px;
          padding-inline-start: 605px;
  font-size: 36px;
  line-height: 140%;
}

body[lang] .ready__subtitle {
  padding-top: 16px;
  -webkit-padding-start: 605px;
          padding-inline-start: 605px;
  font-size: 20px;
}

body[lang] .ready__button {
  margin-top: 16px;
  -webkit-margin-start: 605px;
          margin-inline-start: 605px;
}

body[lang] .footer {
  padding-block: 60px;
  background-color: #d1d5db;
}

body[lang] .footer__text,
body[lang] .footer a {
  color: #000;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
}

body[lang] .dropshadow {
  padding-top: 310px;
  position: absolute;
  top: 0;
  background-color: rgba(12, 50, 91, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  width: 100%;
  height: 100%;
  z-index: 10;
}

body[lang] .dropshadow .form {
  position: relative;
  padding: 50px 140px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #0056b3;
  max-width: 995px;
  margin: auto;
}

body[lang] .dropshadow .form__title {
  color: #1a2b49;
  text-align: center;
  font-size: 24px;
}

body[lang] .dropshadow .form__close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("./close.svg") no-repeat center;
  width: 51px;
  height: 51px;
  cursor: pointer;
}

body[lang] .dropshadow .form .rows {
  padding-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 35px 33px;
}

body[lang] .dropshadow .form .rows input,
body[lang] .dropshadow .form .rows select {
  padding: 15px 20px;
  font-size: 16px;
  color: rgba(26, 43, 73, 0.8);
  background-color: #fff;
  border-radius: 10px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  -webkit-border-radius: 10px;
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -moz-border-radius: 10px;
  /* Firefox 1-3.6 */
  border: 1px solid #0056b3;
  width: 100%;
}

body[lang] .dropshadow .form .rows input::-webkit-input-placeholder,
body[lang] .dropshadow .form .rows select::-webkit-input-placeholder {
  color: rgba(26, 43, 73, 0.8);
}

body[lang] .dropshadow .form .rows input:-ms-input-placeholder,
body[lang] .dropshadow .form .rows select:-ms-input-placeholder {
  color: rgba(26, 43, 73, 0.8);
}

body[lang] .dropshadow .form .rows input::-ms-input-placeholder,
body[lang] .dropshadow .form .rows select::-ms-input-placeholder {
  color: rgba(26, 43, 73, 0.8);
}

body[lang] .dropshadow .form .rows input::placeholder,
body[lang] .dropshadow .form .rows select::placeholder {
  color: rgba(26, 43, 73, 0.8);
}

body[lang] .dropshadow .form .rows input:focus,
body[lang] .dropshadow .form .rows select:focus {
  outline: none;
  border: 2px solid #0056b3;
  color: #0056b3;
}

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

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

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

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

body[lang] .dropshadow .form .rows checkbox-news-letter {
  grid-column: span 2;
}

body[lang] .dropshadow .form .rows input[type='radio'],
body[lang] .dropshadow .form .rows input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #0056b3;
}

body[lang] .dropshadow .form .rows #divBday {
  margin-top: -20px;
  color: #0056b3;
}

body[lang] .dropshadow .form .rows #divSendEmail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #000;
}

body[lang] .dropshadow .form #gdpr {
  margin-top: 20px;
  color: #1a2b49;
}

body[lang] .dropshadow .form #gdpr .anchor {
  color: #1a2b49;
  text-decoration: none;
  font-weight: 700;
}

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

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

body[lang='ar'] .main .container {
  background-position: top left;
  padding-bottom: 108px;
}

body[lang='ar'] .why .container {
  background-position: top left;
  padding-bottom: 53px;
}

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

body[lang='ar'] .ready .container {
  background-position: top right;
  padding-bottom: 15px;
}

body[lang='ar'] .ready__title {
  padding-top: 0;
}

body[lang='es'] .main .container {
  padding-block: 20px 12px;
}

body[lang='es'] .main__note, body[lang='es'] .main__title, body[lang='es'] .main__subtitle {
  max-width: 533px;
}

body[lang='es'] .ready .container {
  padding-bottom: 15px;
}

body[lang='es'] .ready__title {
  padding-top: 0;
}

body[lang='fr'] .main .container {
  padding-block: 30px 16px;
}

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

body[lang='fr'] .main__note, body[lang='fr'] .main__title, body[lang='fr'] .main__subtitle {
  max-width: 495px;
}

body[lang='fr'] .ready .container {
  padding-bottom: 23px;
}

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

body[lang='ru'] .main .container {
  padding-block: 30px 27px;
}

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

body[lang='ru'] .ready .container {
  padding-bottom: 28px;
}

body[lang='ru'] .ready__title {
  padding-top: 7px;
}

body[lang='es'] .why .container,
body[lang='fr'] .why .container,
body[lang='ru'] .why .container {
  padding-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] .button {
    font-size: 18px;
  }
  body[lang] .header #logo {
    padding: 20px 82px;
  }
  body[lang] .main {
    padding-block: 40px 0;
    text-align: center;
  }
  body[lang] .main .container {
    padding-block: 0 485px;
    background: url("./main_bg_1200.png") no-repeat center bottom;
  }
  body[lang] .main__note {
    margin: auto;
  }
  body[lang] .main__title {
    font-size: 40px;
    max-width: unset;
  }
  body[lang] .main__subtitle {
    max-width: unset;
  }
  body[lang] .main__button {
    margin: 20px auto 0;
  }
  body[lang] .bullets {
    padding-block: 40px;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    text-align: unset;
  }
  body[lang] .bullets .bullet {
    padding: 12px;
  }
  body[lang] .bullets .bullet__title,
  body[lang] .bullets .bullet.bullet2 .bullet__title {
    max-width: unset;
    margin: unset;
  }
  body[lang] .bullets .bullet__title::before,
  body[lang] .bullets .bullet.bullet2 .bullet__title::before {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  body[lang] .process {
    padding-block: 40px;
  }
  body[lang] .process__title {
    font-size: 30px;
  }
  body[lang] .process__subtitle {
    font-size: 18px;
  }
  body[lang] .process__cards {
    padding-top: 30px;
  }
  body[lang] .process__cards .wrapper {
    max-width: unset;
  }
  body[lang] .process__cards .wrapper .card {
    min-width: unset;
  }
  body[lang] .visa {
    padding-block: 40px;
  }
  body[lang] .visa__title {
    font-size: 30px;
  }
  body[lang] .visa__subtitle {
    font-size: 18px;
    max-width: unset;
  }
  body[lang] .visa__cards {
    padding-top: 30px;
    gap: 20px;
  }
  body[lang] .visa__cards .card {
    padding: 16px;
  }
  body[lang] .visa__cards .card__title {
    gap: 8px;
    font-size: 18px;
  }
  body[lang] .visa__cards .card__text {
    -webkit-padding-start: 32px;
            padding-inline-start: 32px;
  }
  body[lang] .why {
    padding-block: 40px 0;
  }
  body[lang] .why .container {
    background: url("./why_bg_1200.png") no-repeat center bottom;
    background-size: contain;
    padding-bottom: 440px;
  }
  body[lang] .why__title {
    font-size: 30px;
    text-align: center;
  }
  body[lang] .why__subtitle {
    padding-top: 12px;
    font-size: 18px;
    text-align: center;
    max-width: unset;
  }
  body[lang] .why__cards {
    padding-top: 30px;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  body[lang] .why__cards .card {
    padding: 20px;
  }
  body[lang] .why__cards .card__title {
    -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;
    gap: 8px;
    font-size: 20px;
  }
  body[lang] .why__cards .card__text {
    font-size: 16px;
  }
  body[lang] .faqs {
    padding-block: 40px;
  }
  body[lang] .faqs__title {
    font-size: 30px;
  }
  body[lang] .faqs__subtitle {
    font-size: 18px;
  }
  body[lang] .faqs .wrapper {
    padding-top: 30px;
  }
  body[lang] .faqs .wrapper .faq {
    max-width: unset;
  }
  body[lang] .ready {
    padding-block: 40px;
  }
  body[lang] .ready .container {
    background: url("./ready_bg_1200.png") no-repeat top left;
    padding-bottom: 50px;
  }
  body[lang] .ready__title {
    padding-top: 40px;
    -webkit-padding-start: 326px;
            padding-inline-start: 326px;
    font-size: 30px;
  }
  body[lang] .ready__subtitle {
    font-size: 18px;
    -webkit-padding-start: 326px;
            padding-inline-start: 326px;
  }
  body[lang] .ready__button {
    -webkit-margin-start: 326px;
            margin-inline-start: 326px;
  }
  body[lang] .footer {
    padding-block: 40px;
  }
  body[lang] .dropshadow .form {
    padding: 50px 30px;
    max-width: 765px;
  }
  body[lang] .dropshadow .form .rows {
    gap: 50px 33px;
  }
  body[lang='ar'] .process__cards .wrapper {
    max-width: 559px;
  }
  body[lang='ar'] .why__title {
    padding-top: 0;
  }
  body[lang='ar'] .ready .container {
    background-position: top right;
    padding-bottom: 30px;
  }
  body[lang='ar'] .ready__title {
    padding-top: 18px;
  }
  body[lang='es'] .ready .container,
  body[lang='fr'] .ready .container {
    padding-bottom: 17px;
  }
  body[lang='es'] .ready__title,
  body[lang='fr'] .ready__title {
    padding-top: 5px;
  }
  body[lang='ru'] .ready .container {
    padding-bottom: 40px;
  }
  body[lang='ru'] .ready__title {
    padding-top: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] .button {
    font-size: 16px;
    padding: 8px 15px;
  }
  body[lang] .header #logo {
    padding: 16px 63px;
  }
  body[lang] .main .container {
    padding-block: 0 340px;
    background: url("./main_bg_768.png") no-repeat center bottom;
  }
  body[lang] .main__note {
    font-size: 12px;
  }
  body[lang] .main__title {
    font-size: 28px;
    line-height: 130%;
  }
  body[lang] .main__subtitle {
    font-size: 18px;
  }
  body[lang] .bullets {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body[lang] .bullets .bullet__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body[lang] .bullets .bullet__text {
    -webkit-padding-start: 35px;
            padding-inline-start: 35px;
  }
  body[lang] .process__title {
    font-size: 24px;
  }
  body[lang] .process__cards {
    padding-top: 20px;
  }
  body[lang] .process__cards .wrapper::before {
    display: none;
  }
  body[lang] .process__cards .wrapper .card__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    font-size: 18px;
  }
  body[lang] .process__cards .wrapper .card__title::before {
    display: inline-block;
  }
  body[lang] .visa__title {
    font-size: 24px;
  }
  body[lang] .visa__cards {
    padding-top: 20px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 10px;
  }
  body[lang] .visa__cards .card__text {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  body[lang] .why .container {
    background: url("./why_bg_768.png") no-repeat center bottom;
    padding-bottom: 425px;
  }
  body[lang] .why__title {
    font-size: 24px;
  }
  body[lang] .why__subtitle {
    padding-top: 20px;
  }
  body[lang] .why__cards {
    padding-top: 20px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 10px;
  }
  body[lang] .why__cards .card__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    font-size: 18px;
  }
  body[lang] .faqs__title {
    font-size: 24px;
  }
  body[lang] .faqs .wrapper {
    padding-top: 20px;
  }
  body[lang] .faqs .wrapper .faq {
    padding: 16px;
  }
  body[lang] .faqs .wrapper .faq__question {
    font-size: 18px;
  }
  body[lang] .ready .container {
    background: url("./ready_bg_768.png") no-repeat center top;
    padding-bottom: 0;
    text-align: center;
  }
  body[lang] .ready__title {
    padding-top: 330px;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    font-size: 24px;
  }
  body[lang] .ready__subtitle {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  body[lang] .ready__button {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    margin: 16px auto 0;
  }
  body[lang] .dropshadow {
    padding-top: 260px;
  }
  body[lang] .dropshadow .form {
    padding: 70px 20px 40px;
    max-width: unset;
  }
  body[lang] .dropshadow .form__title {
    font-size: 20px;
  }
  body[lang] .dropshadow .form .rows {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  body[lang] .dropshadow .form .rows checkbox-news-letter {
    grid-column: span 1;
  }
  body[lang] .dropshadow .form__button {
    font-size: 19px;
    padding: 12px 15px;
  }
  body[lang='ar'] .process__cards .wrapper {
    max-width: 495px;
  }
  body[lang='fr'] .header #logo {
    padding: 13px 52px;
  }
  body[lang='fr'] .header .button {
    font-size: 11px;
  }
  body[lang='es'] .header #logo {
    padding: 14px 55px;
  }
  body[lang='es'] .header .button {
    font-size: 14px;
  }
  body[lang='ru'] .header .button {
    font-size: 13px;
  }
}
/*# sourceMappingURL=style.css.map */