/* Custom styles */

body {
  font-family: 'gotham', sans-serif;
  font-weight: 400;
  color: #023F5E;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'gotham', sans-serif;
  color: #001446;
}

h1 {
  font-family: "lexia", serif;
  font-weight: 800;
  font-style: normal;
}

h2, h3, h4, h5, h6 {
  color: #154898;
  padding-bottom: 15px;
}

.intro-container {
  background-image: linear-gradient(to bottom, rgba(136, 179, 202, 0.4), #ffffff);
  background-repeat: no-repeat;
  background-size: 100% 50px;
  background-position: top;
}

.intro-text {
  font-weight: 400;
  font-size: 23px;
  font-style: italic;
  color: #033f5f;
  margin-bottom: 70px;
  margin-top: 78px;
}

.site-header {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 16px;
}

.site-logo {
  max-height: 100px;
  width: auto;
}

.site-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 36px;
  height: 26px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #013f5f;
  transition: background-color 0.2s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #013f5f;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.nav-overlay-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.nav-overlay-list li {
  margin: 24px 0;
}

.nav-overlay-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
}

.nav-overlay-list a:hover,
.nav-overlay-list a:focus {
  color: #88b3ca;
}

.site-nav {
  width: 100%;
  background-color: #013f5f;
  border-bottom: 1px solid #88b3ca;
}

.site-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-list li {
  display: flex;
  align-items: center;
}

.site-nav-list a {
  padding: 14px 20px;
  color: #88b3ca;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: #013f5f;
}

.site-nav-list li:first-child a {
  background-color: #023F5E;
  color: #ffffff;
  padding-left: 0;
}

.site-nav-list a:hover,
.site-nav-list a:focus {
  color: #ffffff;
  text-decoration: none;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  background-color: #013f5f;
  /* background-blend-mode: color-burn; */
  color: #ffffff;
  display: flex;
  align-items: center;
  /* margin-bottom: 50px; */
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/banner-bg-1.png');
  background-repeat: no-repeat;
  background-position: 100%;
  opacity: 0.5;
  transform: scale(1.1);
  animation: hero-banner-pan 4s ease-in-out infinite alternate;
}

@keyframes hero-banner-pan {
  from {
    transform: scale(1.1) translate(0, 0);
  }
  to {
    transform: scale(1.18) translate(-1%, -1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner::before {
    animation: none;
  }
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.hero-banner h1 {
  font-size: 2.5rem;
  color: #88B3CA;
}

.hero-banner h1 .banner-highlight {
  color: #ffffff;
}

.hero-banner h1 .banner-indent {
  display: inline-block;
  padding-left: 95px;
  color: #ffffff;
}

.typewriter-word {
  display: inline-block;
  border-right: 2px solid currentColor;
  padding-right: 4px;
  animation: typewriter-blink 0.75s step-end infinite;
}

@keyframes typewriter-blink {
  50% {
    border-color: transparent;
  }
}

@media (min-width: 768px) {
  .hero-banner h1 {
    font-size: 4rem;
  }
}

@media (min-width: 992px) {
  .hero-banner h1 {
    font-size: 6.8rem;
    line-height: 100px;
  }
}

.hero-subtitle {
  font-family: 'gotham', sans-serif;
  font-size: 1rem;
  color: #efefef;
  font-weight: 300;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.54rem;
    line-height: 30px;
  }
}

.hero-banner h2,
.hero-banner h3,
.hero-banner h4,
.hero-banner h5,
.hero-banner h6 {
  color: #ffffff;
}

.split-section {
  width: 100%;
}

.split-text-col {
  background-color: #033f5f;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  font-size: 18px;
}

.split-text-col p {
  margin-bottom: 0;
}

#cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 30px;
  padding: 15px 20px;
  background-color: #cb8793;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

#cta::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}

.split-text-col p + p {
  margin-top: 30px;
}

.split-image-col {
  min-height: 300px;
  background-image: url('../images/office-pic-1.png');
  background-size: cover;
  background-position: 58% 100%;
  background-repeat: no-repeat;
}

.feature-cards {
  margin-top: 40px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.feature-card-image {
  width: 100%;
  display: block;
}

.feature-card-image--rounded-tr {
  border-top-left-radius: 25px;
}

#travelServiceModal .modal-content {
  border-radius: 0;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border: none;
}

#travelServiceModal .modal-title {
  font-size: 22px;
  padding-top: 3px;
  padding-bottom: 0;
}

#travelServiceModal .modal-body p {
  margin-bottom: 0;
}

.modal-backdrop.show {
  background-color: #021546;
  opacity: 0.85;
}

#travelServiceModal.fade .modal-dialog {
  transform: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

#travelServiceModal.show .modal-dialog {
  opacity: 1;
}

.feature-card-body h3 {
  margin-bottom: 0;
}

.feature-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 8px 20px;
  background-color: #154898;
  color: #ffffff;
  text-decoration: none;
  font-family: 'gotham', sans-serif;
  font-weight: 600;
  border-radius: 25px;
  transition: background-color 0.2s ease;
}

.feature-card-btn::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}

.feature-card-btn:hover {
  background-color: #001446;
  color: #ffffff;
}

.contact-section {
  margin-top: 55px;
}

.contact-box {
  background: linear-gradient(to bottom right, #EEEEEE, #FAFAFA);
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  width: 100%;
  display: flex;
  overflow: hidden;
  margin-top: 25px;
}

.contact-box-content {
  flex: 1;
  padding: 40px;
}

.contact-box-image {
  width: 416px;
  flex-shrink: 0;
  border-top-left-radius: 25px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .contact-section {
    margin-top: 40px;
  }

  .contact-box {
    flex-direction: column;
  }

  .contact-box-image {
    width: 100%;
    height: 220px;
    border-top-left-radius: 0;
  }

  .contact-box-content,
  .feature-card-body {
    padding: 40px;
  }
}

.contact-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-box p {
  color: #54585A;
}

.contact-box h2 {
  margin-bottom: 0;
  color: #154898;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #54585A;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #154898;
  stroke-width: 0.5;
}

.contact-email-item {
  display: flex;
  flex-direction: column;
  line-height: 0.7;
}

.contact-email-item a,
.contact-email-item a:visited,
.contact-email-item a:focus,
.contact-email-item a:hover {
  color: #54585A !important;
  text-decoration: none;
}

.contact-email-item small {
  font-size: 0.8rem;
  opacity: 0.85;
}

.contact-hours {
  margin-top: 21px;
  line-height: 24px;
  margin-bottom: 0;
}

.contact-hours--highlight,
.contact-hours--highlight strong {
  color: #154898 !important;
}

.contact-hours--out-of-hours {
  margin-top: 10px;
}

.contact-footnote {
  color: #54585A;
  font-size: 0.75rem;
  margin-top: 10px;
  margin-bottom: 0;
  opacity: 0.8;
}

.site-footer {
  width: 100%;
  background-color: #033f5f;
  margin-top: 80px;
  color: #ffffff;
  padding: 40px 0px;
}

.footer-side-effects {
  margin-bottom: 21px;
}

.footer-logo {
  height: 59px;
  margin-bottom: 30px;
}

.footer-side-effects h4 {
  color: #ffffff;
  margin-bottom: 0;
}

.footer-side-effects p {
  color: #ffffff;
}

.footer-side-effects p {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-side-effects p a,
.footer-side-effects p a:visited,
.footer-side-effects p a:hover,
.footer-side-effects p a:focus {
  color: #88b3ca !important;
  text-decoration: none;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  color: #cb8793;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-divider {
  border: none;
  border-top: 2px solid #88b3ca;
  box-shadow: none;
  margin: 20px 0 28px 0;
  background: #88b3ca;
  /* opacity: 0.50; */
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-links a,
.footer-links a:visited,
.footer-links a:hover,
.footer-links a:focus {
  color: #ffffff !important;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #ffffff;
}

.footer-copyright {
  color: #ffffff;
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 24px;
}

.footer-copyright a,
.footer-copyright a:visited,
.footer-copyright a:hover,
.footer-copyright a:focus {
  text-decoration: none;
  color: #88b3ca;
}

@media (max-width: 767.98px) {
  .feature-card-col--spaced {
    margin-bottom: 40px;
  }

  .feature-card-body {
    padding: 40px;
  }
}

.feature-card-body {
  background: linear-gradient(to bottom right, #EEEEEE, #FAFAFA);
  padding: 40px;
  border-bottom-right-radius: 25px;
  flex: 1;
}
