/* START: PROVIDER BRANDING COLORS */
:root {
  --brand-primary: #00295C;
  --brand-secondary: #F58220;
  --brand-text: #4F4F4F;
}
/* END: PROVIDER BRANDING COLORS */

/* START: HEADER MENU */
.c-header row {
  height: 100px;
  display: flex;
  flex-wrap: nowrap;
}
#logo-link {
  height: 100px;
  padding-right: 30px;
}
svg {
  width: 100%;
}
#logo {
  height: 100px;
  width: 100%;
}
.language-selector {
  border: 1px solid #AFAFAF;
  border-radius: .25rem;
  font-size: 16px !important;
  line-height: 16px;
  padding: 8px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  column-gap: 0px;
  width: fit-content;
}
.language-selector img {
  color: #016699;
}
.language-selector button {
  all: unset;
  position: relative;
  margin-left: 10px;
  color: #016699;
}
.language-selector button::after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -35px;
  right: -10px;
  cursor: pointer;
}
.c-header__nav {
  background-color: #FFF;
}
.c-header__nav a {
  color: var(--brand-primary);
}
.c-header__nav a#signup-mobile {
  color: var(--brand-secondary);
}
/* END: HEADER MENU */

/* START: INTRO IMAGE OVERLAY */
.c-text-on-image {
  color: #FFF;
}
.c-text-on-image .e-button--primary {
  min-width: 143px;
  background-color: var(--brand-secondary);
  color: #FFF;
}
.c-text-on-image .e-button--secondary {
  color: var(--brand-primary);
  background-color: #FBFBFB;
}
/* END: INTRO IMAGE OVERLAY */

/* START: SWIPER */
.l-swiper .c-swiper-header .c-swiper-header__link {
  color: var(--brand-primary);
}
.c-swiper-header__link.active {
  border-bottom: solid 5px var(--brand-secondary);
}
.swiper-slide__content {
  color: var(--brand-text);
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .swiper-slide__content {
    text-align: left;
  }
}
/* END: SWIPER */

/* START: QUALIFICATIONS */
.c-qualifications__title {
  color: var(--brand-text);
}
.c-qualifications__checklist {
  row-gap: 27px;
}
#sign-up-1 {
  /* display: flex; */
  justify-content: center;
  padding: 30px 0;
}
#sign-up-1 button {
  background-color: var(--brand-secondary);
  color: #FFF;
  width: 250px;
  margin: 0 auto;
}
.checklist {
  color: var(--brand-text);
}
.checklist--icon {
  justify-content: flex-start;
}
.checklist i {
  padding-right: 24px;
  color: var(--brand-primary);
}
.checklist p {
  font-size: 16px;
  line-height: 24px;
}
.checklist p a {
  color: var(--brand-text);
  text-decoration: underline;
}
.checklist p a:hover {
  color: var(--brand-text);
}
@media only screen and (min-width: 992px) {
  #qualifications-container .c-qualifications__content {
    padding: 75px 95px 75px 95px;
    align-items: center;
  } 
  #qualifications-container #sign-up-0 button {
    background-color: var(--brand-secondary);
    color: #FFF;
    width: 100%;
  }
  #qualifications-container .checklist ul {
    margin: 0;
  }
  #qualifications-container .checklist p {
    font-size: 20px;
    line-height: 32px;
  }
}
/* END: QUALIFICATIONS */

/* START: PARTNERS */
.c-partners {
  color: var(--brand-text)
}
@media only screen and (min-width: 992px) {
  .c-partners {
    height: 281px;
  }
  .c-partners__logo img {
    max-width: 289px;
  }
}
/* END: PARTNERS */

/* START: FOOTER */
.c-footer {
  color: #AFAFAF;
  background-color: var(--brand-text);
  height: 230px;
}
.c-footer #c-footer__contact {
  display: none;
}
.c-footer .item {
  margin-top: 68px;
}
.c-footer p {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .c-footer {
    height: 467px;
    margin-top: -257px;
    padding-top: 217px;
  }
  .c-footer #c-footer__contact {
    display: block;
    color: #FFF;
  }
  .c-footer .item {
    margin-top: 0;
  }
  .c-footer p {
    text-align: left;
  }
}
/* END: FOOTER */

/* START: MODAL */
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: table;
  transition: opacity .3s ease;
}
.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.modal-container {
  max-width: 700px;
  width: 90%;
  margin: 0px auto;
  color: var(--brand-text);
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  padding: 2em 15px;
  border-radius: 10px;
}
.modal-header {
  border-bottom: 0px;
  display: flex;
  padding: 0 0 5px 0;
  flex-direction: row;
  justify-content: center;
}
.modal-header h3 {
  margin-top: 0;
  font-size: 32px;
  margin-bottom: 0;
  text-align: center;
  line-height: 32px;
}
.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  width: 60%;
  max-width: 350px;
  margin: 0 auto;
}
.modal-body p {
  text-align: center;
  font-weight: 600;
}
.modal-body select {
  max-width: 350px;
  width: 90%;
  margin: 0 0 25px 0;
  font-size: 16px;
}
.modal-body option {
  top: 100%;
  left: 0;
}
.modal-footer {
  border-top: none;
}
.modal-footer button {
  background-color: var(--brand-secondary);
  color: #FFF;
  width: 175px;
}
.modal-footer button:disabled {
  background-color: #AFAFAF;
  cursor: not-allowed;
}
@media only screen and (min-width: 768px) {
  .modal-container {
    padding: 2em 30px;
  }
  .modal-header h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .modal-body select {
    width: 100%;
  }
  .modal-footer button {
    width: 240px
  }
}
/* END: MODAL */