@font-face {
    font-family: 'Teko';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Teko/Teko-Regular.ttf');
}
@font-face {
    font-family: 'Teko';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Teko/Teko-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Nunito_Sans/NunitoSans-ExtraLight.ttf');
    font-weight: 200;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Nunito_Sans/NunitoSans-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Nunito_Sans/NunitoSans-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: 'Nunito Sans';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Nunito_Sans/NunitoSans-Black.ttf');
    font-weight: 800;
}
@font-face {
    font-family: 'Urbanist';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Urbanist/static/Urbanist-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Urbanist';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Urbanist/static/Urbanist-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Urbanist';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Urbanist/static/Urbanist-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Urbanist';
    src: url('//ultracarinsurance.com/wp-content/themes/2026-UltraCar/assets/fonts/Urbanist/static/Urbanist-Bold.ttf');
    font-weight: 700;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
  * Elastic
  */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
  * Elastic Reverse
  */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
  * Slider
  */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
  * Slider Reverse
  */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
  * Spring
  */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
xs: 0,
	sm: 576px,
	md: 768px,
	lg: 992px,
	xl: 1148px,
	xxl: 1900px,
	*/
/* breakpoints */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  font-size: 1rem;
  scroll-behavior: smooth;
}
@media (min-width: 992px) {
  html {
    font-size: 1.2vw;
  }
}

body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: white;
  margin: 0;
  padding: 5.4rem 0 0 0;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2fa2ed;
}

a,
a:link,
a:visited {
  color: #2fa2ed;
  font-weight: inherit !important;
}
a:active, a:hover,
a:link:active,
a:link:hover,
a:visited:active,
a:visited:hover {
  color: #f99e1c;
}

p {
  line-height: 1.4;
}
p small {
  font-size: 0.95rem;
  line-height: 1.1;
}

strong {
  font-weight: 700;
}

.genericbutton a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.2125rem 0.75rem;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600 !important;
  font-size: 1rem;
  color: white !important;
  overflow: visible;
  border: none;
  outline: none;
  background: #2fa2ed;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 0.315rem;
  transition: all 0.15s linear;
}
.genericbutton a:hover, .genericbutton a:active {
  color: #2fa2ed !important;
  border-color: #2fa2ed !important;
  background: white;
}
@media (min-width: 1148px) {
  .genericbutton a {
    font-size: 1.44vw;
  }
}
.genericbutton a svg {
  margin-right: 0.5rem;
}

.nav-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: #37373a;
  background-color: rgba(255, 255, 255, 0);
}
.nav-desktop #navbarDesktop {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 50;
}
.nav-desktop #navbarDesktop ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-desktop #navbarDesktop ul li {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 4.5vw;
}
.nav-desktop #navbarDesktop ul li a {
  outline: none;
}
.nav-desktop #navbarDesktop ul li.custom-item {
  border-top: 1px solid #f99e1c;
  border-bottom: 1px solid #f99e1c;
}
.nav-desktop #navbarDesktop ul li.custom-item a {
  outline: none;
  color: white;
  background: #f99e1c;
}
.nav-desktop #navbarDesktop ul li.custom-item a:hover, .nav-desktop #navbarDesktop ul li.custom-item a:active {
  background: white;
  color: #f99e1c;
}
.nav-desktop #navbarDesktop ul.dropdown-menu {
  position: relative !important;
  width: 100%;
  background: #f2f2f2;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  transform: none !important;
}
.nav-desktop #navbarDesktop ul.dropdown-menu li {
  width: 100%;
  border-radius: 0;
}
@media (min-width: 992px) {
  .nav-desktop #navbarDesktop {
    width: auto;
  }
}
.nav-desktop .nav-container {
  position: fixed;
  z-index: 1;
  display: flex;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  transition: color 0.2s linear;
  color: #37373a;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1148px) {
  .nav-desktop .nav-container {
    padding-right: 6rem;
    padding-left: 5.625rem;
  }
}
.nav-desktop .nav-container .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(167, 170, 180, 0.55);
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.15s linear;
}
.nav-desktop .nav-container .nav-logo {
  width: 13.5rem;
  line-height: 0;
  color: inherit;
  flex-shrink: 0;
  color: inherit;
  transition: color 0.15s linear, transform 0.25s linear;
  transform-origin: 50% 50%;
  transform: scale(1);
}
.nav-desktop .nav-container .nav-logo:hover, .nav-desktop .nav-container .nav-logo:active {
  color: #2fa2ed;
}
.nav-desktop .nav-container:active .background, .nav-desktop .nav-container:hover .background {
  opacity: 1;
}
.nav-desktop .nav-container .nav-list {
  display: flex;
  width: 50%;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop .nav-container .nav-list .nav-list-item {
  position: relative;
  list-style-type: none;
  margin-right: 1.5rem;
  color: #37373a;
}
.nav-desktop .nav-container .nav-list .nav-list-item svg {
  width: auto;
  height: 1.2vw !important;
}
.nav-desktop .nav-container .nav-list .nav-list-item .nav-button {
  position: relative;
  display: inline-flex !important;
  margin: 0 !important;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600 !important;
  font-size: 1.2vw;
  color: inherit;
  overflow: visible;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: all 0.15s linear;
}
.nav-desktop .nav-container .nav-list .nav-list-item .nav-button:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  opacity: 0;
  content: "";
  transition: opacity 0.2s linear, transform 0.3s cubic-bezier(0, 0, 0, 1);
  transform: translateZ(0);
  pointer-events: none;
}
.nav-desktop .nav-container .nav-list .nav-list-item .nav-button:active:after, .nav-desktop .nav-container .nav-list .nav-list-item .nav-button:hover:after {
  opacity: 1;
}
.nav-desktop .nav-container .nav-list .nav-list-item-custom .nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.2125rem 0.75rem;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 1.44vw;
  color: white;
  overflow: visible;
  border: none;
  outline: none;
  background: #f99e1c;
  cursor: pointer;
  border: 1px solid #f99e1c;
  border-radius: 0.315rem;
  transition: all 0.15s linear;
}
.nav-desktop .nav-container .nav-list .nav-list-item-custom .nav-button:hover, .nav-desktop .nav-container .nav-list .nav-list-item-custom .nav-button:active {
  color: #f99e1c;
  background: white;
}
.nav-desktop .nav-container .nav-list.nav-end {
  justify-content: flex-end;
}
.nav-desktop .nav-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.nav-desktop .nav-block .mega-menu {
  display: flex;
  height: 0;
  border-bottom: 1px solid rgba(222, 234, 255, 0.85);
  padding: 0 1rem 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.15s linear;
}
.nav-desktop .nav-block .mega-menu.opened {
  height: 100%;
  padding: 9rem 1rem 3rem;
  border-bottom: 1px solid rgba(222, 234, 255, 0);
  opacity: 1;
}
.nav-desktop .nav-block .mega-menu .mega-title {
  color: #2fa2ed;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  padding: 1rem;
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu .mega-title {
    font-size: 2.25vw;
  }
}
.nav-desktop .nav-block .mega-menu .nav-button {
  position: relative;
  display: block;
  margin: 0;
  padding: 0.85rem 0.75rem;
  text-decoration: none;
  text-align: center !important;
  text-transform: uppercase;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: white;
  overflow: visible;
  border: none;
  outline: none;
  background: #f99e1c;
  cursor: pointer;
  border: 1px solid #f99e1c;
  border-radius: 0.315rem;
  transition: all 0.15s linear;
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu .nav-button {
    font-size: 2vw;
  }
}
.nav-desktop .nav-block .mega-menu .nav-button:hover, .nav-desktop .nav-block .mega-menu .nav-button:active {
  color: #f99e1c;
  background: white;
}
.nav-desktop .nav-block .mega-menu .title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #a7aab4;
  margin-bottom: 0.5rem;
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu .title {
    font-size: 0.85vw;
  }
}
.nav-desktop .nav-block .mega-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-desktop .nav-block .mega-menu ul li {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0;
}
.nav-desktop .nav-block .mega-menu ul li a {
  font-family: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  text-decoration: none;
  transition: all 0.15s linear;
}
.nav-desktop .nav-block .mega-menu ul li a:active, .nav-desktop .nav-block .mega-menu ul li a:hover {
  text-decoration: underline;
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu ul li {
    font-size: 1.1vw;
  }
}
.nav-desktop .nav-block .mega-menu .telephone {
  display: flex;
  align-items: center;
  color: #2fa2ed;
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .nav-desktop .nav-block .mega-menu .telephone {
    font-size: 1.75rem;
  }
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu .telephone {
    font-size: 2.1vw;
  }
}
.nav-desktop .nav-block .mega-menu .telephone svg {
  height: 1.75rem;
}
@media (min-width: 992px) {
  .nav-desktop .nav-block .mega-menu .telephone svg {
    height: 1.75rem;
  }
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu .telephone svg {
    height: 2.1vw;
  }
}
.nav-desktop .nav-block .mega-menu .form-select {
  font-size: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1148px) {
  .nav-desktop .nav-block .mega-menu .form-select {
    font-size: 1vw;
    margin-bottom: 2rem;
  }
}
.nav-desktop.floating .nav-container .background {
  opacity: 0.97 !important;
}
.nav-desktop.floating .nav-container .nav-logo {
  transform: scale(0.85);
}
.nav-desktop.floating .nav-container .nav-list .nav-list-item .nav-button {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 1.15vw;
}
.nav-desktop.floating .nav-container .nav-list .nav-list-item-custom .nav-button {
  font-size: 1.15vw;
}

.nav-panels {
  display: relative;
  width: 100%;
  height: auto;
  border-bottom: 15px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.975);
  overflow: hidden;
}
.nav-panels h4 {
  font-size: 1.5rem;
}
.nav-panels h2 {
  color: black;
  font-family: "Nunito Sans", sans-serif;
  color: #37373a;
  font-size: 3rem;
  line-height: 1.1;
  transition: fontSize 0.15s linear;
}
.nav-panels p:last-child {
  padding-bottom: 1.5rem;
}
.nav-panels a.btn {
  font-family: "Urbanist", sans-serif;
  font-size: 22px !important;
  font-weight: 600 !important;
}
.nav-panels a.btn-primary {
  color: white;
  margin-right: 1rem;
  text-decoration: none;
}
.nav-panels a.btn-outline-secondary {
  color: #6e7078;
  border-color: #6e7078;
}
.nav-panels a.btn-outline-secondary:hover {
  color: white;
}
.nav-panels .nav-panel .panel-photos {
  position: relative;
  display: block;
  width: 100%;
  height: 40vw;
}
.nav-panels .nav-panel .panel-photos .front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: 40vw;
  transform: translateZ(20px);
  z-index: 1;
}
.nav-panels .nav-panel .panel-photos .back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-22%, -66%) translateZ(10px);
  width: 50vw;
  transition: all 0.15s linear;
  z-index: 0;
}
@media (min-width: 1148px) {
  .nav-panels .nav-panel .panel-photos .back {
    width: 27vw;
  }
}

section.carousel-wrapper {
  display: relative;
  width: 100%;
  height: auto;
  border-bottom: 15px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.975);
  overflow: hidden;
}
section.carousel-wrapper .info-section {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  z-index: 10;
  margin: 0;
  padding: 4rem 1rem;
  transition: all 0.15s linear;
}
@media (min-width: 1148px) {
  section.carousel-wrapper .info-section {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    margin: 0 2rem;
    padding: 3rem 4.5rem;
  }
}
section.carousel-wrapper h4 {
  font-size: 1.5rem;
}
section.carousel-wrapper h2 {
  color: black;
  font-family: "Nunito Sans", sans-serif;
  color: #37373a;
  font-size: 2rem;
  line-height: 1.1;
  transition: fontSize 0.15s linear;
}
@media (min-width: 992px) {
  section.carousel-wrapper h2 {
    font-size: 3rem;
  }
}
section.carousel-wrapper p:last-child {
  padding-bottom: 1.5rem;
}
section.carousel-wrapper a.btn {
  font-family: "Urbanist", sans-serif;
  font-size: 22px !important;
  font-weight: 600 !important;
}
section.carousel-wrapper a.btn-primary {
  color: white;
  text-decoration: none;
}
section.carousel-wrapper a.btn-outline-secondary {
  color: #6e7078;
  border-color: #6e7078;
}
section.carousel-wrapper a.btn-outline-secondary:hover {
  color: white;
}
section.carousel-wrapper .carousel-dark .carousel-indicators [data-bs-target] {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  border-radius: 100px;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  margin-right: 5px;
}
section.carousel-wrapper .carousel {
  width: 100%;
  overflow: hidden;
}
section.carousel-wrapper .carousel .carousel-item {
  background: white;
}
section.carousel-wrapper .carousel .carousel-item .carousel-slide {
  height: 100%;
}
section.carousel-wrapper .carousel .carousel-item .carousel-slide .slide-photos {
  position: relative;
  display: block;
  width: 100%;
  height: 40vw;
}
section.carousel-wrapper .carousel .carousel-item .carousel-slide .slide-photos .front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: 40vw;
  transform: translateZ(20px);
  z-index: 1;
}
section.carousel-wrapper .carousel .carousel-item .carousel-slide .slide-photos .back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-22%, -66%) translateZ(10px);
  width: 50vw;
  transition: all 0.15s linear;
  z-index: 0;
}
@media (min-width: 1148px) {
  section.carousel-wrapper .carousel .carousel-item .carousel-slide .slide-photos .back {
    width: 27vw;
  }
}

section.why-choose {
  background-color: #f5f5f5;
}
section.why-choose h2 {
  font-family: "Teko", sans-serif;
  font-size: 3rem;
  line-height: 0.85;
  font-weight: 600;
  color: #37373a;
  margin-bottom: 1rem;
}
section.why-choose p {
  color: #6e7078;
}
section.why-choose p strong {
  color: #37373a;
}

section.pick-your-service h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  color: #37373a;
}
section.pick-your-service h6 {
  font-family: "Nunito Sans", sans-serif;
  color: #37373a;
}
section.pick-your-service p {
  font-size: 1rem;
}
section.pick-your-service .service-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  transform: scale(1);
  transition: all 0.15s linear;
  border: 1px solid #2fa2ed !important;
  border-radius: 0.315rem;
}
section.pick-your-service .service-link svg {
  margin-bottom: 0.15rem;
}
section.pick-your-service .service-link span {
  display: block;
  text-align: center;
  line-height: 1;
}
section.pick-your-service .service-link:hover, section.pick-your-service .service-link:active {
  color: white;
  background: #f99e1c;
  border-color: #f99e1c !important;
  transform: scale(1.1);
}

section.three-bullets img {
  margin-bottom: 1rem;
}
section.three-bullets h4 {
  color: #37373a;
  font-size: 2rem;
}
@media (min-width: 992px) {
  section.three-bullets h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

section.intoxalock h2 {
  font-size: 2rem;
  color: #37373a;
  line-height: 0.85;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  section.intoxalock h2 {
    font-size: 3vw;
  }
}
section.intoxalock a {
  text-decoration: none;
  color: #f99e1c;
}
section.intoxalock a:hover, section.intoxalock a:active {
  text-decoration: underline;
}
section.intoxalock a.link-btn {
  position: relative;
  display: inline-flex;
  margin: 0;
  padding: 0.2125rem 0.75rem;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600 !important;
  font-size: 1.44vw;
  color: white;
  overflow: visible;
  border: none;
  outline: none;
  background: #f99e1c;
  cursor: pointer;
  border: 1px solid #f99e1c;
  border-radius: 0.315rem;
  transition: all 0.15s linear;
}
section.intoxalock a.link-btn:hover, section.intoxalock a.link-btn:active {
  color: #f99e1c;
  background: white;
  text-decoration: none;
}
section.intoxalock p:last-child {
  margin-bottom: 0;
}

section.insurance-types {
  overflow: hidden;
}
section.insurance-types .row .photo {
  position: relative;
  height: 40vw;
  min-height: 400px;
  overflow: hidden;
}
section.insurance-types .row .photo .photo-wrap {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
section.insurance-types .row .photo .photo-wrap img {
  object-fit: cover !important;
  object-position: 50% 50%;
}
@media (min-width: 992px) {
  section.insurance-types .row .photo .photo-wrap {
    position: absolute;
    display: flex;
  }
  section.insurance-types .row .photo .photo-wrap img {
    object-fit: cover;
  }
}
section.insurance-types h4 {
  color: #2fa2ed;
  font-size: 2rem;
}
@media (min-width: 992px) {
  section.insurance-types h4 {
    font-size: 3vw;
  }
}
section.insurance-types .btn-primary {
  color: white;
  font-size: 1.25rem;
}
@media (min-width: 1148px) {
  section.insurance-types .btn-primary {
    font-size: 1.3vw;
  }
}

section.slideshow {
  position: relative;
  width: 100%;
  height: auto;
  background: url(//ultracarinsurance.com/wp-content/uploads/2020/02/video-background-2.jpg) no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
section.slideshow .video-wrap {
  display: block;
  max-width: 1240px;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 50px 0;
}
@media (min-width: 992px) {
  section.slideshow .video-wrap {
    display: flex;
    padding: 150px 0 75px;
  }
}
section.slideshow .video-item {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 2rem 0;
}
@media (min-width: 992px) {
  section.slideshow .video-item {
    display: flex;
    padding: 0;
  }
}
section.slideshow .video-item:nth-child(1) {
  flex-basis: 60%;
}
section.slideshow .video-item:nth-child(2) {
  flex-basis: 40%;
}
section.slideshow .video-content {
  display: block;
  width: 90%;
  color: #fff;
  padding: 0;
  margin: 0 auto;
}
section.slideshow .video-header {
  font-family: "Teko", sans-serif;
  font-size: 3em;
  line-height: 0.85;
  margin-bottom: 1rem;
}
section.slideshow .video-content p {
  font-size: 1.1em;
}
section.slideshow .video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
section.slideshow .video-responsive iframe {
  left: 0;
  top: 0;
  display: block;
  background-color: #fff;
  height: 100%;
  width: 100%;
  padding: 5px 0;
  margin: 0;
  border: 5px solid #fff;
  position: absolute;
}
section.slideshow .slider-wrap {
  position: relative;
  width: 90%;
  max-width: 1140px;
  height: auto;
  padding: 0;
  margin: 0 auto;
}
section.slideshow .slick-prev,
section.slideshow .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 55%;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: white;
  opacity: 0.75;
  border: none;
  outline: none;
  background: 0 0;
  z-index: 5;
  transition: opacity 0.1s linear;
}
section.slideshow .slick-prev:before,
section.slideshow .slick-next:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
section.slideshow .slick-prev:hover,
section.slideshow .slick-next:hover {
  opacity: 0.99;
}
section.slideshow .slick-prev {
  left: -25px;
}
section.slideshow .slick-next {
  right: -25px;
}
section.slideshow a.all-videos {
  display: block;
  color: #fff;
  padding: 20px 0 40px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}
section.slideshow a.all-videos:hover {
  text-decoration: underline;
}

section.value-added-services {
  background: #f5f5f5;
}
section.value-added-services h2 {
  color: #37373a;
  font-size: 2rem;
}
@media (min-width: 992px) {
  section.value-added-services h2 {
    font-size: 3vw;
  }
}
section.sr22-news {
  overflow: hidden;
}
section.sr22-news h2 {
  color: #37373a;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 0.85;
}
@media (min-width: 1148px) {
  section.sr22-news h2 {
    font-size: 3vw;
  }
}
section.sr22-news .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
section.sr22-news .btn-arrow {
  display: block;
  border: 0;
  background: none;
}
section.sr22-news .btn-arrow:disabled, section.sr22-news .btn-arrow.disabled {
  opacity: 0.65;
}
section.sr22-news .btn-arrow:active:not([disabled]) {
  color: #f99e1c;
}
section.sr22-news .slider-wrapper {
  position: relative;
  display: block;
  min-width: calc(100% - 60px);
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  section.sr22-news .slider-wrapper {
    margin-left: 30px;
    margin-right: 30px;
  }
}
section.sr22-news .slider-wrapper .slider {
  position: relative;
  display: block;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 100%;
  height: auto;
  overflow: hidden;
  transition: transform 0.25s ease;
  font-size: 0;
}
@media (min-width: 768px) {
  section.sr22-news .slider-wrapper .slider {
    display: flex;
    flex-wrap: nowrap;
  }
}
section.sr22-news .slider-wrapper .slider .slide {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 0;
  cursor: pointer;
  background: #f5f5f5;
}
@media (min-width: 768px) {
  section.sr22-news .slider-wrapper .slider .slide {
    width: calc((100vw - 60px) * 0.3333333367);
    border: 10px solid white;
  }
}
@media (min-width: 1148px) {
  section.sr22-news .slider-wrapper .slider .slide {
    width: calc((100vw - 60px) * 0.25);
    border: 10px solid white;
  }
}
section.sr22-news .slider-wrapper .slider .slide img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
section.sr22-news .slider-wrapper .slider .slide .content {
  padding: 2.5rem;
  min-height: 100%;
}
section.sr22-news .slider-wrapper .slider .slide .content h3 {
  color: #37373a;
  line-height: 1;
}
section.sr22-news .slider-wrapper .slider .slide .content p {
  font-size: 1rem;
}
@media (min-width: 1148px) {
  section.sr22-news .slider-wrapper .slider .slide .content p {
    font-size: 1vw;
  }
}
section.sr22-news .slider-wrapper .slider .slide .content .genericbutton a {
  font-size: 1rem;
}
@media (min-width: 1148px) {
  section.sr22-news .slider-wrapper .slider .slide .content .genericbutton a {
    font-size: 1.44vw;
  }
}
@media (min-width: 768px) {
  section.sr22-news .slider-wrapper.slide-start:before {
    content: "";
    display: block;
    width: 140px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
    z-index: 10;
    pointer-events: none;
  }
  section.sr22-news .slider-wrapper.slide-end:after {
    content: "";
    display: block;
    width: 140px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 100%);
    z-index: 10;
    pointer-events: none;
  }
}

section.client-testimonials h2 {
  color: #37373a;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 0.85;
}
@media (min-width: 1148px) {
  section.client-testimonials h2 {
    font-size: 3vw;
  }
}
section.client-testimonials h5 {
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #37373a;
  padding-bottom: 2rem;
  margin: 0;
}
@media (min-width: 1148px) {
  section.client-testimonials h5 {
    font-size: 1.5vw;
  }
}
section.client-testimonials .btn-read-more {
  position: relative;
  display: inline-flex;
  margin: 0;
  padding: 0.2125rem 0.75rem;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600 !important;
  font-size: 1rem;
  color: white;
  overflow: visible;
  border: none;
  outline: none;
  background: #2fa2ed;
  cursor: pointer;
  border: 1px solid #2fa2ed;
  border-radius: 0.315rem;
  transition: all 0.15s linear;
}
section.client-testimonials .btn-read-more:hover, section.client-testimonials .btn-read-more:active {
  color: #2fa2ed;
  background: white;
}
@media (min-width: 1148px) {
  section.client-testimonials .btn-read-more {
    font-size: 1.44vw;
  }
}

section.blue-header {
  background-color: #2fa2ed;
  border-bottom: 40px solid #73beef;
  color: white;
}
section.blue-header .bread-crumb {
  background-color: #238ed4;
  padding: 1rem 0;
}
section.blue-header .bread-crumb .breadcrumb {
  margin-bottom: 0;
}
section.blue-header .bread-crumb .breadcrumb span,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item {
  color: white !important;
  font-weight: 300;
}
section.blue-header .bread-crumb .breadcrumb span:before,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item:before {
  color: white;
  font-weight: 300 !important;
}
section.blue-header .bread-crumb .breadcrumb span a,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item a {
  transition: color 0.15s linear;
}
section.blue-header .bread-crumb .breadcrumb span a:link,
section.blue-header .bread-crumb .breadcrumb span a:visited,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item a:link,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item a:visited {
  color: white !important;
  text-decoration: none;
}
section.blue-header .bread-crumb .breadcrumb span a:hover,
section.blue-header .bread-crumb .breadcrumb span a:active,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item a:hover,
section.blue-header .bread-crumb .breadcrumb .breadcrumb-item a:active {
  color: #f99e1c !important;
  text-decoration: underline !important;
}
section.blue-header h1,
section.blue-header p {
  color: inherit !important;
}
section.blue-header img {
  border: 5px solid white;
  height: 100%;
  max-height: 324px;
}

section.inner-body h3 {
  padding-top: 2rem;
}
section.inner-body .cert {
  float: none;
  width: 100%;
  padding: 0 0 20px 20px;
  margin: 0 auto;
  text-align: center;
}
section.inner-body .cert p {
  font-size: 0.95rem;
  font-weight: 600;
}
@media (min-width: 1148px) {
  section.inner-body .cert {
    float: right;
    width: 33%;
  }
}

section.business-news {
  border-top: 24px solid #f99e1c;
}
section.business-news .news-title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--bs-body-color);
}
section.business-news .news-title a {
  color: inherit !important;
}
section.business-news .news-title a:link, section.business-news .news-title a:visited {
  text-decoration: none;
}
section.business-news .news-title a:hover, section.business-news .news-title a:active {
  color: #2fa2ed !important;
}
section.business-news .byline {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1;
  color: #6e7078;
}
section.business-news .snippet {
  line-height: 1.3;
}

section.footer-nav {
  border-top: 1rem #f99e1c solid;
  background: #37373a;
  color: #a7aab4;
}
section.footer-nav a {
  text-decoration: none;
  padding: 0;
  margin: 0;
  transition: color 0.05s linear;
}
section.footer-nav a:link, section.footer-nav a:visited {
  color: #a7aab4;
}
section.footer-nav a:hover, section.footer-nav a:active {
  color: #f99e1c;
}
section.footer-nav .publisher a {
  font-size: 0.95rem;
}
section.footer-nav .call-out {
  font-size: 0.95rem;
}
section.footer-nav ul {
  padding: 0 0 15px;
  margin: 0 auto;
}
section.footer-nav ul li {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
section.footer-nav ul li a {
  font-size: 0.75em;
}
section.footer-nav ul li.navheader {
  color: white;
  font-size: 0.95em;
  font-weight: 700;
  padding: 0 0 5px;
  margin: 0 auto;
  text-transform: uppercase;
  text-decoration: none;
  list-style: none;
}

footer {
  background: #2b2b2d;
  color: #a7aab4;
}
footer p.copyright {
  font-size: 0.75rem;
  padding: 0;
  margin: 0;
}
footer p.copyright a {
  text-decoration: none;
  padding: 0;
  margin: 0;
  transition: color 0.05s linear;
}
footer p.copyright a:link, footer p.copyright a:visited {
  color: #a7aab4;
}
footer p.copyright a:hover, footer p.copyright a:active {
  color: #f99e1c;
}
footer ul {
  padding: 0.5rem 0 0 0;
  margin: 0;
}
footer ul li {
  display: inline-block;
  list-style: none;
  padding: 0 0.25rem;
  margin: 0 auto;
  width: 2.5rem;
}
footer ul li a:link, footer ul li a:visited {
  color: #a7aab4;
}
footer ul li a:hover, footer ul li a:active {
  color: #f99e1c;
}

section.blue-header .quote-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.2125rem 0.75rem;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  font-weight: 600 !important;
  font-size: 1.2rem;
  color: white;
  overflow: visible;
  border: none;
  outline: none;
  background: #f99e1c;
  cursor: pointer;
  border: 2px solid white;
  border-radius: 0.315rem;
  transition: all 0.15s linear;
}
@media (min-width: 1148px) {
  section.blue-header .quote-button {
    font-size: 1.44vw;
  }
}
section.blue-header .quote-button:hover, section.blue-header .quote-button:active {
  color: #f99e1c;
  background: white;
}
section.blue-header .quote-button svg {
  margin-left: 0.5rem;
}

/*
=============================================================================
2026 SR22 PAGE – ORGANIZED CSS (WITH 2-COLUMN CHECKLIST + CLEAN MOBILE)
=============================================================================
*/

/* ================= HERO ================= */

.sr22-hero {
  background: linear-gradient(135deg, #1f6fa9 0%, #1a5e8f 100%);
  color: #ffffff;
  padding: 50px 0 110px 0;
  position: relative;
}

/* Left column typography */
.sr22-title {
  font-family: "Teko", sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 25px;
  color: #ffffff;
}

.sr22-subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 28px;
  color: #ffffff;
  max-width: 520px;
  font-weight: 500;
}

/* ================= CHECKLIST (2 COLUMNS DESKTOP) ================= */

.sr22-trust {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;

  /* two-column layout on desktop */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 12px;
}

.sr22-trust li {
  position: relative;
  padding-left: 34px;
  margin: 0;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 500;
}

.sr22-trust li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
  font-weight: 700;
  color: #f99e1c;
}

/* ================= HERO CTA ================= */

.sr22-hero-cta .btn-warning {
  background: #f99e1c;
  color: #ffffff !important;
  border: none;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 6px;
}

.sr22-hero-cta .btn-warning:hover {
  background: #e08500;
}

.hero-arrow {
  margin-left: 10px;
}

.hero-phone {
  margin-top: 18px;
  font-weight: 600;
}

.hero-phone a {
  color: #ffffff;
  text-decoration: underline;
}

/* Sticky left column (desktop only) */
@media (min-width: 992px) {
  .sr22-hero .col-lg-6:first-child {
    position: sticky;
    top: 140px;
    align-self: flex-start;
  }
}

/* ================= FORM ================= */

.sr22-form-wrapper {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.form-heading {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  color: #1f6fa9;
  margin-bottom: 25px;
}

#gform_wrapper_3 .gform_button {
  background: #f99e1c !important;
  color: #ffffff !important;
  border: none !important;
  padding: 14px 28px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.gsection_description {
  color: rgb(17, 35, 55);
  font-size: .9rem;
}

/* ================= CONTENT SECTION (3 BOXES) ================= */

.sr22-section {
  padding: 80px 0;
}

.sr22-section-alt {
  background: #f7f9fc;
}

.sr22-section h2 {
  font-family: "Teko", sans-serif;
  font-size: 2.5rem;
  color: #1f6fa9;
  margin-bottom: 15px;
}

.sr22-section .lead {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto;
  color: #555;
}

.sr22-info-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  height: 100%;
  transition: all .25s ease;
}

.sr22-info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

.sr22-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1f6fa9;
}

.sr22-info-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sr22-info-box ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ================= FINAL CTA ================= */

.sr22-final-cta {
  background: linear-gradient(135deg, #1f6fa9 0%, #1a5e8f 100%);
  color: #ffffff;
  padding: 110px 0;
  text-align: center;
}

.sr22-final-cta h2 {
  font-family: "Teko", sans-serif;
  font-size: 2.6rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.sr22-final-cta .btn-warning {
  background: #f99e1c;
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 32px;
}

.sr22-final-cta .btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* ================= MOBILE OPTIMIZED ================= */

@media (max-width: 991px) {

  .sr22-hero {
    padding: 50px 0 50px 0;
  }

  .sr22-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .sr22-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* Checklist becomes 1 column on mobile */
  .sr22-trust {
    /** grid-template-columns: 1fr; **/
    row-gap: 10px;
    margin-bottom: 22px;
  }

  .sr22-trust li {
    font-size: 0.95rem;
  }

  /* CTA full width on mobile */
  .sr22-hero-cta .btn-warning {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 16px;
  }

  .hero-phone {
    text-align: center;
  }

  .hero-phone a {
    font-size: 1rem;
  }

  /* remove sticky on mobile */
  .sr22-hero .col-lg-6:first-child {
    position: relative !important;
    top: auto;
  }

  /* form spacing */
  .sr22-form-wrapper {
    margin-top: 30px;
    padding: 20px;
  }

  /* content section spacing */
  .sr22-section {
    padding: 60px 0;
  }

  .sr22-section h2 {
    font-size: 1.9rem;
  }

  .sr22-section .lead {
    font-size: 1rem;
  }

  /* final cta */
  .sr22-final-cta {
    padding: 70px 0;
  }

  .sr22-final-cta h2 {
    font-size: 2rem;
  }

  .sr22-final-cta .btn-warning,
  .sr22-final-cta .btn-outline-light {
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-arrow {
    display: none;
  }
}


/*# sourceMappingURL=main.css.map */
