body {
	font-family: 'Poppins', sans-serif;
	color: #444444;
	font-weight: 400;
	line-height: 1.6;
}

a {
	color: #4c3b32;
}

a:hover {
	color: #4c3b32;
	text-decoration: none;
}

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

textarea {
	resize: none;
}

.main-body button:focus {
	outline: none;
}

.panel-heading [data-toggle="collapse"]:after {
	font-family: 'fontawesome';
	content: "\f054";
	/* "play" icon */
	float: right;
	font-size: 13px;
	line-height: 22px;
	/* rotate "play" icon from > (right arrow) to ^ (up arrow) */
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	color: #fff;
}

.panel-heading [data-toggle="collapse"].collapsed:after {
	/* rotate "play" icon from > (right arrow) to down arrow */
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.btn-get-started {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .5px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 3px;
	transition: 0.5s;
	color: #fff;
	background: #255b9f;
}

.btn-get-started:hover {
	background: #255b9f;
	color: #fff;
}

.carousel-indicators li {
	background-color: #033d6f;
}

.carousel-indicators .active {
	background-color: #255b9f;
}


/*--------------------------------------------------------------# Back to top button--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 55px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	background-color: #255b9f;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #255b9f;
	color: #fff;
}


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

* #Header

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

#header {
	height: 90px;
	z-index: 997;
	transition: all 0.5s;
	background: #fff;
}

#header.header-transparent {
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
  }

#header.header-scrolled,
.fixed-top {
	background: #fff;
	height: 70px;
	-webkit-box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
	-moz-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
}

#header .logo a {
	display: block;
}

#header .logo img {
	padding: 0;
	margin: 0px;
	width: 120px;
	margin-top: 0px;
}

#header.fixed-top .logo img {
	width: 100px;
}


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

* #Navigation Menu

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


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #444;
	padding: 10px;
	transition: 0.3s;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
}

.nav-menu ul li:last-child a {
	padding-right: 0;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
	color: #255b9f;
	text-decoration: none;
}

.nav-menu>ul>li>a:after {
	content: "";
	position: absolute;
	background-color: #255b9f;
	left: 11px;
	width: 0;
	height: 2px;
	bottom: 3px;
	visibility: hidden;
	width: 0px;
	transition: all 0.2s ease-in-out 0s;
}

.nav-menu a:hover:after,
.nav-menu li:hover>a:after,
.nav-menu .active>a:after {
	visibility: visible;
	width: 25px;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 25px;
	top: calc(100% - 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
	border-radius: 5px;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #01036f;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #255b9f;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}


/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 30px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: ##1e1f1c;
}

.mobile-nav {
	position: fixed;
	top: 83px;
	right: 15px;
	height: 520px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: rgba(255, 255, 255, 0.9);
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
	text-align: center;
	font-weight: bold ! important;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 50px;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #255b9f;
	text-decoration: none;
	font-weight: bold;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgb(0 0 0 / 70%);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


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

* #Sections General

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

.section-bg {
	background-color: #f6f6f6;
}

.section-title {
	padding-bottom: 22px;
  }

.section-title h4 {
	font-size: 14px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0.5px;
	color: #7d8791;
	text-transform: uppercase;
}

.section-title h2, .section-title h1 {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 40px;
  color: #000;
  position: relative;
  padding-bottom: 20px;
}

.section-title h2::after, .section-title h1::after {
	content: "";
	width: 60px;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #255b9f;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	color: #535e6c;
	line-height: 42px;
}


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

* #Project Overview

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

.project-overview {
	padding-top: 70px;
	padding-bottom: 70px;
}

.project-overview .row img {
	padding: 6px;
	border: 1px solid #ebebeb;
}

.project-overview .video-thumbnail {
	position: relative;
}

.project-overview .video-thumbnail:before {
	content: '\eca7';
	font-family: IcoFont;
	position: absolute;
	font-size: 54px;
	left: 0;
	right: 0;
	text-align: center;
	top: 50%;
	transform: translate(-0, -50%);
	z-index: 1;
	color: #fff;
}

.project-overview .video-thumbnail:after {
	content: '';
	position: absolute;
	height: 100%;
	background-color: #0000005c;
	width: 100%;
	left: 0;
}

.download-brochure {
	margin-top: 25px;
  }

.download-brochure span {
	margin-bottom: 5px;
	margin-right: 5px;
	display: block;
	font-size: 15px;
}

.project-overview .vtp-higlights-list li {
	color: #444;
	font-weight: 400;
}


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

* VTP Highlights Section

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

.vtp-higlights-section {
	padding-top: 60px;
	padding-bottom: 50px;
	background-image: url(../img/row-bg-sixth.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.vtp-higlights-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.amenities-section .vtp-higlights-list li {
	font-size: 18px;
}

.vtp-higlights-list li {
	padding: 0 0 15px 25px;
	position: relative;
	color: #033d6f;
	font-weight: 600;
	font-size: 16px;
}

.vtp-higlights-list li:before {
	content: "\ea99";
	position: absolute;
	left: 0;
	font-family: IcoFont;
	color: #255b9f;
	transform: rotate(-90deg);
	font-weight: 500;
	font-size: 18px;
}

.vtp-higlights-list ul li {
	padding: 5px 0 0px;
}

.vtp-higlights-list ul li:before {
	display: none;
}


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

* Amenities Section

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

.amenities-section {
	padding-top: 70px;
	padding-bottom: 50px;
	background-image: url(../img/row-bg-fifth.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.amenities-section .row .icon-box {
	z-index: 5;
}

.amenities-section .row .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	border-top: 44px solid #fff;
	border-left: 44px solid #468BAC;
	width: 0;
	transform: rotate(90deg);
	z-index: -1;
}

.amenities-section .row .icon-box h3 {
	font-size: 18px;
	line-height: 28px;
	color: #033d6f;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0;
	text-transform: capitalize;
	padding: 15px 20px;
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
	-moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 0 10px 0 rgb(43 52 59 / 10%);
}

.amenities-section .row .icon-box h5 {
	position: absolute;
	margin-bottom: 0;
	top: 0px;
	font-size: 16px;
	padding: 3px 4px 0;
	color: #fff;
}


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

* Specifications Section

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

.specifications-section {
	padding-top: 60px;
	background: url(../img/row-bg-first.jpg) no-repeat center top;
}


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

* Gallery Section

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

.gallery-section {
	padding-top: 50px;
	padding-bottom: 15px;
}
.table td, .table th {
  vertical-align: middle;
}

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

* Floors Paln Section

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

#plans .row {
  margin-bottom: 25px;
}
.floors-plan-section {
	padding-bottom: 15px;
	padding-top: 50px;
	background: url(../img/row-bg-first.jpg) no-repeat center center;
	background-size: cover;
	display: none;
}

.floors-plan-section .gallery-item {
	box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.10);
}

.floors-plan-section .row .row .col-lg-6 .gallery-item img {
	filter: blur(9px);
	-webkit-filter: blur(9px);
}

.floors-plan-section .co-lg-6 .section-title h2:before,
.floors-plan-section .co-lg-6 .section-title h2:after {
	display: none;
}

.floors-plan-section .co-lg-6 .section-title h2 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 34px;
}


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

* Location Section

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

.section-location {
	padding-bottom: 60px;
	padding-top: 40px;
	background-image: url(../img/row-bg-second.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.location-advantages h4 {
	font-size: 21px;
	font-weight: 600;
	color: #033d6f;
	padding-bottom: 15px;
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 20px;
}

.section-location .img-fluid {
	padding: 5px;
	box-shadow: 0px 0px 5px 0px #ebebeb;
}

.section-location .btn-get-started {
	margin-top: 30px;
}


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

* Contact Section

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

.contact-section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.contact-section .info {
	font-size: 15px;
}

.contact-section .info .email,
.contact-section .info .phone {
	margin-top: 40px;
}

.contact-section .info i {
	font-size: 20px;
	color: #fff;
	display: block;
	width: 40px;
	height: 40px;
	background: #1d1e1b;
	text-align: center;
	line-height: 40px;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
  }

.contact-section .info .social-links .icofont-instagram {
	font-size: 16px;
}

.contact-section .info .social-links .icofont-facebook {
	font-size: 18px;
}

.contact-section .info .contact-icon {
	margin-right: 15px;
}

.contact-section .info a {
	color: #255b9f;
	font-weight: 500;
}

.contact-section .info a:hover {
	color: #255b9f;
}

.contact-section .info .social-links a:hover i {
	background: #255b9f;
}

.contact-section .info .follow-us-wrap {
	padding-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, .1);
	margin-top: 30px;
}

.contact-section .info .follow-us-wrap h4 {
	font-size: 16px;
}

.contact-section strong {
	color: #255b9f;
}


/*Enquiry Form*/

.quick-enquiry-form .form-group {
	margin-bottom: 15px;
}

.super-checkbox .super-field-wrapper>.super-item {
	padding: 5px 25px 5px 25px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 0;
	cursor: pointer;
	position: relative;
	font-size: 14px;
}

.super-item input[type=checkbox] {
	visibility: hidden;
}

.checkbox-after {
	position: absolute;
	top: 6px;
	left: 0;
	height: 18px;
	width: 18px;
	border: 2px solid #255b9f;
	border-radius: 4px;
}

.checkbox-after:after {
	content: "";
	position: absolute;
	display: none;
}

.super-item input:checked~.checkbox-after:after {
	display: block;
}

.super-item .checkbox-after:after {
	left: 2px;
	top: 2px;
	width: 10px;
	height: 10px;
	background-color: #255b9f;
	border-width: 4px 4px 4px 4px;
}


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

* Popup Modal

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

.modal-content {
	padding-top: 20px;
	padding-bottom: 10px;
	border: none;
}

.modal-content h5 {
	font-weight: 600;
	color: #255b9f;
	margin-bottom: 25px;
}

.modal-content .icofont-close {
	position: absolute;
	top: 0px;
	right: 0;
	font-size: 20px;
	background-color: #444;
	color: #fff;
	padding: 2px 5px;
	border-top-right-radius: 4.8px;
	cursor: pointer;
}


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

* Call To Action

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

.call-to-action {
	background-color: #000;
	padding-top: 30px;
	padding-bottom: 30px;
  }

.call-to-action h2 {
	text-transform: uppercase;
	line-height: 38px;
	font-size: 30px;
}

.call-to-action small {
	color: #fff;
	font-size: 16px;
}
.call-to-action p {
  margin-bottom: 5px;
}
.call-to-action h3 {
  text-transform: uppercase;
}
.call-to-action .btn-get-started {
	background-color: #255b9f;
	font-size: 15px;
}

.call-to-action .btn-get-started:hover {
	background: #fff;
	color: #004b8c;
}


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

* Location

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

.location-advantages .fa {
	padding-right: 5px;
}


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

* Modal & Forms

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

.modal-body .form-control,
.quick-enquiry-form .form-control {
	font-size: 14px;
}

.modal-body input.form-control,
.quick-enquiry-form input.form-control,
.quick-enquiry-form select {
	height: calc(1.9em + .75rem + 5px);
}

.modal-body .form-control:focus,
.quick-enquiry-form .form-control:focus {
	border-color: #002c5b;
	box-shadow: unset;
}

.enquiry-submit-btn-wrap {
	display: flex;
	justify-content: center;
}

.enquiry-submit-btn-wrap button {
	margin-right: 20px;
	width: 100%;
	max-width: 120px;
}

.enquiry-submit-btn-wrap button:last-child {
	margin-right: 0;
}


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

* Footer

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

#footer {
	background-image: url(../img/footer-bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	color: #fff;
	font-size: 14px;
}


/*First Footer*/

.first-footer {
	background-color: #003063;
}

.first-footer-inner {
	padding: 27px 0 27px;
}

.first-footer .footer-logo img {
	max-width: 98px;
}

.first-footer .call-us-now-box {
	padding-left: 45px;
}

.first-footer .call-us-now-box .col-lg-8 {
	padding-left: 70px;
}

.first-footer .call-us-now-box .col-lg-8:before {
	content: "";
	background-image: url(../img/email-white.png);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 52px;
	height: 52px;
	position: absolute;
	left: 0;
}

.first-footer-inner .call-us-heading {
	font-size: 26px;
	font-weight: 600;
}

.first-footer .call h4 {
	font-size: 21px;
	font-weight: 600;
	line-height: 28px;
}

.footer-section .bottom-footer-text {
	background-color: #1b1c19;
  }

.second-footer-inner {
	margin: 70px 0 50px;
}

.second-footer-inner .widget-title {
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 25px;
}

.second-footer-inner .contact-number {
	font-size: 15px;
	margin-bottom: 50px;
	color: #fff;
}

.second-footer-inner .contact-number .icofont-phone {
	color: #43c3ce;
	font-size: 20px;
	margin-right: 4px;
	display: inline-block;
	position: relative;
	top: 2px;
}

#footer .bottom-footer-text .copyright {
	text-align: center;
	padding-top: 23px;
	padding-bottom: 23px;
}


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

* @Media

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

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}

@media (min-width:800px) and (max-width: 2500px) {
	.dontdisplaylg {
		display: none !important;
	}
	#top-bar {
		display: block !important;
	}
}

@media (min-width: 992px) and (max-width: 1024px) {
	.section-location iframe {
		height: 315px;
	}
}

@media (max-width: 799px) {
	#footer {
		margin-bottom: 40px;
	}
	.second-footer-inner {
		margin: 40px 0 30px;
	}
	.second-footer-inner .contact-number {
		margin-bottom: 40px;
	}
}

@media (max-width : 991px) {
	[data-aos^=fade][data-aos^=fade].aos-animate,
	.main-body .aos-init.aos-animate {
		transform: unset !important;
		transition-timing-function: unset !important;
		transition-duration: unset !important;
		transition-property: unset !important;
	}
	.section-title h2 {
		font-size: 32px;
		line-height: 40px;
	}
	.location-advantages h4 {
		font-size: 18px;
	}
	.vtp-higlights-list li {
		font-size: 15px;
	}
	.floors-plan-section {
		padding-top: 50px;
		padding-bottom: 0px;
	}
	.section-location {
		padding-bottom: 10px;
	}
	.call-to-action h2 {
		font-size: 26px;
		line-height: 34px;
	}
	.call-to-action small {
		display: block;
		margin-bottom: 20px;
	}
	.amenities-section .row .icon-box:before {
		border-top: 36px solid #fff;
		border-left: 36px solid #468BAC;
	}
	.amenities-section .row .icon-box h5 {
		font-size: 13px;
	}
	.specifications-section {
		padding-bottom: 0px;
		padding-top: 40px;
	}
	.section-location .location-desc {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	#header,
	#header.header-scrolled,
	#header.fixed-top {
		background: #fff;
		-webkit-box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
		-moz-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
		box-shadow: 0px 13px 25px -12px rgb(0 0 0 / 25%);
		height: 55px;
		z-index: 997;
	}
	.mobile-nav-toggle {
		top: 12px;
	}
	#header .logo img {
		padding: 0;
		margin: 0px;
		width: 70px;
		margin-top: 0px;
	}
	#header.fixed-top .logo img {
		width: 70px;
	}
	.floors-plan-section .co-lg-6 .section-title h2 {
		padding-top: 15px;
	}
	.section-title h2, .section-title h1 {
	  font-size: 26px;
	  line-height: 34px;
	}
	.floors-plan-section .co-lg-6 .section-title h2 {
		font-size: 24px;
		line-height: 31px;
	}
	.section-title h2::after {
		width: 40px;
	}
	.project-overview .project-overview-desc {
		margin-bottom: 40px;
	}
	.project-overview {
  padding-top: 35px;
  padding-bottom: 50px;
}
	.first-footer .call-us-now-box .col-lg-8:before {
		width: 40px;
		height: 40px;
	}
	.first-footer-inner .call-us-heading {
		font-size: 22px;
	}
	.first-footer .call h4 {
		font-size: 20px;
	}
	.second-footer-inner {
		margin: 30px 0 25px;
	}
	.enquiry-form-wrap,
	.amenities-section {
		padding-top: 50px;
	}
	.section-location {
		padding-bottom: 25px;
	}
	.amenities-section .vtp-higlights-list li {
		font-size: 16px;
	}
	.amenities-section .row .icon-box:before {
		border-top: 40px solid #fff;
		border-left: 40px solid #468BAC;
	}
	.amenities-section .row .icon-box h5 {
		font-size: 14px;
	}
	.second-footer-inner .contact-number {
		margin-bottom: 30px;
		color: #fff;
		font-weight: 600;
	}
	.call-to-action h3 {
  font-size: 21px;
}
	#footer {
		margin-bottom: 40px;
	}
}

@media (max-width: 575px) {
	.call-to-action h2 {
		font-size: 24px;
		line-height: 32px;
	}
	.first-footer .call-us-now-box {
		padding-left: 15px;
		margin-top: 30px;
	}
	.second-footer-inner .widget-title {
		font-size: 18px;
	}
	.first-footer .call-us-now-box .col-lg-8 {
		padding-left: 60px;
	}
	.call-to-action {
  padding-top: 25px;
  padding-bottom: 25px;
}
}