﻿/*
    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: 'Open Sans', sans-serif;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6,
.footer .footer-heading,
.btn-primary,
.btn-info,
.h1 {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
}
h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
  color: #004380;
}
.home-page h2,
.toplevel-page h2,
.page-hero .h1,
.toplevel-page h1 {
  font-size: 36px;
  line-height: 45px;
}
@media (max-width: 991px) {
  .home-page h2,
  .toplevel-page h2,
  .page-hero .h1,
  .toplevel-page h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
a {
  color: #005AAB;
}
a:hover {
  color: #FFC800;
}
a,
.btn {
  transition: all 0.3s ease;
}
a:hover,
.btn:hover,
a:focus,
.btn:focus {
  text-decoration: none;
}
.hvr-float {
  display: block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
/* Page */
.lead {
  font-size: 18px;
}
.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%;
}
.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;
}
.page-nav {
  font-size: 15px;
  border-radius: 0;
}
.panel-footer {
  background: transparent;
  border: 0;
  padding-top: 0;
}
.banner-areas-served .panel-body {
  padding: 30px;
}
@media (max-width: 500px) {
  .banner-areas-served .panel-body {
    padding: 10px;
  }
}
.banner-areas-served .h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
}
.banner-areas-served .city-list {
  text-align: left;
  margin-bottom: 20px;
}
.banner-areas-served .city-list a {
  color: #fff;
  display: block;
  padding: 4px 8px;
  border-radius: 4px;
}
.banner-areas-served .city-list a:hover,
.banner-areas-served .city-list a:focus {
  text-decoration: none;
  background: #FFC800;
}
.banner-areas-served .city-list [class*="col-"] {
  padding-right: 0;
}
.panel-hero.google-map {
  height: 275px;
  overflow: hidden;
}
.panel-hero.half-hero.google-map {
  height: 202px;
}
.price-quote .quote-form {
  padding: 0;
  margin-bottom: 0;
}
/* Media Queries */
/* Sticky header */
@media (min-width: 991px) {
  /* The sticky */
  .sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 95px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* The sticky IE rule */
  .sticky-sidebar {
    top: 0px;
  }
}
@media (max-width: 767px) {
  .m-center {
    text-align: center;
  }
}
.reviews-page .aggregate-rating .aggregate-summary .aggregate-rating-value,
.reviews-page .aggregate-rating .aggregate-summary .rating .fa-star,
.reviews-page .aggregate-rating .aggregate-summary .rating .fa-star-half-alt {
  color: #705200;
}
/*DO NOT PUT CUSTOM CLIENT STYLING HERE*/
/*Page Builder - Flex Grid - Mixin
    Mixin How To:
        - .pb-flex-count();             Gives the default values of max 3 columns and a 24px gap
        - .pb-flex-count(4);            Changes the max columns to 4
        - .pb-flex-count(5, 2);         Changes the max columns to 5, the max colums to 2 in mobile view
        - .pb-flex-count(5, 2, 80px);   Changes the max columns to 5, the max colums to 2 in mobile view, and gap to 80px 
        - .pb-flex-count(@gap: 40px)    Changes the gap to 40px and leaves max columns as default 3. 
*/
/*Page Builder Section Styles*/
.page-builder-styles {
  word-break: break-word;
  /*Page Builder Globals*/
  /*Form Section*/
  /*Services Section*/
  /*Benefits Section*/
  /*Gallery Section*/
  /*Offers Section*/
  /*Blogs Section*/
  /*Testimonials Section*/
  /*Service Areas Section*/
  /*Content Section*/
  /*FAQ Section*/
  /*Process Section*/
  /*Before After Section*/
  /*Footer Section*/
}
.page-builder-styles .pb-section-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  object-fit: cover;
}
.page-builder-styles .pb-section-padding {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .page-builder-styles .pb-section-padding {
    padding: 30px 0;
  }
}
.page-builder-styles .pb-div-table-section {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-builder-styles .pb-btn-wrapper a {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .page-builder-styles .pb-btn-wrapper a {
    width: 100%;
  }
}
.page-builder-styles .pb-activate-video-anchor {
  display: block;
  width: 100%;
  position: relative;
}
.page-builder-styles .pb-activate-video-anchor .pb-play-button {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  left: 0;
  top: 50%;
  background: #fff;
  transform: translateY(-50%);
  margin: auto;
  width: fit-content;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 10px;
  color: #333;
}
.page-builder-styles .pb-activate-video-anchor .pb-play-button:hover {
  background: #eee;
}
.page-builder-styles .pb-activate-video-anchor img {
  transition: all 0.25s linear;
}
.page-builder-styles .pb-activate-video-anchor:hover img {
  filter: brightness(0.9);
}
.page-builder-styles .pb-form-section {
  position: relative;
  overflow: hidden;
}
.page-builder-styles .pb-form-section .pb-div-table-section {
  position: static;
}
.page-builder-styles .pb-form-section .pb-section-bg {
  z-index: -1;
}
.page-builder-styles .pb-form-section .pb-form-container {
  height: 100%;
}
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner {
  max-width: 60%;
  margin: auto;
  padding: 0 15px;
  text-align: left;
}
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .h1,
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner h1 {
  margin: 0;
}
@media (min-width: 768px) {
  .page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .h1,
  .page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .h1,
  .page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner h1 {
    font-size: 36px;
  }
}
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .lead {
  margin: 5px 0 0 0;
}
@media (min-width: 768px) {
  .page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .lead {
    font-size: 21px;
  }
}
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .pb-branding-logos {
  display: flex;
  gap: 15px 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-builder-styles .pb-form-section .pb-form-container .pb-form-row .pb-form-inner .pb-branding-logos img {
  max-width: 170px;
  max-height: 110px;
  object-fit: contain;
  flex-shrink: 1;
  width: auto;
}
.page-builder-styles .pb-form-section.pb-form-center .pb-form-container .pb-form-row {
  flex-direction: column;
  gap: 20px;
}
.page-builder-styles .pb-form-section.pb-form-center .pb-form-container .pb-form-row .pb-form-inner {
  max-width: 800px;
  text-align: center;
}
.page-builder-styles .pb-form-section.pb-form-center .pb-form-container .pb-form-row .hero-quote-section {
  width: 100%;
  max-width: 400px;
}
.page-builder-styles .pb-form-section.pb-form-left .pb-form-container .pb-form-row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .page-builder-styles .pb-form-section.pb-form-left .pb-form-container .pb-form-row,
  .page-builder-styles .pb-form-section.pb-form-right .pb-form-container .pb-form-row,
  .page-builder-styles .pb-form-section.pb-form-center .pb-form-container .pb-form-row {
    flex-direction: column;
    gap: 20px;
  }
  .page-builder-styles .pb-form-section.pb-form-left .pb-form-container .pb-form-row .pb-form-inner,
  .page-builder-styles .pb-form-section.pb-form-right .pb-form-container .pb-form-row .pb-form-inner,
  .page-builder-styles .pb-form-section.pb-form-center .pb-form-container .pb-form-row .pb-form-inner {
    max-width: 800px;
  }
  .page-builder-styles .pb-form-section.pb-form-left .pb-form-container .pb-form-row .hero-quote-section,
  .page-builder-styles .pb-form-section.pb-form-right .pb-form-container .pb-form-row .hero-quote-section,
  .page-builder-styles .pb-form-section.pb-form-center .pb-form-container .pb-form-row .hero-quote-section {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .page-builder-styles .pb-form-section.pb-form-left .pb-div-table-section,
  .page-builder-styles .pb-form-section.pb-form-right .pb-div-table-section,
  .page-builder-styles .pb-form-section.pb-form-center .pb-div-table-section {
    padding: 0px;
  }
  .page-builder-styles .pb-form-section.pb-form-left .pb-div-table-section .pb-form-container,
  .page-builder-styles .pb-form-section.pb-form-right .pb-div-table-section .pb-form-container,
  .page-builder-styles .pb-form-section.pb-form-center .pb-div-table-section .pb-form-container {
    padding: 0;
  }
  .page-builder-styles .pb-form-section.pb-form-left .pb-div-table-section .pb-form-container .pb-form-row,
  .page-builder-styles .pb-form-section.pb-form-right .pb-div-table-section .pb-form-container .pb-form-row,
  .page-builder-styles .pb-form-section.pb-form-center .pb-div-table-section .pb-form-container .pb-form-row {
    gap: 0;
  }
  .page-builder-styles .pb-form-section.pb-form-left .pb-div-table-section .pb-form-container .pb-form-row .pb-form-inner,
  .page-builder-styles .pb-form-section.pb-form-right .pb-div-table-section .pb-form-container .pb-form-row .pb-form-inner,
  .page-builder-styles .pb-form-section.pb-form-center .pb-div-table-section .pb-form-container .pb-form-row .pb-form-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 15px;
    min-height: 400px;
    max-width: none;
    width: 100%;
  }
}
.page-builder-styles .pb-services-section {
  position: relative;
  overflow: hidden;
}
.page-builder-styles .pb-services-section .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-services-section .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (3 - 1) * 24px) / 3);
  margin-bottom: 10px;
  max-width: calc((100% - (3 - 1) * 24px) / 3);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-services-section .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-services-section .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-services-section .pb-service {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  word-break: break-word;
  max-width: 750px;
  text-align: center;
  height: 100%;
}
.page-builder-styles .pb-services-section .pb-service .pb-service-img {
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}
.page-builder-styles .pb-services-section .pb-service .pb-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #333;
  justify-content: space-between;
}
.page-builder-styles .pb-services-section .pb-service .pb-content h2,
.page-builder-styles .pb-services-section .pb-service .pb-content .h4 {
  font-size: 22px;
  margin: 20px 0 10px 0;
}
.page-builder-styles .pb-services-section .pb-service .pb-content .btn {
  margin: 10px auto 0 auto;
}
.page-builder-styles .pb-benefits-section {
  position: relative;
  overflow: hidden;
}
.page-builder-styles .pb-benefits-section .pb-benefits-container {
  display: flex;
}
.page-builder-styles .pb-benefits-section .pb-benefit .pb-benefit-img {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.page-builder-styles .pb-benefits-section .pb-benefit .h4 {
  font-size: 22px;
}
.page-builder-styles .pb-benefits-section.pb-display-vertical {
  text-align: left;
}
.page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container {
  flex-direction: column;
}
.page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container .pb-benefit {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
  align-items: center;
}
.page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container .pb-benefit .pb-benefit-img {
  max-width: 150px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container {
    width: 100%;
    height: 100%;
    flex: 1 1 0;
    gap: 10px;
    flex-direction: row;
  }
  .page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container .pb-benefit-title-wrapper,
  .page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container .pb-benefit-content-wrapper {
    width: 50%;
  }
  .page-builder-styles .pb-benefits-section.pb-display-vertical .pb-benefits-container .pb-benefit-title-wrapper .section-header {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    height: 100%;
  }
}
.page-builder-styles .pb-benefits-section.pb-display-horizontal {
  text-align: center;
}
.page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container {
  flex-direction: column;
}
.page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (3 - 1) * 24px) / 3);
  margin-bottom: 10px;
  max-width: calc((100% - (3 - 1) * 24px) / 3);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container .pb-flex-row .pb-benefit {
  margin: auto;
}
.page-builder-styles .pb-benefits-section.pb-display-horizontal .pb-benefits-container .pb-flex-row .pb-benefit .pb-benefit-img {
  margin: auto;
}
.page-builder-styles .pb-gallery-section {
  text-align: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (3 - 1) * 24px) / 3);
  margin-bottom: 10px;
  max-width: calc((100% - (3 - 1) * 24px) / 3);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-project-card {
  display: block;
  color: #333;
  overflow: hidden;
  text-decoration: none;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-project-card:hover,
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-project-card:focus {
  color: #337ab7;
  text-decoration: none;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-project-card img {
  width: 100%;
  margin-bottom: 5px;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-project-card .pb-project-name {
  font-size: 20px;
  font-weight: bold;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container {
  padding-left: 40px;
  padding-right: 40px;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (3 - 1) * 24px) / 3);
  margin-bottom: 10px;
  max-width: calc((100% - (3 - 1) * 24px) / 3);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel {
  position: relative;
  margin: auto;
}
@media (max-width: 991px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel {
    max-width: 600px;
  }
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-right,
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-left {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: auto 0;
  text-decoration: none;
  color: #333;
  font-size: 30px;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-right .pb-carousel-arrow,
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-left .pb-carousel-arrow {
  font-family: 'Font Awesome 5 Pro';
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-right {
  right: -30px;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-right .pb-carousel-arrow:after {
  content: '\f054';
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-left {
  left: -30px;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .pb-carousel-container .carousel .pb-anchor-arrow-left .pb-carousel-arrow:after {
  content: '\f053';
}
@media (min-width: 992px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .mobile-version {
    display: none;
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-gallery-section .pb-latest-past-projects.pb-past-projects-carousel .desktop-version {
    display: none;
  }
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-past-projects-btn {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  background: #005AAB;
  border-color: #005AAB;
  color: #fff;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-past-projects-btn:hover,
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-past-projects-btn:focus,
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-past-projects-btn.active {
  background: #FFC800;
  border-color: #FFC800;
}
.page-builder-styles .pb-gallery-section .pb-latest-past-projects .pb-past-projects-btn span::after {
  content: 'View All Projects';
}
.page-builder-styles .pb-gallery-section .pb-all-galleries-btn {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  background: #005AAB;
  border-color: #005AAB;
  color: #fff;
}
.page-builder-styles .pb-gallery-section .pb-all-galleries-btn:hover,
.page-builder-styles .pb-gallery-section .pb-all-galleries-btn:focus,
.page-builder-styles .pb-gallery-section .pb-all-galleries-btn.active {
  background: #FFC800;
  border-color: #FFC800;
}
.page-builder-styles .pb-gallery-section .pb-all-galleries-btn span::after {
  content: 'View All Galleries';
}
.page-builder-styles .pb-offers-section {
  position: relative;
  overflow: hidden;
}
.page-builder-styles .pb-offers-section .pb-display-single {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.page-builder-styles .pb-offers-section .pb-display-single .pb-offers-title-wrapper,
.page-builder-styles .pb-offers-section .pb-display-single .pb-offers-content-wrapper {
  width: 50%;
  height: 100%;
  flex: 1 1 0;
}
.page-builder-styles .pb-offers-section .pb-display-single .offer-title {
  font-size: 16px;
  font-weight: bold;
}
.page-builder-styles .pb-offers-section .pb-display-single .offer-img {
  max-height: 700px;
  object-fit: cover;
}
.page-builder-styles .pb-offers-section .pb-display-single .pb-offers-btn-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .page-builder-styles .pb-offers-section .pb-display-single {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .page-builder-styles .pb-offers-section .pb-display-single .pb-offers-title-wrapper,
  .page-builder-styles .pb-offers-section .pb-display-single .pb-offers-content-wrapper {
    width: auto;
  }
}
.page-builder-styles .pb-offers-section .pb-offers-btn-wrapper {
  margin-top: 20px;
  text-align: center;
}
.page-builder-styles .pb-offers-section .pb-offers-btn-wrapper .pb-offers-btn {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  background: #005AAB;
  border-color: #005AAB;
  color: #fff;
}
.page-builder-styles .pb-offers-section .pb-offers-btn-wrapper .pb-offers-btn:hover,
.page-builder-styles .pb-offers-section .pb-offers-btn-wrapper .pb-offers-btn:focus,
.page-builder-styles .pb-offers-section .pb-offers-btn-wrapper .pb-offers-btn.active {
  background: #FFC800;
  border-color: #FFC800;
}
.page-builder-styles .pb-offers-section .pb-offers-btn-wrapper .pb-offers-btn span::after {
  content: 'View All Offers';
}
.page-builder-styles .pb-blog-section {
  position: relative;
  word-break: break-word;
  overflow: hidden;
}
.page-builder-styles .pb-blog-section .pb-display-single {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.page-builder-styles .pb-blog-section .pb-display-single .pb-blog-title-wrapper,
.page-builder-styles .pb-blog-section .pb-display-single .pb-blog-content-wrapper {
  width: 50%;
  height: 100%;
  flex: 1 1 0;
}
.page-builder-styles .pb-blog-section .pb-display-single .panel {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .page-builder-styles .pb-blog-section .pb-display-single {
    flex-direction: column;
    text-align: center;
  }
  .page-builder-styles .pb-blog-section .pb-display-single .pb-blog-title-wrapper,
  .page-builder-styles .pb-blog-section .pb-display-single .pb-blog-content-wrapper {
    width: auto;
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-blog-section .pb-display-single {
    gap: 20px;
  }
}
.page-builder-styles .pb-blog-section .pb-blog-btn-wrapper {
  margin-top: 20px;
  text-align: center;
}
.page-builder-styles .pb-blog-section .pb-blog-btn-wrapper .pb-blog-btn span::after {
  content: 'View All Blogs';
}
.page-builder-styles .pb-testimonials-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  /*Carousel*/
  /*Video*/
  /*Button*/
}
.page-builder-styles .pb-testimonials-section .pb-flex-row.pb-parent-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-testimonials-section .pb-flex-row.pb-parent-row .pb-flex-child {
  flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
  margin-bottom: 10px;
  max-width: calc((100% - (1 - 1) * 24px) / 1);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-testimonials-section .pb-flex-row.pb-parent-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-testimonials-section .pb-flex-row.pb-parent-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container {
  padding: 0 40px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel {
  position: relative;
  margin: auto;
}
@media (max-width: 1199px) {
  .page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel {
    max-width: 600px;
  }
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (3 - 1) * 24px) / 3);
  margin-bottom: 10px;
  max-width: calc((100% - (3 - 1) * 24px) / 3);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card {
  color: #333;
  text-align: left;
  padding: 20px;
  max-height: 250px;
  overflow: auto;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 5px;
  border: 1px solid #333;
  background: #fff;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card .h4 {
  font-weight: bold;
  font-size: 20px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card .stars {
  color: #ffc221;
  margin-bottom: 10px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .item .pb-review-card::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-right,
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-left {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  text-decoration: none;
  color: #333;
  font-size: 30px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-right .pb-carousel-arrow,
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-left .pb-carousel-arrow {
  font-family: 'Font Awesome 5 Pro';
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-right {
  right: -30px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-right .pb-carousel-arrow:after {
  content: '\f054';
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-left {
  left: -30px;
}
.page-builder-styles .pb-testimonials-section .pb-carousel-container .carousel .pb-anchor-arrow-left .pb-carousel-arrow:after {
  content: '\f053';
}
@media (min-width: 1200px) {
  .page-builder-styles .pb-testimonials-section .pb-carousel-container .mobile-carousel-version {
    display: none;
  }
}
@media (max-width: 1199px) {
  .page-builder-styles .pb-testimonials-section .pb-carousel-container .desktop-carousel-version {
    display: none;
  }
}
.page-builder-styles .pb-testimonials-section .pb-video-container {
  max-width: 800px;
  margin: auto;
}
.page-builder-styles .pb-testimonials-section .pb-testimonials-btn {
  margin-top: 20px;
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  background: #005AAB;
  border-color: #005AAB;
  color: #fff;
}
.page-builder-styles .pb-testimonials-section .pb-testimonials-btn:hover,
.page-builder-styles .pb-testimonials-section .pb-testimonials-btn:focus,
.page-builder-styles .pb-testimonials-section .pb-testimonials-btn.active {
  background: #FFC800;
  border-color: #FFC800;
}
.page-builder-styles .pb-testimonials-section .pb-testimonials-btn span:after {
  content: 'Read All Reviews';
}
.page-builder-styles .pb-areas-section {
  position: relative;
  overflow: hidden;
}
.page-builder-styles .pb-areas-section .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-areas-section .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (2 - 1) * 24px) / 2);
  margin-bottom: 10px;
  max-width: calc((100% - (2 - 1) * 24px) / 2);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-areas-section .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-areas-section .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-areas-section .pb-areas-verbiage,
.page-builder-styles .pb-areas-section pb-areas-imagery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.page-builder-styles .pb-areas-section.pb-display-left .pb-flex-row {
  flex-direction: row-reverse;
}
.page-builder-styles .pb-content-section {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-builder-styles .pb-content-section .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-content-section .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (2 - 1) * 24px) / 2);
  margin-bottom: 10px;
  max-width: calc((100% - (2 - 1) * 24px) / 2);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-content-section .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-content-section .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-content-section .pb-content-imagery,
.page-builder-styles .pb-content-section .pb-content-verbiage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.page-builder-styles .pb-content-section .page-gallery {
  margin-bottom: 0;
}
.page-builder-styles .pb-content-section.pb-display-left .pb-flex-row {
  flex-direction: row-reverse;
}
.page-builder-styles .pb-content-section.pb-display-center .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-content-section.pb-display-center .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
  margin-bottom: 10px;
  max-width: calc((100% - (1 - 1) * 24px) / 1);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-content-section.pb-display-center .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-content-section.pb-display-center .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-content-section.pb-display-center .pb-content-verbiage {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.page-builder-styles .pb-content-section.pb-display-center .pb-content-imagery {
  max-width: 800px;
  margin: auto;
}
.page-builder-styles .pb-faq-section {
  position: relative;
  overflow: hidden;
  /*Accordion*/
}
.page-builder-styles .pb-faq-section .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-faq-section .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (2 - 1) * 24px) / 2);
  margin-bottom: 10px;
  max-width: calc((100% - (2 - 1) * 24px) / 2);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-faq-section .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-faq-section .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-faq-section.pb-display-center .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-faq-section.pb-display-center .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
  margin-bottom: 10px;
  max-width: calc((100% - (1 - 1) * 24px) / 1);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-faq-section.pb-display-center .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-faq-section.pb-display-center .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-faq-section.pb-display-center .pb-faq-verbiage {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.page-builder-styles .pb-faq-section.pb-display-right .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-faq-section.pb-display-right .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (2 - 1) * 24px) / 2);
  margin-bottom: 10px;
  max-width: calc((100% - (2 - 1) * 24px) / 2);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-faq-section.pb-display-right .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-faq-section.pb-display-right .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-faq-section .panel-group {
  margin: 0;
}
.page-builder-styles .pb-faq-section .panel-group .panel-heading {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.page-builder-styles .pb-faq-section .panel-group .panel-heading .panel-title a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 30px 10px 15px;
  text-decoration: none;
  color: #333;
}
.page-builder-styles .pb-faq-section .panel-group .panel-heading .panel-title a:after {
  position: absolute;
  right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  content: '\f077';
  color: #333;
}
.page-builder-styles .pb-faq-section .panel-group .panel-heading .panel-title a.collapsed:after {
  content: '\f078';
}
.page-builder-styles .pb-faq-section .panel-group .panel-heading .panel-title a.collapsed:hover {
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
}
.page-builder-styles .pb-faq-section .panel-group .panel-body {
  border: none;
  padding-top: 0;
}
.page-builder-styles .pb-process-section {
  position: relative;
  overflow: hidden;
}
.page-builder-styles .pb-process-section .pb-process-container {
  display: flex;
}
.page-builder-styles .pb-process-section .pb-process .pb-process-img {
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}
.page-builder-styles .pb-process-section .pb-process .h4 {
  font-size: 22px;
}
.page-builder-styles .pb-process-section.pb-display-vertical {
  text-align: left;
}
.page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container {
  flex-direction: column;
}
.page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-flex-child:not(:last-child) .pb-process {
  position: relative;
  margin-bottom: 60px;
}
.page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-flex-child:not(:last-child) .pb-process:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  font-size: 30px;
  bottom: -50px;
  right: 0;
  left: 0;
  height: fit-content;
  width: fit-content;
  margin: auto;
  transform: rotate(90deg);
}
.page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-process {
  display: flex;
  gap: 20px;
  align-items: center;
}
.page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-process .pb-process-img {
  max-width: 150px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container {
    width: 100%;
    height: 100%;
    flex: 1 1 0;
    gap: 10px;
    flex-direction: row;
  }
  .page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-process-title-wrapper,
  .page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-process-content-wrapper {
    width: 50%;
  }
  .page-builder-styles .pb-process-section.pb-display-vertical .pb-process-container .pb-process-title-wrapper .section-header {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    height: 100%;
  }
}
.page-builder-styles .pb-process-section.pb-display-horizontal {
  text-align: center;
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container {
  flex-direction: column;
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (3 - 1) * 48px) / 3);
  margin-bottom: 10px;
  max-width: calc((100% - (3 - 1) * 48px) / 3);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 48px) / 1);
    max-width: calc((100% - (1 - 1) * 48px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row {
    gap: 48px;
  }
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-flex-child:not(:last-child) .pb-process {
  position: relative;
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-flex-child:not(:last-child) .pb-process:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
}
@media (max-width: 991px) {
  .page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-flex-child:not(:last-child) .pb-process:after {
    bottom: -60px;
    top: unset;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(90deg);
  }
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-process {
  margin: auto;
  position: relative;
}
.page-builder-styles .pb-process-section.pb-display-horizontal .pb-process-container .pb-flex-row .pb-process .pb-process-img {
  margin: auto;
}
.page-builder-styles .pb-bfaf-section {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-builder-styles .pb-bfaf-section .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-bfaf-section .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (2 - 1) * 24px) / 2);
  margin-bottom: 10px;
  max-width: calc((100% - (2 - 1) * 24px) / 2);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-bfaf-section .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-bfaf-section .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-bfaf-section .pb-content-imagery,
.page-builder-styles .pb-bfaf-section .pb-content-verbiage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.page-builder-styles .pb-bfaf-section .pb-content-imagery .twentytwenty-before,
.page-builder-styles .pb-bfaf-section .pb-content-imagery .twentytwenty-after {
  width: 100%;
  object-fit: cover;
}
.page-builder-styles .pb-bfaf-section .page-gallery {
  margin-bottom: 0;
}
.page-builder-styles .pb-bfaf-section.pb-display-left .pb-flex-row {
  flex-direction: row-reverse;
}
.page-builder-styles .pb-bfaf-section.pb-display-center .pb-flex-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.page-builder-styles .pb-bfaf-section.pb-display-center .pb-flex-row .pb-flex-child {
  flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
  margin-bottom: 10px;
  max-width: calc((100% - (1 - 1) * 24px) / 1);
}
@media (max-width: 991px) {
  .page-builder-styles .pb-bfaf-section.pb-display-center .pb-flex-row .pb-flex-child {
    flex: 1 1 calc((100% - (1 - 1) * 24px) / 1);
    max-width: calc((100% - (1 - 1) * 24px) / 1);
  }
}
@media (max-width: 991px) {
  .page-builder-styles .pb-bfaf-section.pb-display-center .pb-flex-row {
    gap: 24px;
  }
}
.page-builder-styles .pb-bfaf-section.pb-display-center .pb-content-verbiage {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.page-builder-styles .pb-bfaf-section.pb-display-center .pb-content-imagery {
  max-width: 800px;
  margin: auto;
}
.page-builder-styles .pb-footer-section .footer,
.page-builder-styles .pb-footer-section .copyright {
  background: inherit;
}
.page-builder-styles {
  /* Animation for the slideshow images */
}
.page-builder-styles .fullscreen-bg {
  background: #333;
}
.page-builder-styles .pb-cb-slideshow {
  background: #333;
}
.page-builder-styles .pb-cb-slideshow,
.page-builder-styles .pb-cb-slideshow:after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1000;
  list-style: none;
}
.page-builder-styles .pb-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: pb-imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  -moz-animation: pb-imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  -o-animation: pb-imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  -ms-animation: pb-imageAnimation 18s linear infinite 0s, zoom infinite 18s;
  animation: pb-imageAnimation 18s linear infinite 0s, zoom infinite 18s;
}
.page-builder-styles .pb-cb-slideshow li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}
.page-builder-styles .pb-cb-slideshow li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}
@media (max-width: 767px) {
  .page-builder-styles .pb-cb-slideshow li span {
    opacity: 1;
    animation: none;
  }
  .page-builder-styles .pb-cb-slideshow li:nth-child(2) span,
  .page-builder-styles .pb-cb-slideshow li:nth-child(3) span {
    background: none;
  }
}
@-webkit-keyframes pb-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;
    transform: scale(1.25);
  }
}
@-moz-keyframes pb-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;
    transform: scale(1.25);
  }
}
@-o-keyframes pb-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;
    transform: scale(1.25);
  }
}
@-ms-keyframes pb-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;
    transform: scale(1.25);
  }
}
@keyframes pb-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;
    transform: scale(1.25);
  }
}
@media (max-width: 767px) {
  .page-builder-styles .fullscreen-bg {
    display: none;
  }
}
/* Match the px value of .navbar-main with ".navbar-main.scroll-up" and the "body" tag for navbar scrolling functionality. */
body {
  padding-top: 0;
}
@media (max-width: 767px) {
  body {
    /*padding-top: 75px;*/
  }
}
@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: #ccc;
  }
  .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: #fff;
  }
  .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: #333;
  }
  .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: #999;
  }
}
.navbar-main {
  min-height: unset;
  background: #fff;
  border: 0;
  transition: all 0.2s ease-in;
  position: sticky;
}
.navbar-main.scroll-up {
  top: -100px;
}
.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: 100px;
    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: 5px;
}
@media (max-width: 767px) {
  .navbar-main .navbar-toolbar .btn-quote {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .navbar-main .navbar-toolbar {
    margin-top: 5px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .navbar-main .navbar-toolbar {
    line-height: 75px;
  }
}
.navbar-main .navflyout-toggle {
  float: right;
  margin-top: 15px;
  background: transparent;
  color: #005AAB;
  border-radius: 0;
  font-size: 30px;
  line-height: 100px;
}
@media (max-width: 991px) {
  .navbar-main .navflyout-toggle {
    margin-top: 0;
    margin-right: -5px;
  }
}
@media (max-width: 767px) {
  .navbar-main .navflyout-toggle {
    line-height: 75px;
  }
}
.navbar-main .navbar-phone-number {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
  color: #747474;
}
@media (max-width: 767px) {
  .navbar-main .navbar-phone-number {
    font-size: 22px;
    color: #005AAB;
  }
}
.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 {
  font-weight: 700;
  color: #747474;
}
@media (min-width: 992px) {
  .navbar-main .aMain:hover,
  .navbar-main .aMain:focus,
  .navbar-main .aMain.active {
    color: #1c3664;
  }
}
.logosize {
  width: 173px;
}
@media (max-width: 991px) {
  .logosize {
    width: 175px;
  }
}
@media (max-width: 767px) {
  .logosize {
    width: 130px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-main .aMain {
    font-size: 13px;
  }
  .nav > li > a {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media (min-width: 992px) {
  .navflyout-toggle {
    display: none;
  }
  .navbar-nav .aMain {
    line-height: 100px;
  }
}
@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 (min-width: 992px) {
  .navbar-nav .aMain {
    padding-top: 0;
    padding-bottom: 0px;
  }
}
@media (min-width: 768px) {
  .navbar-phone-number {
    line-height: 32px;
  }
  .navbar-toolbar {
    line-height: 100px;
  }
  .navbar-toolbar .btn-call {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-flyout {
    clear: both;
  }
}
@media (max-width: 500px) {
  .btn-quote-ft-mobile {
    bottom: -50px;
    transition: bottom 0.2s linear;
  }
  .btn-quote-ft-mobile.showme {
    bottom: 0;
  }
  .navbar-toolbar .btn-quote {
    display: none;
  }
}
.breadcrumbs {
  margin-top: 20px;
}
.breadcrumbs .breadcrumb {
  background-color: transparent;
  padding: 8px 0;
  margin: 0;
  font-size: 85%;
}
.breadcrumbs a {
  color: #333;
}
.footer,
.copyright {
  color: #333;
}
.footer {
  border-top: solid 1px #e6e6e6;
  background: #fff;
}
.footer > .container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer .footer-heading {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #005AAB;
  line-height: 20px;
}
.footer li {
  margin-bottom: 5px;
}
.footer li a {
  color: #3D3D3D;
}
.footer li a:hover,
.footer li a:focus {
  color: #FFC800;
}
.footer .logo-footer {
  margin-bottom: 1rem;
  max-width: 175px;
}
.footer .footer-about-info {
  margin-bottom: 1rem;
}
.copyright {
  padding: 25px 0;
  background: #fff;
  border-top: solid 1px #e6e6e6;
}
.copyright a {
  color: #3D3D3D;
}
.copyright a:hover,
.copyright a:focus {
  color: #FFC800;
}
.copyright .btn-group-social-media {
  margin-bottom: 10px;
}
.copyright .btn-group-social-media a {
  margin-right: 5px;
  height: 35px;
  width: 35px;
  border: 1px solid #FFC800;
  display: inline-block;
  color: #00afab;
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  transition: all 500ms ease;
}
.copyright .btn-group-social-media a:hover,
.copyright .btn-group-social-media a:focus {
  background: #005AAB;
  border: 1px solid #005AAB;
  color: #fff;
}
.copyright .btn-group-social-media .btn-circle {
  width: 36px;
  line-height: 36px;
  padding: 0;
  font-size: 18px;
  height: 36px;
  background: #005AAB;
  border-color: #005AAB;
}
.copyright .btn-group-social-media .btn-circle:hover,
.copyright .btn-group-social-media .btn-circle:focus {
  background: #FFC800;
  border-color: #FFC800;
  color: #000 !important;
}
.copyright .copyright-col-right {
  color: #797872;
}
@media (min-width: 768px) {
  .copyright .copyright-col-left {
    text-align: left;
  }
  .copyright .copyright-col-right {
    float: right;
    text-align: right;
  }
}
@media (max-width: 991px) {
  .footer {
    text-align: center;
  }
  .footer .logo-footer {
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer-heading {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .copyright {
    text-align: center;
  }
  .copyright .btn-group-social-media {
    margin-bottom: 15px;
  }
}
.btn {
  white-space: normal;
}
.btn-primary {
  background: #FFC800;
  border-color: #FFC800;
  color: #000;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #005AAB;
  border-color: #005AAB;
}
.btn-info {
  background: #005AAB;
  border-color: #005AAB;
  color: #fff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.active {
  background: #FFC800;
  border-color: #FFC800;
}
.btn-padding {
  padding: 10px 15px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .btn-padding {
    padding: 8px 10px;
  }
}
.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: #FFC800;
  border: 1px solid #FFC800;
  background: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background: #FFC800;
  border-color: #FFC800;
}
.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%;
}
.panel-quote-form .section-header {
  text-align: center;
  margin: 0 auto 10px auto;
  padding: 0;
}
.panel-quote-form .section-header .h2,
.panel-quote-form .section-header .h3 {
  margin: 0;
  font-weight: bold;
}
.panel-quote-form .credibility {
  padding-top: 15px;
}
.panel-quote-form .credibility .item {
  margin-bottom: 20px;
}
.quote-form {
  color: #fff;
  background: linear-gradient(rgba(0, 67, 128, 0.85), rgba(0, 67, 128, 0.85)), url(/img/home/quote-bg.jpg);
  background-position: 50% center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5px;
  margin-bottom: 20px;
  border: none;
  position: relative;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.quote-form .section-header {
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 0;
}
.quote-form .section-header .lead {
  font-size: 14px;
  max-width: 350px;
  margin: 10px auto;
}
.quote-form .credibility {
  margin-top: 10px;
}
.quote-form img {
  margin: 20px auto;
  max-width: 135px;
  filter: brightness(0) invert(100%);
}
.quote-form .intro {
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  color: #005AAB;
}
.quote-form .form-title {
  font-family: 'Hind', sans-serif;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
}
.quote-form .btn-primary {
  padding: 15px 10px;
  margin: 5px auto;
  background: #ffc801;
  border: solid 2px #D8A728;
  font-size: 15px;
  transition: all 0.4s ease;
}
.quote-form .btn-primary:hover,
.quote-form .btn-primary:focus,
.quote-form .btn-primary:active {
  background: #202020;
  border: solid 2px #fff;
  color: #fff;
}
.quote-form .h4.form-title {
  color: #fff;
  text-align: left;
  font-size: 18px;
  margin: 10px 0;
}
.quote-form a {
  color: #FFC221;
  transition: all 0.4s ease;
}
.quote-form a:hover,
.quote-form a:focus,
.quote-form a:active {
  text-decoration: underline;
}
.quote-form .credibility-value {
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
}
.quote-form .form-group {
  margin-bottom: 7px;
}
.quote-form .review-stars {
  color: #ffc221;
}
.quote-form .value {
  font-weight: bold;
  line-height: 20px;
}
.panel-quote-form,
.bg-quote-weather-appt {
  background: #005AAB;
  color: #fff;
}
.panel-quote-form a,
.bg-quote-weather-appt a {
  color: #fff;
  text-decoration: underline;
}
.panel-quote-form a:hover,
.bg-quote-weather-appt a:hover,
.panel-quote-form a:focus,
.bg-quote-weather-appt a:focus {
  text-decoration: none;
}
.hero-quote-section {
  width: 350px;
}
@media (max-width: 991px) {
  .hero-quote-section {
    background: #005AAB;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .hero-form .panel {
    position: absolute;
    right: 15px;
    bottom: 110px;
    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: 36px;
  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;
  }
}
/*Client Specific Page Builder Styling*/
.home-page .home-content {
  background: #fff;
}
.hero,
.page-hero {
  color: #fff;
  position: relative;
  height: 600px;
}
@media (max-width: 767px) {
  .hero,
  .page-hero {
    height: 450px;
  }
}
.hero .page-hero-bg,
.page-hero .page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero .video-hero-bg,
  .page-hero .video-hero-bg {
    display: block;
    position: absolute;
  }
  .hero .video-hero-bg video,
  .page-hero .video-hero-bg video {
    display: none;
  }
}
.hero .div-table,
.page-hero .div-table {
  background: rgba(0, 0, 0, 0.2);
  z-index: 3;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .hero .div-table,
  .page-hero .div-table {
    padding: 0;
  }
}
.hero .hero-container,
.page-hero .hero-container {
  height: 100%;
}
.hero .hero-container .hero-row,
.page-hero .hero-container .hero-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero .hero-container .hero-row .hero-inner,
.page-hero .hero-container .hero-row .hero-inner {
  max-width: 800px;
  margin: auto;
  padding: 0 15px;
  text-align: center;
}
.hero .hero-container .hero-row .hero-quote-section,
.page-hero .hero-container .hero-row .hero-quote-section {
  display: none;
}
.hero.page-hero-form,
.page-hero.page-hero-form {
  height: auto;
}
@media (max-width: 767px) {
  .hero.page-hero-form .page-hero-bg,
  .page-hero.page-hero-form .page-hero-bg {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .hero.page-hero-form .video-hero-bg,
  .page-hero.page-hero-form .video-hero-bg {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .hero.page-hero-form .hero-container,
  .page-hero.page-hero-form .hero-container {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .hero.page-hero-form .hero-container .hero-row,
  .page-hero.page-hero-form .hero-container .hero-row {
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .hero.page-hero-form .hero-container .hero-row,
  .page-hero.page-hero-form .hero-container .hero-row {
    flex-direction: column;
  }
}
.hero.page-hero-form .hero-container .hero-row .hero-inner,
.page-hero.page-hero-form .hero-container .hero-row .hero-inner {
  padding: 0;
  margin: unset;
  text-align: left;
}
@media (min-width: 992px) {
  .hero.page-hero-form .hero-container .hero-row .hero-inner,
  .page-hero.page-hero-form .hero-container .hero-row .hero-inner {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .hero.page-hero-form .hero-container .hero-row .hero-inner,
  .page-hero.page-hero-form .hero-container .hero-row .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    height: 450px;
    width: 100%;
  }
}
.hero.page-hero-form .hero-container .hero-row .hero-quote-section,
.page-hero.page-hero-form .hero-container .hero-row .hero-quote-section {
  display: block;
}
.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: 50px;
  }
}
@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: 21px;
  }
}
.page-section {
  padding: 65px 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: 30px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 21px;
  }
}
/* Hero */
.page-hero-form {
  background: rgba(61, 61, 61, 0.6);
}
.page-hero-form .h1 {
  color: #FFF;
}
.hero [class*='col-'] {
  padding-left: 0;
  padding-right: 0;
}
.hero .hero-content {
  padding: 0 100px;
  height: 600px;
}
.hero .hero-content .h1 {
  font-weight: 500;
  color: #fff;
}
@media (max-width: 991px) {
  .hero .hero-content {
    padding: 0 75px;
  }
}
@media (max-width: 767px) {
  .hero .hero-content {
    padding: 0 25px;
  }
}
/* Quote Section */
.quote-area {
  background: linear-gradient(rgba(0, 67, 128, 0.95), rgba(0, 67, 128, 0.95)), url(/img/home/quotearea-bg.jpg) no-repeat top left;
  background-size: cover;
  color: #FFF;
}
@media (max-width: 767px) {
  .quote-area {
    padding-top: 0;
  }
}
.quote-area h1,
.quote-area .h1,
.quote-area h2 {
  font-weight: normal;
  color: #fff;
}
.quote-area .btn {
  margin-top: 25px;
}
.quote-area .hero-form {
  /*height: 500px;*/
}
@media (max-width: 767px) {
  .quote-area .hero-form {
    height: auto;
    background: #005aab;
  }
}
.quote-area .hero-form .panel {
  bottom: 50px;
  width: 450px;
  left: 0;
  right: 0;
  margin: -100px auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .quote-area .hero-form .panel {
    position: inherit;
    box-shadow: none;
    margin-top: 0;
  }
}
/* Services */
.home-services .service {
  position: relative;
  display: block;
  border: solid 7px #ccdeee;
}
@media (max-width: 991px) {
  .home-services .service {
    margin-top: 1.5em;
  }
}
.home-services .service .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #FFF;
  overflow: hidden;
  transition: height ease 0.2s;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 99.48%);
  text-align: center;
}
.home-services .service .caption .caption-title {
  margin-top: -20px;
}
.home-services .service .caption .caption-title .h4 {
  color: #fff;
  font-weight: 700;
}
.home-services .service .caption .caption-title .h3 {
  font-size: 18px;
  color: #FFF;
  text-transform: uppercase;
}
.home-services .service .caption .service-body {
  position: absolute;
  top: 500px;
  opacity: 0;
  transition: top ease 0.3s, opacity ease 1s;
}
@media (min-width: 991px) and (max-width: 1400px) {
  .home-services .service .caption .service-body {
    font-size: 12px;
  }
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .home-services .service .caption .service-body {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .home-services .service .caption {
    display: flex;
    align-items: center;
  }
  .home-services .service .caption .caption-title {
    width: 100%;
  }
}
.home-services .service:hover .caption-title {
  display: none;
}
.home-services .service:hover .caption {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  transition-delay: 0.1s;
}
.home-services .service:hover .caption .h4 {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .home-services .service:hover .caption .h4 {
    margin: 0;
  }
}
.home-services .service:hover .caption .service-body {
  left: 0;
  top: 20px;
  padding: 0 25px;
  opacity: 1;
  transition-delay: 0.1s;
  width: 100%;
}
@media (max-width: 1200px) {
  .home-services .service:hover .caption .service-body {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .home-services .service:hover .caption .service-body {
    top: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .home-services .service:hover .caption .service-body {
    padding: 0 15px;
  }
}
@media (max-width: 1400px) {
  .home-services .service:hover .caption .service-body b {
    display: none;
  }
}
@media (max-width: 1200px) {
  .home-services .service:hover .caption .service-body .btn {
    display: none;
  }
}
@media (max-width: 991px) {
  .home-services .service:hover .caption .service-body .btn {
    display: block;
  }
}
.home-services .service-content {
  padding: 25px;
}
@media (max-width: 991px) {
  .home-services .service-content {
    margin-bottom: 25px;
  }
}
.home-services .service-content h1 {
  font-weight: normal;
}
.home-services .service-content h2 {
  margin: 15px 0 0 0;
  text-transform: uppercase;
  font-size: 18px;
}
.home-services .service-content:hover,
.home-services .service-content:focus {
  background: #FFC800;
  transition: all 0.3s ease;
}
/* About Us */
.home-about [class*='col-'] {
  padding-left: 0;
  padding-right: 0;
}
.home-about .about-content {
  padding: 100px 200px 100px 100px;
  background: #F9F9F9;
}
@media (max-width: 991px) {
  .home-about .about-content {
    padding: 50px;
  }
}
.home-about .about-content .btn-about {
  background: transparent;
  border: solid 2px #005AAB;
  color: #005AAB;
}
.home-about .about-content .btn-about:hover,
.home-about .about-content .btn-about:focus {
  background: #FFC800;
  border: solid 2px #FFC800;
  color: #fff;
}
.home-about .about-bg {
  min-height: 600px;
  background: url(/img/home/about-bg.jpg) no-repeat top center;
  background-size: cover;
}
.home-about .about-bg.moving-bg {
  background: url(/img/page/moving-bg.jpg) no-repeat top center / cover;
}
/* Benefits */
.home-benefits {
  background: linear-gradient(180deg, #005AAB 0%, #01417A 100%);
  color: #fff;
}
.home-benefits h2 {
  color: #fff;
}
.home-benefits i {
  font-size: 2.5rem;
  color: #FFC800;
}
.home-benefits .h4 {
  margin: 15px 0;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}
/* Service Areas */
.service-areas {
  background: url(/img/home/service-bg.jpg) no-repeat bottom right;
}
.service-areas ul {
  margin-top: 1rem;
  padding: 0;
}
.service-areas ul li {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
  list-style: none;
  width: 48%;
}
.service-areas ul li a {
  display: flex;
  align-items: center;
}
.service-areas ul li i {
  padding-right: 0.5rem;
  font-size: 1.25rem;
}
/* Testimonials */
.home-testimonials {
  background: #F6F6F6;
}
.home-testimonials .fa-star {
  font-size: 22px;
  color: #FFDA54;
}
.home-testimonials #quote-carousel {
  padding: 0 10px 30px 10px;
  margin-top: 5px;
}
.home-testimonials #quote-carousel .carousel-control {
  margin-top: 45px;
  background: none;
  font-size: 25px;
  color: #005AAB;
  text-shadow: none;
  opacity: 0.2;
}
.home-testimonials #quote-carousel .carousel-indicators {
  position: relative;
  right: 50%;
  top: auto;
  bottom: 0;
  margin-top: 20px;
  margin-right: -19px;
  min-height: 60px;
}
.home-testimonials #quote-carousel .carousel-indicators li {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  opacity: 0.4;
  overflow: hidden;
  transition: all 0.4s ease-in;
  vertical-align: middle;
}
.home-testimonials #quote-carousel .carousel-indicators .active {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: all 0.2s;
}
.home-testimonials .item {
  min-height: 200px;
}
.home-testimonials .item blockquote {
  border-left: none;
  margin: 0;
}
@media (max-width: 767px) {
  .home-testimonials .item blockquote {
    width: 85%;
    margin: auto;
  }
}
.home-testimonials .item blockquote p {
  margin: 15px 0;
  font-size: 16px;
}
.home-testimonials .item blockquote strong {
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  color: #004380;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .fullscreen-bg {
    display: none;
  }
}
#search-blog-form {
  margin-bottom: 20px;
}
.toplevel-page {
  /* Services */
  /* Testimonials */
}
.toplevel-page.static .page-hero {
  margin-bottom: 0;
}
.toplevel-page.static .banner-text {
  max-width: 950px;
}
.toplevel-page .page-hero {
  position: relative;
  margin-bottom: 20px;
  height: fit-content;
  min-height: 750px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  text-align: left;
}
@media (max-width: 991px) {
  .toplevel-page .page-hero {
    padding: 50px 0;
    height: auto;
  }
}
.toplevel-page .page-hero .h1,
.toplevel-page .page-hero h1 {
  color: #fff;
}
@media (min-width: 768px) {
  .toplevel-page .page-hero .h1,
  .toplevel-page .page-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .toplevel-page .page-hero .h1,
  .toplevel-page .page-hero h1 {
    font-size: 36px;
  }
}
.toplevel-page .page-hero img.img-responsive {
  filter: brightness(0) invert(100%);
}
.toplevel-page .page-hero .page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.toplevel-page .page-hero .heroform {
  margin-top: 50px;
}
.toplevel-page .page-hero .heroform .quote-form {
  padding: 10px;
  border-radius: 0;
}
.toplevel-page .page-hero .heroform .quote-form .section-header {
  display: none;
}
@media (max-width: 991px) {
  .toplevel-page .page-hero .heroform {
    margin-top: 25px;
  }
}
.toplevel-page .page-hero .heroform .credibility.horizontal {
  margin-bottom: 15px;
  text-align: left;
}
.toplevel-page .page-hero .heroform .credibility-value,
.toplevel-page .page-hero .heroform .credibility-description {
  font-weight: bold;
  line-height: 20px;
}
.toplevel-page .grey-bg {
  background: #F9F9F9;
}
.toplevel-page .services-section {
  text-align: center;
}
.toplevel-page .services-section a h2 {
  margin: 15px 0;
  font-weight: 500;
  font-size: 20px;
  color: #2A2A2A;
}
.toplevel-page .services-section a h2:hover,
.toplevel-page .services-section a h2:focus {
  color: #FFC800;
}
.toplevel-page .key-services ul {
  margin: 25px 0;
  padding: 0 25px 0 0;
  display: inline-block;
  list-style: none;
}
.toplevel-page .key-services ul li {
  margin-bottom: 10px;
  position: relative;
}
.toplevel-page .key-services ul li a {
  font-size: 18px;
  color: #4D4D4D;
}
.toplevel-page .key-services ul li a:hover,
.toplevel-page .key-services ul li a:focus {
  color: #FFBC0E;
}
.toplevel-page .key-services ul li::before {
  margin-right: 10px;
  margin-bottom: 10px;
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
  content: "\f058";
  color: #004380;
  /*float: left;*/
}
.toplevel-page .home-testimonials {
  background: #004380;
}
.toplevel-page .home-testimonials #quote-carousel .carousel-control {
  color: #fff;
}
.toplevel-page .home-testimonials .item blockquote p,
.toplevel-page .home-testimonials .item blockquote strong {
  color: #fff;
}
.logistics-page .credibility.horizontal,
.logistics-page .home-testimonials {
  display: none;
}
.three-column-page .page-nav-btn-group {
  margin-top: 0;
}
.three-column-page .page-nav-btn-group h2 {
  font-weight: bold;
}
@media (min-width: 992px) {
  .three-column-page .page-nav-btn-group h2 {
    display: none;
  }
}
.three-column-page .page-nav-btn-group .btn {
  width: 100%;
  text-align: left;
}