@charset "UTF-8";

/**
----------------
Table Of Content
----------------
0. Common CSS Start
1. Header CSS Start
2. Banner CSS Start
3. Service CSS Start
4. About CSS Start
5. Testimonial CSS Start
6. Page Action CSS Start
7. Footer CSS Start
*/

:root { 
    /* Colors */
    --brown_color: #ab8e66;
    --green_color: #1e3523;
    --light_green: #304835;
    --white_color: #ffffff;
    --off_white: #ececec;
    --black_color: #000000;
    --light_gray: #e7e6e6;

    /* Round */
    --round_sm: 5px;
    --round_md: 10px;
    --round_lg: 25px;
    --round_full: 50%;

    /* Typography */
    --h1: 32px;
    --h2: 29px;
    --h3: 26px;
    --h4: 23px;
    --h5: 20px;
    --h6: 18px;
    --lg: 18px;
    --bs: 16px;
    --sm: 14px;

    /* Duration */
    --transition: all ease-in-out .3s;

    /* Font Family */
    --body: "Lato", sans-serif;
    --heading: "Lato", serif;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

.home .flex-area .vc_column-inner {
	padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: auto !important;
    margin-right: auto !important;
}

.vc_column-inner {
	padding-top: 0 !important;
}

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
	margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span,
address,
blockquote {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

img,
svg {
    vertical-align: middle;
}

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

body {
    font-size: var(--bs);
    scroll-behavior: smooth;
	font-family: "Lato", sans-serif;
    color: var(--black_color);
    font-weight: 400;
}

h1 {
	font-family: "Playfair Display", serif;
    font-size: 50px;
	line-height: 55px;
	font-weight: normal;
}

h2 {
	font-family: "Playfair Display", serif;
    font-size: 30px;
	line-height: 38px;
	font-weight: normal;
	margin-bottom: 12px;
}
.wpb_text_column h2 {
	max-width: 450px;
}
.wpb_text_column h2.full-title {
	max-width: 100%;
}
h2.full-width, .align-center h2 {
	max-width: 100% !important;
}

h3 {
	font-family: "Playfair Display", serif;
    font-size: 25px;
	line-height: 30px;
	font-weight: normal;
	margin-bottom: 12px;
	margin-top: 25px;
}
.home h3 {
    font-size: 40px;
	line-height: 42px;
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

p {
	font-family: "Lato", sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 300;
	color: #000;
	margin-bottom: 12px;
}
.wpb_text_column ul, .wpb_text_column ol, .category-blog ul, .category-blog ol {
	list-style: disc;
	padding: 0 0 0 25px;
	margin: 10px 0 !important;
}
.wpb_text_column ol, .category-blog ol {
	list-style: numbers;
	padding-left: 20px;
}
.wpb_text_column ul li, .wpb_text_column ol li, .category-blog ul li, .category-blog ol li {
	font-family: "Lato", sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 300;
	color: #000;
	margin-bottom: 6px !important;
}
p strong, ul li strong, ol li strong, .category-blog ul li strong, .category-blog ol li strong {
	font-weight: 600 !important;
}

a {
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
p a, .wpb_text_column ul li a, .wpb_text_column ol li a, .category-blog ul li a, .category-blog ol li a  {
	color: #ab8e66;
	font-weight: normal;
}
p a:hover, .wpb_text_column ul li a:hover, .wpb_text_column ol li a:hover, .category-blog ul li a:hover, .category-blog ol li a:hover {
	color: #000;
}

.narrow-content {
	max-width: 90%;
	width: 1090px;
	margin: 0 auto;
}
.narrow-content-sml {
	max-width: 90%;
	width: 860px;
	margin: 0 auto;
}
.primary-btn {
    padding: 15px 30px;
    text-transform: uppercase;
    line-height: 20px;
	font-size: 18px;
    font-weight: 900;
    color: #fff !important;
    background-color: #ab8e66;
}
.primary-btn:hover {
    background-color: #304835;
}

.container {
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
	position: relative;
	width: 1200px;
	max-width: 92%;
}

/* Common CSS End */

.main-header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 5px solid var(--brown_color);
    background-color: var(--white_color);
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.sticky-nav {
	padding: 6px 0;
}

.main-header .logo-area img {
	width: 88px;
	height: 98px;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.sticky-nav .logo-area img {
	width: 70px;
	height: 78px;
}

.main-header p.header-action {
	font-size: 18px;
	line-height: 20px;
	padding-bottom: 12px;
	margin-bottom: 0;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.sticky-nav p.header-action {
	padding-bottom:2px;
}
.main-header p.header-action a {
    color: var(--brown_color);
    font-weight: 700;
}

.main-header .header-action a:hover {
    text-decoration: underline;
}

.nav-items li {
    float: left;
	padding: 6px 0 6px 22px;
}
.main-header .nav-items a {
    color: var(--black_color);
    text-transform: capitalize;
    font-weight: 700;
	font-size: 17px;
	padding-bottom: 30px;
}
.main-header .nav-items a:hover, .main-header .nav-items li.current-menu-item a, .main-header .nav-items li.current-menu-parent a, .main-header .nav-items li.current_page_parent a {
    color: var(--brown_color);
}
.main-header li.nav-btn {
	padding-top:0;
}
.main-header li.nav-btn a {
    padding: 8px 16px;
    text-transform: uppercase;
	font-size: 15px;
	font-weight: 900;
    color: #fff !important;
    background-color: #ab8e66;
}
.main-header li.nav-btn a:hover {
    background-color: #304835;
}

.main-nav .sub-menu {
	-webkit-transition: .3s;-moz-transition: .3s;-ms-transition: .3s;-o-transition: .5s;transition: .3s;
	position: absolute;
	top: 105px;
	left: 0;
	background: #fff;
	padding: 30px 20px 20px 25px;
	z-index: 10000;
	display: none;
	text-align: left;
	width: 100%;
	border-bottom: 5px solid var(--brown_color);
}
.sticky-nav .sub-menu {
	top: 95px;
}
.main-nav .sub-menu li {
	float: left;
	padding: 0 0 6px 0 !important;
	margin-bottom: 6px !important;
	border-bottom: 1px solid #ddd;
	display: block;
	width: 30.333%;
	margin: 0 1.5%;
	line-height: 19px;
}
.main-nav .sub-menu li(3n+1){
	clear: left;
}
.main-nav .sub-menu li.sub-nav-title {
	width: 100%;
	float: none;
	line-height: 30px;
	font-family: "Playfair Display", serif;
	border-bottom: none;
	margin-bottom: 12px !important;
}
.main-nav .sub-menu li a {
	color: #000 !important;
	border: 0;
	padding: 0 !important;
	cursor: pointer;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
}
.main-nav .sub-menu li.sub-nav-title a {
	font-size: 26px;
	line-height: 30px;
}
.main-nav .sub-menu li a:hover, .main-nav .sub-menu li.current-menu-item a {
	padding: 0 !important;
	border: 0 !important;
	color: #ab8e66 !important;
}


/* ------------------- Mobile Menu --------------------- */

#mobile-menu {
	display: none;
	position: absolute;
	top: 36px;
	right: 0;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.sticky-nav #mobile-menu {
	top: 28px;
}
#mobile-menu .sub-menu, #mobile-menu input:checked ~ nav .sub-menu {
	display: none;
}
input#burger {
	display: none;
}
#mobile-menu input + label {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 34px;
  z-index: 99995;
}
#mobile-menu input + label span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 9px;
  margin-top: -1px;
  left: 0;
  display: block;
  border-radius: 12px;
  background: #ab8e66;
  transition: .5s;
}
#mobile-menu input + label:hover span {
  background: #000;
}
#mobile-menu input + label span:first-child { top: 0; }
#mobile-menu input + label span:last-child { top: 18px; }
#mobile-menu label:hover { cursor: pointer; }
#mobile-menu input:checked + label span {
  opacity: 0;
  top: 50%;
  background: #ffffff;
}
#mobile-menu input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(45deg);
}
#mobile-menu input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-45deg);
}
#mobile-menu input ~ nav {
	background: rgba(36,36,36,1);
  position: fixed;
	padding: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 0;
  z-index: 99994;
  transition: .5s;
  transition-delay: .5s;
  overflow: scroll;
}
#mobile-menu input ~ nav .mobile-links {
  opacity: 0;
  transition: .5s;
  transition-delay: 0s;
}
#mobile-menu input:checked ~ nav .mobile-links {
  opacity: 1;
  transition-delay: .5s;
}
#mobile-menu input ~ nav ul {
  list-style: none;
  margin: 0;
  padding: 90px 0 10px 0;
	text-align: left;
}
#mobile-menu input ~ nav ul ul {
	padding: 10px 0 0 0;
}
#mobile-menu input ~ nav ul li {
  opacity: 0;
  transition: .5s;
  transition-delay: 0s;
  display: block;
  padding: 0 0 15px 0;
	font-size: 18px;
	line-height: 18px;
	font-weight: normal;
}
#mobile-menu input ~ nav ul li ul li {
  padding: 0 0 8px 0;
	font-size: 15px;
	line-height: 15px;
	font-weight: 300;
}
#mobile-menu input ~ nav ul li a {
  text-decoration: none;
  color: #ffffff;
	cursor: pointer;
	display: inline-block;
}
#mobile-menu li.nav-btn {
	margin-top: 10px;
}

#mobile-menu input ~ nav ul li a:hover, #mobile-menu input ~ nav ul li.current-menu-item a, #mobile-menu input ~ nav ul li.current-menu-parent a {
	color: #ab8e66;
}
#mobile-menu input ~ nav ul li ul li a {
  color: #ffffff !important;
}
#mobile-menu input ~ nav ul li ul li a:hover, #mobile-menu input ~ nav ul li ul li.current-menu-item a {
	color: #ab8e66 !important;
}
#mobile-menu input:checked ~ nav {
  height: 100%;
  transition-delay: 0s;
}
#mobile-menu input:checked ~ nav ul li {
  opacity: 1;
  transition-delay: .5s;
}
#mobile-menu input ~ nav p {
	color: #fff;
  opacity: 0;
  transition-delay: 0;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
	-webkit-transition: 0.4s;-moz-transition: 0.4s;-ms-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;
}
#mobile-menu input:checked ~ nav p {
  opacity: 1;
  transition-delay: 0.6s;
}


/* Header CSS End */

.main-banner {
    background: url(../images/features/multi-disciplinary-clinic.jpg) no-repeat center / cover;
}
.main-banner-overlay {
	padding-top: 30px;
    height: 520px;
	background: rgba(0,0,0,0.25);
}
.main-banner h1 {
	font-weight: 500;
	font-size: 50px;
	line-height: 55px;
}
.main-banner p {
	font-size: 32px;
	line-height: 38px;
	font-weight: 300;
}
.main-banner .primary-btn {
    padding: 16px 30px;
	font-size: 20px;
	margin: 0 auto;
}
.home-header-text {
	text-align: center;
	padding: 0 !important;
}
.home-header-text p {
	max-width: 90%;
	width: 550px;
	margin: 10px auto 15px auto;
}

.banner-bottom {
    width: 100%;
    background-color: #304835;
    padding: 45px 0 95px 0;
}

.banner-bottom p {
	font-family: "Playfair Display", serif;
	font-size: 24px;
	line-height: 32px;
    color: #fff;
}
.home .banner-bottom p {
	font-size: 28px;
	line-height: 30px;
}
.banner-bottom .vc_col-sm-12 .vc_col-sm-12 p {
	font-size: 24px;
	line-height: 30px;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.banner-bottom-left p {
	font-family: "Lato", sans-serif;
	font-weight: normal;
	line-height: 30px;
}
.banner-bottom-right p {
	font-family: "Lato", sans-serif;
	font-size: 20px;
	line-height: 28px;
}
/* Banner CSS End */

.inner-header {
    background: url(/wp-content/uploads/2024/10/skin-treatment.jpg) no-repeat center / cover;
}
.blog-header {
	padding: 80px 0;
	background: #304835;
}
.blog-header h1 {
	color: #fff;
}
.post-template-default p {
	margin-bottom: 20px !important;
}
.inner-header-overlay {
	padding: 120px 0;
	background: rgba(0, 0, 0, 0.2);
}
.inner-header p {
	font-size: 26px;
	line-height: 32px;
	margin: 5px 0 15px 0;
}

.about .top h3 {
    font-size: var(--h2);
    font-weight: 500;
}

.about .top h2 {
    --h1: 44px;
    font-size: var(--h1);
    font-weight: 500;
}

.about .top a {
    color: var(--brown_color);
    font-weight: 500;
}

.about .top a:hover {
    text-decoration: underline;
}

.about .middle {
    height: 540px;
    background: url(../images/about/banner.jpg) no-repeat center / cover;
    border-bottom: 4px solid var(--light_green);
}

.about .middle .middle-content {
    transform: translateY(-260px);
    -webkit-transform: translateY(-260px);
    -moz-transform: translateY(-260px);
    -ms-transform: translateY(-260px);
    -o-transform: translateY(-260px);
}

.about .middle .middle-content blockquote {
    color: var(--white_color);
    font-style: italic;
    font-size: var(--lg);
}

.about .bottom h3 {
    font-size: var(--h2);
    font-weight: 500;
}

.about .bottom .cover {
    padding: 40px 60px;
    background: url(../images/about/cover.jpg) no-repeat center / cover;
    color: var(--white_color);
    margin-bottom: 48px;
}

.about .bottom .cover h2 {
    --h1: 40px;
    font-size: var(--h1);
    font-weight: 500;
}

.about .bottom .cover p {
    font-weight: 300;
    font-size: var(--lg);
}

.about .bottom h2 {
    --h1: 36px;

    font-size: var(--h1);
    font-weight: 500;
}

.about .bottom a.asdf {
    color: var(--brown_color);
    font-weight: 500;
}

.about .bottom a.asdf:hover {
    text-decoration: underline;
}
/* About CSS End */

#reviews-area .ts-slider-container a {
	color: #000 !important
}
#reviews-area .centered-btns_nav {
	background-color: transparent !important;
    background-image: url(../images/misc/arrows.png) !important;
}
#reviews-area .ts-slider-container a {
	mix-blend-mode: multiply;
}
#reviews-area .centered-btns_nav {
	mix-blend-mode: multiply;
}
#reviews-area .ts-sliderText {
	max-width: 950px !important;
	padding: 0 10% 20px 10%;
	margin-left: auto !important;
	margin-right: auto !important;
}
#reviews-area div.cleanslate {
	display: block !important;
	background: #fff !important;
	margin: 20px auto !important;
	max-width: 100%;
}
#reviews-area div div div {
	display: none !important;
}
#reviews-area div ul div {
	display: block !important;
}

#testimonial-list div.ts-reviewTitle, #testimonial-list div.ts-reviewTitle a {
	color:#000 !important;
	text-transform: capitalize !important;
	font-weight: 600 !important;
}
#testimonial-list .ts-reviewlist-logo {
	display: none !important;
}
#testimonial-list #tsLoadMore {
	padding: 8px 16px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 900;
    color: #fff !important;
    background-color: #ab8e66 !important;
}
#testimonial-list .ts-reviewContainer {
	background: #e7e6e6 !important;
	padding: 20px !important;
	margin-bottom: 15px !important;
}

#showmore-area {
	padding-bottom: 50px;
}
.showmore {
	text-align: center;
	position: relative;
	font-size:0;
	margin: 0 auto 40px auto !important;
}
.showmore:before {
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 10px;
	content: "";
	background: #b8b8b8;
	z-index: 1;
	display: block;
}
.showmore:after {
	width: 110px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 0;
	content: "Read more";
	background: #fff;
	z-index: 2;
	text-align: center;
	color: #000;
	font-size: 16px;
	line-height: 20px;
	padding: 0 12px;
	display: inline-block;
	cursor: pointer;
	position: relative;
}
.showless:after {
	content: "Read less";
}

.clients {
	padding: 60px 0;
	background: #fff;
}
.clients img {
	margin: 10px 16px;
	display: inline-block;
}

.page-action {
    background: url(../images/features/amazing-results.jpg) no-repeat center / cover;
}
.page-action-overlay {
    padding: 120px 0;
	background: rgba(0,0,0,0.6);
	text-align: center;
}
.page-action p {
	font-size: 26px;
	line-height: 34px;
    font-weight: 300;
	margin: 0 auto 30px auto;
	width: 820px;
	max-width: 90%;
	text-align: center;
	color: #fff;
}
.page-action p.bigger-text {
	font-size: 32px;
	line-height: 40px;
	width: 700px;
}
.page-action p a:hover {
	color: #fff;
}
.page-action p span {
	color: #ab8e66;
    font-weight: normal;
}
.page-action p strong {
    font-weight: bold;
	display: inline-block;
}
.page-action .primary-btn {
    padding: 16px 30px;
	font-size: 20px;
	margin: 0 auto;
}

.content-area {
	padding: 80px 0;
}
.content-area-btm {
	padding-top: 30px;
}
.inner-top-feature {
    padding: 80px 32px;
    background-color: #fff;
	margin: -50px auto 0 auto;
	max-width: 90%;
	width: 1178px;
}
.features-area {
    padding: 40px 0 0 0;
    background-color: #fff;
}
.home .features-area {
    padding: 50px 50px 0 50px;
	margin-top: -50px;
}
.features-area a {
	display: block;
	float: left;
	text-align: center;
	color: #ffffff;
	text-decoration: none;
	width: 23.5%;
	height: 260px;
	overflow: hidden;
	margin-right: 2%;
	position: relative;
}
.features-area .vc_col-sm-3 {
	position: relative;
	max-width: 300px;
	margin: 0 auto;
}
.features-area .wpb_single_image {
	background: #000;
	margin-bottom: 0 !important;
}
.features-area .vc_col-sm-3 img {
	opacity: 0.75;
}
.features-area .vc_col-sm-3 a:before {
	content: "VIEW SERVICE";
	color: #fff;
	position: absolute;
	bottom: 26px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 9;
	padding-top: 80px;
	font-size: 14px;
}
.features-area h2.wpb_heading {
	position: absolute;
	bottom: 66px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 8;
	font-size: 18px;
	line-height: 20px;
	max-width: 80%;
	margin: 0 auto;
}
.features-area .two-line-box h2.wpb_heading {
	bottom: 60px;
}
.features-area a.vc_single_image-wrapper {
	width: 100%;
	float: none;
}
.features-area a img {
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
	width: 101%;
	height: auto;
}
.features-area a .text-area {
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
	position: absolute;
	padding: 160px 35px 55px 35px;
	margin: 0 auto;
	height: 260px;
	right: 0;
	left: 0;
	top: 0;
	z-index: 1;
}
.features-area a:hover .text-area {
	padding-top: 100px;
	background: rgba(36,36,36,0.7);
}
.features-area a:hover img {
	max-width: 118% !important;
	width: 118%;
	height: auto;
	margin-left: -9%;
}
.features-area .vc_col-sm-3 a {
	height: 215px;
}
.features-area .vc_col-sm-3 a:hover img {
	opacity: 0.5;
}
.features-area h2 {
	color: #ffffff;
	font-size: 24px;
	line-height: 26px;
	font-weight: bold;
	margin: 0 auto;
	font-family: "Lato", sans-serif;
	-webkit-box-sizing: border-box; 
	 -moz-box-sizing: border-box;    
	 box-sizing: border-box;
}
h2.one-line-title {
	padding-top: 15px;
}
.features-area p {
	font-size: 1px;
	line-height: 1px;
	font-weight: 300;
	color: #ffffff;
	max-width: 300px;
	margin: 10px auto 0 auto;
	opacity: 0;
}
.features-area a:hover p {
	opacity: 1;
	font-size: 16px;
	line-height: 20px;
}
.features-area span {
	display: inline-block;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
	margin: 20px auto 0 auto;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.features-area span:after, .features-area .vc_col-sm-3 a:after {
	content: "";
	width: 60px;
	margin: 0 auto;
	display: block;
	height: 1px;
	margin-top: 8px;
	background: #fff;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
  transition-delay: 0s;
}
.features-area .vc_col-sm-3 a:after {
	position: absolute;
	bottom: 22px;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 1 !important;
}
.features-area a:hover span:after {
	width: 126px;
  transition-delay: 0.2s;
}
.features-area .vc_col-sm-3 a:hover:after {
	width: 95px;
  transition-delay: 0.2s;
}


p.title-text {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 20px !important;
}
.align-center h2, .align-center h3 {
	margin-left: auto;
	margin-right: auto;
}

.grey-bar {
	background: #e7e6e6;
	padding: 70px 0;
}
p.btm-link {
	font-size: 18px;
	text-align: right;
	font-weight: normal;
	margin: 0;
}


.float-img {
	position: absolute;
	right: 0;
	bottom: 170px;
	max-width: 48%;
	height: auto;
}
.feature-bar {
	border-bottom: 10px solid #304835;
	padding: 420px 0 60px 0;
	background-attachment: fixed !important;
	min-height: 600px;
}
.feature-box {
	background-size: cover !important;
	background-position: center center !important;
	padding: 90px 80px !important;
}
.feature-box .vc_column-inner {
	padding: 0 !important;
}
.feature-box h3 {
	color: #fff;
}
.feature-box p {
	color: #fff;
	max-width: 640px;
	margin: 10px 0 15px 0;
}

.quote-text p {
	text-align: right;
	color: #fff;
	font-style: italic;
	font-size: 22px;
	line-height: 32px;
	font-weight: normal;
	max-width: 600px;
	margin-left: auto;
}

.flex-area {
	display: flex;
    align-items: center;
}
.flex-area-no-pad {
	display: flex;
    align-items: center;
}
.flex-area .wpb_text_column {
	padding: 45px 50px;
}
.padded-area .wpb_text_column {
	padding: 0 40px;
}
.img-caption-text {
	padding: 10px 0 0 0 !important;
}
.flex-area .float-right {
	order: 2;
}
.img-caption-text p {
	line-height: 26px;
}


/* ------------------------- Sitemap --------------------- */
.sitemap li {
	list-style: none;
}
.sitemap ul {
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}
.sitemap ul li ul {
	padding: 0 ;
}
.sitemap ul li {
	font-size: 16px;
	line-height: 24px;
	border-bottom: 1px solid #c3c3c3;
}
.sitemap ul li ul li {
	line-height: 22px;
	border-top: 1px solid #c3c3c3;
	border-bottom: none;
}
.sitemap ul li a {
	color: #141414;
	display: block;
	height: 50px;
	line-height: 50px;
	text-decoration: none;
}
.sitemap ul li a:hover {
	background: #e7e6e6;
	color: #000;
}

/* ---------------------------------------------- */

.quote-form-area {
	padding: 25px 35px 35px 35px !important;
	background: #324a37;
	position: relative;
}
.href-link {
	position: absolute;
	font-size: 0;
	top: -120px;
	left: 0;
}
.quote-form-area span.wpcf7-not-valid-tip {
	display: none !important;
}
.quote-form-area div.wpcf7-response-output {
	border:1px solid #fa6565!important;
	padding: 10px !important;
	margin: 10px auto 0 auto !important;
	font-size:14px!important;
	line-height: 18px !important;
	font-weight: 600 !important;
	color:#fa6565!important;
	text-align: center !important;
}
.quote-form-area .sent .wpcf7-response-output {
	border:1px solid #3ab353!important;
	color:#3ab353!important;
}
.quote-form-area p {
	margin: 10px 0 0 0;
}
.quote-form-area p.no-margin-top {
	margin-top: 4px !important;
}
.quote-form-area span {
	display: block;
}
.quote-form-area h2 {
	color: #fff;
	font-size: 26px;
	line-height: 26px;
	margin-bottom: 15px !important;
	text-align: center;
	text-transform: capitalize;
}
.quote-form-area input, .quote-form-area select, .quote-form-area textarea {
	height: 35px;
	line-height: 35px;
	font-family: "Lato", sans-serif;
	font-size:16px;
	color:#000;
	width:100%;
	-webkit-box-sizing: border-box; 
	 -moz-box-sizing: border-box;    
	 box-sizing: border-box;
	margin-bottom:0 !important;
	padding: 0 0 0 10px;
	border: none;
	border-radius: 0 !important;
	background: #fff;
}
.quote-form-area textarea {
	line-height: 24px;
	height: 75px;
}

.invalid input.wpcf7-not-valid::placeholder, .invalid textarea::placeholder {
  color: #282828;
  opacity: 1;
}
.invalid input.wpcf7-not-valid:-ms-input-placeholder, .invalid textarea:-ms-input-placeholder {
  color: #282828;
}
.invalid input.wpcf7-not-valid::-ms-input-placeholder, .invalid textarea::-ms-input-placeholder {
  color: #282828;
}
.invalid input.wpcf7-not-valid,.invalid textarea.wpcf7-not-valid,.invalid select.wpcf7-not-valid {
	background: #f47979;
}

.wpcf7-spinner {
	position: absolute;
}
.quote-form-area input.wpcf7-submit {
    color: #fff;
    padding: 0;
	border: none;
    font-size: 18px;
	height: 50px;
	line-height: 50px;
    font-weight: 700;
	cursor: pointer;
	text-indent: 0;
	margin: 0;
	font-weight: 900;
    text-transform: uppercase;
	text-decoration: none !important;
    background-color: #ab8e66;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.quote-form-area input.wpcf7-submit:hover {
    background-color: #1e3523;
}



/* ------------------- Blog --------------------- */

.return-link {
	border-top: 1px solid #ccc;
	padding-top: 15px;
	margin-top: 40px;
}
#blog-content {
	text-align: left;
}
.single-post h2, .single-post h3 {
	margin-top: 30px !important;
}
#blog-content #sfsi_holder {
	height: 60px !important;
}
#blog-content a.sficn {
	position: relative;
	text-align: center;
}
#blog-content a.sficn img {
	filter: grayscale(1) brightness(0) !important;
}
#blog-content .sfsi_plus_wicons {
	margin-left: 0 !important;
	margin-right: 6px !important;
}


.post-date-area {
	color: #ab8e66;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	padding-bottom: 3px;
	font-weight: 500;
}

#blog-content ul.post-meta {
	list-style: none;
	margin: 15px 0 0 0;
	padding: 0;
}
#blog-content ul.post-meta li {
	font-size: 20px;
	font-weight: bold;
}
#blog-content ul.post-meta li a {
	color: #54a99a !important;
	text-decoration: none;
}
#blog-content ul.post-meta li a:hover {
	color: #fff !important;
	text-decoration: underline;
}
.screen-reader-text, .meta-icon {
	display: none;
}
.pagination-single, .post-author, .entry-categories-inner {
	display: none;
}
.author-info {
	background: rgba(0,0,0,0.6);
	padding: 30px;
	margin-top: 20px;
}
.post-block {
	float: left;
	width: 31.3333%;
	-webkit-box-sizing: border-box; 
	 -moz-box-sizing: border-box;    
	 box-sizing: border-box;
	 margin: 0 1%;
	 margin-bottom: 25px;
	text-align: left;
	overflow: hidden;
	background: #eee;
}
#blog-content .post-block:nth-of-type(3n+1){
	clear: left;
}
.post-block .inner-but {
	padding: 12px 20px;
	font-size: 17px;
	line-height: 18px;
}
.post-block h2 {
	margin: 0;
	color: #000;
	font-size: 17px;
	line-height: 22px;
	min-height: 44px;
	font-weight: 700;
	text-decoration: none;
	text-transform: none;
}
a.article-title:hover {
	color: #0210e3;
}

.blog-excerpt-content {
	padding: 20px;
}
.blog-excerpt-content .main-but {
	font-size: 12px;
	line-height: 12px;
	padding: 10px 16px;
	min-width: 10px;
}

.white-padding {
	height: 30px;
	font-size: 0;
}
.blog-excerpt-img-container {
	overflow: hidden;
}
.blog-excerpt-img {
	display: block;
	text-decoration: none;
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center top;
	display: block;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
	overflow: hidden;
}
.blog-excerpt-img:hover {
	transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -o-transform: scale(1.1); -ms-transform: scale(1.1);
}
#blog-content ul, #blog-content ol {
	padding: 0 0 0 30px;
	font-size: 20px;
	line-height: 30px;
	color: #000;
	font-weight: 300;
}
#blog-content ul li, #blog-content ol li {
	padding-bottom: 10px;
}
a.more-link, #blog-content span.author {
	display: none;
}
.post-navigation, .post-edit-link {
	display: none;
}


/* ------------------- Contact Form --------------------- */

.pricerange .wpcf7-list-item {
	margin-bottom: 12px;
}
.two-column {
	float:left;
	width:48%;
}
.clear, .clear p {
	clear: both;
	font-size: 0;
	height: 0;
}

.vc_col-sm-12 .vc_column-inner {
}
.wide-form {
	padding: 20px 0 30px 0 !important;
	margin-bottom: 0 !important;
}
.map-area {
	padding-top: 40px;
}

.wide-form label.blank-field {
	font-size:1px;
	height:1px;
	color:#fff
}
.wide-form p {
	margin:0;
	line-height: 22px;
}
.wide-form input,.wide-form textarea,.wide-form select {
	font-family: "Lato", sans-serif;
	font-size:16px;
	color:#000;
	width:100%;
	height:42px;
	line-height:42px;
	-webkit-box-sizing: border-box; 
	 -moz-box-sizing: border-box;    
	 box-sizing: border-box;
	margin-bottom:0 !important;
	padding: 0 0 0 10px;
	border: 1px solid #bbbbbb;
	border-radius: 0 !important;
	background: #fff;
}
.wide-form .wpcf7-list-item {
	margin: 0 16px 0 0;
}

.invalid input.wpcf7-not-valid::placeholder, .invalid textarea::placeholder {
  color: #282828;
  opacity: 1;
}
.invalid input.wpcf7-not-valid:-ms-input-placeholder, .invalid textarea:-ms-input-placeholder {
  color: #282828;
}
.invalid input.wpcf7-not-valid::-ms-input-placeholder, .invalid textarea::-ms-input-placeholder {
  color: #282828;
}
.invalid input.wpcf7-not-valid,.invalid textarea.wpcf7-not-valid,.invalid select.wpcf7-not-valid {
	background: #f47979;
}
.wide-form p {
	margin-bottom: 20px !important;
}
.wide-form label {
	display: block;
	font-weight: 600;
	padding-bottom: 5px;
}
.invalid .wpcf7-not-valid span {
	color: #ed2525;
}
input.qbutton {
	background: #fff !important;
	border: 1px solid #000 !important;
}
.wide-form input[type="radio"] {
	height: 15px;
	line-height: 15px;
	width: 15px;
	margin-left: 0;
}
.wide-form input:focus, .wide-form textarea:focus, .wide-form select:focus {
    background-color: #ebebeb;
}
div#mfcf7_zl_multifilecontainer {
	margin-top: 0 !important;
}
.file-upload-area p {
	margin: 0 !important;
}
.file-upload-area {
	margin-bottom: 18px;
}
.wide-form textarea {
	height:104px;
	font-size:15px;
	line-height:22px;
	padding-top: 5px;
	width:100%;
}
.custom-form textarea {
	height: 135px;
}
.wide-form span.wpcf7-not-valid-tip {
	position:absolute;
	top:-25px;
	right:0;
	width:19px;
	height:19px;
	z-index:100;
	background:url(images/misc/not-valid.png) no-repeat;
	font-size:1px;
	line-height:1px;
	text-indent:-3000px;
	color:#ececec
}
.wide-form div.wpcf7-response-output {
	border:2px solid #fa6565!important;
	padding: 12px !important;
	font-size:14px!important;
	font-weight: 600 !important;
	color:#ed2525!important;
	text-align: center !important;
}
.wide-form .sent .wpcf7-response-output {
	border:2px solid #15a623!important;
	color:#15a623!important;
}
.wide-form input.wpcf7-submit {
    color: #fff;
    padding: 0;
	border: none;
	width: 160px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 900;
	cursor: pointer;
	text-indent: 0;
	margin: 0;
    text-transform: uppercase;
	text-decoration: none !important;
    background-color: #ab8e66;
	-webkit-transition: 0.3s;-moz-transition: 0.3s;-ms-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;
}
.wide-form input.wpcf7-submit:hover {
    background-color: #304835;
}

.wide-form .red-text {
	color:#ea4141
}
.required {
	color:#b91919
}






.slidedelaynone {
	transition-delay: 0s;
}
.slidedelaytwo {
	transition-delay: 0.25s;
}
.slidedelaythree {
	transition-delay: 0.5s;
}
.slidedelayfour {
	transition-delay: 0.75s;
}
.slidedelayfive {
	transition-delay: 1s;
}
.slidedelaysix {
	transition-delay: 1.25s;
}
.slidedelayseven {
	transition-delay: 1.5s;
}
.slidedelayeight {
	transition-delay: 1.75s;
}
.slidedelaynine {
	transition-delay: 2s;
}
.slidedelayten {
	transition-delay: 2.25s;
}
.slidedelayeleven {
	transition-delay: 2.5s;
}
.slidedelaytwelve {
	transition-delay: 2.75s;
}
.slideupgo {
	top: 0;
	opacity: 1 !important;
}



/* ---------------------------------------------- */

.entry-footer {
	min-height: 35px;
	font-size: 13px;
	color: #ffffff;
}
.entry-footer a {
	color: #0210e3;
	text-decoration: none;
	text-transform: none;
}
.cat-links, .tags-links {
	padding-left: 8px;
}
.entry-footer a:hover {
	text-decoration: underline;
}
.entry-footer span {
	display: inline-block;
	padding-right: 4px;
}
.comments-link {
	float: right;
	width: 200px;
	text-align: right;
}
.updated {
	display: none;
}
.published {
	display: inline;
}
#blog-content .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}
.blog-excerpt p {
	font-size: 16px;
	line-height: 24px;
}
.ajax-loader {
	position: absolute;
	right: 20px;
	bottom: 20px;
}
#blog-content h2 a, #blog-content h3 a {
	color: #000;
	text-decoration: none;
	position: relative;
	display: inline-block;
}
#blog-content h2 a:hover, #blog-content h3 a:hover {
	color: #0210e3;
}


.inner-entry-footer {
	background: rgba(0,0,0,0.6);
	padding: 20px;
	min-height: 10px;
}
.author-avatar {
	width: 55px;
	float: left;
}


.navigation .screen-reader-text {
	display: none;
}

.pagination-wrapper .next, .pagination-wrapper hr {
	display: none !important;
}
.pagination-wrapper .prev {
	display: none !important;
}
.page-numbers {
	background: #e5e5e5;
	padding: 8px 10px;
	margin-right: 3px;
	font-weight: bold;
	font-size: 17px;
	display: inline-block;
}
.current {
	background: #fec81e;
	color: #fff;
}
a.page-numbers {
	color: #000;
	text-decoration: none;
}
a.prev::before {
	content: "< ";
}
a.next::after {
	content: " >";
}
a.page-numbers:hover {
	color: #fff;
	background: #000;
}

/* ---------------------------------------------- */




.main-footer .top {
    padding: 60px 0;
    border-top: 10px solid #1e3523;
    background-color: #304835;
}
.main-footer .top p {
	color: #8d9b90;
	font-size: 16px;
	line-height: 20px;
	margin: 10px 0 15px 0;
	font-weight: normal;
}
.main-footer .top p a {
	color: #8d9b90;
	font-size: 16px;
	line-height: 20px;
}
.main-footer .top p a:hover {
	color: #fff;
}

.main-footer .top h4 {
    color: #fff;
    font-weight: 700;
	font-size: 18px;
}

.main-footer .top .social {
	align-content: center;
}
.main-footer .top .social a {
    font-size: 28px;
	line-height: 28px;
    color: var(--white_color);
}
.main-footer .top .social a .fa-linkedin-in, .main-footer .top .social a .fa-youtube {
    font-size: 30px;
	padding-top: 2px;
}
.main-footer .top .social li {
	margin-right: 5px;
	line-height: 28px;
}

.main-footer .top .social a:hover {
    color: #ab8e66;
}

.main-footer .bottom {
    padding: 20px 0;
    font-weight: var(--sm);
    background-color: #1e3523;
}
.main-footer .bottom p {
	color: #8d9b90;
	font-size: 15px;
	line-height: 20px;
}
.main-footer .bottom p a {
	color: #8d9b90;
	font-size: 15px;
	line-height: 20px;
	font-weight: 300;
}
.main-footer .bottom p a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-links ul {
	margin-top: 8px;
}
.footer-links ul li {
	font-size: 16px;
	line-height: 18px;
	padding-bottom: 5px;
}
.footer-links ul li a {
	color: #8d9b90;
}
.footer-links ul li a:hover {
	color: #fff;
}

/* Footer CSS End */

.float-right {
	float: right !important;
}
.float-left {
	float: left !important;
}
.no-padding {
	padding: 0 !important;
}
.no-padding-top {
	padding-top: 0 !important;
}
.no-padding-right {
	padding-right: 0 !important;
}
.no-padding-btm {
	padding-bottom: 0 !important;
}
.no-padding-left {
	padding-left: 0 !important;
}
.no-margin {
	margin: 0 !important;
}
.no-margin-top {
	margin-top: 0 !important;
}
.no-margin-right {
	margin-right: 0 !important;
}
.no-margin-btm {
	margin-bottom: 0 !important;
}
.no-margin-left {
	margin-left: 0 !important;
}
.display-none {
	display: none !important;
}
.align-right {
	text-align: right !important;
}
.align-center {
	text-align: center !important;
}
.align-left {
	text-align: left !important;
}
.no-border {
	border: none !important;
}
.mobile-only {
    display: none;
}
.cart-icon-mob {
	display: none;
}
.clear {
	clear: both;
	font-size: 0;
}

@media only screen and (max-width: 1400px) {
	
.features-area {
	padding: 30px;
}
.features-area a {
	height: 240px;
}
.features-area a .text-area {
	padding-top: 145px;
}
.features-area a:hover .text-area {
	padding-top: 90px;
}
.no-padding-top-ipad {
	padding-top: 0 !important;
}
}

@media only screen and (max-width: 1198px) {
	
.slideleft {
	right: -5%;
}
.slideright {
	left: -5%;
}	
.features-area .vc_col-sm-3 a {
	height: 180px;
}
.features-area a {
	height: 180px;
}
.features-area p {
	display: none;
}
.features-area a .text-area {
	padding: 90px 15px 0 15px;
}
.features-area a:hover .text-area {
	padding-top: 80px;
}
	
	.quote-text p {
		font-size: 20px;
		line-height: 26px;
	}
.feature-bar {
	border-bottom: 8px solid #304835;
	padding: 280px 0 60px 0;
	min-height: 20px;
}
	.main-header {
		border-bottom: 3px solid #ab8e66;
	}
	.feature-box {
		padding: 70px !important;
	}
}

@media only screen and (max-width: 1040px) {
	
.features-area .vc_col-sm-3 a {
	height: 125px;
}
.features-area h2.wpb_heading {
	font-size: 15px;
	line-height: 16px;
}
.feature-bar {
	padding-top: 200px;
}
.right-header {
	display: none;
}
#mobile-menu {
	display: block;
}
.features-area {
	padding: 30px 20px 0 20px;
}
.home .features-area a {
	width: 48%;
	margin: 0 1% 15px 1% !important;
}
	.footer-links ul li {
		display: inline-block;
		margin: 0 3px;
		padding-bottom: 2px;
	}
	.main-footer .top .social li {
		margin: 0 3px;
	}
}

@media only screen and (max-width: 767px) {
	
.post-block {
	float: none;
	width: 100%;
	margin: 0;
	margin-bottom: 20px;
}
.post-block h2 {
	min-height: 10px;
}
.features-area h2.wpb_heading {
	font-size: 18px;
	line-height: 20px;
}
h1 {
    font-size: 35px;
	line-height: 40px;
}
	.main-footer .top {
		padding: 50px 0;
		border-top: 6px solid #1e3523;
	}
.primary-btn {
    padding: 12px 20px;
	font-size: 17px;
}
	
	.feature-box {
		padding: 40px !important;
	}
.feature-box p {
    font-size: 20px;
    line-height: 25px;
    margin: 8px 0 12px 0;
}
.feature-bar {
	background-attachment: scroll !important;
	background-size: cover !important;
	background-position: left -100px top !important;
	padding: 140px 0 30px 0;
		border-bottom: 4px solid #304835;
}
.flex-area, .flex-area-no-pad {
	display: block;
}
	
	.inner-top-feature {
		padding: 30px;
		margin-top: -30px;
	}
	.quote-form-area {
		margin-top: 5px !important;
	}
	.banner-bottom p {
		font-size: 18px;
		line-height: 24px;
	}
.quote-form-area h2 {
	font-size: 22px;
	line-height: 24px;
}
	.vc_empty_space {
		height: 10px !important;
	}
.wpb_text_column {
	padding: 0;
	margin-bottom: 25px !important;
}
	.no-margin-btm {
		margin-bottom: 0 !important;
	}
	.wpb_single_image {
		margin-bottom: 25px !important;
	}
.padded-area .wpb_text_column {
	padding: 0 !important;
}
.flex-area .wpb_text_column {
	padding: 0 !important;
}
.flex-area .no-padding-top-mob, .padded-area .no-padding-top-mob {
	padding-top: 0 !important;
}
	.no-margin-top-mob {
		margin-top:0 !important;
	}
.img-caption-text {
	padding: 10px 0 0 0 !important;
}
.feature-box .wpb_text_column, .feature-bar .wpb_text_column {
	padding: 0;
}
	.float-img {
		position: static;
		margin-top: -320px;
		max-width: 70%;
		margin-left: auto;
	}
	.luxury-text {
		padding-bottom: 150px;
	}
	.quote-text p {
		font-size: 18px;
		line-height: 22px;
		margin-top: 25px;
	}
	h2 {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 10px !important;
	}
	h3 {
		font-size: 24px;
		line-height: 32px;
	}
	.home h3 {
			font-size: 35px;
			line-height: 40px;
	}
	p {
		font-size: 17px;
		line-height: 25px;
		margin-bottom: 10px;
	}
	.wpb_text_column ul li, .wpb_text_column ol li {
		font-size: 17px;
		line-height: 24px;
	}
.wpb_text_column ul li.wpb_text_column ol li {
	font-size: 17px;
	line-height: 26px;
	margin-bottom: 5px !important;
}
	.features-area a .text-area {
		padding-top: 110px;
		background: rgba(36,36,36,0.2);
	}
	.features-area a:hover .text-area {
		padding-top: 110px;
	}
	.content-area {
		padding: 40px 0;
	}
.container, .narrow-content, .narrow-content-sml {
	max-width: 86%;
}
	
	.vc_column-inner {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
p.title-text {
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 15px !important;
}
	
.main-header .logo-area img {
	width: 60px;
	height: 67px;
}
.sticky-nav .logo-area img {
	width: 54px;
	height: 60px;
}
	
#mobile-menu {
	top: 28px;
}
.sticky-nav #mobile-menu {
	top: 20px;
}
	
.page-action p {
	font-size: 20px;
	line-height: 26px;
	max-width: 86%;
	margin-bottom: 22px;
}
.page-action p.bigger-text {
	font-size: 26px;
	line-height: 32px;
}
.page-action-overlay {
    padding: 80px 0;
}
.page-action .primary-btn {
    padding: 12px 26px;
	font-size: 18px;
}
	
	.grey-bar {
		padding: 40px 0;
	}
	p.btm-link {
		font-size: 16px;
	}
.main-banner-overlay {
    height: 340px;
}
.main-banner h1 {
	margin-top: 40px;
	font-size: 32px;
	line-height: 32px;
}
.main-banner p {
	font-size: 22px;
	line-height: 26px;
}
.home-header-text p {
	margin: 4px auto 8px auto;
}
.main-banner .primary-btn {
    padding: 11px 22px;
	font-size: 17px;
}
.banner-bottom {
    padding: 30px 0 50px 0;
}
.home .banner-bottom p {
	font-size: 20px;
	line-height: 25px;
}
.banner-bottom .vc_col-sm-12 .vc_col-sm-12 p {
	font-size: 20px;
	line-height: 25px;
}
.home .features-area {
    padding: 30px 20px 0 20px;
}
	.features-area {
		padding: 20px 0;
	}
.home .features-area {
	margin-top: -30px;
}
.features-area a {
	float: none !important;
	width: 100% !important;
	height: 260px;
	margin: 0 0 20px 0 !important;
}
	.features-area a.float-right {
		margin-bottom: 0 !important;
	}
	.float-right {
		float: none !important;
	}
	
	
	.content-area-btm {
		padding-top: 0 !important;
	}
	
.inner-header-overlay {
	padding: 70px 0;
}
.inner-header p {
	font-size: 20px;
	line-height: 25px;
	margin: 5px 0 12px 0;
}
	.wide-form p {
		margin-bottom: 12px !important;
	}
.features-area .vc_col-sm-3 {
	margin-bottom: 20px;
}
.features-area .vc_col-sm-3 a {
	height: 200px;
	margin-bottom: 0 !important;
}
.two-column {
	float: none;
	width: 100%;
}
.map-area {
	padding-top: 0;
}
	.no-padding-btm-mob {
		padding-bottom: 0 !important
	}
	.no-padding-top-mob {
		padding-top: 0 !important;
	}
	
.slideup, .wpb_text_column, .wpb_video_widget {
	transition-delay: 0.5s !important;
}
}