/* Global */
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: #1E74B9;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.25em;
}
h4 {
	font-size: 1.125em;
}
h4 {
	font-size: 1em;
}
h5 {
	font-size: .875em;
}
h6 {
	font-size: .750em;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
mark,
nav,
section,
summary,
time {
	display: block;
}
footer::after,
header::after,
section::after {
	display: block;
	clear: both;
	content: "";
}


/* Body */
html,
body {
	width: 100%;
	height: 100%;
	text-align: left;
	word-wrap: break-word;
	color: #515151;
	background: #FFF;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
}
body {
	overflow-x: hidden;
	overflow-y: scroll;
}


/* Button */
.button {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 14px 33.5px 14px 35px;
	cursor: pointer;
	user-select: none;
	transition: background-color 200ms ease-in-out;
	text-align: center;
	vertical-align: top;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #FFF;
	border: none;
	border-radius: 0;
	outline: none;
	background: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.button:hover {
	background-color: #CF641B;
}


/* Container */
.container {
	box-sizing: content-box;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}
.container::after {
	display: block;
	clear: both;
	content: "";
}


/* Main Title */
h2.title-main {
	margin: 0;
	padding: 0;
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
}
h2.title-main::before {
	display: block;
	float: left;
	margin: 8px 15px 8px 0;
	content: "";
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 14px solid #1E74B9;
}
h2.title-main::after {
	display: block;
	clear: both;
	content: "";
}
h2.title-main a {
	transition: opacity 200ms ease-in-out;
	color: inherit;
}
h2.title-main a:hover {
	opacity: .5;
}
h2.title-main span {
	color: #1E74B9;
}


/* Pagination */
.pagination {
	text-align: center;
	font-size: 0;
}
.pagination > .pagination-prev,
.pagination > .pagination-next,
.pagination > .pagination-numbers,
.pagination > .page-numbers {
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
}
.pagination > .prev,
.pagination > .next {
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}
.pagination > .prev {
	margin-right: 25px;
	border-right: 8px solid #F37520;
}
.pagination > .next {
	margin-left: 25px;
	border-left: 8px solid #F37520;
}
.pagination > .page-numbers:not(.prev):not(.next) {
	position: relative;
	margin: 0 15px;
	transition: color 200ms ease-in-out;
	color: #BBB;
	color: rgba(187, 187, 187, .8);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}
.pagination > .page-numbers:not(.prev):not(.next):hover {
	color: #BBB;
}
.pagination > .page-numbers:not(.prev):not(.next):first-child {
	margin-left: 0;
}
.pagination > .page-numbers:not(.prev):not(.next):last-child {
	margin-right: 0;
}
.pagination > .page-numbers:not(.prev):not(.next)::before {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	visibility: hidden;
	width: 100%;
	height: 2px;
	content: "";
	transition: visibility 200ms, transform 200ms, opacity 200ms;
	transform: scaleX(.5);
	opacity: 0;
	background: currentColor;
}
.pagination > .page-numbers:not(.prev):not(.next).current {
	cursor: default;
	color: #064F8C;
}
.pagination > .page-numbers:not(.prev):not(.next).current::before {
	visibility: visible;
	transform: scaleX(1);
	opacity: 1;
}


/* Header */
header.header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	padding: 35px 60px;
	transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	animation: 600ms ease-in-out both animateIn;
}
header.header > .left {
	float: left;
	clear: left;
}
header.header > .right {
	float: right;
	clear: right;
}
header.header .header-logo {
	position: relative;
	display: block;
	float: left;
	clear: left;
	width: 200px;
	height: 58px;
	transition: opacity 200ms ease-in-out;
}
header.header .header-logo:hover {
	opacity: .5;
}
header.header .header-logo::before,
header.header .header-logo::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	transition: visibility 200ms ease-in-out, opacity 200ms ease-in-out;
	background: center no-repeat;
	background-size: contain;
}
header.header .header-logo::before {
	visibility: visible;
	opacity: 1;
	background-image: url("./static/img/logos/northhomesstack/White.svg");
}
header.header .header-logo::after {
	visibility: hidden;
	opacity: 0;
	background-image: url("./static/img/logos/northhomesstack/Blue.svg");
}
header.header .header-burger {
	position: relative;
	display: none;
	float: right;
	clear: right;
	width: 36px;
	height: 48px;
	cursor: pointer;
	transition: opacity 200ms ease-in-out;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}
header.header .header-burger:hover {
	opacity: .5;
}
header.header .header-burger > span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	transition: background-color 200ms ease-in-out;
	background: #FFF;
}
header.header .header-burger > span:nth-child(1) {
	top: 0;
}
header.header .header-burger > span:nth-child(2) {
	top: 10px;
}
header.header .header-burger > span:nth-child(3) {
	top: 20px;
}
header.header .header-navi {
	display: block;
	padding: 5px 0;
}
header.header .header-navi > ul {
	margin: 0 -15px;
	padding: 0;
	list-style: none;
}
header.header .header-navi > ul::after {
	display: block;
	clear: both;
	content: "";
}
header.header .header-navi > ul > li {
	position: relative;
	display: block;
	float: left;
	margin: 0 15px;
}
header.header .header-navi > ul > li > a {
	display: block;
	font-size: 14px;
	line-height: 1.45;
}
header.header .header-navi .navi-link {
	position: relative;
	padding: 14px 0;
	transition: color 200ms ease-in-out;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #FFF;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 500;
}
header.header .header-navi .navi-link::before {
	position: absolute;
	bottom: 10px;
	left: 0;
	display: block;
	visibility: hidden;
	width: 100%;
	height: 2px;
	content: "";
	transition: visibility 200ms ease-in-out, transform 200ms ease-in-out, opacity 200ms ease-in-out, background-color 200ms ease-in-out;
	transform: scaleX(.75);
	opacity: 0;
	background: #FFF;
}
header.header .header-navi .navi-link > i {
	position: absolute;
	top: 50%;
	right: -22px;
	display: none;
	display: block;
	margin-top: -3px;
	transition: transform 200ms ease-in-out;
	border-top: 6px solid #F37520;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}
header.header .header-navi .navi-dropdown {
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 0;
	visibility: hidden;
	width: 100%;
	padding-right: 22px;
	transition: visibility 200ms ease-in-out, transform 200ms ease-in-out, opacity 200ms ease-in-out;
	transform: scale(.75);
	opacity: 0;
}
header.header .header-navi .navi-dropdown::before {
	display: block;
	width: 0;
	height: 0;
	margin: 0 auto;
	content: "";
	border-right: 10px solid transparent;
	border-bottom: 10px solid #1E74B9;
	border-left: 10px solid transparent;
}
header.header .header-navi .navi-dropdown > ul {
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 25px;
	list-style: none;
	background: #1E74B9;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}
header.header .header-navi .navi-dropdown > ul > li {
	margin-top: 25px;
}
header.header .header-navi .navi-dropdown > ul > li:first-child {
	margin-top: 0;
}
header.header .header-navi .navi-dropdown > ul > li > a {
	display: block;
	transition: opacity 200ms ease-in-out;
	white-space: nowrap;
	color: #FFF;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 500;
	line-height: 1.4;
}
header.header .header-navi .navi-dropdown > ul > li > a:hover {
	opacity: .5;
}
header.header .header-navi .navi-button {
	margin-left: 10px;
	padding-right: 28.5px;
	padding-left: 30px;
}
header.header .header-navi > ul > li.dropdown .navi-link {
	border-right: 22px solid transparent;
}
header.header .header-navi > ul > li.dropdown .navi-link > i {
	display: block;
}
header.header .header-navi .navi-link:hover::before,
header.header .header-navi > ul > li.current .navi-link::before,
header.header .header-navi > ul > li.dropdown.active .navi-link::before {
	visibility: visible;
	transform: scaleX(1);
	opacity: 1;
}
header.header .header-navi > ul > li.dropdown.active .navi-link > i {
	transform: rotate(180deg);
}
header.header .header-navi > ul > li.dropdown.active .navi-dropdown {
	visibility: visible;
	transform: scale(1);
	opacity: 1;
}
header.header .header-mobnavi {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: none;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 100%;
	transition: visibility 200ms ease-in-out, background-color 200ms ease-in-out;
}
header.header .header-mobnavi .mobnavi-content {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	width: calc(100% - 25px);
	max-width: 400px;
	min-height: 100%;
	transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
	transform: scaleX(.5);
	transform-origin: right center;
	opacity: 0;
	background: #FFF;
	box-shadow: 2px 0 10px rgba(0, 0, 0, .2);
}
header.header .header-mobnavi .mobnavi-content > .top,
header.header .header-mobnavi .mobnavi-content > .bottom {
	padding: 35px;
}
header.header .header-mobnavi .mobnavi-content > .top::after {
	display: block;
	clear: both;
	content: "";
}
header.header .header-mobnavi .mobnavi-content .content-close {
	position: relative;
	display: block;
	float: right;
	clear: right;
	width: 36px;
	height: 48px;
	cursor: pointer;
	transition: opacity 200ms ease-in-out;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}
header.header .header-mobnavi .mobnavi-content .content-close:hover {
	opacity: .5;
}
header.header .header-mobnavi .mobnavi-content .content-close > span {
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 4px;
	transition: background-color 200ms ease-in-out;
	background: #0A1E2F;
}
header.header .header-mobnavi .mobnavi-content .content-close > span:nth-child(1) {
	transform: rotate(45deg);
}
header.header .header-mobnavi .mobnavi-content .content-close > span:nth-child(2) {
	transform: rotate(-45deg);
}
header.header .header-mobnavi .mobnavi-content .content-menu {
	border-top: 1px solid #F2F2F2;
}
header.header .header-mobnavi .mobnavi-content .content-menu > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-link {
	position: relative;
	display: block;
	padding: 15px 35px;
	transition: border-bottom-color 200ms ease-in-out, background-color 200ms ease-in-out;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #0A1E2F;
	border-bottom: 1px solid #F2F2F2;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-link:hover {
	background-color: #F2F2F2;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-link > i {
	display: none;
	float: right;
	margin: 7px 0;
	transition: transform 200ms ease-in-out;
	border-top: 6px solid #F37520;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-dropdown {
	display: none;
	background: #1E74B9;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-dropdown > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-dropdown .dropdown-link {
	display: block;
	width: 100%;
	padding: 15px 35px;
	transition: background-color 200ms ease-in-out;
	color: #FFF;
	border-bottom: 1px solid #1A639D;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}
header.header .header-mobnavi .mobnavi-content .content-menu .menu-dropdown .dropdown-link:hover {
	background-color: #1A639D;
}
header.header .header-mobnavi .mobnavi-content .content-menu > ul > li.dropdown .menu-link::after {
	display: block;
	clear: both;
	content: "";
}
header.header .header-mobnavi .mobnavi-content .content-menu > ul > li.dropdown .menu-link > i {
	display: block;
}
header.header .header-mobnavi .mobnavi-content .content-menu > ul > li.dropdown.active .menu-link {
	border-bottom-color: #1A639D;
}
header.header .header-mobnavi .mobnavi-content .content-menu > ul > li.dropdown.active .menu-link > i {
	transform: rotate(180deg);
}
header.header .header-mobnavi .mobnavi-content .content-request .request-button {
	display: block;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}
header.header.white-bg {
	background-color: #FFF;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
header.header.white-bg .header-logo::before {
	visibility: hidden;
	opacity: 0;
}
header.header.white-bg .header-logo::after {
	visibility: visible;
	opacity: 1;
}
header.header.white-bg .header-burger > span {
	background: #0A1E2F;
}
header.header.white-bg .header-navi .navi-link {
	color: #0A1E2F;
}
header.header.white-bg .header-navi .navi-link::before {
	background-color: #0A1E2F;
}


/* Wrapper */
main.wrapper {
	position: relative;
	overflow: hidden;
}


/* Hero */
section.hero {
	position: relative;
	z-index: 0;
	background: #0A1E2F;
	background: -moz-linear-gradient(top, #144363 0%, #0A1E2F 100%);
	background: -webkit-linear-gradient(top, #144363 0%, #0A1E2F 100%);
	background: linear-gradient(to bottom, #144363 0%, #0A1E2F 100%);
}
section.hero .hero-carousel {
	position: relative;
	z-index: 0;
}
section.hero .hero-carousel > .slick {
	overflow: hidden;
	width: 100%;
	height: 800px;
}
section.hero .hero-carousel > .slick *:focus {
	outline: none;
}
section.hero .hero-carousel .carousel-slide {
	position: relative;
	height: 800px;
	padding-top: 93px;
}
section.hero .hero-carousel .carousel-slide > .flex {
	display: flex;
	align-items: center;
	height: 100%;
}
section.hero .hero-carousel .carousel-slide .slide-image,
section.hero .hero-carousel .carousel-slide .slide-image::before,
section.hero .hero-carousel .carousel-slide .slide-image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.hero .hero-carousel .carousel-slide .slide-image {
	z-index: 0;
	overflow: hidden;
}
section.hero .hero-carousel .carousel-slide .slide-image::before {
	z-index: 1;
	content: "";
	background: -moz-linear-gradient(top, rgba(10, 30, 47, .5) 0%, transparent 30%, rgba(10, 30, 47, .2) 100%);
	background: -webkit-linear-gradient(top, rgba(10, 30, 47, .5) 0%, transparent 30%, rgba(10, 30, 47, .2) 100%);
	background: linear-gradient(to bottom, rgba(10, 30, 47, .5) 0%, transparent 30%, rgba(10, 30, 47, .2) 100%);
}
section.hero .hero-carousel .carousel-slide .slide-image > img {
	z-index: 0;
	opacity: .7;
	object-fit: cover;
}
section.hero .hero-carousel .carousel-slide .slide-details {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 150px 0;
	text-align: center;
}
section.hero .hero-carousel .carousel-slide .slide-details p {
	margin: 0;
	animation: 600ms ease-in-out 300ms both animateIn;
	color: #FFF;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 60px;
	line-height: 1;
}
section.hero .hero-carousel .carousel-slide .slide-details a {
	margin-top: 35px;
	animation: 600ms ease-in-out 600ms both animateIn;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
section.hero .hero-pagination {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-bottom: 60px;
	user-select: none;
	animation: 600ms ease-in-out 900ms both animateIn;
	text-align: center;
	font-size: 0;
}
section.hero .hero-pagination .pagination-arrow {
	display: inline-block;
	cursor: pointer;
	vertical-align: top;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}
section.hero .hero-pagination .pagination-prev {
	margin-right: 40px;
	border-right: 8px solid #FFF;
}
section.hero .hero-pagination .pagination-next {
	margin-left: 40px;
	border-left: 8px solid #FFF;
}
section.hero .hero-pagination .pagination-dots {
	display: inline-block;
	padding: 3px 0;
	vertical-align: top;
}
section.hero .hero-pagination .pagination-dots > ul {
	display: block;
	margin: 0 -15px;
	padding: 0;
	list-style: none;
}
section.hero .hero-pagination .pagination-dots > ul > li {
	display: inline-block;
	margin: 0 15px;
}
section.hero .hero-pagination .pagination-dots > ul > li > button {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: background-color 200ms ease-in-out;
	border: none;
	border-radius: 50%;
	outline: none;
	background: #F2F2F2;
	background: rgba(242, 242, 242, .5);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
section.hero .hero-pagination .pagination-dots > ul > li > button:hover {
	background-color: rgba(242, 242, 242, .75);
}
section.hero .hero-pagination .pagination-dots > ul > li.slick-active > button {
	background-color: #1E74B9;
}
section.hero .hero-content {
	display: flex;
	align-items: center;
	height: 800px;
	padding-top: 93px;
}
section.hero .hero-content > .flex {
	width: 100%;
}
section.hero .hero-content .content-image,
section.hero .hero-content .content-image::before,
section.hero .hero-content .content-image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.hero .hero-content .content-image {
	z-index: 0;
	overflow: hidden;
}
section.hero .hero-content .content-image::before {
	z-index: 1;
	content: "";
	background: -moz-linear-gradient(top, rgba(10, 30, 47, .5) 0%, transparent 30%, rgba(10, 30, 47, .2) 100%);
	background: -webkit-linear-gradient(top, rgba(10, 30, 47, .5) 0%, transparent 30%, rgba(10, 30, 47, .2) 100%);
	background: linear-gradient(to bottom, rgba(10, 30, 47, .5) 0%, transparent 30%, rgba(10, 30, 47, .2) 100%);
}
section.hero .hero-content .content-image > img {
	z-index: 0;
	opacity: .7;
	object-fit: cover;
}
section.hero .hero-content .content-details {
	position: relative;
	z-index: 1;
	margin: auto;
	padding: 150px 0;
	text-align: center;
}
section.hero .hero-content .content-details p {
	margin: 0;
	animation: 600ms ease-in-out 300ms both animateIn;
	color: #FFF;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 60px;
	line-height: 1;
}
section.hero .hero-content .content-details a {
	margin-top: 35px;
	animation: 600ms ease-in-out 600ms both animateIn;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}


/* Scroll */
section.scroll {
	position: absolute;
	z-index: 1;
	margin-top: -50px;
	padding: 0 7px;
}
section.scroll::before {
	display: block;
	width: 1px;
	height: 100px;
	content: "";
	background: #1E74B9;
}
section.scroll > span {
	position: absolute;
	bottom: 100%;
	left: 0;
	transform: translate(15px, -15px) rotate(-90deg);
	transform-origin: left bottom;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #FFF;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	line-height: 1.25;
	backface-visibility: hidden;
}
section.scroll.left {
	left: 60px;
}
section.scroll.right {
	right: 60px;
}


/* Intro */
section.intro {
	padding: 100px 0;
}
section.intro .intro-content::after {
	display: block;
	clear: both;
	content: "";
}
section.intro .intro-content > .left,
section.intro .intro-content > .right {
	width: 100%;
	margin-top: 50px;
}
section.intro .intro-content > .left:first-child,
section.intro .intro-content > .right:first-child {
	margin-top: 0;
}
section.intro .intro-content > .right + .right {
	margin-top: 80px;
}
section.intro .intro-content > .left {
	float: left;
	clear: left;
	max-width: 470px;
}
section.intro .intro-content > .right {
	float: right;
	clear: right;
	max-width: 525px;
}
section.intro .intro-content .content-image,
section.intro .intro-content .content-image > img {
	width: 100%;
	height: auto;
}
section.intro .intro-content .content-image {
	overflow: hidden;
}
section.intro .intro-content .content-details .details-title {
	max-width: 400px;
}
section.intro .intro-content .content-details .details-desc {
	max-width: 440px;
	margin-top: 20px;
	font-weight: 300;
}
section.intro .intro-content .content-details .details-link {
	margin-top: 20px;
}
section.intro .intro-content .content-details .details-link > a {
	position: relative;
	display: inline-block;
	transition: opacity 200ms ease-in-out;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}
section.intro .intro-content .content-details .details-link > a:hover {
	opacity: .5;
}
section.intro .intro-content .content-details .details-link > a::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #F37520;
}


/* Cover */
section.cover {
	padding-top: 93px;
	color: #FFF;
	background: #0A1E2F;
	background-image: -moz-linear-gradient(top, #0F3452 0%, #0A1E2F 100%);
	background-image: -webkit-linear-gradient(top, #0F3452 0%, #0A1E2F 100%);
	background-image: linear-gradient(to bottom, #0F3452 0%, #0A1E2F 100%);
}
section.cover > .container {
	padding-top: 120px;
	padding-bottom: 40px;
}
section.cover .cover-content {
	position: relative;
	padding-left: 50px;
}
section.cover .cover-content::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	content: "";
	background: #1E74B9;
}
section.cover .cover-content::after {
	display: block;
	clear: both;
	content: "";
}
section.cover .cover-content > .left {
	float: left;
	clear: left;
}
section.cover .cover-content > .right {
	float: right;
	clear: right;
}
section.cover .cover-content .content-title,
section.cover .cover-content .content-subtitle {
	font-family: "Montserrat", Arial, sans-serif;
}
section.cover .cover-content .content-title {
	font-size: 50px;
	line-height: 1.2;
}
section.cover .cover-content .content-title strong {
	font-weight: 700;
}
section.cover .cover-content .content-subtitle {
	padding: 25px 0 10px;
	color: #1E74B9;
	font-size: 25px;
	line-height: 1;
}
section.cover .cover-content .content-desc {
	max-width: 625px;
	margin-top: 15px;
	font-weight: 300;
}


/* Carousel */
section.carousel {
	position: relative;
	z-index: 1;
}
section.carousel > .slick {
	overflow: hidden;
	width: 100%;
}
section.carousel > .slick .slick-list {
	padding: 0 180px;
}
section.carousel > .slick .slick-active .carousel-slide .slide-image::before,
section.carousel > .slick .slick-active-cloned .carousel-slide .slide-image::before {
	visibility: hidden;
	opacity: 0;
}
section.carousel > .slick .slick-active .carousel-slide .slide-image > img,
section.carousel > .slick .slick-active-cloned .carousel-slide .slide-image > img {
	opacity: 1;
}
section.carousel .carousel-arrow {
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	max-width: 160px;
	height: 100%;
	cursor: pointer;
	background: center no-repeat;
	background-size: auto 40px;
}
section.carousel .carousel-prev {
	left: 0;
	background-image: url("./static/img/icons/arrows/Left.svg");
}
section.carousel .carousel-next {
	right: 0;
	background-image: url("./static/img/icons/arrows/Right.svg");
}
section.carousel .carousel-slide {
	padding: 0 20px;
}
section.carousel .carousel-slide .slide-image,
section.carousel .carousel-slide .slide-image::before,
section.carousel .carousel-slide .slide-image > img {
	width: 100%;
}
section.carousel .carousel-slide .slide-image {
	position: relative;
	overflow: hidden;
	background: #0A1E2F;
}
section.carousel .carousel-slide .slide-image::before {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	content: "";
	transition: visibility 200ms ease-in-out, opacity 200ms ease-in-out;
	transition-delay: 200ms;
	background: -moz-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .6) 100%);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .6) 100%);
	background: linear-gradient(to bottom, transparent 50%, rgba(10, 30, 47, .6) 100%);
}
section.carousel .carousel-slide .slide-image > img {
	max-height: 650px;
	transition: opacity 200ms ease-in-out;
	transition-delay: 200ms;
	opacity: .6;
	object-fit: cover;
}


/* Overview */
section.overview {
	padding: 120px 0;
	background: #FFF;
}
section.overview .overview-content {
	margin-top: 40px;
}
section.overview .overview-content::after {
	display: block;
	clear: both;
	content: "";
}
section.overview .overview-content > .left,
section.overview .overview-content > .right {
	width: 100%;
}
section.overview .overview-content > .left {
	float: left;
	clear: left;
	max-width: 650px;
}
section.overview .overview-content > .right {
	float: right;
	clear: right;
	max-width: 330px;
}
section.overview .overview-content hr {
	width: 100%;
	height: 1px;
	margin: 40px 0;
	border: none;
	outline: none;
	background: #F2F2F2;
}
section.overview .overview-content hr:first-child {
	margin-top: 0;
}
section.overview .overview-content .content-desc {
	font-weight: 300;
}
section.overview .overview-content .content-desc p {
	margin: 32px 0 0;
}
section.overview .overview-content .content-desc p:first-child {
	margin-top: 0;
}
section.overview .overview-content .content-map,
section.overview .overview-content .content-map > img {
	width: 100%;
}
section.overview .overview-content .content-location {
	margin-top: 30px;
}
section.overview .overview-content .content-location .location-title {
	display: inline-block;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #1E74B9;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
}
section.overview .overview-content .content-location .location-desc {
	margin-top: 10px;
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}
section.overview .overview-content .content-testimonial {
	position: relative;
	z-index: 0;
	padding-left: 30px;
}
section.overview .overview-content .content-testimonial::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	display: block;
	content: open-quote;
	color: #515151;
	color: rgba(81, 81, 81, .15);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 60px;
	font-weight: 400;
	line-height: 1;
}
section.overview .overview-content .content-testimonial .testimonial-title {
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}
section.overview .overview-content .content-testimonial .testimonial-desc {
	margin-top: 10px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
}


/* Half Grid */
section.halfgrid {
	padding: 120px 0;
	background: #FFF;
}
section.halfgrid .halfgrid-content > .item {
	position: relative;
	margin-top: 120px;
}
section.halfgrid .halfgrid-content > .item:first-child {
	margin-top: 0;
}
section.halfgrid .halfgrid-content > .item::after {
	display: block;
	clear: both;
	content: "";
}
section.halfgrid .halfgrid-content > .item > .left,
section.halfgrid .halfgrid-content > .item > .right {
	width: 50%;
	width: calc(50% - 25px);
}
section.halfgrid .halfgrid-content > .item > .left {
	float: left;
	clear: left;
}
section.halfgrid .halfgrid-content > .item > .right {
	float: right;
	clear: right;
}
section.halfgrid .halfgrid-content .content-details {
	clear: both;
	width: 100%;
	max-width: 595px;
	padding: 60px 80px;
}
section.halfgrid .halfgrid-content .content-details .details-title,
section.halfgrid .halfgrid-content .content-details .details-subtitle {
	font-family: "Montserrat", Arial, sans-serif;
}
section.halfgrid .halfgrid-content .content-details .details-title {
	color: #0A1E2F;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
}
section.halfgrid .halfgrid-content .content-details .details-subtitle {
	margin-top: 5px;
	color: #1E74B9;
	font-size: 25px;
	line-height: 1;
}
section.halfgrid .halfgrid-content .content-details .details-desc {
	margin-top: 20px;
	font-weight: 300;
}
section.halfgrid .halfgrid-content .content-details .details-desc:first-child {
	margin-top: 0;
}
section.halfgrid .halfgrid-content .content-details .details-link {
	margin-top: 20px;
}
section.halfgrid .halfgrid-content .content-details .details-link > a {
	position: relative;
	display: inline-block;
	transition: opacity 200ms ease-in-out;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}
section.halfgrid .halfgrid-content .content-details .details-link > a:hover {
	opacity: .5;
}
section.halfgrid .halfgrid-content .content-details .details-link > a::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #F37520;
}
section.halfgrid .halfgrid-content .content-details .details-contact {
	margin-top: 40px;
	color: #1E74B9;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li {
	position: relative;
	min-height: 36px;
	margin-top: 20px;
	padding-left: 56px;
	line-height: 1.25;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li:first-child {
	margin-top: 0;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 34px;
	height: 34px;
	content: "";
	border: 1px solid #1E74B9;
	border-radius: 50%;
	background: center no-repeat;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li.location:before {
	background-image: url("./static/img/icons/contact/blue/Location.svg");
	background-size: auto 20px;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li.clock:before {
	background-image: url("./static/img/icons/contact/blue/Clock.svg");
	background-size: auto 20px;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li.phone:before {
	background-image: url("./static/img/icons/contact/blue/Phone.svg");
	background-size: auto 18px;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li.email:before {
	background-image: url("./static/img/icons/contact/blue/Email.svg");
	background-size: auto 12px;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li > a {
	display: inline-block;
	padding: 7px 0;
	transition: opacity 200ms ease-in-out;
	vertical-align: top;
	color: inherit;
	font-family: "Montserrat", Arial, sans-serif;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li > a:hover {
	opacity: .5;
}
section.halfgrid .halfgrid-content .content-details .details-contact > ul > li > p {
	margin: 0;
	padding: 7px 0;
}
section.halfgrid .halfgrid-content .content-details .details-enquire {
	margin-top: 40px;
}
section.halfgrid .halfgrid-content .content-image,
section.halfgrid .halfgrid-content .content-image::before,
section.halfgrid .halfgrid-content .content-image > img {
	position: absolute;
	top: 0;
	height: 100%;
}
section.halfgrid .halfgrid-content .content-image {
	overflow: hidden;
	width: 50%;
	width: calc(50% + 25px);
}
section.halfgrid .halfgrid-content .content-image::before {
	z-index: 1;
	left: 0;
	width: 100%;
	content: "";
	background: -moz-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .6) 100%);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .6) 100%);
	background: linear-gradient(to bottom, transparent 50%, rgba(10, 30, 47, .6) 100%);
}
section.halfgrid .halfgrid-content .content-image > img {
	left: 0;
	width: 100%;
	object-fit: cover;
}
section.halfgrid .halfgrid-content > .item > .left .content-details {
	float: right;
}
section.halfgrid .halfgrid-content > .item > .left .content-image {
	right: 50%;
	right: calc(50% - 25px);
}
section.halfgrid .halfgrid-content > .item > .right .content-details {
	float: left;
}
section.halfgrid .halfgrid-content > .item > .right .content-image {
	left: 50%;
	left: calc(50% - 25px);
}


/* Showcase */
section.showcase {
	position: relative;
	padding: 100px 0;
	background: #F2F2F2;
}
section.showcase .showcase-title h2::before {
	display: none;
}
section.showcase .showcase-carousel {
	position: relative;
	margin-top: 40px;
}
section.showcase .showcase-carousel > .slick {
	overflow: hidden;
	width: 100%;
	height: 460px;
}
section.showcase .showcase-carousel > .slick *:focus {
	outline: none;
}
section.showcase .showcase-carousel > .slick .slick-list {
	padding: 0 170px;
}
section.showcase .showcase-carousel > .slick .slick-active .carousel-slide .slide-image > img,
section.showcase .showcase-carousel > .slick .slick-active-cloned .carousel-slide .slide-image > img {
	opacity: 1;
}
section.showcase .showcase-carousel > .slick .slick-active .carousel-slide .slide-details,
section.showcase .showcase-carousel > .slick .slick-active-cloned .carousel-slide .slide-details {
	visibility: visible;
	opacity: 1;
}
section.showcase .showcase-carousel .carousel-arrow {
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	max-width: 160px;
	height: 100%;
	cursor: pointer;
	background: center no-repeat;
	background-size: auto 40px;
}
section.showcase .showcase-carousel .carousel-prev {
	left: 0;
	background-image: url("./static/img/icons/arrows/Left.svg");
}
section.showcase .showcase-carousel .carousel-next {
	right: 0;
	background-image: url("./static/img/icons/arrows/Right.svg");
}
section.showcase .showcase-carousel .carousel-slide {
	position: relative;
	padding: 0 10px;
}
section.showcase .showcase-carousel .carousel-slide .slide-image,
section.showcase .showcase-carousel .carousel-slide .slide-image::before,
section.showcase .showcase-carousel .carousel-slide .slide-image > img {
	position: absolute;
	top: 0;
	height: 100%;
}
section.showcase .showcase-carousel .carousel-slide .slide-image {
	right: 10px;
	left: 10px;
	overflow: hidden;
	background: #0A1E2F;
}
section.showcase .showcase-carousel .carousel-slide .slide-image::before {
	z-index: 1;
	left: 0;
	width: 100%;
	content: "";
	background: -moz-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .75) 100%);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .75) 100%);
	background: linear-gradient(to bottom, transparent 50%, rgba(10, 30, 47, .75) 100%);
}
section.showcase .showcase-carousel .carousel-slide .slide-image > img {
	left: 0;
	width: 100%;
	transition: opacity 200ms ease-in-out;
	transition-delay: 200ms;
	opacity: .6;
	object-fit: cover;
}
section.showcase .showcase-carousel .carousel-slide .slide-details {
	position: relative;
	z-index: 1;
	display: flex;
	visibility: hidden;
	align-items: flex-end;
	height: 460px;
	padding: 45px 50px;
	transition: visibility 200ms ease-in-out, opacity 200ms ease-in-out;
	transition-delay: 200ms;
	opacity: 0;
}
section.showcase .showcase-carousel .carousel-slide .slide-details .details-title {
	max-width: 400px;
	color: #FFF;
	text-shadow: 0 2px 8px rgba(10, 30, 47, .5);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 45px;
	font-weight: 700;
	line-height: 1.1;
}
section.showcase .showcase-carousel .carousel-slide .slide-details .details-link {
	margin-top: 20px;
}
section.showcase .showcase-carousel .carousel-slide .slide-details .details-link > a {
	position: relative;
	display: inline-block;
	transition: opacity 200ms ease-in-out;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}
section.showcase .showcase-carousel .carousel-slide .slide-details .details-link > a:hover {
	opacity: .5;
}
section.showcase .showcase-carousel .carousel-slide .slide-details .details-link > a::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #F37520;
}
section.showcase .showcase-pagination {
	margin-top: 40px;
	user-select: none;
	text-align: center;
	font-size: 0;
}
section.showcase .showcase-pagination .pagination-arrow {
	display: inline-block;
	cursor: pointer;
	vertical-align: top;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}
section.showcase .showcase-pagination .pagination-prev {
	margin-right: 40px;
	border-right: 8px solid #515151;
}
section.showcase .showcase-pagination .pagination-next {
	margin-left: 40px;
	border-left: 8px solid #515151;
}
section.showcase .showcase-pagination .pagination-dots {
	display: inline-block;
	padding: 3px 0;
	vertical-align: top;
}
section.showcase .showcase-pagination .pagination-dots > ul {
	display: block;
	margin: 0 -15px;
	padding: 0;
	list-style: none;
}
section.showcase .showcase-pagination .pagination-dots > ul > li {
	display: inline-block;
	margin: 0 15px;
}
section.showcase .showcase-pagination .pagination-dots > ul > li > button {
	display: block;
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: background-color 200ms ease-in-out;
	border: none;
	border-radius: 50%;
	outline: none;
	background: #515151;
	background: rgba(81, 81, 81, .25);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
section.showcase .showcase-pagination .pagination-dots > ul > li > button:hover {
	background-color: rgba(81, 81, 81, .5);
}
section.showcase .showcase-pagination .pagination-dots > ul > li.slick-active > button {
	background-color: #1E74B9;
}


/* Testimonial */
section.testimonial {
	padding: 120px 0;
	background: #FFF;
}
section.testimonial > .container {
	max-width: 1045px;
}
section.testimonial .testimonial-content::after {
	display: block;
	clear: both;
	content: "";
}
section.testimonial .testimonial-content > .left,
section.testimonial .testimonial-content > .right {
	width: 100%;
}
section.testimonial .testimonial-content > .left {
	float: left;
	clear: left;
	max-width: 375px;
}
section.testimonial .testimonial-content > .right {
	position: relative;
	z-index: 0;
	float: right;
	clear: right;
	max-width: 620px;
	margin-top: 40px;
	padding-left: 40px;
}
section.testimonial .testimonial-content > .right::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	display: block;
	content: open-quote;
	color: #515151;
	color: rgba(81, 81, 81, .15);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 80px;
	font-weight: 400;
	line-height: 1;
}
section.testimonial .testimonial-content .content-image,
section.testimonial .testimonial-content .content-image > img {
	width: 100%;
}
section.testimonial .testimonial-content .content-image {
	overflow: hidden;
}
section.testimonial .testimonial-content .content-title {
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.45;
}
section.testimonial .testimonial-content .content-desc {
	margin-top: 20px;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.4;
}


/* Master Builders */
section.masterbuilders {
	position: relative;
	padding: 100px 0;
	color: #FFF;
	background: #0A1E2F;
}
section.masterbuilders::before,
section.masterbuilders::after {
	position: absolute;
	z-index: 1;
	display: block;
	width: 1px;
	height: 100px;
	content: "";
	background: #1E74B9;
}
section.masterbuilders::before {
	top: -50px;
	right: 60px;
}
section.masterbuilders::after {
	bottom: -50px;
	left: 60px;
}
section.masterbuilders .masterbuilders-content::after {
	display: block;
	clear: both;
	content: "";
}
section.masterbuilders .masterbuilders-content > .left,
section.masterbuilders .masterbuilders-content > .right {
	width: 100%;
}
section.masterbuilders .masterbuilders-content > .left {
	float: left;
	clear: left;
	max-width: 540px;
}
section.masterbuilders .masterbuilders-content > .right {
	float: right;
	clear: right;
	max-width: 455px;
}
section.masterbuilders .masterbuilders-content .content-image,
section.masterbuilders .masterbuilders-content .content-image > img {
	width: 100%;
}
section.masterbuilders .masterbuilders-content .content-image {
	overflow: hidden;
}
section.masterbuilders .masterbuilders-content .content-title .title-main {
	color: inherit;
}
section.masterbuilders .masterbuilders-content .content-desc {
	margin-top: 20px;
}
section.masterbuilders .masterbuilders-content .content-desc:first-child {
	margin-top: 0;
}
section.masterbuilders .masterbuilders-content .content-desc p {
	margin: 20px 0 0;
}
section.masterbuilders .masterbuilders-content .content-desc p:first-child {
	margin-top: 0;
}
section.masterbuilders .masterbuilders-content .content-desc ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}
section.masterbuilders .masterbuilders-content .content-desc ul:first-child {
	margin-top: 0;
}
section.masterbuilders .masterbuilders-content .content-desc ul > li {
	position: relative;
	margin-top: 10px;
	padding-left: 20px;
	font-weight: 300;
	font-style: italic;
}
section.masterbuilders .masterbuilders-content .content-desc ul > li:first-child {
	margin-top: 0;
}
section.masterbuilders .masterbuilders-content .content-desc ul > li::before {
	position: absolute;
	top: 13.5px;
	left: 0;
	display: block;
	width: 5px;
	height: 5px;
	content: "";
	border-radius: 50%;
	background: #FFF;
}


/* Suppliers */
section.suppliers {
	padding: 100px 0;
}
section.suppliers .suppliers-content {
	display: flex;
}
section.suppliers .suppliers-content::after {
	display: block;
	clear: both;
	content: "";
}
section.suppliers .suppliers-content > .left,
section.suppliers .suppliers-content > .right {
	width: 100%;
	margin: auto 0;
}
section.suppliers .suppliers-content > .left {
	float: left;
	clear: left;
	max-width: 455px;
	margin-right: 85px;
}
section.suppliers .suppliers-content > .right {
	float: right;
	clear: right;
	max-width: 540px;
}
section.suppliers .suppliers-content .content-desc {
	margin-top: 20px;
}
section.suppliers .suppliers-content .content-logos > ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: 40px;
	padding: 0;
	list-style: none;
	font-size: 0;
}
section.suppliers .suppliers-content .content-logos > ul:first-child {
	margin-top: 0;
}
section.suppliers .suppliers-content .content-logos > ul > li {
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}
section.suppliers .suppliers-content .content-logos > ul > li:first-child {
	margin-left: 0;
}
section.suppliers .suppliers-content .content-logos > ul > li:last-child {
	margin-right: 0;
}
section.suppliers .suppliers-content .content-logos > ul > li > img {
	width: 100%;
	height: auto;
}


/* Consultation */
section.consultation {
	position: relative;
	background: #064F8C;
}
section.consultation > .left,
section.consultation > .right {
	width: 50%;
}
section.consultation > .left {
	float: left;
	clear: left;
}
section.consultation > .right {
	float: right;
	clear: right;
}
section.consultation .consultation-image,
section.consultation .consultation-image > img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
section.consultation .consultation-image {
	overflow: hidden;
	width: 50%;
}
section.consultation .consultation-image > img {
	width: 100%;
	object-fit: cover;
}
section.consultation .consultation-details {
	float: left;
	width: 100%;
	max-width: 640px;
	padding: 150px 100px;
	color: #FFF;
}
section.consultation .consultation-details .details-title .title-main {
	color: inherit;
}
section.consultation .consultation-details .details-title .title-main::before {
	border-left-color: #0A1E2F;
}
section.consultation .consultation-details .details-desc {
	margin-top: 20px;
	font-weight: 300;
}
section.consultation .consultation-details .details-contact {
	margin-top: 30px;
}
section.consultation .consultation-details .details-contact > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section.consultation .consultation-details .details-contact > ul > li {
	position: relative;
	min-height: 36px;
	margin-top: 20px;
	padding-left: 56px;
	line-height: 1.25;
}
section.consultation .consultation-details .details-contact > ul > li:first-child {
	margin-top: 0;
}
section.consultation .consultation-details .details-contact > ul > li::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 34px;
	height: 34px;
	content: "";
	border: 1px solid #FFF;
	border-radius: 50%;
	background: center no-repeat;
}
section.consultation .consultation-details .details-contact > ul > li.location:before {
	background-image: url("./static/img/icons/contact/white/Location.svg");
	background-size: auto 20px;
}
section.consultation .consultation-details .details-contact > ul > li.clock:before {
	background-image: url("./static/img/icons/contact/white/Clock.svg");
	background-size: auto 20px;
}
section.consultation .consultation-details .details-contact > ul > li.phone:before {
	background-image: url("./static/img/icons/contact/white/Phone.svg");
	background-size: auto 18px;
}
section.consultation .consultation-details .details-contact > ul > li.email:before {
	background-image: url("./static/img/icons/contact/white/Email.svg");
	background-size: auto 12px;
}
section.consultation .consultation-details .details-contact > ul > li > a {
	display: inline-block;
	padding: 7px 0;
	transition: opacity 200ms ease-in-out;
	vertical-align: top;
	color: inherit;
	font-family: "Montserrat", Arial, sans-serif;
}
section.consultation .consultation-details .details-contact > ul > li > a:hover {
	opacity: .5;
}
section.consultation .consultation-details .details-enquire {
	margin-top: 50px;
}


/* Design & Build (Intro) */
section.dnb-intro {
	padding: 100px 0;
}
section.dnb-intro > .container {
	max-width: 1160px;
}
section.dnb-intro .intro-content::after {
	display: block;
	clear: both;
	content: "";
}
section.dnb-intro .intro-content > .left,
section.dnb-intro .intro-content > .right {
	width: 100%;
}
section.dnb-intro .intro-content > .left {
	float: left;
	clear: left;
	max-width: 550px;
}
section.dnb-intro .intro-content > .right {
	float: right;
	clear: right;
	max-width: 525px;
	margin-top: 50px;
}
section.dnb-intro .intro-content .content-image {
	float: right;
	clear: both;
	width: 100%;
	margin-top: 30px;
}
section.dnb-intro .intro-content .content-image:first-child {
	margin-top: 0;
}
section.dnb-intro .intro-content .content-image > img {
	width: 100%;
	object-fit: cover;
}
section.dnb-intro .intro-content .content-image.bottom {
	position: relative;
	max-width: 278px;
}
section.dnb-intro .intro-content .content-image.bottom::before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 100%;
	margin-right: 30px;
	content: "";
	border-right: 60px solid #F2F2F2;
	border-bottom: 60px solid transparent;
}
section.dnb-intro .intro-content .content-title {
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.45;
}
section.dnb-intro .intro-content .content-desc {
	margin-top: 30px;
	font-weight: 300;
}
section.dnb-intro .intro-content .content-desc p {
	margin: 15px 0 0;
}
section.dnb-intro .intro-content .content-desc p:first-child {
	margin-top: 0;
}


/* Design & Build (Testimonial) */
section.dnb-testimonial {
	padding: 120px 0;
	background: #F2F2F2;
}
section.dnb-testimonial > .container {
	max-width: 655px;
}
section.dnb-testimonial .testimonial-content {
	position: relative;
	margin: 0 auto;
	padding-left: 50px;
}
section.dnb-testimonial .testimonial-content::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	content: "";
	background: #1E74B9;
}
section.dnb-testimonial .testimonial-content > .item {
	position: relative;
	padding: 0 40px;
}
section.dnb-testimonial .testimonial-content .content-title {
	position: relative;
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.45;
}
section.dnb-testimonial .testimonial-content .content-title::before,
section.dnb-testimonial .testimonial-content .content-title::after {
	position: relative;
	top: 15px;
	display: inline-block;
	width: 100%;
	max-width: 40px;
	vertical-align: top;
	color: #515151;
	color: rgba(81, 81, 81, .3);
	font-size: 60px;
	font-weight: 400;
	line-height: .5;
}
section.dnb-testimonial .testimonial-content .content-title::before {
	margin-left: -40px;
	content: open-quote;
	text-align: left;
}
section.dnb-testimonial .testimonial-content .content-title::after {
	margin-right: -40px;
	content: close-quote;
	text-align: right;
}
section.dnb-testimonial .testimonial-content .content-desc {
	margin-top: 20px;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.4;
}


/* Design & Build (Team) */
section.dnb-team {
	padding: 120px 0;
}
section.dnb-team .team-content {
	margin-top: 40px;
}
section.dnb-team .team-content > ul {
	margin: 0 -15px -30px;
	padding: 0;
	list-style: none;
}
section.dnb-team .team-content > ul::after {
	display: block;
	clear: both;
	content: "";
}
section.dnb-team .team-content > ul > li {
	position: relative;
	float: left;
	width: 100%;
	max-width: 340px;
	margin: 0 15px 30px;
}
section.dnb-team .team-content .content-image,
section.dnb-team .team-content .content-image::before,
section.dnb-team .team-content .content-image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.dnb-team .team-content .content-image {
	overflow: hidden;
	background: #0A1E2F;
}
section.dnb-team .team-content .content-image::before {
	z-index: 1;
	content: "";
	background: -moz-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .75) 100%);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .75) 100%);
	background: linear-gradient(to bottom, transparent 50%, rgba(10, 30, 47, .75) 100%);
}
section.dnb-team .team-content .content-image > img {
	object-fit: cover;
}
section.dnb-team .team-content .content-details {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 325px;
	padding: 30px 35px;
}
section.dnb-team .team-content .content-details > .flex {
	margin-top: auto;
}
section.dnb-team .team-content .content-details .details-title {
	max-width: 400px;
	color: #FFF;
	text-shadow: 0 2px 8px rgba(10, 30, 47, .5);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.1;
}
section.dnb-team .team-content .content-details .details-desc {
	margin-top: 5px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.25;
}


/* Design & Build (Process) */
section.dnb-process {
	padding: 120px 0;
	color: #FFF;
	background: #0A1E2F;
}
section.dnb-process .process-title,
section.dnb-process .process-desc {
	text-align: center;
}
section.dnb-process .process-title .title-main {
	display: inline-block;
	color: inherit;
}
section.dnb-process .process-title .title-main::before {
	display: inline-block;
	float: none;
	margin-right: 5px !important;
	vertical-align: top;
}
section.dnb-process .process-desc {
	max-width: 710px;
	margin: 30px auto 0;
	font-weight: 300;
}
section.dnb-process .process-desc p {
	margin: 15px 0 0;
}
section.dnb-process .process-desc p:first-child {
	margin-top: 0;
}
section.dnb-process .process-steps {
	max-width: 1000px;
	min-height: 190px;
	margin: 50px auto 0;
}
section.dnb-process .process-steps > ul {
	margin: 0 -7.5px;
	padding: 0;
	list-style: none;
}
section.dnb-process .process-steps > ul::after {
	display: block;
	clear: both;
	content: "";
}
section.dnb-process .process-steps > ul > li {
	float: left;
	width: 100%;
	max-width: 180px;
	margin: 0 7.5px;
}
section.dnb-process .process-steps > ul > li.divider {
	max-width: 200px;
	height: 2px;
	margin-top: 74px;
	margin-bottom: 74px;
	background: #1E74B9;
	background: repeating-linear-gradient(to right, #1E74B9, #1E74B9 14.28571428571429%, transparent 14.28571428571429%, transparent 28.57142857142857%);
}
section.dnb-process .process-steps .steps-icon {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 25px auto;
	transition: width 200ms ease-in-out, height 200ms ease-in-out, margin-top 200ms ease-in-out, margin-bottom 200ms ease-in-out, border-color 200ms ease-in-out, background-color 200ms ease-in-out;
	border: 2px solid #1E74B9;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}
section.dnb-process .process-steps .steps-icon::before,
section.dnb-process .process-steps .steps-icon::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	transition: visibility 200ms ease-in-out, transform 200ms ease-in-out, opacity 200ms ease-in-out;
	background: center no-repeat;
}
section.dnb-process .process-steps .steps-icon::before {
	z-index: 0;
}
section.dnb-process .process-steps .steps-icon::after {
	z-index: 1;
	visibility: hidden;
	opacity: 0;
}
section.dnb-process .process-steps .steps-icon.design::before,
section.dnb-process .process-steps .steps-icon.design::after {
	background-size: auto 54px;
}
section.dnb-process .process-steps .steps-icon.design::before {
	background-image: url("./static/img/icons/dnb/blue/Design.svg");
}
section.dnb-process .process-steps .steps-icon.design::after {
	background-image: url("./static/img/icons/dnb/white/Design.svg");
}
section.dnb-process .process-steps .steps-icon.contract::before,
section.dnb-process .process-steps .steps-icon.contract::after {
	background-size: auto 54px;
}
section.dnb-process .process-steps .steps-icon.contract::before {
	background-image: url("./static/img/icons/dnb/blue/Contract.svg");
}
section.dnb-process .process-steps .steps-icon.contract::after {
	background-image: url("./static/img/icons/dnb/white/Contract.svg");
}
section.dnb-process .process-steps .steps-icon.build::before,
section.dnb-process .process-steps .steps-icon.build::after {
	background-size: auto 52px;
}
section.dnb-process .process-steps .steps-icon.build::before {
	background-image: url("./static/img/icons/dnb/blue/Build.svg");
}
section.dnb-process .process-steps .steps-icon.build::after {
	background-image: url("./static/img/icons/dnb/white/Build.svg");
}
section.dnb-process .process-steps .steps-title {
	margin-top: 15px;
	transition: color 200ms ease-in-out;
	text-align: center;
	color: #1E74B9;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}
section.dnb-process .process-steps ul > li:hover .steps-icon {
	border-color: #F37520;
	background-color: #F37520;
}
section.dnb-process .process-steps ul > li:hover .steps-icon::before {
	visibility: hidden;
	opacity: 0;
}
section.dnb-process .process-steps ul > li:hover .steps-icon::after {
	visibility: visible;
	opacity: 1;
}
section.dnb-process .process-steps ul > li:hover .steps-title {
	color: #FFF;
}
section.dnb-process .process-steps ul > li.current .steps-icon {
	width: 150px;
	height: 150px;
	margin-top: 0;
	margin-bottom: 0;
	border-color: #1E74B9;
	background-color: #1E74B9;
}
section.dnb-process .process-steps ul > li.current .steps-title {
	color: #FFF;
	font-weight: 600;
}
section.dnb-process .process-steps ul > li.current .steps-icon::before,
section.dnb-process .process-steps ul > li.current .steps-icon::after {
	transform: scale(1.5);
}
section.dnb-process .process-steps ul > li.current .steps-icon::before {
	visibility: hidden;
	opacity: 0;
}
section.dnb-process .process-steps ul > li.current .steps-icon::after {
	visibility: visible;
	opacity: 1;
}
section.dnb-process .process-content {
	margin-top: 80px;
}
section.dnb-process .process-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section.dnb-process .process-content ul > li {
	display: none;
}
section.dnb-process .process-content ul > li::after {
	display: block;
	clear: both;
	content: "";
}
section.dnb-process .process-content ul > li > .left,
section.dnb-process .process-content ul > li > .right {
	width: 100%;
}
section.dnb-process .process-content ul > li > .left {
	float: left;
	clear: left;
	max-width: 480px;
}
section.dnb-process .process-content ul > li > .right {
	float: right;
	clear: right;
	max-width: 525px;
}
section.dnb-process .process-content .content-image,
section.dnb-process .process-content .content-image > img {
	width: 100%;
}
section.dnb-process .process-content .content-image {
	overflow: hidden;
}
section.dnb-process .process-content .content-title {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
}
section.dnb-process .process-content .content-desc {
	margin-top: 30px;
	font-size: 16px;
	font-weight: 300;
}
section.dnb-process .process-content .content-desc p {
	margin: 15px 0 0;
}
section.dnb-process .process-content .content-desc p:first-child {
	margin-top: 0;
}
section.dnb-process .process-content .content-enquire {
	margin-top: 30px;
}


/* Subdivisions (Cover) */
section.subs-cover .cover-content::before {
	height: calc(100% + 80px);
	animation: 600ms ease-in-out 900ms both animateIn;
}
section.subs-cover .cover-content .content-title {
	animation: 600ms ease-in-out 300ms both animateIn;
}
section.subs-cover .cover-content .content-desc {
	animation: 600ms ease-in-out 600ms both animateIn;
}


/* Subdivision Detail (Cover) */
section.subdetail-cover .cover-content {
	padding-left: 0 !important;
	animation: 600ms ease-in-out 300ms both animateIn;
}
section.subdetail-cover .cover-content::before {
	display: none;
}


/* Subdivision Detail (Carousel) */
section.subdetail-carousel::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 35%;
	content: "";
	background: #0A1E2F;
}


/* Showhome */
section.showhome {
	padding-bottom: 120px;
}


/* Showhome (Cover) */
section.showhome-cover .cover-content::before {
	animation: 600ms ease-in-out 900ms both animateIn;
}
section.showhome-cover .cover-content .content-title {
	animation: 600ms ease-in-out 300ms both animateIn;
}
section.showhome-cover .cover-content .content-desc {
	animation: 600ms ease-in-out 600ms both animateIn;
}


/* Showhome (Intro) */
section.showhome-intro {
	padding: 120px 0;
	background: #FFF;
}
section.showhome-intro .intro-content::after {
	display: block;
	clear: both;
	content: "";
}
section.showhome-intro .intro-content > .left,
section.showhome-intro .intro-content > .right {
	width: 100%;
}
section.showhome-intro .intro-content > .left {
	float: left;
	clear: left;
	max-width: 680px;
}
section.showhome-intro .intro-content > .right {
	float: right;
	clear: right;
	max-width: 320px;
}
section.showhome-intro .intro-content .content-map,
section.showhome-intro .intro-content .content-map > img {
	width: 100%;
}
section.showhome-intro .intro-content .content-details .details-contact {
	color: #1E74B9;
}
section.showhome-intro .intro-content .content-details .details-contact > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li {
	position: relative;
	min-height: 36px;
	margin-top: 20px;
	padding-left: 56px;
	line-height: 1.25;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li:first-child {
	margin-top: 0;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 34px;
	height: 34px;
	content: "";
	border: 1px solid #1E74B9;
	border-radius: 50%;
	background: center no-repeat;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li.location:before {
	background-image: url("./static/img/icons/contact/blue/Location.svg");
	background-size: auto 20px;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li.clock:before {
	background-image: url("./static/img/icons/contact/blue/Clock.svg");
	background-size: auto 20px;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li.phone:before {
	background-image: url("./static/img/icons/contact/blue/Phone.svg");
	background-size: auto 18px;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li.email:before {
	background-image: url("./static/img/icons/contact/blue/Email.svg");
	background-size: auto 12px;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li > a {
	display: inline-block;
	padding: 7px 0;
	transition: opacity 200ms ease-in-out;
	vertical-align: top;
	color: inherit;
	font-family: "Montserrat", Arial, sans-serif;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li > a:hover {
	opacity: .5;
}
section.showhome-intro .intro-content .content-details .details-contact > ul > li > p {
	margin: 0;
	padding: 3.5px 0;
}


/* Projects (Cover) */
section.projects-cover .cover-content::before {
	animation: 600ms ease-in-out 900ms both animateIn;
}
section.projects-cover .cover-content .content-title {
	animation: 600ms ease-in-out 300ms both animateIn;
}
section.projects-cover .cover-content .content-desc {
	animation: 600ms ease-in-out 600ms both animateIn;
}


/* Projects (List) */
section.projects-list {
	position: relative;
	z-index: 1;
	padding-bottom: 120px;
}
section.projects-list::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	content: "";
	background: #0A1E2F;
}
section.projects-list .list-content > .item {
	position: relative;
	margin-top: 80px;
}
section.projects-list .list-content > .item:first-child {
	margin-top: 0;
}
section.projects-list .list-content .content-image,
section.projects-list .list-content .content-image::before,
section.projects-list .list-content .content-image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.projects-list .list-content .content-image {
	overflow: hidden;
	background: #0A1E2F;
}
section.projects-list .list-content .content-image::before {
	z-index: 1;
	content: "";
	background: -moz-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .75) 100%);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(10, 30, 47, .75) 100%);
	background: linear-gradient(to bottom, transparent 50%, rgba(10, 30, 47, .75) 100%);
}
section.projects-list .list-content .content-image > img {
	object-fit: cover;
}
section.projects-list .list-content .content-details {
	position: relative;
	z-index: 1;
	display: flex;
	height: 650px;
	padding: 45px 50px;
}
section.projects-list .list-content .content-details > .flex {
	margin-top: auto;
}
section.projects-list .list-content .content-details .details-title {
	max-width: 400px;
	color: #FFF;
	text-shadow: 0 2px 8px rgba(10, 30, 47, .5);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 45px;
	font-weight: 700;
	line-height: 1.1;
}
section.projects-list .list-content .content-details .details-link {
	margin-top: 20px;
}
section.projects-list .list-content .content-details .details-link > a {
	position: relative;
	display: inline-block;
	transition: opacity 200ms ease-in-out;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}
section.projects-list .list-content .content-details .details-link > a:hover {
	opacity: .5;
}
section.projects-list .list-content .content-details .details-link > a::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #F37520;
}
section.projects-list .list-pagination {
	margin-top: 80px;
}


/* Project Detail (Cover) */
section.prodetail-cover .cover-content {
	padding-left: 0;
	animation: 600ms ease-in-out 300ms both animateIn;
}
section.prodetail-cover .cover-content::before {
	display: none;
}


/* Project Detail (Carousel) */
section.prodetail-carousel::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 35%;
	content: "";
	background: #0A1E2F;
}


/* Contact (Cover) */
section.contact-cover .cover-content::before {
	height: calc(100% + 80px);
	animation: 600ms ease-in-out 600ms both animateIn;
}
section.contact-cover .cover-content .content-title {
	animation: 600ms ease-in-out 300ms both animateIn;
	font-weight: 300;
}


/* News (Cover) */
section.news .news-cover .cover-content::before {
	animation: 600ms ease-in-out 900ms both animateIn;
}
section.news .news-cover .cover-content .content-title {
	animation: 600ms ease-in-out 300ms both animateIn;
	font-weight: 300;
}
section.news .news-cover .cover-content .content-desc {
	animation: 600ms ease-in-out 600ms both animateIn;
}


/* News (Menu) */
section.news-menu .menu-content {
	padding: 40px 0;
	border-bottom: 1px solid #F2F2F2;
}
section.news-menu .menu-content::after {
	display: block;
	clear: both;
	content: "";
}
section.news-menu .menu-content > .left {
	float: left;
	clear: left;
}
section.news-menu .menu-content > .right {
	float: right;
	clear: right;
}
section.news-menu .menu-content .content-navi {
	padding: 12.5px 0;
	font-size: 16px;
	line-height: 1.25;
}
section.news-menu .menu-content .content-navi > ul {
	margin: 0 -20px;
	padding: 0;
	list-style: none;
}
section.news-menu .menu-content .content-navi > ul::after {
	display: block;
	clear: both;
	content: "";
}
section.news-menu .menu-content .content-navi > ul > li {
	float: left;
	padding: 0 20px;
	border-right: 1px solid #0A1E2F;
}
section.news-menu .menu-content .content-navi > ul > li:last-child {
	border-right: none;
}
section.news-menu .menu-content .content-navi .navi-link {
	display: block;
	transition: opacity 200ms ease-in-out;
	text-transform: uppercase;
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 500;
}
section.news-menu .menu-content .content-navi .navi-link:hover {
	opacity: .5;
}
section.news-menu .menu-content .content-search {
	position: relative;
	padding-right: 45px;
}
section.news-menu .menu-content .content-search .search-input,
section.news-menu .menu-content .content-search .search-input > input {
	width: 100%;
}
section.news-menu .menu-content .content-search .search-input {
	position: relative;
	z-index: 1;
}
section.news-menu .menu-content .content-search .search-input > input {
	position: relative;
	z-index: 1;
	padding: 9px 20px;
	transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	letter-spacing: 1px;
	border: 1px solid #F2F2F2;
	border-right-color: #FFF;
	border-radius: 0;
	border-radius: 0;
	outline: none;
	background: #FFF;
	box-shadow: none;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
section.news-menu .menu-content .content-search .search-input > input:focus {
	border-color: #8EB9DC;
	box-shadow: 0 0 0 2px #C7DCED;
}
section.news-menu .menu-content .content-search .search-input > input::-webkit-input-placeholder {
	color: #1E74B9;
}
section.news-menu .menu-content .content-search .search-input > input::-moz-placeholder {
	color: #1E74B9;
}
section.news-menu .menu-content .content-search .search-input > input:-ms-input-placeholder {
	color: #1E74B9;
}
section.news-menu .menu-content .content-search .search-input > input::-ms-input-placeholder {
	color: #1E74B9;
}
section.news-menu .menu-content .content-search .search-input > input::placeholder {
	color: #1E74B9;
}
section.news-menu .menu-content .content-search .search-button,
section.news-menu .menu-content .content-search .search-button > input {
	position: absolute;
	top: 0;
	right: 0;
}
section.news-menu .menu-content .content-search .search-button {
	z-index: 0;
	overflow: hidden;
	width: 45px;
	height: 45px;
}
section.news-menu .menu-content .content-search .search-button > input {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	text-indent: -9999px;
	color: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	background: #F37520 url("./static/img/icons/Search.svg") center no-repeat;
	background-size: auto 22px;
	font-size: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/* News (List) */
section.news-list {
	padding: 40px 0 120px;
}
section.news-list .list-content > .item {
	margin-top: 80px;
}
section.news-list .list-content > .item:first-child {
	margin-top: 0;
}
section.news-list .list-content > .item::after {
	display: block;
	clear: both;
	content: "";
}
section.news-list .list-content > .item > .left,
section.news-list .list-content > .item > .right {
	width: 100%;
}
section.news-list .list-content > .item > .left {
	float: left;
	clear: left;
	max-width: 465px;
}
section.news-list .list-content > .item > .right {
	float: right;
	clear: right;
	max-width: 555px;
}
section.news-list .list-content .content-image,
section.news-list .list-content .content-image > img {
	width: 100%;
}
section.news-list .list-content .content-image {
	display: block;
	overflow: hidden;
}
section.news-list .list-content .content-image > img {
	transition: transform 200ms ease-in-out;
}
section.news-list .list-content a.content-image:hover > img {
	transform: scale(1.1);
}
section.news-list .list-content .content-details .details-title {
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
}
section.news-list .list-content .content-details .details-title > a {
	transition: opacity 200ms ease-in-out;
	color: inherit;
}
section.news-list .list-content .content-details .details-title > a:hover {
	opacity: .5;
}
section.news-list .list-content .content-details .details-subtitle {
	margin-top: 10px;
	color: #1E74B9;
	font-family: "Montserrat", Arial, sans-serif;
	line-height: 1.5;
}
section.news-list .list-content .content-details .details-desc {
	margin-top: 30px;
	font-weight: 300;
}
section.news-list .list-content .content-details .details-link {
	margin-top: 30px;
}
section.news-list .list-content .content-details .details-link > a {
	position: relative;
	display: inline-block;
	transition: opacity 200ms ease-in-out;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #F37520;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}
section.news-list .list-content .content-details .details-link > a:hover {
	opacity: .5;
}
section.news-list .list-content .content-details .details-link > a::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #F37520;
}
section.news-list .list-pagination {
	margin-top: 80px;
}


/* News Post (Cover) */
section.newspost-cover .cover-content::before {
	animation: 600ms ease-in-out 900ms both animateIn;
}
section.newspost-cover .cover-content .content-title {
	animation: 600ms ease-in-out 300ms both animateIn;
}
section.newspost-cover .cover-content .content-desc {
	animation: 600ms ease-in-out 600ms both animateIn;
}


/* News Post (Article) */
section.newspost-article {
	padding: 40px 0 120px;
}
section.newspost-article > .container {
	max-width: 835px;
}
section.newspost-article .article-content {
	font-weight: 300;
}
section.newspost-article .article-content b,
section.newspost-article .article-content strong {
	font-weight: 700;
}
section.newspost-article .article-content img {
	max-width: 100%;
}
section.newspost-article .article-content > * {
	margin: 32px 0 0;
}
section.newspost-article .article-content > *:first-child {
	margin-top: 0;
}
section.newspost-article .article-share {
	margin-top: 60px;
}
section.newspost-article .article-share::before {
	display: block;
	width: 100%;
	max-width: 100px;
	height: 1px;
	margin-bottom: 60px;
	content: "";
	border: none;
	outline: none;
	background: #1E74B9;
}
section.newspost-article .article-share .share-title {
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #0A1E2F;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}
section.newspost-article .article-share .share-contact {
	margin-top: 20px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
}
section.newspost-article .article-share .share-contact > ul {
	margin: 0 -20px -20px;
	padding: 0;
	list-style: none;
}
section.newspost-article .article-share .share-contact > ul::after {
	display: block;
	clear: both;
	content: "";
}
section.newspost-article .article-share .share-contact > ul > li {
	float: left;
	margin: 0 20px 20px;
}
section.newspost-article .article-share .share-contact > ul > li > a {
	position: relative;
	display: block;
	padding-left: 38px;
	transition: opacity 200ms ease-in-out;
	color: #0A1E2F;
}
section.newspost-article .article-share .share-contact > ul > li > a:hover {
	opacity: .5;
}
section.newspost-article .article-share .share-contact > ul > li > a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	content: "";
	border-radius: 50%;
	background: #F37520 center no-repeat;
}
section.newspost-article .article-share .share-contact > ul > li.facebook > a::before {
	background-image: url("./static/img/icons/social/white/Facebook.svg");
	background-size: auto 16px;
}
section.newspost-article .article-share .share-contact > ul > li.twitter > a::before {
	background-image: url("./static/img/icons/social/white/Twitter.svg");
	background-size: auto 13px;
}
section.newspost-article .article-share .share-contact > ul > li.email > a::before {
	background-image: url("./static/img/icons/social/white/Email.svg");
	background-size: auto 12px;
}
section.newspost-article .article-reply {
	margin-top: 120px;
}
section.newspost-article .article-reply .reply-title {
	padding-bottom: 20px;
	color: #0A1E2F;
	border-bottom: 1px solid #F2F2F2;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
}
section.newspost-article .article-reply .reply-comments {
	margin-top: 30px;
}


/* Enquire */
section.enquire {
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	display: block;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 100%;
	transition: visibility 200ms ease-in-out, background-color 200ms ease-in-out;
}
section.enquire .enquire-content {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	padding: 60px 40px;
}
section.enquire .enquire-content > .flex,
section.enquire .enquire-content .content-details {
	width: 100%;
}
section.enquire .enquire-content .content-details {
	display: flex;
	max-width: 1080px;
	margin: 0 auto;
	transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
	transform: scale(.5);
	opacity: 0;
}
section.enquire .enquire-content .content-details::after {
	display: block;
	clear: both;
	content: "";
}
section.enquire .enquire-content .content-details > .left,
section.enquire .enquire-content .content-details > .right {
	width: 100%;
	padding: 50px 60px;
}
section.enquire .enquire-content .content-details > .left {
	float: left;
	clear: left;
	max-width: 400px;
	color: #FFF;
	background: #064F8C;
}
section.enquire .enquire-content .content-details > .right {
	float: right;
	clear: right;
	max-width: 680px;
	background: #FFF;
}
section.enquire .enquire-content .content-details hr {
	width: 100%;
	height: 1px;
	margin: 40px 0;
	border: none;
	outline: none;
	background: #497EAB;
}
section.enquire .enquire-content .content-details .details-map,
section.enquire .enquire-content .content-details .details-map > img {
	width: 100%;
}
section.enquire .enquire-content .content-details .details-map {
	overflow: hidden;
}
section.enquire .enquire-content .content-details .details-map > img {
	min-height: 280px;
	object-fit: cover;
}
section.enquire .enquire-content .content-details .details-contact > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section.enquire .enquire-content .content-details .details-contact > ul > li {
	position: relative;
	min-height: 36px;
	margin-top: 20px;
	padding-left: 56px;
	font-size: 16px;
	line-height: 1.25;
}
section.enquire .enquire-content .content-details .details-contact > ul > li:first-child {
	margin-top: 0;
}
section.enquire .enquire-content .content-details .details-contact > ul > li::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 34px;
	height: 34px;
	content: "";
	border: 1px solid #1E74B9;
	border-radius: 50%;
	background: center no-repeat;
}
section.enquire .enquire-content .content-details .details-contact > ul > li.location:before {
	background-image: url("./static/img/icons/contact/white/Location.svg");
	background-size: auto 20px;
}
section.enquire .enquire-content .content-details .details-contact > ul > li.clock:before {
	background-image: url("./static/img/icons/contact/white/Clock.svg");
	background-size: auto 20px;
}
section.enquire .enquire-content .content-details .details-contact > ul > li.phone:before {
	background-image: url("./static/img/icons/contact/white/Phone.svg");
	background-size: auto 18px;
}
section.enquire .enquire-content .content-details .details-contact > ul > li.email:before {
	background-image: url("./static/img/icons/contact/white/Email.svg");
	background-size: auto 12px;
}
section.enquire .enquire-content .content-details .details-contact > ul > li > a {
	display: inline-block;
	padding: 8px 0;
	transition: opacity 200ms ease-in-out;
	vertical-align: top;
	color: inherit;
	font-family: "Montserrat", Arial, sans-serif;
}
section.enquire .enquire-content .content-details .details-contact > ul > li > a:hover {
	opacity: .5;
}
section.enquire .enquire-content .content-details .details-contact > ul > li > p {
	margin: 0;
	padding: 4px 0;
}
section.enquire .enquire-content .content-details .details-title {
	position: relative;
	padding-right: 42px;
}
section.enquire .enquire-content .content-details .details-title .title-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 44px;
	cursor: pointer;
	transition: opacity 200ms ease-in-out;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
section.enquire .enquire-content .content-details .details-title .title-close:hover {
	opacity: .5;
}
section.enquire .enquire-content .content-details .details-title .title-close > span {
	position: absolute;
	top: 15px;
	left: 0;
	width: 100%;
	height: 2px;
	transition: background-color 200ms ease-in-out;
	background: #CCC;
}
section.enquire .enquire-content .content-details .details-title .title-close > span:nth-child(1) {
	transform: rotate(45deg);
}
section.enquire .enquire-content .content-details .details-title .title-close > span:nth-child(2) {
	transform: rotate(-45deg);
}
section.enquire .enquire-content .content-details .details-form {
	margin-top: 60px;
}
section.enquire .enquire-content .content-details .details-form label {
	float: left;
	clear: both;
	min-height: 20px;
	margin-bottom: 5px;
	color: #1E74B9;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}
section.enquire .enquire-content .content-details .details-form .input {
	position: relative;
	z-index: 1;
	display: block;
	float: left;
	clear: both;
	width: 100%;
	padding: 9px 20px;
	transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	letter-spacing: 1px;
	border: 1px solid #F2F2F2;
	border-radius: 0;
	outline: none;
	background: #FFF;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
section.enquire .enquire-content .content-details .details-form .input:focus {
	border-color: #8EB9DC;
	box-shadow: 0 0 0 2px #C7DCED;
}
section.enquire .enquire-content .content-details .details-form select.input {
	padding-right: 44px;
	background: #FFF url("./static/img/icons/Select.svg") right center no-repeat;
	background-position: right 20px center;
	background-size: auto 7px;
}
section.enquire .enquire-content .content-details .details-form textarea.input {
	min-height: 48px;
	resize: vertical;
	letter-spacing: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: 300;
	line-height: 1.8;
}
section.enquire .enquire-content .content-details .details-form .wpcf7-form-control-wrap {
	display: block;
	float: left;
	clear: both;
	width: 100%;
}
section.enquire .enquire-content .content-details .details-form .wpcf7-form-control-wrap:first-child {
	padding-top: 25px;
}
section.enquire .enquire-content .content-details .details-form .wpcf7-not-valid-tip {
	float: left;
	clear: both;
	margin-top: 10px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.25;
}
section.enquire .enquire-content .content-details .details-form .form-group,
section.enquire .enquire-content .content-details .details-form .form-row,
section.enquire .enquire-content .content-details .details-form .form-row .row-column {
	margin-top: 25px;
}
section.enquire .enquire-content .content-details .details-form .form-group:first-child,
section.enquire .enquire-content .content-details .details-form .form-row:first-child,
section.enquire .enquire-content .content-details .details-form .form-row .row-column:first-child {
	margin-top: 0;
}
section.enquire .enquire-content .content-details .details-form .form-group::after,
section.enquire .enquire-content .content-details .details-form .form-row::after {
	display: block;
	clear: both;
	content: "";
}
section.enquire .enquire-content .content-details .details-form .form-group > br,
section.enquire .enquire-content .content-details .details-form .form-row .row-column > br {
	display: none;
}
section.enquire .enquire-content .content-details .details-form .form-row {
	margin-right: -12.5px;
	margin-left: -12.5px;
}
section.enquire .enquire-content .content-details .details-form .form-row .row-column {
	float: left;
	width: 50%;
	margin-top: 25px;
	padding: 0 12.5px;
}
section.enquire .enquire-content .content-details .details-form .form-submit {
	margin-top: 40px;
}
section.enquire .enquire-content .content-details .details-form .form-submit > p {
	margin: 0;
}


/* Footer */
footer.footer {
	padding: 120px 0 40px;
	background: #0A1E2F;
}
footer.footer .footer-content::after {
	display: block;
	clear: both;
	content: "";
}
footer.footer .footer-content > .left,
footer.footer .footer-content > .right {
	width: 100%;
}
footer.footer .footer-content > .left {
	float: left;
	clear: left;
	max-width: 305px;
}
footer.footer .footer-content > .right {
	float: right;
	clear: right;
	max-width: 655px;
}
footer.footer .footer-content .content-logo {
	display: block;
	width: 200px;
	height: 58px;
	background: url("./static/img/logos/northhomesstack/White.svg") center no-repeat;
	background-size: contain;
}
footer.footer .footer-content .content-social {
	margin-top: 100px;
}
footer.footer .footer-content .content-social > ul {
	margin: 0 -25px;
	padding: 0;
	list-style: none;
}
footer.footer .footer-content .content-social > ul::after {
	display: block;
	clear: both;
	content: "";
}
footer.footer .footer-content .content-social > ul > li {
	float: left;
	margin: 0 25px;
}
footer.footer .footer-content .content-social > ul > li > a {
	display: block;
	height: 25px;
	transition: opacity 200ms ease-in-out;
	background: center no-repeat;
	background-size: contain;
}
footer.footer .footer-content .content-social > ul > li > a:hover {
	opacity: .5;
}
footer.footer .footer-content .content-social > ul > li.houzz > a {
	width: 22.5px;
	background-image: url("./static/img/icons/social/orange/Houzz.svg");
}
footer.footer .footer-content .content-social > ul > li.facebook > a {
	width: 12.5px;
	background-image: url("./static/img/icons/social/orange/Facebook.svg");
}
footer.footer .footer-content .content-social > ul > li.instagram > a {
	width: 25px;
	background-image: url("./static/img/icons/social/orange/Instagram.svg");
}
footer.footer .footer-content .content-grid::after {
	display: block;
	clear: both;
	content: "";
}
footer.footer .footer-content .content-grid > .left,
footer.footer .footer-content .content-grid > .right {
	width: 100%;
	max-width: 285px;
}
footer.footer .footer-content .content-grid > .left {
	float: left;
	clear: left;
}
footer.footer .footer-content .content-grid > .right {
	float: right;
	clear: right;
}
footer.footer .footer-content .content-grid .grid-links {
	padding-top: 25px;
	border-top: 1px solid #1E74B9;
}
footer.footer .footer-content .content-grid .grid-links > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer.footer .footer-content .content-grid .grid-links > ul > li {
	display: block;
	margin-top: 25px;
}
footer.footer .footer-content .content-grid .grid-links > ul > li:first-child {
	margin-top: 0;
}
footer.footer .footer-content .content-grid .grid-links > ul > li > a {
	display: inline-block;
	transition: opacity 200ms ease-in-out;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #FFF;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}
footer.footer .footer-content .content-grid .grid-links > ul > li > a:hover {
	opacity: .5;
}
footer.footer .footer-copyright {
	margin-top: 150px;
	color: #F2F2F2;
	color: rgba(242, 242, 242, .8);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 200;
	line-height: 1.25;
}


/* Open Enquire */
body.open-enquire {
	overflow: hidden;
}
body.open-enquire section.enquire {
	visibility: visible;
	background-color: rgba(0, 0, 0, .75);
}
body.open-enquire section.enquire .enquire-content .content-details {
	transform: scale(1);
	opacity: 1;
}


/* Responsive */
@media (min-width: 657px) {
	/* Enquire */
	section.enquire .enquire-content .content-details .details-form .form-row .row-column:nth-child(2) {
		margin-top: 0;
	}
	section.enquire .enquire-content .content-details .details-form .form-row .row-column:nth-child(2n+1) {
		clear: left;
	}
}
@media (min-width: 1057px) {
	/* Design & Build (Team) */
	section.dnb-team .team-content > ul > li:nth-child(3n+1) {
		clear: left;
	}
}
@media (min-width: 727px and max-width: 1056px) {
	/* Design & Build (Team) */
	section.dnb-team .team-content > ul > li:nth-child(2n+1) {
		clear: left;
	}
}
@media (max-width: 1416px) {
	/* Header */
	header.header {
		padding: 35px;
	}
	header.header .header-logo {
		width: 168px;
		height: 48px;
	}
	header.header .header-navi {
		padding: 0;
	}
	header.header .header-navi > ul {
		margin: 0 -10px;
	}
	header.header .header-navi > ul > li {
		margin: 0 10px;
	}

	/* Hero */
	section.hero .hero-carousel .carousel-slide,
	section.hero .hero-content {
		padding-top: 83px;
	}

	/* Cover */
	section.cover {
		padding-top: 83px;
	}

	/* Footer */
	footer.footer .footer-content .content-logo {
		width: 168px;
		height: 48px;
	}
}
@media (max-width: 1296px) {
	/* Consultation */
	section.consultation .consultation-details {
		float: none;
		max-width: 520px;
		margin: 0 auto;
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media (max-width: 1256px) {
	/* Header */
	header.header > .left {
		width: 100%;
	}
	header.header > .right {
		overflow: hidden;
		width: 0;
		height: 0;
	}
	header.header .header-burger {
		display: block;
	}
	header.header .header-navi {
		display: none;
	}
	header.header .header-mobnavi {
		display: block;
	}

	/* Half Grid */
	section.halfgrid .halfgrid-content .content-details {
		max-width: 515px;
		margin: 0 auto;
		padding-right: 40px;
		padding-left: 40px;
	}
	section.halfgrid .halfgrid-content > .item > .left .content-details,
	section.halfgrid .halfgrid-content > .item > .right .content-details {
		float: none;
	}

	/* Open Mobnavi */
	body.open-mobnavi {
		overflow: hidden;
	}
	body.open-mobnavi header.header .header-mobnavi {
		visibility: visible;
		background-color: rgba(0, 0, 0, .75);
	}
	body.open-mobnavi header.header .header-mobnavi .mobnavi-content {
		transform: scaleX(1);
		opacity: 1;
	}
}
@media (max-width: 1211px) {
	/* Design & Build (Intro) */
	section.dnb-intro .intro-content > .left {
		width: calc(50% - 7.5px);
	}
	section.dnb-intro .intro-content > .right {
		width: calc(50% - 32.5px);
	}
}
@media (max-width: 1176px) {
	/* Design & Build (Team) */
	section.dnb-team .team-content > ul > li {
		width: calc((100% / 3) - 30px);
	}
	section.dnb-team .team-content .content-details {
		padding: 30px;
	}
	section.dnb-team .team-content .content-details .details-title {
		font-size: 30px;
	}
	section.dnb-team .team-content .content-details .details-desc {
		font-size: 14px;
	}

	/* Footer */
	footer.footer {
		padding-top: 80px;
	}
	footer.footer .footer-content .content-social {
		margin-top: 40px;
	}
	footer.footer .footer-copyright {
		margin-top: 120px;
	}
}
@media (max-width: 1156px) {
	/* News (List) */
	section.news-list .list-content > .item > .left {
		width: calc(50% - 65px);
	}
	section.news-list .list-content > .item > .right {
		width: calc(50% + 25px);
	}
}
@media (max-width: 1141px) {
	/* Design & Build (Process) */
	section.dnb-process .process-content ul > li > .left {
		width: calc(50% - 42.5px);
	}
	section.dnb-process .process-content ul > li > .right {
		width: calc(50% + 2.5px);
	}
}
@media (max-width: 1136px) {
	/* Showhome (Intro) */
	section.showhome-intro .intro-content > .left {
		width: calc(100% - 360px);
	}
}
@media (max-width: 1131px) {
	/* Intro */
	section.intro .intro-content > .left {
		width: calc(50% - 47.5px);
	}
	section.intro .intro-content > .right {
		width: calc(50% + 7.5px);
	}

	/* Master Builders */
	section.masterbuilders .masterbuilders-content > .left {
		width: calc(50% + 22.5px);
	}
	section.masterbuilders .masterbuilders-content > .right {
		width: calc(50% - 62.5px);
	}

	/* Testimonial */
	section.testimonial .testimonial-content > .left {
		width: calc(50% - 142.5px);
	}
	section.testimonial .testimonial-content > .right {
		width: calc(50% + 102.5px);
		margin-top: 0;
	}
}
@media (max-width: 1116px) {
	/* Overview */
	section.overview .overview-content > .left {
		width: calc(50% + 140px);
	}
	section.overview .overview-content > .right {
		width: calc(50% - 180px);
	}
}
@media (max-width: 1096px) {
	/* Design & Build (Process) */
	section.dnb-process .process-steps {
		max-width: 800px;
	}
	section.dnb-process .process-steps > ul > li.divider {
		max-width: 100px;
	}
}
@media (max-width: 1056px) {
	/* Design & Build (Team) */
	section.dnb-team .team-content > ul > li {
		width: 50%;
		width: calc(50% - 30px);
		max-width: 100%;
	}

	/* Enquire */
	section.enquire .enquire-content .content-details {
		display: block;
	}
	section.enquire .enquire-content .content-details > .left {
		display: none;
	}
	section.enquire .enquire-content .content-details > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}

	/* Footer */
	footer.footer .footer-content > .left,
	footer.footer .footer-content > .right {
		float: left;
		clear: both;
		max-width: 100%;
	}
	footer.footer .footer-content > .right {
		margin-top: 60px;
	}
	footer.footer .footer-content .content-logo {
		float: left;
		clear: left;
	}
	footer.footer .footer-content .content-social {
		float: right;
		clear: right;
		margin: 11.5px 0;
	}
	footer.footer .footer-content .content-grid > .left,
	footer.footer .footer-content .content-grid > .right {
		width: 100%;
		width: calc(50% - 20px);
		max-width: 50%;
	}
	footer.footer .footer-copyright {
		margin-top: 60px;
	}
}
@media (max-width: 976px) {
	/* Header */
	header.header {
		padding: 25px;
	}
	header.header .header-logo {
		width: 126px;
		height: 36px;
	}
	header.header .header-burger {
		height: 36px;
		border-top-width: 6px;
		border-bottom-width: 6px;
	}
	header.header .header-mobnavi .mobnavi-content > .top,
	header.header .header-mobnavi .mobnavi-content > .bottom {
		padding: 25px;
	}
	header.header .header-mobnavi .mobnavi-content .content-close {
		height: 36px;
		border-top-width: 6px;
		border-bottom-width: 6px;
	}
	header.header .header-mobnavi .mobnavi-content .content-menu .menu-link,
	header.header .header-mobnavi .mobnavi-content .content-menu .menu-dropdown .dropdown-link {
		padding-right: 25px;
		padding-left: 25px;
	}

	/* Hero */
	section.hero .hero-carousel > .slick,
	section.hero .hero-carousel .carousel-slide,
	section.hero .hero-content {
		height: 600px;
	}
	section.hero .hero-carousel .carousel-slide,
	section.hero .hero-content {
		padding-top: 61px;
	}
	section.hero .hero-carousel .carousel-slide .slide-details p,
	section.hero .hero-content .content-details p {
		font-size: 40px;
	}

	/* Cover */
	section.cover {
		padding-top: 61px;
	}
	section.cover > .container {
		padding-top: 80px;
	}
	section.cover .cover-content {
		padding-left: 40px;
	}
	section.cover .cover-content > .left,
	section.cover .cover-content > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.cover .cover-content::before {
		height: 100% !important;
	}
	section.cover .cover-content .content-title {
		font-size: 40px;
	}
	section.cover .cover-content .content-subtitle {
		padding: 0;
	}

	/* Scroll */
	section.scroll {
		display: none;
	}

	/* Intro */
	section.intro {
		padding: 80px 0;
	}
	section.intro .intro-content {
		max-width: 470px;
		margin: 0 auto;
	}
	section.intro .intro-content > .left,
	section.intro .intro-content > .right {
		width: 100%;
		margin-top: 40px;
	}

	/* Showcase */
	section.showcase {
		padding: 80px 0;
	}

	/* Master Builders */
	section.masterbuilders {
		padding: 80px 0;
	}
	section.masterbuilders::before,
	section.masterbuilders::after {
		display: none;
	}
	section.masterbuilders .masterbuilders-content {
		max-width: 540px;
		margin: 0 auto;
	}
	section.masterbuilders .masterbuilders-content > .left,
	section.masterbuilders .masterbuilders-content > .right {
		width: 100%;
		max-width: 100%;
	}
	section.masterbuilders .masterbuilders-content > .right {
		margin-top: 40px;
	}

	/* Suppliers */
	section.suppliers {
		padding: 80px 0;
	}
	section.suppliers .suppliers-content {
		display: block;
		max-width: 540px;
		margin: 0 auto;
	}
	section.suppliers .suppliers-content > .left,
	section.suppliers .suppliers-content > .right {
		width: 100%;
		max-width: 100%;
	}
	section.suppliers .suppliers-content > .right {
		margin-top: 60px;
	}

	/* Consultation */
	section.consultation > .left {
		display: none;
	}
	section.consultation > .right {
		width: 100%;
	}
	section.consultation .consultation-details {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	/* Design & Build (Intro) */
	section.dnb-intro {
		padding: 80px 0;
	}
	section.dnb-intro .intro-content {
		max-width: 550px;
		margin: 0 auto;
	}
	section.dnb-intro .intro-content > .left,
	section.dnb-intro .intro-content > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.dnb-intro .intro-content > .right {
		margin-top: 60px;
	}

	/* Design & Build (Process) */
	section.dnb-process {
		padding: 80px 0;
	}
	section.dnb-process .process-steps {
		margin-top: 80px;
	}
	section.dnb-process .process-content {
		max-width: 525px;
		margin: 60px auto 0;
	}
	section.dnb-process .process-content ul > li > .left,
	section.dnb-process .process-content ul > li > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.dnb-process .process-content ul > li > .right {
		margin-top: 40px;
	}

	/* Design & Build (Testimonial) */
	section.dnb-testimonial {
		padding: 80px 0;
	}
	section.dnb-testimonial .testimonial-content {
		padding-left: 40px;
	}

	/* Design & Build (Team) */
	section.dnb-team {
		padding: 80px 0;
	}

	/* Testimonial */
	section.testimonial {
		padding: 80px 0;
	}
	section.testimonial .testimonial-content {
		max-width: 620px;
		margin: 0 auto;
	}
	section.testimonial .testimonial-content > .left,
	section.testimonial .testimonial-content > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.testimonial .testimonial-content > .right {
		margin-top: 60px;
	}

	/* Half Grid */
	section.halfgrid {
		padding: 80px 0;
	}
	section.halfgrid .halfgrid-content {
		max-width: 515px;
		margin: 0 auto;
		padding: 0 40px;
	}
	section.halfgrid .halfgrid-content > .item {
		margin-top: 80px;
	}
	section.halfgrid .halfgrid-content > .item > * {
		margin-top: 40px;
	}
	section.halfgrid .halfgrid-content > .item > *:first-child {
		margin-top: 0;
	}
	section.halfgrid .halfgrid-content > .item > .left,
	section.halfgrid .halfgrid-content > .item > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.halfgrid .halfgrid-content .content-details {
		max-width: 100%;
		padding: 0;
	}
	section.halfgrid .halfgrid-content .content-image,
	section.halfgrid .halfgrid-content .content-image > img {
		position: relative;
		top: auto;
	}
	section.halfgrid .halfgrid-content .content-image {
		width: 100%;
	}
	section.halfgrid .halfgrid-content .content-image > img {
		left: auto;
		height: auto;
	}
	section.halfgrid .halfgrid-content > .item > .left .content-image,
	section.halfgrid .halfgrid-content > .item > .right .content-image {
		right: auto;
		left: auto;
	}

	/* Carousel */
	section.carousel > .slick .slick-list {
		padding: 0 170px;
	}
	section.carousel .carousel-slide {
		padding: 0 10px;
	}

	/* Overview */
	section.overview {
		padding: 80px 0;
	}
	section.overview > .container {
		max-width: 650px;
	}
	section.overview .overview-content > .left,
	section.overview .overview-content > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.overview .overview-content > .right {
		margin-top: 40px;
	}

	/* Showhome */
	section.showhome {
		padding-bottom: 80px;
	}

	/* Showhome (Intro) */
	section.showhome-intro {
		padding: 80px 0;
	}
	section.showhome-intro .intro-content {
		max-width: 680px;
		margin: 0 auto;
	}
	section.showhome-intro .intro-content > .left,
	section.showhome-intro .intro-content > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.showhome-intro .intro-content > .right {
		margin-top: 40px;
	}

	/* Projects (List) */
	section.projects-list {
		padding-bottom: 80px;
	}
	section.projects-list .list-content > .item {
		margin-top: 60px;
	}
	section.projects-list .list-content .content-details {
		height: 500px;
	}
	section.projects-list .list-pagination {
		margin-top: 60px;
	}

	/* News Post (Article) */
	section.newspost-article {
		padding-bottom: 80px;
	}
	section.newspost-article .article-share {
		margin-top: 40px;
	}
	section.newspost-article .article-share::before {
		margin-bottom: 40px;
	}
	section.newspost-article .article-reply {
		margin-top: 80px;
	}

	/* News (List) */
	section.news-list {
		padding-bottom: 80px;
	}
	section.news-list .list-content {
		max-width: 555px;
		margin: 0 auto;
	}
	section.news-list .list-content > .item > .left,
	section.news-list .list-content > .item > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.news-list .list-content > .item > .right {
		margin-top: 40px;
	}

	/* Enquire */
	section.enquire .enquire-content {
		padding: 25px;
	}
	section.enquire .enquire-content .content-details > .right {
		padding: 40px;
	}
	section.enquire .enquire-content .content-details .details-form {
		margin-top: 40px;
	}

	/* Footer */
	footer.footer .footer-content .content-logo {
		width: 126px;
		height: 36px;
	}
	footer.footer .footer-content .content-social {
		margin: 5.5px 0;
	}
}
@media (max-width: 896px) {
	/* Design & Build (Process) */
	section.dnb-process .process-steps {
		max-width: 610px;
	}
	section.dnb-process .process-steps > ul > li {
		max-width: 150px;
	}
	section.dnb-process .process-steps > ul > li.divider {
		max-width: 50px;
	}
	section.dnb-process .process-steps .steps-title {
		font-size: 20px;
	}
}
@media (max-width: 836px) {
	/* Showcase */
	section.showcase .showcase-carousel > .slick .slick-list {
		padding: 0;
	}
	section.showcase .showcase-carousel .carousel-arrow {
		max-width: 40px;
	}
	section.showcase .showcase-carousel .carousel-slide {
		padding: 0;
	}
	section.showcase .showcase-carousel .carousel-slide .slide-image {
		right: auto;
		left: 0;
		width: 100%;
	}
	section.showcase .showcase-carousel .carousel-slide .slide-details {
		padding: 35px 40px;
	}

	/* Carousel */
	section.carousel > .slick .slick-list {
		padding: 0 90px;
	}
	section.carousel .carousel-arrow {
		max-width: 80px;
	}

	/* News (Menu) */
	section.news-menu .menu-content > .left,
	section.news-menu .menu-content > .right {
		float: left;
		clear: both;
		width: 100%;
		max-width: 100%;
	}
	section.news-menu .menu-content > .right {
		margin-top: 40px;
	}
	section.news-menu .menu-content .content-navi {
		padding: 0;
	}
}
@media (max-width: 726px) {
	/* Design & Build (Team) */
	section.dnb-team .team-content > ul {
		margin: 0;
	}
	section.dnb-team .team-content > ul > li {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
}
@media (max-width: 706px) {
	/* Design & Build (Process) */
	section.dnb-process .process-steps {
		max-width: 500px;
		min-height: 0;
	}
	section.dnb-process .process-steps > ul > li {
		max-width: 130px;
	}
	section.dnb-process .process-steps > ul > li.divider {
		max-width: 25px;
		margin-top: 49px;
		margin-bottom: 49px;
	}
	section.dnb-process .process-steps .steps-icon {
		margin-top: 0;
		margin-bottom: 0;
	}
	section.dnb-process .process-steps .steps-title {
		font-size: 18px;
	}
	section.dnb-process .process-steps ul > li.current .steps-icon {
		width: 100px;
		height: 100px;
	}
	section.dnb-process .process-steps ul > li.current .steps-icon::before,
	section.dnb-process .process-steps ul > li.current .steps-icon::after {
		transform: scale(1);
	}
}
@media (max-width: 676px) {
	/* Carousel */
	section.carousel > .slick .slick-list,
	section.carousel .carousel-slide {
		padding: 0;
	}
	section.carousel .carousel-slide .slide-image > img {
		min-height: 250px;
	}
}
@media (max-width: 656px) {
	/* Body */
	body {
		font-size: 16px;
	}

	/* Container */
	.container {
		padding: 0 30px;
	}

	/* Pagination */
	.pagination > .pagination-prev {
		margin-right: 20px;
	}
	.pagination > .pagination-next {
		margin-left: 20px;
	}
	.pagination > .pagination-numbers {
		margin: 0 10px;
	}

	/* Title Main */
	h2.title-main {
		font-size: 30px;
	}
	h2.title-main::before {
		margin: 5px 10px 5px 0;
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 10px;
	}

	/* Hero */
	section.hero .hero-carousel > .slick,
	section.hero .hero-carousel .carousel-slide,
	section.hero .hero-content {
		height: 500px;
	}
	section.hero .hero-carousel .carousel-slide .slide-details p,
	section.hero .hero-content .content-details p {
		font-size: 30px;
	}
	section.hero .hero-pagination {
		padding-bottom: 35px;
	}

	/* Cover */
	section.cover > .container {
		padding-top: 60px;
		padding-bottom: 30px;
	}
	section.cover .cover-content {
		padding-left: 30px;
	}
	section.cover .cover-content .content-title {
		font-size: 30px;
	}
	section.cover .cover-content .content-subtitle {
		font-size: 20px;
	}
	section.cover .cover-content .content-desc {
		margin-top: 10px;
	}

	/* Showcase */
	section.showcase .showcase-carousel > .slick,
	section.showcase .showcase-carousel .carousel-slide .slide-details {
		height: 300px;
	}
	section.showcase .showcase-carousel .carousel-slide .slide-details {
		padding: 30px;
	}
	section.showcase .showcase-carousel .carousel-slide .slide-details .details-title {
		font-size: 30px;
	}

	/* Master Builders */
	section.masterbuilders .masterbuilders-content .content-desc ul > li::before {
		top: 11.5px;
	}

	/* Consultation */
	section.consultation .consultation-details {
		padding-right: 30px;
		padding-left: 30px;
	}
	section.consultation .consultation-details .details-contact > ul > li > a {
		padding: 8px 0;
	}

	/* Design & Build (Intro) */
	section.dnb-intro .intro-content .content-title {
		font-size: 20px;
	}

	/* Showhome (Intro) */
	section.showhome-intro .intro-content .content-details .details-contact > ul > li > a {
		padding: 8px 0;
	}
	section.showhome-intro .intro-content .content-details .details-contact > ul > li > p {
		padding: 4px 0;
	}

	/* Half Grid */
	section.halfgrid .halfgrid-content .content-details .details-contact > ul > li > p {
		padding: 8px 0;
	}

	/* Projects (List) */
	section.projects-list .list-content .content-details {
		height: 400px;
		padding: 30px;
	}
	section.projects-list .list-content .content-details .details-title {
		font-size: 30px;
	}

	/* News Post (Article) */
	section.newspost-article .article-content > * {
		margin-top: 20px;
	}

	/* Enquire */
	section.enquire .enquire-content .content-details .details-title {
		padding-right: 39px;
	}
	section.enquire .enquire-content .content-details .details-title .title-close {
		width: 29px;
		height: 33px;
		border-top-width: 2px;
		border-bottom-width: 2px;
	}
	section.enquire .enquire-content .content-details .details-title .title-close > span {
		top: 13.5px;
	}
	section.enquire .enquire-content .content-details .details-form .wpcf7-form-control-wrap:first-child {
		padding-top: 0;
	}
	section.enquire .enquire-content .content-details .details-form .form-row {
		margin: 0;
	}
	section.enquire .enquire-content .content-details .details-form .form-row .row-column {
		width: 100%;
		padding: 0;
	}
}
@media (max-width: 576px) {
	/* Design & Build (Process) */
	section.dnb-process .process-steps > ul {
		margin: 0;
	}
	section.dnb-process .process-steps > ul > li {
		width: 33.333333333333%;
		max-width: 100%;
		margin: 0;
	}
	section.dnb-process .process-steps > ul > li.divider {
		display: none;
	}
	section.dnb-process .process-steps .steps-icon,
	section.dnb-process .process-steps ul > li.current .steps-icon {
		width: 75px;
		height: 75px;
	}
	section.dnb-process .process-steps .steps-icon::before,
	section.dnb-process .process-steps .steps-icon::after,
	section.dnb-process .process-steps ul > li.current .steps-icon::before,
	section.dnb-process .process-steps ul > li.current .steps-icon::after {
		transform: scale(.75);
	}
	section.dnb-process .process-steps .steps-title {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		font-size: 14px;
	}

	/* Half Grid */
	section.halfgrid .halfgrid-content {
		padding: 0 30px;
	}
}
@media (max-width: 496px) {
	/* Body */
	body {
		font-size: 14px;
	}

	/* Button */
	.button {
		letter-spacing: .5px;
		font-size: 14px;
	}

	/* Title Main */
	h2.title-main {
		font-size: 25px;
	}
	h2.title-main::before {
		border-top-width: 7.5px;
		border-bottom-width: 7.5px;
		border-left-width: 7.5px;
	}

	/* Hero */
	section.hero .hero-carousel > .slick,
	section.hero .hero-carousel .carousel-slide,
	section.hero .hero-content {
		height: 450px;
	}
	section.hero .hero-carousel .carousel-slide .slide-details {
		padding: 80px 0;
	}
	section.hero .hero-pagination .pagination-prev {
		margin-right: 22.5px;
	}
	section.hero .hero-pagination .pagination-next {
		margin-left: 22.5px;
	}
	section.hero .hero-pagination .pagination-dots > ul {
		margin: 0 -7.5px;
	}
	section.hero .hero-pagination .pagination-dots > ul > li {
		margin: 0 7.5px;
	}

	/* Cover */
	section.cover .cover-content .content-title {
		font-size: 25px;
	}

	/* Intro */
	section.intro {
		padding: 60px 0;
	}
	section.intro .intro-content > .left,
	section.intro .intro-content > .right {
		margin-top: 30px;
	}
	section.intro .intro-content > .right + .right {
		margin-top: 60px;
	}

	/* Showcase */
	section.showcase {
		padding: 60px 0;
	}
	section.showcase .showcase-carousel .carousel-slide .slide-details .details-title {
		font-size: 25px;
	}
	section.showcase .showcase-pagination .pagination-prev {
		margin-right: 22.5px;
	}
	section.showcase .showcase-pagination .pagination-next {
		margin-left: 22.5px;
	}
	section.showcase .showcase-pagination .pagination-dots > ul {
		margin: 0 -7.5px;
	}
	section.showcase .showcase-pagination .pagination-dots > ul > li {
		margin: 0 7.5px;
	}

	/* Master Builders */
	section.masterbuilders {
		padding: 60px 0;
	}
	section.masterbuilders .masterbuilders-content > .right {
		margin-top: 30px;
	}
	section.masterbuilders .masterbuilders-content .content-desc ul > li {
		padding-left: 15px;
	}
	section.masterbuilders .masterbuilders-content .content-desc ul > li::before {
		top: 10px;
	}

	/* Suppliers */
	section.suppliers {
		padding: 60px 0;
	}
	section.suppliers .suppliers-content > .right {
		margin-top: 45px;
	}

	/* Consultation */
	section.consultation .consultation-details {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	section.consultation .consultation-details .details-contact > ul > li > a {
		padding: 9.5px 0;
	}

	/* Design & Build (Intro) */
	section.dnb-intro {
		padding: 60px 0;
	}
	section.dnb-intro .intro-content > .right {
		margin-top: 45px;
	}
	section.dnb-intro .intro-content .content-image.bottom {
		max-width: 100%;
	}
	section.dnb-intro .intro-content .content-image.bottom::before {
		display: none;
	}
	section.dnb-intro .intro-content .content-image.bottom > img {
		max-height: 360px;
	}
	section.dnb-intro .intro-content .content-title {
		font-size: 18px;
	}

	/* Design & Build (Process) */
	section.dnb-process {
		padding: 60px 0;
	}
	section.dnb-process .process-steps {
		margin-top: 60px;
	}
	section.dnb-process .process-content {
		margin-top: 45px;
	}
	section.dnb-process .process-steps .steps-title {
		font-size: 12px;
	}

	/* Design & Build (Testimonial) */
	section.dnb-testimonial {
		padding: 45px 0;
	}
	section.dnb-testimonial .testimonial-content {
		padding-left: 0;
	}
	section.dnb-testimonial .testimonial-content::before {
		display: none;
	}
	section.dnb-testimonial .testimonial-content > .item {
		padding: 0;
	}
	section.dnb-testimonial .testimonial-content .content-title {
		font-size: 18px;
	}
	section.dnb-testimonial .testimonial-content .content-title::before,
	section.dnb-testimonial .testimonial-content .content-title::after {
		display: none;
	}
	section.dnb-testimonial .testimonial-content .content-desc {
		font-size: 16px;
	}

	/* Testimonial */
	section.testimonial {
		padding: 60px 0;
	}
	section.testimonial .testimonial-content > .right {
		margin-top: 45px;
		padding-left: 30px;
	}
	section.testimonial .testimonial-content > .right::before {
		font-size: 60px;
	}
	section.testimonial .testimonial-content .content-title {
		font-size: 18px;
	}
	section.testimonial .testimonial-content .content-desc {
		font-size: 16px;
	}

	/* Half Grid */
	section.halfgrid {
		padding: 60px 0;
	}
	section.halfgrid .halfgrid-content > .item {
		margin-top: 60px;
	}
	section.halfgrid .halfgrid-content > .item > * {
		margin-top: 30px;
	}
	section.halfgrid .halfgrid-content .content-details .details-title {
		font-size: 30px;
	}
	section.halfgrid .halfgrid-content .content-details .details-subtitle {
		font-size: 20px;
	}
	section.halfgrid .halfgrid-content .content-details .details-contact {
		margin-top: 30px;
	}
	section.halfgrid .halfgrid-content .content-details .details-contact > ul > li {
		padding-left: 51px;
	}
	section.halfgrid .halfgrid-content .content-details .details-contact > ul > li > p {
		padding: 9.5px 0;
	}
	section.halfgrid .halfgrid-content .content-details .details-enquire {
		margin-top: 30px;
	}

	/* Carousel */
	section.carousel .carousel-arrow {
		max-width: 60px;
		background-size: auto 30px;
	}

	/* Overview */
	section.overview {
		padding: 60px 0;
	}
	section.overview .overview-content {
		margin-top: 30px;
	}
	section.overview .overview-content > .right {
		margin-top: 30px;
	}
	section.overview .overview-content hr {
		margin: 30px 0;
	}
	section.overview .overview-content .content-testimonial .testimonial-title {
		font-size: 18px;
	}
	section.overview .overview-content .content-testimonial .testimonial-desc {
		font-size: 16px;
	}

	/* Showhome */
	section.showhome {
		padding-bottom: 60px;
	}

	/* Showhome (Intro) */
	section.showhome-intro {
		padding: 60px 0;
	}
	section.showhome-intro .intro-content > .right {
		margin-top: 30px;
	}
	section.showhome-intro .intro-content .content-details .details-contact > ul > li {
		padding-left: 51px;
	}
	section.showhome-intro .intro-content .content-details .details-contact > ul > li > a {
		padding: 9.5px 0;
	}
	section.showhome-intro .intro-content .content-details .details-contact > ul > li > p {
		padding: 4.75px 0;
	}

	/* Design & Build (Team) */
	section.dnb-team {
		padding: 60px 0;
	}
	section.dnb-team .team-content .content-details {
		padding: 20px;
	}
	section.dnb-team .team-content .content-details .details-title {
		font-size: 20px;
	}
	section.dnb-team .team-content .content-details .details-desc {
		letter-spacing: .5px;
	}

	/* Projects (List) */
	section.projects-list {
		padding-bottom: 60px;
	}
	section.projects-list .list-content > .item {
		margin-top: 45px;
	}
	section.projects-list .list-content .content-details {
		height: 300px;
	}
	section.projects-list .list-content .content-details .details-title {
		font-size: 25px;
	}
	section.projects-list .list-pagination {
		margin-top: 45px;
	}

	/* News (Menu) */
	section.news-menu .menu-content {
		padding: 30px 0;
	}
	section.news-menu .menu-content > .right {
		margin-top: 30px;
	}
	section.news-menu .menu-content .content-navi {
		font-size: 13px;
	}
	section.news-menu .menu-content .content-navi > ul {
		margin: 0 -10px;
	}
	section.news-menu .menu-content .content-navi > ul > li {
		padding: 0 10px;
	}

	/* News (List) */
	section.news-list {
		padding: 30px 0 60px;
	}
	section.news-list .list-content > .item {
		margin-top: 60px;
	}
	section.news-list .list-content > .item > .right {
		margin-top: 30px;
	}
	section.news-list .list-content .content-details .details-title {
		font-size: 25px;
	}
	section.news-list .list-pagination {
		margin-top: 60px;
	}

	/* News Post (Article) */
	section.newspost-article .article-content > * {
		margin-top: 15px;
	}

	/* Enquire */
	section.enquire .enquire-content {
		padding-top: 71px;
	}
	section.enquire .enquire-content .content-details > .right {
		padding: 30px;
	}
	section.enquire .enquire-content .content-details .details-title {
		padding-right: 0;
	}
	section.enquire .enquire-content .content-details .details-title .title-close {
		top: -30px;
		right: -30px;
		width: 36px;
		height: 36px;
		margin: 0 0 30px;
		margin-top: -46px;
		border-top: none;
		border-bottom: none;
	}
	section.enquire .enquire-content .content-details .details-title .title-close > span {
		top: 16px;
		height: 4px;
	}
	section.enquire .enquire-content .content-details .details-form {
		margin-top: 30px;
	}
	section.enquire .enquire-content .content-details .details-form label,
	section.enquire .enquire-content .content-details .details-form .input,
	section.enquire .enquire-content .content-details .details-form .wpcf7-not-valid-tip {
		font-size: 14px;
	}
	section.enquire .enquire-content .content-details .details-form .input {
		padding-right: 15px;
		padding-left: 15px;
	}
	section.enquire .enquire-content .content-details .details-form select.input {
		padding-right: 34px;
		background-position: right 15px center;
	}
	section.enquire .enquire-content .content-details .details-form textarea.input {
		min-height: 45px;
	}
	section.enquire .enquire-content .content-details .details-form .form-group,
	section.enquire .enquire-content .content-details .details-form .form-row,
	section.enquire .enquire-content .content-details .details-form .form-row .row-column {
		margin-top: 20px;
	}

	/* Footer */
	footer.footer {
		padding: 40px 0 20px;
	}
	footer.footer .footer-content > .right {
		display: none;
	}
	footer.footer .footer-content .content-social > ul {
		margin: 0 -10px;
	}
	footer.footer .footer-content .content-social > ul > li {
		margin: 0 10px;
	}
	footer.footer .footer-copyright {
		margin-top: 30px;
	}
}

/* Animations */
@keyframes animateIn {
	from {
		visibility: hidden;
		opacity: 0;
	}
	to {
		visibility: visible;
		opacity: 1;
	}
}


div.wpcf7-response-output {
	border: none !important;
	font-size: 16px !important;
	margin: 35px 0 0 0 !important;
	padding: 0 !important;
}