/*
    Theme Name: Sperling Starter
    Theme URI: https://www.sperlinginteractive.com
    Description: Sperling Interactive WordPress Starter Theme
    Version: 1.0
    Author: Sperling Interactive
  Theme URI: https://www.sperlinginteractive.com
*/


/*------------------------------------*\


\*------------------------------------*/


/* global box-sizing */

*,
*:after,
*:before {
    box-sizing: border-box;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* html element 62.5% font-size for REM use */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #444;
    font: 300 11px/1.4 Helvetica, Arial, sans-serif;
}


/* clear */

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}


/* Lightspeed Lazy load fade in */

img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}

a {
    text-decoration: none;
}

a:hover {}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    border: 1px solid #04A4CC;
    outline: 0;
}

p,
ul,
ol {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.5rem;
    color: #808080;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2.0rem;
}

h6 {
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

blockquote {
    margin: 25px 0;
    padding: 25px 0 25px 5vw;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-weight: 400;
}

b,
strong {
    font-weight: 400;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/


/* wrapper */

.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 2560px;
    overflow: hidden;
}

.container,
.container-additional {
    max-width: 1480px;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.container-fluid{
    max-width: 100%;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.container-medium{
    max-width: 1300px;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 30px;
}

/* header */

.header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    padding-top: 50px;
}

.header .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    backface-visibility: hidden;
    height: 80px;
}


/* HOME */

.home-hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
    position: relative;
    min-height: 700px;
}

.slider-image-body:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 25px;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    background-color: #000000;
    opacity: 0.31;
    z-index: 1;
}

.home-hero .slick-dotted.slick-slider {
    height: 100vh;
    position: relative;
    z-index: 5;
    min-height: 700px;
}

.home-hero .slick-list {
    height: 100%;
}

.home-hero .slick-track {
    height: 100%;
}

.slider-image-body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.home-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.home-hero .container .columns {
    width: 100%;
    max-width: 90%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-hero .slick-dots {
    display: none !important;
    bottom: 0px;
    max-width: 1280px;
    margin: 0px auto;
    position: static;
    margin-top: -200px;
    text-align: left;
    padding-left: 70px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.social-section ul {
    margin: 0px;
    padding: 0px;
    text-align: right;
    list-style: none;
    display: flex;
    justify-content: end;
    padding-right: 50px;
}

.social-section ul li {
    margin: 0px 15px;
}

.social-section ul li a {
    color: white;
    transition: 0.3s ease;
}

.social-section ul li a:hover {
    color: #0468BF;
}

.social-section ul li a i {
    font-size: 30px;
}

.home-hero .slick-dots li button:before {
    display: none;
}

.home-hero .slick-dots li {
    width: auto;
}

.home-hero .slick-dots li button {
    width: 53px;
    height: 4px;
    background-color: #DDDDDD;
    border: 1px solid #DDDDDD;
    transition: 0.3s ease;
}

.home-hero .slick-dots li button:hover,
.home-hero .slick-dots li.slick-active button {
    background-color: #808080;
    border: 1px solid #707070;
}

.columns.hero-content-columns {
    position: relative;
    z-index: 6;
    align-items: center;
}

.home-hero h2 {
    font-weight: 400;
    font-size: 7rem;
    margin-top: 9px;
    line-height: 1.1;
}

.home-hero h1 {
    margin-top: 0px;
    font-size: 3.4rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.home-hero p {
    font-size: 2rem;
    color: white;
}

.home-hero h2,
.home-hero h1,
.home-hero strong {
    color: white;
}

.buttons-for-slider {
    padding-left: 50px;
}

.buttons-for-slider button {
    border: none;
    color: white;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    background: none;
    transition: 0.3s ease;
}

.buttons-for-slider button:hover {
    color: #808080;
}

.slider-arrow-container {
    position: absolute;
    left: 0px;
    bottom: 58px;
    width: 100%;
    z-index: 5;
}

.container-additional {
    position: relative;
}

.container-additional:before {
    content: '';
    background-color: white;
    top: -20px;
    width: calc(100% - 40px);
    height: 1px;
    display: block;
    position: absolute;
}

.box-arrow {
    width: 50%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: white;
    font-size: 40px;
    margin-top: 15px;
}

.box-arrow a {
    color: white;
    display: block;
    background-color: #808080;
    transition: 0.3s ease;
    padding: 5px 0;
}

.box-arrow a:hover {
    background-color: white;
    color: #808080;
}

.box-arrow a i {
    transition: 0.3s ease;
    position: relative;
    left: 0px;
}

.box-arrow a:hover i {
    left: 5px;
}


/* ESTIMATE SECTION */

.request-estimate {
    margin: 70px 0px;
}

.request-estimate .estimate-box {
    display: flex;
    flex-wrap: wrap;
}

.request-estimate .estimate-box .left {
    width: 60%;
    background-color: #000000;
    color: white;
    padding: 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.request-estimate .estimate-box .left:before,
.request-estimate .estimate-box .right:before {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid white;
    content: '';
    display: block;
    position: absolute;
    left: -7px;
    top: -26px;
    transform: rotate( -135deg);
}

.request-estimate .estimate-box .right:before {
    left: initial;
    top: initial;
    bottom: -26px;
    right: -7px;
    transform: rotate( 45deg);
    z-index: 3;
}

.request-estimate .estimate-box .left h3{
    color: #fff;
    font-size: 2.8rem;
}

.request-estimate .estimate-box .left p {
    /* font-size: 5rem; */
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.request-estimate .estimate-box .left p strong {
    font-weight: 400;
}

.request-estimate .estimate-box .right {
    width: 40%;
    height: inherit;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-estimate .estimate-box .right .image-box {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100%);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.button,
.frm_button_submit.frm_final_submit.button {
    background-color: #808080;
    color: white;
    padding: 20px 30px;
    font-size: 1.5rem;
    transition: 0.3s ease;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.frm_button_submit.frm_final_submit.button {
    background-color: #808080 !important;
    color: white !important;
    padding: 20px 30px !important;
    font-size: 1.5rem !important;
    transition: 0.3s ease !important;
    font-weight: 500 !important;
    font-family: 'Montserrat', sans-serif !important;
    border: none !important;
}

.button:hover,
.frm_button_submit.frm_final_submit.button:hover {
    background-color: white;
    color: #808080;
}

.button.white {
   color:white;
    border:2px solid white;
}
.button.white:hover{
    background-color:white;
    color: #808080;
}

.frm_button_submit.frm_final_submit.button:hover {
    background-color: #000000 !important;
    color: white !important;
}

.request-estimate .button {
    position: relative;
    z-index: 3;
    background-color: #fff;
    color: #000;
    transition: ease-in .3s;
}

.request-estimate .button:hover{
    background-color: #000;
    color: #fff;
}

.button i {
    transform: rotate(90deg);
    display: inline-block;
    margin-left: 15px;
}

.mgt-50 {
    margin-top: 50px;
}

.about-section .image-box {
    position: relative;
    z-index: 1;
}


/* TESTIMONIALS */

.testimonial-inner-box {
    background-color: #000000;
    color: white;
    padding: 8% 10%;
    margin-top: -80px;
}

.testimonial-inner-box h3 {
    color: white;
    margin-bottom: 30px;
    margin-top: 0px;
}

.testimonial-main-box {
    position: relative;
    padding-left: 195px;
}

.testimonial-main-box strong.icon-quote {
    color: #808080;
    font-size: 335px;
    height: 167px;
    display: block;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 300px;
    font-weight: 800;
    width: 161px;
    position: absolute;
    left: 0px;
}

.testimonial-main-box p {
    font-size: 1.5rem;
}

.testimonial-main-box button {
    border: none;
    color: white;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    background: none;
    transition: 0.3s ease;
    margin-right: 25px;
}

.testimonial-main-box button:hover {
    color: #808080;
}

.mgb-50 {
    margin-bottom: 50px;
}

.testimonial-inner-box {
    position: relative;
}

.testimonial-inner-box:before {
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid white;
    content: '';
    display: block;
    position: absolute;
    left: initial;
    top: initial;
    bottom: -41px;
    right: -11px;
    transform: rotate( 45deg);
    z-index: 3;
}


/* SERVICES */


/* .services-section .container {
    overflow: hidden;
} */

.services-list {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-top: 70px;
}

.services-list a {
    display: block;
}

.services-list .image-box {
    position: relative;
    filter: grayscale(100%);
    transition: 0.3s ease;
    bottom: 0px;
    box-shadow: 0px 3px 6px #00000029;
}

.services-list .image-box img {
    max-width: 130%;
    width: 130%;
}


/* .services-list li:last-child .image-box img {
    width: 100%;
    max-width: 100%;
} */

.services-list .image-box h3 {
    position: absolute;
    left: 50px;
    top: 20px;
    color: #151515;
}

.services-list .image-box h3:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -15px;
    background-color: #808080;
    width: 100px;
    height: 5px;
}

.services-list .image-box:hover {
    filter: grayscale(0%);
    bottom: 50px;
}

.services-section h2 {
    text-transform: uppercase;
    color: black;
    font-size: 6rem;
}

.mgb-150 {
    margin-bottom: 150px;
}

/* SINGLE SERVICE */
.single-services .header-hero,
.page-id-608 .header-hero{
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15% 30px;
}

.single-services .header-hero:before,
.page-id-608 .header-hero:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    background: rgba(0,0,0,0.39);
}

.single-services .header-hero h1,
.page-id-608 .header-hero h1{
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 15px 30px;
}

.services-gallery.content-repeater .per-service-row .content{
    padding: 0 30px;
}

.services-gallery.content-repeater .per-service-row .wimg-col .content{
    background: #000000;
    color: #fff !important;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px;
}

.services-gallery.content-repeater .per-service-row .wimg-col .content a.button{
    border: 1px solid #fff;
}

.services-gallery.content-repeater .per-service-row .content p{
    font-size: 1.6rem;
}

.services-gallery.content-repeater .per-service-row:nth-child(even) .no-img-col .content{
    background: #e2e2e2;
    padding: 30px;
}

.single-services .additional-content{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 20%;
    position: relative;
}

.single-services .additional-content:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.single-services .additional-content .content{
    position: relative;
    text-align: center;
    color: #fff !important;
}

.single-services .dark-blue-section a.button{
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    transition: ease-in .3s;
}

.single-services .dark-blue-section a.button:hover{
    background-color: transparent;
    color: #fff;
}


/* COMMERCIAL */
.per-type{
    text-align: center;
}

.icon i{
    font-size: 5rem;
}

.per-type h3{
    font-size: 2rem;
    color: #000;
}

.blog-section .blog-list {
    padding-left: 0px;
    margin: 0px;
    list-style: none;
}

.blog-section .blog-list li.large-blog {
    position: relative;
}

/* HOME SERVICES */
.commercial-construction-wrapper .content{
    padding: 30px !important;
    background-color: #efefef;
    height: 100%;
    color: #000 !important;
}

.commercial-construction-wrapper .content h2{
    font-weight: 300;
    text-transform: uppercase;
}

/* .blog-section .blog-list li.large-blog .content-box {
    position: absolute;
    width: calc(50% - 25px);
    height: calc(100% - 50px);
    top: 25px;
    left: 25px;
    background-color: rgba(0, 0, 0, 0.31);
    padding: 5%;
} */

.blog-section .blog-list .image-box img {
    width: 100%;
}

.blog-section h3 {
    color: #121212;
    text-transform: uppercase;
}

.button.button-hover-border {
    border: 1px solid #808080;
}

.blog-section .content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
}

.blog-section .content-box .title h2 a {
    color: #000;
    font-weight: 200;
}

.align-right {
    text-align: right;
}

.large-blog .date {
    font-weight: 400;
    color: white;
}

.blog-section .large-blog h2 {
    color: white;
    font-weight: 400;
    margin-bottom: 40px;
}

.blog-section .large-blog h2 a {
    color: white;
    transition: 0.3s ease;
}

.blog-section .image-box {
    box-shadow: 0px 3px 6px #00000029;
}

.large-blog .image-box {
    margin-bottom: 0px;
}

.blog-section .image-box {
    margin-bottom: 20px;
}

.blog-section .date {
    font-weight: 400;
    color: #011C40;
}

.blog-section li h2 {
    color: #011C40;
    font-weight: 400;
    margin-bottom: 40px;
    font-size: 3rem;
}

.blog-section li h2 a {
    color: #011C40;
    transition: 0.3s ease;
}

.blog-section li h2 a:hover,
.large-blog h2 a:hover {
    color: #0468BF;
}

.blog-section .desktop-show {
    display: none;
}

.blog-section .mobile-show {
    display: block;
}


/* nav */

.nav {
    position: relative;
    z-index: 9999;
}

.nav ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.nav ul li {
    margin-left: 31px;
}

.front-header .nav ul li a,
.nav ul li.current_page_item a,
.page-template-template-town-city .header .nav ul li a,
.front-header .fa-solid.fa-lock:before{
    color: white;
}



.front-header .nav ul li a:hover,
.page-template-template-town-city .header .nav ul li a:hover {
    color: white;
}

.nav ul li a {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    font-size: 2rem;
    transition: 0.3s ease;
    padding: 10px 0px;
}

.nav ul li a:hover {
    color: #808080;
}

.nav ul li a:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 5px;
    opacity: 0;
    width: 100%;
    height: 5px;
    background-color: #808080;
    transition: 0.3s ease;
}

.nav ul li a:hover:before,
.nav ul li.current-menu-item a:before {
    opacity: 1;
    bottom: -3px;
}


/* .nav ul li a:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -5;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) skew(-89deg) scaleX(1.5);
    opacity: 0;
    background: #808080;
    transition: all 0.3s cubic-bezier(0.42, 0.08, 0, 1.8);
} */


/* .nav ul li a:hover:after,
.nav ul li.current-menu-item a:after {
    width: 140%;
    transform: translateX(-50%) skew(-20deg) scaleX(1);
    opacity: 1;
} */

.nav ul li.current-menu-item a {
    color: #808080;
}

/* SUB MENU */
.nav ul .sub-menu li a:hover:after,
.nav ul .sub-menu li a:after{ 
    display: none;
}

.nav ul li.menu-item-has-children{
    position: relative;
    perspective: 1000px;
    z-index: 100;
}

.nav ul li.menu-item-has-children:hover .sub-menu li{
    display: block;
  }
  
  .nav ul .sub-menu{
      padding: 0;
      position: absolute;
      top: 34px;
      left: -40px;
      width: 200px;
      perspective: 1000px;
      z-index: -1;
      background-color: #fff;
      border-top: 5px solid #808080;
      -webkit-box-shadow: 0px 4px 8px -1px rgba(0,0,0,0.3);
      box-shadow: 0px 4px 8px -1px rgba(0,0,0,0.3);
  }
  
  .nav ul .sub-menu li{
    display: none;
    opacity: 0;
    margin: 0 !important;
  }
  
  .nav ul li.menu-item-has-children:hover .sub-menu{
    display: block;
  }
  
  .nav ul .sub-menu{
    display: none;
  }
  
  .nav ul .sub-menu li{
    display: block;
    opacity: 1;
  }

  .nav ul .sub-menu li a{
    color: #000;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    transition: ease-in .3s;
  }

  .nav ul .sub-menu li a:hover{
    color: #fff;
    background: #000;
  }

  .nav ul .sub-menu li a:before{
    display: none;
  }
  
  .nav ul li.menu-item-has-children:hover .sub-menu{
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
  }
  
  /* Menu Animation */
  @-moz-keyframes growDown {
      0% {
        transform: scaleY(0);
      }
      80% {
        transform: scaleY(1.1);
      }
      100% {
        transform: scaleY(1);
      }
  }
  @-webkit-keyframes growDown {
      0% {
        transform: scaleY(0);
      }
      80% {
        transform: scaleY(1.1);
      }
      100% {
        transform: scaleY(1);
      }
  }
  @-o-keyframes growDown {
      0% {
        transform: scaleY(0);
      }
      80% {
        transform: scaleY(1.1);
      }
      100% {
        transform: scaleY(1);
      }
  }
  @keyframes growDown {
      0% {
        transform: scaleY(0);
      }
      80% {
        transform: scaleY(1.1);
      }
      100% {
        transform: scaleY(1);
      }
  }

.copyright {
    text-align: center;
    font-weight: 400;
}

.copyright a {
    color: #011C40;
    text-decoration: underline;
}

.copyright a:hover {
    text-decoration: none;
}

.content-box h1 {
    font-size: 2.5rem;
    color: #808080;
    text-transform: uppercase;
}


/* sidebar */

.sidebar {}


/* footer */

.footer {
    background: #EAEAEA;
    padding: 20px;
    margin-top: -140px;
    padding-top: 140px;
}

.footer .nav ul .sub-menu{
    display: none !important;
}

.pagination {
    font-size: 1.6rem;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.request-estimate.footer-one .estimate-box .right:before {
    border-left: 40px solid #EAEAEA;
}

.follow-us {
    text-align: center;
}

.follow-us h4 {
    font-size: 4rem;
    margin-bottom: 10px;
    margin-top: 0px;
}

.follow-us ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0px;
}

.follow-us ul li {
    margin: 0px 25px;
}

.follow-us ul li a {
    color: #011C40;
    font-size: 38px;
    transition: 0.3s ease;
}

.follow-us ul li a:hover {
    color: #808080;
}

.bottom-nav {
    border-top: 1px solid #011C40;
    border-bottom: 1px solid #011C40;
    padding: 25px 0px;
}

.bottom-nav .is-4-desktop {
    text-align: center;
}

footer .nav ul li a {
    color: #011C40;
}

.sbi_follow_btn {
    display: none !important;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* LANDING PAGE */
.page-template-template-landing-page .header {
    position: relative;
}

.page-template-template-landing-page .footer {
    margin-top: 0;
    padding-top: 50px;
}

.page-template-template-landing-page h1 {
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

.page-template-template-landing-page h5 {
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
}

.page-template-template-landing-page .hero-slider {
    padding: 0 0 50px;
    margin-bottom: 0;
}

.page-template-template-landing-page .hero-slider .slick-prev {
    left: 0;
}

.page-template-template-landing-page .hero-slider .slick-next {
    left: 50px;
    right: auto;
}

.page-template-template-landing-page .hero-slider .slick-prev,
.page-template-template-landing-page .hero-slider .slick-next {
    top: auto;
    bottom: 0;
    width: auto;
    height: auto;
}

.page-template-template-landing-page .hero-slider .slick-prev:before {
    color: #000;
    content: 'Prev';
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.page-template-template-landing-page .hero-slider .slick-next:before {
    color: #000;
    content: 'Next';
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.page-template-template-landing-page .content-wrapper h2 {
    font-size: 45px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
    margin: 20px 0;
}

.page-template-template-landing-page .content-wrapper h3 {
    color: #000;
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
}

.page-template-template-landing-page .content-wrapper p {
    color: #000;
}

.page-template-template-landing-page .content-wrapper .content {
    padding-left: 0;
}

.free-quote .with_frm_style input[type=text], 
.free-quote .with_frm_style input[type=email], 
.free-quote .with_frm_style input[type=number], 
.free-quote .with_frm_style input[type=tel], 
.free-quote .with_frm_style select, 
.free-quote .with_frm_style .frm-card-element.StripeElement, 
.free-quote .with_frm_style textarea {
    border: 1px solid #d4d4d4 !important;
    padding: 10px 15px !important;
    box-shadow: none !important;
    background-color: #f6f6f6;
}

.free-quote .frm_style_formidable-style.with_frm_style .form-field {
    margin-bottom: 15px !important
}

.free-quote .frm_style_formidable-style.with_frm_style .frm_submit button {
    border: 2px solid #000;
    background-color: rgba(0,0,0,0);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: ease-in .3s;
    border-radius: 0;
}

.free-quote .frm_style_formidable-style.with_frm_style .frm_submit button:hover {
    background-color: rgba(0,0,0,1);
    color: #fff;
    border-color: #000;
}

.page-template-template-landing-page .testimonials-section {
    background-color: #F9F9F9;
}

.page-template-template-landing-page .testimonial-inner-box:before {
    border-color: #F9F9F9;
}

.page-template-template-landing-page .testimonial-inner-box {
    margin-top: 0;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/


/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
    width: 100%;
    height: 100%;
    min-height: 550px;
    max-height: 600px;
    border: #ccc solid 1px;
    margin: 20px 0;
}


/* Fixes potential theme css conflict. */

.acf-map img {
    max-width: inherit !important;
}

.content-box {
    padding-top: 250px;
}

.content-box h2 {
    font-weight: 100;
    font-size: 2.8rem;
    margin: 1rem 0;
}

.content-box .dark-blue-section h2{
    color: #fff;
}

.front-header {}

ul.three-image-list {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

ul.three-image-list li {
    width: 33.333333%;
    position: relative;
    overflow: hidden;
}

ul.three-image-list li:nth-child(2):after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(img/triangle.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

ul.three-image-list li i {
    position: absolute;
    font-size: 30px;
    color: white;
    left: 0px;
    bottom: 0px;
    display: none;
}

.about-content-box {
    background-color: #000000;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 10%;
}

.about-content-box h3 {
    margin-top: 0px;
    color: white;
}

.content-box .image-box img {
    width: 100%;
}

.spec-words {
    font-size: 5.5rem;
    color: white;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
}

.spec-words span {
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.spec-words-inner {
    -webkit-text-fill-color: #000000;
    -webkit-text-stroke-color: #808080;
    -webkit-text-stroke-width: 1.00px;
    font-size: 8rem;
    position: absolute;
    left: 0px;
    top: -20px;
    z-index: 1;
}

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

.faq-section h3 {
    color: #121212;
    text-transform: uppercase;
}

.faq-section p b {
    color: #808080;
    font-weight: 400;
}

.mgb-10 {
    margin-bottom: 10px;
}


/* SERVICES */

.dark-blue-section {
    background-color: #000000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 10%;
    position: relative;
}

.dark-blue-section:before {
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid white;
    content: '';
    display: block;
    position: absolute;
    left: initial;
    top: initial;
    bottom: -41px;
    right: -11px;
    transform: rotate( 45deg);
    z-index: 3;
}

.image-box.right-services {
    position: relative;
}

.image-box.right-services:before {
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid white;
    content: '';
    display: block;
    position: absolute;
    left: -9px;
    bottom: -42px;
    transform: rotate( -225deg);
}

.dark-blue-section p,
.dark-blue-section h1 {
    color: white;
}

.dark-blue-section h1 {
    margin-top: 0px;
}

.dark-blue-section .button-box {
    margin-top: 35px;
}

.services-gallery .is-5-desktop img,
.services-gallery .is-5-desktop .image-box {
    height: 100%;
}


/* BLOG */

.blog-page .image-box {
    box-shadow: 0px 3px 6px #00000029;
    position: relative;
}

.large-blog .image-box .content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-page .date {
    font-size: 2rem;
    font-weight: 400;
}

.blog-page h2 a {
    transition: 0.3s ease;
}

.content-box .blog-page h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 10px;
}

.content-box .large-blog p {
    color: white;
    margin-top: 10px;
}

.content-box .large-blog .button-box {
    margin-top: 35px;
}

.content-box .content-box {
    padding-top: 0px;
}

.content-box .blog-page .column.is-4-desktop {
    margin-bottom: 20px;
}

.content-box .blog-page .large-blog .image-box {
    margin-bottom: 0px;
}

.content-box .blog-page .image-box {
    margin-bottom: 25px;
}

.content-box .blog-page .large-blog h2 a {
    color: white;
}

.content-box .blog-page h2 a {
    color: #011C40;
    transition: 0.3s ease;
}

.content-box .blog-page h2 a:hover {
    color: #808080;
}

.content-box .blog-page .button-box {
    margin-top: 50px;
}

.pagination {
    text-align: center;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    font-size: 2rem;
    transition: 0.3s ease;
    color: #011C40;
    margin: 0px 4px;
}

.pagination a:hover,
.pagination span:hover,
.pagination .current {
    color: #808080;
}

.spec-container {
    max-width: 85%;
    margin: 0px auto;
}


/* BLOG INNER */

.blog-inner-page .date {
    font-size: 2.5rem;
    color: #808080;
    text-transform: uppercase;
    font-weight: 400;
}

.blog-inner-page h1 {
    color: #707070;
    font-weight: 300;
    font-size: 5rem;
}

.next-post-box .next-link {
    color: #121212;
    font-weight: 400;
    font-size: 2rem;
    transition: 0.3s ease;
}

.next-post-box .next-link:hover,
.next-post-box .title h2 a:hover {
    color: #808080;
}

.next-post-box .title,
.next-post-box .title h2,
.next-post-box .title h2 a {
    font-weight: 400;
    color: #8B8B8B;
    font-size: 2.5rem;
    transition: 0.3s ease;
}

.next-post-box .excerpt {
    font-weight: 400;
    color: #000000;
    font-size: 2.2rem;
}

.hr-padding {
    margin: 50px 0px 50px 0px;
}

.blog-inner-page h3 {
    color: #000000;
}

.blog-inner-page a {
    color: #0468BF;
}

/* PROVACY POLICY */
.privacy-policy p,
.privacy-policy li{
    font-size: 1.6rem;
}

.privacy-policy .content-box li{
    margin-bottom: 10px;
}

.privacy-policy .content-box a{
    color: #000;
}

.privacy-policy .content-box a:hover{
    text-decoration: underline;
}

.privacy-policy .content-box h2{
    font-size: 3.5rem;
}

.content-box .per-pp-section h2{
    font-size: 3rem;
}

/* CONTACT */



.google-map-box {
    box-shadow: 0px 3px 6px #00000029;
}

.acf-map {
    border: none;
}

ul.contact-info-list {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    background-color: #FAFAFA;
    justify-content: space-around;
    padding-left: 100px;
    align-items: center;
    margin-bottom: 80px;
}

ul.contact-info-list li {
    list-style: none;
    width: 33.333333%;
}

ul.contact-info-list li p {
    display: flex;
    align-items: center;
}

ul.contact-info-list li i {
    color: #808080;
    font-size: 40px;
    margin-right: 10px;
}

ul.contact-info-list li a {
    color: #000000;
    transition: 0.3s ease;
}

ul.contact-info-list li a:hover {
    color: #0468BF;
}

ul.contact-info-list li:first-child p {
    max-width: 325px;
}

#frm_form_1_container .frm_primary_label {
    font-weight: 400;
    color: #121212;
    font-size: 2rem;
    visibility: visible !important;
    margin-bottom: 15px;
}

.with_frm_style input[type=text],
.with_frm_style input[type=password],
.with_frm_style input[type=email],
.with_frm_style input[type=number],
.with_frm_style input[type=url],
.with_frm_style input[type=tel],
.with_frm_style input[type=file],
.with_frm_style input[type=search],
.with_frm_style select,
.with_frm_style .frm-card-element.StripeElement,
textarea {
    box-shadow: 0px 3px 6px #2E67B926 !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 30px 15px !important;
    transition: 0.3s ease;
}

.with_frm_style input[type=text]:focus,
.with_frm_style input[type=password]:focus,
.with_frm_style input[type=email]:focus,
.with_frm_style input[type=number]:focus,
.with_frm_style input[type=url]:focus,
.with_frm_style input[type=tel]:focus,
.with_frm_style input[type=file]:focus,
.with_frm_style input[type=search]:focus,
.with_frm_style select:focus,
.with_frm_style .frm-card-element.StripeElement:focus,
textarea:focus {
    box-shadow: 0px 3px 6px #00000029 !important;
}

.frm_style_formidable-style.with_frm_style .form-field {
    margin-bottom: 35px !important;
}

.header.front-header .container {
    width: calc(100% - 40px);
    max-width: 1480px;
}


/*------------------------------------*\
    City & Town Template
\*------------------------------------*/
.page-template-template-town-city p,
.page-template-template-town-city ul,
.page-template-template-town-city ol{
  font-weight: 300;
  font-size: 1.8rem;
}

.page-template-template-town-city a{
  color: #0468BF;
}


.page-template-template-town-city .contact-wrapper a{
    color: #000;
}


.img-wrapper{
  text-align: center;
}

.img-bg{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 550px;
  height: 100%;
}

.page-template-template-town-city .header{
  /* position: relative; */
}

.page-template-template-town-city .footer{
  margin-top: 0;
}

.template-hero{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 400px;
  max-height: 800px;
  height: 70vh;
}

.template-hero .header-title{
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-hero .header-title h1{
  background-color: rgba(0,0,0,0.76);
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 50px 0 0;
  padding: 60px 75px;
  color: #fff;
}

.template-hero .header-title h1:after{
  content: '';
  position: absolute;
  width: 80%;
  height: 12px;
  background: #fff;
  bottom: -6px;
  left: 10%;
}

.template-hero .header-title h1 span{
  font-style: italic;
  font-weight: 300;
}

.page-template-template-town-city .per-section{
  margin: 50px 0;
}

.page-template-template-town-city .per-section.about-town-wrapper{
  margin-bottom: 0;
}

.page-template-template-town-city .per-section .content h2{
  margin-bottom: 0;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
}

.page-template-template-town-city .per-section .content h3{
  color: #000;
  margin-top: 0;
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
}

.per-remodel-content{
  margin: 20px 0;
}

.per-remodel-content h3{
  color: #000;
  margin-top: 15px;
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
}

.page-template-template-town-city .per-section .multi-images .column:nth-child(even) img{
  margin-top: 50px;
}

.page-template-template-town-city .per-section .with-bg{
  height: 100%;
  padding: 50px 15%;
  display: flex;
  align-items: center;
}

.black-bg{
  background: #000;
  color: #fff !important;
}

.page-template-template-town-city .per-section .with-bg.black-bg h2,
.page-template-template-town-city .per-section .with-bg.black-bg h3{
  color: #fff;
}

a.button{
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  text-transform: uppercase;
  transition: ease-in .3s;
}

a.button:hover{
  background: #fff;
  color: #000;
}

.page-template-template-town-city .why-choose-wrapper{
  background: rgba(0,0,0,0.07);
  padding: 50px 0;
}


.client-login h1 {
text-align:center;
}

.fa-solid.fa-lock:before{
    margin-right: 10px;
    position: relative;
    top: 1px
} 


.spec-badge {
    text-align:center;
   
}

.spec-badge a {
    color: #011C40;
    margin-top: 5px;
    display:block
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {
    .home-hero h2 {
        font-size: 2.5rem;
        /* margin-bottom: 10px; */
    }
    .home-hero h1 {
        font-size: 2.5rem;
    }
    .box-arrow {
        width: 50%;
        height: 30px;
        line-height: 30px;
        font-size: 22px;
    }
    .logo-img {
        height: 65px;
    }
    .logo,
    .home-hero .slick-dots,
    .buttons-for-slider {
        text-align: center;
        padding-left: 0px;
    }
    .social-section ul {
        justify-content: center;
        padding-right: 0px;
        margin-top: 12px;
    }
    .home-hero .slick-dots {
        margin-top: -215px;
    }
    .request-estimate .estimate-box .left {
        width: 100%;
    }
    .request-estimate .estimate-box .right {
        width: 100%;
        min-height: 200px;
    }
    /* .request-estimate .estimate-box .left p {
        font-size: 3rem;
    } */
    .request-estimate {
        margin: 70px 0px 25px 0px;
    }
    .testimonial-main-box strong.icon-quote {
        font-size: 50px;
        height: 50px;
        width: 50px;
        top: 11px;
    }
    .testimonial-main-box {
        padding-left: 0px;
        padding-top: 30px;
    }
    .services-section h2 {
        margin: 0px;
    }
    .services-list {
        flex-wrap: wrap;
    }
    .services-list .image-box img {
        max-width: 100%;
        width: 100%;
    }
    .services-list li {
        margin-bottom: 15px;
    }
    .large-blog .content-box {
        position: static;
        width: 100%;
        background: none;
        padding: 0px;
    }
    .large-blog h2,
    .large-blog h2 a,
    .large-blog .date {
        color: black;
    }
    .blog-section .blog-list li .image-box {
        box-shadow: none;
    }
    .blog-section .blog-list li {
        margin-bottom: 20px;
    }
    .large-blog .content-box {
        position: static;
        width: 100%;
        height: auto;
    }
    .blog-section .large-blog .image-box img {
        margin-bottom: 20px;
    }
    .blog-section .large-blog .content-box h2 a {
        color: #011C40;
        transition: 0.3s ease;
    }
    .content-box {
        padding-top: 175px;
    }
    .content-box h2 {
        font-size: 3rem;
    }
    .spec-words {
        font-size: 3.5rem;
    }
    .spec-words-inner {
        font-size: 4.4rem;
        top: -6px;
    }
    ul.three-image-list li {
        width: 100%;
    }
    ul.three-image-list li img {
        width: 100%;
    }
    .padding-back-mobile-right {
        padding-right: 0.75rem !important;
    }
    .padding-back-mobile-left {
        padding-left: 0.75rem !important;
    }
    .image-large-box img {
        width: 100%;
    }
    .dark-blue-section {
        padding: 50px 10% 75px 10%;
    }
    .hidden-from-tablet {
        display: block;
    }
    .blog-page .first-post.large-blog .image-box .content-box {
        width: 100%;
        background: none;
        padding: 0%;
    }
    .content-box .blog-page .large-blog h2 a,
    .content-box .large-blog p {
        color: black;
    }
    .content-box .blog-page .large-blog h2 a:hover {
        color: #0468BF;
    }
    .content-box .blog-page .large-blog .image-box {
        box-shadow: none;
        margin-bottom: 20px;
    }
    .content-box .blog-page .large-blog .image-box img {
        margin-bottom: 25px;
    }
    .content-box .blog-page h2 {
        font-size: 3rem;
    }
    .blog-inner-page h1 {
        font-size: 3rem;
    }
    .services-section h2 {
        font-size: 2.5rem;
    }
    .mgb-150 {
        margin-bottom: 50px;
    }
    .blog-section li h2 {
        font-size: 2.3rem;
    }
    .blog-section .date,
    .blog-page .date {
        font-size: 1.5rem;
    }
    .content-box .blog-page h2 {
        font-size: 2.3rem;
        font-weight: 400;
    }
    .content-box .large-blog p {
        font-size: 1.5rem;
    }
    .contact-info-list li p {
        font-size: 1.5rem;
    }
    .blog-inner-page .date {
        font-size: 1.5rem;
    }
    /* .home-hero .box-arrow {
        display: none;
    } */
    .content-box.contact-page {
        margin-bottom: 200px;
            }
}

@media only screen and (max-width:480px) {
	.page-id-608 .header-hero h1 {
    top: 10%;
   
}
}

@media only screen and (min-width:769px) {

    .single-services .header-hero h1,
    .page-id-608 .header-hero h1{
        font-size: 4rem;
    }

    .page-template-template-landing-page .content-wrapper h3 {
        line-height: 1.4;
    }

    .page-template-template-landing-page h5 {
        margin: 20px 0;
    }

    .home-hero h2{
        font-size: 3.4rem;
    } 

    .home-hero .left-hero h2 {
        font-size: 6rem;
    }
    .home-hero h1 {
        font-size: 3.4rem;
    }
    .logo-img {
        height: 80px;
    }
    .logo {
        text-align: left;
    }
    .home-hero .slick-dots {
        padding-left: 70px;
        text-align: left;
    }
    .buttons-for-slider {
        padding-left: 50px;
        text-align: left;
    }
    .social-section ul {
        justify-content: end;
        padding-right: 50px;
        margin-top: 0px;
    }
    .home-hero .slick-dots {
        margin-top: -200px;
    }
    .request-estimate .estimate-box .left {
        width: 60%;
    }
    .request-estimate .estimate-box .right {
        width: 40%;
        min-height: initial;
    }
    /* .request-estimate .estimate-box .left p {
        font-size: 5rem;
    } */
    .request-estimate {
        margin: 70px 0px;
    }
    .testimonial-main-box strong.icon-quote {
        font-size: 335px;
        height: 167px;
        width: 161px;
        top: 0px;
    }
    .testimonial-main-box {
        padding-left: 195px;
        padding-top: 0px;
    }
    .services-list {
        flex-wrap: nowrap;
    }
    .large-blog .content-box {
        position: absolute;
        width: calc(50% - 50px);
        height: calc(100% - 50px);
        top: 25px;
        left: 25px;
        padding: 5%;
    }
    .large-blog h2,
    .large-blog h2 a,
    .large-blog .date {
        color: white;
    }
    .blog-section .blog-list li .image-box {
        box-shadow: 0px 3px 6px #00000029;
    }
    .box-arrow {
        width: 50%;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: white;
        font-size: 22px;
        margin-top: 15px;
    }
    .content-box {
        padding-top: 250px;
    }
    .content-box h2 {
        font-size: 4.5rem;
    }

    .services-gallery.content-repeater .per-service-row .content h2{
        font-size: 3.4rem;
    }

    .spec-words {
        font-size: 5.5rem;
    }
    .spec-words-inner {
        font-size: 7.1rem;
        top: -20px;
    }
    ul.three-image-list li {
        width: 33.333333%;
    }
    .hidden-from-tablet {
        display: none;
    }
    .content-box .blog-page .large-blog h2 a,
    .content-box .large-blog p {
        color: white;
    }
    .blog-page .first-post.large-blog .image-box .content-box {
        width: calc(100% - 50px);
        height: calc(100% - 50px);
        top: 25px;
        left: 25px;
        background-color: rgba(0, 0, 0, 0.31);
        padding: 5%;
    }
    .content-box .blog-page .large-blog .image-box {
        box-shadow: 0px 3px 6px #00000029;
        margin-bottom: 0px;
    }
    .content-box .blog-page .large-blog .image-box img {
        margin-bottom: 0px;
    }
    .content-box .blog-page h2 {
        font-size: 4rem;
    }
    .blog-inner-page h1 {
        font-size: 5rem;
    }
    .large-blog .content-box {
        background-color: rgba(0, 0, 0, 0.31);
    }
    .large-blog .content-box {
        position: absolute;
        width: calc(100% - 50px);
        /* height: calc(100% - 50px); */
        height: calc(100% - 250px);
        /* top: 25px; */
        top: 250px;
        left: 25px;
        padding: 5%;
    }
    .blog-section .large-blog .image-box img {
        margin-bottom: 0px;
    }
    .blog-section .large-blog .content-box h2 a {
        color: #ffffff;
        transition: 0.3s ease;
    }
    .content-box .blog-page h2 {
        font-size: 3rem;
    }
    .content-box .blog-page .button-box {
        margin-top: 30px;
    }
    .services-section h2 {
        font-size: 6rem;
    }
    .mgb-150 {
        margin-bottom: 150px;
    }
    .blog-section li h2 {
        font-size: 3rem;
    }
    .blog-section .date {
        font-size: 2rem;
    }
    .content-box .blog-page h2 {
        font-size: 4rem;
    }
    .content-box .large-blog p,
    .blog-page .date {
        font-size: 2rem;
    }
    .contact-info-list li p {
        font-size: 2rem;
    }
    .blog-inner-page .date {
        font-size: 2.5rem;
    }
    .home-hero h2 {
        margin-bottom: 20px;
    }
    .home-hero .box-arrow {
        display: block;
    }
}

@media only screen and (min-width:1024px) {
    .page-template-template-landing-page h1 {
        text-align: right;
    }

    .page-template-template-landing-page .content-wrapper .content {
        padding-right: 10%;
    }

    .page-template-template-landing-page .content-wrapper .free-quote {
        padding-left: 10%;
        border-left: 1px solid #d4d4d4;
        padding-top: 15px;
    }

    .services-gallery.content-repeater .columns.per-service-row:nth-child(even){
        flex-flow: row-reverse;
    }

    .padding-back-mobile-right {
        padding-right: 0rem !important;
    }
    .padding-back-mobile-left {
        padding-left: 0rem !important;
    }
    .dark-blue-section {
        padding: 60px 10%;
    }
    .hidden-from-tablet {
        display: block;
    }
    .content-box .blog-page .button-box {
        margin-top: 50px;
    }

    .template-hero{
      height: 80vh;
    }

    .columns.reversed{
      flex-flow: row-reverse;
    }

    .columns .content{
      padding-left: 30px;
      padding-right: 0;
    }

    .columns.reversed .content{
      padding-right: 30px;
      padding-left: 0;
    }

    .per-remodel{
      padding: 0 10px;
    }

    .blog-section .desktop-show {
        display: block;
    }

    .blog-section .mobile-show {
        display: none;
    }

    .nav ul li {
        margin-left: 20px;
    }

    .nav ul li a {
        font-size: 1.6rem;
    }

}

@media only screen and (min-width:1140px) {
    .home-hero h1{
        font-size: 3.4rem;
    }

    .columns.hero-content-columns {
        align-items: flex-start;
    }
}

@media only screen and (min-width:1280px) {
    .services-list .image-box img {
        max-width: 130%;
        width: 130%;
    }
    .blog-page .first-post.large-blog .image-box .content-box {
        width: calc(50% - 50px);
        /* height: calc(100% - 50px); */
        height: calc(100% - 250px);
        /* top: 25px; */
        top: 250px;
        left: 25px;
        background-color: rgba(0, 0, 0, 0.31);
        padding: 5%;
    }
    .spec-words-inner {
        font-size: 8rem;
        top: -20px;
    }
}

@media only screen and (min-width:1340px) {
    .nav ul li {
        margin-left: 25px;
    }

    .nav ul li a {
        font-size: 1.8rem;
    }
}

@media only screen and (min-width:1480px) {}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}


/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}


/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " ("attr(href) ")";
    }
    abbr[title]:after {
        content: " ("attr(title) ")";
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }
    pre,
    blockquote {
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .nav,
    .sidebar,
    .home-slider,
    #respond {
        display: none;
    }
    @page {
        margin: 2cm;
    }
}

@media only screen and (max-width:1500px) {
    ul.contact-info-list {
        padding-left: 0px;
    }
    ul.contact-info-list li {
        padding: 0px 25px;
        width: initial;
    }
    ul.contact-info-list li i {
        margin-right: 15px;
    }
}



@media only screen and (max-width:1500px) {
    /* .fa-solid.fa-lock {
        position:relative;
    }
    .fa-solid.fa-lock:before{
        position: absolute;
        left: 4px;
        top: 8px;
        z-index: 2;
        color: white;
    } */
 }