/* 
** Main CSS File **
*/
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
	border: 0;
}
body{
	font-family: var(--primary-font);
	font-size: 16px;
	line-height: 24px;
	color: #4c4c4c;
	background-color: #fff;
	text-transform: none;
	font-weight: 400;
	font-style: normal;
}
a{
	text-decoration: none;
	color: var(--primary-color);;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	transition-property: all;
	transition-duration: 0.25s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
a:hover{
	color: #0337a6;
}
img{
	max-width: 100%;
	vertical-align: middle;
	display: inline-block;
	height: auto;
	border-radius: 8px;
}
.fa-phone-alt {
	transform: rotate(90deg);
}
.px-md{
	padding: 0 5vw;
}
.pr-md{
	padding-right: 5vw;
}
.pl-md{
	padding-left: 5vw;
}
.py-md{
	padding-top: 5vw;
	padding-bottom: 5vw;
}
.col-md-6{
	z-index: 1;
}
.row{
	justify-content: center;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
iframe{
	border-radius: 8px;
	min-height: 400px;
	width: 100%;
	height: auto !important;
	margin-bottom: -6px;
}
h1, h2{
	font-family: var(--secondary-font);
	font-size: 36px;
	line-height: 46px;
	letter-spacing: 0;
	color: var(--secondary-color);
	text-transform: none;
	font-weight: 700;
	font-style: normal;
}
h3 {
	font-family: var(--secondary-font);
	font-size: 32px;
	line-height: 42px;
	letter-spacing: 0;
	color: var(--secondary-color);
	text-transform: none;
	font-weight: 700;
	font-style: normal;
}
h5 {
	font-family: var(--secondary-font);
	font-size: 24px;
	line-height: 38px;
	letter-spacing: 0;
	color: var(--secondary-color);
	text-transform: none;
	font-weight: 700;
	font-style: normal;
}
blockquote{
	font-size: 22px;
	line-height: 36px;
	padding: 0;
	border: 0;
	font-family: "Playfair Display";
	font-style: italic;
	background: transparent;
	border-left: 10px solid var(--primary-color);
	padding-left: 20px;
	margin: 20px 0;
}
@media only screen and (max-width: 991px) {
	.custom-col .col-md-6{
		width: 100%;
	}
	.custom-col .col-md-3{
		width: 50%;
	}
	.custom-col .col-md-4{
		width: 50%;
	}.header-logo img
	.reverse-column .row{
		flex-direction: column-reverse;
	}
/* 	.reverse-column .row>div:first-child{
		margin-top: 60px;
	} */
	.no-reverse-column .row>div:first-child{
		margin-bottom: 60px;
	}
	.custom-col .row>.col-md-4{
		margin-bottom: 40px;
	}
	.custom-col .row>.col-md-4:last-child{
		margin-bottom: 0px;
	}
}
@media only screen and (max-width: 600px) {
	.custom-col .col-md-3, .custom-col .col-md-4{
		width: 100%;
	}
	.row>div:last-child{
		margin-bottom: 0px;
	}
	.mobile-reverse-column .row{
		flex-direction: column-reverse;
	}
	.row>div.contact-form-checkbox-wrapper:last-child{
		margin-bottom: 20px;
	}
}

/* 
** Header **
*/

.header-overlay{
	position: fixed;
	border-bottom: 1px solid rgba(255,255,255,.13);
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	width: 100%;
	z-index: 99;
}
.header-overlay-wrapper{
	background-color: rgba(255,255,255,.10);
	border-bottom: 1px solid rgba(255,255,255,.13);
}

/* Header Top */

.header-overlay-top{
	height: 55px;
	line-height: 55px;
	/*   background-color: transparent; */
	background-color: var(--primary-color);
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
.header-overlay-top-flex{
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,.13);
	justify-content: space-between;
}
.header-overlay-top-flex-left ul{
	color: #fff;
	margin: 0;
	padding-left: 0;
	list-style: none;
}
.header-overlay-top-flex-left li:first-child{
	/*padding-left: 0;*/
}
.header-overlay-top-flex-left li{
	padding-right: 25px;
	padding-left: 24px;
	margin: 0;
	display: inline-block;
}
.header-overlay-top-flex-left li.add_border{
	border-right: 1px solid rgba(255,255,255,.13);
}
.header-overlay-top-flex-left li a{
	color: #fff;
}
.header-overlay-top-flex-left li a:hover{
	border-bottom: 1px solid #FFF;
	padding-bottom: 2px;
	transition: none;
}
.header-overlay-top-flex-left li a i{
	font-size: 14px;
}
.header-overlay-top-flex-left svg{
	color: #fff;
	margin-right: 5px;
}
.header-overlay-top-flex-right svg{
	color: #fff;
	margin-right: 20px;
	font-size: 20px;
	cursor: pointer;
}
.header-overlay-top-flex-right svg:hover{
	color: #333;
}

/* Header Bottom */

.header-overlay-bottom{
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
	background-color: #fff;
	/*   background-color: transparent; */
}
.header-overlay-bottom-flex{
	/*   height: 110px; */
	height: 80px;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
}
.header-logo-menu-area{
	display: flex !important;
	-webkit-box-pack: justify !important;
	justify-content: space-between !important;
	flex: 1 1 0%;
	align-items: center;
}
.header-logo img{
	max-width: 100%;
	height: 60px;
	border-radius: 0 !important;
}
.header-menu{
	margin-left: auto;
}
.header-menu ul{
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}
.header-menu ul li{
	float: left;
	min-height: 1px;
	vertical-align: middle;
	position: relative;
}
.header-menu ul li a{
	text-decoration: none;
	margin: 0 17px;
	/*   height: 110px;
	line-height: 110px; */
	height: 80px;
	line-height: 80px;
	font-family: var(--primary-font);
	font-size: 13px;
	display: block;
	letter-spacing: .5px;
	/*   color: #fff; */
	color: #000;		
	text-transform: uppercase;
	font-weight: 600;
	font-style: normal;
}
.header-menu ul li a i{
	margin-left: .25rem;
}
ul.sub-menu{
	display: none;
}
.header-menu ul li:hover>ul.sub-menu{
	display: block;
	position: absolute;
	/*   top: 110px; */
	top: 80px;
	min-width: 270px;
	box-shadow: 0 10px 40px rgb(0 0 0 / 20%);
	border-top: 3px solid var(--primary-color);
	background-color: #f6f6f6;
	background-repeat: repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: scroll;
}
.header-menu ul li:hover>ul.sub-menu>li>a{
	height: 100%;
	width: 270px;
	line-height: normal;
	padding: 10px 20px;
	border-bottom: 1px solid rgba(0,0,0,.10);
	border-top: 0 none;
	line-height: 150%;
	font-family: var(--primary-font);
	font-size: 14px;
	letter-spacing: 0;
	color: #242424;
	text-transform: none;
	font-weight: 500;
	font-style: normal;
}
.header-menu ul li:hover>ul.sub-menu>li:hover{
	background-color: var(--primary-color);
}
.header-menu ul li:hover>ul.sub-menu>li:hover>a{
	color: #ffffff;
	/* padding-left: 40px; */
}
/* .header-menu ul li:hover>ul.sub-menu>li:hover>a:before{
position: absolute;
content: '';
left: 18px;
top: 24px;
width: 0;
height: 2px;
background-color: transparent;
-webkit-transition: all .500s ease-in-out;
transition: all .500s ease-in-out;
background-color: rgba(255,255,255,.50);
width: 10px;
} */
.menu-item-has-children svg{
	margin-left: 8px;
}
.sub-menu .menu-item-has-children svg{
	float: right;
}
.header-menu ul.sub-menu li:hover>ul.sub-menu{
	position: absolute;
	left: 100%;
	top: -3px;
	display: block;
	min-width: 270px;
	box-shadow: 0 10px 40px rgb(0 0 0 / 20%);
	border-top: 3px solid var(--primary-color);
	background-color: #f6f6f6;
	background-repeat: repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: scroll;
}
.header-menu ul.sub-menu ul.sub-menu li a{
	height: 100%;
	width: 270px;
	line-height: normal;
	padding: 15px 30px;
	border-bottom: 1px solid rgba(0,0,0,.10);
	border-top: 0 none;
	line-height: 150%;
	font-family: var(--primary-font);
	font-size: 14px;
	letter-spacing: 0;
	color: #242424;
	text-transform: none;
	font-weight: 500;
	font-style: normal;
}
.header-button-area{
	display: flex;
	gap: 1rem;
}
.header-search-button{
	margin-right: 20px;
	margin-left: 10px;
}
.header-search-button a{
	color: #fff;
}
.header-appointment-button a{
	color: #fff;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	display: inline-block;
	background-color: var(--primary-color);
	padding: 13px 15px;
	text-decoration: none;
	line-height: normal!important;
	 border-radius: 3px 3px 3px 3px;;
}
.header-appointment-button a:hover{ 
	fill: #FFFFFF;
    color: #FFFFFF;
    background-color: var(--secondary-color);
}

.phone-icon-update {
	transform: rotate(90deg);
	background: var(--primary-color);
	border-radius: 50%;
	padding: 7px;
	color: white;
}
/* Fixed Header */

.fixed-header .header-overlay-top{
	overflow: hidden;
	height: 0;
	line-height: 0;
}
.fixed-header .header-overlay-bottom{
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.13);
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
.fixed-header .header-menu a, .fixed-header .header-button-area .header-search-button a{
	color: #222;
}
.fixed-header .header-overlay-bottom-flex{
	height: 90px;
	line-height: 90px;
}
.fixed-header .header-menu>ul>li:hover>ul.sub-menu{
	top: 86px;
}

/* Burger Menu */

.header-mobile-buttons{
	display:none;
}
.burger-menu{
	display: none;
	cursor: pointer;
	background: #eee;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.burger-menu i{
	font-size: 20px;
}

.mobile-menu-wrapper{
	display: none;
}
@keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}
@-moz-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}
@-o-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}
@-ms-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}
.mobile-menu-list li{
	/* min-height: 60px; */
	position: relative;
	padding: 14px;
	border-bottom: 1px solid rgba(204,204,204,.30);
}
.mobile-menu-list li a{
	font-size: 14px;
	text-decoration: none;
	color: var(--primary-color);
	font-weight: 500;
	justify-content: flex-start;
	display: flex;
	align-items: center;
	transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1),background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
	text-transform: uppercase;
}
/* .mobile-menu-list ul.sub-menu ul.sub-menu{
display: block;
} */
.menu-list-active{
	transform: translateX(0%) !important;
}
.toggle div{
	background-color: #ffffff;
}
.toggle .line1{
	transform: rotate(-45deg) translate(-4px, 5px);
}
.toggle .line3{
	transform: rotate(45deg) translate(-6px, -7px);
}
.toggle .line2{
	opacity: 0;
}
@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}
.header-menu>ul>li:last-child {
	display: none;
}

/* Header Responsiveness */

@media only screen and (max-width: 1024px) {
	header, .header-overlay{
		position: relative;
		z-index: 10000000000;
	}
	.header-mobile-buttons{
		display: flex;
		gap: .5rem;
		align-items: center;

	}
	.menu-header-logo img{
		 max-height: 60px;
        max-width: 276px;
        width: 100%;
        object-fit: contain;
        height: auto;
        border-radius: 0;
	}


	.header-mobile-buttons .dark-button a{
		padding: 8px 12px;
	}
	.header-menu>ul>li:last-child {
		display: block;
	}
	.header-overlay-top, .header-menu, .header-appointment-button{
		display: none;
	}
	.header-overlay-bottom{
		position: fixed;
		top: 0;
		width: 100%;
		background-color: #fff;
		border-bottom: 1px solid rgba(255,255,255,.13);
		box-shadow: 0 0 10px rgb(0 0 0 / 10%);
		-webkit-transition: 0.5s ease;
		-moz-transition: 0.5s ease;
		-ms-transition: 0.5s ease;
		-o-transition: 0.5s ease;
		transition: 0.5s ease;
	}.mobile-menu-wrapper{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		max-width: 400px;
		height: 100vh;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
		overflow-y: scroll;
		list-style: none;
		background-color: #fff;
		box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
	}
	.mobile-menu-wrapper .secondary-button a{
		background-color: var(--primary-color);
		border: 2px solid var(--primary-color);
	}
	.mobile-menu-wrapper .secondary-button a:hover{
		color: var(--primary-color);
		background-color: transparent;
	}
	.menu-header-logo{
		display: grid;
        grid-template-columns: auto auto;
		align-items: center;
		background: #fff;
		padding: 10px 10px 10px 32px;
		height: 80px;
		gap: .5rem;
		border-bottom: 1px solid #ddd;
		justify-content:space-between;
	}

	.mobile-menu-nav{
		padding: 32px 32px 96px 32px;
		height: calc(100% - 80px);
		display: flex;
		gap: 2rem;
		flex-direction: column;
		justify-content: space-between;
	}
	.mobile-menu-list {
		display: flex;
		flex-direction: column;
		overflow: auto;

	}

	.mobile-menu-list::-webkit-scrollbar {
		width: 10px; /* Width of the scrollbar */
		height: 10px;
	}

	.mobile-menu-list::-webkit-scrollbar-thumb {
		background-color: var(--primary-color); /* Color of the scrollbar thumb */
		border-radius: 5px; /* Roundness of the scrollbar thumb */
	}

	.mobile-menu-list::-webkit-scrollbar-track {
		background-color: #f1f1f1; /* Color of the scrollbar track */
	}



	.mobile-nav-button-list{
		display: flex;
		align-items: center;
		justify-content:center;
	}
	.mobile-nav-button-list .hero__cta-group{
		justify-content: center;
	}
	.mobile-nav-button-list .hero__cta-group a{
		width: 100%;
		max-width: 250px;
	}

	.has-sub-menu{
		font-weight: 600;
		color: var(--primary-color);
	}
	.has-sub-menu:before {
		content: "\f107";
		font-family: 'Font Awesome\ 5 Free';
		line-height: 3;
	}
	.has-sub-menu:before{
		position: absolute;
		top: 0;
		right: 0;
		width: 200px;
		padding-left: 180px;
		height: 100%;
	}
	ul.sub-menu{
		position: relative !important;
		width: 100% !important;
		transform: none !important;
		border: none;
		box-shadow: none;
	}
	.dropdown-menu{
		background-color: transparent;
	}
	.dropdown-menu li{
		border-bottom: none;
	}
	.dropdown-menu li a{
		text-transform: none;
	}
}
@media only screen and (max-width: 576px) {
	.mobile-menu-wrapper{
		max-width:100%;
	}
}
@media only screen and (max-width: 380px) {

	.header-mobile-buttons .fa-phone {
		display: none;
	}
	.header-mobile-buttons .dark-button a {
		padding: 8px;
		text-transform: capitalize;
	}
}

/* Header Banner */

.home-header-banner{
	width: 100%;
	height: 800px;
	opacity: 1;
	transform: translate(0px, 0px);
	visibility: inherit;
	z-index: 2;
	display: block;
}
.home-header-banner:after{
	background-color: rgba(0,0,0,.90);
}
.header-banner{
	width: 100%;
/* 	height: 400px; */
	height:auto;
	opacity: 1;
	transform: translate(0px, 0px);
	visibility: inherit;
	z-index: 2;
	display: block;
}
.header-banner-container{
	display: flex;
	height: 100%;
	width: 100%;
	padding-bottom: 50px;
}
.header-banner-content, .header-banner-contact-form{
	display: flex;
	height: 100%;
	width: 50%;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 40px 32px;
}
.header-banner-content{
	width: 100%;
	margin-top: 80px;
}
.header-banner-contact-form-wrapper{
	margin: 0 8%;
	background-color: #ffffff;
	padding: 36px;
	border-radius: 12px;
	box-shadow: 0px 24px 32px -6px rgb(0 0 0 / 10%);
	border-width: 0 1px 1px 1px;
	border-color: rgba(0,0,0,0.08);
	border-style: solid;
}
.header-banner-contact-form input, .header-banner-contact-form textarea,
.header-banner-contact-form select{
	width: 100%;
	padding: 0 1em;
	outline: 0;
	transition: all .2s ease;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background-color: #ffffff;
	font-size: 12px;
	color: #5e5e5e;
	height: 40px;
}
.header-banner-contact-form textarea{
	height: 120px;
	padding-top: 10px;
}
.header-banner-contact-form label {
	margin: 8px 0;
	width: 48%;
	margin-right: 1%;
}
.header-banner-contact-form label.textarea-label{
	width: 98%;
}
.header-banner-contact-form [type=submit] {
	background: var(--primary-color);
	color: #ffffff;
	border-color: #ffffff;
	width: 98%;
	border-radius: 3px;
    display: inline-block;
    padding: 13px 16px;
	font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
	height: auto;
}
.header-banner-contact-form [type=submit]:hover{
	fill: #FFFFFF;
    color: #FFFFFF;
    background-color: var(--secondary-color);
}
.header-banner-contact-form h2{
	font-size: 24px !important;
	background: var(--primary-color);
	color: #fff;
	padding: 0;
	padding-left: 70px;
	margin-left: -67px;
	margin-bottom: 20px;
	width: 110%;
	position: relative;
}
.header-banner-contact-form h2::before{
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-top: 0px solid transparent;
	border-right: 31px solid var(--primary-color);
	border-bottom: 13px solid transparent;
	left: -1px;
	bottom: -13px;
}
.header-banner-contact-form h2::after{
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-left: 27px solid var(--primary-color);
	border-bottom: 20px solid transparent;
	right: -27px;
	top: 0;
}
.header-banner-content .header-banner-subtitle{
	font-family: var(--secondary-font);
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	text-decoration: none;
	text-align: left;
	line-height: 22px;
	letter-spacing: 2px;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 20px;
}
.header-banner-content .header-banner-title{
	font-family: var(--secondary-font);
	color: rgb(255, 255, 255);
	text-decoration: none;
	text-align: left;
	line-height: 60px;
	letter-spacing: 0px;
	font-weight: 700;
	font-size: 55px;
	max-width: 700px;
	margin-bottom: 20px;
}
.header-banner-content .header-banner-description{
	font-family: var(--secondary-font);
	color: rgb(255, 255, 255);
	text-decoration: none;
	text-align: left;
	letter-spacing: 0px;
	max-width: 700px;
	margin-bottom: 20px;
}
.header-banner-content .header-banner-button a{
	background-color: var(--primary-color);
	font-family: var(--secondary-font);
	cursor: pointer;
	color: rgb(255, 255, 255);
	text-decoration: none;
	line-height: 30px;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 13px;
	border-color: transparent;
	padding: 12px 20px;
	border-radius: 3px;
	display: inline-block;
	margin-bottom: 0 10px 10px 0;
	min-width: 54px;
}
.header-page-title{
	max-width: none;
	padding: 0;
	text-align: left;
	padding-top: 60px;
}
.header-page-title h1{
	font-family: var(--secondary-font);
	font-size: 45px;
	line-height: 55px;
	letter-spacing: 0;
	color: #fff;
	text-transform: none;
	font-weight: 700;
	font-style: normal;
}
.breadcrumbs span{
	color: #fff;
}
.breadcrumbs span a{
	font-family: var(--primary-font);
	font-size: 17px;
	line-height: 1.5;
	letter-spacing: 0;
	color: #fff;
	text-transform: none;
	font-weight: 400;
	font-style: normal;
}
.breadcrumb-separator{
	margin: 0 4px;
}
.header-banner-button {
	text-align: center;
}

/* Home Banner Responsiveness */

@media only screen and (max-width: 1024px) {
	.home-header-banner{
		height: 1100px;
	}
	.header-banner-container{
		flex-direction: column;
		align-items: center;
	}
	.header-banner-content, .header-banner-contact-form{
		width: 100%;
	}
	.header-banner-content{
		align-items: center;
	}
	.header-banner-content .header-banner-title{
		text-align: center;
	}
	.header-banner-contact-form{
		margin-top: 0px;
		max-width: 600px;
	}
	.header-banner-content .header-banner-description{
		text-align: center;
	}
	.header-banner-content .header-page-title{
		padding-top: 0;
	}
	
}

@media only screen and (max-width: 600px) {
	.home-header-banner{
		height: 100%;
	}
	.header-banner-content{
		align-items: flex-start;
	}
	.header-banner-content .header-banner-title{
		font-size: 32px;
		line-height: 50px;
	}
	.header-banner-contact-form {
		display: none;
	}
	.header-banner-content .header-banner-description, .header-banner-content .header-banner-title{
		text-align: left;
	}
	.header-banner-contact-form form{
		margin: 0;
	}
	.header-banner-contact-form h2{
		margin-left: -66px;
	}
	.header-banner-content .header-banner-button a{
		padding: 12px 7px;
	}
}

/* 
** Front Page **
*/
.front-page-class{
	overflow-x: hidden;
}
.front-page-main{
	display: block;
	background-color: #fff;
	/*   max-width: 1200px; */
	margin: 0 auto;
}
.section-container{
	padding: 60px 32px 60px 32px;
	position: relative;
}
.services{
	background-color: #fefefe;
}
.service-grid-item{
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	margin-bottom: 40px;
}
.service-grid-image img{
	height: auto;
	max-width: 100%;
	min-width: 100%;
	min-height: 240px;
	max-height: 240px;
	object-fit: cover;
	border: none;
	border-radius: 2px;
	box-shadow: 0 30px 50px rgb(0 0 0 / 3%);
	-webkit-box-shadow: 0 30px 50px rgb(0 0 0 / 3%);
}
.section-heading{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 40px;
}
.section-description{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 40px;
	margin-top: -40px;
}
h4.sub-title{
	font-family: var(--secondary-font);
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 1px;
	color: var(--primary-color);
	text-transform: uppercase;
	font-weight: 600;
	font-style: normal;
}
h2.title{
	font-family: var(--secondary-font);
	font-size: 40px;
	line-height: 48px;
	letter-spacing: 0;
	color: var(--secondary-color);
	text-transform: none;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 40px;
}
.service-grid-content{
	background-color: #fff;
	border-radius: 2px;
	margin: -30px 15px 0;
	box-shadow: 0 30px 50px rgb(0 0 0 / 3%);
	width: calc(100% - 30px);
	transform: translateY(0);
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
.service-grid-content-flex-wrapper{
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-grid-category{
	font-size: 13px;
	text-transform: uppercase;
	line-height: 23px;
	font-weight: 500;
	padding-bottom: 3px;
	letter-spacing: 1px;
}
.service-grid-title{
	position: relative;
	font-size: 22px;
	line-height: 30px;
	margin: 0;
}
.service-grid-content-right{
	margin-left: auto;
}
.service-grid-icon-wrapper{
	background-color: var(--primary-color);
	height: 45px;
	width: 45px;
	line-height: 45px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
}
.service-grid-item:hover .service-grid-icon-wrapper{
	background-color: #222;
}
.service-grid-item:hover .service-grid-content{
	transform: translateY(-10px);
}
.service-grid-content a:hover{
	color: var(--primary-color);
}
.service-grid-content a:hover .service-grid-title{
	color: var(--primary-color);
}

.about-us{
	background-color: #F7F9FA;
	position: relative;
}
.about-us:before{
	content:"";
	background-color:#F7F9FA;
	position: absolute;
	height: 100%;
	width: 200vw;
	left: -100vw;
	top: 0;
	z-index: -1;
}
.about-us-top-content{
	margin-bottom: 60px;
}
.milestone-numbers h4{
	color: var(--primary-color);
	font-size: 48px;
	line-height: 50px;
	font-weight: 700;
	margin-bottom: 10px;
}
.milestone-numbers .number-sub{
	font-size: 24px;
	line-height: 24px;
	display: inline-block;
	vertical-align: top;
	margin-left: 4px;
	margin-top: 5px;
	font-weight: 400;
}
.milestone-numbers sub{
	bottom: 0;
	left: -10px;
}
.milestone-numbers h3{
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 0;
	color: var(--secondary-color);
}
.light-button, .dark-button{
	margin: 40px 0px 20px 0px;
}
.light-button a{
	font-family: var(--primary-font);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	fill: var(--secondary-color);
	color: var(--secondary-color);
	background-color: #FFFFFF;
	border-style: solid;
	border-width: 2px 2px 2px 2px;
	border-color: #D5D5D5;
	border-radius: 3px 3px 3px 3px;
	padding: 13px 42px;
	display: inline-block;
	width: fit-content;
}
.light-button a:hover{
	fill: #FFFFFF;
	color: #FFFFFF;
	background-color: var(--primary-color);
}
.dark-button a{
	font-family: var(--primary-font);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
	background-color: var(--primary-color);
	border-radius: 3px 3px 3px 3px;
	display: inline-block;
	padding: 13px 42px;
	width: fit-content;
	text-align: center;
}
.dark-button a:hover{
	fill: #FFFFFF;
	color: #FFFFFF;
	background-color: var(--secondary-color);
}
.two-columns-ltr{
	position: relative;
}
.two-columns-rtl{
	background-color:#F7F9FA;
	position: relative;
}
.two-columns-rtl:before{
	content:"";
	background-color:#F7F9FA;
	position: absolute;
	height: 100%;
	width: 200vw;
	left: -100vw;
	top: 0;
	z-index: -1;
}
.pattern-overlay{
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.testimonials{
	/* background-image: url('../images/testimonial-background.jpeg'); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	/*   position: absolute; */
	width: 100%;
	left: 0;
	right: 0;
}
.testimonial{
	position: relative;
	padding: 80px 40px 50px;
	background: #fff;
	margin-top: 30px;
}
.testimonial-text{
	min-height: 108px;
}
.testimonial-author{
	position: relative;
	padding-left: 85px;
	padding-top: 50px;
	text-align: left;
	display: inline-block;
}
.testimonial blockquote{
	font-size: 22px;
	line-height: 36px;
	padding: 0;
	margin: 0;
	border: 0;
	font-family: "Playfair Display";
	font-style: italic;
	background: transparent;
}
.testimonial-author-img{
	position: absolute;
	width: 70px;
	height: 70px;
	overflow: hidden;
	left: 0;
}
.testimonial-author-img img{
	border-radius: 50%;
	height: 70px;
	width: 70px;
}
.testimonial-author h3{
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
	margin-top: 10px;
	text-transform: uppercase;
	font-family: var(--secondary-font);
	color: var(--secondary-color);
	font-weight: 600;
}
.testimonial-author span{
	font-size: 13px;
}
.slick-dots button{
	font-size: 0;
}
.slick-dots{
	position: absolute;
	bottom: 50px;
	right: 50px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	list-style: none;
}
.slick-dots li{
	padding: 5px;
	height: 13px;
	width: 13px;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	margin: 0 5px;
	outline: none;
	cursor: pointer;
}
.slick-dots li.slick-active{
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
}
.testimonial:before{
	position: absolute;
	content: '\f10e';
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 900;
	font-size: 35px;
	line-height: 85px;
	top: -30px;
	left: 40px;
	color: #fff;
	width: 85px;
	height: 85px;
	text-align: center;
	border-radius: 50px;
	background-color: var(--primary-color);
}
.section-banner{
	position: relative;
	background-color:var(--primary-color);
}
.section-banner:before{
	content:"";
	background-color:var(--primary-color);
	position: absolute;
	height: 100%;
	width: 200vw;
	left: -100vw;
	top: 0;
	z-index: -1;
}
.section-banner-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 991px) {
	.section-banner-wrapper{
		flex-direction: column;
		align-items: flex-start;
	}
	.two-columns-ltr h4.sub-title{
		margin-top: 40px;
	}
}
@media only screen and (max-width: 768px) {
	
	.two-columns-rtl .dark-button,
	.two-columns-ltr .dark-button{
		text-align:center;
	}
}
@media only screen and (max-width: 450px) {
	
	.two-columns-rtl .dark-button a,
	.two-columns-ltr .dark-button a{
		width:100%;
	}
}
.section-banner h2{
	font-size: 32px;
	line-height: 40px;
	text-align: left;
	color: #fff;
	font-family: var(--secondary-font);
	line-height: 46px;
	letter-spacing: 0;
	text-transform: none;
	font-weight: 700;
	font-style: normal;
}
.section-banner p{
	color: rgba(255, 255, 255, 0.80);
}
.section-banner-button a{
	font-size: 14px;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 40px;
	padding-right: 40px;
	color: #fff;
	display: block;
	border: 2px solid #fff;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight:600;
}
.section-banner-button a:hover{
	background-color: #FFFFFF;
	color: #666;
}

.margin-top-class{
	margin-top: 500px;
}
@media only screen and (max-width: 1024px){
	.margin-top-class{
		margin-top: 650px;
	}
}
@media only screen and (max-width: 991px){
	.margin-top-class{
		margin-top: 550px;
	}
}
@media only screen and (max-width: 600px){
	.margin-top-class{
		margin-top: 650px;
	}
}
.blog-grid-item{
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
/* .classic-blog-page .blog-grid-item:hover .blog-grid-image img{
transform: translateY(-10px);
-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
transition: all 0.5s cubic-bezier(.645,.045,.355,1);
} */
.blog-grid-image img{
	height: auto;
	width: 100%;
	max-width: 100%;
	border: none;
	border-radius: 8px;
	-webkit-box-shadow: none;
	box-shadow: none;
	max-height: 400px;
	object-fit: cover;
}
.blog-grid-image:hover img {
	transform: scale(1.02);
}
.blog-grid-content{
	padding-top: 20px;
}
.blog-grid-meta{
	margin-bottom: 7px;
	font-size: 16px;
}
.blog-meta-date, .blog-meta-category{
	color: var(--primary-color);
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.blog-meta-category a{
	margin-left: 20px;
	color: var(--primary-color);
}
.blog-meta-date:after{
	content: ".";
	display: inline-block;
	position: absolute;
	top: -4px;
	right: -15px;
	font-size: 20px;
	line-height: 20px;
}
.blog-grid-content h3{
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 10px;
}
.blog-grid-content h3 a:hover{
	color: var(--primary-color);
}
.blog-read-more a{
	color: #232323;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	font-weight: 600;
	display: inline-block;
	position: relative;
}
.blog-read-more a:before{
	width: 100%;
	content: "";
	position: absolute;
	bottom: -3px;
	left: auto;
	right: 0;
	height: 2px;
	background-color: #eee;
	transition: all 0.2s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}
.blog-read-more a:after{
	content: "";
	position: absolute;
	bottom: -3px;
	left: auto;
	right: 0;
	height: 2px;
	width: 0%;
	transition: all 0.2s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}
.blog-read-more a:hover:after{
	width: 100%;
	left: 0;
	right: auto;
	background-color: var(--primary-color);
}

.partners .section-heading{
	margin-bottom: 0px;
}
.partners-slider img{
	max-width: 100%;
	height: 60px;
	margin: 0 auto;
}

/* 
** Footer **
*/

footer{
	background-color: #242F3E;
	position: relative;
	min-height: 400px;
	color: #ffffff;
}
footer .col-md-3{
	margin-bottom: 20px;
}
.footer-tagline{
	color: #ffffff;
	margin: 20px 0;
}
.footer-phone{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}
.footer-phone a {
	color: #fff;
}
.footer-email{
	position: relative;
	margin-bottom: 15px;
	font-size: 15px;
}
.footer-email a {
	color: #fff;
}
.footer-location{
	position: relative;
	font-size: 15px;
}
.footer-location a {
	color: #fff;
}
.footer-column-title{
	font-size: 17px;
	line-height: 27px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	position: relative;
	color: #fff;
	font-family: var(--secondary-font);
	margin-bottom: 40px;
}
.footer-column-title:after{
	content: "";
	width: 50px;
	height: 2px;
	bottom: -10px;
	left: 0;
	position: absolute;
	z-index: 1;
	background-color: #7b97d2;
}
.footer-links ul{
	margin: 0;
	padding: 0;
}
.footer-links ul li{
	padding: 0 0 15px 0;
	list-style: none;
}
.footer-links ul li a{
	position: relative;
	padding-left: 20px;
	color: rgba(255,255,255,1);
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.footer-links ul li a:before{
	position: absolute;
	content: '\f531';
	left: 0;
	font-size: 10px;
	top: -3px;
	color: #ffffff;
	font-weight: 900;
	font-family: 'Font Awesome\ 5 Free';
}
.business-hours-content{
	margin-bottom: 20px;
}
.business-hours-content h3{
	font-size: 16px;
	color: #ffffff;
}
.business-hours-content span{
	font-size: 14px;
	color: rgba(255,255,255,0.9);
}
.footer-copyright{
	background-color: #131a22;
	border-top: 1px solid rgba(255,255,255,.07);
	color: #FFF;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
.footer-secondary{
	background-color: #131A22;
	color: #fff;
	width: 100%;
	height: 100%;
	text-align: center;
}
.footer-city{
	width: 100%;
	display: inline-block;
	color: #fff;
	font-size: 12px!important;
	text-align: left!important;
	text-decoration: none;
}
ul.footer-city-services li a{
	font-size: 11px;
	text-align: left;
	color: #999;
	width: 100%;
	display: inline-block;
}
ul.footer-city-services li a:hover{
	color: #fff;
}
/* .service-area-col {
min-height: 160px;
} */
.footer-logo img{
	height: 90px;
}
@media only screen and (max-width: 575px){
	.footer-city{
	font-size: 16px!important;
}
	ul.footer-city-services li a{
	font-size: 14px;
}
}
/* 
** Service Individual Page **
*/

.page-main{
	display: block;
	background-color: #fff;
	max-width: 1200px;
	margin: 0 auto;
}
.service-page-main{
	position: relative;
}

.page-container,
.service-page-container{
	padding: 64px 32px;
	margin: 0;
}

.single-services .service-page-container{
	padding-top: 150px;
}

.aside-content-area{
	background-color: #f7f9fa;
	height: 100%;
}
.aside-content-area{
	position: sticky;
	top: 180px;
	border-top: 5px solid var(--primary-color);
}
h2.aside-content-area-title,
h2.widget-title{
	font-family: var(--secondary-font);
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #2c2c2c;
	text-transform: none;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 35px;
	position: relative;
	text-transform: uppercase;
}
h2.aside-content-area-title:after,
h2.widget-title:after{
	content: "";
	width: 100%;
	height: 1px;
	bottom: -10px;
	left: 0;
	position: absolute;
	z-index: 1;
	background: #e8e9ea;
}
.services-list ul li a{
	background-color: #fff;
	padding: 17px 25px 17px 20px;
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: #222;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.results-list ul li{
	background-color: #fff;
	padding: 17px 20px;
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: #222;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	border: none;
	margin-bottom: 10px;
	list-style: none;
	cursor: default;
}
.services-list ul li a:hover, .results-list ul li:hover{
	color: var(--primary-color);
}
.services-list ul li a:after{
	content: '\f531';
	font-family: 'Font Awesome\ 5 Free';
	font-style: normal;
	font-weight: 600;
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 12px;
}
.services-list ul>li{
	border: none;
	padding: 0!important;
	margin-bottom: 10px;
	list-style: none;
}

.main-content-area{
	padding: 0 30px 40px 30px;
	background-color: #ffffff;
}
.service-simple-paragraph h2, .service-two-column h2{
	padding: 0;
	margin-bottom: 20px;
	line-height: 1;
}
.service-card-container, .service-accordion, .service-simple-paragraph, .service-two-column{
	margin-top: 50px;
	margin-bottom: 0px;
	position: relative;
}
.service-card{
	border: 1px solid #edf1f3;
	text-align: left;
	background-color: #fff;
	border-radius: 2px;
	padding: 40px 35px 40px;
	box-shadow: 0 0 0 rgb(0 0 0 / 0%);
	transform: translateY(0);
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
.service-card:hover{
	transform: translateY(-10px);
}
.service-card:hover .service-card-icon-wrapper{
	background-color: #222;
}
.service-card-icon-wrapper{
	margin: 0 0 30px;
	background-color: var(--primary-color);
	height: 70px;
	width: 70px;
	font-size: 40px;
	line-height: 70px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	box-shadow: 0 30px 50px rgb(0 0 0 / 3%);
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
.service-card-content h2{
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: .5rem;
}
.service-card-content-desc{
	margin-top: 15px;
}
.accordion-item{
	border: 0px;  
	margin: 30px 0;
	z-index: 0;
}
.accordion-item button{
	background-color: rgb(241, 241, 241);
	line-height: 1;
	font-weight: 600;
	font-family: var(--secondary-font);
	font-size: 1rem;
	gap: .75rem;
}
.accordion-button:focus{
	border: 0;
	box-shadow: none;
}
.accordion-button:not(.collapsed){
	color: #ffffff;
	background-color: var(--primary-color);
}
.accordion-body{
	padding: 30px 30px 10px;
}
.accordion-button::after{
	background-image: none;
	content: "\f067";
	color: #222;
	font-family: 'Font Awesome\ 5 Free';
	font-style: normal;
	font-weight: 600;
	transition: none;
}
.accordion-button:not(.collapsed)::after{
	background-image: none !important;
	color: #ffffff;
	content: "\f068";
	font-family: 'Font Awesome\ 5 Free';
	font-style: normal;
	font-weight: 600;
	transition: none;
}
#faq-accordion .accordion-item {
	margin: 0;
}
.service-two-column ul,
.service-hero-column ul,
.simple-paragraph ul,
.careers-accordion ul,
.page-content ul,
.textwidget ul,
.main-content-area ul,
.two-columns-ltr ul,
.two-columns-rtl ul,
.service-hero-column1 ul,
.about-us-top-content ul{
	margin-left: 24px;
	position: relative;
}
.service-two-column ul li,
.service-hero-column ul li,
.simple-paragraph ul li,
.careers-accordion ul li,
.page-content ul li,
.textwidget ul li,
.main-content-area ul li,
.two-columns-ltr ul li,
.two-columns-rtl ul li,
.service-hero-column1 ul li,
.about-us-top-content ul li{
	list-style: none;
	padding: 5px;
}
.service-two-column ul li:before,
.service-hero ul li:before,
.simple-paragraph ul li:before,
.careers-accordion ul li:before,
.page-content ul li:before,
.textwidget ul li:before,
.main-content-area ul li:before,
.two-columns-ltr ul li:before,
.two-columns-rtl ul li:before,
.service-hero-column1 ul li:before,
.about-us-top-content ul li:before{
	color: var(--primary-color);
	content: "\f00c";
	font-family: 'Font Awesome\ 5 Free';
	font-style: normal;
	font-weight: 600;
	transition: none;
	position: absolute;
	left: -24px;
}
@media only screen and (max-width:600px){
	.aside-content-area{
	padding: 0 30px !important;
}
}
/* Defining CSS styles for a table in the main content area. */
.main-content-area table {
	width: 100%;
	border-collapse: collapse;
}

.main-content-area th {
	color: #333; /* Text color for header cells */
	border: 1px solid #000; /* Border for header cells */
	padding: 8px;
}

.main-content-area tr:first-child td {
	background-color: var( --primary-color ); 
	font-weight: bold;
	color: #fff;
}

/* Style for other table data cells (td) */
.main-content-area td {
	border: 1px solid #000;
	padding: 8px;
}

.main-content-area tr:nth-child(even) td {
	background-color: #f1f1f1; 
}

.page-main .services-grids .row>div{
	margin: 0 0 40px;
}


/* 
** Service Individual Page **
*/

.grid-icon-content{
	display: flex;
}
.grid-icon, .source-grid-image{
	padding-right: 30px;
	padding-top: 5px;
}
.grid-icon-wrapper{
	height: 65px;
	width: 65px;
	font-size: 30px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	background: #222;
	background-color: var(--primary-color);
}
.source-grid{
	display: flex;
	margin: 20px 0;
}
.source-grid-image img{
	max-width: 100px;
	height: auto;
}
.grid-content-title{
	font-size: 22px;
	line-height: 24px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 20px;
}
.grids-icon-content>.row>.col-md-4{
	margin: 20px 0 40px;
}
.grid-icon-content:hover .grid-icon-wrapper{
	background: #222;
}

/* 
** Contact **
*/

.map iframe{
	border: 0;
	border-radius: 0;
}
.contact-section{
	position: relative;
}
.contact-section-left{
	background-color: var(--primary-color);
	padding: 70px 40px 50px 40px;
	border-radius: 2px;
	margin-top: -100px;
}
.contact-section-left h2{
	color: #fff;
	font-family: var(--secondary-font);
	font-size: 50px;
	line-height: 65px;
	margin-bottom: 20px;
}
.contact-section-left-content, .hours-of-operation{
	margin-bottom: 20px;
}
.contact-section-left-content h3{
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
}
.contact-section-left-content p,
.contact-section-left-content a{
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	
	&:hover {
		color: rgba(255, 255, 255, 1);
	}
}
.hours-of-operation b{
	color: #fff;
}
.contact-section-right{
	padding: 70px 40px 50px 40px;
}
.contact-section-right input, .contact-section-right textarea,
.contact-section-right select{
	width: 100%;
	padding: 0 1em;
	outline: 0;
	transition: all .2s ease;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background-color: #ffffff;
	font-size: 12px;
	color: #5e5e5e;
	height: 40px;
}
.contact-section-right textarea{
	height: 120px;
	padding-top: 10px;
}
.contact-section-right label {
	margin: 8px 0;
	width: 48%;
	margin-right: 1%;
}
.contact-section-right label.textarea-label{
	width: 98%;
}
.contact-section-right [type=submit] {
	background: var(--primary-color);
	color: #ffffff;
	border-color: #ffffff;
	font-weight: 500;
	width: 98%;
}
.contact-section-right [type=submit]:hover{
	opacity: 0.8;
}
@media only screen and (max-width: 600px) {
	.contact-section-right{
		padding: 0;
	}
	.contact-section-left{
		margin-top: 0;
	}
	.contact-section-left h2{
		font-size: 42px;
	}
}

/* 
** Blogs Page **
*/

.blog-grid-item{
	margin-bottom: 60px;
}
.blog-meta-categories a{
	background-color: var(--primary-color);
	color: #fff;
	padding: 5px 10px;
	font-size: 14px;
}
.blog-grid-content h3{
	font-size: 24px;
	line-height: 42px;
	font-weight: 700;
	margin-bottom: 5px;
	margin-top: 10px;
}
.blog-meta-top{
	position: relative;
	font-size: 13px;
	text-transform: uppercase;
	padding-bottom: 19px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e9e9e9;
	margin-top: 10px;
	color: #616161;
}
.blog-meta-top-author::before, .blog-meta-top-comments::before{
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ddd;
	margin: 0 11px 1px 14px;
}
.page-numbers.current, a.page-numbers:hover{
	background-color: var(--primary-color);
	color: #fff;
}
.page-numbers {
	padding: 10px 17px;
	font-size: 15px;
	font-weight: 700;
	display: inline-block;
	margin: 0 2px;
	border: 1px solid #eee;
	color: #2c2c2c;
}
.widget-item{
	margin-bottom: 40px;
}
.widget-item h2{
	margin-bottom: 35px;
	position: relative;
	font-family: var(--secondary-font);
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 1px;
	color: #2c2c2c;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
}
.widget-item h2::after{
	content: "";
	width: 100%;
	height: 1px;
	bottom: -10px;
	left: 0;
	position: absolute;
	z-index: 1;
	background: #e8e9ea;
}
.widget-recent-posts ul li{
	display: -ms-flexbox;
	display: flex;
	align-items: normal;
	width: 100%;
	margin-top: 10px;
	padding-top: 0;
}
.widget-recent-posts ul>li{
	padding: 0 0 15px 0;
}
.widget-recent-posts ul>li>a{
	width: 75px;
	flex-shrink: 0;
	margin-right: 20px;
}
.widget-recent-posts img{
	width: 100%;
	height: 70px;
}
.widget-recent-posts .recent-post-title{
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 0;
}
.widget-item a{
	color: #222;
	font-size: 14px;
	font-weight: 600;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.widget-item a:hover{
	color: var(--primary-color);
}
.recent-post-date{
	line-height: 17px;
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 5px;
	color: var(--primary-color);
}
.widget-categories ul li{
	position: relative;
	margin: 15px 0;
	padding: 0;
}
.widget-categories span{
	position: absolute;
	right: 0;
	top: -2px;
	width: 28px;
	height: 28px;
	line-height: 28px;
	background-color: #222;
	color: #fff;
	text-align: center;
	display: block;
	font-size: 12px;
	font-weight: 400;
}

/* 
** Management **
*/

.management-item{
	position: relative;
	margin-bottom: 150px;
}
.management-item-image img{
	border-radius: 2px;
}
.management-item-content{
	padding: 20px 30px 10px 25px;
	text-align: center;
	background-color: #fff;
	border-radius: 2px;
	margin: -30px 15px 0;
	box-shadow: 0 30px 50px rgb(0 0 0 / 3%);
	border-bottom: 1px solid transparent;
	position: absolute;
	width: calc(100% - 30px);
	transform: translateY(0);
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
.management-item-position{
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--primary-color);
}
.management-item-name{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 10px;
	color: #232323;
}
.management-item-content-social{
	height: 0;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
}
.management-item .dark-button{
	display: none;
	-webkit-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	-o-transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
	margin: 0;
}
.management-item-content-social ul li:first-child{
	margin-left: 0;
}
.management-item-content-social ul li{
	display: inline-block;
	margin: 0 5px;
	padding: 0;
}
.management-item-content-social ul li a {
	position: relative;
	display: inline-block;
	text-align: center;
	color: #777;
	font-size: 16px;
}
.management-item-content-social ul li a:hover {
	color: #232323;
}
.management-item:hover .management-item-content{
	border-bottom-color: var(--primary-color);
	transform: translateY(-30px);
	border-bottom-width: 3px;
}
.management-item:hover .management-item-content-social{
	height: 32px;
	opacity: 1;
}
.modal-footer .dark-button{
	margin: 0;
}
.management-item .dark-button a, .modal-footer .dark-button a{
	padding: 5px 30px;
}
.management-item:hover .dark-button{
	display: block;
}

/* 
** Partnerships **
*/

.partner-image{
	min-height: 120px;
}
.partner-image img{
	max-height: 100px;
	max-width: 100%;
}
.partner-item{
	margin-bottom: 40px;
	position: relative;
	padding: 40px;
}
.partner-item h3{
	font-size: 30px;
	line-height: 30px;
	min-height: 60px;
}
.partner-item:hover{
	-webkit-box-shadow: 0 0 1.25rem rgb(0 0 0 / 5%);
	box-shadow: 0 0 1.25rem rgb(0 0 0 / 5%);
	border-radius: 2px;
}
@media only screen and (max-width: 600px) {
	.partner-item{
		text-align: center;
	}
}

/* 
** Newsletters **
*/

.newsletter-page-container{
	background-color: #F7F9FA;
}
#mc_embed_signup {
	background: #fff;
	clear: left;
	max-width: 500px;
	margin: 0 auto;
	border: 1px solid #efefef;
	border-radius: 8px;
	padding: 40px;
}
#mc_embed_signup .indicates-required{
	color: red;
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
	margin: 2px 0 0 0;
}
#mc_embed_signup div#mce-responses{
	margin: 0 5% 0 0 !important;
}
#mc_embed_signup div.response, #mc_embed_signup div.response{
	margin: 0 0 1em 0 !important;
}
.newsletters-list{
	max-width: 500px;
	border: 1px solid #efefef;
	border-radius: 8px;
	margin: 0 auto;
	margin-top: 40px;
	background-color: #ffffff;
}
.newsletters-list .row>div{
	border-bottom: 1px solid #efefef;
	padding: 10px 0;
}
.simple-paragraph h3{
	margin-bottom: 20px;
}
.simple-paragraph ul{
	margin-bottom: 40px;
}
.case-study-content{
	margin-top: 40px;
}

.faq-section{
	margin-bottom: 80px;
}

/* 
** Request a Pickup **
*/

.request-a-pickup{
	justify-content: flex-start;
	max-width: 720px;
	margin: 40px 0;
}
.request-a-pickup input, .request-a-pickup textarea,
.request-a-pickup select{
	width: 100%;
	padding: 0 1em;
	outline: 0;
	transition: all .2s ease;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	background-color: #ffffff;
	font-size: 12px;
	color: #5e5e5e;
	height: 40px;
}
.request-a-pickup label{
	width: 100%;
	font-size: 12px;
	color: #222;
	margin-bottom: 15px;
}
.request-a-pickup [type=submit] {
	background: var(--primary-color);
	color: #ffffff;
	border-color: #ffffff;
	font-weight: 500;
	margin-top: 15px;
}
.request-a-pickup [type=submit]:hover{
	opacity: 0.8;
}
.request-a-pickup-span{
	display: block;
	font-size: 12px;
	color: #222;
}
.request-a-pickup .radio-button input{
	height: auto;
	width: auto;
}
.items-we-accept-container{
	justify-content: left !important;
}
.items-we-accept-container .col-md-4{
	margin-bottom: 40px;
}
.services .table td{
	text-align: center;
	width: 33.33%;
}


.wpcf7-radio .wpcf7-list-item, .wpcf7-checkbox .wpcf7-list-item{
	display: flex;
	align-items: center;
}
.wpcf7-radio, .wpcf7-checkbox{
	margin-top: 20px;
	display: block;
}
.wpcf7-radio input[type="radio"], .wpcf7-checkbox input[type="checkbox"] {
	width: auto;
	height: auto;
	cursor: pointer;
}
span.wpcf7-list-item-label{
	font-size: 12px;
	margin-left: 16px;
}
.testimonials-after {
	margin-top: 490px;
}
@media only screen and (max-width: 1024px) {
	.testimonials-after {
		margin-top: 600px;
	}
}
@media only screen and (max-width: 768px) {
	.testimonials-after {
		margin-top: 490px;
	}
}
@media only screen and (max-width: 600px) {
	.testimonials-after {
		margin-top: 690px;
	}
}


.service-page-banner{
	height: 500px;
	min-height: 300px;
}
.service-page-banner .header-banner-content{
	justify-content: center;
}
.service-hero{
	background-color: #fff;
	box-shadow: 2px 2px 10px 3px rgb(0 0 0 / 14%);
	height: 200px;
	position: absolute;
	top: -100px;
	z-index: 9;
	left: 0;
	right: 0;
	border-radius: 8px;
	width: 98%;
	margin: 0 auto;
}
.service-hero-content{
	padding: 32px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.service-hero-column-contact-button{
	display: block;
	position: relative;
	overflow: hidden;
	--tw-border-opacity: 1;
	border-color: var(--primary-color);
	white-space: nowrap;
	padding-right: 2.5rem;
	height: 2.75rem;
}
.service-hero-column-contact-button:before{
	width: 46px;
	transform: translateX(0) translateY(0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
	content: "";
	display: block;
	position: absolute;
	right: 1.5rem;
	top: 0px;
	bottom: 0px;
	background-color: var(--primary-color);
}
.service-hero-column-contact-button:after{
	width: 46px;
	transform: translateX(0) translateY(0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
	content: "";
	display: block;
	position: absolute;
	right: 0.75rem;
	top: 0px;
	bottom: 0px;
	border-right-width: 4px;
	border-top-width: 4px;
	border-color: var(--primary-color);
	border-style: solid;
}
.service-hero-column-contact-number{
	position: relative;
	--tw-bg-opacity: 1;
	background-color: var(--primary-color);
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, 1);
	font-weight: 600;
	line-height: 1.25;
	border-radius: 9999px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	z-index: 10;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
}
.service-hero-column-contact-link{
	font-weight: 600;
	padding-left: 0.75rem;
	font-size: 14px;
	margin-top: 10px;
	display: block;
}
.service-hero-column-title{
	font-size: 20px;
	letter-spacing: 0.08em;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 600;
}
.service-hero-column-title-1 a{
	font-size: 16px;
	color: var(--primary-color);
}
.badge img{
	height: 80px;
}
.service-hero-column-badges{
	text-align: center;
}
.service-hero-column h2{
	font-size: 32px;
	font-weight: 600;
	line-height: 2.25rem;
}
@media only screen and (max-width: 1024px) {
	.service-page-banner{
		height: 400px;
	}
}
@media only screen and (max-width: 768px) {
	.service-page-banner .header-banner-content{
		justify-content: flex-start;
	}
	
	.service-hero-column3{
		display: none;
	}
	.service-hero{
		width: 95%;
		margin: 0 auto;
		font-size: 80%;
	}
	.service-hero h2{
		font-size: 24px;
		line-height: 46px;
	}
}
@media only screen and (max-width: 600px) {
	.service-hero{
		display: none;
	}
	.service-page-container{
		padding: 0px;
		padding-top: 60px;
	}
	.about-us .col-md-6{
		margin-top: 0 !important;
	}
	.service-page-banner{
		min-height: 100%;
	}
	.single-services .service-page-container{
		        padding-top: 32px;
}
}
.mobile-fixed-cta{
	margin: 0 auto;
	width: 97%;
	display: flex;
	justify-content: space-around;
	position: fixed;
	bottom: 5px;
	left: 0;
	right: 0;
	z-index: 9999999;
	background-color: var(--primary-color);
	border-radius: 10px;
	display: none;
}
.mobile-fixed-cta a{
	border: 2px solid #ffffff;
}
@media only screen and (max-width: 600px) {
	.mobile-fixed-cta{
		display: flex;
	}
	.mobile-fixed-cta .dark-button{
		margin: 20px;
		width: 100%;
	}
}

.grecaptcha-badge { 
	visibility: hidden;
}
.about-video-column{
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}
@media only screen and (max-width: 768px) {
	.about-video-column .description{
		margin-top: 40px;
	}
}

.form-phone-link{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 500;
}
/* .form-phone-link:hover{
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
} */
.form-phone-link svg{
	width: 32px !important;
	height: 32px !important;
	padding: 7px;
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	margin-right: 5px;
}
@keyframes shake {
	10%, 90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%, 80% {
		transform: translate3d(2px, 0, 0);
	}

	30%, 50%, 70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%, 60% {
		transform: translate3d(4px, 0, 0);
	}
}
