*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:focus {
    outline: none;
}

textarea:focus, input:focus{
    outline: none;
}

a:focus, a:hover {
    text-decoration: none;
}

body {
	font-family: 'Ubuntu', sans-serif;
	font-size: 16px;
    color: #424242;
	letter-spacing: 0.10px;
}

header {
	position: absolute;
	width: 100%;
	top: 30px;
	left: 0;
	right: 0;
	z-index: 99;
	min-height: 70px;
	background-color: rgba(213,34,41,0.75);
}

.logo-wrap {
    float: left;
    background-color: #fff;
    padding: 7.5px;
}

.menu {
	position: relative;
	width: 100%;
}

.menu-all {
    text-align: left;
    position: relative;
}

.top-left {
    margin: 0 0 0 65px;
	float: left;
}

.top-right {
    margin: 0;
	float: right;
}

.nav {
	position: relative;
}

.nav > a {
	display: none;
}

.nav li {
	position: relative;
}

.nav li a {
	font-weight: 400;
	position: relative;
	font-size: 16px;
	color: #f9f9f9;
	letter-spacing: 0.10px;
	padding: 23.5px 15px;
	text-transform: capitalize;
	margin: 0;
	display: inline-block;
	transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .nav li a {
        padding: 24px 15px;
    }
}

.nav > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav > ul > li {
	float: left;
	position: relative;
}

.nav > ul > li > a {
	height: auto;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.nav > ul > li:not( :last-child ) > a {
	/*border-right: 1px solid #dce1e7;*/
}
 
.nav > ul > li:hover > a {
	color: #fff;
	text-decoration: none;
	position: relative;
}

.nav > ul > li:hover > a:after {
	position: absolute;
	width: 16px;
	height: 2px;
	content: "";
	top: 52px;
	left: 50%;
	transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);
	background-color: rgba(255,255,255,0.5);
}

.nav > ul > li > a.active {
	text-decoration: none;
	position: relative;
}

.nav > ul > li > a.active:after {
	position: absolute;
    width: 16px;
    height: 2px;
    content: "";
    top: 52px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    background-color: rgba(255,255,255,0.5);
}

.nav li ul {
	background-color: rgba(183, 21, 23 ,0.75);
	display: none;
	position: absolute;
	top: 70px;
	z-index: 9999;
	width: 300px;
	list-style: none;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.nav li:hover ul {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	padding: 30px 40px 10px 40px;
}

.nav li:hover ul li ul {
	display: none;
}

.nav li:hover ul li:hover ul {
	display: block;
	left: 100%;
	top: 0px;
}

.nav li ul a {
	font-size: 16px;
	padding: 0 0 30px;
	color: #f9f9f9;
	letter-spacing: 0.10px;
	display: block;
	position: relative;
	transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;
}

.nav li ul li a span:hover {
	color: #f9f9f9;
	border-bottom: 1px solid #f9f9f9;
	text-decoration: none;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
	display: none;
}

.menu-dropdown {
    padding-left: 6px;
}

.contact-menu {
	list-style: none;
	margin: 0;
	position: relative;
	width: 100%;
	padding: 0 40px 0 0;
	min-height: 50px;
	z-index: 999;
}

.contact-menu li {
	float: left;
	position: relative;
}

.contact-menu li:nth-child(1) {
	margin: 0 20px 0 0;	
}

.contact-menu li:nth-child(2) {
	
}

.fa-mobile {
	font-size: 20px !important;
}

.contact-menu li a {
    font-size: 16px;
    color: #f9f9f9;
	min-width: 35px;
    padding: 6px 11px;
    float: left;
    border: 2px solid #e59b99;
    text-transform: capitalize;
    margin: 15px 0;
    transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
}

.contact-menu li span {
    color: #fff;
    margin-top: 23px;
    float: left;
    margin-left: 10px;
}

.contact-menu li a:hover span {
	color: #f9f9f9;
	background-color: #be161d;
	text-decoration: none;
}

.contact-menu li a span:hover .contact-menu li a {
	color: #f9f9f9;
	background-color: #be161d;
	text-decoration: none;
}

.contact-menu li:nth-child(3) a {
	border: none;
    margin-right: 40px;
}

.contact-menu li:nth-child(3) a:hover {
	background-color: transparent;
}

.contact-menu li:nth-child(4) a {
	border-right: none;
}


.contact-menu li a:hover {
	color: #f9f9f9;
	background-color: #be161d;
	text-decoration: none;
}

.banner {
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.banner-content {
	width: 100%;
	display: table;
}

.content-all {
	display: table-cell;
	vertical-align: middle;
}

.why-choose {
	position: relative;
	padding: 120px 0 0;
}

.why-choose h1 {
	font-size: 48px;
	margin: 0 0 60px;
	text-align: center;
	font-weight: 700;
}

.why-choose h1 span {
	font-weight: 300;
}

.why-choose-list {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.why-choose-list li {
	width: 33.333%;
	float: left;
	padding: 80px;
}

.why-choose-list li:nth-child(1) {
	border-top: 1px solid rgba(147,149,152,0.23);
	border-right: 1px solid rgba(147,149,152,0.23);
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.why-choose-list li:nth-child(2) {
	border-top: 1px solid rgba(147,149,152,0.23);
	border-right: 1px solid rgba(147,149,152,0.23);	
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.why-choose-list li:nth-child(3) {
	border-top: 1px solid rgba(147,149,152,0.23);
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.why-choose-list li:nth-child(4) {
	border-right: 1px solid rgba(147,149,152,0.23);
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.why-choose-list li:nth-child(5) {
	border-right: 1px solid rgba(147,149,152,0.23);	
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.why-choose-list li:nth-child(6) {
	border-bottom: 1px solid rgba(147,149,152,0.23);
	background-color: rgba(213, 34, 41, 0.05);
}

.why-choose-list li h3 {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	margin: 0 0 40px;
}

.why-choose-list li p {
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	text-align: justify;
	color: #424242;
	margin: 0;
}

.why-choose-icon {
	margin: 0 0 40px; 
}

.get-ready-button {
	background-color: #d52229;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    float: left;
    text-align: center;
    padding: 12.5px 12px;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
	margin: 40px 0 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.get-ready-button:hover {
	background-color: #424242;
	color: #fff;
}

.home-gallery {
	position: relative;
    padding: 0;
    margin: 3px 3px;
    overflow: hidden;
    float: left;
}

.gallery-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.gallery-list li {
	padding: 3px 3px;
    width: 33.333%;
    float: left;
	position: relative;
}

.gallery-overlay {
	position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: rgba(66, 66, 66, 0.5);
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.gallery-overlay img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.gallery-list li:hover .gallery-overlay {
	opacity: 1;
}

.info {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;    
}

.info-left {
    width: 50%;
    display: block;
	overflow: hidden;
}

.info-right {
	width: 50%;
	display: block;
	background-color: #424242;
	overflow: hidden;
}

.our-feature {
	background-color: #d52229;
	padding: 60px 0 60px;
	overflow: hidden;
}

.our-feature-content {
    width: 585px;
    float: right;
}

.our-feature-content h1 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 30px;
}

.our-feature-content h1 span {
	font-weight: 300;
}

.our-feature-content h3 {
	font-size: 24px;
	color: #2c2c2c;
	font-weight: 700;
	margin: 0 0 35px;
}

.our-feature-content h3 span {
	font-weight: 300;
}

.get-direction-button {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background-color: #2c2c2c;
	padding: 20px 60px;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.get-direction-button:hover {
	background-color: #fff;
	color: #2c2c2c;
	
}

.our-feature-img {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	min-height: 100%;
	position: relative;
}

.our-feature-img-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(83, 76, 67, 0.4);
}

.no-padding {
	padding: 0;
}

.info-desc {
	padding: 120px;
	color: #fff;
}

.carousel-indicators-numbers li {
	text-indent: 0;
	margin: 0;
	width: 45px;
	height: 45px;
	border: 2px solid #939598;
	border-right: none;
	display: block;
	float: left;
	border-radius: 0;
	line-height: 45px;
	color: #f9f9f9;
	background-color: transparent;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
	text-align: center;
}

.carousel-indicators-numbers li:last-child {
	border-right: 2px solid #939598;
}

.carousel-indicators-numbers li.active, .carousel-indicators-numbers li:hover {
	margin: 0;
	width: 45px;
	height: 45px;
	background-color: #d52229;
	color: #fff;
}

.carousel-control.left {
	background: none;
}

.carousel-control.right {
	background: none;
}

.carousel-indicators {
    position: relative;
	bottom: 0;
	left: 0;
	margin-right: 30px;
	margin-bottom: 0;
	z-index: 15;
	width: auto;
	padding-left: 0;
	margin-left: 0;
	text-align: left;
	list-style: none;
	overflow: hidden;
	display: inline-block;
}

.carousel-control {
	position: relative;
	background-color: #d52229 !important;
	font-size: 30px;
	color: #fff;
	text-align: center;
	text-shadow: none;
	opacity: .5;
	width: 45px;
	height: 45px;
	line-height: 45px;
	margin: 0 0 0 -4px;
	overflow: hidden;
	display: inline-block;
}

.item h4 {
	font-size: 24px;
	font-weight: 400;
	margin: 60px 0 60px;
	color: #939598;
	position: relative;
	padding-left: 50px;
}

.item h4:before {
	position: absolute;
    content: "";
    width: 16px;
    height: 2px;
    background-color: #939598;
    left: 0;
    top: 50%;
    margin-top: -1px;
}

.item h2 {
	font-weight: 700;
	font-size: 36px;
	color: #fff;
	margin: 0 0 40px;
}

.item p {
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	text-align: justify;
	margin: 0 0 50px;
	line-height: 30px;
}

footer {
	background-color: #2c2c2c;
	padding: 120px 0;
}

.footer-top {
	padding: 0 0 60px;
	border-bottom: 1px solid rgba(147, 149, 152, 0.5);
	width: 100%;
	display: inline-block;
}

.footer-bottom {
	padding: 60px 0 0;
	overflow: hidden;
}

.footer-contact-list {
	list-style: none;
	margin: 15px 0 0;
	padding: 0;
}

.footer-contact-list li {
	float: left;
	position: relative;
	padding: 0 30px 0 52px;
	color: #f9f9f9;
	font-size: 16px;
}

.footer-contact-list li:nth-child(1):before {
	position: absolute;
    font-family: 'FontAwesome';
    content: "\f095";
    left: 0;
    top: -3px;
    width: 30px;
    height: 30px;
    border: 2px solid #939598;
    font-size: 18px;
    color: #f9f9f9;
    text-align: center;
    line-height: 27px;
}

.footer-contact-list li:nth-child(2):before {
	position: absolute;
    font-family: 'FontAwesome';
    content:"\f003";
    left: 0;
    top: -3px;
    width: 30px;
    height: 30px;
    border: 2px solid #939598;
    font-size: 18px;
    color: #f9f9f9;
    text-align: center;
    line-height: 24px;
}

.footer-contact-list li:nth-child(3):before {
	position: absolute;
    font-family: 'FontAwesome';
    content:"\f041";
    left: 0;
    top: -3px;
    width: 30px;
    height: 30px;
    border: 2px solid #939598;
    font-size: 16px;
    color: #f9f9f9;
    text-align: center;
    line-height: 27px;
}

.footer-contact-list li a {
	color: #f9f9f9;
}

.footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.footer-list li {
    float: left;
    padding: 0 30px 0 0;
}

.footer-list li a {
	color: #f9f9f9;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.footer-list li a:hover {
	color: #d52229;
}

.copy-right {
	font-size: 13px;
	color: #939598;
	padding: 3px 0 0;
}

.copy-right a {
	color: #939598;
	text-decoration: underline;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.copy-right a:hover {
	color: #d52229;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #1e211e;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#back-to-top:hover {
    background: #d52229;
	color: #fff;
}

#back-to-top.show {
    opacity: 1;
}

.top-mob-head {
	display: none;
}

.banner-inner {
	position: relative;
	min-height: 500px;
	background-position: center center;
	background-size: cover;
}

.banner-inner h1 {
	font-size: 48px;
	font-weight: 700;
	color: #f9f9f9;
	position: relative;
	text-transform: uppercase;
	padding: 250px 0 0 0; 
	margin: 0;
}

.banner-inner h1:after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -60px;
	width: 16px;
	height: 2px;
    background-color: #d52229;
}

.banner-inner-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(30, 33, 30, 0.70);
}

.mail-top {
	width: 50%;
	float: left;
	background-color: #d52229;
	padding: 10px;
	text-align: center;
	color: #fff;
	font-size: 14px;
}

.call-us-top {
	width: 50%;
	float: left;
	background-color: #1e211e;
	padding: 10px;
	text-align: center;
	color: #fff;
	font-size: 14px;
}

.location {
	width: 100%;
	position: relative;
}

#map {
	height: 500px;
}

.new-home-img {
	position: relative;
    margin: 3px;
    padding: 0;
    max-width: 100%;
    list-style: none;
    text-align: center;
	background-color: #f9f9f9;
}

.new-home-img li {
	position: relative;
	float: left;
	padding: 3px;
	width: 25%;
	background-color: #f9f9f9;
	text-align: center;
	cursor: pointer;
}

.new-home-img-box {
	max-height: 360px;
	overflow: hidden;
	position: relative;
}

.new-home-img li img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.new-home-img li .home-new-caption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.new-home-img li .home-new-caption::before,
.new-home-img li .home-new-caption::after {
	pointer-events: none;
}

.new-home-img li .home-new-caption,
.new-home-img li .home-new-caption > a {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
}

.new-home-img li .home-new-caption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.new-home-img li h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.new-home-img li .home-new-caption {
	text-align: right;
}

.new-home-img li h1 {
	position: absolute;
	right: 0;
	left: 0;
	height: 90px;
	padding: 32px 0 0 30px;
	text-align: left;
	background-color: rgba(213, 34, 41, 0.80);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0;
}

.new-home-img li h1 a {
	color: #f9f9f9;
}

.new-home-img li h1::after {
	position: absolute;
	content: "";
	right: 30px;
	top: 25px;
	background-image: url(../images/icon/location-icon.png);
	width: 28px;
	height: 42px;
}

.new-home-img li h2 {
	position: absolute;
	right: 0;
	left: 0;
	height: 50px;
	padding: 15px 0 0 30px;
	text-align: left;
	background-color: rgba(44, 44, 44, 0.70);
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.new-home-img li h1 {
	bottom: 30px;
	line-height: 1.5;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

.new-home-img li h2 {
	 bottom: 20px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);

}

.new-home-img li:hover h2 {
	-webkit-transform: translate3d(0,30px,0);
	transform: translate3d(0,30px,0);
	opacity: 0;
}


.new-home-img li h2::after,
.new-home-img li h1 {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

.new-home-img li:hover h2::after,
.new-home-img li:hover h1 {
	opacity: 1;
	-webkit-transform: translate3d(0,30px,0);
	transform: translate3d(0,30px,0);
}

.new-home-desc {
	position: relative;
	padding: 25px 30px;
    border-bottom: 2px solid #d52229;
}

.new-home-desc h3 {
	font-size: 18px;
	font-weight: 700;
	color: #ee2a24;
	letter-spacing: .20px;
	line-height: 24px;
	text-align: left;
	margin: 0 0 25px;
}

.new-home-desc h3 span {
	color: #1e211e;
}

.new-home-desc p {
	font-size: 15px;
	font-weight: 300;
	color: #424242;
	text-align: left;
	line-height: 24px;
	margin: 0 0 0;
}

.new-home-desc p span {
	color: #939598;
}

.jp-next {
	font-weight: 700;
	font-size: 18px;
	padding: 14px 15px;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
	background-color: #424242;
	float: left;
	width: 262px;
	text-align: center;
}

.holder a[href="#"] {
    display: none;
}

.holder a:hover {
	cursor: pointer;
	background-color: #d52229;
	color: #fff;
	text-decoration: none;
}

.holder a.jp-previous { 
	font-weight: 700;
	font-size: 18px;
	padding: 14px 15px;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
	background-color: #424242;
	float: left;
	width: 262px;
	text-align: center;
}

.holder a.jp-previous:hover {
	cursor: pointer;
	background-color: #d52229;
	color: #fff;
	text-decoration: none;
}

.holder a.jp-next {
	margin-left: 15px;
}

.holder a.jp-current, a.jp-current:hover {
	color: #FF4242;
	font-weight: bold;
	display: none;
}

.holder a.jp-disabled, a.jp-disabled:hover {
    font-weight: 700;
    font-size: 18px;
	letter-spacing: 2px;
	width: 262px;
    padding: 14px 15px;
    text-transform: uppercase;
    cursor: not-allowed !important;
    color: #fff;
    background-color: #939598 !important;
}

.holder a.jp-current, a.jp-current:hover,
.holder a.jp-disabled, a.jp-disabled:hover {
	cursor: pointer;
	background-color: #d52229;
	color: #fff;
	text-decoration: none;
}

.holder span {
	margin: 0 5px;
}

.custom-button {
	position: relative;
    padding: 120px 0;
    margin: 0 auto;
    display: table;
}

.banner-commercial {
	position: relative;
	background-position: center center;
	background-size: cover;
}

.banner-caption {
	display: table;
}

.banner-caption-all {
	display: table-cell;
	vertical-align: middle;
}

.banner-commercial h1 {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	color: #f9f9f9;
	margin: 0 0 60px;
}

.banner-commercial h3 {
	font-size: 24px;
	font-weight: 300;
	color: #f9f9f9;
	margin: 0 0 60px;
}

.about-button {
    background-color: #d52229;
    color: #f9f9f9;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px 40px;
    margin: 0 30px 0 0;
    text-transform: uppercase;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.about-button:hover {
	background-color: #2c2c2c;
	color: #f9f9f9; 
}

.contact-button {
	background-color: #2c2c2c;
    color: #f9f9f9;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 15px 40px;
    margin: 0;
    text-transform: uppercase;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.contact-button:hover {
	color: #f9f9f9;
}

.banner-commercial h2 {
	font-size: 36px;
    font-weight: 700;
    color: #f9f9f9;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(213, 34, 41, 0.75);
    margin: 0;
    text-align: center;
    padding: 30px 0px;

}

.commercial-full {
	position: relative;
	overflow: hidden;
}

.commercial-box {
	position: relative;
	display: block;
}

.commercial-box {
	display: table;
	width: 100%;
}

.commercial-img {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.commercial-desc {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	padding: 120px 100px;
}

.commercial-desc h3 {
	font-size: 36px;
	font-weight: 700;
	color: #424242;
	margin: 0 0 40px;
}

.commercial-desc p {
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	color: #424242;
	margin: 0 0 40px;
}

.more {
    background-color: #d52229;
    color: #fff;
    padding: 16px 80px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0 0;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.more:hover {
	background-color: #2c2c2c;
	color: #fff;
}

.client-principal {
    padding: 120px 0 0;
}

.client-principal h1 {
	font-size: 36px;
	font-weight: 700;
	color: #424242;
	text-align: center;
	margin: 0 0 60px;
}

.client-principal-list {
	margin: 0 0 6px;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.client-principal-list li {
	width: 33.333%;
	float: left;
	padding: 80px;
}

.client-principal-list li:nth-child(1) {
	border-top: 1px solid rgba(147,149,152,0.23);
	border-right: 1px solid rgba(147,149,152,0.23);
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.client-principal-list li:nth-child(2) {
	border-top: 1px solid rgba(147,149,152,0.23);
	border-right: 1px solid rgba(147,149,152,0.23);	
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.client-principal-list li:nth-child(3) {
	border-top: 1px solid rgba(147,149,152,0.23);
	border-bottom: 1px solid rgba(147,149,152,0.23);
}

.client-principal-list li h3 {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	margin: 0 0 40px;
}

.client-principal-list li p {
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
	text-align: justify;
	color: #424242;
	margin: 0;
}

.why-choose-icon {
	margin: 0 0 40px; 
}

.request {
	position: relative;
	padding: 120px 0;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.request-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(30, 33, 30, 0.65);
}

.request h1 {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 60px;
}

.request h2 {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin: 120px 0 60px;
}

.custom-input {
	width: 100%;
	height: 50px;
	background-color: rgba(255,255,255,0.80);
	padding: 10px 30px;
	color: #2c2c2c;
	border: none;
	margin: 0 0 28px;
}

.custom-textarea {
	width: 100%;
	height: 128px;
	background-color: rgba(255,255,255,0.80);
	padding: 10px 30px;
	color: #2c2c2c;
	border: none;
	margin: 0 0 28px;
}

.custom-submit-button {
	width: 100%;
	height: 50px;
	background-color: #d52229;
	border: none;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: -5px 0 0;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@-moz-document url-prefix() {
    .custom-submit-button {
        margin: -2px 0 0;
    }
}

.custom-submit-button:hover {
	background-color: #424242;
	color: #fff; 
}

.finance {
	position: relative;
	overflow: hidden;
}

.finance-box {
	position: relative;
	display: block;
}

.finance-box {
	display: table;
	width: 100%;
}

.finance-img {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.finance-desc {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	padding: 120px 100px;
}

.finance-desc h3 {
	font-size: 36px;
	font-weight: 700;
	color: #424242;
	margin: 0 0 0;
}

.finance-desc p {
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	color: #424242;
	margin: 40px 0 0;
}


.finace-caption {
	position: relative;
	padding:  120px 0 85px;
	text-align: center;	
	background-color: #d52229;
}

.finace-caption h1 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 35px;
}

.finace-caption p {
	color: #2c2c2c;
	margin: 0;
}

.nav-tabs li {
    position: relative;
    width: 50%;
}

.nav-tabs li a {
	background-color: #c1c1c1;
	width: 100%;
	text-align: center;
    padding: 80px 15px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    color: #555;
    cursor: default;
    background-color: #e5e5e5;
    border: none;
    width: 100%;
}

.nav-tabs > li.active  a:after{
	position: absolute;
	content: "";
	bottom: -50px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -72px;
	border-left: 72px solid transparent;
	border-right: 72px solid transparent;
	border-top: 50px solid #e5e5e5;
}

.nav-tabs>li {
	margin: 0;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs>li>a {
	border-radius: 0;
	border: none;
}

.tab-name {
	margin: 40px 0;
	font-size: 24px;
	font-weight: 700;
	color: #424242;
}

.tab-button {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background-color: #d52229;
	padding: 12px 15px;
	width: 262px;
	margin: 0 auto;
	color: #fff;
}

.single-form {
	width: 100%;
}

.form-left {
	width: 50%;
	float: left;
	padding: 120px 180px;
}

.form-right {
	width: 50%;
	float: left; 
	padding: 120px 180px;
}

.tab-content {
    overflow: hidden;
}

.tab-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	position: relative;
	margin: 0 0 120px;
}

.tab-content h3:after {
	position: absolute;
	content: "";
	width: 16px;
	height: 2px;
	background-color: #d52229;
	left: 0;
	bottom: -40px;
}

label {
    font-size: 16px;
    margin: 0 0 15px;
}

.form-control {
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #424242;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgba(147, 149, 151, 0.25);
    border-radius: 2px;
    margin: 0 0 20px;
}

.select-style {
	width: 100%;
}

.select-style select {
	background-image: url(../images/icon/select-icon.png);
	background-repeat: no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-position: 95% 21px;
	cursor: pointer;
}

.calculation {
	position: relative;
	padding: 80px 0;
	background-color: #424242;
}

.calculation-box {
	list-style: none;
	padding: 0;
	margin: 0;
	border: 1px solid #e8e8e9;
	background-color: #f9f9f9;
	border-radius: 2px;
	overflow: hidden;
}

.calculation h4 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 40px;
}

.calculation-box li {
	width: 20%;
    float: left;
    padding: 0 0 35px;
	border-right: 1px solid #dfe0e1;
}

.calculation-box li:last-child {
	border-right: none;
}

.calculation-box li p {
	font-size: 16px;
	font-weight: 700;
	color: #424242;
	text-align: center;
	margin: 0;
	padding: 15px 0;
    border-bottom: 1px solid #dfe0e1;
}

.spinner.input-group .input-group-addon a.spin-up, .spinner.input-group .input-group-addon a.spin-down {
	height: 12px;
    width: 12px;
    font-size: 16px;
    overflow: hidden;
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    color: #424242;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    position: absolute;
    right: 18px;
    z-index: 999;
    top: 0;
}

.spinner {
	position: relative;
    float: right;
	margin: 35px 30px 0 0;
}

.spinner:before {
	position: absolute;
    content: "$";
    font-size: 16px;
    font-weight: 700;
    color: #424242;
    line-height: 28px;
    left: -16px;
    top: 5px;
}

.spinner.input-group .input-group-addon a.spin-up .icon-sort-down, .spinner.input-group .input-group-addon a.spin-down .icon-sort-down {
	position: relative;
	top: -6px
}

.spinner.input-group .input-group-addon a.spin-up:hover, .spinner.input-group .input-group-addon a.spin-down:hover {
	color: #000
}

.spinner.input-group input {
	text-align: left;
    width: 140px;
    height: 40px;
}

.spinner.input-group.input-group-lg .input-group-addon a.spin-up, .spinner.input-group.input-group-lg .input-group-addon a.spin-down {
	font-size: 16px;
	height: 12px
}

.spinner.input-group.input-group-sm .input-group-addon a.spin-up, .spinner.input-group.input-group-sm .input-group-addon a.spin-down {
	font-size: 12px;
	height: 9px
}

.credit {
	position: relative;
	padding: 120px 0;
}

.credit h5 {
	font-size: 18px;
	font-weight: 700;
	color: #424242;
	margin: 0 0 40px;
}

.credit p {
	font-size: 16px;
	font-weight: 300;
	color: rgba(66, 66, 66, 0.78);
	margin: 0 0 30px;
}

.checkbox+.checkbox, .radio+.radio {
    margin-top: 0;
}

.checkbox {
    float: left;
    margin: 0 60px 0 0;
}

.mar-top {
	margin-top: 15px !important;
}

.checkbox {
	padding-left: 20px;
}

.checkbox label {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-left: 20px;
}

.checkbox label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 26px;
	height: 26px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #e8e8e9;
	border-radius: 2px;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
	display: inline-block;
    position: absolute;
    width: 66px;
    height: 26px;
    left: 2px;
    top: 2px;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #424242;
}

.checkbox input[type=checkbox] {
    margin-left: -20px;
    height: 26px;
    width: 26px;
}

.checkbox input[type="checkbox"] {
	opacity: 0;
	z-index: 1;
	cursor: pointer;
}

.checkbox input[type="checkbox"]:checked + label::after {
	font-family: "FontAwesome";
	content: "\f00c";
	font-size: 14px !important;
}
.checkbox input[type="checkbox"]:indeterminate + label::after {
	display: block;
	content: "";
	width: 10px;
	height: 3px;
	background-color: #555555;
	border-radius: 2px;
	margin-left: -16.5px;
	margin-top: 7px;
}

.finance-form-button {
    width: 460px;
    height: 70px;
    background-color: #d52229;
    border: none;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    margin: 120px auto 0;
    display: table;
    text-transform: uppercase;
    letter-spacing: 2px;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.finance-form-button:hover {
	background-color: #424242;
	color: #fff;
}

.contact-inner {
	position: relative;
	min-height: 700px;
	background-position: center center;
	background-size: cover;
} 

.contact-inner h1 {
	font-size: 48px;
	font-weight: 700;
	color: #f9f9f9;
	margin: 220px 0 50px;
	text-transform: uppercase;
}

.contact-inner p {
	font-size: 24px;
	font-weight: 300;
	color: #f9f9f9;
	line-height: 36px;
}

.contact-form {
	margin: -205px 0 0;
	position: relative;
	padding: 0 0 120px;
}

.form-all {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;  
	box-shadow: -16px 16px 24px -13px rgba(0,0,0,0.20);
	-moz-box-shadow:    -16px 16px 24px -13px rgba(0,0,0,0.20);
	-webkit-box-shadow: -16px 16px 24px -13px rgba(0,0,0,0.20);
}

.contact-form-box {
	padding: 80px 100px;
	background-color: #f9f9f9;
}

.contact-form h1 {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	padding: 0 0 0 80px;
	margin: 0 0 40px;
	position: relative;
}

.contact-form h1:before {
	position: absolute;
	content: "";
	left: 15px;
	top: 0;
	width: 48px;
	height: 27px;
	background-image: url(../images/icon/contact-heading.png);
	background-repeat: no-repeat;
}

.contact-input {
	width: 100%;
	height: 50px;
	border: 1px solid rgba(147, 149, 151, 0.25);
	color: #2c2c2c;
	padding: 10px 30px;
	margin-bottom: 30px;
}

.contact-textarea {
	width: 100%;
	height: 120px;
	border: 1px solid rgba(147, 149, 151, 0.25);
	color: #2c2c2c;
	padding: 10px 30px;
	margin-bottom: 30px;
}

.contact-submit-button {
	width: 100%;
	height: 50px;
	background-color: #d52229;
	border: none;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.contact-submit-button:hover {
	background-color: #424242;
	color: #fff;
}

.contact-list-box {
	background-color: #2c2c2c;
	color: #f9f9f9;
	padding: 80px 60px;
}

.contact-list-box h2 {
	font-size: 24px;
	font-weight: 700;
	color: #f9f9f9;
	margin: 0 0 70px;
}

.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-list li {
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 50px;
	color: #f9f9f9;
	padding-left: 50px;
	position: relative;
}

.contact-list li:nth-child(1)::before {
	position: absolute;
	content: "";
	background-image: url(../images/icon/location-contact-icon.png);
	width: 36px;
	height: 36px;
	left: 0;
	top: -5px;
}

.contact-list li:nth-child(2)::before {
	position: absolute;
	content: "";
	background-image: url(../images/icon/phone.png);
	width: 36px;
	height: 36px;
	left: 0;
	top: -5px;
}

.contact-list li:nth-child(3)::before {
	position: absolute;
	content: "";
	background-image: url(../images/icon/email.png);
	width: 36px;
	height: 36px;
	left: 0;
	top: -5px;
}

.contact-list li a {
	color: #f9f9f9;
}

.item h1 {
    font-weight: 700;
    font-size: 36px;
    color: #424242;
    margin: 0 0 40px;
}

.black li {
	color: #424242;
}

.modal {
    background-color: rgba(44,44,44,0.80);
}

.modal-body {
    position: relative;
    padding: 100px 80px;
}

.modal-content {
	border: none;
	border-radius: 0;
}

.close{
	font-size: 22px;
	position: absolute;
	right: 30px;
	top: 30px;
	color: #424242;
	opacity: 1;
	z-index: 9999;
}

.modal-dialog {
    width: 750px;
    margin: 220px auto 0;
}

.modal-title-send-text {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	position: relative;
	padding-left: 80px;
	margin: 20px 0 40px;
}

.modal-title-send-text:after {
	position: absolute;
	content: "";
	background-image: url(../images/icon/text.png);
	width: 50px;
    height: 50px;
    left: 0;
    top: -12px;
}

.modal-title-login {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	position: relative;
	padding-left: 80px;
	margin: 20px 0 40px;
}

.modal-title-login:after {
	position: absolute;
	content: "";
	background-image: url(../images/icon/log-in.png);
	width: 50px;
    height: 50px;
    left: 0;
    top: -12px;
}

.modal-title-sign-up {
	font-size: 24px;
	font-weight: 700;
	color: #424242;
	position: relative;
	padding-left: 80px;
	margin: 20px 0 40px;
}

.modal-title-sign-up:after {
	position: absolute;
	content: "";
	background-image: url(../images/icon/sign-up.png);
	width: 50px;
    height: 50px;
    left: 0;
    top: -12px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(147, 149, 151, 0.25);
  box-shadow: none !important;
  outline: 0 none;
}

.innerpage-contents {
    padding: 6px 6px 0;
    margin: 0 0 -6px;
}

.photo-grid-item .gallery-overlay{
	position: absolute;
	background-color: rgba(0, 0, 0, 0.46);
	background-image:url(../images/zoom_btn.png);
	background-repeat:no-repeat;
	background-size:30px 30px;
	background-position:center center;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-ms-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	opacity:0;
}

.photo-grid-item:hover .gallery-overlay{
	opacity:1;
}

[data-darkbox],
[data-darkbox-group]{
  cursor: pointer;
}

#darkbox{
	color:#fff;
	font: 14px/1.4 sans-serif;
	position: fixed;
	z-index: 999999;
	top: 0px; /* since we cannot use padding */
	left: 0px;
	bottom: 0px;
	right: 0px;
	background:#fff none no-repeat 50% 50% / contain;
	box-shadow: 0 0 0 24px rgba(0,0,0, 0.8);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0; 
	visibility: hidden;
}

#darkbox.show{
	opacity: 1;
	visibility: visible;
}

#darkbox a:hover{
	color: #f44b5f;
	border-color: #0bf;
}

#darkbox_prev,
#darkbox_next{
	cursor: pointer;
	position: absolute;
	height: 30px;
	width: 30px;
	bottom:0px;
	margin-top: -15px;
	color:#272727;
	font-style:italic;  
}

#darkbox_prev{
	left: 50%;
	border-width: 0 0 3px 3px;
	margin-left:-40px;
}

#darkbox_prev:after{
	position:absolute;
	content:"Prev";
}

#darkbox_next{
	right: 50%;
	border-width: 3px 3px 0 0;
	margin-right: -40px;
}

#darkbox_next:after{
	position:absolute;
	content:"Next";
	
}

#darkbox_prev:before{ 
	position: absolute;
	content: "/";
	color: #000;
	right: 0px;
	margin-right: -10px;
}

#darkbox_description{
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
  text-shadow: 0 1px 1px #000;
}

#darkbox_stats{
	position: absolute;
	left: 0;
	top: 0;
}

#darkbox_close{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 99;
}

#darkbox_close:after{
	position: absolute;
	right: 0;
	top: 0; 
	content: " ";
	cursor: pointer;
	width:30px;
	height:30px;
	background:url(../images/close_btn.png) no-repeat;
	background-size:30px 30px;
}

#darkbox:before{
	content: "";
	position: absolute;
	visibility: hidden;
	opacity: 0;
	left: 50%;
	top: 50%;
	margin: -25px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: inset -2px 0 0 2px #fff;
	-webkit-animation: darkboxRotate 1.5s linear infinite; 
	animation: darkboxRotate 1.5s linear infinite; 
}

#darkbox.spinner:before{
	visibility: visible;
	opacity: 1;
}

.login {
	position: relative;
	padding: 120px 0;
}

.modal-title-login.login-border {
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 40px;
}

.modal-title-login.login-border:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -2px;
	width: 30px;
	height: 3px;
	background-color: #d52229;
}

label span {
    color: red;
    font-size: 10px;
    margin: 2px 0 0 1px;
    position: relative;
    float: right;
}

.login-button {
	width: 100%;
    height: 50px;
    background-color: #d52229;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.login-button:hover {
    background-color: #424242;
    color: #fff;
}

.login-note {
	line-height: 30px;
	text-align: center;
	margin: 15px 0 0;
}