/**
Theme Name: KingProp
Theme URI: https://sorvus.com/
Author: Sorvus Media
Version: 1.0.1
**/

/**
Fonts
**/
/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/montserrat-v29-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/montserrat-v29-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/montserrat-v29-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/**
Css Reset
**/
a, a:after, a:before{
	text-decoration:none;
	color:inherit;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
table {border-collapse: collapse;border-spacing: 0;}
* { box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
a {outline : none; color:inherit; text-decoration:none;}
a img {outline : none;}
img {border : 0; display:block;}
strong, b{	font-weight:600;}

/**
Root Variables
**/
:root{

	--clr_main:#A4791F;
	--clr_gray:#DFDFDF;
	--clr_lightgray:#EEEDED;
	--clr_darkgray:#636363;
	--clr_black:#000000;
	--page_wrapperPadding:80px;
	--page_innerPadding:40px;
}

::selection {
	background: var(--clr_main); /* WebKit/Blink Browsers */
	color: var(--clr_black);
}
::-moz-selection {
	color: var(--clr_black);
	background:  var(--clr_main); /* Gecko Browsers */
}


.mob_only{
	display:none;
}

/**
Variables
**/
body, html{
	font-family: 'Montserrat';
	font-weight: 400;
	font-style: normal;
	font-size:16px;
    color:var(--clr_black);
	background:#ffffff;
}

body{
	width:100%;
    overflow-x:hidden;
}


/**body:before{
    position: fixed;
    top:0; right:0;
    bottom:0; left:calc(5% + var(--page_wrapperPadding));
    width:calc(90% - (var(--page_wrapperPadding)*2));
    background:
    linear-gradient(90deg, white 0, white 1px, transparent 0px), 
    repeating-linear-gradient(
      90deg, 
      var(--clr_lightgray) 0, var(--clr_lightgray) 1px, white 1px, white calc(100% / 3)
    ) 0 no-repeat;
    content: "";
    border-left:1px solid var(--clr_lightgray);
    border-right: 1px solid var(--clr_lightgray);
    box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;
}**/


.wrapper{
    width: 95%;
	max-width:1280px;
    display: block;
    margin:0 auto;
}


section{
	position:relative;
	float:left;
	width:100%;
}

section,
div{
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.error-page{
    font-size: 4em;
    font-weight: 700;
}
/**
Columns
**/
[class*="col-"] {
	float:left;
}

.col-D {width:3.5%;height:10px;}
.col-0 {width:31%;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-20 {width:20%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


/**
Grid
**/
[class*="grid-"] {
	display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}	

.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.grid-3{
    grid-template-columns: repeat(3, 3fr);
}
.grid-4{
    grid-template-columns: repeat(4, 1fr);
}
.grid-5{
    grid-template-columns: repeat(5, 1fr);
}

/**
Floats & Aligns
**/
.txt-center{
	text-align:center;
}

.txt-left{
	text-align:left;
}

.txt-right{
	text-align:right;
}

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.empty{
    min-height: 1px;
}

/**
Header
**/
header{
    position: relative;
    width:100%;
    float:left;
    margin:4vh 0px 10vh;
    z-index:1000;
}

.header{
    border:none;
    background: #fff;
    -webkit-box-shadow: -5px 10px 20px 0px rgba(238,237,237,1);
-moz-box-shadow: -5px 10px 20px 0px rgba(238,237,237,1);
box-shadow: -5px 10px 20px 0px rgba(238,237,237,1);
}

.full_body:before{
    content:"";
    position: absolute;
    top:0vh;
    left:0;
    right:0;
    height:0;
    background:rgba(238,237,237,1);
    opacity: 0;
    z-index: 1000;
    border-top: 0px solid #fff;
    -webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.full_body_cover:before{
    top:0px;
    opacity: 1;
    height:70vh;
}

.logo{
   padding:10px; 
}

.logo img{
    height:50px;
    width:auto;
}

.header_lang{
    position: relative;
    width:var(--page_wrapperPadding);
    height:70px;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 500;
    border-left:1px solid var(--clr_gray);
    box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.header_lang:hover{
    background:var(--clr_lightgray);
}

.header_main_nav{
    position: relative;
    height: 70px;
    padding: 10px 20px;
    line-height: 50px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    font-weight: 400;
    font-size: 0.9em;
}

.header_main_nav a:hover{
    color:var(--clr_main);
}

.nav_btn_header{
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.nav_btn_header span{
    float:left;
    display: inline-block;
    height:50px;
}

.nav_btn_header span:last-child{
    margin-left:10px;
}

.nav_btn_header svg{
    height:11px;
    width:auto;
}

.main_nav{
    position: absolute;
    left:0;
    right:0;
    top:30px;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.main_nav_active{
    opacity: 1;
    visibility: visible;
    top:0px;
}

.main_nav_header{
    height:70px;
    background:#fff;
    position: relative;
}

.main_nav_header span{
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    font-weight: 700;
    text-transform: uppercase;
    top:0;
}

.main_nav_close{
    height:100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	align-content: stretch;
    padding:20px;
    cursor: pointer;
    position: relative;
    border-left:1px solid var(--clr_gray);
}

.main_nav_content{
    border: 1px solid var(--clr_gray);
}

.main_nav_content a{
    display: inline-block;
    float:left;
    width:100%;
    border-bottom: 1px solid var(--clr_gray);
    background: #fff;
    padding:0px 15px;
}

.main_nav_content svg{
	fill:currentcolor;
}

.main_nav_content a:hover{
    background:var(--clr_black);
    color:#fff;
}

.main_nav_content a div{
    float:left;
    position: relative;
    display: inline-block;
}

.page_title{
    width:20%;
    font-size: 0.8em;
}

.page_description{
    font-size: 0.9em;
    font-weight: 500;
}

.main_nav_content a div.main_nav_icon{
    float: right;
}

.main_nav_footer{
    background:#fff;
    text-align: center;
    padding: 20px;
    line-height: 1.5em;
    font-size: 0.9em;
    font-weight: 300;
	border: 1px solid var(--clr_gray);
	border-top:none;
}

.main_nav_social{
    padding: 10px;
}

.main_nav_social svg{
    height:30px;
    width:auto;
}

.main_nav_social a{
    display: inline-block;
    margin:0px 5px;
}

/**
Full Slider
**/
.fullslider_slider{
    width:100%;
    height:50vh;
    position: relative;
    z-index: 1;
}

.fullslider_nav .col-3{
    float:right;
    text-align: right;
    padding:40px 20px 20px;
    margin-bottom: -95px;
    z-index: 2;
    position: relative;
    background:#fff;
}

.slider_btns{
    display: inline-block;
    text-align: center;
    border:1px solid var(--clr_gray);
    width:40px;
    height:40px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.slider_btns svg{
    display: inline-block;
    height:15px;
    width:auto;
    float:none;
    margin-top:13px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.slider_btns:hover{
    background:var(--clr_main);
}

.slider_btns:hover svg{
    fill:white;
}

/**
Title with btns
**/
.title_with_btn_holder{
    padding:var(--page_innerPadding);
}

.title_with_btn_holder h1{
    font-size: 2.4em;
    font-weight: 700;
    padding-bottom: 10px;
    letter-spacing: -0.02em;
}

.title_with_btn_holder p{
    font-weight: 300;
    margin-bottom: 30px;
	line-height: 1.6em;
}

.btn_main{
    display: inline-block;
    position: relative;
    border:1px solid var(--clr_main);
    background:var(--clr_main);
    color:#fff;
    padding:10px 60px 10px 15px;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
}

.btn_main:hover{
    background:var(--clr_black);
    border:1px solid var(--clr_black);
    color:#fff;
    padding:10px 30px 10px 10px;
}

.btn_main:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.841' height='12.768' viewBox='0 0 27.841 12.768'%3E%3Cg id='Group_61' data-name='Group 61' transform='translate(13.92 6.381)'%3E%3Cpath id='Path_103' data-name='Path 103' d='M22.06,8.113a.587.587,0,0,0-.546.351.581.581,0,0,0,.12.637l4.626,4.819H1.174a.58.58,0,1,0,0,1.16H26.261L21.634,19.9a.58.58,0,1,0,.838.8l5.954-6.2L22.473,8.3A.583.583,0,0,0,22.06,8.113Z' fill='white' transform='translate(-14.506 -14.494)'/%3E%3C/g%3E%3C/svg%3E%0A");;
    position: absolute;
    right:10px;
    bottom:0;
    top:0;
    width:30px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.btn_main:hover:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.841' height='12.768' viewBox='0 0 27.841 12.768'%3E%3Cg id='Group_61' data-name='Group 61' transform='translate(13.92 6.381)'%3E%3Cpath id='Path_103' data-name='Path 103' d='M22.06,8.113a.587.587,0,0,0-.546.351.581.581,0,0,0,.12.637l4.626,4.819H1.174a.58.58,0,1,0,0,1.16H26.261L21.634,19.9a.58.58,0,1,0,.838.8l5.954-6.2L22.473,8.3A.583.583,0,0,0,22.06,8.113Z' fill='black' transform='translate(-14.506 -14.494)'/%3E%3C/g%3E%3C/svg%3E%0A");;
    right:-40px;
}

.title_sub{
    margin-bottom: 20px;
    font-weight: 500;
}

/**
Portfolio Slider
**/
.portfolio_title .title_with_btn_holder{
    background:var(--clr_lightgray);
    padding:80px var(--page_innerPadding) 120px;
}


.property_slider{
    overflow: hidden;   
    margin-top:-140px;
    padding-bottom: 60px;
}

.single_property img{
    width:100%;
    height:auto;
}

.btn_simple{
    display: inline-block;
    position: relative;
    line-height: 40px;
    font-size: 0.9em;
    margin-right: 15px;
}

.portfolio_btns{
    text-align: right;
    padding:0px 80px;
    margin-top:60px;
}

.single_property_details{
    display: inline-block;
    width:100%;
    padding:20px 20px;
}

.single_property_footer{
    font-size: 0.9em;
}

.single_property_details h2{
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 5px;
}

/**
Image with text 01
**/
.block{
    padding:40px 0px;
}

.section_content h3{
    font-size: 2em;
    letter-spacing: -.03em;
    padding-bottom: 5px;
}

.section_content p{
    width:80%;
    line-height: 1.4em;
}

.float-right p{
    float:right;
}


.img_text_01 {
    text-align: center;
}
.img_text_01 .wrapper{
    position: relative;
    display: inline-block;
    text-align: left;
}

.img_text_01_bg{
    position: absolute;
    left:0;
    bottom:0;
    top:0;
}

.img_text_01 .section_content{
    padding:120px 0px;
}

/**
Image with text 02
**/
.img_text_02 {
    text-align: center;
}
.img_text_02 .wrapper{
    position: relative;
    display: inline-block;
    text-align: left;
}

.img_text_02_bg{
    position: absolute;
    right:0;
    bottom:0;
    top:0;
}

.img_text_02 .section_content{
    padding:120px 0px;
}

/**
Single Image
**/
.single_image_bg{
    height:50vh;
}

/**
Simple Content
**/
.simple_content{
    padding:20px;
}

.simple_content p{
    padding:10px 0px;
    line-height: 1.5em;
}

/**
Property Grid
**/
.property_grid{
    display: grid;
	grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 3fr);
    grid-row-gap: 30px;
	grid-column-gap: 30px;
}

.property_grid a{
    display: inline-block;
    border:1px solid var(--clr_gray);
    padding:10px;
}

.property_grid a:hover{
    color:var(--clr_main);
}

.property_grid_img{
    position: relative;  
    overflow: hidden;
    background:var(--clr_main);
}

.property_grid_img:before{
    content:"View Project";
    position: absolute;
    left:0;
    right:0;
    bottom:-10%;
    padding:20px 0px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    background:rgba(255,255,255,1);
    color:#000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
    font-size: 0.8em;
    opacity: 0;
    visibility: hidden;
}

.property_grid a:hover .property_grid_img:before{
    font-size: 1em;
    opacity: 1;
    visibility: visible;
    bottom:0;
    display: none;
}

.property_grid_img img{
    width:100%;
    height:auto;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.property_grid a:hover .property_grid_img img{
    opacity: 0.5;
}

.property_grid_title{
    font-weight: 600;
    padding:12px 0px 0px 0px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 0.9em;
}

.property_grid_footer{
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 0.1em;
    padding-top: 5px;
}

/**
Single Property
**/
.full_image img{
    width:100%;
    height:auto;
}

.property_glance{
    border:1px solid var(--clr_lightgray);
    border-bottom: none;
}

.property_glance div{
    width:25%;
    display: inline-block;
    border-right:1px solid var(--clr_lightgray);
    text-align: center;
    float:left;
    padding:15px 0px;
    font-size: 0.9em;
    font-weight: 500;
}

.property_glance div span{
    display: inline-block;
    width:100%;
    font-weight: 300;
}

.property_glance div:last-child{
    border-right:none;
}

.property_functions{
    padding:var(--page_innerPadding);
    background:var(--clr_lightgray);
}

.inner_title{
    font-weight: 600;
}
.property_functions ul{
    list-style: none;float:left;
    width:100%;
    margin:0px 0px 0px;
}

.property_functions ul li{
    float:left;
    margin:0px;
    padding:0px;
    padding-left:28px;
    margin: 20px 20px 0px 0px;
    border:none;
    position: relative;
}

.property_functions ul li:before{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9.1' viewBox='0 0 10 9.1'%3E%3Cg id='Group_70' data-name='Group 70' transform='translate(13.932 12.678)'%3E%3Cpath id='Path_108' data-name='Path 108' d='M13.738,6.3a.524.524,0,0,0-.426.246l-4.93,7.542-3.194-2.76a.524.524,0,1,0-.688.786L8.154,15.27a.523.523,0,0,0,.778-.115L14.2,7.114a.524.524,0,0,0-.459-.819Z' transform='translate(-18.221 -18.973)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
    position: absolute;
    left:0px;
    width:20px;
    height:20px;
    background: var(--clr_main);
    border-radius: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}


.property_gallery{
    overflow: hidden;
}

.property_gallery img{
    height:50vh;
    width:auto;
}

.property_gallery .swiper-slide {
    width: auto;
}

/**
Property Specs
**/
.property_specs{
    border:1px solid var(--clr_lightgray);
}

.property_specs_item{
    display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: repeat(8, 1fr);
    border:1px solid var(--clr_lightgray);
}

.property_specs_item div{
    padding:14px 10px 10px;
    text-align: center;
}

.property_specs_item:hover{
    background:var(--clr_lightgray);
}

.property_specs_header{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    background:var(--clr_lightgray);
}

.property_specs_item_disabled{
    position: relative;
    font-weight: 300;
}

.property_specs_item_disabled:before{
    position: absolute;
    left:0; right:0;
    top:0; bottom:0;
    content:"";
    background:white;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.4);
      -webkit-backdrop-filter: blur(1px);
      backdrop-filter: blur(.5px);
}

.property_specs_item_disabled:after{
    position: absolute;
    left:0; right:0;
    top:0; bottom:0;
    content:"";
    background:rgba(255,255,255,0.5);
    z-index: 15;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.property_specs_item_disabled:hover:after{
    content:"Not Available";
    background:var(--clr_main);
    color:#fff;
}
/**
Footer
**/
footer{
    float:left;
    width:100%;
    height:auto;
    display: inline-block;
    position: relative;
    margin-top:80px;
}

.main_footer{
    background:var(--clr_gray);
    padding:40px;
}

.footer_half{
    float:left;
    width: 50%;
}

.footer_title{
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 20px;
}

.footer_text p{
    font-size: 0.9em;
    padding-bottom: 25px;
    line-height: 1.4em;
}

.footer_text a strong{
    text-decoration: none;
    font-weight: 500;
}

.footer_list ul{
    list-style: none;
}

.footer_list ul li{
    margin-bottom: 8px;
}

.footer_list ul li a{
    display: inline-block;
    font-weight: 500;
}

.footer_list ul li a:hover{
    padding-left:5px;
}

.footer_projects ul{
    list-style: none;
    float:left;
    width:100%;
}

.footer_projects ul li{
    display: inline-block;
    float:left;
    margin-bottom: 30px;
    width:32%;
}

.footer_projects ul li a{
    display: inline-block;
    width:100%;
}

.footer_projects ul li a h4{
    font-weight: 500;
    padding-bottom: 5px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.footer_projects ul li a:hover h4{
    color:var(--clr_main);
}

.footer_projects ul li a:hover{
    padding-left:5px;
}


.footer_projects ul li a p{
    font-size: 0.9em;
    font-weight: 300;
}

.copyrights{
    background:var(--clr_black);
    color:#fff;
    padding:20px 40px;
}

.copyrights img{
    height:40px;
    width:auto;
}

.copyrights ul{
    list-style: none;
}

.copyrights ul li{
    display: inline-block;
    margin-left: 20px;
    line-height: 40px;
}

.copyrights ul li a:hover{
    text-decoration: underline;
}

.developer{
    text-align: right;
    font-size: 0.9em;
    padding:20px;
}

.developer a{
    font-weight: 500;
}

@media (min-width: 0px) and (max-width: 1200px) { 
[class*="col-"] {
	width:100%;
}

.wrapper{
	width:98%;
}
.grid-3{
    grid-template-columns: repeat(1, 3fr);
}
.grid-4,
.grid-5{
    grid-template-columns: repeat(2, 1fr);
}

.logo{
    text-align: center;
    border-bottom: 1px solid var(--clr_lightgray);
}

.logo img{
    display: inline-block;
}

.main_nav_content .page_title{
    width:100%;
    margin-bottom: -30px;
}

:root{
    --page_innerPadding:20px;
}

.property_grid{
    grid-template-columns: repeat(2, 3fr);
    grid-row-gap: 10px;
	grid-column-gap: 10px;
}

footer{
    margin-top:40px;
}

.main_footer{
    padding:20px;
}

footer .col-3,
footer .col-2{
    float:left;
    width:50%;
}

footer .col-2{
    text-align: right;
}

.footer_projects{
    margin-top:40px;
}

.footer_projects ul li{
    width:100%;
    float:left;
    margin-left: 0px;
}

.copyrights,
.developer{
    text-align: center;
}

.copyrights div{
    width:100%;
}

.copyrights img{
    display: inline-block;
}

.portfolio_btns{
    display: none;
}

.property_slider{
    margin-top: -80px;
}

.block{
    padding:20px 0px;
}

.img_text_02_bg,
.img_text_01_bg{
    position: relative;
    float:left;
    width:100%;
    height:40vh;
}

.img_text_02 .section_content{
    padding:20px 20px;
    border:1px solid var(--clr_lightgray);
    border-bottom: none;
}

.img_text_01 .section_content{
    padding:20px 20px;
    border:1px solid var(--clr_lightgray);
    border-top: none;
}


.property_glance{
    border:none;
    border-bottom: none;
    padding-bottom: 20px;
}

.property_glance div{
    border:none;
    text-align: left;
    padding:10px 20px;
    width:50%;
}

.property_functions ul li{
    margin:5px;
    padding:5px;
    padding-left:20px;
    font-size: 0.9em;
}

.property_functions ul li:after{
    content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9.525' viewBox='0 0 10 9.525'%3E%3Cg id='Group_69' data-name='Group 69' transform='translate(9.994 9.52)'%3E%3Cpath id='Path_106' data-name='Path 106' d='M2.034,9.925a.284.284,0,0,1-.12-.04.222.222,0,0,1-.08-.22l.88-3.282L.073,4.242a.19.19,0,0,1-.08-.22.192.192,0,0,1,.18-.14l3.4-.18L4.8.52A.265.265,0,0,1,5,.4a.2.2,0,0,1,.18.12L6.4,3.7l3.4.18a.192.192,0,0,1,.18.14.226.226,0,0,1-.06.22L7.277,6.383l.88,3.282a.2.2,0,0,1-.08.22.18.18,0,0,1-.22,0L5,8.044,2.134,9.885A.11.11,0,0,1,2.034,9.925Z' transform='translate(-9.98 -9.92)'/%3E%3C/g%3E%3C/svg%3E%0A");
    position: absolute;
    left:5px;
}

.property_functions ul li:before{
    display: none;
}

.property_gallery img{
    height:40vh;
    width:auto;
}

.property_specs{
    overflow: auto;
}

.property_specs_item{
    min-width:1000px;
}

.full_body:before,
.full_body_cover:before{
    display:none;
}

}