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

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  position: relative;
  font-family: Montserrat;
}

body[lang='tr'] {
  font-family: arial;
}

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

body[lang] .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;
}

body[lang] .button {
  margin: auto;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 30px;
  background-color: #921b36;
  padding: 15px 53px;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
}

body[lang] .button#applyBTN {
  margin-top: 25px;
}

body[lang] .button:hover {
  background-color: #6e1428;
}

body[lang] header {
  padding: 12px 0 11px;
  -webkit-box-shadow: 0 1px 16px rgba(23, 47, 98, 0.38);
          box-shadow: 0 1px 16px rgba(23, 47, 98, 0.38);
}

body[lang] header .logo {
  background-image: url(logo.png);
  background-repeat: no-repeat;
  width: 107px;
  height: 51px;
  background-size: contain;
}

body[lang] main {
  padding: 25px 0 141px;
  background-image: url(webp/bg1200.webp);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  max-height: 475px;
  margin-top: 16px;
}

body[lang] main #title {
  margin: auto;
  color: #394d80;
  font-size: 43px;
  font-weight: 900;
  max-width: 672px;
}

body[lang] main #subtitle {
  margin: auto;
  color: #394d80;
  font-size: 23px;
  font-weight: 400;
  margin-top: 10px;
  max-width: 652px;
}

body[lang] #cards {
  padding: 50px 0 50px;
  background-color: #f2f6ff;
}

body[lang] #cards .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 26px 32px;
  color: #394d80;
}

body[lang] #cards .container .card {
  min-height: 300px;
  position: relative;
  background-color: white;
  font-size: 27px;
  font-weight: 400;
  text-align: center;
  -webkit-box-shadow: 7px 13px 43px rgba(28, 30, 35, 0.2);
          box-shadow: 7px 13px 43px rgba(28, 30, 35, 0.2);
  z-index: 1000;
  border-radius: 8px;
}

body[lang] #cards .container .card#bussnies .card--front {
  background-image: url(webp/1.webp);
}

body[lang] #cards .container .card#exchange .card--front {
  background-image: url(webp/2.webp);
}

body[lang] #cards .container .card#visitor .card--front {
  background-image: url(webp/3.webp);
}

body[lang] #cards .container .card#education .card--front {
  background-image: url(webp/4.webp);
}

body[lang] #cards .container .card#media .card--front {
  background-image: url(webp/5.webp);
}

body[lang] #cards .container .card#visa .card--front {
  background-image: url(webp/6.webp);
}

body[lang] #cards .container .card#employment .card--front {
  background-image: url(webp/7.webp);
}

body[lang] #cards .container .card#trade .card--front {
  background-image: url(webp/8.webp);
}

body[lang] #cards .container .card#per_employment .card--front {
  background-image: url(webp/9.webp);
}

body[lang] #cards .container .card#family .card--front {
  background-image: url(webp/10.webp);
}

body[lang] #cards .container .card#investor .card--front {
  background-image: url(webp/11.webp);
}

body[lang] #cards .container .card#human .card--front {
  background-image: url(webp/12.webp);
}

body[lang] #cards .container .card--back, body[lang] #cards .container .card--front {
  background-repeat: no-repeat;
  background-position: center top;
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  border-radius: 8px;
}

body[lang] #cards .container .card--front {
  z-index: 900;
  -webkit-transform: perspective(900px) rotateY(0);
          transform: perspective(900px) rotateY(0);
  padding-top: 240px;
}

body[lang] #cards .container .card--back {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  z-index: 800;
  background-color: #394d80;
  color: white;
  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;
  font-size: 15px;
  padding: 0 20px;
}

body[lang] #cards .container .card--back.xl {
  font-size: 23px;
}

body[lang] #cards .container .card--back.md {
  font-size: 20px;
}

body[lang] #cards .container .card--back.sm {
  font-size: 16px;
  line-height: 22px;
}

body[lang] #cards .container .card#per_employment .card--back.sm, body[lang] #cards .container .card#employment .card--back.sm {
  font-size: 14px;
}

body[lang] #cards .container .card:hover .card--front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transform: perspective(900px) rotateY(180deg);
          transform: perspective(900px) rotateY(180deg);
}

body[lang] #cards .container .card:hover .card--back {
  z-index: 950;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform: perspective(900px) rotateY(0deg);
          transform: perspective(900px) rotateY(0deg);
}

body[lang] aside {
  background-image: -webkit-gradient(linear, left top, right top, from(#4d73d2), to(#3f8c8c));
  background-image: linear-gradient(to right, #4d73d2 0%, #3f8c8c 100%);
  padding: 49px 0 49px;
}

body[lang] aside .bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body[lang] aside .bullets .bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 360px;
}

body[lang] aside .bullets .icon {
  margin: auto;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

body[lang] aside .bullets .text {
  margin: auto;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
}

body[lang] aside .bullets #icon1 {
  background-image: url(webp/icon1.webp);
}

body[lang] aside .bullets #icon2 {
  background-image: url(webp/icon2.webp);
}

body[lang] aside .bullets #icon3 {
  background-image: url(webp/icon3.webp);
}

body[lang] #form {
  margin: auto;
  background-color: #394d80;
  padding: 51px 0 48px;
  text-align: center;
}

body[lang] #form .form_title {
  margin: auto;
  font-size: 34px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

body[lang] #form .form_container {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

body[lang] #form .form_container input,
body[lang] #form .form_container select {
  height: 40px;
  border-radius: 3px;
  padding: 0 10px;
  width: 100%;
  border: 2px solid #d7d7d7;
  font-family: Montserrat;
}

body[lang] #form .form_container input:focus,
body[lang] #form .form_container select:focus {
  outline: 2px solid #921b36;
}

body[lang] #form .form_container .Form_Element_Holder_Div {
  margin-bottom: 20px;
  position: relative;
}

body[lang] #form .form_container .Form_Element_Holder_Div[isvalide='false'] {
  min-height: 62px;
}

body[lang] #form .form_container .Form_Element_title {
  position: absolute;
  font-size: 13px;
  top: -17px;
  color: white;
  font-weight: 700;
  text-align: initial;
  font-family: Montserrat;
}

body[lang] #form .form_container input[type='radio'] {
  width: initial;
  height: initial;
  outline: none;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

body[lang] #form .form_container #divValidPassportRadios {
  color: white;
}

body[lang] #form .form_container #passport_label {
  width: 100%;
  text-align: initial;
}

body[lang] #form .form_container .passport_input_item {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

body[lang] #form .form_container .passport_input_item:first-of-type {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

body[lang] #form #gdpr {
  margin-top: 16px;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

body[lang] footer {
  padding: 31px 0 69px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #394d80;
}

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

body[lang='ar'] header,
body[lang='ar'] footer {
  direction: ltr;
}

body[lang='es'] main #title {
  font-size: 32px;
}

body[lang='es'] main #subtitle {
  font-size: 20px;
}

body[lang='en'] #cards .container .card--back.sm {
  font-size: 19px;
}

body[lang='fr'] main {
  padding: 5px 0 141px;
}

body[lang='fr'] #cards .container .card#visa .card--front {
  font-size: 21px;
}

body.mobile #cards .container #bussnies {
  background-image: url(webp/1.webp);
}

body.mobile #cards .container #exchange {
  background-image: url(webp/2.webp);
}

body.mobile #cards .container #visitor {
  background-image: url(webp/3.webp);
}

body.mobile #cards .container #education {
  background-image: url(webp/4.webp);
}

body.mobile #cards .container #media {
  background-image: url(webp/5.webp);
}

body.mobile #cards .container #visa {
  background-image: url(webp/6.webp);
}

body.mobile #cards .container #employment {
  background-image: url(webp/7.webp);
}

body.mobile #cards .container #trade {
  background-image: url(webp/8.webp);
}

body.mobile #cards .container #per_employment {
  background-image: url(webp/9.webp);
}

body.mobile #cards .container #family {
  background-image: url(webp/10.webp);
}

body.mobile #cards .container #investor {
  background-image: url(webp/11.webp);
}

body.mobile #cards .container #human {
  background-image: url(webp/12.webp);
}

body.mobile #cards .container .card {
  min-height: 280px;
  font-size: 30px;
  z-index: initial;
  padding-top: 220px;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 290px;
  overflow: hidden;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  will-change: contents;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

body.mobile #cards .container .card--back, body.mobile #cards .container .card--front {
  background-image: none !important;
  position: static;
  -webkit-backface-visibility: initial;
          backface-visibility: initial;
  -webkit-transition: none;
  transition: none;
  background-color: white;
  color: #394d80;
  height: initial;
  z-index: initial;
  -webkit-transform: none;
          transform: none;
  padding: 0;
  border-radius: 0;
}

body.mobile #cards .container .card::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-image: url(arrow.png);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

body.mobile #cards .container .card.open::after {
  -webkit-transform: translate(-50%, 0) rotate(180deg);
          transform: translate(-50%, 0) rotate(180deg);
}

body.mobile #cards .container .card.open .card--front {
  padding-bottom: 10px;
}

body.mobile #cards .container .card.open .card--back {
  padding-bottom: 40px;
  padding-top: 10px;
}

body.mobile #cards .container .card--front {
  padding-bottom: 50px;
  font-size: 18px;
  font-weight: 700;
  padding-top: 8px;
}

body.mobile #cards .container .card--back {
  height: 100%;
  color: #01031a;
  font-size: 15px;
  font-weight: 400;
  padding: 150px 10px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.mobile #cards .container .card:hover .card--back,
body.mobile #cards .container .card:hover .card--front {
  -webkit-transform: none;
          transform: none;
  z-index: initial;
}

body[lang='tr'] main {
  font-family: 'Poppins';
}

body[lang='tr'] main #title {
  font-size: 36px;
}

body[lang='pt'] main #title {
  font-size: 31px;
}

body[lang='pt'] #cards .container .card#visa .card--front {
  font-size: 20px;
}

body[lang='ar'] aside .bullets .text {
  font-size: 19px;
}

body[lang] #cards .container .card#visa .card--front {
  font-size: 21px;
}

@media only screen and (max-width: 1199px) {
  .mobileButton {
    display: none;
    position: fixed !important;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 100%;
    z-index: 99999;
    border-radius: 0 !important;
    bottom: 0;
    left: 50%;
  }
  body[lang] .container {
    max-width: 768px;
  }
  body[lang] .button {
    font-size: 19px;
    padding: 15px 32px;
    margin-top: 20px;
  }
  body[lang] header {
    padding: 10px 0 11px;
  }
  body[lang] header .logo {
    background-image: url(logo.png);
    width: 75px;
    height: 36px;
  }
  body[lang] main {
    background-image: url(webp/bg768.webp);
    padding: 20px 0 57px;
  }
  body[lang] main #title {
    font-size: 37px;
    max-width: none;
  }
  body[lang] main #subtitle {
    font-size: 23px;
    margin-top: 10px;
    max-width: none;
  }
  body[lang] #cards {
    padding: 20px 0 72px;
  }
  body[lang] #cards .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
  }
  body[lang] #cards .container .card {
    border-radius: 8px;
  }
  body[lang] aside {
    padding: 32px 0 34px;
  }
  body[lang] aside .bullets {
    margin: auto;
  }
  body[lang] aside .bullets .bullet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-margin-end: 25px;
            margin-inline-end: 25px;
  }
  body[lang] aside .bullets .icon {
    margin: auto;
    width: 40px;
    height: 38px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body[lang] aside .bullets .text {
    font-size: 16px;
    margin-top: 13px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  body[lang] #form {
    padding: 32px 0 27px;
  }
  body[lang] #form .form_title {
    font-size: 34px;
  }
  body[lang] #form .form_container {
    margin-top: 31px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0;
  }
  body[lang] #form .form_container #passport_label {
    width: initial;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
  }
  body[lang] #form .form_container .Form_Element_Holder_Div {
    margin-bottom: 23px;
    position: relative;
  }
  body[lang] #form .form_container #divValidPassport {
    margin-bottom: 0;
  }
  body[lang] #form .form_container .Form_Element_title {
    font-size: 13px;
  }
  body[lang] #form .form_container .passport_input_item {
    -webkit-margin-start: 5px;
            margin-inline-start: 5px;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
  }
  body[lang] #form #gdpr {
    margin-top: 16px;
  }
  body[lang] footer {
    padding: 31px 0 33px;
  }
  body[lang='es'] #cards .container .card#per_employment .card--back.sm {
    font-size: 12px;
    line-height: 18px;
  }
  body[lang='es'] main #title {
    font-size: 30px;
  }
  body[lang='fr'] main #title {
    font-size: 26px;
  }
  body[lang='fr'] main #subtitle {
    font-size: 19px;
  }
  body[lang='fr'] #cards .container .card#per_employment .card--back.sm {
    font-size: 12px;
    line-height: 18px;
  }
  body[lang='fr'] #cards .container .card#visa .card--front {
    font-size: 17px;
  }
  body[lang='fr'] #form .form_title {
    font-size: 24px;
  }
  body[lang='ru'] main {
    padding: 0 0 20px;
  }
  body[lang='pt'] .button#applyBTN {
    margin-top: 20px;
  }
  body[lang='pt'] main {
    padding: 20px 0 20px;
  }
  body[lang='pt'] main #title {
    font-size: 34px;
  }
  body[lang='pt'] #cards .container .card#visa .card--front {
    font-size: 17px;
  }
  body[lang='ar'] aside .bullets {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  body[lang='ar'] aside .bullets .bullet {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
  body[lang='ar'] aside .bullets .text {
    font-size: 19px;
  }
}

@media only screen and (max-width: 767px) {
  body[lang] .container {
    max-width: none;
  }
  body[lang] .button {
    font-size: 16px;
    padding: 16px 56px;
    margin-top: 20px;
  }
  body[lang] .button:focus {
    background-color: #6e1428;
  }
  body[lang] header {
    padding: 9px 0 7px;
  }
  body[lang] header .logo {
    background-image: url(logo.png);
    width: 72px;
    height: 35px;
  }
  body[lang] main {
    padding: 27px 0 35px;
    background-image: url(webp/mobile_bg.webp);
  }
  body[lang] main #title {
    font-size: 20px;
  }
  body[lang] main #subtitle {
    font-size: 18px;
    margin-top: 14px;
  }
  body[lang] #cards {
    padding: 22px 0 32px;
  }
  body[lang] #cards .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    justify-items: center;
    gap: 15px;
  }
  body[lang] #cards .container .card {
    min-height: 280px;
    width: 280px;
    font-size: 30px;
  }
  body[lang] aside {
    padding: 18px 0;
  }
  body[lang] aside .bullets {
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-position: right;
    max-width: 320px;
  }
  body[lang] aside .bullets .bullet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    margin-top: 23px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body[lang] aside .bullets .bullet:first-of-type {
    margin-top: 0;
  }
  body[lang] aside .bullets .icon {
    margin: 0;
    width: 40px;
    height: 38px;
    -webkit-margin-end: 15px;
            margin-inline-end: 15px;
  }
  body[lang] aside .bullets .text {
    font-size: 16px;
    margin: 0;
    text-align: initial;
  }
  body[lang] #form {
    padding: 23px 0 20px;
  }
  body[lang] #form .form_title {
    font-size: 18px;
  }
  body[lang] #form .form_container {
    margin-top: 23px;
  }
  body[lang] #form .form_container .Form_Element_Holder_Div {
    margin-bottom: 13px;
    position: relative;
  }
  body[lang] #form .form_container #divValidPassport {
    margin-bottom: 0;
    text-align: initial;
  }
  body[lang] #form .form_container .Form_Element_title {
    font-size: 13px;
    position: static;
  }
  body[lang] #form .form_container .passport_input_item {
    -webkit-margin-start: 5px;
            margin-inline-start: 5px;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
    text-align: initial;
  }
  body[lang] #form #gdpr {
    margin-top: 13px;
  }
  body[lang] footer {
    padding: 23px 0 33px;
    font-size: 14px;
  }
  body.mobile #cards .container #bussnies {
    background-image: url(webp/1M.webp);
  }
  body.mobile #cards .container #exchange {
    background-image: url(webp/2M.webp);
  }
  body.mobile #cards .container #visitor {
    background-image: url(webp/3M.webp);
  }
  body.mobile #cards .container #education {
    background-image: url(webp/4M.webp);
  }
  body.mobile #cards .container #media {
    background-image: url(webp/5M.webp);
  }
  body.mobile #cards .container #visa {
    background-image: url(webp/6M.webp);
  }
  body.mobile #cards .container #employment {
    background-image: url(webp/7M.webp);
  }
  body.mobile #cards .container #trade {
    background-image: url(webp/8M.webp);
  }
  body.mobile #cards .container #per_employment {
    background-image: url(webp/9M.webp);
  }
  body.mobile #cards .container #family {
    background-image: url(webp/10M.webp);
  }
  body.mobile #cards .container #investor {
    background-image: url(webp/11M.webp);
  }
  body.mobile #cards .container #human {
    background-image: url(webp/12M.webp);
  }
  body.mobile #cards .container .card {
    min-height: 166px;
    padding-top: 96px;
    height: calc(70px + 96px);
    background-color: white;
  }
  body.mobile #cards .container .card.open {
    height: auto;
  }
  body.mobile #cards .container .card.open::after {
    -webkit-transform: translate(-50%, 0) rotate(180deg);
            transform: translate(-50%, 0) rotate(180deg);
  }
  body.mobile #cards .container .card.open .card--back {
    display: block;
    color: #01031a;
  }
  body.mobile #cards .container .card#visa .card--front {
    font-size: 18px;
  }
  body.mobile #cards .container .card--front {
    padding-bottom: 20px;
    padding-top: 8px;
    font-weight: 700;
  }
  body.mobile #cards .container .card--back {
    padding: 0 10px 50px;
    color: transparent;
  }
  body[lang='es'].mobile #cards .container .card#visa .card--front {
    font-size: 16px;
  }
  body[lang='es'].mobile #cards .container .card#visa::after {
    bottom: -2px;
  }
  body[lang='es'] .button#applyBTN {
    margin-top: 20px;
  }
  body[lang='es'] main {
    padding: 3px 0 20px;
  }
  body[lang='es'] main #title {
    font-size: 18px;
  }
  body[lang='fr'] .button#applyBTN {
    margin-top: 20px;
  }
  body[lang='fr'] main {
    padding: 3px 0 20px;
  }
  body[lang='fr'] main #title {
    font-size: 18px;
  }
  body[lang='fr'] main #subtitle {
    font-size: 17px;
  }
  body[lang='fr'].mobile #cards .container .card#visa .card--front {
    font-size: 13px;
  }
  body[lang='fr'] .button {
    font-size: 14px;
    padding: 16px 30px;
  }
  body[lang='ru'] .button#applyBTN {
    margin-top: 20px;
  }
  body[lang='ru'] main {
    padding: 3px 0 20px;
  }
  body[lang='ru'] main #title {
    font-size: 18px;
  }
  body[lang='ru'] main #subtitle {
    font-size: 17px;
  }
  body[lang='ru'] .button {
    font-size: 14px;
    padding: 16px 30px;
  }
  body[lang='pt'] .button#applyBTN {
    margin-top: 20px;
  }
  body[lang='pt'] main {
    padding: 3px 0 20px;
  }
  body[lang='pt'] main #title {
    font-size: 18px;
  }
  body[lang='pt'] main #subtitle {
    font-size: 17px;
  }
  body[lang='pt'].mobile #cards .container .card#visa .card--front {
    font-size: 13px;
  }
  body[lang='pt'] .button {
    font-size: 14px;
    padding: 16px 30px;
  }
  body[lang='ar'] main #title {
    font-size: 26px;
  }
  body[lang='ar'] aside .bullets {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  body[lang='ar'] aside .bullets .bullet {
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
  body[lang='ar'] aside .bullets .text {
    font-size: 19px;
  }
  body[lang='ar'] #form .form_title {
    font-size: 24px;
  }
}
/*# sourceMappingURL=style.css.map */