@import url('https://fonts.googleapis.com/css?family=Raleway:400,600,700');
@font-face {
	font-family: 'Gotham-Medium';
	font-style: normal;
	font-weight: normal;
	src: local('Gotham-Medium'), url('../fonts/gotham-medium.woff2') format('woff'),
		url(../fonts/gotham_medium_3.otf) format('otf');
}
@font-face {
	font-family: 'Gotham-Book';
	font-style: normal;
	font-weight: normal;
	src: local('Gotham-Book'), url('../fonts/gotham-book.woff2') format('woff'),
		url('../fonts/gotham_book_3.otf') format('otf');
}

@font-face {
	font-family: "Futura Std";
	font-style: normal;
	font-weight: normal;
	src: local("Futura Std"),
		url("../fonts/FuturaStd-Book.woff2") format("woff"), 
		url("../fonts/FuturaStd-Book.ttf") format("opentype"),
		url("../fonts/FuturaStd-Book.svg") format("svg"), 
		url("../fonts/FuturaStd-Book.eot") format("eot");
}

/* Global CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, body {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-font-smoothing: antialiased;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
	outline:none;
	-webkit-font-smoothing: antialiased;	
}
*, *:before, *:after {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}
body, button, input, textarea, select {
	color: #000;
	font-size: 14px;
	/*font-family: 'Raleway', sans-serif;*/
	/*font-family: Futura, "Trebuchet MS", Arial, sans-serif;*/
	font-family: 'Gotham-Medium';
	-webkit-appearance: none;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
}
textarea, input {
	-webkit-focus-ring-color: none;
}
button {
	cursor:pointer;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*:focus {
	outline: none;
}
html  {
	-webkit-text-size-adjust: none;
	-webkit-image-size-adjust: none;
}
body {
	background-repeat: no-repeat;
	background-attachment: fixed;
	vertical-align: baseline;
	line-height: 1.2;
	position: relative;
}
html, body{
	width: 100%;
	background-color: #fff;
}
.clear {
	clear:both;
	width:1px;
	height:1px;
}
.clear_after:after {
	clear:both;
	display: block;
	content: "";
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

strong, b {
    font-weight: bold;
}
/* End Global CSS */



/* ! ALL */
.desktop {
	display: block;
}
.mobile {
	display: none;
}
@media (max-width: 991px) {
	.desktop {
		display: none;
	}
	.mobile {
		display: block;
	}
}



/* ! HEADER */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
}
.header_shadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 78px;
	box-shadow: 2px 5px 20px #efeeee;
}
/* ! HEADER :: LOGO */
.header #logo {
	float: left;
	margin: 20px 72px;
	width: 225px;
}
.header #logo img {
	max-width: 100%;
	height: 100%;
}
/* ! HEADER :: MENU */
.header .slicknav_nav,
.header .slicknav_menu {
	float: right;
	margin: 20px 0 0;
	padding: 0 24px;
}
.header .slicknav_nav li {
	float: left;
	position: relative;
}
.header .slicknav_nav li a {
	font-size: 13px;
	color: #7b7b7b;
	font-weight: 100;
	padding: 0 24px;
	line-height: 42px;
	display: inline-block;
}
.header .slicknav_nav li a:hover {
	text-decoration: none;
}
.header .slicknav_nav li:hover > a,
.header .slicknav_nav li a:hover,
.header .slicknav_nav li.selected > a,
.header .slicknav_nav li.selected > a > a {
	text-decoration: none;
	color: #a18e61;
}
.header .slicknav_nav li > a span {
	display: inline-block;
	position: relative;
}
.header .slicknav_nav li:hover > a span:before,
.header .slicknav_nav li > a:hover span:before,
.header .slicknav_nav li.selected > a span:before {
	content: '';
	position: absolute;
	top: 100%;
	left: -12px;
	width: calc(100% + 24px);
	height: 4px;
	background: #231f20;
}
.header .sub_menu {
	position: absolute;
	top: 100%;
	left: 50%;
	padding-top: 4px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	overflow: hidden;
}
.header .sub_menu li {
	width: 100%;
	float: none;
	display: block;
	background: #fff;
}
.header .sub_menu li a {
	display: block;
}
.header .sub_menu li:hover > a,
.header .sub_menu li.selected > a {
	text-decoration: none;
	color: #939598;
	background: #e5e5e5;
}
.header .sub_menu li a span:before {
	display: none;
}
.header .slicknav_nav li:hover > .sub_menu {
	height: auto;
	opacity: 1;
	visibility: visible;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.header .mobile_menu {
	display: none;
}
.header .slicknav_menu .slicknav_icon {
	display: block;
	width: 35px;
	height: 29px;
	position: relative;
	cursor: pointer;
	z-index: 5;
	background: url(../images/icon-menu.png) no-repeat center;
}
@media (max-width: 1199px) {
	/* ! HEADER :: LOGO */
	.header #logo {
		margin: 20px 30px;
	}
	/* ! HEADER :: MENU */
	.header .slicknav_nav,
	.header .slicknav_menu {
		padding: 0 15px;
	}
	.header .slicknav_nav li a {
		padding: 0 15px;
	}
}
@media (max-width: 991px) {
	/* ! HEADER :: LOGO */
	.header #logo {
		margin: 20px 0;
	}
	/* ! HEADER :: MENU */
	.header .menu_box {
		display: none;
	}
	.header .mobile_menu {
		display: block;
	}
	.header .slicknav_menu {
		padding: 0;
	}
	.header .slicknav_nav {
		position: fixed;
		top: 78px;
		left: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		padding: 0 0 30px;
		margin: 0;
	}
	.header .slicknav_menu .slicknav_arrow {
		display: none;
	}
	.header .slicknav_nav li {
		float: none;
		display: block;
	}
	.header .slicknav_nav li a {
		display: block;
		padding: 0;
	}
	.header .slicknav_nav li > a {
		padding: 0 15px;
		display: block;
	}
	.header .slicknav_nav li > a span {
		display: block;
		padding: 0 6px;
		text-align: center;
	}
	.header .slicknav_nav li:hover > a span:before,
	.header .slicknav_nav li.selected > a span:before {
		top: auto;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #e0e0e0;
		display: block;
	}
	.header .slicknav_nav li .sub_menu {
		height: auto;
		opacity: 1;
		visibility: visible;
		display: block !important;
		position: relative;
		top: 0;
		left: 0;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		padding: 0;
	}
	.header .sub_menu li > a {
		padding: 0 30px;
	}
	.header .sub_menu li:hover > a,
	.header .sub_menu li.selected > a {
		color: #a18e61;
		background: #fff;
	}
}

/* ! FOOTER */
.footer {
	background: #fff;
	text-align: center;
	padding: 20px 0 80px;
	position: relative;
	/*font-family: Futura, "Trebuchet MS", Arial, sans-serif;*/
	font-family: "Futura Std", Helvetica, Arial, sans-serif;
	z-index: 4;
}
.footer .policy {
	margin-bottom: 14px;
}
.footer .policy span {
	font-size: 12px;
	color: #828282;
	text-decoration: none;
	margin: 0 18px;
}
.footer .policy a {
	font-size: 12px;
	color: #828282;
	text-decoration: none;
}
.footer .policy a:hover,
.footer .policy a.selected {
	text-decoration: underline;
}
.footer h6 {
	font-size: 12px;
	color: #828282;
}
/* ! FOOTER :: SCOLL TO TOP */
#scollToTop {
	display: inline-block;
	position: fixed;
	bottom: 20px;
	right: 26px;
	cursor: pointer;
	z-index: 99;
}
@media (max-width: 991px) {
	#scollToTop {
		bottom: 70px;
	}
}
/* ! FOOTER :: CONTACT */
#footer_contact {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 100;
}
#footer_contact a {
	width: 50%;
	height: 100%;
	float: left;
	text-decoration: none;
	background-color: #c29c67;
	background-repeat: no-repeat;
	background-position: center;
}
#footer_contact a.whatsapp {
	background-image: url(../images/whatsapp_white.png);
}
#footer_contact a.email {
	background-image: url(../images/email_white.png);
	border-left: 1px solid #666;
}
@media (max-width: 991px) {
	#footer_contact {
		display: block;
	}
}

/* ! BODY */
.body {
	min-height: calc(100vh - 85px);
	position: relative;
	z-index: 2;
	padding-top: 78px;
}
.got-banner {
	padding-top: 0;
}
.got-bg {
	background-color: #fff;
}
.remove-bg {
	background-color: transparent;
}
.section {
	position: relative;
	z-index: 2;
}
.menu_link {
	position: absolute;
	top: -40px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -99999;
}
/* ! BODY :: TEXT*/
h2 {
	font-size: 30px;
	color: #000;
	text-align: center;
	font-weight: 400;
	margin-bottom: 35px;
}
p {
	font-family: "Futura Std", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #58595b;
	margin-bottom: 25px;
	line-height: 1.4;
}
a {
	text-decoration: none;
	color: #58595b;
	font-size: 15px;
	font-weight: 700;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #bea977;
}
@media (max-width: 991px) {
	h2 {
		margin-bottom: 25px;
	}
	p {
		margin-bottom: 20px;
	}
}

/* ! DEFAULT LAYOUT */
.default-layout .section-default {
	padding: 100px 0 50px;
}
.default-layout .section-default .text_boxer {
	padding: 0 10px;
	max-width: 960px;
	margin: 0 auto;
}
.default-layout .section-default h2 {
	/*font-family: 'Raleway', sans-serif;*/
	/*font-weight: 600;*/
	font-size: 30px;
	color: #231f20;
	text-align: left;
	margin-bottom: 25px;
}
.default-layout .section-default .mail,
.default-layout .section-default .mail:hover {
	text-decoration: none;
	color: #58595b;
}
.default-layout .section-default ul,
.default-layout .section-default ol {
	list-style-type: upper-alpha;
	padding-left: 20px;
}
.default-layout .section-default ul li,
.default-layout .section-default ol li {
	font-family: "Futura Std", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #58595b;
	margin-bottom: 15px;
	line-height: 1.4;
}
.default-layout .section-default ul li strong,
.default-layout .section-default ol li strong {
	font-weight: 400;
	margin-bottom: 15px;
	display: inline-block;
}
.default-layout .section-default ul ul,
.default-layout .section-default ol ol {
	list-style-type: decimal;
	padding-left: 15px;
	margin-left: 15px;
}
.default-layout .section-default ul ul ul li,
.default-layout .section-default ol ol ol li  {
	margin-bottom: 0;
}
.default-layout .section-default ul ul ul,
.default-layout .section-default ol ol ol {
	list-style-type: lower-alpha;
	padding-left: 18px;
}
@media (max-width: 991px) {
	.default-layout .section-default {
		padding: 40px 0 50px;
	}
	.default-layout .section-default h2 {
		font-size: 28px;
	}
}

/* ! BODY :: MAIN BANNER */
#section-banner {
	position: relative;
	width: 100%;
	height: 100vh;
}
#section-banner .main_banner {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/*background-attachment: fixed;*/
	position: fixed;
	top: 0;
	left: 0;
}
#section-banner.animate .main_banner {
	position: relative;
}
#section-banner #scollToNext {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	cursor: pointer;
	width: 30px;
	z-index: 2;
}

/* ! HOME PAGE */
/* ! HOME PAGE :: MAIN BANNER */
#index #section-banner .main_banner {
	background-image:  url(../images/home/banner-home_cropped181018.jpg);
}
@media (max-width: 991px) {
	#index #section-banner .main_banner {
		background-image: url(../images/home/banner-home-mobile_2.jpg);
	}
}
/* ! HOME PAGE :: ABOUT US */
#index #section-about {
	padding: 65px 0 35px;
	overflow: hidden;
}
#index #section-about h2 {
	position: relative;
	left: -100px;
	opacity: 0;
}
#index #section-about p {
	padding-right: 55px;
	position: relative;
	right: -100px;
	opacity: 0;
	text-align: justify;
}
#index #section-about a {
	color: #58595b;
    font-size: 15px;
    font-weight: 700;
    /* text-decoration: underline; */
    display: inline-block;
}

#index #section-about a:hover {
	color: #bea977;
    font-size: 15px;
    font-weight: 700;
    /* text-decoration: underline; */
    display: inline-block;
}

@media (max-width: 991px) {
	#index #section-about {
		padding: 45px 0 25px;
	}
	#index #section-about p {
		padding-right: 0;
		/*text-align: center;*/
		text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
	}
}
/* ! HOME PAGE :: PROJECTS */
#index #section-projects {
	padding: 60px 0 40px;
	background: #e4e3e0;
	overflow: hidden;
}
#index #section-projects .title {
	padding: 0 40px 35px;
}
#index #section-projects h2 {
	position: relative;
	top: 100px;
	opacity: 0;
}
#index #section-projects p {
	text-align: center;
	position: relative;
	top: 150px;
	opacity: 0;
}
#index #section-projects .project {
	padding: 0;
	position: relative;
	opacity: 0;
}
#index #section-projects .project .img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	padding-top: 56.3107%;
	display: block;
	text-decoration: none;
}
#index #section-projects .project.commercial {
	left: 100%;
}
#index #section-projects .project.commercial .img {
	background-image: url(../images/home/projects-commercial.jpg);
}
#index #section-projects .project.commercial .img:hover {
	background-image: url(../images/home/projects-commercial_hover.jpg);
}
#index #section-projects .project.residential {
	right: 100%;
}
#index #section-projects .project.residential .img {
	background-image: url(../images/home/projects-residential.jpg);
}
#index #section-projects .project.residential .img:hover {
	background-image: url(../images/home/projects-residential_hover.jpg);
}
#index #section-projects .project p {
	margin: 0;
	padding: 25px 10px;
}
@media (max-width: 991px) {
	#index #section-projects {
		padding: 60px 0 0;
	}
}
/* ! HOME PAGE :: CONTACT US */
#index #section-contact {
	background: #e5e4e4;
	z-index: 1;
}
#index #section-contact .contact_banner {
	width: 100%;
	padding-top: 31.6087%;
	position: relative;
}
#index #section-contact .contact_banner .banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/home/a1.png) no-repeat center;
	/*background-attachment: fixed;*/
	background-size: cover;
}
#index #section-contact .contact_banner.animate .banner {
	position: fixed;
}
#index #section-contact .contact_boxer {
	background: #e5e4e4;
	position: relative;
	padding-top: 45px;
}
#index #section-contact h3 {
	font-size: 24px;
	color: #333333;
	text-align: center;
	font-weight: 400;
	position: relative;
	top: 100px;
	opacity: 0;
}
#index #section-contact h3 span {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}
#index #section-contact h3 span:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #9b9a9a;
}
#index #section-contact .contact_details {
	padding: 30px 0;
	opacity: 0;
}
#index #section-contact .contact_details .logo {
	margin: 8px 0 30px;
	width: 225px;
}
#index #section-contact .contact_details .logo img {
	display: block;
	max-width: 100%;
}
#index #section-contact .contact_details h4 {
	font-family: "Futura Std", Helvetica, Arial, sans-serif;
	margin-bottom: 24px;
	font-size: 19px;
	font-weight: 400;
	color: #000000;
}
#index #section-contact .contact_details h5 {
	font-family: "Futura Std", Helvetica, Arial, sans-serif;
	margin-bottom: 24px;
	/*font-size: 18px;
	color: #333333;*/
	font-weight: 400;
	font-size: 14px;
    color: #58595b;
}
#index #section-contact .contact_details h5 a,
#index #section-contact .contact_details h5 a:hover {
    color: #58595b;
	text-decoration: none;
}
#index #section-contact .contact_details .iframe {
	margin-bottom: 10px;
	width: 100%;
	height: 275px;
}
#index #section-contact .contact_details .iframe iframe {
	width: 100%;
	height: 100%;
}
#index #section-contact .contact_details .email {
	display: inline-block;
}
#index #section-contact .contact_details .whatsapp {
	display: inline-block;
}

#index #section-contact .contact_details .waze {
	display: inline-block;
}
@media (max-width: 991px) {
	#index #section-contact .contact_banner {
		padding: 0;
		height: 100vh;
	}
	#index #section-contact .contact_banner .banner {
		/*padding-top: 213.695%;*/
		background-image: url(../images/home/ai-mobile.png);
		background-position: center top
	}
	#index #section-contact .contact_boxer {
		padding-top: 35px;
	}
	#index #section-contact .contact_details {
		padding: 24px 0;
	}
	#index #section-contact .contact_details .logo {
		/*max-width: 185px;*/
	}
	#index #section-contact .contact_details h4 {
		margin-bottom: 24px;
		font-size: 16px;
	}
	#index #section-contact .contact_details h5 {
		margin-bottom: 24px;
		font-size: 14px;
	}
	#index #section-contact .contact_details .iframe {
		height: 190px;
		margin-top: 10px;
	}
	#index #section-contact .contact_details .waze {
		display: block;
		width: 32px;
		margin: 0 auto;
	}
}
/* ! HOME PAGE :: FOOTER */
#index .footer {
	background: #e5e4e4;
}
#index .footer .container {
	position: relative;
}
#index .footer .container:before {
	content: '';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #828282;
}

/* ! PROJECT PAGE */
.projects-layout #section-title {
	padding: 75px 0 35px;
	text-align: center;
}
.projects-layout #section-title .box-title {
	width: 50%;
	float: left;
	padding: 0 15px;
}
.projects-layout #section-title h3 {
	font-size: 24px;
	color: #9b9a9a;
	font-weight: 400;
	margin-bottom: 25px;
	position: relative;
	top: 100px;
	opacity: 0;
}
.projects-layout #section-title p {
	position: relative;
	top: 150px;
	opacity: 0;
	text-align:center;
}
.projects-layout #section-projects .projects {
	position: relative;
	background: #fff;
}
.projects-layout #section-projects .projects .f-left {
	float: left;
}
.projects-layout #section-projects .projects .f-right {
	float: right;
}
.projects-layout #section-projects .projects .p-left {
	position: absolute;
	top: 0;
	left: 0;
}
.projects-layout #section-projects .projects .p-right {
	position: absolute;
	top: 0;
	right: 0;
}
.projects-layout #section-projects .projects .photo {
	width: 50%;
	/*padding-top: 30.7419%;*/
	padding-top: 20%;
	min-height: 360px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	-webkit-transition: 2.5s ease-in-out;
	-moz-transition: 2.5s ease-in-out;
	-o-transition: 2.5s ease-in-out;
	transition: 2.5s ease-in-out;
}
.projects-layout #section-projects .projects .photo.animate {
	opacity: 1;
}
.projects-layout #section-projects .projects .text-boxer {
	width: 50%;
	height: 100%;
	background-color: #e4e3e0;
	text-align: center;
}
.projects-layout #section-projects .projects .text-boxer .text {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 25px 60px 25px;
}
.projects-layout #section-projects .projects .text-boxer.grey-bg {
	background: #e4e3e0;
}
.projects-layout #section-projects .projects .text-boxer h6 {
	font-size: 18px;
	color: #bea977;
	font-weight: 400;
	margin: 0 auto 25px;
	max-width: 420px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: 1.5s ease-in-out;
	-moz-transition: 1.5s ease-in-out;
	-o-transition: 1.5s ease-in-out;
	transition: 1.5s ease-in-out;
}
.projects-layout #section-projects .projects .text-boxer.grey-bg h6 {
	color: #bea977;
}
.projects-layout #section-projects .projects .text-boxer h6.animate {
	top: 0;
	opacity: 1;
}
.projects-layout #section-projects .projects .text-boxer p {
	font-size: 13px;
	color: #58595b;
	font-weight: 450;
	margin: 0 auto 6px;
	max-width: 410px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: 2s ease-in-out;
	-moz-transition: 2s ease-in-out;
	-o-transition: 2s ease-in-out;
	transition: 2s ease-in-out;
}
.projects-layout #section-projects .projects .text-boxer p:nth-child(3) {
	-webkit-transition: 2.5s ease-in-out;
	-moz-transition: 2.5s ease-in-out;
	-o-transition: 2.5s ease-in-out;
	transition: 2.5s ease-in-out;
}
.projects-layout #section-projects .projects .text-boxer p:nth-child(4) {
	-webkit-transition: 3s ease-in-out;
	-moz-transition: 3s ease-in-out;
	-o-transition: 3s ease-in-out;
	transition: 3s ease-in-out;
}
.projects-layout #section-projects .projects .text-boxer p:nth-child(4) {
	-webkit-transition: 3.5s ease-in-out;
	-moz-transition: 3.5s ease-in-out;
	-o-transition: 3.5s ease-in-out;
	transition: 3.5s ease-in-out;
}
.projects-layout #section-projects .projects .text-boxer p.animate {
	top: 0;
	opacity: 1;
	line-height: 20px;
}
.projects-layout #section-projects .projects .text-boxer .read_more {
	font-size: 13px;
	color: #58595b;
	font-weight: 400;
	text-decoration: underline;
}
.projects-layout #section-projects .projects .text-boxer .read_more:hover {
	text-decoration: underline;
}
.projects-layout #section-projects .projects .text-boxer.grey-bg .read_more {
	color: #58595b;
}


/*TEST READ MORE */
.projects-layout #section-projects .projects .text-boxer .read_more1 {
	font-size: 15px;
	color: #58595b;
	font-weight: 700;
}
.projects-layout #section-projects .projects .text-boxer .read_more1:hover {
	text-decoration: none;
	color: #937843;
}
.projects-layout #section-projects .projects .text-boxer.grey-bg .read_more1 {
	color: #58595b;
}

.projects-layout #section-projects .projects .text-boxer.grey-bg .read_more1:hover {
	color: #937843;
	text-decoration: none;
}


@media (max-width: 991px) {
	.projects-layout #section-title .box-title {
		width: 100%;
		float: none;
	}
	.projects-layout #section-projects .projects .f-left {
		float: none;
	}
	.projects-layout #section-projects .projects .f-right {
		float: none;
	}
	.projects-layout #section-projects .projects .p-left {
		position: relative;
	}
	.projects-layout #section-projects .projects .p-right {
		position: relative;
	}
	.projects-layout #section-projects .projects .photo {
		width: 100%;
		padding-top: 129.7927%;
		min-height: 0;
	}
	.projects-layout #section-projects .projects .text-boxer {
		width: 100%;
		height: auto;
	}
	.projects-layout #section-projects .projects .text-boxer .text {
		position: relative;
		top: 0;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
		padding: 35px 60px 25px;
	}
}
/* ! PROJECT PAGE :: COMMERCIAL PAGE */
/* ! PROJECT PAGE :: COMMERCIAL PAGE :: MAIN BANNER */
#commercial #section-banner .main_banner {
	background-image: url(../images/commercial/banner-commercial_1.jpg);
}
@media (max-width: 991px) {
	#commercial #section-banner .main_banner {
		background-image: url(../images/commercial/banner-commercial-mobile_1.jpg);
	}
}
/* ! PROJECT PAGE :: COMMERCIAL PAGE :: PROJECT */
#commercial #section-projects .projects-bukit_bintang .photo {
	background-image: url(../images/commercial/thumbnail-bukit_bintang.jpg);
}
@media (max-width: 991px) {
	#commercial #section-projects .projects-bukit_bintang .photo {
		background-image: url(../images/commercial/thumbnail-bukit_bintang-mobile.jpg);
	}
}
/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE */
/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: MAIN BANNER */
#commercial-bukit_bintang #section-banner .main_banner {
	background-image: url(../images/commercial-bukit_bintang/main-banner-3.jpg);
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-banner .main_banner {
		background-image: url(../images/commercial-bukit_bintang/main-banner-3-mobile.jpg);
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT */
#commercial-bukit_bintang #section-projects .projects-menara_ts_law .photo {
	background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law_2.jpg);
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects .projects-menara_ts_law .photo {
		background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law-mobile_2.jpg);
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT */
#commercial-bukit_bintang #section-projects .projects-menara_ts_law3 .photo {
	background-image: url(../images/commercial-bukit_bintang/thumbnail-bukit_bintang.jpg);
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects .projects-menara_ts_law3 .photo {
		background-image: url(../images/commercial-bukit_bintang/thumbnail-bukit_bintang-mobile.jpg);
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT */
#commercial-bukit_bintang #section-projects .projects-menara_ts_law4 .photo {
	background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law.jpg);
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects .projects-menara_ts_law4 .photo {
		background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law-mobile.jpg);
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT */
#commercial-bukit_bintang #section-projects .projects-menara_ts_law6 .photo {
	background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law_3.jpg);
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects .projects-menara_ts_law6 .photo {
		background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law-mobile_3.jpg);
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT */
#commercial-bukit_bintang #section-projects .projects-menara_ts_law1 .photo {
	background-image: url(../images/commercial-bukit_bintang/tslaw_tower_2.jpg)
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects .projects-menara_ts_law1 .photo {
		background-image: url(../images/commercial-bukit_bintang/tslaw_tower-mobile_2.jpg);
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT */
#commercial-bukit_bintang #section-projects .projects-menara_ts_law2 .photo {
	background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law_4.jpg);
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects .projects-menara_ts_law2 .photo {
		background-image: url(../images/commercial-bukit_bintang/thumbnail-menara_ts_law-mobile_4.jpg);
	}
}
/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE :: PROJECT DETAILS */
#commercial-bukit_bintang #section-projects_details {
	background-color: #fff;
}
#commercial-bukit_bintang #section-projects_details .title h2 {
	padding-top: 66px;
	opacity: 0;
	position: relative;
	top: 100px;
	-webkit-transition: 1.5s ease-in-out;
	-moz-transition: 1.5s ease-in-out;
	-o-transition: 1.5s ease-in-out;
	transition: 1.5s ease-in-out;
}
#commercial-bukit_bintang #section-projects_details .title h2.animate {
	top: 0;
	opacity: 1;
}
#commercial-bukit_bintang #section-projects_details .box-text {
	padding-bottom: 32px;
}
#commercial-bukit_bintang #section-projects_details .box-text p {
	text-align: right;
	opacity: 0;
	position: relative;
	top: 100px;
	-webkit-transition: 1.5s ease-in-out;
	-moz-transition: 1.5s ease-in-out;
	-o-transition: 1.5s ease-in-out;
	transition: 1.5s ease-in-out;
}
#commercial-bukit_bintang #section-projects_details  .box-text.box-right p {
	text-align: left;
	margin-bottom: 10px;
}
#commercial-bukit_bintang #section-projects_details  .box-text p.animate {
	top: 0;
	opacity: 1;
}
#commercial-bukit_bintang #section-projects_details .bgimg {
    background: url(../images/commercial-bukit_bintang/unique_factors_1.jpg) no-repeat center;
    background-size: cover;
    padding-top: 36.1011%;
}
#commercial-bukit_bintang #section-projects_details .projects-type .type-boxer {
	width: 50%;
	float: left;
	padding: 100px 60px 75px;
	text-align: center;
}
#commercial-bukit_bintang #section-projects_details .projects-type .type-boxer h6 {
	font-size: 13px;
	color: #bea977;
	font-weight: 400;
	margin: 0 auto 25px;
	max-width: 420px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: 1.5s ease-in-out;
	-moz-transition: 1.5s ease-in-out;
	-o-transition: 1.5s ease-in-out;
	transition: 1.5s ease-in-out;
}
#commercial-bukit_bintang #section-projects_details .projects-type .type-boxer h6.animate {
	top: 0;
	opacity: 1;
}
#commercial-bukit_bintang #section-projects_details .projects-type .type-boxer p {
    font-size: 13px;
    color: #58595b;
    font-weight: 450;
    margin: 0 auto 6px;
    max-width: 410px;
    position: relative;
    top: 100px;
    opacity: 0;
    line-height: 20px;
    -webkit-transition: 2s ease-in-out;
    -moz-transition: 2s ease-in-out;
    -o-transition: 2s ease-in-out;
    transition: 2s ease-in-out;
}
#commercial-bukit_bintang #section-projects_details .projects-type .type-boxer p.animate {
	top: 0;
	opacity: 1;
}
#commercial-bukit_bintang #section-projects_details .projects-type .photo {
	padding-top: 30px;
}
#commercial-bukit_bintang #section-projects_details .projects-type .photo img {
	max-width: 100%;
}
@media (max-width: 991px) {
	#commercial-bukit_bintang #section-projects_details .bgimg {
	    background-image: url(../images/commercial-bukit_bintang/unique_factors-mobile_1.jpg);
	    padding-top: 143.7372%;
	}
	#commercial-bukit_bintang #section-projects_details .box-text p {
		text-align: center;
	}
	#commercial-bukit_bintang #section-projects_details  .box-text.box-right p {
		text-align: center;
	}
	#commercial-bukit_bintang #section-projects_details .projects-type .type-boxer {
		width: 100%;
		float: none;
		padding: 30px 20px;
	}
	#commercial-bukit_bintang #section-projects_details .projects-type .photo {
		padding-top: 0;
	}
}

/* ! PROJECT PAGE :: COMMERCIAL BUKIT BINTANG PAGE ::FLOOR PLANS */
#commercial-bukit_bintang .boxer-floorplan {
	padding-bottom: 20px;
	max-width: 720px;
	width: 100%;
	margin: 0 auto;
}
#commercial-bukit_bintang .boxer-floorplan a {
	display: block;
	text-decoration: none;
	font-size: 13px;
    color: #7b7b7b;
}
#commercial-bukit_bintang .boxer-floorplan a:hover,
#commercial-bukit_bintang .boxer-floorplan a:focus {
	text-decoration: none;
    color: #bea977;
}
#commercial-bukit_bintang .boxer-floorplan .box-thumbnail {
	padding: 0 60px;
	text-align: right;
}
#commercial-bukit_bintang .boxer-floorplan .box-text {
	padding: 15px 20px 15px 60px;
	text-align: left;
}
@media (max-width: 991px) {
	#commercial-bukit_bintang .boxer-floorplan .box-thumbnail {
		text-align: center;
		padding: 15px 20px;
	}
	#commercial-bukit_bintang .boxer-floorplan .box-text {
		text-align: center;
		padding: 15px 20px;
	}
}

/* ! FLOOR PLAN PAGE */
.floorplan-layout .btn-back {
	max-width: 780px;
	margin: 0 auto;
	padding: 60px 0 0;
	text-align: right;
}
.floorplan-layout .btn-back a {
	display: block;
	text-decoration: none;
	font-size: 13px;
    color: #7b7b7b;
}
.floorplan-layout .btn-back a:hover,
.floorplan-layout .btn-back a:focus {
	text-decoration: none;
    color: #7b7b7b;
}
.floorplan-layout .floorplan_img {
	max-width: 780px;
	margin: 0 auto;
	padding: 30px 0;
}
.floorplan-layout .floorplan_img img {
	display: block;
	max-width: 100%;
}

/* ! PROJECT PAGE :: RESIDENTIAL PAGE */
/* ! PROJECT PAGE :: RESIDENTIAL PAGE :: MAIN BANNER */
#residential #section-banner .main_banner {
	background-image: url(../images/residential/banner-residential_1.jpg);
}

@media (max-width: 991px) {
	#residential #section-banner .main_banner {
		background-image: url(../images/residential/banner-residential-mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL PAGE :: PROJECT */
#residential #section-projects .projects-taman_desa_1 .photo {
	background-image: url(../images/residential/stock-taman_desa.jpg);
}
#residential #section-projects .projects-taman_desa_2 .photo {
	background-image: url(../images/residential/stock-kuchai_lama.jpg);
}
#residential #section-projects .projects-taman_desa_3 .photo {
	background-image: url(../images/residential/stock_subang_jaya.jpg);
}
#residential #section-projects .projects-taman_desa_4 .photo {
	background-image: url(../images/residential/stock_bukit-bintang.jpg);
}

@media (max-width: 991px) {
	#residential #section-projects .projects-taman_desa_1 .photo {
		background-image: url(../images/residential/thumbnail-taman_desa_mobile.jpg);
	}
	#residential #section-projects .projects-taman_desa_2 .photo {
		background-image: url(../images/residential/thumbnail-kuchai_lama_mobile.jpg);
	}
	#residential #section-projects .projects-taman_desa_3 .photo {
		background-image: url(../images/residential/thumbnail-subang_jaya_mobile.jpg);
	}
	#residential #section-projects .projects-taman_desa_4 .photo {
		background-image: url(../images/residential/thumbnail-bukit_bintang_mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL TAMAN DESA PAGE */
/* ! PROJECT PAGE :: RESIDENTIAL TAMAN DESA PAGE :: MAIN BANNER */
#residential-taman_desa #section-banner .main_banner {
	background-image: url(../images/residential-taman_desa/banner-residential-taman_desa.jpg);
}

@media (max-width: 991px) {
	#residential-taman_desa #section-banner .main_banner {
		background-image: url(../images/residential-taman_desa/banner-residential-taman_desa-mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL TAMAN DESA PAGE :: PROJECT */
#residential-taman_desa #section-projects .projects-taman_desa_1 .photo {
	background-image: url(../images/residential-taman_desa/stock-taman_desa.jpg);
}
#residential-taman_desa #section-projects .projects-taman_desa_2 .photo {
	background-image: url(../images/residential-taman_desa/stock-kuchai_lama.jpg);
}
#residential-taman_desa #section-projects .projects-taman_desa_3 .photo {
	background-image: url(../images/residential-taman_desa/stock_subang_jaya.jpg);
}
#residential-taman_desa #section-projects .projects-taman_desa_4 .photo {
	background-image: url(../images/residential-taman_desa/stock_bukit-bintang.jpg);
}

@media (max-width: 991px) {
	#residential-taman_desa #section-projects .projects-taman_desa_1 .photo {
		background-image: url(../images/residential-taman_desa/thumbnail-taman_desa_mobile.jpg);
	}
	#residential-taman_desa #section-projects .projects-taman_desa_2 .photo {
		background-image: url(../images/residential-taman_desa/thumbnail-kuchai_lama_mobile.jpg);
	}
	#residential-taman_desa #section-projects .projects-taman_desa_3 .photo {
		background-image: url(../images/residential-taman_desa/thumbnail-subang_jaya_mobile.jpg);
	}
	#residential-taman_desa #section-projects .projects-taman_desa_4 .photo {
		background-image: url(../images/residential-taman_desa/thumbnail-bukit_bintang_mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL SEREMBAN PAGE */
/* ! PROJECT PAGE :: RESIDENTIAL SEREMBAN PAGE :: MAIN BANNER */
#residential-seremban #section-banner .main_banner {
	background-image: url(../images/residential-seremban/banner-residential-seremban.jpg);
}

@media (max-width: 991px) {
	#residential-seremban #section-banner .main_banner {
		background-image: url(../images/residential-seremban/banner-residential-seremban-mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL SEREMBAN PAGE :: PROJECT */
#residential-seremban #section-projects .projects-seremban_1 .photo {
	background-image: url(../images/residential-seremban/thumbnail-seremban_1.jpg);
}
#residential-seremban #section-projects .projects-seremban_2 .photo {
	background-image: url(../images/residential-seremban/thumbnail-seremban_2.jpg);
}
#residential-seremban #section-projects .projects-seremban_3 .photo {
	background-image: url(../images/residential-seremban/thumbnail-seremban_3.jpg);
}

@media (max-width: 991px) {
	#residential-seremban #section-projects .projects-seremban_1 .photo {
		background-image: url(../images/residential-seremban/thumbnail-seremban_1-mobile.jpg);
	}
	#residential-seremban #section-projects .projects-seremban_2 .photo {
		background-image: url(../images/residential-seremban/thumbnail-seremban_2-mobile.jpg);
	}
	#residential-seremban #section-projects .projects-seremban_3 .photo {
		background-image: url(../images/residential-seremban/thumbnail-seremban_3-mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL BUKIT BINTANG PAGE */
/* ! PROJECT PAGE :: RESIDENTIAL BUKIT BINTANG PAGE :: MAIN BANNER */
#residential-bukit_bintang #section-banner .main_banner {
	background-image: url(../images/residential-bukit_bintang/banner-residential-bukit_bintang.jpg);
}

@media (max-width: 991px) {
	#residential-bukit_bintang #section-banner .main_banner {
		background-image: url(../images/residential-bukit_bintang/banner-residential-bukit_bintang-mobile.jpg);
	}
}
/* ! PROJECT PAGE :: RESIDENTIAL BUKIT BINTANG PAGE :: PROJECT */
#residential-bukit_bintang #section-projects .projects-soho .photo {
	background-image: url(../images/residential-bukit_bintang/thumbnail-soho.jpg);
}
@media (max-width: 991px) {
	#residential-bukit_bintang #section-projects .projects-soho .photo {
		background-image: url(../images/residential-bukit_bintang/thumbnail-soho-mobile.jpg);
	}
}

/* ! REGISTER PAGE */
.register-layout #section-form {
	padding: 100px 0 70px;
}
.register-layout .form {
	max-width: 990px;
	margin: 0 auto;
}
.register-layout .form h4 {
	/*font-family: 'Raleway', sans-serif;*/
	/*font-weight: 600;*/
	font-size: 30px;
	color: #231f20;
	margin-bottom: 75px;
	padding: 0 30px;
}
.register-layout .form .group {
	width: 50%;
	float: left;
	padding: 0 30px 60px;
}
.register-layout .form .group-bottom {
	width: 100%;
	padding-bottom: 0;
	padding-top: 15px;
	border-top: 1px solid #ddd1b9;
}
.register-layout .form .input-boxer {
	margin-bottom: 10px;
	position: relative;
	padding-left: 145px;
}
.register-layout .form .input-group {
	margin-bottom: 10px;
	position: relative;
	padding-left: 145px;
	width: 100%;
}
.register-layout .form .input-group .input-boxer {
	margin-bottom: 0;
	padding-left: 0;
	max-width: 100%;
}
.register-layout .form .input-boxer label,
.register-layout .form .input-group h6 {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 12px;
	color: #58595b;
	font-weight: 400;
	padding: 4px 0;
}
.register-layout .form .input-boxer .box {
	width: 100%;
	position: relative;
}
.register-layout .form .input-boxer .input {
	border: 1px solid #b8bab3;
	width: 100%;
	height: 25px;
	font-size: 12px;
	color: #58595b;
	font-weight: 400;
	padding: 4px 8px;
	background: #fff;
}
.register-layout .form .input-boxer .input.select {
	background-image: url(../images/icon-scroll.png);
	background-repeat: no-repeat;
	background-position: right 8px center;
	border-radius: 0px;
}
.register-layout .form .input-boxer .input.textarea {
	height: 80px;
	resize: none;
}
.register-layout .form .checkbox-boxer {
	position: relative;
	padding-left: 0;
}
.register-layout .form .checkbox-boxer .checkbox {
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 12px;
	height: 12px;
	background: url(../images/icon-checkbox2.png) no-repeat center top;
	cursor: pointer;
	display: block;
}
.register-layout .form .checkbox-boxer .checked {
	opacity: 1;
	z-index: 2;
}
.register-layout .form .checkbox-boxer .checkbox:checked + label .checked {
	background-position-y: bottom;
}
.register-layout .form .checkbox-boxer .checkbox-text {
    position: relative;
    font-size: 12px;
    color: #58595b;
    font-weight: 400;
	padding: 0 0 0 25px;
	cursor: pointer;
	text-align: justify;
}
.register-layout .form .input-boxer .phone_box {
	padding-left: 68px;
}
.register-layout .form .input-boxer .dial_codes {
	width: 62px;
	position: absolute;
	top: 0;
	left: 0;
}
.register-layout .form .input-boxer .error-message {
	font-size: 12px;
	color: #a94442;
	font-weight: 400;
	padding-top: 2px;
}
.register-layout .form .note {
	font-size: 12px;
	color: #bca373;
	font-weight: 400;
	margin-bottom: 15px;
	float: left;
	width: 100%;
}
.register-layout .form .interested-group {
	/*padding: 30px 0 10px;*/
	padding-bottom: 25px;
}
.register-layout .form .interested-group h6 {
	font-weight: 400;
	color: #58595b;
	font-size: 12px;
	margin-bottom: 10px;
}
.register-layout .form .interested-group .input-boxer {
	padding-left: 0;
	max-width: 180px;
	margin-bottom: 10px;
}
.register-layout .form .purpose-group {
	padding-bottom: 50px;
}
.register-layout .form .preferred-group .input-boxer {
	float: left;
	margin-right: 18px;
}
.register-layout .form .preferred-group .checkbox-boxer .checkbox-text {
	padding-left: 20px;
}
.register-layout .form .button-boxer {
	padding-left: 0;
	padding-top: 25px;
}
.register-layout .form .input-boxer .button {
	border: 1px solid #f3f4f3;
    background: #b8bab3;
    box-shadow: 0px 0px 5px #b8bab3;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    width: 120px;
    line-height: 25px;
    margin-right: 10px;
}
.register-layout .form .input-boxer .button:last-child {
	margin-right: 0;
}
@media (max-width: 991px) {
	.register-layout #section-form {
		padding: 40px 0 25px;
	}
	.register-layout .form h4 {
		font-size: 28px;
		margin-bottom: 50px;
		padding: 0 15px;
	}
	.register-layout .form .note {
		text-align: left;
		padding-left: 15px;
		float: none;
		padding-top: 30px;
	}
	.register-layout .form .group {
		width: 100%;
		float: none;
		/*padding: 0 15px 25px;*/
		padding: 0 15px;
	}
	.register-layout .form .group-bottom {
		padding-top: 25px;
		padding-bottom: 0;
	}
	.register-layout .form .interested-group {
		padding-bottom: 0;
	}
	.register-layout .form .interested-group .input-boxer {
		max-width: 100%;
	}
	.register-layout .form .interested-group .input-boxer:last-child {
		margin-bottom: 0;
	}
	.register-layout .form .purpose-group {
		padding-bottom: 0;
	}
	.register-layout .form .button-boxer {
		text-align: center;
		/*padding-top: 40px;*/
	}
}
/* ! REGISTER PAGE :: REGISTER INTEREST */
#register .form h4 {
	/*max-width: 320px;*/
}
#register .form #salutation {
	max-width: 95px;
	border-radius: 0px;
}
#register .form #gender,
#register .form #age_group {
	max-width: 95px;
}
@media (max-width: 991px) {
	#register .form h4 {
		max-width: 300px;
	}
}
/* ! REGISTER PAGE :: REGISTER PRIORITY UPDATES */
#priority_updates .form h4 {
	max-width: 720px;
}
#priority_updates .form .group {
	padding-bottom: 25px;
}
#priority_updates .form .group-bottom {
	padding-bottom: 0;
}
#priority_updates .form .interested-group {
	padding: 30px 0 10px 145px;
}
#priority_updates .form .interested-group .input-boxer {
	max-width: 100%;
}
#priority_updates .form .interested-group .checkbox-boxer .checkbox {
	background-image: url(../images/icon-checkbox.png);
}
#priority_updates .form .button-boxer {
	padding-top: 45px;
	text-align: center;
}
@media (max-width: 991px) {
	#priority_updates .form .interested-group {
		padding: 30px 0 10px;
	}
}