:root {
    --primary-color: #585858;
    --secondary-color: #00e8ff;
    --third-color: #7f7f7f;
    --black-color: #000000;
    --white-color: #ffffff;
    --white-smoke: #f4f3f3;
    --font-family-oswald: 'Oswald', sans-serif;
    --font-family-roboto-condensed: 'Roboto Condensed', sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--primary-color);
    font-family: var(--font-family-roboto-condensed);
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}
:focus {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-family-oswald);
    font-style: normal;
	color: var(--black-color);
	line-height: 1.3;
}
.h1, h1 {
    font-size: 32px;
    letter-spacing: 4px;
}
.h2, h2 {
    font-size: 30px;
}
.h3, h3 {
    font-size: 24px;
}
.h4, h4 {
    font-size: 18px;
}
p {
    margin: 0px 0 15px;
    padding: 0px;
    font-family: var(--font-family-roboto-condensed);
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
	color: var(--primary-color);
    letter-spacing: 1px;
}
a {
    text-decoration: none;
    color: var(--secondary-color);
}
a:hover {
    color: var(--black-color);
    text-decoration: none;
}
button, button:focus {
    background: transparent;
    border: none;
    outline: none;
}
ul {
    list-style: none;
    margin-bottom: 0px;
	padding: 0px;
}
.form-control:focus {
    border-color: var(--third-color);
}

.image-loader img {
    width: 50%;
}
.image-loader {
    position: absolute;
    width: 250px;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
}

/* Custom Classes Css */
.font-12 {
    font-size: 12px !important;
}
.font-14 {
    font-size: 14px !important;
}
.font-16 {
    font-size: 16px !important;
}
.font-18 {
    font-size: 18px !important;
}
.font-weight-400 {
    font-weight: 400 !important;
}
.font-weight-500 {
    font-weight: 500 !important;
}
.box-shadow-0{
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.color-text {
    color: var(--primary-color);
}
.color-black {
    color: var(--black-color);
}
.bg-white-smoke {
    background-color: var(--white-smoke);
}
.font-oswald {
    font-family: var(--font-family-oswald) !important;
}
.font-roboto {
    font-family: var(--font-family-roboto-condensed) !important;
}
.bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}
.mw-850 {
    max-width: 850px;
    margin: auto;
}
.section {
	padding: 40px 0px;
}
.page-heading h2 {
    position: relative;
	font-weight: 200;
    /* padding-left: 18px; */
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
}
.page-heading h2 span {
	font-weight: 500;
}
.page-heading h2:after {
    content: '';
    position: absolute;
    top: 0px;
    left: -18px;
    width: 4px;
    height: 50px;
    background: var(--secondary-color);
}
.page-heading h2.white-after:after {
    background: var(--white-color);
}
.page-heading h2.remove-after:after {
    display: none;
}

.page-heading h3 {
    position: relative;
    padding-left: 18px;
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
    line-height: 1.5;
}
.page-heading h3:after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0px;
    width: 4px;
    height: 50px;
    background: var(--secondary-color);
}

/* Buttons Css */
.btn-design {
	border: none;
    color: var(--white-color);
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
	min-width: 145px;
	height: 42px;
	line-height: 42px;
    padding: 0px 22px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
}
.btn-design:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80%;
    height: 2px;
    background: var(--secondary-color);
}
.btn-design:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
}
.btn-design.btn-dark-transparent,
.btn-design.btn-gray,
.btn-design.btn-gray-light{
    background: var(--secondary-color);
    color: var(--black-color);
}
.btn-design.btn-black{
    background: var(--black-color);
    color: var(--white-color);
}
.btn-design.btn-dark-transparent:hover,
.btn-design.btn-black:hover{
    background: rgba(0,0,0,0.6);
    color: #fff;
}
.btn-design.btn-gray:hover,
.btn-design.btn-gray-light:hover{
    background: var(--primary-color);
    color: #fff;
}
.btn-design.text-theme {
    color: var(--black-color);    
}
.btn-design.text-theme:hover {
    color: var(--secondary-color);
}
.btn-design.btn-text {
    background: transparent;
    color: var(--black-color);
}
.btn-design.btn-text:after, 
.btn-design.btn-text:before{
    display: none;
}
.btn-design:hover {
    background: var(--secondary-color);
    color: var(--black-color);
	-webkit-box-shadow: none;
	box-shadow: none;
    outline: none;	
}
.btn-design:focus, .btn-design:active {
	-webkit-box-shadow: none;
	box-shadow: none;
    outline: none;	
}
.btn-design:not(:disabled):not(.disabled):active:focus {
    background: var(--secondary-color);
    color: var(--black-color);
	-webkit-box-shadow: none;
	box-shadow: none;
    outline: none;	
}

/* Owl Dots Circle Css */
.dots-circle .owl-dots button {
    outline: none;
}
.dots-circle .owl-dots button span {
    position: relative;
    background: transparent !important;
    border: 1px solid var(--primary-color);
    width: 16px !important;
    height: 16px !important;
}
.dots-circle .owl-dots button.active span {
    border-color: var(--secondary-color);
}
.dots-circle .owl-dots button:hover span,
.dots-circle .owl-dots button.active span {
    background: transparent;
}
.dots-circle .owl-dots button.active span:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50px;
}

/* Custom Pagination Css */
.cus_pagination li a {
    display: inline-block;
    text-align: center;
    width: 15px;
    height: 15px;
    line-height: 15px;
    margin: 10px;
    color: var(--third-color);
    font-family: var(--font-family-oswald);
    font-weight: 500;
    position: relative;
}
.cus_pagination li a:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: transparent;
}
.cus_pagination li.active a:after {
    background: var(--secondary-color);
}
.cus_pagination li.active a {
    background: transparent;
    color: var(--black-color);
    font-size: 22px;
}

.loader-outer {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
}
.loader-outer .loader-inner{
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.loader-outer .loader-inner img {
    width: 55px;
}

/* Border-Radius */
.rounded-1{
    border-radius: 1rem !important;
}

/* Footer Css */
.footer {
    padding: 60px 0px;
}
.footer .foot_widgtet h3 {
    margin-bottom: 30px;
}
.footer .foot_menu li {
    margin-bottom: 12px;
}
.footer .foot_menu li a {
    color: var(--white-color);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    padding: 0px;
}
.footer .foot_menu li a:hover,
.footer .foot_info li a:hover{
    color: var(--secondary-color);
}
.footer .foot_info li {
    margin-bottom: 35px;
}
.footer .foot_info li a {
    color: var(--white-color);
}
.footer .foot_info li i {
    margin-top: 6px;
}
.foot_copyright {
    background: rgba(0,0,0,0.8);
    margin-top: 60px;
}
.foot_copyright p {
    font-weight: 200;
}

/* Form Style */
.site-form .info {
    color: #f00;
    font-size: 11px;
    float: none;    
}
.site-form input:not([type="radio"]):not([type="checkbox"]):not([type="button"]):not([type="submit"]), .site-form textarea, .site-form select {
    background: none !important;
    margin-top: 2rem;
}
.site-form button#submit {
    margin-top: 2rem;
}

/* Content */
.pro-detail-conet ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 20px;
}
.pro-detail-conet ul li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/*popup css start here*/

div#propertyen_offer form label {
    width: 100%;
    margin-top: 2rem;
    font-size: 16px;
    color: #757575;
}

div#propertyen_offer form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 0px;
    padding-bottom: 20px;
}

div#propertyen_offer form textarea {
    width: 100% !important;
    height: 90px;
    width: 100%;
}
form.wpcf7-form.init textarea {
    width: 100%;
}
div#propertyen_offer select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 7px 7px;
}

div#propertyen_offer select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 7px 7px;
    color: #ccc;
    color: #757575;
}


div#propertyen_offer span.wpcf7-form-control-wrap.radio-36 {
    width: 100% !important;
    float: left;
}


span.wpcf7-list-item label {
    text-align: center;
}

div#propertyen_offer .wpcf7-list-item {
    width: 50%;
    margin-left: 0px;
}



div#propertyen_offer span.wpcf7-list-item-label {
    margin-left: 15px;
}



div#propertyen_offer span.wpcf7-form-control-wrap.radio-36 span.wpcf7-list-item input {
    width: fit-content;
}

div#propertyen_offer span.wpcf7-form-control.wpcf7-radio {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div#propertyen_offer .wpcf7-list-item label {
    display: flex;
    justify-content: left;
}

div#propertyen_offer span.wpcf7-list-item input {
    width: fit-content !important;
}

div#propertyen_offer input.wpcf7-form-control.has-spinner.wpcf7-submit {
    background: #00e8ff;
    height: 50px;
    padding: 0px 22px !important;
    min-width: 170px;
    max-width: 200px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
   
}

div#propertyen_offer .error {
    color: red !important;
}

.offer a {
    width: 100%;
    background: #000 !important;
    color: #fff !important;
}

.offer a.btn-design:after {
    content: '';
    position: static;
    top: 0px;
    left: 0px;
    width: 80%;
    height: 2px;
   
}

.offer {
    position: relative;
    top: -60px;
}



/*popup css end here*/
@media only screen and (max-width: 767px) {
    div#propertyen_offer .wpcf7-list-item {
        width: 100%;
        margin-left: 0px;
    }
}

/* 14 Nov 22 */
/* Property Offer Modal Header */
div#propertyen_offer {
    padding-right: 0 !important;
}
div#propertyen_offer .modal-header {    
    border-radius: 0;
}
div#propertyen_offer .modal-header h3 {
    margin-top: 0;
}
/* Property Offer Modal Body */
div#propertyen_offer .modal-body .form_body {
    padding: 0;
}
div#propertyen_offer .modal-body .form_body form>p {
    margin-bottom: 8px;
}
div#propertyen_offer .modal-body .form_body form>p>label{
    color: #000;
    font-weight: 600;
}
div#propertyen_offer .modal-body .form_body form label {
    margin-top: 0;
    margin-bottom: 0;        
}
div#propertyen_offer .modal-body .form_body form label.error {
    font-size: 14px;
    font-weight: 400;
    padding-left: 0;
    margin-bottom: 0;
}
div#propertyen_offer .modal-body .form_body form input {
    padding-top: 0px;
    padding-bottom: 5px;
}
div#propertyen_offer textarea {
    padding: 0 5px;
}

/* Offer Button */
.offer .btn-design:hover {
    background: var(--secondary-color) !important;
    color: var(--black-color) !important;
}
.offer .btn-design:hover::before {
    background: var(--black-color) !important;
}