@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
  font-family: 'Ubuntu', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  word-break: break-word;
}

header {
  background:#105C84
}

h1 {
  font-size: 1.5em;
}

.hero-header {
  height: 90vh;
  color: #fff;
}

/* h2 {
  font-size: 2em;
} */

.hero-header .blue-bg {
  background: #105C84;
  height: 70%;
}

.hero-header .blue-bg a {
  transition: transform 100ms linear;
}

.hero-header .blue-bg a:hover {
  transform: scale(1.3);
}

.hero-header .white-bg {
  background-color: white;
  height: 30%;
  display: flex;
  justify-content: center;
}

.hero-header .white-bg img.hero-header-image {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  z-index: 0;
}

.hero-icon {
  background: #105C84;
  color: #fff;
}
.hero-icon {
  background: #184370;
  color: #fff;
}

.hero-header-badge {

}

.hero-header--background-image {
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 55vh;
}

/* Form General */
.form-step-text-link {
  opacity: 0.9;
  font-size: 1.25em;
  text-decoration-color: rgba(0, 0, 0, 0.33);
  display: flex;
  flex-direction: row;
  -webkit-box-pack: end;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  cursor: pointer;
}

.form-button-prev {
    float: left;
    max-width: 50%;
    width: max-content;
    justify-content: start;

    -webkit-appearance: none;
    border-radius: 10px;
    transition: background-color 100ms cubic-bezier(0.69, 0, 0.33, 0.99) 0s;
    cursor: pointer;
    padding: 10px 16px;
    display: flex;
    font-weight: 500;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: rgb(240, 239, 236);
    margin-bottom: 12px;
    margin-top: 2rem;
}

.form-button-prev:hover {
  background-color: rgb(233, 232, 227);
}

.form-button-next {
  width: 100%;
    float: right;
}

.form-step-text-link{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form-step-text-link:hover {
  text-decoration: underline;
}

/* Birthday */
.birthday-input {
  margin-right: 1em
}

/* Chrome, Safari, Edge, Opera */
.birthday-input::-webkit-outer-spin-button,
.birthday-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.birthday-input[type=number] {
  -moz-appearance: textfield;
}

.form-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.progressbar {
  position: relative;
  width: 100%;
  height: 8px;
  margin: 0 30px;
  border-radius: 4px;
  background-color: rgb(240, 239, 236);
}

.progressbar .progress {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  background-color: #4b9dec;
  transition: width 0.3s ease-out 0s;
}

.form-wrapper {
  padding-top: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.form-step-heading {
  font-size: 2em;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  display: block;
  text-transform: none;
  font-weight: normal;
  color: rgb(33, 34, 36);
}

.form-step-desc {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 32px;
}

.form-step input[type=text], .form-step input[type=number], .form-step input[type=email],
.form-step-button {
  -webkit-appearance: none;
  border-radius: 10px;
  transition: background-color 100ms cubic-bezier(0.69, 0, 0.33, 0.99) 0s;
  cursor: pointer;
  height: 4.5em;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  font-weight: 500;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-color: rgb(240, 239, 236);
  margin-bottom: 12px;
}

.form-step-button:hover {
  background-color: rgb(233, 232, 227);
}

.form-step-arrow {
  width: 1.75em;
  height: 1.75em;
}

.form-header,
.form-step {
  overflow: hidden;
  margin-right: 1em;
  margin-left: 1em;
}

.form-button-next * {
  pointer-events: none;
}

/* Loading */
.loading-logos {
  animation: slide 20s linear infinite;
  margin: 50px auto;
}

@keyframes slide {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-300%);
  }
}

.success-animation {
  margin: 50px auto;
}

.checkmark_success {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #4bb71b;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: #fff;
  animation: stroke 0.6s cubic-bezier(.65, 0, .45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(.65, 0, .45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 30px #4bb71b;
  }
}

@media (min-width: 768px) {
  .hero-bg {
    background-image: url("../img/bg-3.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }

  .hero-header--cta {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .hero-header--cta {
    display: flex;
  }
}

.hero-header--heading {
  margin-bottom: 0.5em;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  display: block;
  text-transform: none;
  font-weight: 600;
  color: rgb(33, 34, 36);
}

.hero-header--text {
  font-size: 1.25em;
  line-height: 2;
}

.hero-header--list {
  list-style: none;
  padding-left: 0.25em;
  font-size: 1.25em;
}

.hero-header--list li {
  margin: 0.75em 0;
  display: flex;
  align-items: center;
}

.hero-header--list li:before {
  content: '';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.25em;
  width: 1.25em;
  background-image: url("/assets/icon/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}

.hero-header--cta {
  -webkit-appearance: none;
  transition: background-color 100ms cubic-bezier(0.69, 0, 0.33, 0.99) 0s;
  cursor: pointer;
  height: 4em;
  padding-left: 2em;
  padding-right: 2em;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-color: #134876;
  color: #fff;
  font-weight: 700;
  margin: 1em 0;
  transition: all 100ms linear;
}

.hero-header--cta:hover {
  transform: scale(1.05);
}

.hero-header--image {
  max-height: 90vh;
  max-width: 50vw;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-header--hint {
  display: flex;
  font-size: 0.8em;
  color: #717171;
  align-items: center;
  padding-bottom: 3em;
}

.hero-header--hint svg {
  height: 1em;
  width: 1em;
  margin-right: 0.25em;
}

.contact-form-input label {
  font-size: 1.25em;
}

.hero-header--list.contact-form {
  font-size: .8em;
  margin: auto;
  width: fit-content;
}

.form-step select {
  border-radius: 10px;
  transition: background-color 100ms cubic-bezier(0.69, 0, 0.33, 0.99) 0s;
  cursor: pointer;
  height: 4.5em;
  width: 8em;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  font-weight: 500;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-color: rgb(240, 239, 236);
  margin-bottom: 12px;
}
