/*
Theme Name: sch
Theme URI: https://sterlingcreekhomes.com/
Author: Patrick
Author URI: https://wppatrickk.com/
Description: Custom Theme for sterlingcreekhomes
Version: 1.0.0
Text Domain: sch
*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

:focus {
	outline: 0;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

/*--------------------------------------------------------------
# WP Core Styles
--------------------------------------------------------------*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 25px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Predefined Styles
--------------------------------------------------------------*/

:root {
	--base-color: #233141;
	--dark-color: #363534;
	--yellow: #FCBA53;
}

body {
	background-color: #fff;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: var(--base-color);
}

.site {
    overflow: hidden;
}

a {
	color: #c36;
	text-decoration: underline;
	-webkit-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;
}

a:hover {
	text-decoration: none;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

hr {
	border: none 0;
	border-bottom: 1px solid #E0E0E0;
	height: 1px;
	margin: 10px 0;
}

.inner {
	width: 100%;
	max-width: 1860px;
	padding: 0 30px;
	margin: 0 auto;
}

.clear {
	clear: both;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}

h1 {
	font-size: 56px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 20px;
}

p {
	line-height: 1.5;
	margin-bottom: 20px;
}

p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], textarea, select {
	width: 100%;
    padding: 10px 20px;
}

.button,
input[type="submit"] {
	display: inline-block;
	padding: 14px 24px;	
	border: 1px solid #fff;
	border-radius: 5px;
	color: #fff;
    text-decoration: none;
}

.wpcf7 [type="submit"] {
    background-color: var(--dark-color);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.button:hover,
input[type="submit"]:hover {
	background-color: #fff;
	color: var(--base-color);
}

input[type="submit"]:hover {
	background: #222;
}

.cwrap {
	display: flex;
	justify-content: space-between;
}

.valign {
	align-items: center;
}

.cols {
    justify-content: start;
	flex-wrap: wrap;
	margin: 0 -30px;
}

.col {
	flex: 1 1 50%;
	max-width: 50%;
	padding: 0 30px;
}

.col3 {
	flex: 1 1 33.33%;
	max-width: 33.33%;
	padding: 0 30px;
}

.col23 {
	flex: 1 1 66.67%;
	max-width: 66.67%;
	padding: 0 30px;
}

.col34 {
	flex: 1 1 75%;
	max-width: 75%;
	padding: 0 30px;
}

.col4 {
	flex: 1 1 25%;
	max-width: 25%;
	padding: 0 30px;
}

.col6 {
	flex: 1 1 16.66%;
	max-width: 16.66%;
	padding: 0 30px;
}

/*--------------------------------------------------------------
# Loader Styles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/

.site-header {
	background-color: rgba(0, 0, 0, 0.84);
	padding: 15px 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.site-branding img {
	max-width: 240px;
}

.site-menu ul {
	display: flex;
}

.site-menu ul li {
    position: relative;
}

.site-menu ul.menu > li > a {
	color: #fff;
    position: relative;
    padding: 12px 20px;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
}

.site-menu ul.menu > li.menu-item-has-children > a {
    margin-right: 10px;
}

.mobile-menu ul.menu > li.menu-item-has-children > a {
    position: relative;
}

.site-menu ul.menu > li.menu-item-has-children > a:before,
.mobile-menu ul.menu > li.menu-item-has-children > a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 16px;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
}

.mobile-menu ul.menu > li.menu-item-has-children > a:before {
    top: 20px;
    right: 30px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid currentColor;
}

.site-menu ul.menu > li > a:after {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
    content: "";
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out 0s;
}

.site-menu ul.menu > li:hover > a:after,
.site-menu ul.menu > li.current-menu-item > a:after {
    opacity: 1;
}

.site-menu ul li ul {
    position: absolute;
    top: auto;
    background-color: #fff;
    left: 0;
    padding: 15px;
    display: none;
}

.site-menu ul li:hover > ul {
    display: block;
}

.site-menu ul.sub-menu li a {
    white-space: nowrap;
    padding: 10px 0;
    display: block;
    color: var(--base-color);
    text-decoration: none;
}

.site-menu ul.sub-menu li a:hover {
    color: var(--yellow);
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/

.mobile-slide {
	position: relative;
	height: 18px;
	display: none;
	float: right;
	top: 2px;
	cursor: pointer;
}

.mobile-slide span {
	background-color: #fff;
	display: block;
	height: 3px;
	position: relative;
	transition: background .2s ease-out;
	width: 35px;
	top: 7px;
	transition: all .3s ease-out;
}

.mobile-slide span::before,
.mobile-slide span::after {
	background: #fff;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

.mobile-slide span::before {
	top: 10px;
}

.mobile-slide span::after {
	top: -10px;
}

.menu-opened .mobile-slide span {
    background: transparent;
}

.menu-opened .mobile-slide span:before,
.menu-opened .mobile-slide span:after {
	top: 0;
}

.menu-opened .mobile-slide span:before {
	transform: rotate(-45deg);
}

.menu-opened .mobile-slide span:after {
	transform: rotate(45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: 5;
    padding-top: 90px;
}

.mobile-menu a {
    display: block;
    padding: 15px 30px;
    border-bottom: 1px solid #666;
    color: #fff;
    font-size: 18px;
}

.mobile-menu ul li.submenu-opened > a,
.mobile-menu ul li.current-menu-item > a {
    color: var(--yellow);
}

.mobile-menu ul ul {
    display: none;
}

.mobile-menu ul ul.sub-menu li a {
    padding-left: 50px;
    position: relative;
}

.mobile-menu ul ul.sub-menu li a:before {
    content: "-";
    display: inline-block;
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Content Styles
--------------------------------------------------------------*/

.section {
	padding: 80px 0;
	position: relative;
}

.section-sm {
	padding: 40px 0;
}

.dark-bg {
	background-color: var(--dark-color);
}

.bg-cover {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.home-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-banner iframe {
	width: 110%;
	height: 110%;
	position: absolute;
	top: -5%;
	left: -5%;
	object-fit: cover;
}

.home-intro {
	text-align: center;
	color: #fff;
}

.home-intro h1 {
	margin-bottom: 0;
}

.home-intro p {
	font-size: 24px;
}

.home-featured {
	margin: 0;
}

.home-featured .col3 {
	padding: 0;
}

.featured-card {
	position: relative;
	height: 450px;
}

.featured-card:before,
.property-banner:before,
.property2-seo:before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 40%;
	z-index: 3;
	content: "";
}

.featured-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.featured-content {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	text-align: center;
	z-index: 5;
	color: #fff;
}

.featured-card .button {
	transform: scaleY(0);
}

.featured-card:hover .button {
	transform: scaleY(1);
}

.cta1-heading h2 {
	margin-bottom: 0;
	text-align: center;
	color: #fff;
}

.cta1-content:before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--base-color);
	opacity: 50%;
	z-index: 3;
	content: "";
}

.cta1-content .inner {
	position: relative;
	z-index: 5;
	color: #fff;
}

.cta1-card {
	background-color: rgba(252, 186, 83, 0.75);
	text-align: center;
	padding: 100px 50px;
	position: relative;
}

.cta1-card:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 94%;
	height: 92%;
	border: 1px solid #fff;
	transform: translate(-50%, -50%);
	content: "";
}

.cta1-card h2 {
	font-size: 56px;
	margin-bottom: 30px;
}

.cta1-card h4,
.cta1-card p {
	color: var(--base-color);
}

.cta1-card p {
	font-size: 36px;
	font-weight: 600;
}

.cta2-card {
	background-color: rgba(1, 112, 185, 0.8);
	padding: 60px 50px;
	color: #fff;
}

.cta2-card h2 {
	color: var(--yellow);
}

.home-awards.section {
	padding-top: 0;
	text-align: center;
}

.home-awards h2 {
	font-size: 48px;
	margin-bottom: 0;
	padding: 50px 0;
}

.testimonial {
	border: 1px solid var(--base-color);
	position: relative;
	height: 100%;
	padding: 30px 40px;
}

.star-rating {
	margin-bottom: 20px;
}

.star {
	color: var(--yellow);
	font-size: 28px;
}

.testimonial h4 {
	margin-bottom: 5px;
}

.title {
	font-size: 16px;
	color: #777;
}

.property-banner {
	padding: 300px 0 100px;
	position: relative;
}

.property-banner::before {
	opacity: 0.2;
}

.property-banner .inner {
	position: relative;
	z-index: 5;
}

.property-banner h1 {
	max-width: 700px;
	color: #fff;
	margin: 0 auto;
	text-align: center;
}

.property-banner p {
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    padding-top: 10px;
}

.property-seo-content {
	max-width: 1140px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

.property-seo-content p {
	margin-bottom: 40px;
}

.page-template-about .property-seo-content p {
    margin-bottom: 0;
}

.property-seo-content h2 strong,
.property-seo-content h3 strong,
.property-seo-content p strong {
    color: var(--yellow);
}

.property-seo-content p a {
    color: #fff;
    text-decoration: underline;
}

.property-content {
	padding: 15px 30px;
}

.property-content .cwrap {
	margin: 0 -15px;
	padding: 15px 0;
}

.property-content .col4,
.property-content .col34 {
	padding: 0 15px;
}

.property-img {
	position: relative;
	height: 100%;
}

.property-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.property-text {
	background-color: #edeceb;
	padding: 50px 30px;
}

.pcontent1 .property-text {
	padding: 100px 80px;
}

.about-map .cwrap {
    padding-top: 30px;
}

.about-map .col img {
    width: 100%;
    max-width: none;
}

.team-section {
    text-align: center;
}

.team-section-alt {
    background-color: #f2f2f2;
}

.team-section h2 {
    margin-bottom: 30px;
}

.team-image {
    display: inline-block;
    padding: 10px;
}

.gallery-left {
    position: sticky;
    top: 20px;
}

.gallery-left img {
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-content .col:last-child .cols {
    margin: 0 -10px;
}

#lightgallery {
    padding-top: 20px;
}

.page-template-galleries #lightgallery {
    padding-top: 0;
}

.gallery-content .col3 {
    padding: 0 10px 20px;
}

.gallery-image {
    height: 166px;
    cursor: pointer;
}

.property-section {
    text-align: center;
}

.property-section-alt {
    background-color: #f2f2f2;
}

.property-section h2 {
    margin-bottom: 30px;
}

.properties .col4 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.prop-image {
    display: block;
    height: 260px;
}

.properties a {
    color: var(--base-color);
    text-decoration: none;
}

.prop-details h3 {
    font-size: 22px;
    padding-top: 10px;
}

.process {
    padding-left: 60px;
    padding-right: 60px;
}

.process-header a {
    display: inline-block;
    padding-top: 30px;
    font-weight: 600;
    position: relative;
    color: #999;
    text-decoration: none;
}

.process-header a.active-process {
    color: var(--yellow);
}

.process-header a:before {
    width: 10px;
    height: 10px;
    border: 2px solid #777;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    content: "";
}

.process-header a.active-process:before {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.process-container {
    padding-top: 50px;
}

.process-content {
    height: 60vh;
    position: relative;
    background-color: #f2f2f2;
    display: none;
}

#process-0 {
    display: block;
}

.process-content .cols {
    margin: 0;
}

.process-content > div,
.process-content .col23,
.process-content .col3 {
    position: relative;
    height: 100%;
}

.process-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.process-content .col3 {
    display: flex;
    align-items: center;
}

.process-text {    
    text-align: center;
    padding: 0 40px;
}

.blog-content .col3 {
    padding-bottom: 40px;
}

.blog-image {
    height: 300px;
    position: relative;
    margin-bottom: 20px;
}

.blog-image a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-details h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-date {
    color: #777;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.blog-details p {
    margin-bottom: 10px;
}

.read-more {
    font-size: 14px;
    text-decoration: underline;
}

.pagination {
	padding-top: 30px;
	text-align: center;
	display: block;
	width: 100%;
}

.nav-links a,
.nav-links span {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f2f2f2;
    border: 1px solid var(--dark-color);
    text-align: center;
    margin: 0 4px;
}

.nav-links span.current,
.nav-links a:hover {
    background-color: var(--dark-color);
    color: #fff;
}

.video-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-holder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property2-banner {
    text-align: center;
}

.property2-banner h1 {
    max-width: 1000px;
    margin-bottom: 30px;
}

.property2-seo::before {
    opacity: 60%;
}

.property2-seo .inner {
    position: relative;
    z-index: 10;
}

.property2-seo .property-seo-content {
    text-align: left;
}

.additional-content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.site-content ul,
.site-content ol {
    padding: 0 0 20px 20px;
}

.site-content ul li,
.site-content ol li {
    list-style: disc outside none;
    line-height: 1.4;
    margin-bottom: 8px;
}

.site-content ol li {
    list-style-type: decimal;
}

.vision-image {
    height: 500px;
}

.vcontent2 {
    background-color: var(--dark-color);
    color: #fff;
}

.vcontent2 a,
.cta2-card a {
    color: #fff;
}

.vision-seo {
    background-color: #32588B;
}

.vision-seo-inner {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.contact-links {
    padding-top: 20px;
}

.contact-link {
    margin-bottom: 15px;
}

.contact-link a {
    color: var(--dark-color);
    text-decoration: none;
    justify-content: start;
    gap: 15px;
}

.contact-link a:hover {
    color: var(--yellow);
}

.contact-link svg {
    width: 24px;
    height: 24px;
}

.wpcf7 label {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.wpcf7 label span {
    color: #ff0000;
}

.contractors-form {
    max-width: 1000px;
    margin: 0 auto;
}

.wpcf7 label span.wpcf7-list-item-label {
    color: var(--dark-color);
    font-weight: 400;
}

.wpcf7-list-item {
    margin: 0 20px 0 0;
}

.contractors-form input[type="submit"] {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/

.site-footer {
    background-color: #363534;
    padding: 40px 0;
    color: #fff;
}

.site-footer h4 {
    padding-bottom: 20px;
    position: relative;
}

.site-footer h4:after {
    width: 50px;
    height: 1px;
    background-color: #fff;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
}

.site-footer .cwrap {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-menu ul.menu {
    overflow: hidden;
    padding-left: 20px;
}

.footer-menu ul.menu > li {
	float: left;
	width: 48%;
	list-style: disc outside none;
	line-height: 1.4;
	margin-bottom: 4px;
}

.footer-menu .col:first-child ul.menu > li:nth-child(2n+2) {
    float: right;
}

.site-footer .col:last-child .footer-menu ul.menu > li {
    width: 30%;
    margin-right: 5%;
}

.site-footer .col:last-child .footer-menu ul.menu > li:last-child {
    float: left;
}

.site-footer .col:last-child .footer-menu ul.menu > li:nth-child(3n+3) {
    float: left;
    margin-right: 0;
}

.footer-menu ul.menu > li ul {
    padding-left: 20px;
}

.footer-menu ul.menu > li ul li {
    list-style-type: circle;
}

.footer-menu a {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.footer-menu a[href="#"] {
    pointer-events: none;
    text-decoration: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 40px;
}

.footer-social a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social a svg,
.footer-social a svg path {
    fill: var(--dark-color);
}

.copyright {
    background-color: #292929;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    color: #fff;
    font-size: 15px;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/

@media screen and (max-width : 1480px) {
	.site-branding img {
	    max-width: 200px;
    }

    .laptop-column .col4 {
        flex: 1 1 33.33%;
        max-width: 33.33%;
    }

    .cta1-card h2 {
        font-size: 48px;
    }

    .story-intro p {
        font-size: 20px;
    }

    .site-menu ul.menu > li > a {
        font-size: 14px;
    }
}

@media screen and (max-width : 1320px) {
	.site-branding img {
	    max-width: 180px;
    }
    
    .site-menu ul.menu > li > a {
        font-size: 13px;
    }
}

@media screen and (max-width : 1050px) {
	.site-menu {
        display: none;
    }

    .site-menu ul.menu {
        display: block;
    }

    .site-menu ul.menu > li > a {
        display: block;
        font-size: 16px;
        padding: 15px 20px;
    }

    .mobile-slide {
        display: block;
    }

    .featured-card .button {
        transform: scaleY(1);
    }

    .tablet-column .col,
    .tablet-column .col4,
    .tablet-column .col34,
    .tablet-column .col3,
    .tablet-column .col23 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .laptop-column .col4 {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .tablet-column .col3,
    .tablet-column .col23 {
        padding: 0;
    }

    .tablet-column #lightgallery .col3 {
        flex: 1 1 33.33%;
        max-width: 33.33%;
        padding: 0 10px 20px;
    }

    .process-text {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .process-content {
        height: auto;
    }

    .process-image {
        height: 260px;
        position: static;
    }

    .property-img {
        aspect-ratio: 1/0.5;
    }

    .pcontent2 .col34 {
        order: 1;
    }

    .pcontent1 .property-text {
	    padding: 50px 30px;
    }

    .pcontent2 .col4 {
        order: 2;
    }

    .tablet-column .col:first-child {
        padding-bottom: 50px;
    }

    .home-cta2.tablet-column .col:first-child {
        padding-bottom: 0;
    }

    .home-awards-logos .col6 {
        flex: 1 1 33.33%;
        max-width: 33.33%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .home-banner {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
    }

    .home-banner iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width : 767px) {
    .site-header {
        position: relative;
    }
    
    .inner {
        padding: 0 15px;
    }

	.site-branding img {
        max-width: 120px;
    }

    .mobile-column .col,
    .mobile-column .col3,
    .laptop-column .col4 {
        flex: 1 1 100%;
        max-width: 100%;
        padding-bottom: 20px;
    }

    .mobile-column .col:first-child {
        padding-bottom: 20px;
    }

    .mobile-column .col3:last-child,
    .laptop-column .col4:last-child {
        padding-bottom: 0;
    }

    .site-footer.mobile-column .col {
        padding-left: 0;
        padding-right: 0;
    }

    .home-featured .col3 {
        padding-bottom: 0;
    }

    .featured-card {
        height: 280px;
    }

    .section {
        padding: 30px 0;
    }

    .cta1-card {
        padding: 40px 20px;
    }

    .cta2-card,
    .testimonial {
        padding: 20px;
    }

    .home-awards-logos .cwrap {
        margin: 0 -10px;
    }

    .home-awards-logos .col6 {
        padding: 10px;
        flex: 1 1 50%;
        max-width: 50%;
    }

    .mobile-menu {
        padding-top: 80px;
    }

    .mobile-menu a {
        padding: 15px 20px;
    }

    .footer-menu {
        display: none;
    }

    .footer-menu ul.menu > li {
        float: none;
        width: 100%;
        padding: 2px 0;
    }

    .site-footer .col:last-child .footer-menu ul.menu > li {
        width: 48%;
        margin-right: 0;
        float: left;
    }

    .site-footer .col:last-child .footer-menu ul.menu > li:nth-child(2n+2) {
        float: right;
    }

    .site-footer h4 {
        border-bottom: 1px solid #555;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .site-footer .footer-menu-opened h4 {
        color: var(--yellow);
    }

    .site-footer h4::after {
        display: none;
    }

    .site-footer h4:before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid currentColor;
        content: "";
        position: absolute;
        right: 0;
        top: 5px;
    }

    .property-banner {
        padding: 80px 0 40px;
    }

    .property-content {
	    padding: 15px 20px;
    }

    .pcontent1 .property-text,
    .property-text {
        padding: 15px;
    }

    .process {
        padding-left: 15px;
        padding-right: 15px;
    }

    .tablet-column #lightgallery .col3 {
        flex: 1 1 50%;
        max-width: 50%;
    }

    h1,
    .cta1-card h2 {
	    font-size: 32px;
    }

    h2,
    .home-awards h2 {
	    font-size: 28px;
    }

    h3,
    .cta1-card p {
	    font-size: 24px;
    }

    h4,
	.home-intro p {
	    font-size: 18px;
    }

    body {
        font-size: 16px;
    }

    .process-header a {
        font-size: 14px;
    }
}