﻿/*
    define 
    - font families
    - dropshadow
    - border radius
*/
.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s linear, transform 0.5s linear;
}
.fadeInUp.animate {
  opacity: 1;
  transform: translateY(0);
}
.fadeInRight {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s linear, transform 0.5s linear;
}
.fadeInRight.animate {
  opacity: 1;
  transform: translateX(0);
}
.fadeInLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s linear, transform 0.5s linear;
}
.fadeInLeft.animate {
  opacity: 1;
  transform: translateX(0);
}
.slide-up-hover {
  transition: transform 0.3s linear;
}
.slide-up-hover:hover {
  transform: translateY(-5px);
}
.slide-up-animation {
  animation: slideUp 0.3s linear;
}
@keyframes slideUp {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.delay-1ms {
  transition-delay: 0.1s;
}
.delay-2ms {
  transition-delay: 0.2s;
}
.delay-3ms {
  transition-delay: 0.3s;
}
.delay-4ms {
  transition-delay: 0.4s;
}
.delay-5ms {
  transition-delay: 0.5s;
}
.delay-6ms {
  transition-delay: 0.6s;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #000;
}
/* Page */
.lead {
  font-size: 16px;
}
.page-header {
  padding: 30px 0;
  margin: 0;
  border: 0;
}
.page-header h1,
.page-header .h1 {
  margin: 0;
}
.page-header .lead {
  margin: 5px 0 0 0;
}
.page-gallery {
  margin-bottom: 20px;
}
.page-gallery .row {
  margin-right: 0;
  margin-left: -5px;
}
.page-gallery .row > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.page-gallery .row a {
  display: block;
  margin: 0 0 5px 5px;
}
.page-gallery img {
  width: 100%;
  border-radius: 4px;
}
.page-content {
  line-height: 160%;
}
.page-content ul,
.page-content ol {
  padding: 0;
  margin: 0 0 10px 0;
}
.page-content li {
  margin: 0 0 6px 22px;
}
.format-page h1 {
  margin-top: 0;
}
.format-page h1,
.page-content h2,
.page-nav-btn-group h2 {
  font-weight: bold;
  font-size: 21px;
}
.panel-footer {
  background: transparent;
  border: 0;
  padding-top: 0;
}
.current-offer {
  text-align: center;
  margin: 0 0 20px 0;
}
.current-offer .panel {
  box-shadow: none;
  margin: 0;
  border: 0;
}
.current-offer .offer-title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 4px;
}
.current-offer a {
  background: #fff;
  color: #333;
  display: block;
  border: 1px solid #ddd;
}
.current-offer a:hover,
.current-offer a:focus {
  text-decoration: none;
}
.panel-hero.google-map {
  height: 275px;
  overflow: hidden;
}
.panel-hero.half-hero.google-map {
  height: 202px;
}
.bg-blue {
  background: #f1f5f8;
}
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}
h1,
.h1 {
  font-size: 50px;
}
.benefits-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/page/bg-benefits.jpg) no-repeat 50% 50% / cover;
  color: #fff;
}
.benefits-section .benefit .far {
  font-size: 40px;
}
.benefits-section .benefit .caption .h4 {
  font-size: 21px;
}
/* Media Queries
   ---------------------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .m-center {
    text-align: center;
  }
}
/* Match the px value of .navbar-main with ".navbar-main.scroll-up" and the "body" tag for navbar scrolling functionality. */
body {
  padding-top: 110px;
}
@media (max-width: 767px) {
  body {
    padding-top: 45px;
  }
  body .navbar-main {
    height: 85px;
  }
}
@media (min-width: 768px) {
  .transparent {
    padding-top: 0;
  }
  .transparent .navbar-main {
    background: transparent;
  }
  .transparent .navbar-main .aMain {
    color: #fff;
  }
  .transparent .navbar-main .aMain:hover,
  .transparent .navbar-main .aMain:focus,
  .transparent .navbar-main .aMain.active {
    color: #E38235;
  }
  .transparent .navbar-main .navbar-brand img {
    filter: brightness(0) invert(100%);
  }
  .transparent .navbar-main .navbar-phone-number {
    color: #fff;
  }
  .transparent .navbar-main.scroll-up,
  .transparent .navbar-main.scroll-down {
    background: #4A6560;
  }
  .transparent .navbar-main.scroll-up .navbar-brand img,
  .transparent .navbar-main.scroll-down .navbar-brand img {
    filter: none;
  }
  .transparent .navbar-main.scroll-up .navbar-phone-number,
  .transparent .navbar-main.scroll-down .navbar-phone-number {
    color: #333;
  }
  .transparent .navbar-main.scroll-up .aMain,
  .transparent .navbar-main.scroll-down .aMain {
    color: #fff;
  }
  .transparent .navbar-main.scroll-up .aMain:hover,
  .transparent .navbar-main.scroll-down .aMain:hover,
  .transparent .navbar-main.scroll-up .aMain:focus,
  .transparent .navbar-main.scroll-down .aMain:focus,
  .transparent .navbar-main.scroll-up .aMain.active,
  .transparent .navbar-main.scroll-down .aMain.active {
    color: #E38235;
  }
}
.navbar-main {
  min-height: unset;
  background: #4A6560;
  border: 0;
  transition: all 0.2s ease-in;
}
.navbar-main.scroll-up {
  top: -110px;
}
.navbar-main.scroll-up,
.navbar-main.scroll-down {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.navbar-main .navbar-brand {
  padding: 0;
  height: auto;
}
@media (min-width: 768px) {
  .navbar-main .navbar-brand {
    height: 110px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .navbar-main .navbar-brand {
    padding: 5px 0;
  }
}
.navbar-main .navbar-brand img {
  height: auto;
  transition: all 0.2s ease-in;
}
.navbar-main .navbar-toolbar {
  float: right;
}
@media (max-width: 991px) {
  .navbar-main .navbar-toolbar {
    margin-right: 10px;
  }
}
.navbar-main .navbar-toolbar .btn-quote {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .navbar-main .navbar-toolbar .btn-quote {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .navbar-main .navbar-toolbar {
    margin-top: 20px;
  }
}
.navbar-main .navflyout-toggle {
  float: right;
  margin-top: 38px;
  background: #333;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-main .navflyout-toggle {
    margin-top: 25px;
    margin-right: -5px;
  }
}
.navbar-main .navbar-phone-number {
  display: inline-block;
  font-weight: bold;
  font-size: 21px;
  vertical-align: middle;
  color: #333;
}
.navbar-main .navbar-flyout .mobile-nav-toggle {
  display: none;
}
.navbar-main .navbar-flyout .navbar-nav {
  float: none;
}
@media (min-width: 992px) {
  .navbar-main .navbar-flyout {
    text-align: center;
  }
  .navbar-main .navbar-flyout .navbar-nav {
    vertical-align: top;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .navbar-main .navbar-flyout .navbar-nav {
    display: block;
    clear: both;
  }
  .navbar-main .navbar-flyout .navbar-nav li {
    display: block;
    float: none;
  }
  .navbar-main .navbar-flyout .mobile-nav-toggle {
    display: inline-block;
    background: transparent;
    font-size: 30px;
    line-height: 40px;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.navbar-main .aMain {
  color: #fff;
  font-weight: 400;
}
@media (min-width: 992px) {
  .navbar-main .aMain:hover,
  .navbar-main .aMain:focus,
  .navbar-main .aMain.active {
    color: #E38235;
  }
}
@media (max-width: 500px) {
  .navbar-toolbar .btn-quote {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-phone-number {
    line-height: 32px;
  }
  .navbar-nav .aMain {
    padding-top: 0;
    padding-bottom: 0px;
  }
  .navbar-toolbar {
    line-height: 110px;
  }
  .navbar-toolbar .btn-call {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-flyout {
    clear: both;
  }
}
@media (min-width: 992px) {
  .navflyout-toggle {
    display: none;
  }
  .navbar-nav .aMain {
    line-height: 110px;
  }
}
@media (max-width: 991px) {
  .nav-open .navbar-flyout {
    left: 0;
    box-shadow: -1px 0 3px 0 rgba(0, 0, 0, 0.2);
  }
  .nav-open .navbar-main .aMain,
  .transparent .navbar-main .aMain {
    color: #333;
  }
  .navbar-nav {
    margin: 0;
  }
  .navbar-nav .aMain {
    padding: 8px 12px;
    font-size: 16px;
  }
  .navbar-flyout {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    display: block;
    position: fixed;
    width: 260px;
    left: -260px;
    top: 0;
    bottom: 0;
    transition: left 0.2s linear;
    background: #fff;
  }
  .navbar .dropdown-menu,
  .navbar .dropdown:hover .dropdown-menu {
    display: none;
  }
}
@media (max-width: 500px) {
  .btn-quote-ft-mobile {
    bottom: -50px;
    transition: bottom 0.2s linear;
  }
  .btn-quote-ft-mobile.showme {
    bottom: 0;
  }
}
.breadcrumbs {
  margin-top: 20px;
}
.breadcrumbs .breadcrumb {
  background-color: transparent;
  padding: 8px 0;
  margin: 0;
  font-size: 85%;
}
.breadcrumbs a {
  color: #999;
}
.footer,
.copyright {
  padding: 20px 0;
  color: #fff;
  background: #4A6560;
}
.footer a,
.copyright a {
  color: #fff;
}
.footer a:hover,
.copyright a:hover,
.footer a:focus,
.copyright a:focus {
  color: #999;
}
.footer .footer-heading {
  font-weight: bold;
}
.copyright {
  text-align: center;
}
.copyright .btn-group-social-media {
  margin-bottom: 20px;
}
.copyright .btn-group-social-media .btn-circle {
  width: 36px;
  line-height: 36px;
  padding: 0;
  font-size: 18px;
  background: transparent;
  height: 36px;
  background: #E38235;
}
@media (max-width: 500px) {
  .copyright {
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .copyright {
    text-align: center;
  }
  .copyright .btn-group-social-media {
    margin-bottom: 15px;
  }
}
.footer li a,
.sitemap li a,
.site-map li a {
  display: inline-block;
  padding: 8px 0;
}
.btn-primary {
  background: #E38235;
  border-color: #E38235;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #e99e62;
  border-color: #e99e62;
}
.btn-info {
  background: #4A6560;
  border-color: #4A6560;
  color: #fff;
}
.btn-info:hover,
.btn-info:focus {
  background: #60827c;
  border-color: #60827c;
}
.page-nav-btn-group {
  margin-bottom: 20px;
}
.page-nav-btn-group .btn {
  margin: 0 3px 5px 0;
}
.page-nav-btn-group .btn.active {
  box-shadow: none;
}
.btn-outline-default {
  color: #333;
  border: 1px solid #ccc;
}
.btn-outline-default:hover,
.btn-outline-default:focus {
  color: #333;
  background: #f2f2f2;
  border-color: #ccc;
}
.btn-outline-primary {
  color: #E38235;
  border: 1px solid #E38235;
  background: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background: #E38235;
  border-color: #E38235;
}
.btn-outline-white {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.btn-outline-white:hover,
.btn-outline-white:focus {
  color: #333;
  background: #fff;
  border-color: #fff;
}
.btn-circle {
  border-radius: 50%;
}
.btn-custom {
  border-radius: 25px;
  padding: 10px 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
}
.panel-quote-form {
  background: #4A6560;
  color: #fff;
}
.panel-quote-form .section-header {
  text-align: center;
  margin: 0 auto 15px auto;
  padding: 0;
}
.panel-quote-form .section-header .h2,
.panel-quote-form .section-header .form-title {
  margin: 0;
  font-weight: bold;
}
.panel-quote-form .form-title {
  margin-top: 0;
  font-weight: bold;
}
.panel-quote-form .credibility .item {
  margin-bottom: 20px;
}
.panel-quote-form .aggregate-reviews {
  line-height: 125%;
}
.panel-quote-form .aggregate-reviews .credibility-value {
  font-size: 36px;
  color: #ffc221;
  font-weight: bold;
  line-height: 1;
}
.panel-quote-form .aggregate-reviews .rating .fa-star {
  color: #ffc221;
}
.panel-quote-form .aggregate-reviews a {
  color: #fff;
}
.panel-quote-form .aggregate-reviews small {
  font-size: 12px;
}
.panel-quote-form .aggregate-reviews .review-stars {
  color: #ffc221;
}
.panel-quote-form.horizontal .aggregate-reviews {
  display: inline-block;
  margin-bottom: 10px;
}
.panel-quote-form.horizontal .aggregate-reviews .credibility-value {
  display: inline-block;
  padding-right: 8px;
  margin-top: -3px;
  line-height: 1;
}
.panel-quote-form.horizontal .aggregate-reviews .credibility-description {
  float: right;
  text-align: left;
}
.panel-quote-form .form-group {
  margin-bottom: 8px;
}
.hero-form .panel-quote-form {
  background: #fff;
  color: #000;
}
@media (max-width: 991px) {
  .hero-form .panel-quote-form {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .hero-form .panel {
    position: absolute;
    right: 15px;
    bottom: 70px;
    width: 320px;
  }
  .hero-form .panel .panel-body {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .hero-form {
    background: #fff;
    padding-top: 20px;
  }
}
.hero-form .form-header {
  margin-bottom: 10px;
}
.hero-form .h2 {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
}
.hero-form .h5 {
  font-size: 16px;
  margin: 0;
}
.quote-section {
  background: #f2f2f2;
}
.quote-section .quote-form {
  background: transparent;
  border: 0;
  box-shadow: none;
}
@media (min-width: 992px) {
  .quote-section .h2 {
    font-size: 36px;
  }
}
.quote-section .col-center {
  max-width: 650px;
  margin: auto;
}
.quote-section .panel-quote-form {
  background: transparent;
}
.fullscreen-bg {
  background: #333;
}
.cb-slideshow {
  background: #333;
}
.cb-slideshow,
.cb-slideshow:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1000;
  list-style: none;
}
.cb-slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  -moz-animation: imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  -o-animation: imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  -ms-animation: imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  animation: imageAnimation 18s linear infinite 0s, zoom infinite 18s;
}
.cb-slideshow li:nth-child(1) span {
  background-image: url(/img/home/hero1.jpg);
}
.cb-slideshow li:nth-child(2) span {
  background-image: url(/img/home/hero2.jpg);
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
  background-image: url(/img/home/hero3.jpg);
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}
@media (max-width: 767px) {
  .cb-slideshow li span {
    opacity: 1;
    animation: none;
  }
  .cb-slideshow li:nth-child(2) span,
  .cb-slideshow li:nth-child(3) span {
    background: none;
  }
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -moz-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -moz-animation-timing-function: ease-out;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes imageAnimation {
  0% {
    opacity: 0;
    -o-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -o-animation-timing-function: ease-out;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes imageAnimation {
  0% {
    opacity: 0;
    -ms-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -ms-animation-timing-function: ease-out;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  33% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .fullscreen-bg {
    display: none;
  }
}
.home-page .hero {
  height: 850px;
  position: relative;
}
@media (max-width: 767px) {
  .home-page .hero {
    height: 450px;
  }
}
.home-page .hero .page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.home-page .btn-lg {
  min-width: 250px;
}
.home-page .home-content {
  background: #fff;
}
.home-page .home-content .services-section .service {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  color: #000;
}
.home-page .home-content .services-section .service img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.3s linear;
}
.home-page .home-content .services-section .service .caption {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.85);
}
@media (min-width: 992px) {
  .home-page .home-content .services-section .service .caption {
    height: 450px;
    width: 100%;
  }
}
.home-page .home-content .services-section .service .caption .inner {
  max-width: 450px;
}
.home-page .home-content .services-section .service .caption .h4 {
  font-size: 40px;
}
.home-page .home-content .services-section .service:hover {
  color: #fff;
  transition: all 0.2s ease-in;
}
.home-page .home-content .services-section .service:hover .caption {
  transition: all 0.2s ease-in;
  background: rgba(29, 29, 29, 0.9);
}
@media (max-width: 991px) {
  .home-page .home-content .services-section .service {
    margin-bottom: 20px;
  }
}
.home-page .home-content .benefits-section {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/img/home/bg-benefits.jpg) no-repeat 50% 50% / cover;
}
.home-page .home-content .about-section .img-about {
  background: url(/img/home/about.jpg) no-repeat 50% 50% / cover;
  height: 350px;
}
@media (min-width: 992px) {
  .home-page .home-content .about-section .img-about {
    height: 625px;
  }
}
@media (min-width: 768px) {
  .home-page .home-content .about-section .img-about {
    height: 450px;
  }
}
@media (min-width: 768px) {
  .home-page .home-content .about-section h2 {
    font-size: 40px;
  }
}
.home-page .home-content .about-section .about-content {
  max-width: 500px;
}
@media (max-width: 599px) {
  .home-page .home-content .about-section .about-content .btn {
    margin: 5px 0;
  }
}
.hero,
.page-hero {
  color: #fff;
  position: relative;
}
.hero .div-table,
.page-hero .div-table {
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.hero.page-hero-form,
.page-hero.page-hero-form {
  height: 750px;
  text-align: left;
}
.hero.page-hero-form .hero-inner,
.page-hero.page-hero-form .hero-inner {
  padding: 0;
}
@media (min-width: 992px) {
  .hero.page-hero-form .hero-inner,
  .page-hero.page-hero-form .hero-inner {
    max-width: 60%;
    margin-left: unset;
    margin-right: unset;
  }
}
@media (max-width: 767px) {
  .hero.page-hero-form,
  .page-hero.page-hero-form {
    height: 450px;
  }
}
.hero .hero-inner,
.page-hero .hero-inner {
  max-width: 800px;
  margin: auto;
  padding: 0 15px;
}
.hero h1,
.page-hero h1,
.hero .h1,
.page-hero .h1 {
  margin: 0;
}
@media (min-width: 768px) {
  .hero h1,
  .page-hero h1,
  .hero .h1,
  .page-hero .h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .hero h1,
  .page-hero h1,
  .hero .h1,
  .page-hero .h1 {
    font-size: 36px;
  }
}
.hero .lead,
.page-hero .lead {
  margin: 5px 0 0 0;
}
@media (min-width: 768px) {
  .hero .lead,
  .page-hero .lead {
    font-size: 18px;
  }
}
.page-section {
  padding: 80px 0;
}
@media (max-width: 600px) {
  .page-section {
    padding: 30px 0;
  }
}
.section-header {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  padding: 0 20px;
}
.section-header .section-title {
  margin: 0;
}
.section-header .lead {
  margin: 10px 0 0 0;
}
@media (min-width: 768px) {
  .section-header .lead {
    font-size: 18px;
  }
}
.section-title {
  font-weight: bold;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}
.page-hero {
  text-align: center;
  height: 730px;
  position: relative;
}
@media (max-width: 600px) {
  .page-hero {
    height: 450px;
  }
}
@media (min-width: 768px) {
  .page-hero .h1,
  .page-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .page-hero .h1,
  .page-hero h1 {
    font-size: 36px;
  }
}
.page-hero .page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.toplevel-page.static .page-hero {
  margin-bottom: 0;
}
.toplevel-page .services-section .service {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
}
.toplevel-page .services-section .service img {
  border-radius: 8px;
}
.toplevel-page .services-section .service .caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.23%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 8px;
}
.toplevel-page .services-section .service .caption .div-table-cell {
  vertical-align: bottom;
}
.toplevel-page .services-section .service .caption .btn {
  opacity: 0;
  transition: top ease 0.3s, opacity ease 1s;
}
.toplevel-page .services-section .service .caption .h4 {
  font-size: 30px;
}
.toplevel-page .services-section .service:hover .caption {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.toplevel-page .services-section .service:hover .caption .btn {
  opacity: 1;
}
.dealer-results {
  margin-bottom: 20px;
}
.dealer-results .heading {
  margin-top: 0;
}
.dealer-results .dealer {
  margin-bottom: 5px;
}
.dealer-results .dealer-link {
  display: block;
  position: relative;
  color: #555;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
}
.dealer-results .dealer-link:hover,
.dealer-results .dealer-link:focus {
  text-decoration: none;
  border-color: #337ab7;
}
.dealer-results .distance {
  position: absolute;
  right: 1px;
  top: 1px;
  font-size: 11px;
  width: 70px;
  padding: 12px 0;
  text-align: center;
  background: #f2f2f2;
  border-radius: 0 0 0 4px;
}
.dealer-results .dealer .copy {
  margin-right: 90px;
}
.dealer-results .dealer .copy p {
  margin: 0;
}
.dealer-results .dealer .dealer-heading {
  margin: 0 0 1px 0;
  font-weight: bold;
  color: #337ab7;
}
.dealer-results .dealer .distance i {
  font-size: 21px;
  margin-bottom: 2px;
}
.dealer-results .fa-map-marker {
  color: red;
}
.results-contact-form {
  max-width: 750px;
}
.locator-page .dealer-results .aggregate-stars,
.locator-page .dealer-results .review-count {
  display: inline-block;
}
.location-page .dealer-results .phone {
  font-size: 21px;
}
.location-page .dealer-results .dealer {
  text-align: center;
}
.location-page .dealer-results .dealer .copy {
  margin-right: 0;
}
.location-page .dealer-results .dealer .dealer-heading {
  font-size: 17px;
}
.location-page .dealer-results .aggregate-stars {
  font-size: 24px;
  line-height: 20px;
  margin-top: 5px;
  margin-bottom: -4px;
}
.location-page .page-heading {
  margin: 10px 0 30px 0;
}
.location-page .body-h1 h1 {
  margin: 0 0 30px 0;
  font-size: 16px;
  font-weight: bold;
}
.location-page .benefits i {
  font-size: 30px;
  margin-top: 20px;
}
.dealer-page .current-offer .btn-link {
  display: none;
}
.company-location-heading .location-label {
  margin: 4px 0;
  font-weight: bold;
}
.company-location-heading .company-name {
  display: block;
  font-size: 85%;
  line-height: 1.42857;
}
.company-location-heading .btn-directions {
  float: right;
}