/**

 * Theme Name: E4K Framework
 * Theme URI: http://www.e4k.co
 * Author: E4K Dev Team
 * Author URI: http://www.e4k.co
 * Description: Custom WordPress Theme created by the E4K Development Team. This theme is just a template to help build up the process speed of creating a website. This theme is using WordPress coding standards
 * Version: 0.97.0
 */


/**
|---------------------
| =Global Styles
|---------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    color: #3A3A3A;
}

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #ffffff !important;
    color: #3A3A3A !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: default;
}

p {
    cursor: default;
}

a {
    cursor: pointer;
}

img {
    max-width: 100%
}

h1 { font-size: 2.3em; }
h2 { font-size: 1.7em; }
h3 { font-size: 1.17em; }
h4 { font-size: 1.12em; }
h5 { font-size: .83em; }
h6 { font-size: .75em; }

ul{
	/*list-style-type: none;*/
}
/**
|---------------------
| =Header
|---------------------
*/

div.fixed-header {
	position: relative;
}
div.fixed-header nav.fixed-menu-header {
	position: fixed;
	width: 100%;
	top: 0;
}
nav.navbar-default {
    background-color: #fff;
    position: relative;
    padding: 10px 20px;
	border-bottom: 5px solid #A9A9A9;
	border-top: 5px solid #A9A9A9;
}

nav.navbar-default ul.nav a {
    color: #232023;
    text-transform: capitalize;
    font-size: 20px;
    transition: all .5s ease;
    font-weight: bold;
    text-shadow: none;
}

nav.navbar-default ul.nav a:hover,
nav.navbar-default ul.nav a:focus {
    background-color: transparent;
    color: #A9A9A9;
}

nav.navbar-default ul.dropdown-menu {
    background-color: #f0f0f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .20);
    border: none;
    z-index: 1001;
    left: 50%;
    transform: translate( -50%, 0 );
    padding: 0;
}

nav.navbar-default ul.dropdown-menu a {
    padding: 15px 0;
    text-align: center;
    min-width: 175px;
    border-bottom: 1px solid #cccccc;
}

nav.navbar-default ul.dropdown-menu li:last-of-type a {
    border-bottom: none;
}

.is_flex {
    display: flex;
    align-items: center;
    position: relative;
}

div.header_navigation {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

div.header_navigation a.contact {
    margin-right: 15px;
    color: #3A3A3A;
}

header#navbar-wrapper {
    position: relative;
    z-index: 10001;
}

.logo_wrap img {
    max-width: 200px;
}

div#nav_button {
    position: absolute;
    right: 0;
    font-size: 24px;
    color: #A9A9A9;
    display: none;
}

div#nav_button:hover {
    cursor: pointer;
}

ul#menu-primary {
    margin-right: 20px;
}

nav.navbar-default ul.dropdown-menu {
    background-color: #FFF;
}

nav.navbar-default ul.dropdown-menu li {
    padding: 0 20px;
}

div.social-media div {
    display: inline-block;
    margin-left: 7px;
}

div.social-media * {
    color: #fff;
    font-size: 18px;
}
div.social-media i {
	color: #A9A9A9;
}
div.social-media *:hover {
    text-decoration: none;
}

/**
|---------------------
| =Mobile Menu
|---------------------
*/

div#mobile_navigation {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #A9A9A9;
    width: 60%;
    z-index: 9999999;
    height: 100vh;
    transform: translate(100%, 0);
    transition: .3s ease-in-out;
    border-left: 2px solid #FFF;
}

.navMove {
    transform: translate(0%, 0)!important;
}

div.mobile_nav_container {
    margin-top: 85px;
    /*text-align: center;*/
    max-width: 100%;
    overflow: hidden;
}

div.mobile_nav_container ul {
    margin: 0;
}

div.mobile_nav_container ul,
div.mobile_nav_container li {
    width: 100%;
}

div.mobile_nav_container li {
    margin-bottom: 18px
}

div.mobile_nav_container li a {
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
}

div.mobile_contact {
    margin-bottom: 15px;
    margin-top: 20px;
    text-align: center;
}

div.mobile_nav_container li a:hover {
    background-color: transparent!important;
    text-decoration: underline;
}

.current-menu-item a {
	color: #A9A9A9 !important;
}

div#nav_close {
    position: absolute;
    right: 17px;
    top: 38px;
    color: #FFF;
    font-size: 24px;
}

div.mobile_contact a i {
    color: #FFF;
    font-size: 22px;
    margin-right: 10px;
}

@media (max-width: 991px) {
    nav.navbar-default {
        padding: 15px;
    }
    div.header_navigation {
        display: none;
    }
    div#nav_button {
        display: block;
    }
}

/**
|---------------------
| =Footer
|---------------------
*/

footer#main-footer {
    /* background-color: #232023d6; */
    background-color: /*#a97347*/#fff;
    color: #000;
	border-top: 5px solid #A9A9A9;
}
footer#main-footer a {
	color: /*#fff*/ #000;
	padding: 0px 0px 15px 0px;
}
footer#main-footer a:hover, footer#main-footer a:focus {
	background: transparent;
	text-decoration: underline;
}
div.footer-logo {
	margin-top: 20px;
}
div.social-media a:hover, div.social-media a:focus {
	text-decoration: none !important;
}
div.footer-contents {
	padding: 30px 0px;
}
div.footer-menu div.menu-navbar-container ul li {
	 display: contents;
}

div.footer_privacy {
    text-align: center;
}

div.footer_privacy p a {
    color: #FFF;
    text-decoration: underline;
}

div.footer_powered p a {
    color: #96CA1E;
}
div.footer-affiliates div.social-media i {
	color: #A9A9A9;
}
div.copyright {
    border-top: 5px solid #A9A9A9;
}

div.footer-contact ul {
	padding: 0px;
}
div.footer-contact ul li {
	list-style: none;
	/* padding-bottom: 15px; */
	display: flex;
    align-items: baseline;
}
div.footer-contents h3 {
	font-size: 20px;
	text-transform: uppercase;
}
div.footer-contact i {
	margin-right: 10px;
	color: #A9A9A9;
}

@media (max-width: 991px) {
    .footer_copyright,
    .footer_powered {
        text-align: center;
    }
    .footer_copyright p,
    .footer_powered p {
        float: none!important;
    }
}

/*
 * Side details
*/

div.side_phone,
div.side_email {
        position: fixed;
    top: 175px;
    right: 0;
    z-index: 1020;
    padding: 6px 5px 7px 50px;
    background-color: #A9A9A9;
    border: 1px solid #A9A9A9;
    -ms-transform: translateX(100%) translateX(-45px); /* IE 11 */
    -webkit-transform: translate(calc(100% - 45px));
    transform: translate(calc(100% - 45px));
    transition: .5s ease-out;
    display: flex;
    align-items: center;
}

div.side_phone {
    top: 222px;
    height: 45px;
}

div.side_email {
    top: 269px;
    height: 45px;
}

.number_icon,
.email_icon{
    position: absolute;
    background-color: #FFF;
    width: 45px;
    height: 45px;
    left: 0;
    top: -1px;
    border: 1px solid #A9A9A9;
    color: #A9A9A9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
}

div.side_email:hover,
div.side_phone:hover {
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
    transition-timing-function: ease-in-out;
}

div.side_phone h3,
div.side_email h3 {
    margin: 0;
    color: #FFF;
    cursor: pointer;
}

/*
 * Home Styles
*/

div.slider {
    /* margin-bottom: 30px; */
	height: 550px;
}

div.slider *:focus {
    outline: none;
}

div.slider-image {
    position: relative;
    overflow: hidden;
}

div.slider-image img {
    height: 550px;
    width: 100%;
	object-fit: cover;
}

div.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: #232023d6; */
	background-color: #00000050;
}

div.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    width: 50%;
    text-transform: capitalize;
}
div.slider-content h1, div.page-banner-content h1 {
	font-size: 50px;
}

/*slider dots*/
.slick-dots {
	display: flex;
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
}

.slick-dots li button {
	font-size: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	background: transparent;
	border-radius: 50%;
	margin: 0 5px;
}

.slick-dots li.slick-active button {
	width: 20px;
	height: 20px;
	background: var(--hover);
	border-color: var(--hover);
}

div.common-button a, div.home-contact-form-section button {
	margin: 15px 0px;
    padding: 10px 30px;
    background: #A9A9A9;
    display: inline-block;
    /* border-radius: 5px; */
    color: #232023;
    text-decoration: none;
	border:1px solid #A9A9A9 !important;
}
div.common-button a:hover, div.home-contact-form-section button:hover {
    background: #ffffff;
    /* color: #fff; */
}

div.about-section {
    margin-bottom: 30px;
}

div.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

div.about-section h2 {
	margin-top: 0;
}

div.services-header {
    text-align: center;
}

div.services-item {
    margin-bottom: 30px;
}

div.services-item a {
    color: #000;
}

div.contact-banner {
    position: relative;
    overflow: hidden;
}

div.contact-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

div.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.5);
}

div.contact-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: 90%;
    text-align: center;
    font-size: 20px;
}

.btn {
    border: 2px solid #000;
    color: #000;
    background-color: #fff;
    padding: 8px 20px;
    transition: .5s ease-in-out;
}

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

/* About Page */

div.page-banner {
    position: relative;
    overflow: hidden;
}

div.page-banner img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

div.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: #232023d6; */
}

div.page-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    width: 90%;
}

div.about-content {
    margin: 30px 0px;
}

div.about-item {
    margin-bottom: 30px;
}

/* Contact Us */

div.contact-page {
    margin: 30px 0px;
}

div.contact-form div.input-field {
    margin-bottom: 15px;
}

div.contact-form div.input-field input {
    border: 2px solid #000;
    padding: 5px 10px;
    width: 100%;
}

div.contact-form div.textarea {
    margin-bottom: 10px;
}

div.contact-form div.textarea textarea {
    border: 2px solid #000;
    padding: 5px 10px;
    width: 100%;
}

div.contact-form div.submit-button {
    text-align: center;
}

div.contact-form div.submit-button input {
    color: #fff;
    background-color: #000;
    border: 2px solid #000;
    padding: 8px 20px;
    transition: .5s ease-in-out;
}

div.contact-form div.submit-button input:hover {
    background-color: #000;
    color: #fff;
}

div.contact-details-header h3 {
    margin-top: 0;
}

div.contact-details div {
	margin-bottom: 15px;
}

div.contact-details div * {
    display: inline-block;
    color: #000;
    margin: 0;
    margin-right: 10px;
}

div.services-page-section {
    margin: 30px 0px;
}

.mobile {
    display: none!important;
}

@media only screen and (max-width: 767px) {
    div.slider {
        margin-bottom: 10px;
    }
    div.slider-image {
        height: 175px;
    }
    div.slider-content h1 {
        font-size: large;
    }
/*    .desktop {
        display: none!important;
    } */
    .mobile {
        display: block!important;
    }
    div.side_phone,
    div.side_email {
        display: none;
    }
    div.contact-banner {
        height: 350px;
    }
    div.page-banner {
        height: 200px;
    }
}

@media only screen and (max-width: 768px) {
	div#mobile_navigation {
		overflow-y: scroll;
	}

	#mobile_navigation .dropdown-menu {
		position: inherit;
		background-color: transparent;
	}

	div.mobile_nav_container .dropdown-menu li a{
		white-space: initial;
		text-decoration: none;
	}

	div.mobile_nav_container li a:hover,div.mobile_nav_container li a:focus{
		background-color: transparent !important;
   		text-decoration: none;
		color:#ffffff !important;
	}
}


@media only screen and (max-width: 768px) {
	div.mobile_nav_container li a{
		font-size:16px;
	}
	div.mobile_nav_container .dropdown-menu li a{
		font-size:14px;
	}

	div.mobile_nav_container .nav>li>a{
		padding: 5px 10px;
	}
	div.mobile_contact{
		margin-bottom:30px;
	}
	#mobile_navigation .dropdown-menu{
		border: none;
    	box-shadow: none;
	}
	#menu-primary-1 li>a{
		padding-top:5px !important;
		padding-bottom:5px !important;
	}
	#menu-primary-1 .dropdown-menu>li>a{
		padding: 3px 20px;
	}
	div.mobile_nav_container li{
		margin-bottom:unset;
	}
}


@media only screen and (max-width: 768px) {
	div#mobile_navigation{
		width:100%;
	}

	div.mobile_nav_container div.menu-navbar-container .dropdown-menu.active {
		display: block;
	}

	div.mobile_nav_container div.menu-navbar-container ul.navbar-nav a i.toggle {
		float:right;
		font-size: 34px;
		right: 0;
		top: 0;
		/*text-align: center;*/
		width: 60px;
		line-height: 30px;
		height: 100%;
		color: #bbb;
		transition: all .6s ease;
	}

	div.mobile_nav_container div.menu-navbar-container ul.navbar-nav a .fa-angle-down:before{
		position: absolute;
		border-left: 1px solid #bbb;
		padding-left:10px;
	}

	div.mobile_nav_container div.menu-navbar-container ul.navbar-nav a {
		padding: 12px 15px;
		position: relative;
		border-bottom: 1px solid #fff;
		text-transform: uppercase;
		width: 100%;
	}

	div.mobile_nav_container div.menu-navbar-container ul.navbar-nav a{
		display: flow-root;
	}
	div.mobile_nav_container div.menu-navbar-container ul.navbar-nav a .fa-angle-down:before{
		top: 0px;
	}

}

/********* ACF field **********/

.af-submit{
	padding: 15px 16px !important;
}

.acf-field[data-width] + .acf-field[data-width]{
	border-left: unset !important;
}

.acf-fields > .acf-field{
	border-top-color: transparent !important;
}

.acf-fields > .acf-field{
	padding: 5px 16px !important;
}

.gallery-item{
  margin-bottom: 30px;
}

.acf-field-63b513cecb2d4{
	display:none !important;
}


/* Hope Page */

.padding-unset {
	padding: 0px;
}
div.logo-slider-img {
	padding: 0px 15px;
}
div.logo-slider-section {
	/* background: #A9A9A9; */
	padding: 50px 0px;
}
div.bg-clr {
	/* background-color: #5188c0; */
}
div.logo-slider-img img {
	height: 150px;
	width: 100%;
	object-fit: contain;
}
div.our-services-bg {
	height: 700px;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
	background-position: center center;
}
div.our-services-bg img {
	/* height: 800px; 
	width: 100%;
	object-fit: cover; */
}
div.home-our-services-section {
	position: relative;
}
div.overlay-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	/* background: #232023d6; */
}
div.home-our-services {
	position: absolute;
    top: 50%;
    width: 80%;
    height: 100%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
div.our-services-header h2 {
	color: #fff;
	font-size: xx-large;
}
div.our-services-header h2:before {
	content: "";
    position: absolute;
    top: 75px;
	transform: translate(-50%, -50%);
    left: 50%;
    width: 40px;
    height: 4px;
    background: #A9A9A9;
}
div.our-services-container {
	background: #fff;
    padding: 15px;
	width: 95% !important;
	transition: .5s ease;
	border: 5px solid #A9A9A9;
}
div.our-services-container-img {
	position: relative;
}
div.our-services-container:hover {
	/* transform: scale(1.05); */
}
.our-services-container.testimonial-container:hover {
	transform: scale(1);
}
/*.our-services-btn.common-button a {
	background: #ffbd39;
}*/
div.our-services-container img {
	height: 300px;
	width: 100%;
	object-fit: cover;
}
div.our-services-content h3 {
	font-size: 22px;
}
div.our-services-content p, div.blog-post-title h2, div.our-services-content h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
	-webkit-box-orient: vertical;
}
div.our-services-content h3 {
	-webkit-line-clamp: 1;
}
.our-services-content.services-page-container p {
	display: -webkit-inline-box;
    margin: 0;
}
div.services-content-container {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
	-webkit-box-orient: vertical;
}
div.our-blogs-title h2 {
	text-align: center;
	color: #232023;
}

.get-in-touch.our-services-header h2{
	color:#fff;
	text-align: center;
}

div.blogs-section, div.services-page-section, div.missing-content-message {
	margin: 50px 0px;
}
div.blog-img img {
	height: 200px;
	width: 100%;
	object-fit: contain;
}
div.blog-img {
	position: relative;
}
div.blog-img-overlay {
	position: absolute;
    height: 0%;
    width: 100%;
    top: 0;
    background: #A9A9A9;
	opacity:0.5;
	transition: .5s ease;
}
div.blog-display:hover div.blog-img-overlay, div.our-services-container:hover div.blog-img-overlay {
	height: 100%;
}
div.get-in-touch-section {
	margin-bottom: 50px;
}
.get-in-touch.our-services-header h2:before {
	background: /*#fff*/#d8bb77;
	top: 125px;
}
div.get-in-touch {
	text-align: center;
	padding: 50px 0px;
	background: /*#d8bb77*/#A9A9A9; 
}
div.get-in-touch p {
	font-size: x-large;
	margin: 10px 0px;
	/*color: #232023;*/color:#ffffff;
}
div.get-in-touch p a {
	/*color: #232023;*/
	color:#fff;
}
div.get-in-touch p a:hover {
	color: ##ffffff;
	text-decoration:underline;
}
div.home-testimonials-bg img, .our-services-bg.home-testimonials-bg {
	height: 450px;
}
div.testimonial-container {
	width: 95% !important;
	padding: 30px 15px;
	text-align: left;
	border: 5px solid #A9A9A9;
}
div.home-testimonials-services {
	padding-top: 30px;
}
div.testimonial-name {
	font-size: 20px;
	color: #232023;
	font-weight: 700;
}
div.home-contact-form-section button {
	border: 0px;
}
div.home-contact-form-section input {
	height: 45px;
}
div.home-contact-form-section input, div.home-contact-form-section textarea {
	border-radius: 5px;
    border: 3px solid #A9A9A9;
	outline: none;
}
.get-in-touch-btn.common-button a {
	background: /*#fff*/ #A9A9A9;
}

.get-in-touch-btn.common-button a:hover{
	background: #fff;
}

div.blog-display {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 15px;
	border: 5px solid #A9A9A9;
}

/* Services */

div.services-page-section div.our-services-container {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin-bottom: 30px;
    width: 100% !important;
}

/* Contact Us */

div.contact-details i {
	color: #fff;
}
div.contact-details a p {
	cursor: pointer;
}
div.contact-details a p:hover {
	text-decoration: underline;
}
div.contact-details {
	background: #A9A9A9;
    padding: 50px;
    margin: 35px 0px 30px 0px;
	font-size: x-large;
}
div.missing-content-message {
	text-align: center;
}
div.missing-content-message img {
	height: 150px;
}
div.contact-page-get-in-touch div.get-in-touch {
	padding: 50px;
	height: 402px;
	position: relative;
}
div.contact-page-get-in-touch div.home-contact-details {
	position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 80%;
}


/* Pop Up */

div.services-popup {
	width: 75%;
	transform: translate(0%, -50%) !important;
    top: 50%;
	margin: auto;
}
div.services-popup button.close {
	color: #A9A9A9;
	font-size: x-large;
	font-weight: bold;
	opacity: 1;
	position: relative;
    top: 10px;
}
div.pop-up-img img {
	height: 300px;
	width: 100%;
	object-fit: cover;
}
div.services-popup .modal-header {
	border-bottom: 0 none;
	padding: 0px 15px;
}
div.services-popup .modal-footer {
	border-top: 0 none;
}
div.services-popup h3.modal-title {
	font-size: xx-large;
}
div.popup-content-container {
	max-height: 200px;
    overflow-y: scroll;
}
div.popup-content{
	display: flex;
	align-items: center;
}
div.popup-content-container {
	padding-right: 50px;
}
div.popup-content-container::-webkit-scrollbar {
	width: 5px;
}
div.popup-content-container::-webkit-scrollbar-thumb {
	background: #A9A9A9;
}

/* Gallery Pagination */

div.gallery-page-number {
	text-align: center;
}
div.gallery-page-number span, div.gallery-page-number a {
	padding: 5px 10px;
    background: #A9A9A9;
    color: #fff;
    margin: 0px 5px;
	border: 1px solid #A9A9A9;
}
div.gallery-page-number a {
	background: transparent;
	color: #A9A9A9;
}
div.gallery-page-number a:hover, div.gallery-page-number a:focus {
	background: #A9A9A9;
	color: #fff;
	text-decoration: none;
}
div.gallery-img-container video {
	height: 295px;
    width: 100%;
    object-fit: cover;
}

.padding-left {
	padding-left: 0px;
}
.padding-right {
	padding-right: 0px;
}

/* Single Service */

div.single-service-img img {
	height: 400px;
    width: 500px;
    float: right;
    border: 5px solid #A9A9A9;
    padding: 15px;
    margin-left: 30px;
    object-fit: cover;
}

@media only screen and (min-width: 1600px) {
	div.services-popup {
		width: 60%;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1400px) {
	div.our-services-container img{
		height:250px;
	}
	div.home-services-slider button{
		bottom:-15% !important;
	}
	div.page-banner img{
		height:400px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	div.home-services-slider button.slick-next{
		left:54%;
	}
	div.page-banner img{
		height:350px;
	}
}

@media only screen and (max-width: 1600px) {
	div.our-services-content h3 {
		font-size: 20px;
	}
}
@media only screen and (max-width: 1024px) {
	.logo_wrap img {
		max-width: 120px;
	}
}
@media only screen and (max-width: 768px) {
	div.slider-content h1, div.page-banner-content h1 {
		/*font-size: 30px;*/
	}
	.current-menu-item a {
		color: #232023 !important;
	}
	div.blog-display {
		margin-bottom: 30px;
	}
	.padding-left {
		padding-left: 15px;
	}
	.padding-right {
		padding-right: 15px;
	}
	div.home-testimonials-bg img, .our-services-bg.home-testimonials-bg{
		height: 500px;
	}
}
@media only screen and (max-width: 767px) {
	div.slider, div.slider-image {
		height: 300px;
	}
	div.slider-content {
		width: 100%;
		padding-left:15px;
		padding-right:15px;
	}
	div.footer-menu ul {
		padding-left: 15px;
	}
	div.popup-content {
		display: unset;
	}
	div.services-popup button.close {
		top: 0px;
	}
	div.services-popup {
		width: 95%;
	}
	div.home-contact-form-section div.af-field {
		width: 100% !important;
	}
	div.get-in-touch p{
		font-size: inherit;
	}
	.footer-logo img{
		max-width:200px;
	}
}



.acf-image-uploader .image-wrap{
	width: min-content;
}


div.home-services-slider button{
    background: #A9A9A9;
    border: unset;
    padding: 5px;
    border-radius: 3px;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: -12%;
    left: 47%;
}

div.home-services-slider button:hover{
	 background: /*#a97347*/#fff;
	 /*color:#000;*/
}

div.home-services-slider button img {
    height: 20px;
    width: 20px;
}

div.home-services-slider button.slick-next {
    left: 51%;
}

@media only screen and (max-width: 767px) {
	div.home-services-slider button.slick-next{
		left: 58%;
	}
	div.home-services-slider button{
		left: 45%;
	}
	div.our-services-container img{
		height:200px;
	}
	div.home-services-slider button{
		bottom: -15%;
	}
	div.our-services-bg{
		height:600px;
	}
	
}	