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

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

body {
  position: relative;
  font-family: 'Montserrat';
}

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%;
  bottom: 0;
  border-radius: 0px;
  z-index: 10;
}

body[lang] .button {
  background-color: #ed1c24;
  color: #fff;
  padding: 13px;
  font-size: 27px;
  border: 0;
  font-weight: bolder;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 120ms ease-in;
  transition: background-color 120ms ease-in;
}

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

body[lang] .main {
  background: url(./main_BG_1920.png) no-repeat center;
  min-height: 635px;
}

body[lang] .main header #logo {
  background: url(./logo.png) no-repeat center left;
  padding-top: 145px;
}

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

body[lang] .main__titles_wrapper__title {
  font-size: 38px;
  font-weight: bolder;
  color: #000;
}

body[lang] .main__titles_wrapper__sub_title {
  padding-top: 23px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  position: relative;
}

body[lang] .main__titles_wrapper__sub_title::after {
  content: '';
  position: absolute;
  background: url(./arrow.png) no-repeat center;
  min-width: 110px;
  min-height: 165px;
  right: -30px;
}

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

body[lang] .main .button {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
}

body[lang] .form_wrapper {
  padding-bottom: 80px;
}

body[lang] .form_wrapper .form {
  text-align: center;
}

body[lang] .form_wrapper .form .title {
  font-size: 39px;
  font-weight: bolder;
  padding-top: 44px;
  max-width: 1000px;
  margin: auto;
}

body[lang] .form_wrapper .form .inputs {
  text-align: initial;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

body[lang] .form_wrapper .form .inputs input,
body[lang] .form_wrapper .form .inputs select {
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  /* Firefox 1-3.6 */
  border-radius: 0px;
  border: 1px solid #99a4b3;
  background-color: #ffffff;
  color: #1d1f28;
  font-size: 16px;
  padding: 0 10px;
  height: 45px;
  width: 100%;
}

body[lang] .form_wrapper .form .inputs input[type='checkbox'], body[lang] .form_wrapper .form .inputs input[type='radio'],
body[lang] .form_wrapper .form .inputs select[type='checkbox'],
body[lang] .form_wrapper .form .inputs select[type='radio'] {
  width: 20px;
  height: 20px;
}

body[lang] .form_wrapper .form .inputs #divSendEmail,
body[lang] .form_wrapper .form .inputs #divValidPassport {
  font-size: 16px;
}

body[lang] .form_wrapper .form .inputs #divBday {
  position: relative;
}

body[lang] .form_wrapper .form .inputs #divBday .Form_Element_title {
  position: absolute;
  top: -20px;
}

body[lang] .form_wrapper .form .button {
  margin-top: 40px;
  color: #fff;
}

body[lang] .form_wrapper .form .button:hover {
  -webkit-box-shadow: 8px 8px #fff;
          box-shadow: 8px 8px #fff;
}

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

body[lang] .form_wrapper .form #divSendEmail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body[lang] .Assistant {
  background: url(./Assistant_BG_1920.png) no-repeat center top;
  min-height: none;
}

body[lang] .Assistant__title {
  font-size: 40px;
  font-weight: bolder;
  color: #000;
  text-align: center;
  padding-top: 35px;
}

body[lang] .Assistant__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 10px;
}

body[lang] .Assistant__grid__bullet {
  font-size: 23px;
  font-weight: 500;
  color: #000;
  padding: 50px 0;
  max-width: 557px;
  -webkit-padding-start: 165px;
          padding-inline-start: 165px;
}

body[lang] .Assistant__grid .bullet1 {
  background: url(./bullet_1.png) no-repeat center left;
}

body[lang] .Assistant__grid .bullet2 {
  background: url(./bullet_2.png) no-repeat center left;
}

body[lang] .Assistant__grid .bullet3 {
  background: url(./bullet_3.png) no-repeat center left;
}

body[lang] .Assistant__grid .bullet4 {
  background: url(./bullet_4.png) no-repeat center left;
}

body[lang] .footer {
  padding: 40px 0;
  font-size: 22px;
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 768px;
  }
  body[lang] .button {
    padding: 8px 10px;
    font-size: 21px;
  }
  body[lang] .main {
    background: url(./main_BG_1200.png) no-repeat center;
    min-height: 445px;
  }
  body[lang] .main header #logo {
    background-size: 160px auto;
    padding-top: 90px;
  }
  body[lang] .main__titles_wrapper {
    max-width: 375px;
  }
  body[lang] .main__titles_wrapper__title {
    font-size: 27px;
  }
  body[lang] .main__titles_wrapper__sub_title {
    font-size: 20px;
  }
  body[lang] .main__titles_wrapper__sub_title::after {
    background-size: 95px auto;
    min-width: 70px;
    min-height: 105px;
    right: -10px;
  }
  body[lang] .main .button {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
  body[lang] .form_wrapper {
    padding-bottom: 55px;
  }
  body[lang] .form_wrapper .form .title {
    font-size: 27px;
  }
  body[lang] .form_wrapper .form .inputs {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body[lang] .Assistant {
    background: url(./Assistant_BG_1200.png) no-repeat center top;
  }
  body[lang] .Assistant__title {
    font-size: 27px;
  }
  body[lang] .Assistant__grid__bullet {
    font-size: 18px;
    padding: 30px 0;
    -webkit-padding-start: 90px;
            padding-inline-start: 90px;
  }
  body[lang] .Assistant__grid .bullet1,
  body[lang] .Assistant__grid .bullet2,
  body[lang] .Assistant__grid .bullet3,
  body[lang] .Assistant__grid .bullet4 {
    background-size: 75px auto;
  }
  body[lang] .footer {
    font-size: 20px;
    padding: 25px 0;
  }
  body[lang='tr'] .main__titles_wrapper__title {
    font-size: 25px;
  }
  body[lang='tr'] .main__titles_wrapper__sub_title {
    font-size: 19px;
  }
  body[lang='tr'] .form_wrapper .form .title {
    max-width: 645px;
  }
  body[lang='tr'] .Assistant__grid__bullet {
    font-size: 17px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: none;
  }
  body[lang] .button {
    padding: 8px 10px;
    font-size: 21px;
  }
  body[lang] .sticky_button_wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 22px;
    font-weight: 600;
  }
  body[lang] .main {
    background: url(./main_BG_768.png) no-repeat center bottom;
    padding-bottom: 286px;
    text-align: center;
  }
  body[lang] .main header #logo {
    background-size: 132px auto;
    background-position: center;
    padding-top: 90px;
  }
  body[lang] .main__titles_wrapper {
    max-width: none;
    text-align: center;
  }
  body[lang] .main__titles_wrapper__title {
    font-size: 23px;
  }
  body[lang] .main__titles_wrapper__sub_title {
    font-size: 18px;
  }
  body[lang] .main__titles_wrapper__sub_title::after {
    background-size: 71px auto;
    min-width: 50px;
    min-height: 85px;
    right: -11px;
  }
  body[lang] .main .button {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
  body[lang] .form_wrapper {
    display: none;
    background-color: #fff;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    padding-top: 60px;
  }
  body[lang] .form_wrapper .container {
    padding: 0 11px;
  }
  body[lang] .form_wrapper .form {
    position: relative;
    text-align: center;
    background-color: #ffffff;
    padding: 10px;
    padding-bottom: 35px;
    margin: auto;
  }
  body[lang] .form_wrapper .form .title {
    font-size: 20px;
  }
  body[lang] .form_wrapper .form .close_btn {
    background: url(./close.png) no-repeat center top;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 20px;
    right: 20px;
    background-size: 17px 17px;
    cursor: pointer;
  }
  body[lang] .Assistant {
    background: none;
    background-color: #fff;
  }
  body[lang] .Assistant__title {
    font-size: 20px;
    padding-bottom: 20px;
  }
  body[lang] .Assistant__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  body[lang] .Assistant__grid__bullet {
    font-size: 18px;
    padding-top: 105px;
    text-align: center;
    max-width: none;
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
  }
  body[lang] .Assistant__grid .bullet1 {
    background: url(./bullet_1_768.png) no-repeat center top;
  }
  body[lang] .Assistant__grid .bullet2 {
    background: url(./bullet_2_768.png) no-repeat center top;
  }
  body[lang] .Assistant__grid .bullet3 {
    background: url(./bullet_3_768.png) no-repeat center top;
  }
  body[lang] .Assistant__grid .bullet4 {
    background: url(./bullet_4_768.png) no-repeat center top;
  }
  body[lang] .footer {
    background: url(./Assistant_BG_768.png) no-repeat center top;
    padding-top: 20px;
    padding-bottom: 65px;
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */