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

a[href^='tel'] {
  color: inherit;
  text-decoration: none;
}
.hiddenInfo ul {
  list-style: disc;
}
ol {
  font-weight: bold;
}
ol li {
  margin-bottom: 10px;
}
.font-weight-400 {
  font-weight: 400;
}
.sub-title {
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 30px;
  margin-bottom: 30px;
}
.small-h2 {
  font-size: 1.5em;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.check-list-container {
  padding-top: 1%;
}
.check-list-container > ul > li {
  list-style-type: none;
  margin-bottom: 15px;
}
.check-list-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.check-list-text {
  margin-left: 15px;
  font-size: 1rem;
  font-weight: 300;
}
.check-list-icon {
  width: 15px;
}

/*************************************/
/* HEADER */
/*************************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;

  /* Because we want header to be sticky later */
  height: 4.2rem;
  padding: 0 4.8rem;
  position: relative;
}
.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.5rem;
}
.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: 4.2rem;
  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;
}

/* --------------------------------------- */
/* Landing Page Section */
/* --------------------------------------- */

/* --------------------------------------- */
/* About Us Section */
/* --------------------------------------- */
.about-us-section {
  padding-top: 60px;
  padding-bottom: 50px;
}
.about-us-section ul {
  list-style-type: none;
}
/* --------------------------------------- */
/* Our Services section */
/* --------------------------------------- */
.our-services-section {
  padding-top: 60px;
}
.mediumIcons {
  height: 120px;
}
.mediumSpacer {
  height: 50px;
}
.maincolor-link a {
  color: #2566af;
  border-bottom: solid 1px #2566af;
  text-decoration: none;
}
.maincolor-link a:hover {
  border-bottom: solid 0px #2566af;
}
.customer-service-context,
.customer-service-list {
  text-align: left;
}
.service-row {
  margin-bottom: 50px;
}

/* --------------------------------------- */
/* TEAM */
/* --------------------------------------- */
.team-section {
  padding-top: 60px;
  padding-bottom: 22px;
}
.team-column {
  padding: 30px 20px;
  text-align: center;
  margin: 0 0 28px;
}
.team-photo {
  width: 100%;
  margin-bottom: 4rem;
}
.staff-feature {
  margin-bottom: 5px;
}
/* --------------------------------------- */
/* FAQ */
/* --------------------------------------- */
.faq-section {
  padding: 60px 0;
}
/* --------------------------------------- */
/* Footer */
/* --------------------------------------- */
.cores-link-style {
  font-weight: 400;
  font-size: 1.2em;
}

/* --------------------------------------- */
/* Queries for BIU */
/* --------------------------------------- */
@media only screen and (max-height: 900px) {
  .removeBigSpacer {
    display: none;
  }
}
@media only screen and (max-width: 1699px) {
  .main-nav-list {
    gap: 3.5rem;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1491px) {
  .main-nav-list {
    gap: 2.5rem;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .header {
    padding: 0 3.2rem;
  }
  .main-nav-list {
    gap: 2rem;
    font-size: 1.2rem;
  }
}
@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: 2rem;
  }
  .small-h2 {
    font-size: 1.3em;
  }
  .about-us-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .our-services-section {
    padding-top: 40px;
  }
  .team-section {
    padding-top: 40px;
    padding-bottom: 22px;
  }
  .faq-section {
    padding: 40px 0;
  }
  .service-row {
    margin-bottom: 50px;
  }
  .mediumIcons {
    height: 90px;
  }
  .check-list-container > ul > li {
    margin-bottom: 5px;
  }
  .check-list-container > ul {
    padding-left: 10px;
  }
  .footer-left {
    text-align: center;
  }
  .logo-in-footer {
    height: 80px;
    margin-top: -20px;
  }
  .logo-in-header {
    height: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    text-align: center;
  }
  .iconContainer {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .centerOnMobile {
    text-align: center !important;
  }
  .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%;
  }
}
@media only screen and (max-width: 600px) and (orientation: portrait) {
  h1 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 0.95em;
  }
  .header {
    height: 4rem;
  }
  .sticky .header {
    height: 4rem;
  }
  .logo-in-header {
    height: 3.5rem;
    margin-left: -3rem;
  }
  .main-nav-list {
    font-size: 1.5rem;
  }
  .bigSpacer {
    height: 30px !important;
  }
  .cta {
    font-size: 0.8em;
  }
  .faq {
    margin-bottom: 0px;
  }
  .logo-mobile-center {
    text-align: center;
    padding-left: 0px;
  }
  .row {
    margin-top: 0px;
  }
  .sub-title {
    font-size: 0.8em;
  }
  .faq .card .card-body {
    padding: 15px;
  }
  .mediumIcons {
    height: 80px;
  }
  .service-row {
    margin-bottom: 0;
  }
  .mediumSpacer {
    height: 25px;
  }
  .check-list-container > ul {
    padding-left: 18px;
  }
  .check-list-container > ul > li {
    margin-bottom: 5px;
  }
  .logo-in-footer {
    height: 70px;
    margin-top: -20px;
  }
  .team-section .team-column {
    padding: 0;
    margin: 0;
  }
  .iconContainer {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-height: 500px) and (orientation: landscape) {
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.6em;
  }
  .small-h2 {
    font-size: 1.1em;
  }
  .logo-in-header {
    height: 3.5rem;
    margin-left: -1rem;
  }
}
