*,
*::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;
}

body[lang] .button {
  padding: 12px 24px;
  border-radius: 90px;
  background: #cc0d0c;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

body[lang] .button:hover {
  background: #aa0f0e;
}

body[lang] .button.arrow {
  -webkit-padding-end: 62px;
          padding-inline-end: 62px;
}

body[lang] .button.arrow::after {
  content: '';
  position: absolute;
  background: url(./arrows.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: 34px auto;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  margin-top: -7px;
}

body[lang] main {
  background: url(./main_BG_1920.png) no-repeat center top;
  min-height: 712px;
  color: #1c4a70;
  padding-bottom: 30px;
}

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

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

body[lang] main .title {
  max-width: 499px;
  font-size: 35px;
  font-weight: 700;
  margin-top: 50px;
}

body[lang] main .small_title {
  font-size: 17px;
  max-width: 633px;
  margin-top: 20px;
}

body[lang] main .counter {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (131px)[4];
      grid-template-columns: repeat(4, 131px);
  gap: 14px 33px;
  padding-top: 25px;
  text-align: center;
  font-weight: bold;
}

body[lang] main .counter .number {
  font-family: 'Big Shoulders Stencil Display', cursive;
  font-size: 85px;
  color: #fff;
  background: #258bbb;
  border-radius: 94px;
  width: 115px;
  position: relative;
}

body[lang] main .counter .number:nth-child(-n + 3)::after {
  font-family: 'Poppins', sans-serif;
  content: ':';
  position: absolute;
  color: #258bbb;
  font-size: 60px;
  width: 25px;
  right: -40px;
}

body[lang] main .counter .label {
  color: #258bbb;
  font-size: 18px;
  text-transform: uppercase;
}

body[lang] main .button {
  margin-top: 35px;
}

body[lang] main .sub_title {
  max-width: 610px;
  color: #92a8bb;
  font-size: 15px;
  margin-top: 38px;
}

body[lang] .form__wrapper {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#1c4a700d), to(#1831590d)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #1c4a700d 0%, #1831590d 100%) 0% 0% no-repeat padding-box;
  text-align: center;
  padding: 70px 0px;
}

body[lang] .form__wrapper .form_title {
  color: #1c4a70;
  font-size: 30px;
  font-weight: 600;
}

body[lang] .form__wrapper .rows {
  text-align: initial;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
  margin-top: 25px;
}

body[lang] .form__wrapper .rows input,
body[lang] .form__wrapper .rows select {
  width: 100%;
  font-size: 16px;
  height: 44px;
  border: 1px solid #99a4b3;
  background-color: #ffffff;
  padding: 0px 14px;
  color: #535353;
}

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

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

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

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

body[lang] .form__wrapper .rows input:focus,
body[lang] .form__wrapper .rows select:focus {
  outline: none;
  border: 2px solid #3962cb;
  color: #3962cb;
}

body[lang] .form__wrapper .rows input:focus::-webkit-input-placeholder,
body[lang] .form__wrapper .rows select:focus::-webkit-input-placeholder {
  color: #3962cb;
}

body[lang] .form__wrapper .rows input:focus:-ms-input-placeholder,
body[lang] .form__wrapper .rows select:focus:-ms-input-placeholder {
  color: #3962cb;
}

body[lang] .form__wrapper .rows input:focus::-ms-input-placeholder,
body[lang] .form__wrapper .rows select:focus::-ms-input-placeholder {
  color: #3962cb;
}

body[lang] .form__wrapper .rows input:focus::placeholder,
body[lang] .form__wrapper .rows select:focus::placeholder {
  color: #3962cb;
}

body[lang] .form__wrapper .rows input[type='radio'],
body[lang] .form__wrapper .rows input[type='checkbox'] {
  width: 17px;
  height: 17px;
  cursor: pointer;
}

body[lang] .form__wrapper .rows #divBday {
  margin-top: -20px;
  text-align: initial;
}

body[lang] .form__wrapper .button {
  margin-top: 33px;
}

body[lang] .form__wrapper #gdpr {
  margin-top: 25px;
  color: #000000;
}

body[lang] .form__wrapper #gdpr .anchor {
  color: #000000;
}

body[lang] .section {
  padding: 80px 0px;
}

body[lang] .section .container {
  background: url(./section_BG_1920.png) no-repeat center right;
}

body[lang] .section__title, body[lang] .section__paragraph {
  max-width: 600px;
}

body[lang] .section__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 46px;
  color: #1c4a70;
}

body[lang] .section__paragraph {
  font-size: 18px;
  color: #191717;
  margin-top: 24px;
}

body[lang] .section__paragraph ~ .section__paragraph {
  margin-top: 0px;
}

body[lang] footer {
  background: #1c4a70;
  color: #ffffff;
  text-align: center;
  padding: 30px 0px;
}

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

body[lang='es'] main .title,
body[lang='fr'] main .title {
  font-size: 25px;
}

body[lang='es'] main .small_title,
body[lang='es'] main .sub_title,
body[lang='fr'] main .small_title,
body[lang='fr'] main .sub_title {
  font-size: 15px;
  max-width: 620px;
}

body[lang='es'] .form__wrapper .form_title,
body[lang='fr'] .form__wrapper .form_title {
  font-size: 26px;
}

body[lang='es'] .section__title,
body[lang='fr'] .section__title {
  font-size: 33px;
  line-height: normal;
}

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

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

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

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

body[lang='ar'] main .counter {
  direction: ltr;
  position: relative;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

body[lang='ar'] main .sub_title {
  margin-top: 14px;
}

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

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

body[lang='ru'] main .title {
  font-size: 28px;
}

body[lang='tr'] main .sub_title,
body[lang='tr'] main .small_title {
  font-size: 14px;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] main {
    background: url(./main_BG_1200.png) no-repeat center top;
    min-height: 480px;
    padding-bottom: 15px;
  }
  body[lang] main header {
    padding-top: 30px;
  }
  body[lang] main header #logo {
    background-size: auto 35px;
    height: 35px;
  }
  body[lang] main .title {
    font-size: 25px;
    max-width: 371px;
    margin-top: 10px;
  }
  body[lang] main .small_title {
    font-size: 15px;
    max-width: 386px;
    margin-top: 10px;
  }
  body[lang] main .counter {
    -ms-grid-columns: (70px)[4];
        grid-template-columns: repeat(4, 70px);
    gap: 12px 15px;
    padding-top: 20px;
  }
  body[lang] main .counter .number {
    font-size: 50px;
    width: 70px;
  }
  body[lang] main .counter .number:nth-child(-n + 3)::after {
    font-size: 35px;
    width: 10px;
    right: -13px;
  }
  body[lang] main .counter .label {
    font-size: 14px;
  }
  body[lang] main .button {
    margin-top: 25px;
  }
  body[lang] main .sub_title {
    max-width: 390px;
    font-size: 14px;
    margin-top: 20px;
    line-height: 16px;
  }
  body[lang] .form__wrapper {
    padding: 35px 0px;
  }
  body[lang] .form__wrapper .form_title {
    font-size: 26px;
  }
  body[lang] .form__wrapper .rows {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  body[lang] .form__wrapper .button {
    margin-top: 33px;
  }
  body[lang] .form__wrapper #gdpr {
    font-size: 13px;
  }
  body[lang] .section {
    padding: 55px 0px 536px 0px;
    background: url(./section_BG_1200.png) no-repeat center bottom 85px;
  }
  body[lang] .section .container {
    background: none;
  }
  body[lang] .section__title, body[lang] .section__paragraph {
    max-width: none;
  }
  body[lang] .section__title {
    font-size: 29px;
  }
  body[lang] .section__paragraph {
    font-size: 17px;
    margin-top: 15px;
  }
  body[lang] .section__paragraph ~ .section__paragraph {
    margin-top: 0px;
  }
  body[lang='es'] .button,
  body[lang='fr'] .button {
    font-size: 16px;
  }
  body[lang='es'] main,
  body[lang='fr'] main {
    background-size: auto 100%;
  }
  body[lang='es'] main .title,
  body[lang='fr'] main .title {
    font-size: 21px;
    max-width: 345px;
  }
  body[lang='es'] main .sub_title,
  body[lang='es'] main .small_title,
  body[lang='fr'] main .sub_title,
  body[lang='fr'] main .small_title {
    font-size: 13px;
    max-width: 400px;
  }
  body[lang='es'] .form__wrapper .form_title,
  body[lang='fr'] .form__wrapper .form_title {
    font-size: 23px;
  }
  body[lang='es'] .section__title,
  body[lang='fr'] .section__title {
    font-size: 23px;
    line-height: normal;
  }
  body[lang='es'] .section__paragraph,
  body[lang='fr'] .section__paragraph {
    font-size: 16px;
  }
  body[lang='ar'] main {
    background: url(./main_BG_1200_ar.png) no-repeat center top;
  }
  body[lang='ar'] main .counter .label {
    font-size: 17px;
  }
  body[lang='ar'] main .sub_title {
    max-width: 410px;
    line-height: 110%;
  }
  body[lang='ar'] main .small_title {
    font-size: 14px;
    max-width: 400px;
  }
  body[lang='ar'] .section__title {
    font-size: 30px;
  }
  body[lang='ar'] .section__paragraph {
    font-size: 19px;
  }
  body[lang='ru'] .button {
    font-size: 17px;
  }
  body[lang='ru'] main .title {
    font-size: 20px;
    max-width: 350px;
  }
  body[lang='tr'] main .sub_title,
  body[lang='tr'] main .small_title {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] .button {
    padding: 10px 21px;
    font-size: 17px;
  }
  body[lang] .button.arrow {
    -webkit-padding-end: 55px;
            padding-inline-end: 55px;
  }
  body[lang] .button.arrow::after {
    width: 30px;
    height: 30px;
    background-size: 30px auto;
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
    margin-top: -5px;
  }
  body[lang] main {
    background: url(./main_BG_768_woman.png) no-repeat center bottom;
    min-height: auto;
    padding-bottom: 320px;
    text-align: center;
  }
  body[lang] main header #logo {
    background-position: center;
  }
  body[lang] main .title {
    max-width: none;
    font-size: 25px;
    line-height: 112%;
  }
  body[lang] main .counter {
    -ms-grid-columns: (60px)[4];
        grid-template-columns: repeat(4, 60px);
    gap: 4px 15px;
    padding-top: 27px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body[lang] main .counter .number {
    font-size: 40px;
    width: 60px;
  }
  body[lang] main .counter .number:nth-child(-n + 3)::after {
    font-size: 30px;
  }
  body[lang] main .counter .label {
    font-size: 12px;
  }
  body[lang] main .sub_title,
  body[lang] main .small_title {
    max-width: none;
    font-size: 15px;
    margin-top: 26px;
    line-height: 110%;
  }
  body[lang] .form__wrapper {
    padding: 25px 0px;
  }
  body[lang] .form__wrapper .form_title {
    font-size: 19px;
  }
  body[lang] .section {
    padding: 70px 0px 365px 0px;
    background: url(./section_BG_768.png) no-repeat center bottom 35px;
  }
  body[lang] .section__title {
    font-size: 21px;
    line-height: normal;
  }
  body[lang] .section__paragraph {
    font-size: 16px;
    margin-top: 20px;
  }
  body[lang] .section__paragraph ~ .section__paragraph {
    margin-top: 0px;
  }
  body[lang] footer {
    padding: 25px 0px;
    font-size: 15px;
  }
  body[lang='es'] .button,
  body[lang='fr'] .button {
    font-size: 16px;
  }
  body[lang='es'] main .title,
  body[lang='fr'] main .title {
    max-width: none;
    font-size: 23px;
  }
  body[lang='es'] .form__wrapper .form_title,
  body[lang='fr'] .form__wrapper .form_title {
    font-size: 17px;
  }
  body[lang='ru'] .button {
    font-size: 16px;
    padding: 12px 21px;
    margin-top: -6px;
  }
  body[lang='ru'] main .title {
    font-size: 20px;
  }
  body[lang='ar'] .button.arrow::after {
    -webkit-transform: translateX(-20px) rotate(180deg);
            transform: translateX(-20px) rotate(180deg);
  }
  body[lang='ar'] main {
    background: url(./main_BG_768_woman.png) no-repeat center bottom;
  }
  body[lang='ar'] main .counter .label {
    font-size: 17px;
  }
  body[lang='ar'] main .sub_title {
    max-width: none;
    font-size: 19px;
    line-height: 110%;
  }
  body[lang='ar'] .section__title {
    line-height: normal;
  }
  body[lang='ar'] .section__paragraph {
    font-size: 18px;
  }
  body[lang='tr'] main .title {
    max-width: 520px;
  }
}
/*# sourceMappingURL=style.css.map */