:root {
  --main-color: #0055a5;
  --light-color: #f8f9fd;
  --dark-color: #1a272d;
  --black-color: #212121;
  --gray-color: #676767;
  --light-gray-color: #dadada;
  --light-blue-color: #F0F7FD;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
  margin-bottom: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}
/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
body {
  font-family: "Host Grotesk";
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--dark-color);
}
p {
  text-align: justify;
  color: var(--dark-color);
}
a {
  --bs-link-color-rgb: var(--main-color);
  color: var(--main-color);
  -webkit-text-decoration: none;
  text-decoration: none;
}
label {
  color: var(--dark-color);
}
input {
  color: var(--dark-color);
}
.reset-list {
  padding: 0;
  list-style: none;
}
.heading-xxl {
  font-size: max(50px, min(8vw, 100px));
}
.heading-lg {
  font-size: max(35px, min(6vw, 65px));
}
.heading-md {
  font-size: max(25px, min(4.5vw, 45px));
}
.heading-sm {
  font-size: max(20px, min(3vw, 30px));
}
.heading-xs {
  font-size: max(15px, min(2vw, 20px));
}
.text-white {
  color: var(--light-color);
}
.text-white-50 {
  color: var(--light-color);
  opacity: .6;
}
.text-dark {
  color: var(--dark-color);
}
.text-500 {
  font-weight: 500;
}
.underline,
.underline-sm {
  position: relative;
}
.underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--main-color);
}
.underline-sm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--main-color);
}
.text-disclaimer {
  font-size: 14px;
  color: var(--gray-color)
}
body {
  padding-top: 86px;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 5.8vw;
  padding-right: 5.8vw;
}
.overlap-grid-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.margin-r-n-md {
  margin-right: -100px;
}
.padding-y-md {
  padding-top: min(10vh, 10rem);
  padding-bottom: min(10vh, 10rem);
}
.padding-t-md {
  padding-top: min(10vh, 10rem);
}
.padding-b-md {
  padding-bottom: min(10vh, 10rem);
}
.padding-l-md {
  padding-left: 5.3vw;
}
.bg-light {
  background-color: var(--light-color);
}
.border-rounded-12 {
  border-radius: 12px;
}
.bg-main {
  background-color: var(--main-color);
}
.bg-light-blue {
  background-color: var(--light-blue-color);
}
.border-blue {
  border: 3px solid var(--main-color);
}
.max-height-750 {
  max-height: 750px;
}
.grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-gap: 20px;
  gap: 20px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--light-gray-color);
  z-index: 100;
}
.menu {
  height: 86px;
}
@media screen and (min-width: 1200px) {
.menu {
    display: flex;
    justify-content: space-between;
}
  }
.menu__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__logo img {
  height: 60px;
}
.menu__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1200px) {
.menu__toggle {
    display: none;
}
  }
.menu__burger,
.menu__close {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: 25px;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.menu__close {
  opacity: 0;
}
.menu__nav {
  position: absolute;
  left: 0;
  top: 75px;
  width: 100%;
  background-color: var(--light-color);
  height: calc(100vh - 86px);
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: top 0.4s, opacity 0.3s;
}
@media screen and (min-width: 1200px) {
.menu__nav {
    position: static;
    width: auto;
    height: 100%;
    overflow: visible;
    overflow: initial;
    pointer-events: initial;
    opacity: 1;
}
  }
.menu__list {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  background-color: #fff;
  list-style: none;
}
@media screen and (min-width: 1200px) {
.menu__list {
    height: 100%;
    display: flex;
    gap: 25px;
}
  }
.menu__link {
  color: var(--dark-color);
  font-weight: 500;
  -webkit-text-decoration: none;
  text-decoration: none;
  padding: 20px 35px;
  display: flex;
  justify-content: space-between;
  transition: background-color 0.3s, color 0.4s;
}
@media screen and (min-width: 1200px) {
.menu__link {
    position: relative;
    height: 100%;
    padding: 0;
    justify-content: initial;
    align-items: center;
    gap: 10px;
}
  }
.menu__link:hover {
  background-color: var(--light-color);
}
@media screen and (min-width: 1200px) {
.menu__link:hover {
    background-color: transparent;
    color: var(--main-color);
}
    .menu__link:hover::after {
      opacity: 1;
    }
  }
.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: var(--main-color);
  opacity: 0;
  transition: opacity 0.4s;
}
/* SHOW MENU */
.show-menu {
  opacity: 1;
  top: 75px;
  pointer-events: initial;
}
.show-icon .menu__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .menu__close {
  opacity: 1;
  transform: rotate(90deg);
}
/* DROPDOWN MENU */
.dropdown__item {
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
.dropdown__item {
    position: relative;
}
  }
.dropdown__arrow {
  font-size: 25px;
  transition: transform 0.4s;
}
.dropdown__menu {
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
@media screen and (min-width: 1200px) {
.dropdown__menu {
    max-height: none;
    max-height: initial;
    /* overflow: initial; */
    position: absolute;
    width: -moz-max-content;
    width: max-content;
    top: 83px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.4s;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--light-gray-color);
}
  }
.dropdown__link {
  padding: 20px 35px 20px 45px;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--gray-color);
  background-color: #fff;
  display: flex;
  align-items: center;
  transition: background-color 0.4s;
}
@media screen and (min-width: 1200px) {
.dropdown__link {
    padding-left: 20px;
    padding-right: 35px;
}
  }
.dropdown__link:hover {
  background-color: var(--light-color);
}
/* SHOW DROPDOWN MENU */
.dropdown__item:hover .dropdown__menu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}
@media screen and (min-width: 1200px) {
.dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 76px;
    pointer-events: initial;
    transition: top 0.4s;
}
  }
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}
.footer {
  background-color: var(--black-color);
}
.footer p {
  color: var(--light-gray-color);
}
.footer h4 {
  color: var(--light-gray-color);
}
.footer__link {
  color: var(--light-gray-color);
  transition: color 0.4s;
}
.footer__link:hover {
  color: var(--main-color);
}
.footer__copyright {
  background: var(--black-color);
}
.footer__copyright a{
  font-size: 14px;
  color: var(--gray-color); transition: all 0.3s;
}
.footer__copyright a:hover{
  color: #fff; transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    gap: 1rem;
}
  }
.form-control {
  border-radius: 12px;
  border: 1px solid var(--light-gray-color);
}
.form-control:focus,
.form-select:focus {
  color: var(--dark-color);
  background-color: #fff;
  border-color: var(--gray-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--light-gray-color);
}
.form-check-input:checked {
  background-color: var(--main-color);
}
.form-check-input:focus {
  border-color: var(--gray-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--light-gray-color);
}
.form-error,
.form-submitting,
.form-message {
  display: none;
}
.modal-content {
  padding-top: 35px;
  padding-bottom: 35px;
}
.modal-body,
.modal-header {
  padding-left: 30px;
  padding-right: 30px;
}
.modal-header {
  border-bottom: none;
}
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    /*font-weight: 500;*/
}
.icon-list li i {
    font-size: 22px;
    color: var(--main-color);
}
/*@import "layout/banner.css";*/
.button {
  padding: 10px 25px;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: block;
  transition: all 0.5s;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
.button {
    font-size: 16px;
}
  }
.button-main {
  background: linear-gradient(
    0deg,
    rgba(0, 68, 153, 1) 0%,
    rgba(0, 85, 165, 1) 100%
  );
  background-size: cover;
  background-repeat: no-repeat; /* Prevents repeating */
  background-clip: padding-box;
  color: #fff;
  border: 2px solid transparent;
}
.button-main:hover {
  background: linear-gradient(
    0deg,
    rgba(0, 68, 153, 1) 0%,
    rgba(0, 85, 165, 1) 100%
  );
  background-size: cover;
  background-repeat: no-repeat; /* Prevents repeating */
  background-clip: padding-box;
}
.button-outline {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background-color: transparent;
}
.button-outline:hover {
  background-color: var(--main-color);
  color: #fff;
}
.button-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
}
.button-outline-white:hover {
  background-color: #fff;
  color: var(--main-color);
}
.accordion {
    --bs-accordion-border-radius: 20px;
    --bs-accordion-inner-border-radius: 20px;
    --bs-accordion-active-bg: #fff;
    --bs-accordion-active-color: var(--main-color);
    --bs-accordion-btn-focus-box-shadow: none;
}
.accordion-item {
    margin-bottom: 15px;
    border-radius: 20px;
    border: 2px solid var(--light-gray-color);
}
.accordion-item:not(:first-of-type) {
    border-top: 2px solid var(--light-gray-color);
}
.accordion-button {
    border-radius: 20px;
    color: var(--gray-color)
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--main-color)
}
.accordion-button::after {
    background-image: url("../img/icons/add-line.svg");
}
.accordion-button:not(.collapsed)::after {
    background-image: url("../img/icons/subtract-line.svg");
}
.list-component {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray-color);
    border-radius: 20px;
    color: var(--gray-color);
    font-weight: 500;
    cursor: pointer;
    transition: all .4s;
}
.list-component:hover {
    border: 2px solid var(--main-color);
    color: var(--main-color);
}
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 86px);
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__overlay {
  position: absolute;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.service-carousel .carousel-cell {
  width: calc(50% - 5px);
  /* max-width: 385px; */
  /* height: 160px; */
  min-height: 100%;
  margin-right: 10px;
  border: 2px solid var(--light-gray-color);
  border-radius: 12px;
}
.service-carousel .flickity-button {
  box-shadow: 0px 0px 11px -1px rgba(0, 0, 0, 0.27);
}
.service-carousel .flickity-button-icon {
  fill: var(--gray-color);
}
.service-carousel .flickity-page-dots {
  opacity: 0;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: pointer;
}
.service-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  /* border: 2px solid var(--light-gray-color);
  border-radius: 12px; */
  padding: 20px 30px;
  height: 100%;
}


@media screen and (min-width: 768px) {
  .service-card {
      flex-direction: row;
      align-items: flex-start;
  }
}
.service-card img {
  height: 50px;
}
.service-card h4 {
  margin-bottom: 10px;
}
.service-card p {
  text-align: left;
}
.locations .nav-pills {
  justify-content: center;
}
.oa-1-col-left {
	height: 380px;
}
.oa-1-col-left > img {
	border-radius: 10px;
	overflow: hidden;
}
.oa-v-timeline-holder {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0px auto;
	top: 50px;
	height: calc(100% - 100px);
	z-index: 0;
	width: 5px;
	background: #dbdbdb;
}
.oa-1-main {
	position: relative;
	z-index: 1;
}
.oa-v-timeline-counter-holder-main {
	display: flex;
	height: calc(100% + 30px);
	flex-direction: column;
	align-items: center;
	counter-reset: row-counter;
	justify-content: space-between;
	margin-top: -15px;
	z-index: 1;
	position: relative;
}
.oa-v-timeline-counter-holder {
  counter-increment: row-counter; /* Increment the counter */
}
.oa-v-timeline-counter::before {
	content: counter(row-counter);
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #dbdbdb;
	align-items: center;
	justify-content: center;
	display: flex;
	color: #fff;
	font-size: 21px;
	font-family: "Host Grotesk";
	margin: 0 auto;
	box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.4);
}

.oa-v-timeline-counter-holder.active .oa-v-timeline-counter::before {
  background: #00459a;
}

.oa-v-timeline-bar {
	/* animation-timing-function: cubic-bezier(0,0,.2,1);
	animation-duration: .3s;
	transition-timing-function: cubic-bezier(0,0,.2,1);
	transition-duration: .3s;
	transition-property: all; */
	background: #00459a;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.dropdown-toggle {
  background-color: #fff;
  border: 2px solid var(--light-gray-color);
  color: var(--dark-color);
  padding: 10px 30px;
  border-radius: 12px !important;
}
.dropdown-toggle i {
  display: inline-block;
  transition: transform 0.4s;
}
.dropdown-toggle.show i {
  transform: rotate(180deg);
}
.dropdown-toggle:hover {
  color: var(--dark-color);
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  padding-top: 0;
  padding-bottom: 0;
  border: 2px solid var(--light-gray-color);
  transition: transform 0.4s;
  border-radius: 12px;
  overflow: hidden;
}
.dropdown-menu button {
  width: 100%;
  text-align: left;
  border-radius: 0;
  color: var(--dark-color);
  padding: 10px 30px;
}
.dropdown-menu button:hover {
  color: var(--dark-color);
}
.nav-pills .nav-link.active {
  background-color: var(--light-color);
  color: var(--dark-color);
}
.hours {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.hour {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.hour__day {
  font-weight: 500;
}
.hour:not(:last-child) {
  border-bottom: 2px solid var(--light-color);
}
.service-image--1 {
    grid-column: 3/7;
    grid-row: 2/4;
}
.service-image--2 {
    grid-row: 3/5;
    grid-column: 1/6;
}
.service-image--3 {
    grid-row: 1/3;
    grid-column: 4/-1;
}
.location__times li {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1199.98px) {
  .service-carousel .carousel-cell {
    width: 100%;
  }
}
@media screen and (max-width: 575.98px) {
  .service-card img {
    height: 40px;
  }
  .service-card {
    padding: 20px 15px;
  }
}