@charset "UTF-8";
/*
Theme Name: Royal Paving
Author: 405mediagroup
Author URI: https://www.405mediagroup.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: royal-paving
Tags: 
*/
:root {
  --color-acc: #F8CF2C;
  --color-text: #000000;
  --color-gray: #929292;
  --font-acc: 'montserrat', sans-serif;
  --font-heading: 'montserrat', sans-serif;
  --font-body: 'montserrat', sans-serif;
}

::-moz-selection {
  background: var(--color-acc);
  color: #000;
}

::selection {
  background: var(--color-acc);
  color: #000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.text-text {
  color: var(--color-text);
}

.text-acc {
  color: var(--color-acc);
}

.text-gray {
  color: var(--color-gray);
}

.text-white {
  color: #fff;
}

.font-acc {
  font-family: var(--font-acc);
}

.font-text {
  font-family: var(--font-text);
}

.border-bottom {
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 50px;
}

.border-bottom:after {
  content: '';
  background-color: var(--color-acc);
  width: 236px;
  height: 7px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.border-bottom-dark:after {
  background-color: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 48px;
}

h2, .h2 {
  font-size: 36px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 22px;
  font-weight: 800;
}

h6, .h6 {
  font-size: 16px;
  letter-spacing: 0;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
  font-family: "Font Awesome 6 Free";
}

.letter-space {
  letter-spacing: 3px;
}

@media (max-width: 991px) {
  h1, .h1 {
    font-size: 36px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 24px;
  }
  .h4 {
    font-size: 20px;
  }
  .h5 {
    font-size: 18px;
  }
  .h6 {
    font-size: 16px;
  }
}

.container,
.container-lg {
  width: 100%;
  max-width: 1300px;
  padding-left: 64px;
  padding-right: 64px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}

.container-lg {
  max-width: 1500px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  grid-row-gap: 30px;
}

.flex-wrap {
  flex-flow: wrap;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding-left: 15px;
  padding-right: 15px;
}

.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666666%;
}

.col-12 {
  width: 100%;
}

.m-0 {
  margin: 0;
}

@media (max-width: 991px) {
  .container,
.container-lg {
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11 {
    width: 100%;
  }
  .reverse > :first-child {
    order: 2;
  }
  .reverse > :last-child {
    order: 1;
  }
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-1 {
  flex: 1;
}

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

.items-stretch {
  align-items: stretch;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

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

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

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

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

.align-baseline {
  vertical-align: baseline;
}

.align-middle {
  vertical-align: middle;
}

.align-text-top {
  vertical-align: text-top;
}

.align-bottom {
  vertical-align: bottom;
}

.font-black {
  font-weight: 900;
}

.font-extrabold {
  font-weight: 800;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

.font-extralight {
  font-weight: 200;
}

.font-thin {
  font-weight: 100;
}

.leading-1 {
  line-height: 1;
}

.leading-1\.2 {
  line-height: 1.2;
}

.leading-1\.5 {
  line-height: 1.5;
}

.leading-2 {
  line-height: 2;
}

.italic {
  font-style: italic;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.mt-auto {
  margin-top: auto;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

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

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.clear,
.clearfix {
  clear: both;
}

p {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}

p:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

a {
  color: var(--color-acc);
  text-decoration: none;
  transition: .2s;
}

a svg {
  transition: .2s;
}

input,
textarea,
select {
  font-family: var(--font-text);
  font-size: 16px;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
  transition: .2s;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img,
iframe {
  vertical-align: middle;
  max-width: 100%;

}

iframe, video {
  object-fit: cover;
}

.alignleft {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

.alignright {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .alignleft {
    float: none;
    margin-right: 0;
  }
  .alignright {
    float: none;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .desktop {
    display: none;
  }
}

@media (min-width: 1025px) {
  .mobile {
    display: none;
  }
}

@media (min-width: 1025px) {
  .columns-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .columns-3 {
    -moz-columns: 3;
         columns: 3;
  }
}

/* custom style */
.page-content:after {
  content: "";
  display: block;
  clear: both;
}

.mobile-overlay {
  content: "";
  position: fixed;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: .2s;
}

.mobile-overlay .close {
  position: absolute;
  top: 0;
  right: 10px;
  color: #fff;
  font-size: 48px;
}

.header-mobile {
  display: none;
  padding: 10px;
  background-color: #000;
}

.header-mobile .header-logo {
  padding: 0;
}

.header-mobile .header-logo img {
  max-width: 122px;
}

.header-mobile-content .mobile-show-menu ul {
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
}

.header-mobile-content .mobile-show-menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.header-mobile-content .mobile-show-menu ul li a {
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  padding: 20px 15px;
  font-family: var(--font-heading);
  max-width: 100px;
  line-height: 1.2;
  min-height: 82px;
  display: flex;
  align-items: center;
}

.header-mobile-content .mobile-show-menu ul li a:hover {
  background-color: var(--color-acc);
}

.mobile-phone {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  flex-flow: wrap;
}

.mobile-phone a {
  color: #000;
  font-family: var(--font-acc);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  border-radius: 20px;
  min-width: inherit;
  text-align: center;
  padding: 12px 25px;
}

.mobile-bars {
  transform: rotate(180deg);
  cursor: pointer;
}

.mobile-bars span {
  background-color: var(--color-acc);
  height: 3px;
  width: 30px;
  display: block;
  position: relative;
  margin-bottom: 4px;
  transition: margin .3s ease-in-out;
}

.mobile-bars:hover span {
  margin-bottom: 5px;
}

.mobile-open .mobile-bars {
  visibility: hidden;
}

@media (max-width: 1024px) {
  .mobile-open .mobile-overlay {
    visibility: visible;
    opacity: 1;
  }
  .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.header {
  position: relative;
  z-index: 3;
  background-color: #000;
  width: 100%;
  line-height: 1;
}

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

.header-logo {
  padding: 10px 25px;
  max-width: 300px;
}

.header-right {
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 0;
}

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

body:not(.home) .header-social svg g,
body.sticky .header-social svg g {
  fill: #fff;
}

body:not(.home) .header-inner,
body.sticky .header-inner {
  border-bottom: 6px solid var(--color-acc);
}

body.page-template-default .page-content {
  background-color: #000;
  color: #fff;
}

body.page-template-default .page-content h1, body.page-template-default .page-content h2, body.page-template-default .page-content h3, body.page-template-default .page-content h4, body.page-template-default .page-content h5, body.page-template-default .page-content h6 {
  color: var(--color-acc);
}

body.page-template-default .page-content:before {
  content: '';
  background-color: #000;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -999999;
}

body.page-id-8 .page-content,
body.page-id-35 .page-content {
  background-color: #fff;
  color: #000;
}

body.page-id-8 .page-content h1, body.page-id-8 .page-content h2, body.page-id-8 .page-content h3, body.page-id-8 .page-content h4, body.page-id-8 .page-content h5, body.page-id-8 .page-content h6,
body.page-id-35 .page-content h1,
body.page-id-35 .page-content h2,
body.page-id-35 .page-content h3,
body.page-id-35 .page-content h4,
body.page-id-35 .page-content h5,
body.page-id-35 .page-content h6 {
  color: #000;
}

body.page-id-8 .page-content:before,
body.page-id-35 .page-content:before {
  display: none;
}

.header-social {
  margin-right: 15px;
  font-size: 30px;
}

.header-social:hover svg g {
  fill: var(--color-acc) !important;
}

.header-phone {
  font-family: var(--font-text);
  font-size: 36px;
  font-weight: 700;
}

.header-info a {
  color: #fff;
  vertical-align: middle;
}

.header-info a:hover {
  color: var(--color-acc);
}

.header-info a svg {
  fill: #fff;
}

.header-info a:hover svg {
  fill: var(--color-acc);
}

.header-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-nav ul li {
  font-family: var(--font-body);
  text-transform: uppercase;
}

.header-nav ul li.current_page_item a {
  color: var(--color-acc) !important;
}

.header-nav ul.menu li.current_page_item ul li a {
	color: var(--color-text) !important;
}


.header-nav ul li:last-child.current_page_item a {
  background-color: #fff !important;
  border-color: var(--color-acc) !important;
}

body:not(.home) .header-info a,
body.sticky .header-info a {
  color: #fff;
}

body:not(.home) .header-info a:hover,
body.sticky .header-info a:hover {
  color: var(--color-acc);
}

body:not(.home) .header-nav ul.menu > li > a,
body.sticky .header-nav ul.menu > li > a {
  color: #fff;
}

body:not(.home) .header-nav ul.menu > li > a:hover,
body.sticky .header-nav ul.menu > li > a:hover {
  color: var(--color-acc);
}

body:not(.home) .header-nav ul.menu > li:last-child > a,
body.sticky .header-nav ul.menu > li:last-child > a {
  color: #fff;
}

body:not(.home) .header-nav ul.menu > li:last-child > a:hover,
body.sticky .header-nav ul.menu > li:last-child > a:hover {
  color: #fff;
}

@media (min-width: 1025px) {
  .sticky .header {
    position: fixed;
    top: 0;
  }
  .sticky:not(.home) {
    padding-top: 130px;
  }
  .header-nav ul.menu {
    margin-top: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header-nav ul.menu > li {
	  position: relative;
	  padding: 0 5px 10px;
  }
  .header-nav ul.menu > li > a {
    display: block;
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
  }
  .header-nav ul.menu > li.menu-item-has-children > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    vertical-align: middle;
  }
  .header-nav ul.menu > li > a:hover {
    color: var(--color-acc);
  }
  .header-nav ul.menu > li:last-child > a {
    background-color: var(--color-acc);
    border: 1px solid var(--color-acc);
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 900;
    padding: 10px;
    border-radius: 30px;
  }
  .header-nav ul.menu > li:last-child > a:hover {
    background-color: #fff;
    color: var(--color-acc);
    border-color: var(--color-acc);
  }
  .header-nav ul.menu > li:not(:first-child):not(:last-child) > a:before {
    content: "•";
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translate(0%, -50%);
  }
  .header-nav ul.menu > li ul {
    position: absolute;
    right: 0;
    background-color: #fff;
    border: 1px solid #aaa;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 240px;
    min-width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
  }
  .header-nav ul.menu > li:hover > ul {
    visibility: visible;
    opacity: 100;
  }
  .header-nav ul.menu > li ul li {
    position: relative;
  }
  .header-nav ul.menu > li ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 15px;
  }
  .header-nav ul.menu > li ul li a:hover {
    background-color: var(--color-acc);
    color: #000 !important;
  }
  .header-nav ul.menu > li > ul li.menu-item-has-children > a:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-nav ul.menu > li ul li ul {
    top: 0;
    right: 100%;
    min-width: unset;
  }
  .header-nav ul.menu > li ul li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  .home:not(.sticky) .header {
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .home:not(.sticky) .header-logo img {
    visibility: hidden;
  }
  .home:not(.sticky) .header-info a {
    color: #fff;
  }
  .home:not(.sticky) .header-info a:hover {
    color: var(--color-acc);
  }
  .home:not(.sticky) .header-nav ul.menu > li > a {
    color: #fff;
  }
  .home:not(.sticky) .header-nav ul.menu > li > a:hover {
    color: var(--color-acc);
  }
  .home:not(.sticky) .header-nav ul.menu > li:last-child > a:hover {
    background-color: #000;
    color: #fff !important;
  }
	
	
	/* Main Mega Menu Container (applies when submenu is shown) */
  .header-nav ul.menu > li.mega-menu-on {
    position: static;
  }
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu li.menu-item-has-children a:before {
    display: none !important;
  }
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu {
    display: none !important;
	  gap: 20px;
	  padding: 30px;
	  background: #fff;
	  border: 0;
	  min-width: 1200px;
	  max-width: 1200px;
	  width: 100vw;
	  grid-template-columns: repeat(5, 1fr);
	  box-sizing: border-box;
	  top: 100%;
	  margin-right: 50px;
	  border-top: 1px solid #d3d7da;
  }
  .header-nav ul.menu > li.mega-menu-on:hover > .mega-sub-menu {
    display: grid !important; /* or flex if you're using flex version */
  }
  /* Each Column (Parent LI inside mega-sub-menu) */
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu > li {
    display: block !important; /* Override theme default */
    position: static;
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    border: 0;
  }
  /* Category Title (Top Level Links in the Submenu) */
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu > li > a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    padding: 0 !important;
  }
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu .sub-menu li a:hover,
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu > li > a:hover {
    background-color: transparent;
    color: var(--color-acc) !important;
  }
  /* Submenu Links Under Each Column */
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu .sub-menu {
    display: block !important;
    padding: 0;
    margin: 0;
    position: relative;
    min-width: 100%;
    max-width: 100%;
    top: initial;
    right: initial;
    visibility: visible;
    opacity: 1;
    border: 0;
  }
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu .sub-menu li {
    list-style: none;
    border: 0;
  }
  .header-nav ul.menu li.mega-menu-on .mega-sub-menu .sub-menu li a {
    text-transform: none;
    padding: 5px 0;
  }
}

@media (max-width: 1366px) {
	.header-nav ul.menu li.mega-menu-on .mega-sub-menu {
		min-width: 1100px;
		max-width: 1100px;
		left: -50vw;
	}
}

@media (max-width: 1250px) {
	.header-nav ul.menu li.mega-menu-on .mega-sub-menu {
		min-width: 1000px;
		max-width: 1000px;
	}
}



@media (max-width: 1024px) {
  .header-inner {
    justify-content: center;
  }
  .header-right {
    padding-right: 0;
  }
  .header-info {
    display: none;
  }
  .header-nav {
    position: fixed;
    z-index: 3;
    top: 0;
    bottom: 0;
    right: 0;
    width: 75%;
    overflow-y: auto;
    background-color: var(--color-acc);
    translate: 100% 0;
    transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .mobile-open .header-nav {
    transition-delay: .25s;
    translate: 0;
  }
  .header-nav ul.menu {
    display: block;
    margin: 10px 0 0 0;
    list-style-type: none;
  }
  
  .header-nav ul.menu li.menu-item-has-children > ul {
	  max-height: 0;
	  transition: .2s;
	  overflow: hidden;
	  min-width: initial !important;
	  max-width: initial !important;
  }
	.header-nav ul.menu li.menu-item-has-children > ul.sub-menu li .sub-menu li a {
		padding-left: 30px;
	}
	
  .header-nav ul.menu li.menu-item-has-children.open > ul  {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
  .header-nav ul.menu li > a {
    display: block;
    border-bottom: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    text-transform: uppercase;
    position: relative;
  }
  .header-nav ul.menu ul li > a {
    padding-left: 40px;
  }
  .header-nav ul.menu ul li li > a {
    padding-left: 60px;
  }
	
	
	/*  */
  .menu-item-has-children {
      position: relative;
    }

    /* Toggle icon */
    .submenu-toggle {
      width: 40px;
      height: 40px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 8px;
      top: 3px;
    }

    /* Chevron */
    .submenu-toggle::before {
      content: '';
      width: 8px;
      height: 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.3s ease;
    }

    /* Rotate when open */
    .menu-item-has-children.open > .submenu-toggle::before {
      transform: rotate(-135deg);
    }

    /* Submenu */
    .menu-item-has-children > .sub-menu {
      display: none;
    }

    .menu-item-has-children.open > .sub-menu {
      display: block;
    }
  body:not(.home) .header-nav ul.menu > li > a, body.sticky .header-nav ul.menu > li > a,
body:not(.home) .header-nav ul.menu > li:last-child > a:hover, body.sticky .header-nav ul.menu > li:last-child > a:hover {
    color: #000 !important;
  }
}

.side-button {
  z-index: 9;
  position: fixed;
  padding: 15px 30px 10px;
  font-family: var(--font-acc);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--color-acc);
  border: 1px solid var(--color-acc);
  color: #000;
  text-align: center;
}

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

@media (min-width: 1025px) {
  .side-button {
    top: 330px;
    right: -12px;
    transform: rotateZ(-90deg) translateY(100px);
    border-radius: 15px 15px 0 0;
  }
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 64px;
  }
  .side-button {
    bottom: 0;
    width: 100%;
    padding: 20px 15px;
  }
}

.gform_wrapper {
  position: relative;
}

.gform_heading {
  display: none;
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .ginput_complex span:last-child {
    margin-bottom: 0;
  }
}

.banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 900px;
  padding-top: 56.25%;
  overflow: hidden;
  border-bottom-left-radius: 155px;
  border-bottom-right-radius: 155px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.rounded-bg {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), 50% 100%, 0 calc(100% - 35px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), 50% 100%, 0 calc(100% - 35px));
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.banner-bg-filter,
.banner-bg-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-bg-filter:before,
.banner-bg-inner:before {
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(90deg, #000 0.17%, rgba(139, 15, 15, 0) 103.98%);
}

.banner-bg-inner {
  width: 1920px;
  height: 1080px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

@media (min-width: 1700px) {
  .banner-bg-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .banner-bg-inner {
    position: relative !important;
    padding-bottom: 56.25%;
    height: 0 !important;
    transform: translate(0, 0) !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 1600px) {
  .banner-bg-inner {
    width: 1600px;
    height: 900px;
  }
}

.banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.banner-logo img {
  width: auto;
  height: auto;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.banner-text .subtitle {
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  -moz-transform: matrix(0.98391, 0, 0, 1.975024, 0, 0);
  -webkit-transform: matrix(0.98391, 0, 0, 1.975024, 0, 0);
  -ms-transform: matrix(0.98391, 0, 0, 1.975024, 0, 0);
  margin: 0;
}

.banner-text h3 {
  font-size: 50px;
  margin: 0;
  text-shadow: 4px 4px 20px #2c3691;
}

.banner-text h3 span {
  color: var(--color-acc);
  display: block;
  -moz-transform: matrix(1.8684784747, 0, 0, 1.8684784747, 0, 0);
  -webkit-transform: matrix(1.8684784747, 0, 0, 1.8684784747, 0, 0);
  -ms-transform: matrix(1.8684784747, 0, 0, 1.8684784747, 0, 0);
}

.banner-text h3 small {
  font-size: 23px;
}

.banner-text img {
  width: fit-content;
  max-width: 600px;
}

.banner-content {
  position: absolute;
  padding-left: 64px;
  padding-right: 64px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1500px;
}

@media (min-width: 1700px) {
  .banner-content {
    max-width: 1900px;
  }
}

.error404 .banner-content {
  left: 50%;
  max-width: 850px;
  transform: translate(-50%, -50%);
}

.banner-form {
  width: 40%;
  padding: 30px;
  background-color: #Fff;
  border-radius: 51px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.banner-form ul.inputs-list.multi-container {
  -moz-column-count: 2;
       column-count: 2;
}

.banner-form .gform_wrapper.gravity-theme .gform_fields {
  grid-gap: 8px;
}

.banner-form .gform_wrapper.gravity-theme .gfield input, .banner-form .gform_wrapper.gravity-theme .gfield select, .banner-form .gform_wrapper.gravity-theme .gform_fields textarea {
  background-color: transparent;
  color: #828282;
  border-radius: 7px;
  border: 1px solid #9C9C9C;
}

.banner-form .gform_wrapper.gravity-theme .gfield input::-webkit-input-placeholder, .banner-form .gform_wrapper.gravity-theme .gform_fields textarea::-webkit-input-placeholder {
  color: #828282;
}

.banner-form .gform_wrapper.gravity-theme .gfield input::-moz-placeholder, .banner-form .gform_wrapper.gravity-theme .gform_fields textarea::-moz-placeholder {
  color: #828282;
}

.banner-form .gform_wrapper.gravity-theme .gfield input:-ms-input-placeholder, .banner-form .gform_wrapper.gravity-theme .gform_fields textarea:-ms-input-placeholder {
  color: #828282;
}

.banner-form .gform_wrapper.gravity-theme .gfield input::-ms-input-placeholder, .banner-form .gform_wrapper.gravity-theme .gform_fields textarea::-ms-input-placeholder {
  color: #828282;
}

.banner-form .gform_wrapper.gravity-theme .gfield input::placeholder,
.banner-form .gform_wrapper.gravity-theme .gform_fields textarea::placeholder {
  color: #828282;
}

.banner-form .gform_wrapper.gravity-theme .gfield select {
  padding: 8px 6px;
}

.banner-form .gform_wrapper.gravity-theme .gfield select option {
  color: #333;
}

.banner-form .gform_wrapper.gravity-theme .gform_footer {
  position: relative;
  width: calc(50% - 4px);
  display: table;
  text-align: center;
  margin: auto;
}

.banner-form .gform_wrapper.gravity-theme .gform_footer input {
  margin-bottom: 0;
  padding: 10px;
  background-color: var(--color-acc);
  border: 1px solid var(--color-acc);
  width: 100%;
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  border: 0;
}

.banner-form .gform_wrapper.gravity-theme .gform_footer input:hover {
  background-color: #000;
  color: #fff;
}

.banner-form .gform_wrapper.gravity-theme .gform_fields .gfield_checkbox {
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.banner-form .gform_wrapper.gravity-theme .gfield_label {
  text-align: left;
  color: #828282;
}

@media (max-width: 1024px) {
  .banner {
    min-height: auto;
  }
  .banner-form {
    display: none;
  }
}

.service-item {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
}

.service-item .service-inner:after {
  content: '';
  background-color: rgba(248, 207, 44, 0.8);
  height: 0px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: height .4s ease-in-out;
  z-index: -1;
  border-radius: 10px;
}

.service-item:hover .service-inner:after {
  height: 100%;
}

.service-item:hover .service-inner p {
  color: #fff;
}

.service-item .service-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.service-item .service-image:after {
  content: '';
  background-image: url("../405media/images/filter-black.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.service-item .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(-1);
          filter: grayscale(-1);
  transition: .4s ease-in-out;
}

.service-item a {
  z-index: 1;
}

.service-image-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.service-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 12px;
  transition: .2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  border-radius: 10px;
  z-index: 1;
}

.service-inner p {
  transition: .4s ease-in-out;
  color: #fff;
}

.service-inner p {
  font-family: var(--font-heading);
  color: var(--color-acc);
  font-weight: 900;
  text-transform: uppercase;
}

.service-inner h2 {
  margin-top: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.feature-bg {
  background-image: url(../405media/images/home/feature-bg.jpg);
  background-size: cover;
  background-position: center;
}

.feature-inner ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

.feature-inner ul li {
  padding-left: 100px;
  font-size: 16px;
  position: relative;
  margin-bottom: 20px;
}

.feature-inner ul li strong {
  font-family: var(--font-acc);
  font-size: 32px;
  color: var(--color-acc);
  text-transform: uppercase;
  font-weight: 900;
}

.feature-inner ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 54px;
  height: 54px;
  background-image: url(../405media/images/home/feature-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: .2s ease-in-out;
}

.feature-inner ul li:hover:before {
  background-size: 85%;
}

@media (max-width: 991px) {
  .feature-inner ul {
    grid-gap: 30px;
  }
  .feature-inner ul li {
    text-align: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 3px 90.9px 10.1px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    padding: 2em 1em;
    padding-top: 135px;
    margin-bottom: 0;
  }
  .feature-inner ul li:before {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .feature-inner ul li strong {
    font-size: 24px;
    line-height: 1.2;
    padding-bottom: 20px;
    display: inline-block;
  }
}

.cta-button {
  display: inline-block;
  background-color: var(--color-acc);
  border: 1px solid var(--color-acc);
  color: #fff;
  padding: 20px 60px;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: var(--color-text);
}

.testi-bg {
  background-color: #000;
  color: #fff;
}

.page-id-35 .review-inner {
	height: auto;
	color: #000;
	min-height: auto;
}

.reviews-carousel.owl-carousel .owl-stage {
  display: flex;
}

.reviews-carousel.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.reviews-carousel .owl-nav {
  display: block !important;
  position: absolute;
  top: -90px;
  right: 0;
  margin: 0;
}

.reviews-carousel .owl-nav .fa {
  font-size: 30px;
  color: var(--color-acc);
}

.reviews-carousel .owl-nav .fa:hover {
  color: #2b3590;
}

.reviews-carousel .h3, .reviews-carousel .h4 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.review-item {
  padding: 10px;
}

.review-name {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.review-name a {
  color: #000;
}

.review-content {
  display: flex;
  gap: 20px;
}

.review-inner {
  height: 100%;
  padding: 50px 30px;
  border-radius: 53px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
  border: 3px solid var(--color-acc);
  min-height: 233px;
}

.review-inner a {
  color: #000;
}

.review-reviewer {
  position: absolute;
  top: calc(100% + 80px);
  left: 0;
  width: 100%;
  text-align: center;
}

span.arrow-carousel {
  background-color: var(--color-acc);
  border: 1px solid var(--color-acc);
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  transition: background-color .3s ease-in-out;
}

span.arrow-carousel:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

span.arrow-carousel:hover {
  background-color: #fff;
}

span.arrow-left:before {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 10px solid #000;
  border-bottom: 5px solid transparent;
}

span.arrow-right:before {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #000;
  border-bottom: 5px solid transparent;
}

.award-lists {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  flex-flow: wrap;
}

.award-lists .award-img {
  border-radius: 39px;
  box-shadow: 5px 4px 30px 0px rgba(0, 0, 0, 0.25);
  max-height: 200px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.map-bg iframe {
  width: 100%;
  height: 450px;
}

.footer-bg {
  padding: 3rem 0;
  background-color: #231f20;
  background-image: url(../405media/images/footer-bg.png);
  background-size: cover;
  background-position: center;
  font-size: 16px;
  font-weight: 900;
}

.footer-about p {
  line-height: 40px;
  font-weight: 400;
}

/* .services-footer .menu-footernav-container ul {
	list-style: none;
} */
.menu-footernav-container ul li {
  margin-bottom: 15px;
}

.menu-footernav-container ul li a {
  color: inherit;
}

.menu-footernav-container ul li a:hover {
  color: var(--color-acc);
}

.footer-hours p.hours-text {
  max-width: 250px;
  margin: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  line-height: 1;
}

@media (min-width: 991px) {
  .footer-services {
    display: flex;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .quicklinks, .services-footer {
    width: 50%;
  }
}

.footer-services .menu a {
  color: #fff;
}

.footer-services .menu a:hover {
  color: var(--color-acc);
}

.footer-social a {
  color: var(--color-text);
}

.footer-social a:hover {
  color: var(--color-acc);
}

.footer-social a svg {
  fill: var(--color-text);
}

.footer-social a:hover svg {
  fill: var(--color-acc);
}

.footer-information {
  border: 1px dashed var(--color-acc);
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.footer-information .flex {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.footer-information .h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.mw-700 {
  max-width: 700px;
  margin: 20px auto 50px;
}

.choose-img {
  position: relative;
  display: inline-block;
  border-radius: 51px;
  overflow: hidden;
  max-height: 700px;
  height: 100%;
}

.choose-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.choose-img .logo-holder {
  position: absolute;
  bottom: 20px;
  text-align: center;
  max-width: 276px;
  margin: auto;
  left: 50%;
  transform: translate(-50%, 0);
}

.choose-img .logo-holder img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 991px) {
  .footer-information {
    min-height: 143px;
  }
}

@media (max-width: 991px) {
  .footer-information {
    padding: 10px;
    display: block;
    text-align: center;
  }
  .footer-information div[style="width:80px;"] {
    width: 60px !important;
    text-align: center;
    margin: auto;
  }
  .footer-information .flex {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .footer-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .subfooter-bg {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  .footer-social {
    width: 100%;
    justify-content: center;
  }
  .subfooter-bg .row {
    display: block;
  }
  .footer-about {
    text-align: center;
  }
}

.page-header {
  max-width: 800px;
}

.page-header .page-subtitle {
  max-width: 535px;
  font-size: 18px;
}

.page-header-wrap {
  padding-top: 240px;
  padding-bottom: 240px;
  border-bottom-left-radius: 155px;
  border-bottom-right-radius: 155px;
  border: 3px solid #f8cf2d;
  border-top: 0;
  position: relative;
  z-index: 2;
}

.page-header-wrap.thank-you {
  text-align: center;
}

.page-header-wrap.thank-you .page-header, .page-header-wrap.thank-you .page-subtitle {
  margin: auto;
}

.page-header-wrap .page-header-title {
  z-index: 2;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-header {
  padding-bottom: 1em;
  position: relative;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 36px;
}

.page-header:before {
  content: '';
  width: 476px;
  height: 6px;
  background-color: var(--color-acc);
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .page-header-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
  .page-header-overlay {
    background-position: center;
  }
  .page-header h1 {
    font-size: 50px;
    text-align: center;
  }
  .page-header .page-subtitle {
    text-align: center;
  }
}

.contact-map,
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact-map,
.contact-content {
  border: 2px solid #bebebe;
  border-radius: 25px;
  overflow: hidden;
}

.contact-content {
  padding: 70px 60px;
  background-color: #000;
}

.contact-info {
  margin: auto;
}

.contact-bottom {
  font-size: 18px;
}

@media (max-width: 991px) {
  .contact-content {
    padding: 40px 15px;
  }
  .contact-map {
    height: 320px;
  }
}

.icon-contact {
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 96px;
  margin-right: 30px;
}

.icon-contact .fas {
  line-height: 96px;
}

.gform_wrapper.gravity-theme .gform_fields {
  margin: 0;
  position: relative;
}

.gform_wrapper.gravity-theme .gform_fields .gform_fields {
  grid-row-gap: 10px;
}

.gform_wrapper.gravity-theme .gform_fields input,
.gform_wrapper.gravity-theme .gform_fields textarea,
.gform_wrapper.gravity-theme .gform_fields select {
  background-color: #F1F1F1;
  border-radius: 24px;
  padding: 15px 15px;
  vertical-align: middle;
  border: 1px solid #9C9C9C;
  text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gform_fields input::-webkit-input-placeholder, .gform_wrapper.gravity-theme .gform_fields textarea::-webkit-input-placeholder {
  color: #000;
}

.gform_wrapper.gravity-theme .gform_fields input::-moz-placeholder, .gform_wrapper.gravity-theme .gform_fields textarea::-moz-placeholder {
  color: #000;
}

.gform_wrapper.gravity-theme .gform_fields input:-ms-input-placeholder, .gform_wrapper.gravity-theme .gform_fields textarea:-ms-input-placeholder {
  color: #000;
}

.gform_wrapper.gravity-theme .gform_fields input::-ms-input-placeholder, .gform_wrapper.gravity-theme .gform_fields textarea::-ms-input-placeholder {
  color: #000;
}

.gform_wrapper.gravity-theme .gform_fields input::placeholder,
.gform_wrapper.gravity-theme .gform_fields textarea::placeholder {
  color: #000;
}

.gform_wrapper.gravity-theme .gform_fields textarea {
  height: 140px;
}

.gform_wrapper.gravity-theme .gform_fields .gfield_checkbox {
  margin: 20px auto 20px;
  max-width: 560px;
  -moz-columns: 2;
       columns: 2;
}

.gform_wrapper.gravity-theme .gform_fields .gfield_checkbox .gchoice {
  margin-bottom: 10px;
  color: #828282;
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}

fieldset#field_2_8 {
  margin: 20px 0 0;
}

.gform_wrapper.gravity-theme .gform_fields .gfield-choice-input + label {
  max-width: 100%;
}

.gform_wrapper.gravity-theme .gform_fields .gform_footer {
  margin-top: 40px;
  padding: 0;
}

.gform_wrapper.gravity-theme .gform_footer .button {
  padding: 15px 60px;
  margin: 0 auto;
  background-color: var(--color-acc);
  border: 1px solid #9C9C9C;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
}

.gform_wrapper.gravity-theme .gform_footer .button:hover {
  background-color: #000;
  color: #fff;
  border-color: var(--color-acc);
}

@media (max-width: 991px) {
  .gform_wrapper.gravity-theme .gform_fields .gfield_checkbox {
    -moz-columns: 1;
         columns: 1;
  }
  .gform_wrapper.gravity-theme .gform_footer .button {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.city-about-img {
  height: 100%;
}

.city-about-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 550px;
}

.city-about-bg h2 {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  font-weight: 700;
  font-family: var(--font-body);
  max-width: 800px;
  margin: auto;
  line-height: 1.2;
}

.city-about-bg h2 strong,
.city-about-bg h2 span {
  display: block;
  font-size: 48px;
  font-weight: 800;
}

.border-img {
  border-radius: 50px;
}

.city-service-bg {
  background-color: #000;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-asphalt .city-about-bg h2 {
  font-weight: 600;
  font-family: "proxima-nova";
}

.page-asphalt .city-service-bg {
  background-color: #fff;
}

.page-asphalt .city-service {
  background-color: #000;
}

.page-asphalt .city-service ul li {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}

.city-map {
  border: 2px solid #fff;
  border-radius: 36px;
  overflow: hidden;
  height: 100%;
}

.city-map * {
  width: 100%;
  height: 100%;
}

.city-map iframe {
  min-height: 540px;
}
.city-service a{
  color:#000;
  font-weight:900;
}
.city-service {
  height: 100%;
  background-color: var(--color-acc);
  border-radius: 36px;
  padding: 60px 60px;
}

.city-service .border-bottom:after {
  background-color: #000;
}

.city-service h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 700;
}

.city-service h2 strong {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.city-service ul {
  margin: 0;
  font-size: 18px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 60px;
       column-gap: 60px;
  list-style: none;
  padding-left: 0;
}

.city-service ul ul {
  -moz-column-count: 1;
       column-count: 1;
  padding-left: 5px;
}

.city-service ul ul li {
  margin-bottom: 0;
  display: block;
  padding-left: 20px;
}

.city-service ul ul li a {
  font-size: 16px;
}

.city-service ul ul li:before {
  width: 10px;
  height: 10px;
  top: 10px;
}

.city-service ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.city-service ul li h4, .city-service ul li h3, .city-service ul li h5, .city-service ul li p, .city-service ul li a {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.city-service ul li h4:hover, .city-service ul li h3:hover, .city-service ul li h5:hover, .city-service ul li p:hover, .city-service ul li a:hover {
  color: #000;
  text-decoration: underline;
}

.city-service ul li:before {
  content: '';
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
}

.cta-image.mobile {
  border: 2px solid var(--color-acc);
  border-radius: 30px;
  overflow: hidden;
}

.cta-image.mobile img {
  width: 100%;
}

@media (max-width: 991px) {
  .city-service-bg {
    padding-bottom: 80px;
  }
  .city-service-bg:before {
    height: 24px;
    background-size: 100% 24px;
  }
  .city-map iframe {
    min-height: 320px;
  }
  .city-service {
    padding: 60px 15px 30px;
  }
  .city-service h2 {
    margin-bottom: 30px;
  }
  .city-service .mt-60 {
    margin-top: 30px;
  }
  .city-service ul {
    font-size: 18px;
    -moz-column-count: 1;
         column-count: 1;
  }
  .pb-80 {
    padding-bottom: 50px;
  }
  .pt-80 {
    padding-top: 50px;
  }
}

.things-bg {
  background-color: #000;
}

.things-bg .things-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 991px) {
  .page-asphalt .city-service ul {
    -moz-column-count: 3;
         column-count: 3;
  }
  .things-img {
    text-align: right;
    height: 100%;
  }
  .things-img img {
    min-width: 550px;
  }
}

.things-bg h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.city-blogs-bg h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.city-blogs h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.post-content:after {
  content: "";
  display: block;
  clear: both;
}

.post-content-img img {
  height: 565px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.thank-bg,
.error-bg {
  background-image: url(../405media/images/default-banner.png);
  background-size: cover;
  background-position: center;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom-left-radius: 155px;
  border-bottom-right-radius: 155px;
}

.thank-bg.banner-bg-filter:before,
.error-bg.banner-bg-filter:before {
  opacity: 0.7;
  background: #000;
}

.error-inner img {
  max-width: 550px;
}

.thank-inner {
  position: relative;
}

.thank-inner h1, .thank-inner h2, .thank-inner h3 {
  font-size: 64px;
}

@media (max-width: 991px) {
  .thank-bg,
.error-bg {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
}

.thank-bg p {
  margin-top: 40px;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
}

.error-bg p {
  margin-bottom: 60px;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
}

.error-bg a {
  display: inline-block;
  padding: 10px 40px;
  font-size: 20px;
}

.error-bg a:hover {
  background-color: var(--color-text);
  color: #fff;
}

@media (max-width: 991px) {
  .error-bg img {
    display: none;
  }
  .error-bg p {
    margin-top: 0;
  }
}

.blog-item {
  height: 100%;
  box-shadow: 0px 10px 32.9px 2.1px rgba(21, 42, 51, 0.78);
  border-radius: 17px;
  border: 2px solid #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.blog-item:hover {
  border-color: var(--color-acc);
}

.blog-image {
  position: relative;
  padding-top: 66.666667%;
}

.blog-image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blog-image a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  transition: .2s;
}

.blog-item:hover .blog-image a:after {
  background-color: rgba(248, 207, 45, 0.7);
  height: 100%;
}

.blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
}

.blog-title {
  margin-top: 0;
  font-family: var(--font-acc);
  font-size: 24px;
  text-align: center;
  line-height: 1;
}

.blog-title a {
  color: var(--color-text);
}

.blog-title a:hover {
  color: var(--color-acc);
}

.blog-excerpt {
  margin-bottom: 20px;
  text-align: center;
}

.blog-button {
  margin-top: auto;
  text-align: center;
}

.blog-button a {
  display: block;
  background-color: var(--color-acc);
  border: 1px solid var(--color-acc);
  color: #000;
  font-weight: 900;
  padding: 18px 30px;
  border-radius: 30px;
  box-shadow: 0px 5px 6.58px 0.42px rgba(21, 42, 51, 0.09);
}

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

.blog-footer a {
  text-transform: uppercase;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 18px;
  text-transform: uppercase;
}

.page-content {
  z-index: 1;
  position: relative;
}

.page-content form {
  max-width: 820px;
  margin: auto;
}

.subfooter-bg a {
  color: #1d2327;
  font-size: 24px;
  margin-right: 10px;
}

/* FAQ */
.asphalt-faq:before {
  content: '';
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
}

.faq-drawer__content {
  padding: 20px;
}

.faq-drawer {
  margin-bottom: 20px;
}

.faq-drawer__content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: all .3s ease-in-out;
  background-color: #707070;
  border-radius: 10px;
  margin-top: 0;
}

.faq-drawer__title {
  cursor: pointer;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  position: relative;
  margin-bottom: 0;
  transition: all .3s ease-out;
  background-color: #1c83c5;
  border-radius: 10px;
  padding: 15px 20px;
}

.faq-drawer__title::after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: " ";
  display: inline-block;
  float: right;
  height: 10px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 8px;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 10px;
}

/* OPTIONAL HOVER STATE */
.faq-drawer__trigger:checked
+ .faq-drawer__title
+ .faq-drawer__content-wrapper {
  max-height: 500px;
  margin-top: 15px;
}

.faq-drawer__trigger:checked + .faq-drawer__title::after {
  transform: rotate(-45deg);
  transition: 0.25s ease-in-out;
}

.faq-drawer input[type="checkbox"] {
  display: none;
}

.about-section {
  /* .image, .about-img, .relative, .video-wrap {
		height: 100%;

		img {
			height: 100%;
			object-fit: cover;
		}
	} */
}

.about-section .video-button {
  bottom: 70px;
  left: 70px;
  max-width: 350px;
}

.about-img .video-wrap {
  position: relative;
}

.about-img .video-wrap:before {
  content: '';
  border: 1px solid #fff;
  width: 85%;
  height: 85%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  border-radius: 49px;
  transform: translate(-50%, -50%);
}

.video-wrap {
  border-radius: 50px;
  overflow: hidden;
}

.video-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  z-index: 2;
}

.choose-holder {
  border-radius: 51px;
  border: 3px solid var(--color-acc);
  background-color: #000;
  padding: 2em;
  height: 100%;
}

.text-orange {
  color: #fd7d32;
}

.header-top {
  background-color: #F8CF2C;
  padding: 10px 0;
}

.header-top p {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.header-top p:before, .header-top p:after {
  content: '';
  background-color: #fff;
  width: 48px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: -70px;
}

.header-top p:after {
  left: initial;
  right: -70px;
}

.banner-text {
  padding: 1rem 0 3rem;
}

.banner-text p {
  color: #fff;
  font-size: 18px;
}

.error404 .banner {
  min-height: 700px;
}

.error404 .banner-text p {
  font-size: 26px;
  text-transform: uppercase;
}

.banner-form p {
  font-size: 36px;
  margin-bottom: 20px;
}

.banner-form img {
  width: auto;
  height: auto;
  background-color: #fff;
}

.btn {
  background-color: #F8CF2C;
  padding: 12px 30px;
  color: #000;
  min-width: 212px;
  display: inline-block;
  font-weight: 900;
  border-radius: 37px;
  border: 1px solid #F8CF2C;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

.btn-border {
  border-radius: 50px;
}

.section-title h1, .section-title .h1 {
  font-size: 48px;
  font-weight: 800;
}

.section-title h1 span, .section-title .h1 span {
  font-weight: 700;
  font-size: 32px;
  display: block;
  text-transform: uppercase;
  font-family: "montserrat";
}

.section-title h2, .section-title .h2 {
  font-size: 36px;
}

.section-title p {
  font-size: 18px;
  font-family: "montserrat";
}

.section-desc {
  max-width: 665px;
  margin: auto;
}

.cta-bg {
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
  position: relative;
  background-color: #000;
}

.cta-inner {
  max-width: 507px;
  color: #fff;
  margin-left: auto;
  text-align: center;
}

.cta-inner .h3 {
  line-height: 1.2;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-inner p {
  line-height: 2;
}

.cta-inner .btn {
  margin-top: 2rem;
  padding: 15px 50px;
}

.team_member_box_overlay:hover .team-member-image-overlay {
  opacity: 1;
}

.team_member_box_overlay:hover .uc_container_holder img {
  transform: scale(1.1, 1.1);
}

.team_member_box_overlay:hover .uc_overlay {
  height: 100%;
}

.uc_container_holder {
  position: relative;
  overflow: hidden;
}

.uc_container_holder p {
  margin-bottom: 0;
}

.uc_container_holder img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: .3s ease-in-out;
  height: 400px;
  -o-object-position: center center;
     object-position: center center;
}

.uc_overlay {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  transition: height .3s ease-in-out;
}

.team-member-image-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all .3s ease-in-out;
  z-index: 2;
  text-align: center;
  padding: 20px 20px 20px 20px;
  align-items: center;
  justify-content: center;
}

.team-member-image-overlay p {
  color: #fff;
}

.uc_subcontainer_holder {
  background-color: #FFFFFF;
  padding: 20px 20px 20px 20px;
  text-align: center;
}

.team_member_box_overlay_title {
  color: #000000;
  margin-top: 0px;
  font-weight: 900;
  font-size: 25px;
}

.team_member_box_overlay_subtitle {
  color: #9f9f9f;
  margin-top: 5px;
}

.uc_social {
  margin-top: 20px;
}

.uc_social a {
  display: inline-flex;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #000000;
  font-size: 20px;
  color: #000000;
}

.uc_social a:hover {
  color: var(--color-acc);
  border-color: var(--color-acc);
}

.uc_social br {
  display: none;
}

.card-columns .card {
    margin-bottom: 1.25rem;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    padding: 0;
}

@media (min-width: 576px) {
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
	.card-columns {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
	}
}

@media (max-width: 1440px) {
  .banner {
    min-height: 900px;
  }
  .banner-bg-inner:after, .bg-after:after {
    bottom: -10px;
  }
  .banner-logo {
    max-width: 300px;
    margin: auto;
  }
}

@media (max-width: 1400px) {
  .header-nav ul.menu > li > a,
.header-nav ul.menu > li ul li a {
    font-size: 14px;
  }
  .header-social,
.header-phone {
    font-size: 25px;
  }
}

@media (max-width: 1250px) {
  .header-nav ul.menu > li > a, .header-nav ul.menu > li ul li a {
    font-size: 13px;
  }
  .banner-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .banner-text {
    max-width: 600px;
  }
  .about-section .video-button {
    left: 50px;
    max-width: 300px;
  }
  .choose-img {
    max-height: initial;
  }
}

@media (max-width: 1152px) {
  .header-nav ul.menu > li > a, .header-nav ul.menu > li ul li a {
    font-size: 12px;
    padding: 10px;
  }
  .banner {
    min-height: 800px;
  }
  .banner-logo {
    max-width: initial;
  }
  .banner-logo img {
    zoom: 70%;
  }
  .about-section {
    padding-top: 50px;
  }
  .service-inner h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .footer-information {
    min-height: 138px;
  }
  .footer-information div[style="width:80px;"] {
    width: 50px !important;
  }
  .footer-information .flex-1 {
    overflow-wrap: break-word;
    inline-size: 220px;
  }
  .banner-content {
    zoom: 90%;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    background-color: #fff;
  }
  .service-section .col-4 {
    width: 50%;
  }
  .banner {
    min-height: 400px;
    padding: 0;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
  .banner-bg-inner {
    width: 1024px;
    height: 576px;
  }
  .banner-content {
    max-width: 450px;
    margin: auto;
    top: initial;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    padding-left: 0;
    padding-right: 0;
  }
  .banner-logo {
    display: none;
  }
  .banner-cta {
    display: none;
  }
  .banner-text h3 {
    font-size: 35px;
    letter-spacing: 0;
    color: #27aae1;
    font-weight: bold;
    line-height: 0.6;
    -moz-transform: matrix(1.5177033121, 0, 0, 1.5177033121, 0, 0);
    -webkit-transform: matrix(1.517703, 0, 0, 1.517703, 0, 0);
    -ms-transform: matrix(1.5177033121, 0, 0, 1.5177033121, 0, 0);
    margin-bottom: 22px;
  }
  .banner-text .subtitle {
    line-height: 0.6;
    font-size: 31px;
    margin-bottom: 15px;
  }
  .banner-bg-inner:before, .banner-bg-filter:before {
    background-image: url("../405media/images/banner-filter-mobile.png");
    bottom: 0;
    background-position: center;
  }
  .banner-bg-inner:after, .bg-after:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner-text .mb-20 {
    margin-bottom: 0;
  }
  .header-nav ul.menu > li > a, .header-nav ul.menu > li ul li a {
    font-size: 16px;
    padding: 15px;
  }
}

@media (max-width: 1024px) {
  .about-section .video-button {
    left: 50px;
    max-width: 250px;
    bottom: 80px;
  }
  .header-nav ul li.current_page_item a {
    color: #000 !important;
  }
  .pr-30, .pl-30 {
    padding: 0 !important;
  }
  .service-item .service-image:after {
    display: none;
  }
  .service-item .service-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 30px;
  }
  .service-inner {
    position: relative;
    padding: 30px 0 0;
    display: block;
  }
  .service-inner h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
  }
  .service-inner p {
    background-color: var(--color-acc);
    display: inline-block;
    color: #000;
    border-radius: 30px;
    padding: 15px 35px;
    border: 1px solid var(--color-acc);
  }
  .service-item:hover .service-inner p {
    background-color: #000;
  }
  .service-item .service-inner:after {
    display: none;
  }
  .choose-img {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
  }
  .testi-bg .section-title {
    text-align: center;
  }
  .cta-bg {
    background-image: none !important;
    background-color: transparent;
    padding-top: 0;
    border-top: 0;
    padding-bottom: 60px;
  }
  .cta-inner {
    background-color: #202020;
    border-radius: 30px;
    padding: 2em;
    text-align: center;
    border: 2px solid var(--color-acc);
    max-width: 100%;
  }
  .cta-inner .h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .reviews-carousel .owl-nav {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .reviews-carousel.owl-carousel {
    padding-top: 50px;
  }
  .review-content {
    display: block;
    text-align: center;
  }
  .review-content .mb-30 {
    margin-bottom: 20px;
  }
  .footer-bg {
    background-image: url(../405media/images/banner-footer-mobile.png);
  }
  .choose-section .row * {
    width: 100%;
  }
  .section-blog-footer .col-4:last-child {
    display: none;
  }
  .footer-information .flex-1 {
    inline-size: 150px;
  }
	.banner-text img {
		max-width: 100%;
	}
}

@media (max-width: 991px) {
  .footer-information .flex {
    display: block;
  }
  .footer-information .h4 {
    margin-top: 10px;
  }
  .footer-information .flex-1 {
    inline-size: 100%;
  }
  .about-section .image img, .about-section .about-img img, .about-section .relative img, .about-section .video-wrap img {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .choose-section {
    padding-top: 0;
  }
  .section-title h1 span, .section-title .h1 span {
    font-size: 18px;
  }
  .border-bottom {
    margin-bottom: 30px;
  }
  .feature-inner ul li {
    background-color: transparent;
  }
  .cta-inner .btn {
    padding: 15px 35px;
  }
  .award-lists .award-img {
    margin-bottom: 30px;
  }
  .footer-services {
    -moz-column-count: 2;
         column-count: 2;
  }
  .city-about-img img {
    min-height: auto;
    height: auto;
  }
  .things-bg .things-img img {
    height: auto;
    min-height: auto;
  }
  .contact-info .flex {
    display: block;
    text-align: center;
  }
  .icon-contact {
    margin: 0 auto 20px;
    width: 80px !important;
    height: 80px !important;
  }
  .icon-contact .fas {
    line-height: 80px;
  }
}

@media (max-width: 767px) {
  .section-blog-footer .col-4 {
    display: none;
  }
  .section-blog-footer .col-4:first-child {
    display: block;
  }
	.banner-content {
		max-width: 400px;
	}
}

@media (max-width: 600px) {
  .banner-bg, .city-about-bg {
    height: auto;
  }
  .header-top p {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .banner-logo img {
    zoom: 45%;
  }
  .section-title h1 span {
    font-size: 24px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .section-title .h1,
.section-title h2 {
    display: flex;
    flex-direction: column-reverse;
    letter-spacing: 1px;
    font-size: 36px !important;
  }
  .section-title img {
    margin: 10px auto !important;
  }
  .about-section .section-title .h1,
.city-about-desc .section-title h2 {
    display: block;
  }
  .service-section .col-4 {
    width: 100%;
  }
  .cta-inner .h1 {
    margin-bottom: 20px;
  }
  .cta-inner img {
    margin-bottom: 0;
  }
  .h1 {
    letter-spacing: 1px;
  }
  .clients-heading .h6 {
    max-width: 300px;
    margin: auto;
    line-height: 1.5;
  }
  .footer-about {
    text-align: center;
  }
  .footer-bg .col-4 {
    margin-bottom: 1em;
  }
  .things-bg h2 {
    margin-bottom: 30px;
    font-size: 45px;
  }
  .city-blogs h2 {
    font-size: 20px;
    max-width: 400px;
    margin: 0 auto 40px;
  }
  .city-about-bg h2 strong, .city-about-bg h2 span {
    font-size: 36px;
  }
  .about-section .video-button {
    left: 70px;
    bottom: 70px;
  }
  .city-about-img img,
.things-bg .things-img img {
    min-height: 300px;
  }
  .banner-text img {
	  -o-object-fit: contain;
	  object-fit: contain;
	  max-width: 100%;
  }
}

@media (max-width: 475px) {
  .about-section .video-button {
    max-width: 250px;
    left: 50px;
    bottom: 50px;
  }
}
