@import url(https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500&family=Inter:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap);*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  min-width: 310px;
}
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }
}

h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 48px;
  }
}

button {
  cursor: pointer;
  background-color: transparent;
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
  transition: background-color 0.25s;
}
button:not(:focus) {
  border-color: transparent;
}
button:disabled, button[disabled] {
  cursor: not-allowed;
}
@media (max-width: 767.98px) {
  button {
    font-size: 18px;
  }
}

input[type=text],
select {
  width: 100%;
  border-radius: 0;
  border: 1px solid #1A627D;
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 17.25px 20px;
}
input[type=text]:focus,
select:focus {
  box-shadow: 0px 0px 1px 2px #40ADBB;
  border-color: #40ADBB;
  outline: none;
}
@media (max-width: 767.98px) {
  input[type=text],
  select {
    font-size: 16px;
  }
}

header {
  padding-top: 21px;
  padding-bottom: 21px;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.flex-row {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
}

.flex-col {
  padding-left: 10px;
  padding-right: 10px;
}

.flex-col-6 {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .flex-col-6 {
    width: 50%;
  }
}

.flex-col-4 {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .flex-col-4 {
    width: 33.333333%;
  }
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.color-blue {
  color: #1A627D;
}

.flex-1 {
  flex: 1;
}

.d-none {
  display: none;
}

.text-center {
  text-align: center;
}

.pb-48 {
  padding-bottom: 48px;
}

.mb-15 {
  margin-bottom: 15px;
}

[v-cloak] {
  display: none;
}

input[type=text].input--invalid,
div.input--invalid {
  border: 1px solid #cf2932;
  box-shadow: 0px 0px 5px 1px #cf2932;
  background-color: #f2dbdb;
  position: relative;
}

.btn--main {
  padding-top: 8px;
  padding-bottom: 8px;
  width: 300px;
  min-height: 74px;
}

.btn--cta-submit {
  padding: 18px 30px;
  height: 67px;
  min-width: 192px;
}
.btn--cta-submit .lds-ring {
  margin-top: -6px;
  width: 40px;
  height: 40px;
}
@media (max-width: 767.98px) {
  .btn--cta-submit {
    width: 100%;
  }
}

.btn--blue-light {
  background-color: #40ADBB;
  color: #fff;
}
.btn--blue-light:hover {
  background-color: #177581;
}

.btn--light {
  background-color: #DFFBFF;
  color: #1A627D;
}
.btn--light:hover {
  background-color: #9AD0D7;
}

.btn--gold {
  background-color: #D59842;
  color: #fff;
}
.btn--gold:hover:not(:disabled) {
  background-color: #1A627D;
}
.btn--gold:disabled, .btn--gold[disabled] {
  background-color: #1A627D;
}

.btn--login {
  padding: 8px 43px;
}
@media (max-width: 767.98px) {
  .btn--login {
    padding: 8px 20px;
    font-size: 16px;
  }
}

.custom-checkbox {
  position: relative;
}
.custom-checkbox label {
  padding-left: 40px;
  cursor: pointer;
}
.custom-checkbox.invalid {
  color: #cf2932;
}
.custom-checkbox.disabled {
  opacity: 0.5;
}
.custom-checkbox.disabled label {
  cursor: default;
}

.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox__mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
}

.custom-checkbox.custom-select__options-item--multiple .custom-checkbox__mark {
  border: 1px solid #000;
  top: 11px;
  left: 20px;
}
.custom-checkbox.custom-select__options-item--multiple label {
  display: block;
  padding: 10px 20px 10px 60px;
}

.custom-checkbox__mark:after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.25s;
}

.custom-checkbox input:checked ~ label .custom-checkbox__mark:after {
  background-color: #D59842;
}

.custom-checkbox.custom-checkbox--blue-light input:checked ~ label .custom-checkbox__mark:after {
  background-color: #40ADBB;
}

.custom-checkbox .custom-checkbox__mark:after {
  left: 2px;
  top: 2px;
  width: 21px;
  height: 21px;
}

.custom-checkbox.custom-select__options-item--multiple .custom-checkbox__mark:after {
  width: 19px;
  height: 19px;
}

.custom-input__wrapper {
  position: relative;
}

.custom-input__cross {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  transition: opacity 0.25s;
  cursor: pointer;
}
.custom-input__cross:hover {
  opacity: 1;
}
.custom-input__cross:before, .custom-input__cross:after {
  content: "";
  position: absolute;
  left: 15px;
  height: 33px;
  width: 2px;
  background-color: #333;
}
.custom-input__cross:before {
  transform: rotate(45deg);
}
.custom-input__cross:after {
  transform: rotate(-45deg);
}

.custom-input__error {
  font-size: 14px;
  color: #cf2932;
  text-shadow: 1px 1px 1px #b0b0b0;
  padding-top: 4px;
  text-align: right;
}

.custom-select {
  position: relative;
}

.custom-select__field {
  position: relative;
  background-color: #fff;
  padding: 17.25px 50px 17.25px 20px;
  color: #000;
  cursor: pointer;
  border: 1px solid #1A627D;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767.98px) {
  .custom-select__field {
    padding: 17.25px 46px 17.25px 20px;
  }
}
.custom-select__field:focus {
  box-shadow: 0px 0px 1px 2px #40ADBB;
  border-color: #40ADBB;
  outline: none;
}
.custom-select__field.active:after {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select__field:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1A627D;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .custom-select__field:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1A627D;
  }
}
.custom-select__field.disabled {
  cursor: default;
  background-color: rgba(239, 239, 239, 0.3);
  color: rgb(84, 84, 84);
}

.custom-select__options {
  position: absolute;
  background-color: #fff;
  color: #000;
  z-index: 8;
  left: 0;
  bottom: -5px;
  transform: translateY(100%);
  width: 100%;
  height: 141px;
  overflow: scroll;
  border: 1px solid #40ADBB;
  box-shadow: 0px 0px 1px 2px #40ADBB;
}

.custom-select__options-item {
  background-color: #fff;
  transition: background-color 0.25s;
  cursor: pointer;
}
.custom-select__options-item:not(.custom-select__options-item--multiple) {
  padding: 10px 20px;
}
.custom-select__options-item:hover {
  background-color: rgba(64, 173, 187, 0.3);
}

.lds-ring {
  display: inline-block;
  position: relative;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal__inner {
  padding: 20px;
  width: 100%;
  height: 100%;
}

.modal__content {
  color: #000;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 700px;
}

.modal__header {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  padding-bottom: 38px;
}

.modal__buttons {
  padding-top: 38px;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.section--blue {
  background: #40ADBB url(/assets/img/section-bg.050112c5.jpg) no-repeat left top;
  background-size: cover;
  background-blend-mode: multiply;
  color: #fff;
}

.section__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .section__title {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .section__content {
    line-height: 1.6;
  }
  .section__content br {
    display: none;
  }
}

.header {
  background-color: #fff;
  transition: all 0.5s;
  top: -25px;
  z-index: 2;
}

.header__logo {
  width: 226px;
  transition: all 0.25s;
}
@media (max-width: 767.98px) {
  .header__logo {
    width: 150px;
  }
}

.header--sticky {
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.25);
}
.header--sticky .header__logo {
  width: 200px;
}
@media (max-width: 767.98px) {
  .header--sticky .header__logo {
    width: 150px;
  }
}

.main {
  background-color: #1A627D;
  color: #fff;
  padding-top: 110px;
  padding-bottom: 130px;
  position: relative;
}
.main .section__content {
  position: relative;
  z-index: 1;
}
.main::before, .main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main::before {
  background-image: url(/assets/img/main-bg-1.85d1ac05.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
.main::after {
  background-image: url(/assets/img/main-bg-2.d5c2de1a.png), url(/assets/img/main-bg-3.6e3a3ae1.png);
  background-position: 26% bottom, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, contain;
}
@media (max-width: 767.98px) {
  .main::after {
    display: none;
  }
}
@media (max-width: 1399.98px) {
  .main::after {
    background-position: 16% bottom, right top;
    background-size: 30%, contain;
  }
}

.main__btns {
  margin-top: 35px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main__btns {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .main__btns > .btn--main {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .main__btns > .btn--main:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .main__btns > .btn--main:not(:last-child) {
    margin-right: 21px;
  }
}

.how-it-works .section__content span {
  font-weight: 700;
  color: #40ADBB;
}

.features-row {
  margin-top: 50px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1665;
  color: #1A627D;
}
@media (max-width: 767.98px) {
  .features-row {
    font-size: 20px;
  }
  .features-row > .flex-col-4:not(:last-child) {
    margin-bottom: 30px;
  }
  .features-row > .flex-col-4 br {
    display: none;
  }
  .features-row > .flex-col-4 > div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.features-row__img {
  margin-bottom: 22px;
}
@media (max-width: 767.98px) {
  .features-row__img {
    margin-bottom: 10px;
    height: 65px;
  }
}

.cta__info {
  font-family: "Inter", sans-serif;
  margin-bottom: 45px;
}

.cta__option {
  height: 128px;
  background-color: #1A627D;
  padding: 25px;
  text-transform: uppercase;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 15px;
}
.cta__option.disabled {
  opacity: 0.5;
  cursor: default;
}
.cta__option.disabled label {
  cursor: default;
}
.cta__option .custom-checkbox__mark {
  position: relative;
  min-width: 25px;
  margin-right: 15px;
}
.cta__option label {
  cursor: pointer;
  padding-left: 0;
}
@media (max-width: 767.98px) {
  .cta__option {
    height: 84px;
    font-size: 20px;
    padding: 15px;
  }
}

.cta__privacy {
  font-family: "Inter", sans-serif;
  color: #fff;
}

.cta__options {
  margin-top: 30px;
  margin-bottom: 42px;
}
@media (max-width: 767.98px) {
  .cta__options {
    margin-top: 15px;
  }
}

.cta__agreement {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .cta__agreement {
    line-height: 1.6;
  }
}
@media (max-width: 767.98px) {
  .cta__agreement label {
    margin-bottom: 5px;
  }
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #1A627D;
  color: #fff;
}