@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  scroll-behavior: smooth;
}

html {
  height: 100%;
}

body {
  overflow-x: hidden !important;
}

ul {
  list-style: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none !important;
}

main {
  overflow-x: hidden !important;
}

header {
  width: 100%;
  height: 120px;
  position: absolute;
  z-index: 10;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  header {
    height: 80px;
  }
}
@media (max-width: 945px) {
  header {
    position: fixed;
    height: unset;
    padding: 18px 0;
  }
}
header .wrapper {
  max-width: 1765px;
  width: calc(100% - 50px);
  margin: auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 945px) {
  header .wrapper {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 945px) {
  header .wrapper h1 {
    margin: 0 0 20px 25px;
  }
}
header .wrapper h1 a {
  display: block;
  width: 240px;
  height: 65px;
  font-size: 0;
}
@media (max-width: 1280px) {
  header .wrapper h1 a {
    width: 169px;
    height: 43px;
  }
}
header .wrapper h1 a img {
  width: 100%;
}
header .wrapper h1 a img.red {
  display: none;
}
@media (max-width: 945px) {
  header .wrapper nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.3s;
  }
}
header .wrapper nav ul {
  list-style: none;
  display: flex;
}
@media (max-width: 945px) {
  header .wrapper nav ul {
    flex-direction: column;
  }
}
header .wrapper nav ul li {
  margin-left: 86px;
}
@media (max-width: 1280px) {
  header .wrapper nav ul li {
    margin-left: 52px;
  }
}
@media (max-width: 945px) {
  header .wrapper nav ul li {
    text-align: center;
    margin: 0 auto 35px;
    width: 100%;
  }
}
@media (max-width: 945px) {
  header .wrapper nav ul li:first-child {
    margin-top: 33px;
  }
}
header .wrapper nav ul li a {
  font: 700 18px "Mulish", sans-serif;
  color: white;
}
@media (max-width: 945px) {
  header .wrapper nav ul li a {
    font-size: 16px;
    color: #072531;
  }
}
@media (max-width: 1280px) {
  header .wrapper nav ul li a {
    font-size: 14px;
  }
}
header .wrapper nav ul li a:hover {
  text-decoration: underline;
}
header .wrapper nav ul li:last-child a {
  font-weight: 600;
  padding: 22px 46px;
  border-radius: 100px;
  border: 1.5px solid white;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 5.695px 5.695px 15.66px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  header .wrapper nav ul li:last-child a {
    padding: 16px 36px;
  }
}
@media (max-width: 945px) {
  header .wrapper nav ul li:last-child a {
    width: 100%;
    max-width: 340px;
    height: 51px;
    font-size: 18px;
    background: #00A3E0;
    border: none;
    color: white;
    height: 51px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
}
header .wrapper nav ul li:last-child a:hover {
  text-decoration: none;
  background: black;
}
header .wrapper #hamburger {
  display: none;
  width: 60px;
  height: 45px;
  position: relative;
  margin-bottom: 10px;
  transform: rotate(0deg) scale(0.6);
  cursor: pointer;
}
@media (max-width: 945px) {
  header .wrapper #hamburger {
    display: block;
    flex-shrink: 0;
    margin-right: 15px;
  }
}
header .wrapper #hamburger span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .wrapper #hamburger span:nth-child(1) {
  top: 0px;
}
header .wrapper #hamburger span:nth-child(2), header .wrapper #hamburger span:nth-child(3) {
  top: 18px;
}
header .wrapper #hamburger span:nth-child(4) {
  top: 36px;
}
header .wrapper #hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header .wrapper #hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
header .wrapper #hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
header .wrapper #hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
header .wrapper #hamburger.open + nav {
  max-height: 1000px;
  overflow: unset;
}
header.fixed {
  position: fixed;
  background: white;
  box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 945px) {
  header.fixed .wrapper h1 {
    margin-bottom: 0;
  }
}
header.fixed .wrapper h1 a img.red {
  display: block;
}
header.fixed .wrapper h1 a img.white {
  display: none;
}
header.fixed .wrapper nav ul li a {
  color: #072531;
}
header.fixed .wrapper nav ul li:last-child a {
  background: #00A3E0;
  color: white;
  border: none;
}
header.fixed .wrapper nav ul li:last-child a:hover {
  background: #0088BB;
}
@media (max-width: 945px) {
  header.fixed .wrapper #hamburger {
    margin-bottom: 0;
  }
}
header.fixed .wrapper #hamburger span {
  background: #00A3E0;
}

.hero {
  background: url(../img/banner-desk.png) no-repeat left center/cover;
  background-attachment: fixed;
  /* height: 700px; */
  height: 100vh !important;
  width: 100%;
  margin-bottom: 150px;
  display: flex;
  align-items: center;
}
@media (max-width: 1280px) {
  .hero {
    height: 467px;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .hero {
    height: 100vh;
    background: url(../img/banner-mob.png) no-repeat center/cover;
    display: block;
  }
}
.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 7.95%, rgba(12, 11, 11, 0.7) 91.19%);
  height: 275px;
  width: 100%;
  position: absolute;
  top: 0;
}
.hero .text {
  /* padding: 221px 0 0 200px; */
  padding-left: 200px;
  position: relative;
}
@media (max-width: 1280px) {
  .hero .text {
    /* padding: 159px 0 0 137px; */
    padding-left: 137px;
  }
}
@media (max-width: 768px) {
  .hero .text {
    padding-left: 25px;
  }
}
@media (max-width: 600px) {
  .hero .text {
    padding: 100px 25px 80px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.hero .text h1 {
  font: 700 56px "Montserrat", sans-serif;
  color: white;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .hero .text h1 {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .hero .text h1 {
    font-size: 27px;
  }
}
.hero .text h2 {
  font: 600 30px "Montserrat", sans-serif;
  color: white;
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .hero .text h2 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .hero .text h2 {
    font-size: 24px;
    flex: 1;
  }
}
.hero .text a {
  font: 600 18px "Mulish", sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 100px;
  background: #00A3E0;
  box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.25);
  width: -moz-fit-content;
  width: fit-content;
  height: 55px;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .hero .text a {
    height: 52px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .hero .text a {
    font-size: 18px;
    height: 51px;
    max-width: 340px;
    flex-shrink: 0;
    margin: auto;
  }
}
.hero .text a:hover {
  background: #0088BB;
}

.why {
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 150px;
  scroll-margin-top: 150px;
}
@media (max-width: 1280px) {
  .why {
    max-width: 1075px;
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .why {
    flex-direction: column;
  }
}
.why .slider {
  width: 645px;
}
@media (max-width: 1280px) {
  .why .slider {
    width: 45.5%;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .why .slider {
    order: 2;
    width: 100%;
  }
}
.why .slider img {
  width: 645px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1280px) {
  .why .slider img {
    width: 100%;
  }
}
.why .info {
  width: 100%;
  padding-left: 60px;
}
@media (max-width: 1280px) {
  .why .info {
    padding: 0 25px;
    width: 54.5%;
  }
}
@media (max-width: 768px) {
  .why .info {
    order: 1;
    width: 100%;
  }
}
.why .info h2 {
  font: 600 56px/1.5 "Montserrat", sans-serif;
  color: #00A3E0;
  margin-bottom: 45px;
}
@media (max-width: 1280px) {
  .why .info h2 {
    font-size: 40px;
    margin-bottom: 34px;
  }
}
@media (max-width: 600px) {
  .why .info h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.why .info h2 span {
  background: #00A3E0;
  color: white;
  border-radius: 20px;
  padding: 3px 20px;
  white-space: nowrap;
}
.why .info > p {
  font: 600 26px "Mulish", sans-serif;
  color: #072531;
  margin-bottom: 80px;
}
@media (max-width: 1280px) {
  .why .info > p {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .why .info > p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.why .info ul li {
  font: 500 24px "Mulish", sans-serif;
  color: #072531;
  display: flex;
  margin-bottom: 80px;
}
@media (max-width: 1280px) {
  .why .info ul li {
    font-size: 16px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .why .info ul li {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.why .info ul li:last-child {
  margin-bottom: 40px;
}
.why .info ul li i {
  margin-right: 25px;
}
@media (max-width: 1280px) {
  .why .info ul li i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 20px;
  }
}
@media (max-width: 1280px) {
  .why .info ul li i img {
    width: 100%;
  }
}
.why .info ul li span {
  display: block;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .why .info ul li span {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .why .info ul li span {
    font-size: 16px;
  }
}

.hr {
  width: 100%;
  height: 50px;
  background: #F8FDFF;
  margin-bottom: 150px;
}
@media (max-width: 1280px) {
  .hr {
    height: 25px;
    margin-bottom: 45px;
  }
}

.what {
  max-width: 1360px;
  margin: 0 auto 150px;
  scroll-margin-top: 150px;
}
@media (max-width: 1280px) {
  .what {
    max-width: 986px;
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .what {
    margin-bottom: 50px;
  }
}
.what .wrapper {
  width: calc(100% - 50px);
  margin: auto;
}
.what .wrapper h2 {
  font: 600 56px "Mulish", sans-serif;
  color: black;
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 1280px) {
  .what .wrapper h2 {
    font-size: 40px;
    margin-bottom: 88px;
  }
}
@media (max-width: 600px) {
  .what .wrapper h2 {
    font-size: 28px;
  }
}
.what .wrapper h2 p {
  font-size: 26px;
  max-width: 1091px;
  margin: 14px auto 0;
}
@media (max-width: 1280px) {
  .what .wrapper h2 p {
    font-size: 20px;
    margin-top: 9px;
    max-width: 640px;
  }
}
@media (max-width: 600px) {
  .what .wrapper h2 p {
    font-size: 16px;
    margin-top: 6px;
  }
}
.what .wrapper .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.what .wrapper .icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 33.3%;
  box-sizing: border-box;
  padding: 0 15px;
}
@media (max-width: 600px) {
  .what .wrapper .icons .icon {
    width: 50%;
    margin-bottom: 50px;
    padding: 0 10px;
  }
}
.what .wrapper .icons .icon:nth-child(-n+6) {
  margin-bottom: 120px;
}
.what .wrapper .icons .icon:nth-child(7) {
  margin-bottom: 120px;
}
@media (max-width: 1280px) {
  .what .wrapper .icons .icon:nth-child(-n+7) {
    margin-bottom: 87px;
  }
}
@media (max-width: 600px) {
  .what .wrapper .icons .icon:nth-child(-n+7) {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .what .wrapper .icons .icon:nth-last-child(1), .what .wrapper .icons .icon:nth-last-child(2) {
    margin-bottom: 50px;
  }
}
.what .wrapper .icons .icon:first-child a {
  pointer-events: none;
  color: white;
}
.what .wrapper .icons .icon:first-child a::after {
  content: none;
}
.what .wrapper .icons .icon .image {
  margin-bottom: 28px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .what .wrapper .icons .icon .image {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .what .wrapper .icons .icon .image {
    margin-bottom: 8px;
  }
}
.what .wrapper .icons .icon .image img {
  width: 34%;
}
@media (max-width: 600px) {
  .what .wrapper .icons .icon .image img {
    width: 29%;
  }
}
.what .wrapper .icons .icon span {
  font: 600 28px "Mulish", sans-serif;
  color: #072531;
  margin-bottom: 28px;
  text-align: center;
}
@media (max-width: 1280px) {
  .what .wrapper .icons .icon span {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .what .wrapper .icons .icon span {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.what .wrapper .icons .icon span br {
  /* @media (max-width: 600px) {
     display: none;
  } */
}
.what .wrapper .icons .icon a {
  font: 600 20px "Mulish", sans-serif;
  color: #00A3E0;
  display: flex;
  align-items: center;
}
@media (max-width: 1280px) {
  .what .wrapper .icons .icon a {
    font-size: 14px;
  }
}
.what .wrapper .icons .icon a::after {
  content: "";
  background: url(../img/right-arrow.svg) no-repeat;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}
@media (max-width: 1280px) {
  .what .wrapper .icons .icon a::after {
    width: 17px;
    height: 17px;
    background-size: contain;
  }
}
.what .wrapper .icons .icon a:hover {
  text-decoration: underline;
}

.what .wrapper .icons .icon .links-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what .wrapper .icons .icon .links-container a {
  margin-bottom: 5px;
}

.step-form {
  background: url(../img/form-bg.png) no-repeat center top/100%;
  width: 100%;
  padding-top: 150px;
  margin-bottom: 250px;
}
@media (max-width: 1280px) {
  .step-form {
    padding-top: 110px;
    margin-bottom: 150px;
  }
}
@media (max-width: 600px) {
  .step-form {
    padding-top: 48px;
    margin-bottom: 80px;
  }
}
.step-form .form-container {
  max-width: 1440px;
  width: 100%;
  background: white;
  border-radius: 30px;
  margin: auto;
  padding: 50px 105px 60px;
  box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1280px) {
  .step-form .form-container {
    max-width: 1076px;
    padding: 37px 78px 45px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container {
    border-radius: 10px;
    padding: 42px 25px 60px;
  }
}
.step-form .form-container .steps {
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1280px) {
  .step-form .form-container .steps {
    margin-bottom: 44px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .steps {
    margin-bottom: 30px;
  }
}
.step-form .form-container .steps .step {
  position: relative;
  display: flex;
  align-items: center;
}
.step-form .form-container .steps .step:first-child span {
  margin-left: -8px;
}
.step-form .form-container .steps .step:last-child .outer-circle {
  margin-left: -8px;
}
.step-form .form-container .steps .step .outer-circle {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0s;
  transition-delay: 0s;
}
@media (max-width: 1280px) {
  .step-form .form-container .steps .step .outer-circle {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .steps .step .outer-circle {
    width: 35px;
    height: 35px;
  }
}
.step-form .form-container .steps .step .inner-circle {
  font: 500 30px "Mulish", sans-serif;
  color: #CCC;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F1F1F1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  transition-delay: 0s;
}
@media (max-width: 1280px) {
  .step-form .form-container .steps .step .inner-circle {
    width: 37px;
    height: 37px;
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .steps .step .inner-circle {
    width: 27px;
    height: 27px;
    font-size: 16px;
  }
}
.step-form .form-container .steps .step.active .outer-circle {
  background: white;
  border-color: #00A3E0;
  transition-delay: 0.7s;
}
.step-form .form-container .steps .step.active .outer-circle .inner-circle {
  background: #00A3E0;
  color: white;
  transition-delay: 0.7s;
}
.step-form .form-container .steps .step.active span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00A3E0;
  transition: width 1s;
}
.step-form .form-container .steps .step span {
  width: 92px;
  height: 10px;
  background: #F1F1F1;
  position: relative;
}
@media (max-width: 1280px) {
  .step-form .form-container .steps .step span {
    width: 65px;
    height: 7px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .steps .step span {
    width: 60px;
  }
}
.step-form .form-container .steps .step span::before {
  content: "";
  width: 0;
}
.step-form .form-container .wrapper {
  width: 100%;
}
.step-form .form-container .wrapper .main-form-title {
  font: 700 50px "Mulish", sans-serif;
  color: #000;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .main-form-title {
    font-size: 37px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .main-form-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.step-form .form-container .wrapper .form {
  display: none;
  flex-wrap: wrap;
  gap: 0 30px;
  margin-bottom: 76px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form {
    gap: 0 22px;
    margin-bottom: 57px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form {
    margin-bottom: 30px;
  }
}
.step-form .form-container .wrapper .form h3 {
  font: 500 28px "Mulish", sans-serif;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 50px;
  width: 100%;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form h3 {
    font-size: 20px;
    margin-bottom: 37px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form h3 {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
  }
}
.step-form .form-container .wrapper .form .field {
  width: 50%;
  flex: 1 1 calc(50% - 30px);
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .field {
    flex: none;
    width: 100%;
  }
}
.step-form .form-container .wrapper .form .field input[type=text],
.step-form .form-container .wrapper .form .field input[type=email],
.step-form .form-container .wrapper .form .field input[type=password] {
  font: 400 16px "Mulish", sans-serif;
  color: #072531;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #999;
  border-radius: 8px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .field input[type=text],
  .step-form .form-container .wrapper .form .field input[type=email],
  .step-form .form-container .wrapper .form .field input[type=password] {
    font-size: 12px;
    padding: 10px 12px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .field input[type=text],
  .step-form .form-container .wrapper .form .field input[type=email],
  .step-form .form-container .wrapper .form .field input[type=password] {
    font-size: 16px;
    padding: 12px 16px;
  }
}
.step-form .form-container .wrapper .form .field input[type=text]:focus::-moz-placeholder, .step-form .form-container .wrapper .form .field input[type=email]:focus::-moz-placeholder, .step-form .form-container .wrapper .form .field input[type=password]:focus::-moz-placeholder {
  opacity: 0;
}
.step-form .form-container .wrapper .form .field input[type=text]:focus::placeholder,
.step-form .form-container .wrapper .form .field input[type=email]:focus::placeholder,
.step-form .form-container .wrapper .form .field input[type=password]:focus::placeholder {
  opacity: 0;
}
.step-form .form-container .wrapper .form .field input[type=text]::-moz-placeholder, .step-form .form-container .wrapper .form .field input[type=email]::-moz-placeholder, .step-form .form-container .wrapper .form .field input[type=password]::-moz-placeholder {
  color: #999;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.step-form .form-container .wrapper .form .field input[type=text]::placeholder,
.step-form .form-container .wrapper .form .field input[type=email]::placeholder,
.step-form .form-container .wrapper .form .field input[type=password]::placeholder {
  color: #999;
  transition: all 0.3s;
}
.step-form .form-container .wrapper .form .field .select {
  position: relative;
  width: 100%;
}
.step-form .form-container .wrapper .form .field .select select {
  display: none;
}
.step-form .form-container .wrapper .form .field .select .selected {
  font: 400 16px "Mulish", sans-serif;
  color: #072531;
  padding: 13px 16px;
  border: 1px solid #999;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .field .select .selected {
    font-size: 12px;
    padding: 10px 12px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .field .select .selected {
    font-size: 16px;
    padding: 12px 16px;
  }
}
.step-form .form-container .wrapper .form .field .select .selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  transition: transform 0.2s;
}
.step-form .form-container .wrapper .form .field .select.open .selected {
  border-radius: 8px 8px 0 0;
  border-bottom: none;
}
.step-form .form-container .wrapper .form .field .select.open .selected::after {
  transform: translateY(-50%) rotate(180deg);
}
.step-form .form-container .wrapper .form .field .select .options {
  font: 400 14px "Mulish", sans-serif;
  color: #072531;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #999;
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 10;
  display: none;
  max-height: 150px;
  overflow-y: auto;
}
.step-form .form-container .wrapper .form .field .select .options .option {
  padding: 13px 16px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .field .select .options .option {
    font-size: 12px;
    padding: 10px 12px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .field .select .options .option {
    font-size: 14px;
    padding: 12px 16px;
  }
}
.step-form .form-container .wrapper .form .field .select.open .options {
  display: block;
}
.step-form .form-container .wrapper .form .field span {
  font: 700 12px "Mulish", sans-serif;
  color: #4D4D4D;
  display: block;
  height: 24px;
  padding: 0 16px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .field span {
    font-size: 9px;
    height: 18px;
    padding: 0 12px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .field span {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
.step-form .form-container .wrapper .form .field.error input {
  border-color: #FF241C;
}
.step-form .form-container .wrapper .form .field.error input::-moz-placeholder {
  color: #FF241C;
}
.step-form .form-container .wrapper .form .field.error input::placeholder {
  color: #FF241C;
}
.step-form .form-container .wrapper .form .field:last-child {
  max-width: calc(50% - 15px);
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .field:last-child {
    max-width: 100%;
  }
}
.step-form .form-container .wrapper .form .selection {
  display: flex;
  margin-bottom: 30px;
  width: 100%;
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .selection {
    flex-direction: column;
  }
}
.step-form .form-container .wrapper .form .selection:nth-of-type(3) {
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .selection:nth-of-type(3) {
    margin-bottom: 208px;
  }
}
.step-form .form-container .wrapper .form .selection p {
  font: 500 28px "Mulish", sans-serif;
  color: #999;
  margin-right: 20px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .selection p {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .selection p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.step-form .form-container .wrapper .form .selection .options {
  display: flex;
}
.step-form .form-container .wrapper .form .selection .options input[type=radio] {
  display: none;
}
.step-form .form-container .wrapper .form .selection .options .custom-radio {
  display: flex;
  align-items: center;
  font: 400 28px "Mulish", sans-serif;
  color: #4D4D4D;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .selection .options .custom-radio {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .selection .options .custom-radio {
    font-size: 14px;
  }
}
.step-form .form-container .wrapper .form .selection .options .custom-radio:first-child {
  margin-right: 27px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .selection .options .custom-radio:first-child {
    margin-right: 18px;
  }
}
.step-form .form-container .wrapper .form .selection .options .custom-radio .radio-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #4D4D4D;
  background-color: white;
  margin-right: 10px;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .form .selection .options .custom-radio .radio-btn {
    margin-right: 6px;
    width: 18px;
    height: 18px;
  }
}
.step-form .form-container .wrapper .form .selection .options .custom-radio .radio-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00A3E0;
  display: none;
}
.step-form .form-container .wrapper .form .selection .options .custom-radio input[type=radio]:checked + .radio-btn {
  border-color: #00A3E0;
}
.step-form .form-container .wrapper .form .selection .options .custom-radio input[type=radio]:checked + .radio-btn::after {
  display: block;
}
.step-form .form-container .wrapper .form .policy {
  width: 100%;
}
.step-form .form-container .wrapper .form .policy input[type=checkbox] {
  display: none;
}
.step-form .form-container .wrapper .form .policy .custom-checkbox {
  display: flex;
  align-items: center;
  font: 500 20px "Mulish", sans-serif;
  cursor: pointer;
  color: #072531;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .policy .custom-checkbox {
    font-size: 14px;
  }
}
.step-form .form-container .wrapper .form .policy .custom-checkbox .checkbox-box {
  width: 20px;
  height: 20px;
  border: 1px solid #4D4D4D;
  background-color: white;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
  border-radius: 5px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .form .policy .custom-checkbox .checkbox-box {
    width: 17px;
    height: 17px;
  }
}
.step-form .form-container .wrapper .form .policy .custom-checkbox .checkbox-box::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: white;
  -webkit-clip-path: polygon(14% 44%, 0% 58%, 50% 100%, 100% 0%, 86% 0%, 42% 78%);
          clip-path: polygon(14% 44%, 0% 58%, 50% 100%, 100% 0%, 86% 0%, 42% 78%);
  display: none;
}
.step-form .form-container .wrapper .form .policy .custom-checkbox input[type=checkbox]:checked + .checkbox-box {
  background-color: #00A3E0;
  border-color: #00A3E0;
}
.step-form .form-container .wrapper .form .policy .custom-checkbox input[type=checkbox]:checked + .checkbox-box::after {
  display: block;
}
.step-form .form-container .wrapper .form .policy .custom-checkbox a {
  margin-left: 6px;
  color: #00A3E0;
}
.step-form .form-container .wrapper .form .policy .custom-checkbox a:hover {
  text-decoration: underline;
}
.step-form .form-container .wrapper .btns {
  display: flex;
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .btns {
    flex-direction: column;
  }
}
.step-form .form-container .wrapper .btns .btn-back {
  display: none;
  font: 600 18px "Mulish", sans-serif;
  color: #5C5C5C;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 55px;
  border: none;
  border-radius: 32px;
  background: white;
  border: 1px solid #898989;
  margin-right: 30px;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .btns .btn-back {
    width: 300px;
    height: 40px;
    font-size: 13px;
    margin-right: 22px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .btns .btn-back {
    width: 100%;
    height: 51px;
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.step-form .form-container .wrapper .btns .btn-back:hover {
  background: #ECECEC;
}
.step-form .form-container .wrapper .btns button {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 55px;
  border: none;
  border-radius: 32px;
  background: #00A3E0;
  position: relative;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .btns button {
    width: 300px;
    height: 40px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .btns button {
    width: 100%;
    height: 51px;
    font-size: 18px;
  }
}
.step-form .form-container .wrapper .btns button:hover {
  background: #0088BB;
}
.step-form .form-container .wrapper .btns button:disabled {
  cursor: not-allowed;
  background: #D9D9D9;
}
.step-form .form-container .wrapper .btns button span {
  font: 600 18px "Mulish", sans-serif;
  color: white;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .btns button span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .btns button span {
    font-size: 18px;
  }
}
.step-form .form-container .wrapper .btns button .spinner {
  width: 33px;
  height: 33px;
  margin: 0 -48px 0 15px;
  background: transparent;
  border-top: 3px solid white;
  border-right: 3px solid transparent;
  border-radius: 50%;
  animation: 1s spin linear infinite;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .btns button .spinner {
    width: 23px;
    height: 23px;
    margin: 0 -35px 0 12px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .btns button .spinner {
    width: 33px;
    height: 33px;
    margin: 0 -48px 0 15px;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.step-form .form-container .wrapper .success {
  display: none;
}
.step-form .form-container .wrapper .success h2 {
  font: 700 50px "Mulish", sans-serif;
  color: #00A3E0;
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .success h2 {
    font-size: 37px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .success h2 {
    font-size: 24px;
    margin-bottom: 76px;
  }
}
@media (max-width: 768px) {
  .step-form .form-container .wrapper .success h2 br {
    display: none;
  }
}
.step-form .form-container .wrapper .success .image {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .success .image {
    width: 240px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .success .image {
    width: 151px;
    margin-bottom: 118px;
  }
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .success .image img {
    width: 100%;
  }
}
.step-form .form-container .wrapper .success p {
  font: 500 28px "Mulish", sans-serif;
  color: black;
  text-align: center;
  max-width: 936px;
  margin: auto;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper .success p {
    font-size: 20px;
    max-width: 710px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper .success p {
    font-size: 16px;
  }
}
.step-form .form-container .wrapper .success p a {
  color: #00A3E0;
}
.step-form .form-container .wrapper .success p a:hover {
  text-decoration: underline;
}
.step-form .form-container .wrapper > .error {
  display: none;
}
.step-form .form-container .wrapper > .error h2 {
  font: 700 50px "Mulish", sans-serif;
  color: #00A3E0;
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper > .error h2 {
    font-size: 37px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper > .error h2 {
    font-size: 24px;
    margin-bottom: 76px;
  }
}
.step-form .form-container .wrapper > .error .image {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper > .error .image {
    width: 150px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper > .error .image {
    margin-bottom: 118px;
  }
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper > .error .image img {
    width: 100%;
  }
}
.step-form .form-container .wrapper > .error a {
  font: 600 18px "Mulish", sans-serif;
  color: white;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 55px;
  border-radius: 32px;
  background: #00A3E0;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .step-form .form-container .wrapper > .error a {
    width: 300px;
    height: 40px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .step-form .form-container .wrapper > .error a {
    width: 100%;
    height: 51px;
    font-size: 18px;
  }
}
.step-form .form-container .wrapper > .error a:hover {
  background: #0088BB;
}

.faq {
  max-width: 1485px;
  margin: 0 auto 120px;
  scroll-margin-top: 150px;
}
@media (max-width: 1280px) {
  .faq {
    max-width: 1125px;
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .faq {
    margin-bottom: 50px;
  }
}
.faq .wrapper {
  width: calc(100% - 50px);
  margin: auto;
}
.faq .wrapper h2 {
  font: 600 56px "Montserrat", sans-serif;
  color: black;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1280px) {
  .faq .wrapper h2 {
    font-size: 40px;
    margin-bottom: 88px;
  }
}
@media (max-width: 600px) {
  .faq .wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.faq .wrapper .question {
  width: 100%;
  background: #F2FCFF;
  padding: 0 40px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 104px;
  margin-bottom: 30px;
  box-shadow: -2px 4px 4px 0 rgba(0, 0, 0, 0.15);
  transition: max-height 0.3s;
}
@media (max-width: 1280px) {
  .faq .wrapper .question {
    padding: 0 30px;
    max-height: 70px;
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .faq .wrapper .question {
    padding: 0 20px;
    max-height: 56px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
}
.faq .wrapper .question h3 {
  font: 500 35px "Mulish", sans-serif;
  color: black;
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 28px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .faq .wrapper .question h3 {
    font-size: 21px;
    padding-right: 36px;
    max-height: 70px;
  }
}
@media (max-width: 600px) {
  .faq .wrapper .question h3 {
    font-size: 14px;
    height: 60px;
  }
}
.faq .wrapper .question h3 img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 600px) {
  .faq .wrapper .question h3 img {
    width: 26px;
    height: 26px;
  }
}
.faq .wrapper .question h3 img:last-child {
  display: none;
}
.faq .wrapper .question .answer {
  max-height: 0;
  transition: max-height 1s;
}
.faq .wrapper .question .answer p {
  font: 400 26px "Mulish", sans-serif;
  color: #072531;
  padding-bottom: 30px;
}
@media (max-width: 1280px) {
  .faq .wrapper .question .answer p {
    font-size: 16px;
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .faq .wrapper .question .answer p {
    font-size: 12px;
    padding-bottom: 20px;
  }
}
.faq .wrapper .question.active {
  max-height: 1000px;
  /* transition: max-height 1s; */
}
.faq .wrapper .question.active h3 img:first-child {
  display: none;
}
.faq .wrapper .question.active h3 img:last-child {
  display: block;
}
.faq .wrapper .question.active .answer {
  transition: max-height 1s;
  max-height: 1000px;
}

footer {
  width: 100%;
  height: 260px;
  background: #00A3E0;
}
@media (max-width: 1280px) {
  footer {
    height: 173px;
  }
}
@media (max-width: 600px) {
  footer {
    height: 100px;
  }
}
footer .wrapper {
  width: calc(100% - 50px);
  max-width: 1435px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 50px 0;
}
@media (max-width: 1280px) {
  footer .wrapper {
    max-width: 1075px;
    padding: 35px 0;
  }
}
@media (max-width: 600px) {
  footer .wrapper {
    padding: 18px 0;
    flex-direction: column;
  }
}
@media (max-width: 1280px) {
  footer .wrapper .logo {
    width: 238px;
  }
}
@media (max-width: 600px) {
  footer .wrapper .logo {
    width: 93px;
    align-self: flex-start;
  }
}
@media (max-width: 1280px) {
  footer .wrapper .logo img {
    width: 100%;
  }
}
footer .wrapper .copy {
  font: 500 28px "Mulish", sans-serif;
  color: white;
  align-self: flex-end;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  footer .wrapper .copy {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  footer .wrapper .copy {
    font-size: 12px;
    align-self: unset;
  }
}
footer .wrapper .copy a {
  color: white;
}
footer .wrapper .copy a:hover {
  text-decoration: underline;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 14;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.modal {
  display: none;
  width: 90%;
  height: 90%;
  max-width: 871px;
  max-height: 566px;
  background: #F2FCFF;
  border-radius: 30px;
  box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 15;
  padding: 25px;
  overflow: hidden;
}
.modal .close {
  position: absolute;
  top: 36px;
  right: 33px;
}
@media (max-width: 600px) {
  .modal .close {
    top: 26px;
    right: 23px;
  }
}
.modal .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal .content h2 {
  font: 700 46px "Mulish", sans-serif;
  color: #00A3E0;
  text-align: center;
  margin-bottom: 17px;
}
@media (max-width: 600px) {
  .modal .content h2 {
    font-size: 32px;
  }
}
.modal .content p {
  font: 500 18px "Mulish", sans-serif;
  color: black;
  text-align: center;
  max-width: 683px;
  margin: 0 auto 51px;
}
@media (max-width: 600px) {
  .modal .content p {
    font-size: 14px;
  }
}
.modal .content p a {
  color: black;
  text-decoration: underline;
}
.modal .content p a:hover {
  text-decoration: none;
}
.modal .content img {
  width: 127px;
  height: 161px;
  margin: 0 auto;
  display: block;
}
