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

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

body {
  position: relative;
  font-family: 'Noto Sans';
}

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;
  background-color: #182637;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 10px;
}

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

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

body[lang] header {
  display: none;
}

body[lang] .button {
  font-family: 'Inter';
  position: relative;
  background-color: #ff1a1f;
  border: 0;
  color: #fff;
  padding: 10px 17px;
  font-size: 18px;
  border-radius: 7px;
  font-weight: bolder;
  cursor: pointer;
}

body[lang] .button:hover::after {
  -webkit-animation: arrowMove 0.6s infinite alternate ease-in-out;
          animation: arrowMove 0.6s infinite alternate ease-in-out;
}

body[lang] .button::after {
  content: ' ';
  display: inline-block;
  background: url(./Arrow.svg) no-repeat center right #ff1a1f;
  padding: 7px 15px;
  background-size: auto 90%;
}

body[lang] .main {
  background: url(./main_bg_1920.png) no-repeat center top -4px;
  min-height: 660px;
}

body[lang] .main__titles_wrapper {
  max-width: 520px;
}

body[lang] .main__titles_wrapper__top_title {
  font-size: 20px;
  color: #212121;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 180px;
}

body[lang] .main__titles_wrapper__main_title {
  color: #374861;
  font-size: 33px;
  font-weight: 800;
  padding-top: 30px;
  line-height: 110%;
}

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

body[lang] .main__titles_wrapper .button {
  margin-top: 30px;
}

body[lang] .immigration {
  background: -webkit-gradient(linear, left top, right top, color-stop(39.2%, #485870), to(#182637));
  background: linear-gradient(90deg, #485870 39.2%, #182637 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body[lang] .immigration__title {
  font-size: 20px;
  max-width: 330px;
  padding: 45px 0;
}

body[lang] .immigration__bullets_container {
  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;
  gap: 0 47px;
}

body[lang] .immigration__bullets_container__bullet {
  position: relative;
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}

body[lang] .immigration__bullets_container__bullet::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 80px;
  top: -20px;
  background-color: #fff;
  opacity: 15%;
  right: -30px;
}

body[lang] .immigration__bullets_container__bullet:last-child::after {
  content: none;
}

body[lang] .immigration__bullets_container__bullet::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
}

body[lang] .immigration__bullets_container__bullet.bullet1::before {
  background: url(./trusted_bullet1.svg) no-repeat center left;
}

body[lang] .immigration__bullets_container__bullet.bullet2::before {
  background: url(./trusted_bullet2.svg) no-repeat center left;
}

body[lang] .immigration__bullets_container__bullet.bullet3::before {
  background: url(./trusted_bullet3.svg) no-repeat center left;
}

body[lang] .immigration__bullets_container__bullet.bullet4::before {
  background: url(./trusted_bullet4.svg) no-repeat center left;
}

body[lang] .educated .container,
body[lang] .advantages .container,
body[lang] .visa .container,
body[lang] .reasons .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  font-size: 33px;
}

body[lang] .educated .container {
      grid-template-areas: 'educated-title   educated-right' 'educated-subtitle educated-right' 'educated-left    educated-right';
}

body[lang] .educated__title {
  font-weight: bolder;
  color: #374861;
  padding-top: 50px;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: educated-title;
}

body[lang] .educated__sub_title {
  color: #ff1a1f;
  font-size: 27px;
  font-weight: bolder;
  padding-top: 20px;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: educated-subtitle;
}

body[lang] .educated__title, body[lang] .educated__sub_title {
  line-height: 110%;
  -webkit-padding-end: 70px;
          padding-inline-end: 70px;
}

body[lang] .educated__right {
  background: url(./educated_bg.png) no-repeat center;
  background-size: 99% auto;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  grid-area: educated-right;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
}

body[lang] .educated__left {
  -webkit-padding-end: 70px;
          padding-inline-end: 70px;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: educated-left;
}

body[lang] .educated__left__bullets_container {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  counter-reset: step;
  z-index: -5;
}

body[lang] .educated__left__bullets_container__bullet {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 1fr;
      grid-template-columns: 30px 1fr;
  font-size: 21px;
  color: #212121;
  position: relative;
  padding: 10px 0;
  gap: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 350;
}

body[lang] .educated__left__bullets_container__bullet::before {
  content: counter(step);
  counter-increment: step;
  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;
  background-color: #2c4c7e;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  height: 28px;
  z-index: 1;
}

body[lang] .educated__left__bullets_container__bullet::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 14px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: #2c4c7e;
  z-index: -1;
}

body[lang] .educated__left__bullets_container__bullet:last-child::after {
  content: none;
}

body[lang] .educated__left__bullets_container__bullet.final::before {
  content: '';
  background-color: #e11427;
  border: 2px solid #e11427;
  background: url(./canada_bullet.svg) no-repeat center #fff;
  background-size: 110%;
  font-size: 0;
}

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

body[lang] .advantages .container {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: 'advantages-left advantages-title' 'advantages-left  advantages-right';
}

body[lang] .advantages__title {
  color: #374861;
  font-weight: bolder;
  line-height: 110%;
  padding-top: 40px;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: advantages-title;
}

body[lang] .advantages__left {
  background: url(./advantages_bg.png) no-repeat center;
  background-size: 98% auto;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: advantages-left;
  min-height: 450px;
}

body[lang] .advantages__right {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: advantages-right;
}

body[lang] .advantages__right__bullets_container {
  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 0;
  position: relative;
  grid-area: advantages-bullets;
  padding-top: 30px;
}

body[lang] .advantages__right__bullets_container__bullet {
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
  font-weight: 350;
  font-size: 21px;
}

body[lang] .advantages__right__bullets_container__bullet::before {
  background: url(./v_bullet.svg) no-repeat center top;
  content: '';
  left: 0;
  position: absolute;
  width: 30px;
  height: 24px;
}

body[lang] .visa {
  padding-top: 25px;
}

body[lang] .visa .container {
      grid-template-areas: 'visa-title visa-right' 'visa-left  visa-right' 'visa-button vsa-right';
}

body[lang] .visa__title {
  color: #374861;
  font-weight: bolder;
  line-height: 110%;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: visa-title;
}

body[lang] .visa__right {
  background: url(./visa_bg.png) no-repeat center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: visa-right;
  min-height: 400px;
  background-size: auto 93%;
}

body[lang] .visa__left {
  position: relative;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: visa-left;
}

body[lang] .visa__left__bullets {
  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 0;
  margin-top: -30px;
}

body[lang] .visa__left__bullets__bullet {
  font-weight: 350;
  font-size: 21px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

body[lang] .visa__left__bullets__bullet::before {
  position: absolute;
  content: '';
  background: url(leaf.svg) no-repeat center top;
  width: 30px;
  height: 30px;
  left: 0;
}

body[lang] .visa .button {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: visa-button;
  margin-top: -40px;
}

body[lang] .reasons {
  padding-top: 60px;
}

body[lang] .reasons .container {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: 'reasons-left reasons-title' 'reasons-left  reasons-right';
}

body[lang] .reasons__title {
  color: #374861;
  font-weight: bolder;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: reasons-title;
  padding-top: 50px;
}

body[lang] .reasons__left {
  background: url(./reasons_bg.png) no-repeat center;
  background-size: auto 99%;
  min-height: 390px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: reasons-left;
}

body[lang] .reasons__right {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: reasons-right;
  position: relative;
}

body[lang] .reasons__right__bullets {
  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 0;
  margin-top: -30px;
}

body[lang] .reasons__right__bullets__bullet {
  font-weight: 350;
  font-size: 21px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

body[lang] .reasons__right__bullets__bullet::before {
  position: absolute;
  content: '';
  background: url(leaf.svg) no-repeat center top;
  width: 30px;
  height: 30px;
  left: 0;
}

body[lang] .reasons__right .button {
  margin-top: 30px;
}

body[lang] .resident_title {
  background: -webkit-gradient(linear, left top, right top, color-stop(39.2%, #485870), to(#182637));
  background: linear-gradient(90deg, #485870 39.2%, #182637 100%);
  border-radius: 21px;
  padding: 25px 5px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: bolder;
  -webkit-margin-before: 70px;
          margin-block-start: 70px;
  -webkit-margin-after: 70px;
          margin-block-end: 70px;
}

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

body[lang] .dropshadow .form__bg {
  background: url(./form_bg_1920.png) no-repeat top center;
  min-width: 100%;
  min-height: 90%;
  position: absolute;
  top: 27px;
}

body[lang] .dropshadow form {
  position: relative;
  text-align: center;
  background-color: #ffffff;
  padding: 60px;
  max-width: 550px;
  margin: auto;
  border-radius: 22px;
}

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

body[lang] .dropshadow form .form_title {
  margin-bottom: 25px;
  color: #485870;
  font-weight: bolder;
  font-size: 20px;
  font-family: 'Inter';
}

body[lang] .dropshadow form select,
body[lang] .dropshadow form input {
  width: 100%;
  font-size: 16px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #221f1f;
  padding-left: 14px;
  color: #535353;
  outline: none;
  background-color: #ffffff;
}

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 #1b417b;
  color: #1b417b;
}

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

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

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

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

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

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

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

body[lang] footer {
  text-align: center;
  padding: 50px 180px;
  color: #fff;
  background: #182637;
}

body[lang='fr'] .main__titles_wrapper__main_title,
body[lang='fr'] .educated__title,
body[lang='fr'] .advantages__title,
body[lang='fr'] .visa__title,
body[lang='fr'] .reasons__title {
  font-size: 26px;
}

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

body[lang='fr'] .advantages__right__bullets_container__bullet,
body[lang='fr'] .visa__left__bullets__bullet {
  font-size: 18px;
}

body[lang='fr'] .educated__left__bullets_container__bullet::after {
  height: 50px;
}

body[lang='tr'] .main__titles_wrapper__main_title,
body[lang='tr'] .educated__title,
body[lang='tr'] .advantages__title,
body[lang='tr'] .visa__title,
body[lang='tr'] .reasons__title {
  font-size: 28px;
}

body[lang='tr'] .educated__sub_title {
  font-size: 22px;
}

body[lang='tr'] .immigration__bullets_container__bullet {
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
}

body[lang='tr'] .advantages__right__bullets_container {
  padding-top: 0px;
}

body[lang='tr'] .visa__left__bullets {
  margin-top: -55px;
}

body[lang='tr'] .visa__title {
  padding-top: 25px;
}

body[lang='tr'] .visa .button {
  margin-top: -45px;
}

body[lang='fr'] .visa .button,
body[lang='es'] .visa .button {
  margin-top: -40px;
}

body[lang='fr'] .visa__left__bullets,
body[lang='es'] .visa__left__bullets {
  margin-top: -45px;
}

body[lang='fr'] .advantages__right__bullets_container,
body[lang='es'] .advantages__right__bullets_container {
  padding-top: 0px;
  margin-top: -20px;
}

body[lang='es'] .educated__title,
body[lang='es'] .advantages__title,
body[lang='es'] .visa__title,
body[lang='es'] .reasons__title {
  font-size: 28px;
  padding-top: 40px;
}

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

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

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

body[lang='es'] .advantages__right__bullets_container__bullet,
body[lang='es'] .educated__left__bullets_container__bullet,
body[lang='es'] .visa__left__bullets__bullet {
  font-size: 18px;
}

body[lang='es'] .advantages__right__bullets_container {
  margin-top: 0px;
  padding-top: 15px;
}

body[lang='es'] .visa .button {
  margin-top: 10px;
}

body[lang='es'] .immigration__bullets_container__bullet {
  -webkit-padding-start: 66px;
          padding-inline-start: 66px;
}

body[lang='es'] .visa__left__bullets {
  margin-top: 0px;
  padding-top: 17px;
}

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

body[lang='ar'] #sticky {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

body[lang='ar'] .button::after {
  rotate: 180deg;
}

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

body[lang='ar'] .main__titles_wrapper__main_title {
  padding-top: 37px;
  font-size: 54px;
}

body[lang='ar'] .advantages__right__bullets_container__bullet::before,
body[lang='ar'] .visa__left__bullets__bullet::before,
body[lang='ar'] .reasons__right__bullets__bullet::before {
  right: 0;
}

body[lang='ar'] .advantages__right__bullets_container {
  padding-top: 0px;
  margin-top: -10px;
}

body[lang='ar'] .educated__left__bullets_container__bullet::after {
  right: 11px;
}

body[lang='ar'] .educated .container,
body[lang='ar'] .advantages .container,
body[lang='ar'] .visa .container,
body[lang='ar'] .reasons .container {
  gap: 0 35px;
}

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

body[lang='ar'] .educated__right {
  background-size: 95% auto;
}

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

body[lang='ar'] .educated__sub_title {
  font-size: 25px;
}

body[lang='ar'] .immigration__bullets_container__bullet::before {
  right: -8px;
  width: 45px;
  height: 45px;
  top: -9px;
}

body[lang='ar'] .immigration {
  background: -webkit-gradient(linear, left top, right top, color-stop(39.2%, #485870), to(#182637));
  background: linear-gradient(90deg, #485870 39.2%, #182637 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body[lang='ar'] .immigration__title {
  max-width: 250px;
  -webkit-padding-end: 30px;
          padding-inline-end: 30px;
}

body[lang='ar'] .immigration__bullets_container__bullet:last-child::after {
  content: '';
}

body[lang='ar'] .dropshadow form input,
body[lang='ar'] select {
  direction: rtl;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] header {
    display: none;
  }
  body[lang] .main {
    background: url(./main_bg_1200.png) no-repeat center top -4px;
    min-height: 485px;
  }
  body[lang] .main__titles_wrapper {
    max-width: 320px;
  }
  body[lang] .main__titles_wrapper__top_title {
    font-size: 16px;
    padding-top: 120px;
  }
  body[lang] .main__titles_wrapper__main_title {
    font-size: 28px;
  }
  body[lang] .main__titles_wrapper__bottom_title {
    font-size: 16px;
  }
  body[lang] .main__titles_wrapper .button {
    margin-top: 20px;
  }
  body[lang] .immigration {
    padding: 15px 0;
  }
  body[lang] .immigration .container {
    -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;
  }
  body[lang] .immigration__title {
    font-size: 18px;
    text-align: center;
    max-width: none;
    padding-top: 10px;
    padding-bottom: 25px;
  }
  body[lang] .immigration__bullets_container {
    gap: 0 40px;
  }
  body[lang] .immigration__bullets_container__bullet {
    -webkit-padding-start: 55px;
            padding-inline-start: 55px;
    min-height: 66px;
  }
  body[lang] .immigration__bullets_container__bullet::after {
    top: -10px;
    right: -15px;
    height: 70px;
  }
  body[lang] .educated .container {
        grid-template-areas: 'educated-subtitle educated-subtitle' 'educated-title educated-title' 'educated-left educated-right';
    gap: 20px;
  }
  body[lang] .educated__title {
    font-size: 35px;
    padding-top: 15px;
  }
  body[lang] .educated__sub_title {
    font-size: 22px;
    padding-top: 40px;
  }
  body[lang] .educated__title, body[lang] .educated__sub_title {
    text-align: center;
  }
  body[lang] .educated__left {
    -webkit-padding-end: 0px;
            padding-inline-end: 0px;
  }
  body[lang] .educated__left__bullets_container {
    padding-top: 20px;
  }
  body[lang] .educated__left__bullets_container__bullet {
    font-size: 16px;
  }
  body[lang] .educated__left__bullets_container__bullet::after {
    height: 53px;
  }
  body[lang] .advantages {
    padding-top: 20px;
  }
  body[lang] .advantages .container {
        grid-template-areas: 'advantages-title advantages-title' 'advantages-left  advantages-right';
  }
  body[lang] .advantages__title {
    text-align: center;
    font-size: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  body[lang] .advantages__left {
    background: url(./advantages_bg.png) no-repeat center top 20px;
    background-size: 100% auto;
    min-height: 0px;
  }
  body[lang] .advantages__right {
    padding-top: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  body[lang] .advantages__right__bullets_container {
    padding-top: 30px;
    gap: 15px 0;
  }
  body[lang] .advantages__right__bullets_container__bullet {
    font-size: 16px;
  }
  body[lang] .visa {
    padding-top: 20px;
  }
  body[lang] .visa .container {
        grid-template-areas: 'visa-title visa-title' 'visa-left  visa-right' 'visa-button visa-button';
  }
  body[lang] .visa__title {
    text-align: center;
    font-size: 35px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  body[lang] .visa__right {
    background-size: auto 90%;
    min-height: 265px;
  }
  body[lang] .visa__left__bullets {
    padding-top: 15px;
    gap: 20px 0;
    margin-top: 0;
  }
  body[lang] .visa__left__bullets__bullet {
    font-size: 16px;
  }
  body[lang] .visa .button {
    margin: auto;
    margin-top: 15px;
    max-width: 600px;
  }
  body[lang] .reasons {
    padding-top: 10px;
  }
  body[lang] .reasons .container {
        grid-template-areas: 'reasons-title reasons-title' 'reasons-left  reasons-right';
  }
  body[lang] .reasons__title {
    font-size: 35px;
    padding-bottom: 25px;
    text-align: center;
    padding-top: 35px;
  }
  body[lang] .reasons__left {
    background-size: auto 99%;
    min-height: 275px;
  }
  body[lang] .reasons__right {
    padding-top: 50px;
  }
  body[lang] .reasons__right__bullets {
    gap: 20px 0;
    margin-top: 0;
  }
  body[lang] .reasons__right__bullets__bullet {
    font-size: 16px;
  }
  body[lang] .resident_title {
    font-size: 24px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
  body[lang] footer {
    padding: 36px 15px;
  }
  body[lang='fr'] .main__titles_wrapper__main_title,
  body[lang='fr'] .educated__title,
  body[lang='fr'] .advantages__title,
  body[lang='fr'] .visa__title,
  body[lang='fr'] .reasons__title {
    font-size: 24px;
  }
  body[lang='fr'] .main .button {
    font-size: 16px;
  }
  body[lang='fr'] .main__titles_wrapper__top_title {
    font-size: 15px;
  }
  body[lang='fr'] .visa .button {
    margin-top: 30px;
  }
  body[lang='tr'] .main__titles_wrapper__main_title,
  body[lang='tr'] .educated__title,
  body[lang='tr'] .advantages__title,
  body[lang='tr'] .visa__title,
  body[lang='tr'] .reasons__title {
    font-size: 27px;
  }
  body[lang='tr'] .main__titles_wrapper__top_title {
    font-size: 15px;
  }
  body[lang='tr'] .visa .button {
    margin-top: 30px;
  }
  body[lang='es'] .main__titles_wrapper__main_title,
  body[lang='es'] .educated__title,
  body[lang='es'] .advantages__title,
  body[lang='es'] .visa__title,
  body[lang='es'] .reasons__title {
    font-size: 22px;
    padding-top: 23px;
  }
  body[lang='es'] .main__titles_wrapper__top_title {
    font-size: 15px;
  }
  body[lang='es'] .advantages__right__bullets_container__bullet,
  body[lang='es'] .educated__left__bullets_container__bullet,
  body[lang='es'] .visa__left__bullets__bullet {
    font-size: 16px;
  }
  body[lang='es'] .visa .button {
    margin-top: 35px;
  }
  body[lang='ar'] .main {
    background: url(./main_bg_1200_ar.png) no-repeat center top -4px;
  }
  body[lang='ar'] .main__titles_wrapper__main_title {
    padding-top: 37px;
    font-size: 45px;
  }
  body[lang='ar'] .main__titles_wrapper__bottom_title {
    font-size: 21px;
  }
  body[lang='ar'] .reasons__right {
    padding-top: 30px;
  }
  body[lang='ar'] .immigration__title {
    -webkit-padding-end: 30px;
            padding-inline-end: 30px;
  }
  body[lang='ar'] .immigration__bullets_container {
    gap: 0 20px;
  }
  body[lang='ar'] .immigration__bullets_container__bullet {
    width: 100%;
    -webkit-padding-end: 10px;
            padding-inline-end: 10px;
    -webkit-padding-start: 42px;
            padding-inline-start: 42px;
    text-align: center;
  }
  body[lang='ar'] .immigration__bullets_container__bullet:first-child::after {
    content: none;
  }
  body[lang='ar'] .immigration__bullets_container__bullet::after {
    top: -18px;
    right: -21px;
  }
  body[lang='ar'] .immigration__bullets_container__bullet::before {
    background-position: center right !important;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] #sticky {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body[lang] header {
    display: block;
    background-color: #182637;
    padding-top: 10px;
  }
  body[lang] header #logo {
    background: url(./logo.svg) no-repeat center top;
    width: 100%;
    height: 75px;
  }
  body[lang] .button {
    font-size: 14px;
  }
  body[lang] .button::after {
    content: none;
  }
  body[lang] .main {
    background: url(./main_bg_768.png) no-repeat center bottom -20px #fff;
    padding-bottom: 385px;
  }
  body[lang] .main__titles_wrapper {
    max-width: none;
    text-align: center;
  }
  body[lang] .main__titles_wrapper__top_title {
    font-size: 15px;
    padding-top: 30px;
  }
  body[lang] .main__titles_wrapper__main_title {
    font-size: 23px;
    padding-top: 20px;
  }
  body[lang] .immigration {
    padding-block: 17px 25px;
  }
  body[lang] .immigration__title {
    font-size: 16px;
    padding: 0;
    text-align: center;
  }
  body[lang] .immigration__bullets_container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 30px;
    max-width: none;
  }
  body[lang] .immigration__bullets_container__bullet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
    -webkit-padding-start: 50px;
            padding-inline-start: 50px;
  }
  body[lang] .immigration__bullets_container__bullet::before {
    height: 100%;
    width: 45px;
  }
  body[lang] .immigration__bullets_container__bullet.bullet2::after, body[lang] .immigration__bullets_container__bullet.bullet4::after {
    display: none;
  }
  body[lang] .educated .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: 'educated-subtitle' 'educated-title' 'educated-left' 'educated-right';
  }
  body[lang] .educated__title {
    font-size: 23px;
    padding-top: 10px;
    -webkit-padding-end: 0px;
            padding-inline-end: 0px;
  }
  body[lang] .educated__sub_title {
    font-size: 20px;
    padding-top: 30px;
    -webkit-padding-end: 0px;
            padding-inline-end: 0px;
  }
  body[lang] .educated__left {
    -webkit-padding-end: 0px;
            padding-inline-end: 0px;
    margin: auto;
  }
  body[lang] .educated__left__bullets_container {
    padding-top: 0;
  }
  body[lang] .educated__right {
    background-size: auto 100%;
    min-height: 217px;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
  }
  body[lang] .advantages {
    padding-top: 0px;
  }
  body[lang] .advantages .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: 'advantages-title' 'advantages-right' 'advantages-left';
    gap: none;
  }
  body[lang] .advantages__title {
    font-size: 23px;
    padding-top: 30px;
    padding-bottom: 0;
  }
  body[lang] .advantages__left {
    background-size: auto 86%;
    min-height: 250px;
  }
  body[lang] .advantages__right {
    padding-top: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    margin: auto;
  }
  body[lang] .advantages__right__bullets_container {
    padding-top: 30px;
    padding-bottom: 20px;
    gap: 15px 0;
  }
  body[lang] .advantages__right__bullets_container__bullet {
    font-size: 16px;
  }
  body[lang] .visa {
    padding-top: 20px;
  }
  body[lang] .visa .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: 'visa-title' 'visa-left' 'visa-right' 'visa-button';
  }
  body[lang] .visa__title {
    font-size: 23px;
    padding-top: 0;
    padding-bottom: 15px;
  }
  body[lang] .visa__left {
    margin: auto;
  }
  body[lang] .visa__right {
    background-size: auto 80%;
    min-height: 265px;
  }
  body[lang] .visa .button {
    margin-top: -3px;
  }
  body[lang] .reasons {
    padding-top: 10px;
  }
  body[lang] .reasons .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: 'reasons-title' 'reasons-right' 'reasons-left';
  }
  body[lang] .reasons__title {
    font-size: 23px;
    padding-bottom: 25px;
    padding-top: 23px;
  }
  body[lang] .reasons__left {
    background-size: auto 78%;
    min-height: 275px;
  }
  body[lang] .reasons__right {
    padding-top: 0;
    margin: auto;
  }
  body[lang] .dropshadow .form__bg {
    background: none;
  }
  body[lang] .dropshadow form {
    padding: 60px 20px;
  }
  body[lang] .dropshadow form .form_title {
    font-size: 19px;
  }
  body[lang] .resident_title {
    font-size: 16px;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
  body[lang='fr'] .main__titles_wrapper__main_title,
  body[lang='fr'] .educated__title,
  body[lang='fr'] .advantages__title,
  body[lang='fr'] .visa__title,
  body[lang='fr'] .reasons__title,
  body[lang='es'] .main__titles_wrapper__main_title,
  body[lang='es'] .educated__title,
  body[lang='es'] .advantages__title,
  body[lang='es'] .visa__title,
  body[lang='es'] .reasons__title,
  body[lang='tr'] .main__titles_wrapper__main_title,
  body[lang='tr'] .educated__title,
  body[lang='tr'] .advantages__title,
  body[lang='tr'] .visa__title,
  body[lang='tr'] .reasons__title {
    font-size: 21px;
  }
  body[lang='fr'] .main__titles_wrapper__top_title,
  body[lang='es'] .main__titles_wrapper__top_title,
  body[lang='tr'] .main__titles_wrapper__top_title {
    font-size: 15px;
  }
  body[lang='fr'] .visa .button,
  body[lang='es'] .visa .button,
  body[lang='tr'] .visa .button {
    margin-top: 5px;
    font-size: 13px;
  }
  body[lang='fr'] .advantages__right__bullets_container,
  body[lang='es'] .advantages__right__bullets_container,
  body[lang='tr'] .advantages__right__bullets_container {
    padding-top: 38px;
  }
  body[lang='tr'] .immigration__bullets_container__bullet {
    font-size: 14px;
  }
  body[lang='tr'] .visa .button {
    font-size: 14px;
  }
  body[lang='tr'] .visa .button::after {
    content: none;
  }
  body[lang='ar'] .immigration__title {
    max-width: none;
    -webkit-padding-end: 0px;
            padding-inline-end: 0px;
  }
  body[lang='ar'] .immigration__bullets_container__bullet.bullet2::after, body[lang='ar'] .immigration__bullets_container__bullet.bullet4::after {
    display: block;
  }
  body[lang='ar'] .immigration__bullets_container__bullet.bullet1::after, body[lang='ar'] .immigration__bullets_container__bullet.bullet3::after {
    display: none;
  }
  body[lang='ar'] .visa .button {
    margin-top: 22px;
  }
}
/*# sourceMappingURL=style.css.map */