:root {
  --MRTNavy: #000033;
  --MRTGreen: #29B494;
  --LightBlue: #F4FAFC;
  --LightGreen: #E7F6F3;
  --LightPink: #F9F4F4;
  --White: #FFFFFF;
  --SuperLightGrey: #F5F5F5;
  --LightGrey: #EDEDED;
  --MediumGrey: #C1C1C1;
  --DarkGrey: #595959;
  --Black: #171717;
  --Green: #13BE00;
  --Yellow: #FDC602;
  --BurntOrange: #CF3801;
  --Red: #A90000;
  --Success: #E7F9E5;
  --Warning: #FFF9E6;
  --LightOrange: #FFE6CD;
  --Error: #F6E5E5;
  --Purple: #6A0DAD;
  --MRTGradient: linear-gradient(260deg, #BCFCF0 0%, #F8E9E9 100%);
}

#hero-section {
  background-color: var(--MRTNavy);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero-section h1, #hero-section p {
  color: var(--White) !important;
}

#bsa-content-section {
  padding: 25px 0;
}
@media (min-width: 992px) {
  #bsa-content-section {
    padding: 50px 0;
  }
}

.bsa-card {
  text-align: center;
}
.bsa-card .icon {
  background-color: var(--LightBlue);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.bsa-card .icon img {
  width: 75px;
}

form select,
form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--MediumGrey);
  border-radius: 0;
  height: 45px;
}
form button:disabled {
  opacity: 0.6 !important;
}

#modal {
  background-color: rgba(23, 23, 23, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal .modal-body {
  position: relative;
  background-color: var(--White);
  width: 100%;
  max-width: 80vw;
}
@media (min-width: 992px) {
  #modal .modal-body {
    max-width: 600px;
    max-height: 400px;
  }
}
#modal .modal-body .exit-modal-pos {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
#modal .modal-body .exit-modal-pos #exit-modal {
  border: 0;
  background-color: transparent;
}
#modal .modal-body .modal-body-content {
  padding: 45px 25px;
  text-align: center;
}