/*    version 1.4        */
/*    August 5th 2020     */

a {
  color: inherit;
  text-decoration: none;
}
a[href^='tel'] {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
}

th {
  color: #6e6e6e;
  font-weight: 300;
  vertical-align: bottom;
  border-bottom: 1px solid #ddd;
}

th,
td {
  padding: 10px 30px 10px 30px;
  text-align: left;
  vertical-align: top;
}

.hiddenInfo ul {
  list-style: disc;
}

tr {
  border-bottom: none;
}
.jumbo-caption {
  font-weight: 300;
  font-size: 1.5em;
}
.small-h2-font {
  font-size: 1.6em;
}
.sub-title {
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 30px;
  margin-bottom: 30px;
}
.outlineBtn:hover {
  background-color: black;
  color: white;
}
.faq-row-margin {
  margin-bottom: 30px;
}
.faq-subtitle {
  font-size: 20px;
  padding: 50px 8px 8px 8px;
}
.faq-subtitle-general {
  font-size: 20px;
  padding: 50px 8px 8px 8px;
}
.staff-margins {
  margin-bottom: 3%;
}
.footer-copy a {
  border-bottom: solid 1px #2566af;
  text-decoration: none;
}

/*************************************/
/* HEADER */
/*************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4.8rem;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
}
.logo-in-header {
  height: 5rem;
  margin-left: -10px;
  object-fit: 'contain';
}
/*************************************/
/* NAVIGATION */
/*************************************/
.main-nav ul {
  margin-bottom: 0;
  padding: 0;
}
.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  font-weight: 500;
  font-size: 1.25rem;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #2566af;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.6rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #2566af;
}
.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #2566af;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}
.icon-mobile-nav {
  height: 2rem;
  width: 2rem;
  color: #333;
}
.icon-mobile-nav[name='close-outline'] {
  display: none;
}
/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 6rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .section-hero {
  margin-top: 9.6rem;
}
#loginBtn,
#discountBtn {
  position: static;
  top: auto;
  right: 5px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
#discountBtn {
  z-index: 11;
  display: block;
  opacity: 1;
  color: white;
  transition: all 0.25 ease;
  width: 268.7px;
  background-color: rgba(255, 255, 255, 0.2);
}
#discountBtn:hover,
#loginBtn:hover,
#loginBtn-mobile:hover {
  background-color: white !important;
}
#loginBtn {
  z-index: 11;
  display: block;
  opacity: 1;
  color: white;
  transition: all 0.25 ease;
  width: 268.7px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------- */
/* Landing Page Section */
/* --------------------------------------- */
.uhn-logo-landing {
  height: 100px;
  margin-left: -35px;
}

/* --------------------------------------- */
/* Queries for BHPC */
/* --------------------------------------- */
@media only screen and (max-height: 800px) {
  .row-margin-top-0 {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 1800px) {
  .header {
    padding: 0 3rem;
  }
  .main-nav-list {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1250px) {
  .header {
    padding: 0 1.5rem;
  }
  .logo-in-header {
    height: 4rem;
  }
  .main-nav-list {
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 1000px) {
  .staff-margins {
    margin-bottom: 5%;
  }
}
@media only screen and (max-width: 944px) {
  /* MOBILE NAVIGATION */
  .btn-mobile-nav {
    display: block;
    z-index: 9999;
  }
  .main-nav {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;

    z-index: 9998;

    /* Hiding navigation */
    /* Allows NO transitions at all */
    /* display: none; */

    /* 1) Hide it visually */
    opacity: 0;

    /* 2) Make it unaccessible to mouse and keyboard */
    pointer-events: none;

    /* 3) Hide it from screen readers */
    visibility: hidden;
  }
  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-open .icon-mobile-nav[name='close-outline'] {
    display: block;
  }
  .nav-open .icon-mobile-nav[name='menu-outline'] {
    display: none;
  }
  .main-nav-list {
    flex-direction: column;
    gap: 2.8rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .uhn-logo-landing {
    height: 100px;
    margin-bottom: -10px;
    margin-left: -25px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    text-align: center;
  }
  .iconContainer {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .centerOnMobile {
    text-align: center !important;
  }
  .alignLeftOnMobile {
    text-align: left !important;
  }
  .addMarginBottomMobile {
    margin-bottom: 30px;
  }
  .hiddenOnMobile {
    display: none;
  }
  .thinLine {
    width: 100%;
    height: 1px;
    background-color: lightgray;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .col1 {
    flex-basis: 100%;
  }
  .col {
    flex-basis: 50%;
  }
  .borderCard {
    height: 400px;
  }
  .newsImg {
    height: 100px;
  }
}
@media only screen and (max-width: 600px) and (orientation: portrait) {
  h1 {
    font-size: 1.5rem;
  }
  .main-nav-list {
    gap: 2rem;
    font-size: 1.4rem;
  }
  .sticky .header {
    height: 5rem;
  }
  .bigSpacer {
    height: 30px !important;
  }
  .cta {
    font-size: 0.8em;
  }
  .faq {
    margin-bottom: 0px;
  }
  .logo-mobile-center {
    text-align: center;
    padding-left: 0px;
  }
  .newsImg {
    height: 200px;
  }
  .small-h2-font {
    font-size: 1.5em;
  }
  .jumbo-caption {
    font-size: 1.2em;
  }
  .highlightText {
    font-size: 1.2em;
  }
  .uhn-logo-landing {
    height: 60px;
    margin-bottom: -5px;
    margin-left: -15px;
  }
}

@media only screen and (max-width: 375px) {
  .newsImg {
    height: 165px;
  }
}

@media only screen and (max-width: 350px) {
  .flip-container,
  .front,
  .back {
    width: 300px;
  }
}
@media only screen and (max-height: 500px) and (orientation: landscape) {
  .main-nav-list {
    gap: 1.2rem;
    font-size: 1.4rem;
  }
  .sticky .header {
    height: 5rem;
  }
  .jumbo-caption {
    font-size: 1.2em;
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.6em;
  }
  .mainMenuOpen {
    height: 95% !important;
  }
  .uhn-logo-landing {
    height: 60px;
    margin-left: -10px;
  }
}
