/*
	Theme Name: Uveloped Theme
	Theme URI: https://uveloped.com
	Description: Custom theme developed by Uveloped.
	Version: 1.4.3
	Author: Uveloped
	Author URI: https://uveloped.com
*/
/*-------------------------------
		Colors & Variables
--------------------------------*/
:root {
  --primary: #12274B;
  --secondary: #48A9A6;	
  --green: #48A9A6;
  --gray: #F2EFEF;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/*-------------------------------
		Typography
--------------------------------*/
body {
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	line-height: 1.3;
	font-weight: normal;
	color: var(--primary);
}
h1, .h1 {
	font-size: 122px;
	font-weight: 500;
	line-height: 1;
}
h2, .h2 {
	font-size: 60px;
	font-weight: 500;
	line-height: 1.1;
}
h3, .h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.1;
}
h4, .h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}
h5, .h5 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.1;
}
h6, .h6 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.1;
}
p {
	margin-bottom: 1.5rem;
}
p.large {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.43;
}
a {
	color: var(--primary);
}
.bg-primary a {
	color: #fff;
}
.bg-primary a.btn{
	border-width: 2px;
}
a.underline {
	text-decoration: underline;
}
a.disabled {
	pointer-events: none;
}
a:hover {
	text-decoration: unset;
}
a:not(.btn):not(.social-link):not(.nav-link):not(.read-more):hover {
	color: var(--green) !important;
}
hr {
	border-color: var(--primary);
}
ul {
	padding-left: 20px;
}
.title-large {
	font-size: 40px;
}

/*-------------------------------
		Buttons
--------------------------------*/
.btn {
	position: relative;
    font-weight: 600 !important;	
    text-transform: uppercase;	
    border-radius: 35px;
	overflow: hidden;
	z-index: 10;
}
.btn:after {
    content: "";	
	position: absolute;
    bottom: 0;
    left: -10%;	
    width: 0;	
    height: 120%;
	background: var(--primary);
    transition: 0.3s;	
    transform: skewX(-35deg);
    z-index: -1;
}
.btn:hover:after {
    left: -10%;
    width: 120%;
}
.btn-secondary {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
	border-width: 0;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;	
	box-shadow: none !important;
}
.btn-lg {
    font-size: 16px;
    font-weight: 500;
    padding: 13px 30px;
    min-width: 200px;
}
.btn-outline-primary {
    color: var(--primary);
    background-color: transparent;
    background-image: none;
	border-width: 2px;
    border-color: var(--primary);
}
.btn-outline-primary:hover {
	color: #fff;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: transparent;
    border-color: var(--primary) !important;
	box-shadow: none !important;
}

/*-------------------------------
		Header & Navbar
--------------------------------*/
header.header {
	width: 100%;
    border-bottom: 1px solid var(--primary);
	background: #fff;
	z-index: 1000;
	top: -200px;
}
header.scroll {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	transition: top .4s ease-in-out;
}
header .navbar{
	padding: 0;
}
.navbar-brand {
    background: var(--primary);
    padding: 50px 20px;
    margin-right: 30px;
}
.navbar-brand img {
	max-width: 170px;
}
header.scroll .navbar-brand {
	padding: 25px 20px;
}
header.scroll .navbar-brand img {
	max-width: 150px;
}
header .navbar .nav-item {
	padding: 0 1rem;
}
header .navbar .nav-link {
    position: relative;
    padding: 0.5rem 0 !important;
    font-size: 16px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--primary) !important;
}
header .navbar .nav-link:after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;	
}
header .navbar .nav-link:hover:after,
header .navbar .nav-item.active .nav-link:after {
    width: 100%;
}
header .nav-buttons .btn-phone {
    margin-right: 10px;
}
.call-to-action .bottom-text p {
    display: inline-block;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
	letter-spacing: 0.4px;
}
.call-to-action {
    display: inline-block;
}
header .btn-phone{
	font-weight: bold;
}
header .btn-phone .fa-phone {
    transform: rotate(90deg);
	margin-right: 5px;
}
.navbar-toggler {
	border: none !important;
	outline: none !important;
}
.navbar .navbar-toggler span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
	border-radius: 10px;
    background: var(--primary);
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
 
.navbar .navbar-toggler:hover span,
.navbar .navbar-toggler:focus span {
    background: #000;
}
 
/* rotate first span */
.navbar .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(8px, 8px);
}
 
/* hide second span */
.navbar .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}
 
/* rotate third span */
.navbar .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}
 
.navbar .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}
 
/*-------------------------------
		Footer
--------------------------------*/
footer {
	padding: 60px 0;
	background-color: var(--gray);
}
footer p {
	font-size: 16px;
	word-wrap: break-word;
}
footer a {
	font-size: 16px;
	color: var(--primary);
}
footer h4 {
	margin-bottom: 20px;
}
footer .footer-logo {
	padding: 30px 0;
}
footer .footer-logo img {
	max-width: 170px;
}
footer .footer-main {
	padding: 35px 0;
	border-top: 1px solid var(--primary);
	border-bottom: 1px solid var(--primary);
}
footer .footer-bottom {
	padding: 20px 0;
}
.footer-links li {
	margin-bottom: 3px;
}
.footer-links a {
	text-transform: uppercase;
}
footer a.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    font-size: 27px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
}
footer a.social-link:hover {
	text-decoration: none;
}

/*-------------------------------
		Components
--------------------------------*/	

/*** Quote Text *****/
div.quote {
    position: relative;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.33;
}
div.quote:before {
    content: "";
    display: block;
    width: 100%;
    height: 65px;
    margin-bottom: 15px;
    background-image: url('assets/img/quote-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}


/*** Video Player ***/
.video-wrapper {
	position: relative;
	max-width: 1300px;
	margin: auto;
	padding-bottom: 56.25%;
}
.video-wrapper:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--primary);
	opacity: 0.75;
}
.video-wrapper .play {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: auto;
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    cursor: pointer;
	caret-color: transparent;
	z-index: 100;
}
.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	z-index: -1;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-wrapper.video-loaded img,
.video-wrapper.video-loaded .play {
	display: none;
}

/*** Two Rectangle Images ***/
.two-rect-images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 50px;
}
.two-rect-images img {
    width: 50%;
	object-fit: contain;
}
.two-rect-images img:first-child {
	margin-top: 25%;
    margin-right: 13px;	
}

/**** Pagination ****/
.pagination .pages {
	margin: 0 30px;
}
.pagination .pages .page-numbers {
	display: inline-block;
	margin: 0 10px;
}

/** cookies banner **/
#cookieBanner{
	margin-bottom: -100%;
	transition: margin-bottom .6s ease-in-out;
}
#cookieBanner.show{
	margin-bottom: 0;
}
#cookieBanner .rich-text a{
	text-decoration: underline;
}

/** annimations **/
@keyframes fadeIn { 
  0% {
  	opacity: 0;
    transform: scale(0.95);
  }
  100% {
  	opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/** reveal **/
.reveal{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .6s ease-in-out, transform .4s ease-in-out;
}
.reveal.inview{
	opacity: 1;
	transform: translateY(0);
}


/*-------------------------------
		Utility
--------------------------------*/	
.z-10 {
	z-index: 10;
}
.z-100 {
	z-index: 100;
}
.z-1000 {
	z-index: 1000;
}
.bg-gray {
	background-color: var(--gray);
}
.bg-primary {
	color: #fff;
	background-color: var(--primary) !important;
}
.bg-green {
	color: #fff;
	background-color: var(--green) !important;
}

/**********************************************

	Section Styles

***********************************************/
.section {
	position: relative;
	padding: 80px 0;
}
.section h2 {
	margin-bottom: 30px;
}

/*-------------------------------
		Hero Section
--------------------------------*/
.section-hero p {
	max-width: 620px;
}
.section-hero h1 {
	margin-top: 80px;
}
.section-hero h2 {
	margin-bottom: 20px;
}

/*-------------------------------
		Quote Section
--------------------------------*/


/*------------------------------------
		Image & Description Section
--------------------------------------*/
.section-image-description {
	padding: 0;
}
.section-image-description .description {
	padding: 200px 0 200px 80px;
}
.section-image-description .description p {
	max-width: 700px;
}
.section-image-description .image img {
    position: absolute;
    width: calc(100%);
    left: calc(50vw - 709px);
    height: 100%;
    object-fit: cover;
}

/*-------------------------------
		Features Section
--------------------------------*/
.section-features .feature-card {
    padding: 25px 20px 10px;
    border: 1px solid var(--primary);
    background: var(--gray);
    text-align: center;
    min-height: 250px;
    margin: 8px;
}
.section-features .feature-card img {
	
}
.section-features .feature-card .feature-title {
	position: relative;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.3;
}
.section-features .feature-card .feature-title:before {
    content: "";
    position: relative;
    display: block;
    width: 45px;
    height: 3px;
    background: var(--green);
    margin: 20px auto 10px;
}

@media (min-width: 1151px) {
	.section-features .col-lg {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}	
}
@media (max-width: 1350px) and (min-width: 992px) {
	.section-features .feature-card	{
		min-height: 300px;
	}
}
@media (max-width: 1150px) and (min-width: 992px) {
	.section-features .col-lg {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}	
	.section-features .w-100 {
		display: none !important;
	}
}

/*-------------------------------
		Home Hero Section
--------------------------------*/
.section.section-home-hero {
	padding-bottom: 200px;
}
.section-home-hero h1 {
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
}
#home-hero-slider img:not(:first-child) {
	display: none;
}
#home-hero-slider.slick-slider img:not(:first-child) {
	display: block;
}
#home-hero-slider .slick-arrow {
    position: absolute;
    bottom: 0;
    caret-color: transparent;	
    cursor: pointer;
	z-index: 100;
}
#home-hero-slider .next.slick-arrow {
    right: 0px;
}
#home-hero-slider .prev.slick-arrow {
    right: 62px;
}
#home-hero-slider .slick-arrow svg {
	display: block;
    width: 60px;
    height: 60px;
	padding: 17px;
    text-align: center;
    fill: #fff;
    background: var(--primary);	
    transition: 0.3s;	
}
#home-hero-slider .slick-arrow i {
    background: var(--primary);
    font-size: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}
#home-hero-slider .slick-arrow svg:hover {
	background-color: var(--gray);
	fill: var(--primary);	
}
#home-hero-slider .slick-arrow i:hover {
	background-color: var(--gray);
	color: var(--primary);
}

/*-------------------------------
		Home Location Section
--------------------------------*/
body:not(.page-template-template-home-new) .section-home-location {
    padding-bottom: 350px;
}

/*-------------------------------
		Home Location Section
--------------------------------*/
.section-home-video {
    position: relative;
    padding: 0;
    margin-top: -300px;
    z-index: 10;
}
body:not(.page-template-template-home) .section-home-video {
    margin-top: 0;
    padding: 80px 0 0;
}

/*-------------------------------------
		Home Content Slider Section
--------------------------------------*/
.section-home-slider {

}
#home-content-slider .home-slide:not(:first-child) {
	display: none;
}
#home-content-slider.slick-slider .home-slide:not(:first-child) {
	display: flex;
}
#home-content-slider .slick-track {
	display: flex !important;
}
#home-content-slider .home-slide {
    display: flex;
    flex-wrap: wrap;
	height: inherit !important;
	border: 1px solid;
}
#home-content-slider .home-slide .image {
	width: 40%;
	margin: -1px;
}
#home-content-slider .home-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#home-content-slider .home-slide .description {
	width: 60%;
	padding: 80px;
}
#home-content-slider .home-slide .description h6 {
	font-weight: normal;
}
#home-content-slider .home-slide .description ul {
    list-style: "-";
    padding-left: 10px;
    margin-top: 25px;
}
#home-content-slider .home-slide .description ul li {
    padding-left: 5px;
    margin-bottom: 15px;
    font-size: 16px;
}
#home-content-slider .slick-arrow {
    position: absolute;
    bottom: 25px;
    cursor: pointer;
	z-index: 100;
}
#home-content-slider .next.slick-arrow {
    right: 30px;
}
#home-content-slider .prev.slick-arrow {
    right: 90px;
}
#home-content-slider .slick-arrow i {
    color: var(--primary);
    border-radius: 50%;
    border: 1px solid;
    font-size: 20px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
	transition: 0.3s;
}
#home-content-slider .slick-arrow i:hover {
	background-color: var(--primary);
	color: #fff;
}

#home-content-slider .slick-arrow svg {
    fill: var(--primary);
    border-radius: 50%;
    border: 1px solid;
	display: block;
    width: 40px;
    height: 40px;
	padding: 11px;
    text-align: center;
	transition: 0.3s;
}
#home-content-slider .slick-arrow svg:hover {
	background-color: var(--primary);
	fill: #fff;
}

/*---------------------------------------
		Office Space - Workplace Section
----------------------------------------*/
.section-workplace {
	margin-top: -180px;
	padding-bottom: 120px;
}
.section-workplace:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 280px;
	background: #fff;
	z-index: 0;
}
.section-workplace .workplace-grid {
	position: relative;
	z-index: 10;
}
.section-workplace .workplace-grid-item {
	position: relative;
	padding: 100px 20px;
	text-align: center;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-workplace .workplace-grid-item:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: var(--primary);
	opacity: 0;
	transition: 0.3s;
}
.section-workplace .workplace-grid-item .workplace-name {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
}
.section-workplace .workplace-grid-item .workplace-location {
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
}
.section-workplace .workplace-grid-item a {
	display: inline-block;
	margin-top: 35px;
	font-size: 16px;
	font-weight: 500;
}
.section-workplace .workplace-grid-item .workplace-name,
.section-workplace .workplace-grid-item .workplace-location,
.section-workplace .workplace-grid-item a {
	position: relative;
	opacity: 0;
	transition: 0.3s;
	z-index: 20;
}
.section-workplace .workplace-grid-item:hover:before {
	opacity: 0.75;
}
.section-workplace .workplace-grid-item:hover .workplace-name,
.section-workplace .workplace-grid-item:hover .workplace-location,
.section-workplace .workplace-grid-item:hover a {
	color: #fff;
	text-decoration: none;
	opacity: 1;
}

/*---------------------------------------
		Availability - Property Section
----------------------------------------*/
.section-property .property {
	padding: 50px 35px;
	background: #fff;
	box-shadow: 3px 3px 15px #00000021;
}
.section-property .property:not(:last-child) {
	margin-bottom: 60px;
}
.section-property .property .property-name {
	padding-bottom: 10px;
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	border-bottom: 1px solid var(--primary);
	display: flex;
    justify-content: space-between;
}
.section-property .property .property-name .availability-info {
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: normal;
    color: #48A9A6;
    gap: 7px;
}
.section-property .property .property-name .availability-info i {
    font-size: 20px;
}

/*---------------------------------------
		News Section
----------------------------------------*/
.section-news {
	margin-bottom: 100px;
}
.news-item {
	box-shadow: 3px 3px 15px #00000021;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.news-item .featured-image {
	position: relative;
	padding-top: 56.25%;
}
.news-item .featured-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-item .news-detail {
	padding: 25px 25px 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.news-item .news-detail p {
	font-size: 16px;
}
.news-item .news-detail .news-footer{
	margin-top: auto;
}
.news-item .news-detail a.read-more {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}
.news-item .news-detail a.read-more:after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    background: var(--secondary);
    transition: 0.3s;
}
.news-item .news-detail .title a:hover,
.news-item .news-detail a.read-more:hover {
	color: var(--primary);
	text-decoration: none;	
}
.news-item .news-detail a.read-more:hover:after {
	width: 100%;
}

/*---------------------------------------
		Single Post
----------------------------------------*/
.section-post-header {
	padding: 90px 0;
	border-bottom: 1px solid;
}
.section-post-header .post-meta {
	font-size: 16px;
}
.section-post-content {
	padding: 30px 0;
	max-width: 1000px;
	margin: auto;
}
.section-post-content .short-description {
	font-size: 24px;
	font-weight: 500;
}
.section-related-posts {
	padding: 50px 0 100px;
    border-top: 1px solid;	
}

/*---------------------------------------
		Contact - Contact Section
----------------------------------------*/
.section-contact-form {
	margin-bottom: 200px;
}
.section-contact-form .gform_title {
	display: none;
}
.gform_wrapper .gfield_required,
.gform_required_legend {
	display: none !important;
}
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme .gfield-choice-input+label {
	font-weight: normal !important;
	text-transform: uppercase;
}
.gform_wrapper.gravity-theme .gfield input, 
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
    border: none !important;
	outline: none;
	padding: 13px 15px !important;
}
.gform_wrapper.gravity-theme .gfield input[type=checkbox] {
	width: 20px;
	height: 20px;
}
.gform_wrapper.gravity-theme .gfield-choice-input+label {
	transform: translate(10px, 2px);
}
.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 200px !important;
}
.gform_footer {
	margin-top: 20px !important;
}
.section-features .description {
    text-align: center;
}
.section-features .description .sub-title {
    text-transform: uppercase;
    margin-bottom: 10px;
}

/*-------------------------------
		Responsive Styles
--------------------------------*/
@media (min-width: 1500px) {
	.container {
		max-width: 1400px;
	}
	.section-quote {
		padding-bottom: 130px;
	}
	.section-features h2 {
		font-size: 32px;
		max-width: 50%;
		margin: 0 auto;
	}	
}

@media (max-width: 1499px) and (min-width: 992px) {
	.container {
		max-width: 100%;
		padding: 0 50px;
	}
	.section-image-description .image img {
		position: relative;
		left: 0;
		margin-left: 50px;
	}
}

@media (max-width: 1400px) {
	h1, .h1 {
		font-size: 80px;
	}
	h2, .h2 {
		font-size: 50px;
	}
	.navbar-brand {
		padding: 40px 20px;
		margin-right: 20px;
	}
	.navbar-brand img {
		max-width: 130px;
	}
	header.scroll .navbar-brand {
		padding: 20px 20px;
	}
	header.scroll .navbar-brand img {
		max-width: 110px;
	}	
	header .navbar .nav-item {
		padding: 0 0.5rem;
	}
	header .navbar .nav-link {
		font-size: 14px;
	}
	.btn-lg {
		font-size: 14px;
		padding: 13px 15px;
		min-width: 150px;
	}

	#home-content-slider .home-slide .image {
		width: 45%;
	}
	#home-content-slider .home-slide .description {
		width: 55%;
		padding: 50px;
	}
	.section-image-description .description {
		padding: 150px 0 150px 50px;
	}	

}

@media (max-width: 1200px) {
	header.header .container {
		padding: 0;
		max-width: 100%;
	}
	
	.two-rect-images {
		padding-right: 30px;
	}
	.section-quote-box div.quote {
		font-size: 26px;
	}
	.section-workplace {
		margin-top: -130px;
		padding-bottom: 120px;
	}
}
@media (max-width: 991px) {
	h1, .h1 {
		font-size: 65px;
	}
	h2, .h2 {
		font-size: 40px;
	}	
	h3, .h3 {
		font-size: 28px;
	}		
	div.quote {
		font-size: 28px;
	}	
	.title-large {
		font-size: 30px;
	}	
	.container {
		max-width: 100%;
		padding: 0 35px;
	}	
	.navbar-toggler {
		padding: 0.25rem 1rem 0.25rem 0.75rem;
	}	
	.navbar-collapse {
		padding: 30px 20px;
		border-top: 1px solid;
	}
	header .navbar .nav-link {
		display: inline-block;
		padding: 13px 0 !important;
		font-size: 16px;
	}
	header .nav-buttons {
		margin-top: 20px;
	}
	header .nav-buttons .btn {
		width: 100%;
	}
	footer .footer-column {
		width: 100%;
		flex-basis: auto;
	}
	.section-hero h1 {
		margin-top: 50px;
	}	
	.section-image-description .description {
		padding: 100px 0 100px 35px;
	}	
	.section-image-description .image img {
		position: relative;
		left: 0;
		margin-left: 35px;
	}	
	.section-workplace {
		margin-top: 0px;
		padding-bottom: 120px;
	}	
	.section-contact-form {
		margin-bottom: 100px;
	}
	.section-property .property .property-name {
		flex-direction: column;
		gap: 10px;
	}
	
}
@media (max-width: 991px) and (min-width: 768px){
	.section.section-home-hero .buttons .btn-lg {
		padding: 13px 8px;
	}
}

@media (max-width: 767px) {
	p.large {
		font-size: 22px;
	}		
	.title-large {
		font-size: 26px;
	}		
	.section {
		position: relative;
		padding: 50px 0;
	}
	.section.section-home-hero {
		padding-bottom: 50px;
	}
	.section-home-hero h1 {
		position: relative;
		bottom: 0;
	}
	.section-home-video {
		margin-top: 0;
	}
	#home-content-slider .home-slide .description {
		padding: 35px 30px 50px;
	}	
	.section-hero h1 {
		margin-top: 0;
	}	
	.section-image-description .description {
		padding: 0;
	}	
	.section-image-description .image img {
		margin-left: 0;
		margin-top: 30px;
		height: 60vw;
	}
	.section-location .col-md-7 img {
		margin-left: 0;
		margin-top: 30px;
		height: 60vw;
	}
	.section-property .property {
		padding: 30px 10px;
	}
	.section-property .property .property-name {
		font-size: 30px;
	}
	.section-property .property .property-name .availability-info {
		font-size: 16px;
	}
	.section-property .property .property-name .availability-info i {
		font-size: 18px;
	}
	.section-property .property:not(:last-child) {
		margin-bottom: 30px;
	}
	.section-post-header {
		padding: 50px 0;
	}
	.section-post-content .short-description {
		font-size: 20px;
	}	
}

@media (max-width: 576px) {
	h1, .h1 {
		font-size: 36px;
	}
	h2, .h2 {
		font-size: 24px;
	}
	h3, .h3 {
		font-size: 20px;
	}
	p.large {
		font-size: 20px;
	}	
	.btn-lg {
		width: 100%;
	}
	header .btn-lg {
		width: auto;
	}
	.container {
		padding: 0 20px;
	}	
	.navbar-brand {
		padding: 30px 15px;
		margin-right: 0;
	}	
	.navbar-brand img {
		max-width: 100px;
	}
	header.scroll .navbar-brand {
		padding: 20px 15px;
	}
	header.scroll .navbar-brand img {
		max-width: 85px;
	}	
	.navbar-toggler {
		padding: 0.25rem 1rem 0.25rem 0.75rem;
	}
	footer {
		padding: 30px 0;
	}	
	footer .footer-logo img {
		max-width: 150px;
	}
	footer .footer-bottom {
		padding: 30px 0;
		flex-direction: column-reverse;
		align-items: flex-start !important;
	}
	footer .footer-bottom p {
		margin-bottom: 5px;
	}
	footer h4 {
		font-size: 18px;
	}	
	
	.two-rect-images {
		padding-right: 14px;
	}
	div.quote {
		font-size: 24px;
	}
	.video-wrapper .play {
		width: 40px;
		height: 40px;
		font-size: 40px;
		line-height: 40px;
	}
	.section {
		padding: 30px 0;
	}
	body:not(.page-template-template-home) .section-home-video{
		padding: 30px 0;
	}
	.section.section-home-hero {
		padding-bottom: 30px;
	}
	#home-hero-slider .slick-arrow svg {
		width: 40px;
		height: 40px;
		padding: 10px;
	}	
	#home-hero-slider .prev.slick-arrow {
		right: 42px;
	}	
	.section.section-home-slider {
		padding-top: 10px;
	}
	#home-content-slider .slick-arrow {
		bottom: unset;
		top: 13px;
	}
	#home-content-slider .prev.slick-arrow {
		right: 60px;
	}
	#home-content-slider .next.slick-arrow {
		right: 20px;
	}	
	#home-content-slider .slick-arrow i {
		font-size: 15px;
		line-height: 30px;
		width: 30px;
		height: 30px;
	}
	#home-content-slider .slick-arrow svg {
		width: 30px;
		height: 30px;
		padding: 8px;
	}	
	#home-content-slider .home-slide {
		flex-direction: column-reverse;
	}
	#home-content-slider .home-slide .image {
		width: 100%;
	}
	#home-content-slider .home-slide .image img {
		height: 60vw;
	}
	#home-content-slider .home-slide .description {
		padding: 20px;
		width: 100%;
	}
	.section-contact-form {
		margin-bottom: 50px;
	}
	.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label {
		font-size: 13px !important;
	}	
}