/* FONTS
 ========================================================================== */
.primaryFont {
  font-family: "Gilroy", sans-serif;
}
/* COLORS
 ========================================================================== */
/* GRID
 ========================================================================== */
/* MEDIA QUERY
 ========================================================================== */
/* OTHER
 ========================================================================== */
.no-hyphens {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
.large {
  font-size: 1.3rem;
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.emphasis {
  display: block;
  padding-top: 1em;
  padding-bottom: 0.25em;
  font-size: 150%;
  font-style: italic;
  line-height: 1.5;
  clear: both;
}
.in-content-links {
  border-bottom: 1px dotted;
  color: #191971;
  text-decoration: none;
}
.in-content-links:hover,
.in-content-links:focus {
  border-bottom-color: transparent;
}
.footer-widget-title {
  color: #191971;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
/*Advanced fluid typography mixin (http://codepen.io/MadeByMike/pen/RWJyML) */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none !important;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 500ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-carousel .fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme.owl-carousel .owl-nav {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme.owl-carousel .owl-nav button.owl-prev,
.owl-theme.owl-carousel .owl-nav button.owl-next {
  margin: 0;
  background: url("../img/arrow-slider.png");
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s;
  width: 45px;
  height: 45px;
}
.owl-theme.owl-carousel .owl-nav button.owl-prev:hover,
.owl-theme.owl-carousel .owl-nav button.owl-next:hover,
.owl-theme.owl-carousel .owl-nav button.owl-prev:focus-visible,
.owl-theme.owl-carousel .owl-nav button.owl-next:focus-visible {
  opacity: 1;
}
.owl-theme.owl-carousel .owl-nav button.owl-next {
  transform: rotate(180deg);
}
.owl-theme.owl-carousel .owl-nav .disabled {
  opacity: 0.25;
  cursor: default;
}
.owl-theme.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 2.5rem;
}
@media only screen and (max-width : 991px) {
  .owl-theme.owl-carousel .owl-nav {
    justify-content: center;
  }
}
.owl-theme.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme.owl-carousel .owl-dots .owl-dot {
  width: auto;
  flex-basis: auto;
}
.owl-theme.owl-carousel .owl-dots .owl-dot span {
  display: block;
  background: #b9bcc3;
  -webkit-backface-visibility: visible;
  transition: background 300ms;
  width: 40px;
  height: 10px;
}
.owl-theme.owl-carousel .owl-dots .owl-dot.active span,
.owl-theme.owl-carousel .owl-dots .owl-dot:hover span,
.owl-theme.owl-carousel .owl-dots .owl-dot:focus-visible span {
  background: #ffffff;
}
@media only screen and (min-width : 992px) {
  .owl-theme.owl-carousel .owl-dots .owl-dot span {
    width: 100px;
  }
}
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}
[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}
[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}
[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}
[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}
[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}
[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}
[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}
[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}
[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}
[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}
[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}
[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}
[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}
[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}
[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}
[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}
[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}
[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}
[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}
[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}
[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}
[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}
[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}
[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}
[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}
[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}
[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}
[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}
[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}
[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}
[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}
[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}
[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}
[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}
[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}
[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}
[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}
[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}
[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}
[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}
[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}
[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}
[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}
[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}
[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}
[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}
[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}
[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}
[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}
[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}
[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}
[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}
[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}
[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}
[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}
[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}
[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}
[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}
[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}
[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}
[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}
[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}
[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}
[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}
[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}
[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}
[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}
[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}
[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}
[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}
[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}
[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}
[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}
[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}
[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}
[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}
[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}
[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}
[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}
[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}
[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}
[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}
[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}
[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}
[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}
[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}
[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}
[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}
[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}
[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}
[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}
[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}
[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}
[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}
[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}
[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}
[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}
[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}
[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}
[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}
[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}
[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}
[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}
[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}
[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}
[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}
[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}
[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}
[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}
[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}
[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}
[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}
[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}
[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}
[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}
[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}
[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}
[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0s;
}
[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}
[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}
[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}
[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}
[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}
[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}
[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}
[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}
[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}
[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}
[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}
[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
[data-aos=zoom-in] {
  transform: scale(0.6);
}
[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-aos=zoom-out] {
  transform: scale(1.2);
}
[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}
[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}
[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}
[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}
[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}
[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}
[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}
[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}
[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}
[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}
[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}
[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}
[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
/**
 * Infinite Marquee 1.0.12
 * Infinite Horizontal & Vertical Marquee animation based on CSS and controlled with JS
 *
 * Copyright 2024 Vahan Baghdasaryan
 *
 * Released under the MIT License
 *
 * Released on: August 6, 2024
 */
.horizontal-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: var(--_gap);
  max-width: 100%;
}
.horizontal-marquee.smooth {
  -webkit-mask: linear-gradient(90deg, transparent, #ffffff 20%, #ffffff 80%, transparent);
  mask: linear-gradient(90deg, transparent, #ffffff 20%, #ffffff 80%, transparent);
}
.horizontal-marquee.paused .horizontal-marquee-inner {
  animation-play-state: paused;
}
.horizontal-marquee.full .horizontal-marquee-inner {
  min-width: var(--_containerWidth);
}
.horizontal-marquee-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: var(--_gap);
  white-space: nowrap;
}
[data-animate=true] .horizontal-marquee-inner {
  animation: horizontal-marquee var(--_speed) linear infinite var(--_direction);
}
@keyframes horizontal-marquee {
  0% {
    transform: translate(calc(var(--_gap) * -1));
  }
  100% {
    transform: translate(calc(-100% - var(--_gap) * 2));
  }
}
.vertical-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: var(--_gap);
  max-height: 100%;
  flex-direction: column;
  height: calc(calc(var(--_containerSize) - var(--_vGap)) / 1.2);
}
.vertical-marquee.smooth {
  -webkit-mask: linear-gradient(180deg, transparent, #ffffff 20%, #ffffff 80%, transparent);
  mask: linear-gradient(180deg, transparent, #ffffff 20%, #ffffff 80%, transparent);
}
.vertical-marquee.paused .vertical-marquee-inner {
  animation-play-state: paused;
}
.vertical-marquee-inner {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin-bottom: var(--_vGap);
}
[data-animate=true] .vertical-marquee-inner {
  animation: vertical-marquee var(--_speed) linear infinite var(--_direction);
}
.vertical-marquee-inner > :not(:last-child) {
  margin-right: var(--_hGap);
}
@keyframes vertical-marquee {
  0% {
    transform: translateY(calc(var(--_vGap) * -1));
  }
  100% {
    transform: translateY(calc(-100% - var(--_vGap) * 2));
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 90%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.container.container-sm {
  max-width: 800px;
}
.container.container-lg {
  max-width: 1400px;
}
.container.container-xl {
  max-width: 1600px;
}
.container.container-fluid {
  max-width: none;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > .col,
.row.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xl-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xl-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xl-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xl-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xl-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xl-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xl-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xl-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xl-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xl-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xl-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xl-12 {
  width: 100%;
  min-height: 1px;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
.col-sm-auto {
  flex: 0 0 auto;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.col-sm-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.col-sm-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}
.col-sm-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}
.col-sm-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-sm-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}
.col-sm-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}
.col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-sm-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}
.col-sm-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}
.col-sm-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-sm-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}
.col-sm-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}
.order-sm-12 {
  order: 12;
}
.order-sm-11 {
  order: 11;
}
.order-sm-10 {
  order: 10;
}
.order-sm-9 {
  order: 9;
}
.order-sm-8 {
  order: 8;
}
.order-sm-7 {
  order: 7;
}
.order-sm-6 {
  order: 6;
}
.order-sm-5 {
  order: 5;
}
.order-sm-4 {
  order: 4;
}
.order-sm-3 {
  order: 3;
}
.order-sm-2 {
  order: 2;
}
.order-sm-1 {
  order: 1;
}
.offset-sm-12 {
  margin-left: 100%;
}
.offset-sm-11 {
  margin-left: 91.66666667%;
}
.offset-sm-10 {
  margin-left: 83.33333333%;
}
.offset-sm-9 {
  margin-left: 75%;
}
.offset-sm-8 {
  margin-left: 66.66666667%;
}
.offset-sm-7 {
  margin-left: 58.33333333%;
}
.offset-sm-6 {
  margin-left: 50%;
}
.offset-sm-5 {
  margin-left: 41.66666667%;
}
.offset-sm-4 {
  margin-left: 33.33333333%;
}
.offset-sm-3 {
  margin-left: 25%;
}
.offset-sm-2 {
  margin-left: 16.66666667%;
}
.offset-sm-1 {
  margin-left: 8.33333333%;
}
.offset-sm-0 {
  margin-left: 0%;
}
@media only screen and (max-width : 319px) {
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-xs-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xs-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xs-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xs-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xs-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .order-xs-12 {
    order: 12;
  }
  .order-xs-11 {
    order: 11;
  }
  .order-xs-10 {
    order: 10;
  }
  .order-xs-9 {
    order: 9;
  }
  .order-xs-8 {
    order: 8;
  }
  .order-xs-7 {
    order: 7;
  }
  .order-xs-6 {
    order: 6;
  }
  .order-xs-5 {
    order: 5;
  }
  .order-xs-4 {
    order: 4;
  }
  .order-xs-3 {
    order: 3;
  }
  .order-xs-2 {
    order: 2;
  }
  .order-xs-1 {
    order: 1;
  }
  .offset-xs-12 {
    margin-left: 100%;
  }
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xs-0 {
    margin-left: 0%;
  }
}
@media only screen and (min-width : 680px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .order-md-12 {
    order: 12;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-1 {
    order: 1;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
}
@media only screen and (min-width : 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .order-lg-12 {
    order: 12;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-1 {
    order: 1;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
}
@media only screen and (min-width : 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .order-xl-12 {
    order: 12;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-1 {
    order: 1;
  }
  .offset-xl-12 {
    margin-left: 100%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
}
.col,
.col .col-sm-equal {
  flex: 1 0 0;
}
@media only screen and (min-width : 680px) {
  .col-md-equal {
    flex: 1 0 0;
  }
}
@media only screen and (min-width : 992px) {
  .col-lg-equal {
    flex: 1 0 0;
  }
}
@media only screen and (min-width : 1200px) {
  .col-xl-equal {
    flex: 1 0 0;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.col-stretch {
  flex: 0 1 auto;
  width: auto;
}
/*********************
  Media Query Classes
**********************/
@media only screen and (max-width : 679px) {
  .hide-on-small-only,
  .hide-on-small-and-down {
    display: none !important;
  }
}
@media only screen and (max-width : 991px) {
  .hide-on-medium-and-down {
    display: none !important;
  }
}
@media only screen and (min-width : 680px) {
  .hide-on-medium-and-up {
    display: none !important;
  }
}
@media only screen and (min-width : 680px) and (max-width : 991px) {
  .hide-on-medium-only {
    display: none !important;
  }
}
@media only screen and (min-width : 992px) {
  .hide-on-large-only {
    display: none !important;
  }
}
@media only screen and (min-width : 992px) {
  .show-on-large {
    display: block !important;
  }
}
@media only screen and (min-width : 680px) {
  .show-on-medium-and-up {
    display: block !important;
  }
}
@media only screen and (min-width : 680px) and (max-width : 991px) {
  .show-on-medium-only {
    display: block !important;
  }
}
@media only screen and (max-width : 991px) {
  .show-on-medium-and-down {
    display: block !important;
  }
}
@media only screen and (max-width : 679px) {
  .show-on-small {
    display: block !important;
  }
}
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
  color: #000000;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.8;
  font-family: "Gilroy", sans-serif;
}
body {
  min-height: 100%;
  background-color: #ffffff;
  background-repeat: repeat;
  overflow-x: hidden;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
  line-height: 1.2;
}
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
h1 {
  margin: 0;
  font-weight: 500;
  font-size: 2.5rem;
}
@media screen and (min-width: 680px) {
  h1 {
    font-size: calc(2.5rem  +  0.5  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 680px) {
  h2 {
    font-size: calc(1.5rem  +  0.5  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 1.2rem;
}
@media screen and (min-width: 680px) {
  h3 {
    font-size: calc(1.2rem  +  0.5  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  h3 {
    font-size: 1.7rem;
  }
}
h4 {
  font-size: 1.5rem;
}
@media screen and (min-width: 680px) {
  h4 {
    font-size: calc(1.5rem  +  0.25  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  h4 {
    font-size: 1.75rem;
  }
}
h5 {
  font-size: 1.25rem;
}
@media screen and (min-width: 680px) {
  h5 {
    font-size: calc(1.25rem  +  0.15  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  h5 {
    font-size: 1.4rem;
  }
}
a {
  color: #191971;
  text-decoration: none;
  transition: all 0.3s;
}
a.contains-image {
  border: 0 !important;
  text-decoration: none !important;
}
p {
  margin: 0 0 1.5rem;
}
b,
strong {
  font-weight: 700;
}
blockquote {
  margin: 0;
}
blockquote cite {
  font-style: normal;
}
hr {
  border: 0;
  background-color: #b6d8d9;
  margin: 1rem auto;
  width: 100%;
  height: 1px;
}
iframe {
  display: block;
  width: 100%;
}
object {
  max-width: 100%;
}
address {
  font-style: normal;
}
nav ul,
ul.nav,
ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list {
  list-style: none;
  margin: 0;
  padding: 0 !important;
}
.list li {
  padding: 15px 0;
  border-top: 1px dotted #b6d8d9;
}
img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.wp-caption {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  position: relative;
}
.wp-caption img {
  display: block;
}
.wp-caption .wp-caption-text {
  display: block;
  width: 100%;
  background: rgba(25, 25, 113, 0.95);
  padding: 1rem;
  color: #ffffff;
  line-height: normal;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}
img.alignleft,
iframe.alignleft,
.wp-caption.alignleft {
  max-width: 50%;
  margin: 0 1.5rem 1.5rem 0;
  float: left;
}
img.alignright,
iframe.alignright,
.wp-caption.alignright {
  max-width: 50%;
  margin: 0 0 1.5rem 1.5rem;
  float: right;
}
img.aligncenter,
iframe.aligncenter,
.wp-caption.aligncenter {
  float: none;
  display: block;
  margin: 0 auto 1.5rem;
}
@media only screen and (max-width : 679px) {
  img.alignleft,
  iframe.alignleft,
  .wp-caption.alignleft,
  img.alignright,
  iframe.alignright,
  .wp-caption.alignright {
    max-width: 100%;
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
  }
}
.text {
  position: relative;
}
.text::after {
  clear: both;
  content: "";
  display: table;
}
.text > *:first-child {
  margin-top: 0 !important;
}
.text > *:last-child {
  margin-bottom: 0 !important;
}
.text a:not(.btn):not(.wp-element-button):not(.eb-button-anchor) {
  border-bottom: 1px dotted;
  color: #191971;
  text-decoration: none;
}
.text a:not(.btn):not(.wp-element-button):not(.eb-button-anchor):hover,
.text a:not(.btn):not(.wp-element-button):not(.eb-button-anchor):focus {
  border-bottom-color: transparent;
}
.text .business-info a {
  border: 0 !important;
  color: #000000 !important;
}
.text ul {
  overflow: auto;
  padding-left: 1rem;
}
.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  padding-bottom: 56.25%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width : 992px) {
  .embed-container.alignright {
    float: right;
    width: 40%;
    height: calc((40 * 675px) / 100);
    padding: 0;
    margin: 1rem 0 1rem 1rem;
  }
}
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.video-bg-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 101%;
  min-height: 100%;
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.left {
  float: left;
}
.right {
  float: right;
}
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}
.invisible {
  opacity: 0;
}
.visible {
  opacity: 1;
}
.hide {
  display: none;
}
.hidden-friendly,
.owl-theme.owl-carousel .owl-nav button.owl-prev span,
.owl-theme.owl-carousel .owl-nav button.owl-next span {
  position: absolute;
  top: -9999px;
  left: -9999px;
  overflow: hidden;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.skip {
  position: absolute;
  top: -1000px;
  left: -1000px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden;
}
.skip:active,
.skip:focus,
.skip:hover {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}
.media {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}
.media .media-body {
  flex: 1;
}
.phone {
  white-space: nowrap;
}
.bg-video {
  border: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
}
.animate-pop {
  -webkit-animation-name: hvr-pop;
  -moz-animation-name: hvr-pop;
  -o-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.animate-header-fixed {
  -webkit-animation-name: menu_sticky;
  -moz-animation-name: menu_sticky;
  -o-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -60px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }
  50% {
    margin-top: -60px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
[class^="icon-"] + *,
[class*=" icon-"] + * {
  vertical-align: middle;
}
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  line-height: 1;
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.3s ease-out;
}
.icon img {
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.3s ease-out;
}
.icon-phone {
  background-image: url("../img/phone-top.png");
  width: 20px;
  height: 20px;
}
.icon-arrow {
  background-image: url("../img/arrow.png");
  width: 28px;
  height: 15px;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: inline-block;
  padding: 0 !important;
  cursor: pointer;
  font: inherit;
  color: #000000;
  line-height: 1;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-property: opacity, -webkit-filter;
  -moz-transition-property: opacity, -moz-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity,-webkit-filter,-moz-filter,-o-filter,filter;
}
.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #000000;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  transition-property: -webkit-transform,-moz-transform,-o-transform,transform;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}
.hamburger-label {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: bottom 0.1s 0.14s ease, -moz-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.14s ease, -o-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,-webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),-moz-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),-o-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.14s;
  -moz-transition-delay: 0.14s;
  -o-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  -moz-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  -o-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: bottom 0.1s ease, -moz-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease, -o-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease,-webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),-moz-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),-o-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.btn,
.btn > a {
  font-family: "Gilroy", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  border-radius: 0;
  border: 0;
  background: #191971;
  padding: 1rem 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  white-space: nowrap;
  transition: transform 0.3s;
}
button.btn-light,
input[type="submit"].btn-light,
input[type="button"].btn-light,
.wp-block-button__link.btn-light,
.btn.btn-light,
.btn > a.btn-light {
  background: #b6d8d9;
  color: #000000;
}
button.btn-link,
input[type="submit"].btn-link,
input[type="button"].btn-link,
.wp-block-button__link.btn-link,
.btn.btn-link,
.btn > a.btn-link {
  border: 0 !important;
  background: none !important;
  padding: 0 !important;
}
button.btn-link .btn-text,
input[type="submit"].btn-link .btn-text,
input[type="button"].btn-link .btn-text,
.wp-block-button__link.btn-link .btn-text,
.btn.btn-link .btn-text,
.btn > a.btn-link .btn-text {
  display: inline-block;
  border-bottom: 1px solid;
}
button.btn-large,
input[type="submit"].btn-large,
input[type="button"].btn-large,
.wp-block-button__link.btn-large,
.btn.btn-large,
.btn > a.btn-large {
  padding: 1.5rem 5rem;
  font-size: 1.3rem;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.wp-block-button__link:hover,
.btn:hover,
.btn > a:hover,
button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible,
.wp-block-button__link:focus-visible,
.btn:focus-visible,
.btn > a:focus-visible {
  transform: scale(1.1);
}
@media only screen and (max-width : 679px) {
  button:not(.hamburger),
  input[type="submit"]:not(.hamburger),
  input[type="button"]:not(.hamburger),
  .wp-block-button__link:not(.hamburger),
  .btn:not(.hamburger),
  .btn > a:not(.hamburger) {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width : 680px) and (max-width : 991px) {
  .btn-wrapper button,
  .btn-wrapper input[type="submit"],
  .btn-wrapper input[type="button"],
  .btn-wrapper .wp-block-button__link,
  .btn-wrapper .btn,
  .btn-wrapper .btn > a {
    width: 60%;
  }
}
@media only screen and (max-width : 991px) {
  .btn-wrapper {
    text-align: center;
  }
}
.has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
table.opening-hours {
  table-layout: auto;
  border-collapse: collapse;
  line-height: normal;
}
table.opening-hours tr:last-child {
  border-bottom: 0;
}
table.opening-hours td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
table.opening-hours td.day {
  padding-right: 1rem;
}
table.opening-hours td.time .hour-suffix {
  font-variant: small-caps;
  font-size: 0.8rem;
}
table.opening-hours td.time .closed {
  text-transform: capitalize;
}
table.opening-hours tbody tr:first-child td {
  padding-top: 0;
}
table.opening-hours tfoot tr {
  border-bottom: 0;
}
div.opening-hours > span {
  white-space: nowrap;
}
.opening-hours-notes {
  margin-bottom: 0;
}
.social-links {
  /* fix in-content */
  /*--------------*/
}
.social-links li {
  display: inline-block;
}
.social-links li + li {
  margin-left: 0.5rem;
}
.social-links a {
  display: block;
  text-decoration: none !important;
  border-bottom: 0 !important;
  white-space: nowrap;
  text-align: center;
}
.social-links a img {
  display: inline-block;
  transition: transform 0.3s ease-out;
}
.social-links a:hover img,
.social-links a:active img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.social-links-fixed {
  display: block;
  position: absolute;
  top: 300px;
  right: 0;
  z-index: 100;
}
.social-links-fixed .social-links a {
  display: block;
  margin-bottom: 5px;
  -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.7);
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.7);
}
.social-links-fixed .social-links a + a {
  margin-left: 0;
}
@media only screen and (max-width : 679px) {
  .social-links-fixed {
    display: none;
  }
}
.ssba.ssbp-wrap {
  width: 100%;
}
.ssba.ssbp-wrap .ssbp-list {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ssba.ssbp-wrap .ssbp-list li {
  margin: 0 !important;
}
.primary-menu ul.nav li {
  display: block;
}
.primary-menu ul.nav li a {
  display: block;
  position: relative;
  color: #000000;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}
.primary-menu ul.nav > li > a:hover,
.primary-menu ul.nav > li > a:focus-visible {
  transform: scale(1.15);
}
.primary-menu ul.nav > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid;
  border-right: 2px solid;
  margin-top: -3px;
  margin-left: 7px;
  vertical-align: middle;
  pointer-events: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.primary-menu ul.nav li.menu-item-has-children .sub-menu {
  opacity: 0;
  max-height: 0;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.primary-menu ul.nav li.menu-item-has-children.dropit-open > a::after {
  margin-top: -1px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  transform: rotate(315deg);
}
.primary-menu ul.nav li.menu-item-has-children.dropit-open > .sub-menu {
  top: 100% !important;
  opacity: 1;
  max-height: 9999px;
  z-index: 10000 !important;
  overflow: inherit;
}
.primary-menu ul.nav li.menu-item-has-columns > .sub-menu .menu-item-col li.menu-item-heading > a {
  background: #b6d8d9;
  color: #191971;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}
@media only screen and (max-width : 991px) {
  .primary-menu ul.nav li a {
    padding: 0.75rem 1.5rem;
  }
  .primary-menu ul.nav > li {
    background-color: #eeeeee;
  }
  .primary-menu ul.nav > li + li {
    border-top: 1px solid #ffffff;
  }
  .primary-menu ul.nav > li > a {
    font-weight: 500;
  }
  .primary-menu ul.nav li.menu-item-has-children > a::after {
    position: absolute;
    top: 50%;
    -lh-property: 0;
right:-webkit-calc(2rem - 5px);
right:-moz-calc(2rem - 5px);
right:calc(2rem - 5px);
;
  }
  .primary-menu ul.nav li.menu-item-has-children .sub-menu {
    background-color: #ffffff;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .primary-menu ul.nav li.menu-item-has-children .sub-menu li {
    border-bottom: 1px solid #dddddd;
  }
  .primary-menu ul.nav li.menu-item-has-children .sub-menu:last-child li:last-child {
    border-bottom: 0;
  }
  .primary-menu ul.nav li.menu-item-has-children .sub-menu a {
    white-space: normal;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu .menu-item-col > a {
    display: none;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu .menu-item-col .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: none;
    padding: 0;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu .menu-item-col .sub-menu li:not(.menu-item-heading) a {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .primary-menu ul.nav li.current-menu-item > a,
  .primary-menu ul.nav li.current-menu-ancestor > a,
  .primary-menu ul.nav li.current-page-ancestor > a,
  .primary-menu ul.nav li.current_page_parent > a,
  .primary-menu ul.nav li.current-menu-parent > a {
    color: #191971;
  }
  .primary-menu ul.nav li.current-menu-item > a::before,
  .primary-menu ul.nav li.current-menu-ancestor > a::before,
  .primary-menu ul.nav li.current-page-ancestor > a::before,
  .primary-menu ul.nav li.current_page_parent > a::before,
  .primary-menu ul.nav li.current-menu-parent > a::before {
    content: '';
    display: block;
    background-color: #191971;
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
  }
}
@media only screen and (min-width : 992px) {
  .primary-menu ul.nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: min(2.5rem, 2vw);
  }
  .primary-menu ul.nav > li {
    position: relative;
    text-align: center;
  }
  .primary-menu ul.nav > li > a {
    font-weight: 700;
    white-space: nowrap;
  }
  .primary-menu ul.nav li.menu-item-has-children > .sub-menu {
    background-color: #ffffff;
    background-clip: padding-box;
    padding: 0.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    margin-top: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1000;
    transform: translateX(-50%);
  }
  .primary-menu ul.nav li.menu-item-has-children > .sub-menu::before {
    content: '';
    display: inline-block;
    border-bottom: 7px solid rgba(0, 0, 0, 0.15);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
  }
  .primary-menu ul.nav li.menu-item-has-children > .sub-menu::after {
    content: '';
    display: inline-block;
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
  }
  .primary-menu ul.nav li.menu-item-has-children > .sub-menu li {
    padding: 0.5rem 0;
    text-align: left;
  }
  .primary-menu ul.nav li.menu-item-has-children > .sub-menu a {
    display: block;
    padding: 0 1rem;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu {
    padding: 1rem 0.5rem;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu li.menu-item-col {
    padding: 0 0.5rem;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu li.menu-item-col > a {
    display: none;
    /*padding        : 0;
            margin-bottom  : 1.25em;
            //color          : @accentColor;
            font-weight    : 700;
            cursor         : default;
            pointer-events : none;
            .uppercase;

            &::before {
              content  : "";
              //background-color : @accentColor;
              position : absolute;
              left     : 0;
              bottom   : -10px;
              .size(100%, 1px);
            }

            &::after {
              content  : "";
              //background-color : @accentColor;
              border   : 0;
              margin   : 0;
              position : absolute;
              bottom   : -12px;
              left     : 0;
              .size(60px, 5px);
              .transform(none);
            }*/
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu li.menu-item-col .menu-item-heading > a {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .primary-menu ul.nav li.menu-item-has-columns > .sub-menu li.menu-item-col > .sub-menu {
    width: auto !important;
    margin-top: 0;
    position: static;
    padding: 0;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    max-height: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .primary-menu ul.nav > li > a:hover,
  .primary-menu ul.nav > li > a:focus-visible,
  .primary-menu ul.nav > li.current-menu-item > a,
  .primary-menu ul.nav > li.current-menu-ancestor > a,
  .primary-menu ul.nav > li.current-page-ancestor > a,
  .primary-menu ul.nav > li.current_page_parent > a,
  .primary-menu ul.nav > li.current-menu-parent > a {
    color: #191971;
  }
  .primary-menu ul.nav .sub-menu li > a:hover,
  .primary-menu ul.nav .sub-menu li.current-menu-item > a,
  .primary-menu ul.nav .sub-menu li.current-menu-ancestor > a,
  .primary-menu ul.nav .sub-menu li.current-page-ancestor > a,
  .primary-menu ul.nav .sub-menu li.current_page_parent > a,
  .primary-menu ul.nav .sub-menu li.current-menu-parent > a {
    border-left-color: #191971;
  }
}
@media only screen and (min-width : 1200px) {
  .primary-menu ul.nav > li > a {
    font-size: 1.2rem;
  }
}
.sn-backdrop {
  background: #000000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: none;
  opacity: 0;
  z-index: 50;
  will-change: opacity;
}
.sn-visible .sn-backdrop {
  display: block;
}
.sn-sidenav {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  /* height .header-mobile .head-top */
  height: 100%;
  z-index: 999999;
  overflow-y: auto;
  will-change: transform;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  -webkit-transform: translate3d(-330px, 0px, 0px);
  -moz-transform: translate3d(-330px, 0px, 0px);
  -ms-transform: translate3d(-330px, 0px, 0px);
  -o-transform: translate3d(-330px, 0px, 0px);
  transform: translate3d(-330px, 0px, 0px);
}
@media only screen and (max-width : 991px) {
  .sn-sidenav {
    display: block !important;
  }
}
.sn-content {
  position: relative;
  z-index: 10;
}
.sn-visible,
.sn-visible body,
.sn-visible .sn-content {
  overflow: hidden;
}
@media only screen and (max-width : 319px) {
  .sn-sidenav {
    width: 85% !important;
  }
}
.reviews-list-grid .sizer,
.reviews-list-grid .review {
  width: 100%;
}
@media only screen and (min-width : 680px) {
  .reviews-list-grid .sizer,
  .reviews-list-grid .review {
    width: 50%;
  }
}
blockquote,
.review {
  padding: 0.5rem 0;
}
blockquote .stars,
.review .stars {
  margin-bottom: 2rem;
}
blockquote .quote-text,
.review .quote-text,
blockquote .review-text,
.review .review-text {
  font-style: italic;
}
blockquote .quote-text .quote-open,
.review .quote-text .quote-open,
blockquote .review-text .quote-open,
.review .review-text .quote-open,
blockquote .quote-text .quote-close,
.review .quote-text .quote-close,
blockquote .review-text .quote-close,
.review .review-text .quote-close {
  font-family: sans-serif;
}
blockquote cite,
.review cite,
blockquote .review-author,
.review .review-author {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (min-width : 680px) {
  blockquote,
  .review {
    padding: 0.5rem 4rem;
  }
}
.reviews {
  margin-bottom: 3rem;
}
.reviews .col-sm-12 {
  margin-bottom: 3rem;
}
.reviews .review {
  background-color: #ffffff;
  padding: 10px !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.reviews .review .inner {
  border: 1px solid #b6d8d9;
  padding: 2rem;
}
.reviews .review .review-author {
  display: inline;
}
@media only screen and (min-width : 992px) {
  .reviews .review,
  .reviews .review .inner {
    height: 100%;
  }
}
.team-list {
  border-bottom: 2px solid #b6d8d9;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
}
.team-list .member .member-name {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.team-list .member > *:last-child {
  margin-bottom: 0;
}
.entry-content .team-list:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media only screen and (max-width : 679px) {
  .team-list [class*="col-"] {
    border-top: 1px solid #b6d8d9;
    padding-top: 2rem;
    margin-top: 2rem;
  }
  .team-list .row:first-child > [class*="col-"]:first-child {
    border-top: 0;
    margin-top: 0;
  }
}
@media only screen and (min-width : 680px) {
  .team-list .row {
    position: relative;
    padding: 2rem 0;
  }
  .team-list .row + .row::before {
    content: '';
    display: block;
    background: #b6d8d9;
    height: 1px;
    position: absolute;
    top: 0;
    left: 15px;
    -lh-property: 0;
width:-webkit-calc(100% - 30px);
width:-moz-calc(100% - 30px);
width:calc(100% - 30px);
;
  }
  .team-list .row:first-child {
    padding-top: 0;
  }
  .team-list .row:last-child {
    padding-bottom: 0;
  }
  .team-list .col-md-6 + .col-md-6 {
    border-left: 1px solid #b6d8d9;
  }
}
@media only screen and (min-width : 992px) {
  .team-list .row {
    margin-left: -37.5px;
    margin-right: -37.5px;
  }
  .team-list .row [class*="col-"] {
    padding-left: 37.5px;
    padding-right: 37.5px;
  }
  .team-list .row + .row::before {
    left: 37.5px;
    -lh-property: 0;
width:-webkit-calc(100% - 30px*1.25*2);
width:-moz-calc(100% - 30px*1.25*2);
width:calc(100% - 30px*1.25*2);
;
  }
}
.business-info .item {
  border-top: 1px dotted #000000;
  padding: 0.85rem 0;
  line-height: normal;
}
.business-info .item .icon {
  flex: 0 0 17px;
  text-align: center;
}
.business-info .item .icon img {
  transition: transform 0.3s;
}
.business-info .item .media-body {
  overflow: hidden;
}
.business-info .item a:not(.btn) {
  display: block;
  max-width: 100%;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.business-info .item a:not(.btn) .text-before {
  margin-right: 0.25rem;
}
.business-info .item:hover .icon img,
.business-info .item:focus-visible .icon img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.business-info .item address .street {
  display: block;
}
.business-info .item.item-phone .phone {
  font-weight: 700;
}
.wp-block-heading {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width : 679px) {
  .wp-block-heading {
    display: block !important;
  }
  .wp-block-heading::after,
  .wp-block-heading::before {
    display: none !important;
  }
}
.wp-block-buttons {
  margin-bottom: 2rem;
}
.wp-block-image .alignleft,
.wp-block-image .alignright {
  margin-bottom: 1.5rem;
}
.wp-block-image .aligncenter > figcaption {
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width : 679px) {
  .wp-block-image {
    text-align: center;
  }
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    float: none;
  }
}
@media only screen and (min-width : 680px) {
  .wp-block-image .alignleft,
  .wp-block-image .alignright {
    max-width: 50%;
  }
}
.wp-block-embed.aligncenter,
.wp-block-embed.alignleft,
.wp-block-embed.alignright {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width : 991px) {
  .wp-block-embed {
    max-width: 100% !important;
  }
  .wp-block-embed.alignleft,
  .wp-block-embed.alignright {
    float: none;
  }
}
@media only screen and (min-width : 992px) {
  .wp-block-embed.alignleft,
  .wp-block-embed.alignright {
    max-width: 50% !important;
  }
  .wp-block-embed.aligncenter {
    margin-left: auto;
    margin-right: auto;
  }
  .wp-block-embed.alignleft {
    float: left;
    margin-right: 1.5rem;
  }
  .wp-block-embed.alignright {
    float: right;
    margin-left: 1.5rem;
  }
}
.wp-block-columns.with-borders {
  gap: 1rem;
}
.container .alignfull {
  width: 100vw;
  -lh-property: 0;
margin-left:-webkit-calc(-50vw + 50%);
margin-left:-moz-calc(-50vw + 50%);
margin-left:calc(-50vw + 50%);
;
  -lh-property: 0;
margin-right:-webkit-calc(-50vw + 50%);
margin-right:-moz-calc(-50vw + 50%);
margin-right:calc(-50vw + 50%);
;
}
.object-position-top,
.object-position-top > img {
  object-position: top;
}
.object-position-center,
.object-position-center > img {
  object-position: center;
}
.object-position-bottom,
.object-position-bottom > img {
  object-position: bottom;
}
.ninja-forms-form-wrap {
  line-height: 1.3;
}
.ninja-forms-form-wrap .nf-form-fields-required {
  display: none;
}
.ninja-forms-form-wrap input[type="text"],
.ninja-forms-form-wrap input[type="date"],
.ninja-forms-form-wrap input[type="time"],
.ninja-forms-form-wrap input[type="datetime"],
.ninja-forms-form-wrap input[type="email"],
.ninja-forms-form-wrap input[type="tel"],
.ninja-forms-form-wrap input[type="number"],
.ninja-forms-form-wrap input[type="search"],
.ninja-forms-form-wrap input[type="url"],
.ninja-forms-form-wrap input[type="password"],
.ninja-forms-form-wrap textarea,
.ninja-forms-form-wrap select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.625rem;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  transition: all 0.3s;
}
.ninja-forms-form-wrap select {
  padding-top: 0.9em;
  padding-bottom: 0.9em;
}
.ninja-forms-form-wrap textarea {
  min-height: 10.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  resize: vertical;
}
.ninja-forms-form-wrap .list-checkbox-wrap .nf-field-element li input,
.ninja-forms-form-wrap .list-radio-wrap .nf-field-element li input {
  margin-top: 0.6rem;
}
.ninja-forms-form-wrap .nf-field-container {
  margin-bottom: 1.125rem;
}
.ninja-forms-form-wrap .nf-field-container .textbox-wrap:not(.file_upload-wrap) .nf-field-label,
.ninja-forms-form-wrap .nf-field-container .email-wrap .nf-field-label,
.ninja-forms-form-wrap .nf-field-container .textarea-wrap .nf-field-label {
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: text;
  transition: all 0.2s ease-out;
  transform-origin: 0 100%;
  transform: translate(10px, 7px);
}
.ninja-forms-form-wrap .nf-field-container .textbox-wrap:not(.file_upload-wrap) .nf-field-label.wpcf7-not-valid,
.ninja-forms-form-wrap .nf-field-container .email-wrap .nf-field-label.wpcf7-not-valid,
.ninja-forms-form-wrap .nf-field-container .textarea-wrap .nf-field-label.wpcf7-not-valid {
  color: #ff4f4f;
}
.ninja-forms-form-wrap .nf-field-container .textbox-wrap:not(.file_upload-wrap) .nf-field-label.active,
.ninja-forms-form-wrap .nf-field-container .email-wrap .nf-field-label.active,
.ninja-forms-form-wrap .nf-field-container .textarea-wrap .nf-field-label.active {
  transform: translate(0, -18px) scale(0.8);
  transform-origin: 0 0;
}
.ninja-forms-form-wrap .nf-field-container .textbox-wrap:not(.file_upload-wrap) .nf-field-label.active label,
.ninja-forms-form-wrap .nf-field-container .email-wrap .nf-field-label.active label,
.ninja-forms-form-wrap .nf-field-container .textarea-wrap .nf-field-label.active label {
  color: #ffffff !important;
}
.ninja-forms-form-wrap .nf-field-container.submit-container {
  margin-bottom: 0;
}
.ninja-forms-form-wrap .nf-field-container.submit-container .btn {
  width: 100%;
}
.ninja-forms-form-wrap .nf-field-container.grecaptcha-note {
  font-size: 0.8rem;
  line-height: normal;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap,
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap a {
  color: #ffffff;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap a {
  border-bottom: 1px solid;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap a:hover,
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap a:focus-visible {
  border-bottom-color: transparent;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap .nf-field-element > *:last-child {
  margin-bottom: 0;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .html-wrap h2 {
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .nf-field-label label {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .nf-field-description {
  order: 20;
  margin-top: 5px;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .nf-error .nf-field-label label {
  color: #000000;
}
.ninja-forms-form-wrap .nf-field-container .nf-error-wrap .nf-error-msg {
  color: #ff8b8b;
  font-size: 0.8em;
  margin-right: 0;
}
.ninja-forms-form-wrap .nf-response-msg,
.ninja-forms-form-wrap .nf-form-errors .nf-error-msg {
  border: 0;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0 0;
  color: #ffffff;
  font-weight: 600;
}
.ninja-forms-form-wrap .nf-response-msg {
  background-color: #00cc00;
}
.ninja-forms-form-wrap .nf-response-msg > *:last-child {
  margin-bottom: 0;
}
.ninja-forms-form-wrap .nf-form-errors .nf-error-msg {
  background-color: #ff6363;
}
.ninja-forms-form-wrap .field-wrap.nf-error.listimage-wrap .nf-field-element ul,
.ninja-forms-form-wrap .field-wrap.nf-error .ninja-forms-field {
  border: 0;
  background: #ff8b8b;
}
.grecaptcha-badge {
  visibility: hidden !important;
}
.section-announcements {
  width: 100%;
  background: darkred;
  padding: 1rem 0;
  position: relative;
}
.section-announcements .text {
  color: #ffffff;
  padding: 0;
}
.section-announcements .text a:not(.btn) {
  border-bottom: 1px solid;
  color: #ffffff;
}
.section-announcements .text a:not(.btn):hover {
  border-bottom-color: transparent;
}
.section-announcements .close {
  font-size: 1.5rem;
  color: #ffffff;
  opacity: 0.7;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  -webkit-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.section-announcements .close:hover,
.section-announcements .close:active {
  opacity: 1;
}
.section-services-nav {
  margin-top: 3rem;
}
.section-services-nav .item {
  padding: 13%;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.section-services-nav .item::after {
  content: ' ';
  display: block;
  background: #191971;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  -webkit-transform: scaleX(0) translateZ(0px);
  -moz-transform: scaleX(0) translateZ(0px);
  -ms-transform: scaleX(0) translateZ(0px);
  -o-transform: scaleX(0) translateZ(0px);
  transform: scaleX(0) translateZ(0px);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.45s cubic-bezier(0.24, 1, 0.3, 1);
  -moz-transition: 0.45s cubic-bezier(0.24, 1, 0.3, 1);
  -o-transition: 0.45s cubic-bezier(0.24, 1, 0.3, 1);
  transition: 0.45s cubic-bezier(0.24, 1, 0.3, 1);
  width: 100%;
  height: 6px;
}
.section-services-nav .item .item-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.24, 1, 0.3, 1), opacity 0.55s ease 0.25s;
  -moz-transition: -moz-transform 0.6s cubic-bezier(0.24, 1, 0.3, 1), opacity 0.55s ease 0.25s;
  -o-transition: -o-transform 0.6s cubic-bezier(0.24, 1, 0.3, 1), opacity 0.55s ease 0.25s;
  transition: -webkit-transform 0.6s cubic-bezier(0.24, 1, 0.3, 1),-moz-transform 0.6s cubic-bezier(0.24, 1, 0.3, 1),-o-transform 0.6s cubic-bezier(0.24, 1, 0.3, 1),transform 0.6s cubic-bezier(0.24, 1, 0.3, 1), opacity 0.55s ease 0.25s;
}
.section-services-nav .item .item-bg::after {
  content: ' ';
  background-color: rgba(25, 25, 113, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s cubic-bezier(0.24, 1, 0.3, 1);
  -moz-transition: all 0.6s cubic-bezier(0.24, 1, 0.3, 1);
  -o-transition: all 0.6s cubic-bezier(0.24, 1, 0.3, 1);
  transition: all 0.6s cubic-bezier(0.24, 1, 0.3, 1);
}
.section-services-nav .item .item-inner {
  min-height: 10rem;
  padding-bottom: 15%;
  position: relative;
  z-index: 10;
}
.section-services-nav .item h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 1.5rem;
}
.section-services-nav .item .link-text {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 14px;
  position: relative;
  z-index: 5;
}
.section-services-nav .item .link-text .arrow {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 26px;
  text-align: center;
  opacity: 1;
  position: relative;
  top: 3px;
  overflow: visible;
  width: 26px;
  height: 26px;
  -webkit-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  -moz-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  -o-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
}
.section-services-nav .item .link-text .arrow::before {
  content: "\003E";
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  top: -3px;
  right: -1px;
  position: relative;
  -webkit-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  -moz-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  -o-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
}
.section-services-nav .item .link-text .arrow::after {
  content: ' ';
  display: block;
  background-color: #ffffff;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  position: absolute;
  left: -6px;
  top: 10px;
  width: 26px;
  height: 1px;
  -webkit-transform: translateX(-27px);
  -moz-transform: translateX(-27px);
  -ms-transform: translateX(-27px);
  -o-transform: translateX(-27px);
  transform: translateX(-27px);
  -webkit-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  -moz-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  -o-transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
  transition: all 0.35s cubic-bezier(0.12, 0.75, 0.4, 1);
}
.section-services-nav .item .item-link {
  display: block;
  border: 0 !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.section-services-nav .item:hover::after,
.section-services-nav .item:active::after {
  -webkit-transform: scaleX(1) translateZ(0px);
  -moz-transform: scaleX(1) translateZ(0px);
  -ms-transform: scaleX(1) translateZ(0px);
  -o-transform: scaleX(1) translateZ(0px);
  transform: scaleX(1) translateZ(0px);
}
.section-services-nav .item:hover .item-bg,
.section-services-nav .item:active .item-bg {
  -webkit-transform: scale(1.13);
  -moz-transform: scale(1.13);
  -ms-transform: scale(1.13);
  -o-transform: scale(1.13);
  transform: scale(1.13);
}
.section-services-nav .item:hover .item-bg::after,
.section-services-nav .item:active .item-bg::after {
  background-color: rgba(25, 25, 113, 0.75);
}
.section-services-nav .item:hover .link-text .arrow,
.section-services-nav .item:active .link-text .arrow {
  border-color: transparent;
}
.section-services-nav .item:hover .link-text .arrow::before,
.section-services-nav .item:active .link-text .arrow::before {
  -webkit-transform: translateX(9px);
  -moz-transform: translateX(9px);
  -ms-transform: translateX(9px);
  -o-transform: translateX(9px);
  transform: translateX(9px);
}
.section-services-nav .item:hover .link-text .arrow::after,
.section-services-nav .item:active .link-text .arrow::after {
  opacity: 1;
  -webkit-transform: translateX(2px);
  -moz-transform: translateX(2px);
  -ms-transform: translateX(2px);
  -o-transform: translateX(2px);
  transform: translateX(2px);
}
.section-more-services {
  background: #ffffff;
  padding: 3rem 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  margin: 4rem 0 -3rem;
}
.section-more-services .section-title {
  text-align: center;
}
.section-more-services .more-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2%;
  position: relative;
}
.section-more-services .more-services-list .item {
  display: flex;
  margin-right: 0.6rem;
  margin-bottom: 0.75rem;
  padding-left: 3px;
}
.section-more-services .more-services-list .item a {
  border-radius: 11px;
  border: 1px solid #101047;
  padding: 0.5rem 0.75rem;
  color: #191971;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: none !important;
  white-space: nowrap;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
  transition: 0.2s border ease-in-out, 0.2s box-shadow ease-in-out;
}
.section-more-services .more-services-list .item a:hover {
  border-color: #191971;
  background-color: #22229b;
  color: #ffffff;
}
.section-more-services .more-services-list .item a:focus {
  outline: 3px dotted #191971;
  outline-offset: 2px;
}
.section-more-services .more-services-list .item a:active,
.section-more-services .more-services-list .item a:focus,
.section-more-services .more-services-list .item a:active:hover,
.section-more-services .more-services-list .item a:focus:hover {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  background-color: #191971;
  color: #ffffff;
}
@media only screen and (min-width : 992px) {
  .section-more-services {
    margin-bottom: -4rem;
  }
}
.site-header {
  position: relative;
  z-index: 999;
}
.site-header .header-desktop {
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 0;
}
.site-header .header-desktop .container {
  width: 96%;
  max-width: none;
}
.site-header .header-desktop .row {
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.site-header .header-desktop .col-logo {
  flex: 1 auto;
}
.site-header .header-desktop .col-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4vw;
  flex: auto;
}
.site-header .header-desktop .custom-logo {
  transition: all 0.3s;
}
.site-header .header-desktop .links {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header .header-desktop .btn {
  padding: 0.85rem 1.75rem;
}
.site-header .header-desktop .phone {
  color: #000000;
  font-weight: 700;
}
.site-header .header-desktop .phone:hover,
.site-header .header-desktop .phone:focus-visible {
  transform: scale(1.1);
}
.site-header .header-mobile {
  border-bottom: 5px solid #ffffff;
}
.site-header .header-mobile .topbar {
  background: #ffffff;
  padding: 1.5rem 0;
}
.site-header .header-mobile .topbar .row {
  align-items: center;
  flex-wrap: nowrap;
}
.site-header .header-mobile .topbar .col-toggle {
  text-align: right;
}
.site-header .header-mobile .topbar .custom-logo {
  max-width: 320px;
  width: 100%;
}
.site-header .header-mobile .bottombar .col:first-child {
  border-right: 1px solid #ffffff;
}
.site-header .header-mobile .bottombar .col:last-child {
  border-left: 1px solid #ffffff;
}
.site-header .header-mobile .bottombar a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0.25rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
  text-align: center;
}
.site-header .header-mobile .bottombar a.phone {
  background: #b6d8d9;
  color: #000000;
  font-size: 1.1rem;
}
.site-header .header-mobile .bottombar a.appointment {
  background: #191971;
  color: #ffffff;
  letter-spacing: 2px;
}
@media only screen and (max-width : 991px) {
  .site-header.header-fixed {
    -webkit-animation-name: menu_sticky;
    -moz-animation-name: menu_sticky;
    -o-animation-name: menu_sticky;
    animation-name: menu_sticky;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
}
@media only screen and (min-width : 992px) {
  .site-header:not(.header-fixed) {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
  }
}
@media only screen and (min-width : 1200px) {
  .site-header .header-desktop .phone {
    font-size: 1.2rem;
  }
}
.site-header.header-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.site-header.header-fixed .header-mobile .topbar,
.site-header.header-fixed .header-mobile .middlebar {
  display: none;
}
.site-header.header-fixed .header-desktop {
  border-bottom: 1px solid #000000;
  background: #ffffff;
  padding: 0.5rem 0;
}
.site-header.header-fixed .header-desktop .section-announcements {
  display: none;
}
.site-header.header-fixed .header-desktop .custom-logo {
  width: 200px;
}
.site-footer {
  position: relative;
  z-index: 2;
}
.site-footer .footer-top .box-links {
  border-top: 1px solid #ffffff;
  padding-top: 2.5rem;
  margin-top: 2rem;
  text-align: center;
}
.site-footer .footer-top .box-links,
.site-footer .footer-top .box-links a {
  color: #ffffff;
}
.site-footer .footer-top .box-links a:hover,
.site-footer .footer-top .box-links a:focus-visible {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.site-footer .footer-top .box-links .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.site-footer .footer-bottom {
  padding: 2rem 0;
  text-align: center;
}
.site-footer .footer-bottom .social-links {
  margin-bottom: 1.5rem;
}
.site-footer .footer-bottom .copyright {
  font-size: 0.75rem;
}
.site-footer .footer-bottom .copyright a {
  border-bottom: 1px solid;
  color: #000000;
  text-decoration: none;
}
.site-footer .footer-bottom .copyright a:hover,
.site-footer .footer-bottom .copyright a:focus-visible {
  border-bottom-color: transparent;
}
.site-footer .footer-bottom .copyright .developer {
  white-space: nowrap;
}
@media only screen and (max-width : 991px) {
  .site-footer .footer-top {
    background: #27282c;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
  }
}
@media only screen and (max-width : 679px) {
  .site-footer .footer-top .box-links .links {
    flex-direction: column;
    gap: 1rem;
  }
}
@media only screen and (min-width : 680px) {
  .site-footer .footer-top .nf-form-cont nf-fields-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 0;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(4) {
    grid-area: 4 / 1 / 5 / 2;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(5) {
    grid-area: 5 / 1 / 6 / 2;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(6) {
    grid-area: 6 / 1 / 7 / 2;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(7) {
    grid-area: 7 / 1 / 8 / 2;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(8) {
    grid-area: 2 / 2 / 6 / 3;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(9) {
    grid-area: 6 / 2 / 7 / 3;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(10) {
    grid-area: 7 / 2 / 8 / 3;
    margin-top: -0.5rem;
  }
  .site-footer .footer-top .nf-form-cont .textarea-container,
  .site-footer .footer-top .nf-form-cont .textarea-container .field-wrap,
  .site-footer .footer-top .nf-form-cont .textarea-container textarea {
    height: 100%;
  }
  .site-footer .footer-top .nf-form-cont .textarea-container .nf-field {
    height: 88% !important;
  }
}
@media only screen and (min-width : 992px) {
  .site-footer::before {
    content: '';
    display: block;
    background: url("../img/footer-bg.jpg") no-repeat center / cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 70%;
  }
  .site-footer .footer-top .box {
    background: #27282c;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
  }
  .site-footer .footer-top .nf-form-cont nf-field:nth-child(10) {
    margin-top: -1.125rem;
  }
}
#site-wrapper {
  overflow: hidden;
}
.site-main {
  position: relative;
  z-index: 2;
}
.section {
  position: relative;
}
.caption {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-title {
  font-size: 2.5rem;
  margin: 0 0 3rem;
  color: #27282c;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 680px) {
  .section-title {
    font-size: calc(2.5rem  +  0.25  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  .section-title {
    font-size: 2.75rem;
  }
}
.section-title strong {
  color: #191971;
}
.subtitle {
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.subtitle.subtitle-large {
  font-size: 1.3rem;
}
@media only screen and (max-width : 991px) {
  .subtitle {
    text-align: center;
  }
}
.title-decor {
  --theme-title-decor-gap: 2rem;
  display: flex;
  width: 100%;
  align-items: center;
  /*-------------------------------*/
  font-family: "Gilroy", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  /*-------------------------------*/
}
.title-decor::after {
  content: '';
  border-top: 1px solid currentColor;
  flex: 1 0 auto;
  max-width: 100%;
}
.title-decor::after {
  margin: 0 0 0 var(--theme-title-decor-gap);
}
.image-scrollable {
  text-align: center;
}
@media only screen and (max-width : 991px) {
  .image-scrollable {
    overflow: auto;
    padding-bottom: 1rem;
  }
  .image-scrollable img {
    min-width: 900px;
  }
}
.entry-header {
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3rem 0;
  text-align: center;
}
@media only screen and (min-width : 992px) {
  .entry-header {
    padding: 12rem 0 5rem;
  }
}
.entry-content-wrapper {
  padding: 3rem 0;
}
@media only screen and (min-width : 992px) {
  .entry-content-wrapper {
    padding: 4rem 0;
  }
}
.entry-footer {
  padding-top: 3rem;
  position: relative;
}
.entry-footer .row:not(:empty) {
  margin-top: 3rem;
}
.entry-footer .row:not(:empty) .col {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.entry-footer h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
@media only screen and (max-width : 679px) {
  .entry-footer .row .col {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .entry-footer .row .col + .col {
    margin-top: 2rem;
  }
}
.posts-loop .hentry {
  background: none;
  padding: 0 0 2rem;
  margin: 0 0 3rem;
  border-bottom: 1px solid #b6d8d9;
  box-shadow: none;
}
.posts-loop .hentry .entry-title {
  margin: 0 0 1rem;
  text-align: left;
}
.posts-loop .hentry .entry-title a:hover {
  text-decoration: underline;
}
.posts-loop .hentry .entry-read-more {
  margin-top: 1.25rem;
}
.posts-loop .hentry .entry-read-more a:hover {
  text-decoration: underline;
}
.pagination {
  margin: 3rem 0 0;
}
.pagination .nav-links .page-numbers {
  display: inline-block;
  border: 0;
  border-radius: 2px;
  vertical-align: top;
  color: #444444;
  font-size: 1.2rem;
  padding: 0 10px;
  line-height: 30px;
  text-align: center;
}
.pagination .nav-links .page-numbers i {
  font-size: 1.75rem;
}
.pagination .nav-links .page-numbers.current {
  background-color: #ffffff;
  border: 1px solid #444444;
  font-weight: 700;
}
.pagination .nav-links a.page-numbers:hover {
  color: #191971;
}
.recent-posts h2,
.related-posts h2,
.related-services h2 {
  margin-top: 0;
  text-align-all: center;
}
.recent-posts .item + .item,
.related-posts .item + .item,
.related-services .item + .item {
  margin-top: 0.5rem;
}
.recent-posts .item .title,
.related-posts .item .title,
.related-services .item .title {
  font-family: "Gilroy", sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  text-transform: none;
}
.recent-posts .item .title a,
.related-posts .item .title a,
.related-services .item .title a {
  border-bottom: 1px dotted;
  color: #191971;
  text-decoration: none;
  display: inline-block;
}
.recent-posts .item .title a:hover,
.related-posts .item .title a:hover,
.related-services .item .title a:hover,
.recent-posts .item .title a:focus,
.related-posts .item .title a:focus,
.related-services .item .title a:focus {
  border-bottom-color: transparent;
}
body.home .btn-wrapper {
  margin-top: 2rem;
}
body.home .counter:not(.is-visible) {
  visibility: hidden;
}
body.home .section-hero {
  text-align: center;
  z-index: 2;
}
body.home .section-hero .section-image {
  width: 100%;
}
body.home .section-hero .section-title {
  padding: 2rem 0;
  margin-bottom: 0;
}
body.home .section-hero .vaue_points-list .item {
  font-weight: 700;
  text-align: center;
}
body.home .section-hero .vaue_points-list .item .circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  width: 160px;
  height: 160px;
}
body.home .section-hero .vaue_points-list .item .circle::after {
  content: '';
  border: 5px solid #b6d8d9;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
}
body.home .section-hero .vaue_points-list .item .circle .number {
  color: #191971;
  font-size: 2.5rem;
  line-height: 1;
}
body.home .section-hero .vaue_points-list .item .circle .units {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1;
}
body.home .section-hero .vaue_points-list .item .desc {
  margin-top: 1rem;
  line-height: normal;
}
@media only screen and (max-width : 991px) {
  body.home .section-hero .vaue_points-list {
    background: #ffffff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
    padding: 2rem 0;
  }
  body.home .section-hero .vaue_points-list .row {
    flex-direction: column;
    row-gap: 2rem;
  }
}
@media only screen and (min-width : 992px) {
  body.home .section-hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 26rem 0 10rem;
  }
  body.home .section-hero .section-title {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.125rem 1.75rem;
  }
  body.home .section-hero .vaue_points-list {
    margin: 3rem 0 -21rem;
  }
  body.home .section-hero .vaue_points-list .container {
    background: #ffffff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
    padding: 3rem;
  }
  body.home .section-hero .vaue_points-list .item .circle {
    width: 180px;
    height: 180px;
  }
}
body.home .section-services {
  padding: 3rem 0;
}
body.home .section-services .services .row {
  row-gap: 2.5rem;
}
body.home .section-services .services .item {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem 2rem;
  text-align: center;
}
body.home .section-services .services .item .name {
  font-size: 2rem;
  margin: 0 0 1.5rem;
  color: #191971;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 680px) {
  body.home .section-services .services .item .name {
    font-size: calc(2rem  +  0.5  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  body.home .section-services .services .item .name {
    font-size: 2.5rem;
  }
}
body.home .section-services .services .item .name::after {
  content: '';
  display: block;
  margin: 1.5rem auto 0;
  background: #b6d8d9;
  width: 100px;
  height: 3px;
}
body.home .section-services .btn-wrapper {
  margin-top: 3rem;
  text-align: center;
}
@media only screen and (max-width : 991px) {
  body.home .section-services .section-title br {
    display: none;
  }
  body.home .section-services .services .item .item-icon img {
    width: 160px;
  }
}
@media only screen and (min-width : 680px) {
  body.home .section-services .services .item {
    height: 100%;
  }
}
@media only screen and (min-width : 992px) {
  body.home .section-services {
    background: url("../img/bg.jpg") no-repeat center top;
    padding: 15rem 0 4rem;
  }
  body.home .section-services .services .item {
    padding: 1rem 2.5rem 2.5rem;
  }
}
body.home .section-reviews {
  padding: 0 0 4rem;
}
body.home .section-reviews .section-image {
  width: 100%;
  margin-bottom: 2rem;
}
body.home .section-reviews .owl-carousel .owl-nav {
  display: none !important;
}
body.home .section-reviews .review {
  padding: 2rem 0;
}
body.home .section-reviews .review .quote {
  display: inline-block;
  background: url("../img/quote.png") no-repeat center / cover;
  width: 52px;
  height: 51px;
}
body.home .section-reviews .review .review-text {
  margin: 1.25rem 0 1.75rem;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
}
body.home .section-reviews .review .review-author {
  font-size: 1.3rem;
  text-align: left;
}
@media only screen and (max-width : 991px) {
  body.home .section-reviews {
    background: #eeeeee;
  }
}
@media only screen and (max-width : 679px) {
  body.home .section-reviews .section-title {
    margin-bottom: 1rem;
  }
  body.home .section-reviews .review,
  body.home .section-reviews .review .review-author {
    text-align: center;
  }
  body.home .section-reviews .review .review-text {
    text-align: left;
  }
}
@media only screen and (min-width : 992px) {
  body.home .section-reviews {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 5rem 0;
  }
  body.home .section-reviews .section-title,
  body.home .section-reviews .section-title strong {
    color: #ffffff;
  }
  body.home .section-reviews .owl-carousel .owl-stage-outer {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
  }
  body.home .section-reviews .review {
    padding: 2rem 3rem;
  }
}
body.home .section-members_logo {
  text-align: center;
}
body.home .section-members_logo .container {
  border-bottom: 3px solid #eeeeee;
  padding: 2rem 0;
}
body.home .section-members_logo .gallery-marquee .item {
  width: 170px;
}
body.home .section-members_logo .gallery-marquee .item img {
  width: 100%;
}
@media only screen and (min-width : 680px) {
  body.home .section-members_logo .gallery-marquee {
    --_gap: 10px !important;
  }
  body.home .section-members_logo .gallery-marquee .item {
    width: 300px;
  }
}
@media only screen and (min-width : 992px) {
  body.home .section-members_logo .gallery-marquee {
    --_gap: 20px !important;
  }
  body.home .section-members_logo .gallery-marquee .item {
    width: 417px;
  }
}
body.home .section-news {
  padding: 3rem 0;
}
body.home .section-news .latest-news .row {
  row-gap: 2.5rem;
}
body.home .section-news .latest-news .item {
  background: #ffffff url("../img/arrow.png") no-repeat 95% 95%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
body.home .section-news .latest-news .item,
body.home .section-news .latest-news .item span {
  display: block;
}
body.home .section-news .latest-news .item .item-image {
  height: 180px;
}
body.home .section-news .latest-news .item .item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
body.home .section-news .latest-news .item .item-details {
  padding: 1.5rem 1.5rem 3rem;
}
body.home .section-news .latest-news .item .item-name {
  margin: 0;
  color: #191971;
  font-size: 1.65rem;
  font-weight: 700;
}
body.home .section-news .latest-news .item .item-desc {
  margin-top: 1.25rem;
  color: #27282c;
}
body.home .section-news .latest-news .item:hover,
body.home .section-news .latest-news .item:focus-visible {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
@media only screen and (min-width : 992px) {
  body.home .section-news {
    background: url("../img/bg.jpg") no-repeat center top;
    padding: 5rem 0;
  }
  body.home .section-news .latest-news .item .item-image {
    height: 256px;
  }
  body.home .section-news .latest-news .item .item-details {
    padding: 2rem 2rem 3rem;
  }
}
form {
  padding: 1rem;
  border: 3px solid #eee;
}
.ninja-forms-form-wrap .nf-field-container .nf-field .nf-field-description {
  line-height: 1.5;
}
.primary-menu ul.nav li.menu-item-has-children > .sub-menu a {
  font-size: 1rem;
}
.related-posts ul li {
  margin-bottom: 1rem;
}
.entry-content-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.wp-block-separator {
  border-top: 0 !important;
}
.entry-content .business-info a:not(.btn):not(.wp-element-button) {
  border-bottom: none;
}
/*Hide Appt link on Contact page
.page-id-5241 .item-schedule_link {
display: none;
}
Or, for multiple locations:

body.single-location .item-schedule_link {
display:none;
}

*/
.wp-block-image img {
  margin-bottom: 1rem;
}
@media only screen and (max-width : 991px) {
  .site-footer .footer-top .col-text .footer-widget .footer-widget-title,
  .site-footer .footer-bottom {
    text-align: left;
  }
}
.site-header .header-mobile .bottombar a,
.site-header .header-mobile .bottombar a.appointment {
  font-size: 0.8em;
  letter-spacing: 0;
}
.section-services-nav .item .item-bg::after {
  background-color: rgba(140, 141, 139, 0.4);
}
.section-services-nav .item:hover .item-bg::after,
.section-services-nav .item:focus .item-bg::after {
  background-color: rgba(140, 141, 139, 0.7);
}
.section-more-services .more-services-list .item a {
  border-radius: 0;
  background-color: #e0e2e5;
  font-weight: 400;
}
.with-borders .wp-block-column {
  padding: 1rem;
  border: 1px solid #DFDFDC;
  border-top: 7px solid #e4e4e4;
}
h2.page-heading {
  padding: 2rem;
  background: #eee;
}
.columns-with-icons {
  padding: 2rem;
  background: #fff;
}
.highlight {
  background-color: #EEEEEE;
  Padding: 2rem;
  font-size: 1rem;
}
@media screen and (min-width: 680px) {
  .highlight {
    font-size: calc(1rem  +  0.2  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  .highlight {
    font-size: 1.2rem;
  }
}
.wp-block-gutenbee-imagebox.wp-block-gutenbee-imagebox-aligncenter > * {
  align-self: center;
}
.wp-block-gutenbee-imagebox.wp-block-gutenbee-imagebox-aligncenter.wp-block-gutenbee-imagebox-align-left .wp-block-gutenbee-imagebox-figure {
  margin-right: 2rem;
}
.wp-block-gutenbee-imagebox.wp-block-gutenbee-imagebox-aligncenter.wp-block-gutenbee-imagebox-align-right .wp-block-gutenbee-imagebox-figure {
  margin-left: 2rem;
}
.wp-block-gutenbee-imagebox.wp-block-gutenbee-imagebox-aligncenter .wp-block-gutenbee-imagebox-figure {
  flex: 1 0 50%;
}
.wp-block-gutenbee-imagebox.wp-block-gutenbee-imagebox-aligncenter .wp-block-gutenbee-imagebox-content {
  flex: auto;
}
@media only screen and (max-width : 991px) {
  .wp-block-gutenbee-imagebox-content-align-left {
    text-align: left !important;
  }
}
.wp-block-gutenbee-gallery-columns .wp-block-gutenbee-gallery-content .wp-block-gutenbee-gallery-item img {
  width: 100%;
}
@media only screen and (max-width : 991px) {
  .wp-block-gutenbee-gallery-columns .wp-block-gutenbee-gallery-content .wp-block-gutenbee-gallery-item {
    width: 100%;
    max-width: 100%;
  }
}
.wp-block-gutenbee-icon-list {
  font-size: 1em !important;
}
@media screen and (min-width: 680px) {
  .wp-block-gutenbee-icon-list {
    font-size: calc(1em  +  0  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  .wp-block-gutenbee-icon-list {
    font-size: 1em;
  }
}
.wp-block-gutenbee-icon-list-item {
  align-items: baseline !important;
}
.columns-with-icons {
  padding: 3rem;
  background: #f1efeb;
}
.wp-block-gutenbee-accordion-item-title {
  padding: 2rem  !important;
  font-weight: bold;
}
.wp-block-gutenbee-accordion-item-content {
  padding: 2rem  !important;
}
.eb-accordion-7ucmu.eb-accordion-container .title-content-eb-accordion-7ucmu .eb-accordion-title {
  font-size: 1.2rem;
}
.entry-content-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.wp-block-gutenbee-testimonial {
  padding: 2rem !important;
  background: #f7f7f7;
  border: 1px solid #e4e3e3 !important;
  margin-bottom: 2rem !important;
}
.gutenbee-block-testimonial__citation {
  text-align: left;
  font-weight: bold;
}
.team-list .member .member-name {
  font-size: 1.2rem;
}
body.home .section-services .services .item .name {
  font-size: 1.5rem;
}
@media screen and (min-width: 680px) {
  body.home .section-services .services .item .name {
    font-size: calc(1.5rem  +  0.5  * ((100vw -  680px ) / 311 ));
  }
}
@media screen and (min-width: 991px) {
  body.home .section-services .services .item .name {
    font-size: 2rem;
  }
}
body.home .section-reviews .review .review-author {
  font-size: 1rem;
}
form {
  border-width: 1px;
}
.site-footer .footer-top .box-links {
  border-top: none;
  padding-top: 0;
}
body.home .section-reviews .review .review-text {
  font-size: 1rem;
  font-weight: 400;
}
