/* Poppins */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


body {
  font: 400 16px/26px 'Poppins', sans-serif;
  color: #000;
  overflow-x: hidden;
  height: 100vh;
}

.main {
  min-height: 100%;
}
.wrapper {
  padding: 65px;
  position: relative;
}

.wrapper:not(.wrapper-enroll) {
  background: #F5F1E6;
}
.wrapper:not(.wrapper-enroll):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-size: contain;
  background-position: 120%;
  background-image: url(../assets/tb-sign-sand.svg);
  background-repeat: no-repeat;
}

.wrapper.wrapper-enroll {
  padding: 35px 80px;
}
.form-wrapper {
  width: 100%;
  max-width: 620px;
  color: #031C2B;
}

h1 {
  font-weight: 700;
  line-height: 70px;
  font-size: 64px;
  z-index: 1;
}

h2 {
  font-weight: 700;
  line-height: 57px;
  font-size: 48px;
}
.btn {
  padding: 11px 24px;
  font-weight: 600;
  line-height: 24px;
  font-size: 18px;
  text-transform: none;
  border-radius: 0;
  box-shadow: none !important;
}

.btn--primary {
  background-color: #C94e38;
  border: 1px solid transparent;
  color: #fff;
}
.btn--primary:hover {
  background-color: #b64631;
  color: #fff;
}

.btn--back:hover {
  opacity: .8;
}

.btns-nav .btn--back{ width: 25%; }
.btns-nav .btn--primary { width: 75%; }


.dropdown-select {
  position: relative;
  font-family: inherit;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
  width: 100%;
  height: auto;
  padding: 0.75rem 1.25rem;
  border: 2px solid #E9E9E9;
  outline: none;
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.dropdown-menu {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  margin: 0.125rem 0 0;
  font-size: 18px;
  color: #1f1f1f;
  text-align: left;
  list-style: none;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0.25rem;
}

.dropdown-menu-search {
  width: 100%;
  max-width: 575px;
  margin: 0 auto 10px;
  display: block;
  padding: 8px 15px;
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
  outline: none;
  height: auto;
  font-size: 16px;
}

.dropdown-menu-item {
  padding: 5px 15px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.dropdown-menu-item.is-select, 
.dropdown-menu-item.is-select:hover {
    color: #fff;
    background-color: #e74632;
}
.dropdown-menu-item:hover {
  color: #1f1f1f;
  background-color: #e9ecef;
}

.form-arrow {
  position: absolute;
  top: 47px;
  right: 20px;
}

.dropdown-menu-item:first-child {
  pointer-events: none;
  opacity: .6;
}

#btn-continue[disabled=disabled], 
#btn-continue:disabled {
  pointer-events: none;
}

a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
  display: none;
}

@media only screen and (min-width: 992px) {
  .wrapper:not(.wrapper-enroll) {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 1340px) {
  .wrapper:not(.wrapper-enroll):before {
    background-size: cover;
    background-position: center;
  }
}

@media only screen and (max-width: 1200px) {
  .wrapper,
  .wrapper.wrapper-enroll {
    padding: 30px;
  }

  .btns-nav .btn--back { width: 40%; }
  .btns-nav .btn--primary { width: 60%; }
  h1 {
    font-size: 54px;
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wrapper:not(.wrapper-enroll) { 
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; 
  }
  .wrapper.wrapper-enroll {
    -webkit-box-flex: 12;
    -ms-flex: 12;
    flex: 12;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-content {
    z-index: 1;
  }
  h1 {
    line-height: 48px;
    font-size: 42px;
  }
  h2 {
    line-height: 42px;
    font-size: 36px;
  }
}




