@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/*@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap");*/

@font-face {
  font-family: 'Rubik';
  src:  url('../fonts/Rubik-Regular.eot');
  src:  url('../fonts/Rubik-Regular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Rubik-Regular.ttf') format('truetype'),
  url('../fonts/Rubik-Regular.woff') format('woff'),
  url('../fonts/Rubik-Regular.svg#Rubik-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Rubik';
  src:  url('../fonts/Rubik-Bold.eot');
  src:  url('../fonts/Rubik-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Rubik-Bold.ttf') format('truetype'),
  url('../fonts/Rubik-Bold.woff') format('woff'),
  url('../fonts/Rubik-Bold.svg#Rubik-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
}
/* #endregion */

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: auto;
  font-family: "Rubik", sans-serif;
  color: var(--main-blue);
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

:root{
  --white: #ffffff;
  --main-blue: #232E62;
  --accent-blue: #006CB7;
  --button-blue: #1BB6D2;
}
.desktop {
  padding: 1vw 0;
  width: 100%;
  color: var(--main-blue);
  overflow: hidden;
}
.rtl {
  direction: rtl;
  text-align: inherit;
}
h1{
  font-size: 4vw;
  font-style: normal;
  font-weight: 700;
  line-height: 4vw;
  text-align: center;
}
h1 span{
  display: inline-block;
  vertical-align: middle;
}
h1 .logo-txt,
h1 .logo-txt svg{
  height: 3.4vw;
  width: -moz-fit-content;
  width: fit-content;
  width: -moz-max-content;
  width: max-content;
}

img.logo{
  max-width: 18vw;
}

p.text-wrapper{
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin: 18px 0;
}
.benefits .benefits-item{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  padding: 0 1.15vw;
  margin-bottom: 6px;
}
.benefits .benefits-item .icon{
  width: 4.9vw;
  height: auto;
  min-width: 90px;
}
.benefits .benefits-item p{
  font-size: 1.3vw;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-blue);
  text-align: center;
}
.img-wrapper{
  position: relative;
  width: 100%;
  text-align: center;
}
.img-wrapper::after{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  bottom: -70%;
  right: -50%;
  background: url(../img/circle.svg) no-repeat center center / 100% 100%;
  z-index: 1;
}
.img-wrapper img{
  position: relative;
  z-index: 2;
  max-width: 350px;
}
form,
.thanks{
  border-radius: 36px;
  background: var(--main-blue);
  color: var(--white);
  padding: 0.9vw 1.3vw;
  position: relative;
  z-index: 100;
}
.thanks{
  padding: 24px 16px;
}
.thanks h2{
  text-align: center;
  font-size: 32px;
}
.thanks h3{
  font-size: 24px;
  text-align: center;
}
form h3{
  text-align: center;
  font-size: 2.25vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.75vw;
}
.form-group{
  margin-bottom: 18px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 1.15vw;
  font-weight: 400;
  line-height: 1;
  color: var(--main-blue);
  background-color: var(--white);
  background-clip: padding-box;
  border-color: transparent;
  border-radius: 46px;
  transition: box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(105,190,255,0.25);
}
.failed-validation{
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(224,87,98,0.75);
}
.btn {
  display: block;
  width: 100%;
  text-align: center;
  color: #212E61;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: linear-gradient(0deg, #1BB6D2 0%, #1BB6D2 100%), var(--grey, #646668);
  border:0;
  padding: 14px 16px;
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 1;
  border-radius: 46px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s ease-in-out;
  margin: 0 auto;
}
.btn:hover{
  background: linear-gradient(0deg, #52dbf3 0%, #00cef3 100%), var(--grey, #646668);
}
.form-check-label{
  font-size: 1.15vw;
}
footer{
  padding-bottom: 1vw;
}
.show-sm{
  display: none;
}
.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease-in-out;
}
#mobileHeader.fixed{
  background: #fff;
  border-bottom: 1px solid var(--accent-blue);
  padding: 6px 12px;
  z-index: 200;
}
@media (max-width: 1350px) {
  .img-wrapper img {
    max-width: 280px;
  }
}
@media (max-width: 992px) {
  p.text-wrapper {
    font-size: 18px;
  }
  .benefits .benefits-item p {
    font-size: 14px;
  }
  .benefits .benefits-item .icon {
    max-width: 70px;
  }
  .img-wrapper img {
    max-width: 100%;
  }
  form {
    padding: 12px 16px;
  }
  form h3 {
    font-size: 18px;
  }

  .form-control,
  .btn,
  .form-check-label{
          font-size: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 32px;
    text-align: center;
  }
  h1 .logo-txt, h1 .logo-txt svg {
    height: 28px;
  }
}
@media (max-width: 576px) {
  .show-sm{
    display: block;
  }
  span.show-sm{
    height: 0;
  }
  .hidden-sm{
    display: none;
  }
  img.logo {
    max-width: 100%;
  }
  .show-sm.goTo{
    position: sticky;
  }
  h1{
    font-size: 10vw;
    line-height: 1;
  }
  h1 .logo-txt, h1 .logo-txt svg {
    height: 44px;
  }
  p.text-wrapper {
    font-size: 24px;
  }
  .benefits .benefits-item{
    margin-bottom: 12px;
  }
  .benefits .benefits-item p {
    font-size: 22px;
  }
  form h3 {
    font-size: 32px;
  }
  form, .thanks {
    padding-bottom: 100px;
  }
  .show-sm.man{
    margin-top: -80px;
  }
  .show-sm.man .img-wrapper img {
    z-index: 100;
  }
}