:root{
    --basic-font-size:18px;
    --theme-primary:#C52128;
    --theme-primary-hover:#eabd00;
    --theme-secondary:#3B3B3B;
    --bg-dark:#000000;
    --bg-light:#F4F4F4;
    --color-primary:#C52128;
    --color-secondary:#000000;
    --layout-space:30px;
    --link-primary:#000000;
    --link-primary-hover:#585858;
    --border-color: #eaeaea;
    --form-border:#b7b7b7;
    --bs-body-color: #000000;
    --cf-Regular:'DM Sans';
    --secondary-font:'DM Sans';
    --btn-font:'DM Sans';
    --btn-font-size-sm:14px;
    --btn-font-size:18px;
    --btn-font-size-lg:20px;
    --btn-font-line-height:1.2;
    --btn-primary:#C52128;
    --btn-primary-hover:#242424;
    --btn-secondary:#000000;
    --btn-text-color:#000;
    --btn-primary-text:#ffffff;
    --btn-secondary-text:#fff;
    --btn-text-dark-color:#ffffff;
    --primary-nav-color:#ffffff;
    --cf-primary:'Poltawski Nowy';
    --cf-secondary:'DM Sans';
    --color-light:#ffffff;
    --color-yellow:#ffce01;
    --color-red:#C52128;
    --bs-light-rgb:250,250,248;
    --swiper-theme-color:var(--theme-secondary);
    --header-nav-items-space:24px;
    --fixed-width:90vw;

}

html {
  scroll-behavior: smooth!important;
}

/*@import url("../fonts/custom-fonts.css");*/


/* Preloader */
.c-preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: #07080c;
  width: 100%;
  height: 100vh;
  z-index: 99;
  font-family: 'Bebas Neue';
}
.c-preloader__count {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 120px;
}
.c-preloader__progress {
  background: #1d1e26;
  height: 100%;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
}


/* Animation */

@keyframes slide {
    0% { transform: translateX(8px) }
    80% { transform: translateX(10px) }
    90% { transform: translateX(20px) }
    100% { transform: translateX(25px) }
}
    
[data-animation] {
animation: var(--animn, none) var(--animdur, 0s) var(--animtf, linear) var(--animdel, 0s) var(--animic, infinite) var(--animdir, alternate) var(--animfm, none) var(--animps, running);
}

.a-slide {
    --animdur: 1s;
    --animn: slide;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}



/* Global Styles */

a{ color: var(--link-primary); text-decoration: none; transition: all .5s; }
a:hover{ color: var(--link-primary-hover) }
.link-underline{ text-decoration: underline;}
.link-underline:hover{ text-decoration: none;}
.link{ font-family: var(--secondary-font); font-size: 12px;     background: transparent;  border: none; }
.link-icon { display: inline-flex; align-items: center}
.link-icon .icon{ margin: 0 5px }
.link-white{ color: #ffffff }

a .icon__arrow-right{ transform: translateX(0px) }
a:hover .icon__arrow-right{
    transform: translateX(5px)
}

.icon{
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 6px 0 0 0;
    background-size: 100%;
}

.icon__medium{
    width: 20px;
    height: 20px;
    background-size: 20px!important
}

.icon__large{
    width: 30px;
    height: 30px;
    background-size: 30px!important
}

.icon__xlarge{
    width: 60px;
    height: 60px;
    background-size: 60px!important
}

.icon__xxlarge{
    width: 90px;
    height: 90px;
    background-size: 90px!important
}


.icon__yellow{
    background: url(../img/icon-arrow-dark.svg) no-repeat;
}

.icon__arrow-left{
    background: url(../img/icon-arrow-left-dark.svg) no-repeat;
}

.icon__arrow-right{
    background: url(../img/icon-arrow-right-dark.svg) no-repeat;
}

.icon__arrow-prev{
   background: url(../img/icon-arrow-prev.svg) no-repeat; 
}

.icon__arrow-next{
   background: url(../img/icon-arrow-next.svg) no-repeat; 
}

.icon__right{
    margin: 0 0 0 10px
}

.icon__left{
    margin: 0 10px 0 0
}

.link-primary:hover{ text-decoration: underline;}

.section-head{
    margin: 25px 0;
    text-align: center
}

.section-head .title{   
    font-weight: 400
}


.title{
    font-size: 80px;
}

.title__large{
    font-size: 100px;
}


.title__small{
    font-size: 40px;
}


.title__yellow{
    color: var(--color-yellow);
}

.p_small{
    font-size: 13px;
}

.lead{
    font-size: 20px;
}

.lead__large{
    font-size: 30px;
}



/* Bootstrap */

html,
body{
    font-family: var(--cf-secondary);
    font-size: var(--basic-font-size);
    position: relative;
    height: 100%;
}


h1, h2, h3, h4, h5, h6{
    font-family: var(--cf-primary);
    color: var(--color-secondary);
}

.h1, h1{
   font-size: 70px;
}
.h2, h2{
   font-size: 50px;
}
.h3, h3{
   font-size: 40px;
}
.h4, h4{
   font-size: 30px;
}
.h5, h5{
   font-size: 24px;
}
.h6, h6{
   font-size: 20px;
}

.fw-4{ font-weight: 400!important; }
.fw-5{ font-weight: 500!important; }
.fw-6{ font-weight: 600!important; }
.fw-7{ font-weight: 700!important; }
.fw-9{ font-weight: 900!important; }

.text-primary{ color: var(--color-primary)!important }
.text-secondary{ color: var(--color-secondary)!important }
.text-blue{ color: #004eff }




.hide{ display: none}

.bg-primary{ background-color: var(--theme-primary)!important; }
.bg-secondary{ background-color: var(--theme-secondary)!important; }
.bg-dark{ background-color: var(--bg-dark)!important; }
.bg-light{ background-color: var(--bg-light)!important; }

.breadcrumb-light .breadcrumb-item,
.breadcrumb-light .breadcrumb-item a{
    color: #ffffff
}

.button {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding-right: 40px;
}
.button:hover .button__border-circle {
  transform: translateX(60px);
}
.button:hover .button__mask-circle {
  -webkit-clip-path: circle(25px at 85px);
          clip-path: circle(25px at 85px);
}


.button__text {
  z-index: 1;
  font-size: 18px;
    margin-left: -5px;
  margin-right: -18px;
    text-shadow: 3px 0 0 rgba(255,255,255,1);
  letter-spacing: 0.05em;
    position: relative;
    display: flex;
    align-items: center;
}

.button__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.button__arrow {
  height: 0px;
  width: 20px;
  display: flex;
  align-items: center;
  background-color: #fff200;
}
.button__arrow:after {
    content: "";
    width: 6px;
    height: 8px;
    top: 8px;
    right: 0;
    position: absolute;
    background-color: #fff200;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    transition: transform 300ms;
}

.button:hover .button__arrow:after{
    transform: scale(2);
    opacity: 0;
    border-radius: 100%;
    transform: translateX(-60px);
}

.button__border-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff200;
  transition: transform 200ms;
}

.button__mask-circle {
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: circle(25px);
          clip-path: circle(25px);
  transition: -webkit-clip-path 987ms;
  transition: clip-path 987ms;
  transition: clip-path 987ms, -webkit-clip-path 987ms;
}

.button__small-circle {
  width: 100%;
  height: 50px;
  border-radius: 50%;
  transform: translateX(60px);
  background-color: #fff200;
}

.btn{ 
    position: relative;
    font-family: var(--btn-font);
    font-size: var(--btn-font-size);
    line-height: var(--btn-font-line-height);
    color: var(--btn-text-color);
    border-radius: 0;
    padding: 6px 24px;
}


.btn:hover,
.btn:focus,
.btn:active{
    box-shadow: 1px 1px 2px rgba(0, 0, 0,0.1)!important
}

.fx-hover{
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fx-hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.fx-hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #262626;
background: -webkit-linear-gradient(90deg, rgba(38, 38, 38, 1) 0%, rgba(0, 0, 0, 1) 100%);
background: -moz-linear-gradient(90deg, rgba(38, 38, 38, 1) 0%, rgba(0, 0, 0, 1) 100%);
background: linear-gradient(90deg, rgba(38, 38, 38, 1) 0%, rgba(0, 0, 0, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#262626", endColorstr="#000000", GradientType=1);
  transition: all 0.3s;
  z-index: -1;
}
.fx-hover:hover {
  color: #fff;
}
.fx-hover:hover:before {
  width: 100%;
}




.btn-link{
    position: relative;
    text-decoration: none
}

.btn-link::after{
    position: absolute;
    content: '';
    width: 50%;
    height: 1px;
    background: #000;
    left: 25%;
    right: 25%;
    bottom: 0;
    transition: all .5s;
}

.btn-link:hover::after{
    width: 100%;
    left: 0;
    right: 0;
}

.btn-link.no-border::after{
    display: none
}

.btn-group-sm>.btn, .btn-sm{
    font-size: var(--btn-font-size-sm);
    padding: 5px 20px;
}

.btn-group-lg>.btn, .btn-lg{
    font-size: var(--btn-font-size-lg);
    padding: 18px 40px;
}

.btn-lg.btn-icon{
    padding-left: 30px;
    border: solid 1px #000000;
}

/* .btn-lg.btn-icon .icon{
    width: 60px;
} */

.btn-primary{ 
    background-color: var(--btn-primary);
    border: none;
    color: var(--btn-primary-text);
}

.btn-primary:hover,
.btn-primary:focus{ 
    background-color: var(--btn-primary-hover);
}

.btn-secondary{
    background-color: var(--btn-secondary);
    color: var(--btn-secondary-text);
    border: none
}

.btn-custom{ 
    background-color: var(--theme-primary);
    color: #fff
}

.btn-custom:hover{
    background-color: var( --theme-primary-hover);
    color: #ffffff
}

.btn-dark{
    color: #ffffff
}

.btn-light{
    background-color: #ffffff;
}

.btn-light:hover{
    background-color: #ffffff;
}

.btn-outline-default{
    border-color: #c4c4c4;
}

.btn-outline-default:hover{
    background-color: #eaeaea
}


.btn-link:hover,
.btn-link:focus,
.btn-link:active{
    box-shadow: none!important;
    color: #353535;
}

.btn-tab .btn{
    font-size: 30px;
    font-family: var(--fw-800);
    background: #cccccc;
    text-transform: uppercase;
    position: relative
}

.btn-tab .btn.active{
    color: #ffffff;
    background: var(--theme-primary);
}

.btn-tab-border .btn{
    border-radius: 0;
    background: transparent;
    color: var(--bs-gray-600);
    padding: 25px 0;
    margin: 0 20px;
}

.btn-tab-border .btn:hover,
.btn-tab-border .btn:focus{
    box-shadow: none
}

.btn-tab-border .btn.active{
    color:var(--bs-dark);
    background: transparent;
}

.btn-tab-border .btn::before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    transition:all .3s;
}


.btn-tab-border .btn.active::before{
    height: 5px;
    background:var(--theme-primary);
}




.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0;
}

.btn-icon .icon{
    position: relative;
    width: 24px;
    height: 30px;
    background-position: bottom;
    margin: 0 14px 0 20px;
    transition: all 0.3s ease;
}




.btn-icon .icon::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent var(--color-primary);
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 10px;
    transition: all 0.3s ease;
}


.btn-icon:hover .icon::before{
    transform: translateX(20px);
    transform: scale(1.4)
}

.btn-icon .icon::after {
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0;
    top: 40%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    z-index: 3;
}

.btn-icon:hover .icon::after{
    content: "";
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent var(--color-primary);
    transform: scale(1.4)
}

.btn-primary.btn-icon .icon::before,
.btn-primary.btn-icon:hover .icon::after{
    border-color: transparent transparent transparent #ffffff;
}

.btn-icon .icon--arrow{
    width: 38px;
    height: 20px;
}

.btn-icon .arrow--right{
    background-image: url(../img/right-arrow.png) 
}

.btn-icon .white-arrow-right{
    width: 38px;
    height: 20px;
    background: url(../img/right-arrow.png) no-repeat top;
    margin-left: 20px
}

.btn-icon .dark-arrow-right{
    width: 38px;
    height: 20px;
    background: url(../img/right-arrow.png) no-repeat bottom;
    margin-left: 20px
}

.btn .icon-img{
    width: 20px
}

.btn-state-normal .icon{
    transform: rotate(0deg);
}

.btn-state-internal .icon{
    transform: rotate(-45deg);
}

.btn-state-trigger .icon{
    transform: rotate(45deg);
}


.fixed-whatsapp{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.05);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-content: center
}


.fixed-whatsapp img{
    width: 30px;
}


.scroll-tabs {
position: relative;

}
.scroll-tabs {
position: relative;
}
.scroll-tabs #tabs {
border-bottom: 0;
margin: 0;
display: flex;
overflow-x: scroll;
overflow-y: hidden;
flex-wrap: nowrap !important;
}
.scroll-tabs #tabs::-webkit-scrollbar {
display: none;
}
.scroll-tabs #tabs li {
width: auto;
white-space: nowrap;
flex: 1;
}

.scroll-tabs #tabs li a.btn{
min-width: 130px;
padding: 5px 20px
}

.scroll-tabs #tabs li a.active {
background: var(--btn-primary);
color: var(--btn-primary-text);
}
.scroll-tabs .tab-content {
overflow: hidden !important;
}

*:focus {
    outline: none;
}

.form-control,
.form-select{
    font-size: 13px;
    padding: 8px 25px;
    border-radius: 6px;
    border-color: var(--form-border)
}

.form-select:focus,
.form-control:focus,
.form-check-input:focus{
    border-color: var(--form-border);
    box-shadow: 0 0 0 2px rgba(0,0,0,0.3)
}

.form-floating>label,
.form-floating>.form-control{
    padding-left: 20px;
    color: #a3a3a3;
}

.form-check-label{
    font-size: 14px;
    line-height: 1.8;
}

.form-floating>.form-control{
    font-size: 16px;
    color: #000
}

.form-check-input[type=checkbox]{
    border-radius: 0
}

.form-check-input:checked{
    border-color: var(--primary);
    background-color: transparent
}


.form-check-label p{
    font-weight: 400;
}

.form-check-input:checked[type=checkbox],
.form-check-input:checked[type=radio]{
    background: #fff url(../img/svg/checked.svg) no-repeat center;
    background-size: 10px
}

form .help-block{
    padding: 0
}

.input-cta{
    position: relative;
}

.input-cta .input-overlap{
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
}

.input-cta .form-control{
    padding-right: 100px;
}

.input-mobile{
    max-width: 300px;
}

.input-group .btn-link{
    font-size: 13px;
    color: #2c2c2c;
    text-decoration-color: #8d8d8d;
}


input.range-slider[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-image: rgb(244,240,87);
  background-image: -moz-linear-gradient(90deg, rgba(244,240,87,1) 16%, rgba(232,244,197,1) 42%, rgba(255,255,0,1) 77%, rgba(84,255,0,1) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(244,240,87,1) 16%, rgba(232,244,197,1) 42%, rgba(255,255,0,1) 77%, rgba(84,255,0,1) 100%);
  background-image: linear-gradient(90deg, rgba(244,240,87,1) 16%, rgba(232,244,197,1) 42%, rgba(255,255,0,1) 77%, rgba(84,255,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f057",endColorstr="#54ff00",GradientType=1);
  background-size: 5% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input.range-slider[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffce01;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input.range-slider[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffce01;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input.range-slider[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffce01;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input.range-slider[type="range"]::-webkit-slider-thumb:hover {
  background: #ffde53;
    border: solid 4px #ffce01
}

input.range-slider[type="range"]::-moz-range-thumb:hover {
  background: #ffde53;
    border: solid 4px #ffce01
}

input.range-slider[type="range"]::-ms-thumb:hover {
  background: #ffde53;
    border: solid 4px #ffce01
}
                                            
.switch-wrapper{
                                    display: flex;
                                    align-items: center
                                }
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
    margin: 0 15px
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-primary);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-secondary);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}


.icon-wrapper{
    display: flex;
}
.icon-align-center{
    align-items: center
}

.icon-wrapper:has(span) img{
    margin: 0 10px 0 0
}

.icon-wrapper .text__large{
    font-size: 20px
}

.card{
    border-radius: 0;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Input Track */
input.range-slider[type=range]::-webkit-slider-runnable-track  {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input.range-slider[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input.range-slider[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}


ul.list{
    list-style: none;
    margin: 10px 0;
    padding: 0;
    font-size: var(--basic-font-size);
    line-height: 24px
}

ul.list li:not(:last-child){
    margin-bottom: 20px
}

ul.list-tick li{
    background: url(../image/icon-tick-color.svg) no-repeat 0 4px;   
    background-size: 16px;
    padding-left: 34px;
}

ul.list-tick-light li{
    background: url(../image/icon-tick-light.svg) no-repeat 0 4px;   
}


ul.list-2col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}




.scroller-wrapper{
    position: relative;
  width:100%;
  height:80px;
  overflow:hidden;
}
.scroller-wrapper .box{
  position:absolute;
  width: auto;
  height:50px;
  color:black;
  font-size:40px;
  font-weight:600;
  line-height:50px;
  text-align:center;
    margin-right: 10px
}


.properties .list-view{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-column-gap: 2.666666666666667%;
    grid-row-gap: 60px
}



.buttons__block{
    display: grid;
    grid-gap: 16px
}

.buttons__light a{
    color: white
}

.scroller::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
    border-radius: 6px
}

.scroller::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
    border-radius: 6px
}

.scroller::-webkit-scrollbar-thumb
{
	background-color: #a8a8a8;
	border: 2px solid #a8a8a8;
    border-radius: 6px
}

/* Layout */

.container{
    max-width: 1200px;
}

.grid{ display: grid; }

.grid-2{
    grid-template-columns: 1fr 1fr;
}

.df-sb{ 
    display: flex;
    justify-content: space-between
}


.tex-img-block{
    display: grid;
    grid-template-columns: 1fr 1fr;    
}

.text--img .text-col{
    margin-right: 60px;
}



.help-block{
    padding: 80px 0 40px 0
}

.help-block .block-wrapper{
    background-color: #ebebeb;
    padding: 0
}

.custom-drop .dropdown-menu{
    max-width: 90vw;
    min-width: 260px;
    font-size: 13px;
}

.mobile{ display: none!important; }

.modal-backdrop{
    background: #fff;
}

.modal-backdrop.show{
    opacity: 1;
}



.modal .modal-content{
    padding: 30px;
    border: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.20)
}

.modal-custom-theme .modal-content-form{
    background: transparent!important;
    padding: 0!important
}

.modal-body .btn-close{
    float: right;
    margin: 0 15px 0 0;
    background-color: #ccc;
    border-radius: 20px;
    color: #000;
    padding: 10px;
}

.modal-custom-theme .modal-content-form .btn-close{
    background-color: #ffffff;
    color: #000;
    z-index: 999;
    padding: 6px;
    border-radius: 25px;
    border: solid 2px #000;
    right: 28px;
    top: 28px;
    background-size: 10px;
}

.modal-open .modal-backdrop{ display: none}
.modal-custom .modal-content{
    box-shadow: none;
    border: solid 6px #a9a9a9;
    border-radius: 6px
}

.modal-custom .btn-close{
    position: absolute;
    right: 15px;
    top: 15px;
}

.modal-custom .modal-title{
    background-color: #ffce01;
    color: #000;
    border-radius: 6px;
    position: absolute;
    left: -30px;
    padding: 5px 50px;
    font-size: 20px;
    line-height: 30px;
}

.modal-custom .modal-content{
    padding:20px 10px;
    overflow: inherit
}

.modal-custom .modal-header,
.modal-custom .modal-footer{
    z-index: 4;
    border-top: none;
    border-bottom: none
    
}

.modal-custom .accordion-body{
    padding: 0 0 20px 0
}

.modal-custom .modal-footer.cta-center{
    justify-content: center
}

.modal-custom-theme .modal-content{
    position: relative;
    background: rgb(247,244,136);
    background: -moz-linear-gradient(180deg, rgba(247,244,136,1) 0%, rgba(232,244,197,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(247,244,136,1) 0%, rgba(232,244,197,1) 100%);
    background: linear-gradient(180deg, rgba(247,244,136,1) 0%, rgba(232,244,197,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f488",endColorstr="#e8f4c5",GradientType=1);
    border-radius: 20px;
    padding: 30px 50px;
    width: 100%;
    border:none;
    border-radius: 8px
    
}

/* Theme Styles */

.layout-fixed{
    width: 96%;
    margin: auto
}

.master-head{
    position: relative;
    z-index: 9;
    background-color: var(--bg-light);
    padding: 0;
}

.master-head .mh-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0;
}


.master-head .brand-logo{
    padding: 0;
    margin-right: 20px;
    margin-left: 20px;
    overflow: hidden;
}

.master-head .brand-logo img{
    width: 230px;
}

.master-head .nav-bar{
    display: flex;
    align-items: center;
}

.master-head .header-end{
    padding: 40px 0 0 0
}

.master-head .main-site-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.master-head .main-site-links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center 
}

.master-head .main-site-links li:not(:last-child)::after {
    content: " | "; 
    margin-left: 20px;
    margin-right: 20px;
    color: #CCCCCC;
    font-size: 20px;
}

.master-head .main-site-links li a{
    position: relative;
}

.master-head .main-site-links li.active a::after{
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 2px;
    border-bottom: solid 2px var(--color-primary);

}

.master-head .main-site-links li a {
    font-size:18px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-secondary);
    padding: 30px 0;
}

.master-head .main-site-links li.active a{
    color: var(--color-primary);
}

.master-head .search{
    margin: 0 var(--header-nav-items-space);
}

.master-head .search form .form-control {
    width: 100px;
    height: 100%; 
}
  .master-head .search form .search_product .form-control {
    width: 300px; 
}
  .master-head .search .global-search {
    position: relative;
      margin: 0;
    }
    .master-head .search .global-search .form-control {
      width: 100%;
      height: 44px;
      padding: 12px 40px 12px 20px;
      background-color: #FFFFFF;
      border: none;
      border-radius: 0;
      font-size: 18px;
      font-weight: 700;
}
    .master-head .search .global-search button {
      position: absolute;
      top: 5px;
      right: 10px;
      margin: 0;
      padding: 0;
    }

    .master-head .search .global-search button.btn-link::after{
        display: none;
    }


.master-head .cta-buttons{
    display: flex;
    align-items: center;
    gap:var(--header-nav-items-space);
    margin: 0;
}

.master-head .cta-buttons a{
    font-size: 16px;
    font-weight: 400;
    color: var(--btn-text-dark-color);
    text-transform: capitalize;
    margin: 0;
}

.master-head .cta-buttons .list_icons{
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap:var(--header-nav-items-space);

}

.master-head .cta-buttons .btn-primary:hover,
.master-head .cta-buttons .btn-primary:focus{
    background-color: #fff
}

.master-head .cta-buttons .button__icon{
    width: 25px
}

.master-head .cta-buttons .expert-button{
    padding: 5px 20px;
}

.master-head .mini-cart{
    position: relative;
    display: inline-block
}

.master-head .mini-cart .cart-count{
    position: absolute;
    top: -2px;
    right: -5px;
    width: 14px;
    height: 14px;
    background: var(--theme-primary);
    border-radius: 8px;
    font-size: 8px;
    line-height: 16px;
    text-align: center;
    color: #000000
}

.master-head .primary-cta{
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.master-head .primary-cta > li:not(:last-child){
    margin-right: 30px
}



.master-head .secondary-links{
    display: flex;
    align-items: center;
    list-style: none;
    color: #ffffff;
    margin: 0
}

.master-head .secondary-links li{
    margin-left: 15px
}


.master-head .secondary-links a{
    font-size: 12px;
    color: #ffffff;
    text-decoration: underline;
}

.master-head .secondary-links .user-name{
    width: 100px;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.master-head .secondary-links .user-name .name-text{
    color: var(--color-primary)
}


.master-head .user-trigger{
    display: flex;
    align-items: center;
    
}

.master-head .secondary-links .user-auth-links a{
    text-decoration: none;
    margin: 0
}

.master-head .user-trigger a:hover,
.master-head .cart-trigger a:hover{
    background-color: rgba(255,255,255,0.2)
}

.master-head .nav-icon img{
    width: 20px
}

.master-head .nav-icon{
    display: inline-flex;
    align-items: flex-start;
    margin-right: 10px;
}

.master-head .cart-trigger .cart-text{
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.master-head .user-links{
    display: flex;
    align-items: center;
    margin: 0 0 0 20px;
}

.master-head .user-links a{
    color: var(--primary-nav-color);
    text-decoration: none;
    margin: 0;
}

.master-head .cart-trigger a{
    display: flex
}




.master-head .menu-trigger{
    display: none!important;
}

.master-head .primary-nav{
    list-style-type: none;
    display: flex;
    margin:0;
    padding: 0
}

.master-head .primary-nav li:not(:last-child){
    margin-right: 30px;
}

.master-head .primary-nav li::marker{
    font-size: 0;
}


.master-head .primary-nav li a{
    color: var(--primary-nav-color);
    position: relative;
    display: block;
    height: 100%;
    padding: 25px 0;
    text-align: center
}


.master-head .primary-nav>li a::before,
.master-head .primary-nav>li.dropdown a::before{
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    height: 1px;
    background: rgba(255,255,255,1);
    bottom: 4px;
    transition: all  .5s;
}

.master-head .primary-nav>li,
.master-head .primary-nav>li.dropdown a.show{
    position: relative
}

.master-head .primary-nav>li a:hover::before,
.master-head .primary-nav>li.dropdown a.show:hover::before,
.master-head .primary-nav>li.dropdown a.show::before{
    width: 100%;
    right: 0
}

.master-head .primary-nav>li.dropdown a.show::after{
    transform: rotate(180deg)
}

/*
.master-head .primary-nav li a::before,
.master-head .primary-nav li a::after{
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    background: rgba(255,255,255,0.4);
    bottom: 0;
    transition: all  .5s;
}

.master-head .primary-nav li a::before{
    left: 50%
}

.master-head .primary-nav li a::after{
    right: 50%
}

.master-head .primary-nav li a:hover::before,
.master-head .primary-nav li a:hover::after{
    width: 50%;
}
*/



.master-head .primary-nav .dropdown-menu{
    width: 240px;
    background: #242020;
}

/*
.master-head .primary-nav .dropdown-menu.mega-menu,
.master-head .primary-nav .dropdown-menu.mega-menu .accordion-body{
    width: 600px
}
*/

.master-head .primary-nav .dropdown-menu a{
    padding: 0px;
    color: #000
}

.master-head .primary-nav .dropdown-menu .accordion{
    overflow: inherit
}

.master-head .primary-nav .dropdown-menu .accordion-item,
.master-head .primary-nav .dropdown-menu  .accordion-button{
    background: transparent;
    font-family: var(--cf-Regular);
}

.master-head .primary-nav .dropdown-menu .accordion-button,
.master-head .primary-nav .dropdown-menu .dropdown-item{
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    text-align: left;
    padding: 10px 20px;
    height: 50px;
}

.master-head .primary-nav .dropdown-menu .accordion-button:hover{
    color: #dbb106;
}

.master-head .primary-nav .dropdown-menu .accordion-button:hover,
.master-head .primary-nav .dropdown-menu .accordion-button:focus,
.master-head .primary-nav .dropdown-menu .accordion-button:focus-visible{
    box-shadow: none
        
}


.master-head .primary-nav .dropdown-menu li:not(:last-child){
    margin-right: 0px;
}

.master-head .primary-nav .dropdown-menu{
    padding: 0;
    border-radius: 0;
    border: solid 1px rgba(255,255,255,0.1);
    z-index: 99999
}

.master-head .primary-nav .dropdown-menu .accordion-button:not(.collapsed),
.master-head .primary-nav .dropdown-menu .dropdown-item:hover{
    background-color: transparent;
    color: #ffce02
}

.master-head .primary-nav .dropdown-menu .accordion-item:last-child {
    border-bottom: none
}

.master-head .primary-nav .dropdown-menu .accordion-button::after,
.master-head .primary-nav .dropdown-menu .accordion-button::after,
.master-head .primary-nav .accordion-button:not(.collapsed)::after,
.master-head .primary-nav .dropdown-menu .accordion-button:not(.collapsed)::after{
    position: absolute;
    top: 12px;
    right: 20px;
    content: '-';
    text-align: center;
    background-image: none;
    transform:rotate(0)
}

.master-head .primary-nav .dropdown-menu .accordion-button::after,
.master-head .primary-nav .dropdown-menu .accordion-button::after{
    content: '+'
}

.master-head .primary-nav .dropdown-menu .accordion-item,
.master-head .primary-nav .dropdown-menu .accordion-button:not(.collapsed){
    border-bottom: solid 1px #403d3d
}

.master-head .primary-nav .dropdown-menu .no-dropdown{
    list-style: none;
    padding: 0;
}

.master-head .primary-nav .dropdown-menu .no-dropdown li{
        border-top: solid 1px #403d3d

}

.master-head .primary-nav .dropdown-menu .accordion-body{
    width: 240px;
    font-size: 12px;
    color: #fff;
    padding: 0
}



.master-head .primary-nav .dropdown-menu .btn-group{
    width: 100%
}

.master-head .primary-nav .dropdown-menu .btn-group .btn{
    font-family: var(--cf-Regular);
    font-size: 13px;
    color: #fff;
    letter-spacing: 0;
    text-transform: capitalize;
    text-align: left;
    padding: 15px 20px;
    border-radius: 0;
    height: 50px
}

.master-head .primary-nav .dropdown-menu .btn-group .btn::after{
    position: absolute;
    top: 20px;
    right: 20px;
    color: #dbb106;
}

.master-head .primary-nav .dropdown-menu .btn-group .btn:hover,
.master-head .primary-nav .dropdown-menu .btn-group .btn.show{
    background-color: #5b4c18
}

.master-head .primary-nav .dropdown-menu .sub-menu li:last-child  > .dropdown-item{
    border-bottom: none
}

.master-head .primary-nav .dropdown-menu .accordion-body > .sub-menu-parent > .dropdown-item{
    border-bottom: none;
}

.master-head .primary-nav .dropdown-menu .sub-menu-parent .dropdown-item{
    position: relative;
}

.master-head .primary-nav .dropdown-menu  .sub-menu-parent .dropdown-item::after {
    position: absolute;
    content: "";
    top: 18px;
    right: 18px;
    z-index: 99;
    width: 14px;
    height: 14px;
    background: url(../img/icon-arw-next.svg) no-repeat center center;
    background-size: 8px;
}

.master-head .primary-nav .dropdown-menu .dropdown-item::before,
.master-head .primary-nav .dropdown-menu .sub-menu .dropdown-item::before{
    display: none
}

.master-head .primary-nav .dropdown-menu .sub-menu .dropdown-item,
.master-head .primary-nav  .dropdown-menu .sub-menu-child .dropdown-item{
    border-bottom: solid 1px #403d3d;
    text-align: left;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    height: 50px;
}
.master-head .primary-nav  .dropdown-menu .sub-menu-parent .dropdown-item{
    font-size: 13px;
    border-bottom: none
}

.master-head .primary-nav  .dropdown-menu .dropdown-item:focus{
    background: #000
}


.master-head .primary-nav  .dropdown-menu .dropdown-item,
.master-head .primary-nav  .dropdown-menu .sub-menu-parent .sub-menu-child .dropdown-item{
    font-size: 16px;
    border-bottom: solid 1px #403d3d;
}

.master-head .primary-nav .dropdown-menu .accordion-body > .sub-menu-parent {
    padding: 5px;
    margin: 0;

}

.master-head .primary-nav .dropdown-menu .dropdown-item:hover,
.master-head .primary-nav .dropdown-menu .accordion-body > .sub-menu-parent  a:hover{
    background-color: #5b4c18
}








.master-head .primary-nav li a.btn-cta-primary{
    display: block;
    background-color: #ffce01;
    padding: 6px 14px;
    text-transform: capitalize;
    
}


.dark-head{
    background-color: #e10c27;
    color: #ffffff;
}

.dark-head a{
    color: #ffffff;
}

.dark-head .header-start{
    display: flex;
    align-items: center
}

.dark-head .global-search-bar .global-search-input{
    background: url(../../svg/icon-search-white.svg) no-repeat 20px 10px / 15px auto;
    background-color: rgba(255,255,255,0.2);
    border: solid 1px #ffffff;
    color: #fff;
}

.dark-head .global-search-bar .global-search-input::placeholder{
    color: #fff;
}

.dark-head .page-title{
    font-size: 16px;
    margin: 0;
    min-height: auto;
}

.dark-head .dropdown li a{
    color: var(--primary)
}

.searchmodal-fullscreen{
height: 60%;
}
.search-suggestions-nav{
font-size: 12px; display: flex;
list-style: none;
padding: 0;
margin: 10px 0
}

.search-suggestions-nav li{
margin-right: 20px;
}

.secondary-nav-wrapper{
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    padding:0 10px
}

.secondary-nav-wrapper.light{
    background-color: transparent
}

.secondary-nav-wrapper .content-align{
    display: flex;
    justify-content: space-between;
    align-items: center
}

.secondary-nav-wrapper .breadcrumb{
    font-size: 12px;
    color: #7b7b7b;
    margin: 0 25px 0 0;
    padding: 10px 0
}

.secondary-nav-wrapper .breadcrumb-nav{
    width: 100%
}

.secondary-nav-wrapper .breadcrumb-item{
    display: flex
}

.breadcrumb-item+.breadcrumb-item::before{
    content: '|';
}

.breadcrumb-item+.breadcrumb-item::before{
    display: flex;
        float: inherit
    }

.secondary-nav .nav{
    justify-content: flex-end;
    flex-wrap: nowrap
}

.secondary-nav .nav .nav-item{
    margin: 0 10px
}

.secondary-nav .nav .nav-link{
    font-size: 13px;
    color: #7b7b7b;
    padding:15px 0;
    border-bottom:solid 1px transparent;
    white-space: nowrap;
}

.secondary-nav .nav .nav-link:hover{
    color: #404040;
}

.secondary-nav .nav .active{
    font-weight: 600;
    color: #404040;
    border-bottom-color: #000
}

.secondary-nav-dark{
    background-color: #231f20
}

.section {
    position: relative;
}

.section .align-center{
    text-align: center
}

.space-y{
    padding: 70px 0;
}

.space-y--large{
    padding: 100px 0;
}

.content-overlay,
.section>.content-overlay {
    position: relative;
    z-index: 3;
}



.parallax-images{
    position: relative
}



.parallax-images .fixed{
    position: absolute!important;
    left: 0;
    bottom: 0;
}

.parallax-images .img-order{
    position: relative
}

.parallax-images .first{
    z-index: 2;
}
.parallax-images .last{
    z-index: 1;
}

.parallax-images .geo-shape{
    max-width: 100%;
    bottom: -100px;
    opacity: .5
}

.rotation-vetical{
    -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transform-origin: 170px 170px;
  -moz-transform-origin: 170px 170px;
  -ms-transform-origin: 170px 170px;
  -o-transform-origin: 170px 170px;
  transform-origin: 170px 170px;
}


.video{
    position: relative;
}

.video .play-icon{
    position: absolute;
    top: calc(50% - (10px));
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/play-button.png) no-repeat;
    background-size: contain;
    width: 70px;
    height: 70px;
    transform: scale(1);
    transition: all 1s;
}

.video:hover .play-icon{
    transform: scale(1.2)
}

.hero-banner{
    position: relative;
    z-index: 8;
    background-color:var(--bg-light);
    padding:0 0 20px 0;
}

.hero-banner .banner-container{
    position: relative;
    width: var(--fixed-width);
    margin: 0 auto;
}

.hero-banner .content-overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}



.banner-visual {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.video-slide {
    display: none;
    width: 100%;
    height: auto;
}

.video-slide.active {
    display: block;
}

.nav-arrow {
    background: none; 
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

.bullets {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bullets span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    cursor: pointer;
}

.bullets span.active {
    background: #000;
}



.hero-banner .banner-visual {
    height: 90vh;
    background-color: #cccccc;
    border-radius: 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.hero-banner .banner-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}


.hero-banner .banner-visual video,
.hero-banner .banner-visual .video{
    width: 100%;
}


.banner-dark{
    background: #231f20
}

.banner-img-sm{
    display: none;
}


.hero-banner .banner-content{
    width: 400px;
    border-radius: 0;
    padding: 40px 50px 40px 50px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(4px);
    margin: 40px 0;
}

.hero-banner .banner-content.tiny{
    width: 500px
}

.hero-banner .banner-text .title{
    font-size: 40px;
    line-height: 64px;
    text-transform: capitalize;
}

.hero-banner .banner-text .sub-heading{
    font-size: 24px;
    margin: 20px 0 0 0 
}

.hero-banner .btn-light{
    border: solid 1px #000000;
}

.hero-banner .banner-visuals{
    padding:30px 15px;
}

.hero-banner .h-text{
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    text-align: center
}




.hero-banner .banner-img img{
    width: 100%;
    max-width: 100%
}


.hero-banner .banner-img .img__wrapper img{
    width: 100%;
}

.hero-banner .banner-images{
    position: relative;
    padding: 50px 0;
    max-height: 700px;
}




.hero-banner .featured-sales{
    position: relative;
    width: 600px;
    height: 630px;
}

.hero-banner .featured-sales .purchased-product{
    position: relative;
    background: #ffed29;
    margin: 90px 40px 90px 90px;
    padding: 0;
}

.hero-banner .featured-sales .product-img-wrapper{
    position: relative;
    z-index: 2;
}

.hero-banner .featured-sales .product-img-wrapper .product-img{
    width: 100%
}


.hero-banner .banner-text .title span{
    display: block
}

.valuation-cta-banner{
    /*background:#f4f4f4  url(../image/pattren-gray-arrows.svg) repeat-x left 60%;*/
    /*background: #D0D0D0;*/
    /*background-size: contain;*/
    /*padding: 80px 0;*/
    background: #f4f4f4 url(../image/pattren-gray-arrows.svg) repeat;
background-size: auto 80px; 
background-position: left top;
padding: 80px 0;

}

.valuation-cta-banner .block-wrapper{
    background-color: #f5f5f5;
    padding: 40px;
    box-shadow: 0 -5px 50px 0 rgba(0,0,0,0.05);
}

.property-search{
    background-color: var(--bg-light);
    margin: 0;
    padding: 0 0 30px 0;
}

.property-search .search-wrapper{
    width: var(--fixed-width);
    margin: 0 auto;
}

.property-search .search-widget{
    min-height: 400px;
    background: #e8e8e8 url(../image/banner-search-bg.jpg) no-repeat 0 0;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Page */
.property-search .search-widget-search{
   
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-search .search-widget-search .widget-wrapper{
    margin-top: 30px;
    width: 90%;
    background-color: #fff;
    padding: 30px 40px;

}

.property-search .search-widget-search .widget-head{
    display: flex;
    align-items: center;
    border-bottom: solid 1px #CDCDCD;
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
}

.property-search .search-widget-search .widget-title{
    font-size: 24px;
    font-weight: 700;
    margin: 0 20px 0 0;
}

.property-search .search-widget-search .btn-check .btn{
    background-color: #e6e6e6;
    
}

.property-search .search-widget-search .form-control,
.property-search .search-widget-search .form-select{
    position: relative;
    border-width: 0 0 2px 0;
    border-color: #000000;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    padding:6px 0;
}

.property-search .search-widget-search .has-icon{
    position: relative;
}

.property-search .search-widget-search .has-icon .option-icon{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    padding: 4px 0;
}

.property-search .search-widget-search .has-icon .form-select,
.property-search .search-widget-search .has-icon .form-control{
    padding-left: 50px;
}

.property-search .search-widget-search .has-icon .form-select:focus,
.property-search .search-widget-search .has-icon .form-control:focus{
    box-shadow: none;
}

.property-search .search-widget-search .option-location::before{
    background: url(../image/icon-map-pin.svg) no-repeat 0 0;
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}
  /* End search page */

.property-search .search-widget .widget-wrapper{
    width: 90%;
    background-color: #fff;
    padding: 30px 40px;

}

.property-search .search-widget .widget-head{
    display: flex;
    align-items: center;
    border-bottom: solid 1px #CDCDCD;
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
}

.property-search .search-widget .widget-title{
    font-size: 24px;
    font-weight: 700;
    margin: 0 20px 0 0;
}

.property-search .search-widget .btn-check .btn{
    background-color: #e6e6e6;
    
}

.property-search .btn-check +.btn{
    font-size: 14px;
    text-transform: uppercase;
    background-color: #e6e6e6;
    border: solid 1px #e6e6e6;
    padding: 8px 30px;
}

.property-search .btn-check:checked +.btn{
    background-color: #C52128;
    color: #ffffff;

}


.property-search .search-widget .form-control,
.property-search .search-widget .form-select{
    position: relative;
    border-width: 0 0 2px 0;
    border-color: #000000;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    padding:6px 0;
}

.property-search .search-widget .has-icon{
    position: relative;
}

.property-search .search-widget .has-icon .option-icon{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    padding: 4px 0;
}

.property-search .search-widget .has-icon .form-select,
.property-search .search-widget .has-icon .form-control{
    padding-left: 50px;
}

.property-search .search-widget .has-icon .form-select:focus,
.property-search .search-widget .has-icon .form-control:focus{
    box-shadow: none;
}

.property-search .search-widget .option-location::before{
    background: url(../image/icon-map-pin.svg) no-repeat 0 0;
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
}

.featured-properties{
    padding: 60px 0;
}

.featured-properties .properties{
    background-color: transparent;
    padding: 0;
}

.featured-properties .section-head{
    margin-bottom: 60px;
}

.featured-properties .property{
    position: relative;
    display: block;
    height: 100%;
    border-radius: 0;
    background-color: #ececec;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0,0.1);
    overflow: hidden;
}

.featured-properties .property .glimpse-content{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 25px;
    color: #ffffff;
}

.property .property-glimpse{
    position: relative;
}

.property .property-glimpse::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8010853999803046) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8010853999803046) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8010853999803046) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.property:hover .property-glimpse::before{
    height: 100%;
}




.featured-properties .property .visual-photo{
    width: 100%;
}

.featured-properties .property .glimpse-content h4,
.featured-properties .property .glimpse-content h5{
    color: #ffffff;
    margin: 0;
}

.featured-properties .property .property-label{
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    display: inline-block;
    padding: 5px 15px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.featured-properties .section-cta{
    display: block;
    text-align: center;
    margin: 40px auto 0 auto;
}

/* .featured-properties .properties{
    display: flex;
    flex-wrap: wrap;
}

.featured-properties .properties .featured-high {
    flex:4
}

.featured-properties .properties .featured-medium {
    flex:4
}

.featured-properties .properties .featured-normal {
    flex:1
} */

.implementation{
    border-bottom: solid 1px #4c4c4c;
    background: url(../image/illu-apartments.jpg) no-repeat bottom right;
    margin: 60px 0 0 0;

}

.implementation .achieved{
    flex-grow: 3;
    margin: 0;
    padding: 0 20px 40px 0;
}


.implementation .feedback{
    position: relative;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.implementation .feedback::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(197,33,40,1) 0%, rgba(0,0,0,1) 73%);
    background: -webkit-linear-gradient(180deg, rgba(197,33,40,1) 0%, rgba(0,0,0,1) 73%);
    background: linear-gradient(180deg, rgba(197,33,40,1) 0%, rgba(0,0,0,1) 73%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c52128",endColorstr="#000000",GradientType=1);
}

.implementation .feedback .feedback-carousel,
.implementation .feedback .feedback-carousel .swiper-wrapper,
.implementation .feedback .feedback-carousel .swiper-wrapper .swiper-slide,
.implementation .feedback .swiper-wrapper .swiper-slide .feedback-container{
    height: 100%;
}

.implementation .feedback .feedback-container{
    position: relative;
    padding:40px 100px 56px 60px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.implementation .feedback .feedback-text{
    font-size: 20px;
}

.implementation .feedback .feedback-container::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 40px;
    background: url(../image/shape-dark-1.svg) no-repeat top left;
    background-size: 100%;
}

.implementation .feedback  .client-info{
    background: url(../image/comment-line.svg) no-repeat top left;
    padding: 50px 0 0 0;
    display: flex;
    align-items: center;
    gap:30px
}

.implementation .feedback  .rating{
    background: #f9f9f9  url(../image/icon-star.svg) no-repeat center right;
    width: auto;
    height: 60px;
    padding: 10px 60px 10px 25px;
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 2px;
}

.implementation .feedback .swiper-controls{
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 60px;
    width: 160px;
    height: 54px;
    background: #ffffff
}

.implementation .feedback  .swiper-button-prev,
.implementation .feedback  .swiper-button-next{
    box-shadow: none;
    transform: scale(0.6);
}

.implementation .feedback .swiper-pagination-fraction{
    width: 80px;
    height: 60px;
    margin: 0 auto;
    left: 25%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 4px;
}



section.whoweare{
    background-color: var(--theme-primary);
    color: var(--color-light);
    padding: 60px 0;
    min-height: 300px;
}

.whoweare .statistics{
    margin: 0 0 40px 0;
    padding: 0 0 10px 0;
    border-bottom: solid 1px rgba(255,255,255,0.4);
}

.market-places{
    border-top: solid 1px #000000;
    padding: 25px 0;
}

.market-places ul.logos{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.market-places ul.logos li img{
    width: 100%;
}

section.services{
    padding: 60px 0;
}

section.services .card{
    padding: 20px;
}

section.services .card .card-img{
    border-radius: 0;
}

section.services  .card:has(.card-img-overlay){
    padding: 0;
    border: none;
}

section.services  .card:has(.card-img-overlay) .card-text{
    min-height: auto;
}



section.services .card .card-text{
    font-size: 15px;
    min-height: 100px;
}

.primary-services-list{
    background: #f4f4f4;
    height: 100%;
}

.primary-services-list .accordion-flush>.accordion-item{
    background-color: #F4F4F4;
}

.primary-services-list .accordion-flush>.accordion-item .accordion-button{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 30px;
    line-height: 2;
}

.primary-services-list .accordion-flush>.accordion-item .accordion-button:not(.collapsed){
    color: #000000;
    box-shadow: none;
}

.primary-services-list .accordion-flush>.accordion-item .accordion-button:focus,
.primary-services-list .accordion-flush>.accordion-item .accordion-button:focus-within{
    box-shadow: none;
}

.primary-services-list .accordion-flush>.accordion-item .accordion-button::after{
    display: none;
}

.primary-services-list .accordion-button .service-icon img{
    width: 60px;
}

.custom-tooltip {
    --bs-tooltip-bg: rgb(255, 255, 255);
    --bs-tooltip-color: #7b7b7b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1!important;
    border-radius: 0;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.05);
  }

.primary-services-list .accordion .accordion-item .accordion-button{
    padding: 10px 60px;
}

.primary-services-list .accordion .accordion-item .accordion-body{
    padding:0 60px 40px 60px;
}

.primary-services-list .accordion .accordion-item .accordion-body ul{
    margin: 0;
    padding: 0;
    list-style-position: inside;
}

/* Image Styling */
.custom-banner-img {
    width: 100%;         /* Full width of its column */
    height: 100px;       /* Decreased height */
    object-fit: cover;   /* Ensures aspect ratio and crop */
    border-radius: 8px;
}

/* Description box */
.custom-desc-box {
    max-width: 90%;      /* Decrease width inside column */
    font-size: 0.95rem;  /* Slightly smaller text */
    padding: 10px;
}


section.services .office-photo,
section.services .office-photo img{
    height: 540px;
    overflow: hidden;
}

.firs-time-buyers .banner-content,
.custom-pc-buyers .banner-content{
    width: 530px
}

.hero-banner .tiny .banner-text .title,
.firs-time-buyers .banner-text .title,
.custom-pc-buyers .banner-text .title{
    font-size: 110px;
    line-height: 90px
}


.hero-banner .tiny .banner-text .title__small,
.firs-time-buyers .banner-text .title__small,
.custom-pc-buyers .banner-text .title__small{
    font-size: 70px;
    line-height: 70px;
}



.custom-pc-buyers  .banner-visuals{
    margin: -200px -80px 0 0;
}

.custom-pc-buyers  .banner-visuals img{
    width: 100%
}

.firs-time-buyers .trigger,
.custom-pc-buyers .trigger{
    margin: 0;
    text-align: center
}

.featured-sales .shade{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1
}



.hero-banner .featured-sales .client-logo{
    width: 180px;
    height: 180px;
    background: #000;
    border-radius: 100%;
    box-shadow: 6px 3px 10px rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-banner .featured-sales .client-logo img{
    width: 70%;
}

.hero-banner .featured-sales .client-logo.full-logo{
    background-color: transparent
}

.hero-banner .featured-sales .client-logo.full-logo img{
    width: 100%
}

.hero-banner .featured-sales .client-details{
    min-width: 260px;
   background: url(../img/shape-yellow-1.png) no-repeat bottom right;
    background-size: cover;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: 45px;
    padding:15px 30px 20px 30px;
}

.hero-banner .featured-sales .client-details span{
    display: block;
    font-size: 13px;
    font-weight: 300
}

.hero-banner .featured-sales .client-details .client-name{
    font-size: 16px;
    font-weight: 500   
}

.hero-banner .featured-sales .client-details .loaction-pin{
    width: 14px;
    margin-right: 5px;
}

.page-banner .banner-img{
    width: 100%
}

.page-banner{
    background-color: #F4F4F4;
}
.page-banner .pb-wrapper{
    width: 100%;
    border-top: solid 1px #000000;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-banner .pb-wrapper .banner-content{
    display: flex;
}

.page-banner .title{
    width: 320px;
    font-size: 50px;
    line-height: 1;
    margin: 0 0 10px 0;
}

.page-banner  .brief{
    font-size: 16px;
}

.page-banner  .sub-nav {
    float: right;
    margin: 5px 0 0 0;
}

.page-banner  .sub-nav .btn{
    font-size: 14px;
}


.page-banner  .sub-nav .btn-light.active{
    background-color: #ffffff;
    border: solid 1px #000000;
}

.page-banner  .sub-nav .btn-icon .icon::before{
    border-color: transparent transparent transparent #ccc;
}

.page-banner .sub-nav .btn.active .icon::before{
    border-color: transparent transparent transparent var(--color-primary);
}



.static-page{
    position: relative;
    padding: 60px 0;
    min-height: 60vh;
}

.static-page::before{
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../img/glow-yellow.png) no-repeat right top;
}

.static-page .page-header{
    text-align: center;
    margin: 0 0 60px 0;
}

.page-title{
    position: relative;
    font-size: 40px;
    padding: 0 0 20px 0;
}

.page-title::before,
.page-title::after{
    position: absolute;
    bottom: 4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    border-top: solid 1px #000000;
}
.page-title::after{
    border-top: solid 1px #ff2e2e;
    bottom: 0;
}

.static-page .sub-section:not(:last-child){
    margin-bottom: 80px;
}

.static-page:has(.sub-section){
    padding-bottom: 0;
}

.static-page .sub-section .section-title{
    margin-bottom: 40px;
}

.static-page .accordion .accordion-item{
    margin-bottom: 15px;
}

.static-page .accordion .accordion-button:not(.collapsed){
    background-color: var(--bg-light);
    color: var(--color-secondary);
    font-weight: 700;
    box-shadow: none;
}



.static-page .accordion .accordion-item:first-of-type,
.static-page .accordion .accordion-item:last-of-type{
    border-radius: 0;
}

.static-page .accordion .accordion-body{
    padding: 30px 60px;
    font-size: 14px;
}

.properties-sort .sort-label{
    font-size: 16px;
    margin: 0 0 10px 0;
}

.properties-sort .form-control,
.properties-sort .form-select{
    position: relative;
    border-width: 0 0 2px 0;
    background-color: transparent;
    border-color: #000000;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    padding:6px 0;
}

.properties-sort .has-icon{
    position: relative;
}

.properties-sort .has-icon .option-icon{
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    padding: 4px 0;
}

.properties-sort .has-icon .form-select,
.properties-sort .has-icon .form-control{
    padding-left: 50px;
}

.properties-sort .has-icon .form-select:focus,
.properties-sort .has-icon .form-control:focus{
    box-shadow: none;
}



.properties{
    background-color: #F4F4F4;
    padding:20px 10px 60px 20px;
}


.properties .properties-wrapper{
    width: 100%;
    margin: 0 auto;
}

.property .property-image-wrapper{
    margin: 0 0 20px 0;
}

.property .property-image img{
    height : 190px;
    width: 100%;
}

.property .property-title{
    font-family: var(--cf-primary);
    font-size: 20px;
}

.property .property-rate{
    font-family: var(--cf-primary);
    font-size: 16px;
}

.property .property-features{
    position: relative;
    font-size: 13px;
    margin: 15px 0;
}

.property .property-features span:not(:last-child)::after{
    content: '.';
    font-size: 20px;
    margin: 0 10px;
}

.property-full-details{
    position: relative;
    padding:0 0 60px 0;
}

.property-full-details::before{
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 360px;
    background-color: #F4F4F4;
}

.property-full-details .details-wrapper{
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px 0 10px;
    border-top: solid 1px #000000;
}

.property-full-details .property-primary-content{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 30px 0;
}

.property-full-details .primary-info{
    display: flex;
    justify-content: space-between;
    flex: 4;
}



.property-full-details .primary-info .back-btn{
    margin:0 20px 0 0;
    padding: 10px;
}

.property-full-details .property-title{
    font-family: var(--cf-primary);
    font-size: 36px;
}

.property-full-details .property-rate{
    font-family: var(--cf-primary);
    font-size: 24px;
}

.property-full-details .property-id{
    font-size: 13px;
    margin: 10px 0;
}

.property-full-details .primary-features{
    display: flex;
    list-style: none;
    margin: 0 30px 0 0;
}

.property-full-details .primary-features li{
    position: relative;
    padding: 0 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-full-details .primary-features li:not(:last-child) {
    border-right: solid 1px #000000;
}

.property-full-details .primary-features li small{
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.property-full-details .property-cta .cta-label{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}


.property-full-details .property-visuals{
    display: flex;
    margin: 0 0 40px 0;
}

.property-full-details .property-visuals .property-gallery{
    position: relative;
    flex: 4;
}

.property-full-details .property-visuals .property-gallery .property-img {
    height: 700px;
    width: 100%;
}

.property-full-details .property-visuals ul.options-bar{
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    margin: 0;
    padding: 10px;
    list-style: none;
    display: flex;
    gap: 5px;
}

.property-full-details .property-visuals ul.options-bar li{
    width: 140px;
    height: 86px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.property-full-details .property-visuals ul.options-bar li a{
    cursor: pointer;
    color: #ffffff;
}

.property-full-details .property-visuals ul.options-bar li .trigger-img{
    width: 100%;
    opacity: .5;
}

.property-full-details .property-visuals ul.options-bar .photos-count{
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.property-full-details .property-info .content-title{
    position: relative;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
}

.property-full-details .property-info .content-title::before,
.property-full-details .property-info .content-title::after{
    position: absolute;
    bottom: 4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    border-top: solid 1px #000000;
}
.property-full-details .property-info .content-title::after{
    border-top: solid 1px #ff2e2e;
    bottom: 0;
}

.property-full-details .property-enquiry{
    background: var(--theme-primary) url(../image/shape-enquiry-bg.svg) no-repeat bottom left;
    background-size: contain;
    padding: 30px 30px 70px 30px;
    margin: 0 0 0 40px;
}

.property-full-details .property-enquiry .form-title{
    color: #ffffff;
    margin: 0 0 20px 0;
}

.property-enquiry .enquiry-form .form-input{
    margin-bottom: 10px;
}

.property-enquiry .enquiry-form .form-control{
    border-radius: 0;
    border:none;
}

.property-enquiry .enquiry-form .form-cta{
    margin: 15px 0 0 0;
}



.static-page .hero-content .content-visual{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.static-page .hero-content .content-visual img{
    height: 100%;
}

.static-page .hero-content .content-body{
    padding: 50px;
}

.static-page .hero-content .content-body .content-title{
    margin-bottom: 20px;
}


.static-page .include-services{
    background-color: var(--theme-primary);
    color: #ffffff;
    margin: 0 0 60px 0;
}

.sale-process .section-title,
.static-page .include-services .content-title{
    color: #ffffff;
}

.sale-process{
    background-color: var(--theme-secondary);
    color: #ffffff;
    padding: 60px 0;
}

.sale-process .accordion .accordion-button{
    display: flex;
}

.sale-process .accordion .accordion-button:hover,
.sale-process .accordion .accordion-button:focus,
.sale-process .accordion .accordion-button:focus-within{
    box-shadow: none;
}

.sale-process .accordion .accordion-button .step-count{
    width: 80px;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 10px 0 0;
}

.sale-process .accordion .accordion-button .button-text{
    flex: 100%;
}

.sale-process .accordion .accordion-button:not(.collapsed){
    padding-left: 50px;
}

.sale-process .accordion .accordion-button:not(.collapsed) .step-count{
    position: absolute;
    left: -20px;
    background: #fff;
    padding: 5px 10px;
    box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.1);
    width: auto;
}

.sale-process .accordion .accordion-body {
    padding: 30px 50px;
    font-size: 15px;
}

.head-office-info{
    padding: 60px 0;
}

.head-office-info .info-wrapper{
    width: 100%;
    margin: 0 auto;
}

.head-office-info .info-visual img{
    width: 100%;
}

.head-office-info ul.list{
    margin: 20px 0 0 0;
}

.head-office-info ul.list li{
    display: flex;
    align-items: center;
    gap: 20px;
}

.head-office-info ul.list li.aling-start{
    align-items: flex-start;
}

.head-office-info ul.office-hours li{
    display: block;
}

.head-office-info hr{
    opacity: 1;
}



.dialog-valuation .valuation-container,
.dialog-call-request .request-container{
    width: 600px;
    padding: 40px 60px;
}


.dialog-valuation .valuation-form{
    margin: 25px 0 0 0;
}

.valuation-form fieldset:not(:last-child){
    border-bottom: solid 1px #e7e7e7;
    padding-bottom: 40px;
    margin-bottom: 40px;
}



.valuation-form .valuation-type{
    display: flex;
    align-items: center;
    gap: 40px;
}

.valuation-form .valuation-type .btn{
    background-color: #FFE6E7;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 30px;
}

.valuation-form .valuation-type .btn-check:checked+.btn{
   background-color: var(--color-primary)!important;
   color: #ffffff;
}


.valuation-form .form-control,
.dialog-call-request .form-control{
    background-color: #FAFAFA;
    border-radius: 0;
    border: none;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.valuation-form  .fs-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dialog-nav{
    padding: 0!important;
}

.dialog-nav .nav-container{
    width: 60vw;
}

.dialog-nav .nav-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 50vh;
}

.dialog-nav .social{
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-nav .social a{
    margin: 0 10px;
}

.dialog-nav .social .nav{
    padding: 20px;
}

.dialog-nav .nav{
    padding: 50px;
}

.dialog-nav .nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.dialog-nav .nav ul li:not(:last-child){
    margin-bottom: 25px;
}

.dialog-nav .nav a:hover{
    color: var(--color-primary);
}

/* Fancybox */
.fancybox__content>.f-button.is-close-btn{
    top: 0 !important;
    background-image: url(../image/shape-dark-2.svg);
    border-radius: 0;
    width: 40px;
    height: 60px;
}

/* Swiper */

.swiper-scroll{
    width: 100%;
    height: 100%;
}

.swiper-scroll .swiper-slide{
        height: auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
}

    .swiper-container {
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
      }

    .swiper-button-next.swiper-button-disabled, 
    .swiper-button-prev.swiper-button-disabled{
        opacity: 0.2;
    }

    .swiper-button-next,
    .swiper-button-prev{
        width: 50px;
        height: 50px;
        background: #fff;
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2)
    }

    .swiper-button-next:after, .swiper-button-prev:after{
        font-size: 18px;
        color: var(--color-secondary);
    }
    .swiper-button-next:hover:after, .swiper-button-prev:hover:after{
        color: var(--color-secondary);
    }



footer{
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark);
    margin: 0 0 0 0;
    padding: 60px 0 0 0;
}

footer::after{
    position: absolute;
    content: '';
    background: url(../image/london-map.png) no-repeat center;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0;
}

footer .overlay{
    position: relative;
    z-index: 2;
}

footer,
footer a{
    position: relative;
    font-size: var(--basic-font-size);
    color: #ffffff;
}

footer a::after{
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background:transparent;
    left: 0px;
    bottom: 0;
    transition: all .5s;
}

footer a:hover::after{
    width: 100%;
    background: #ffffff;
}

footer a:hover{
    color: #ffffff;
    text-decoration: none
}

footer .footer-main{
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

footer .logo{
    flex: 2;
}

footer .brand-logo{
    width: 280px;
}

footer .site-nav:not(:last-child){
    margin-bottom: 60px
}


footer .site-nav.nav-grid{
    display: grid;
    grid-template-columns:auto auto auto;
    grid-gap:60px 80px;
    flex: 4;
}

footer .site-nav.nav-grid-2 .nav:not(:last-child){
    margin-bottom: 20px
}

footer .nav-grid.row-bottom{
    display: grid;
    grid-template-columns:auto auto auto;
    grid-gap:60px 20px;}


footer .nav-grid .grid-row-2{
    grid-column: 1/1;
}

footer .nav-grid .wide{
    grid-column: 2/2;
}


footer .nav__title,
footer .nav__title a{
    font-size: 18px;
    color: #d8b851;
    margin-bottom: 15px
}


footer .logo a:hover::after{
    display: none
}

footer .site-nav nav ul{
    list-style: none;
    padding: 0;
    margin: 0
}

footer .site-nav nav:has ul+ul{
    display: flex
}

footer .site-nav nav ul.grid-two{
    display: grid;
    grid-template-columns: 1fr auto;
}
    


/*
footer .site-nav nav:nth-child(2){
    margin-top: 80px
}
*/

footer nav li{
    margin-bottom: 10px;
}

footer nav li a{
    font-size: 18px;
    font-weight: 500;
    color: #ffffff
}

footer nav ul.sub-menu {
    margin: 10px 0 0 0
}

footer nav ul.sub-menu-inline{
    display: flex;
    flex-wrap: wrap;
}

footer nav ul.sub-menu-inline li{
    position: relative;
    margin: 0 15px 0 0;
    padding: 0 15px 0 0;
}

footer nav ul.sub-menu-inline li::after{
    position: absolute;
    right: 0;
    top: 0;
    content: '|';
    color: #767676;
    padding-left: 15px
}

footer nav ul.sub-menu-inline li:last-child::after{
    display: none
}

footer nav ul.sub-menu li:not(:last-child){
    margin-bottom: 5px
}

footer nav ul.sub-menu li a{
    font-size: 11px;
    font-weight: 300;
    color: #b9b9b9;
}

footer .reach-us nav li{
    display: flex;
    align-items: flex-start;
    color: #b9b9b9
}


footer .reach-us nav li a{
    font-weight: 300;
    color: #b9b9b9;
    word-break: break-word;
}

footer .reach-us nav li .icon{
    margin: 3px 10px 0 0
}

footer .connect-social{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}

footer .social{
    display: flex;
    align-items: center; 
    margin: 20px 0;
    min-height: 40px;
}

footer nav.social-nav{
    display: flex;
    flex-direction: row;
    margin: 0 0 0 15px;
    
}



footer nav.social-nav a{
    width: 30px;
    height: 30px;
    display: block;
    margin: 0;
}

footer nav.social-nav a:not(:last-child){
    margin-right: 25px
}

footer nav.social-nav a:hover::after{
    display: none
}

footer nav.social-nav a img{
    width: 30px;
}

footer nav.social-nav a:hover img{
    transform: scale(1.1);
}

footer .nav{
    font-size: 12px;
    flex-direction: column
}

footer .footer-bottom{
    border-top: solid 1px rgba(255,255,255,0.2);
    font-size: 14px;
    margin: 30px 0;
}

footer .footer-bottom a{
    font-size: 14px;
    margin: 0 30px 0 0;
}


footer .secondary-nav{
    
}

footer .right-credits{
    border-top: solid 1px rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 30px 0 0 0;

}

footer .right-credits .credit{
    display: block;
    color: #828282;
    text-align: right;
    margin: 0;
}

footer .right-credits .credit a{
    margin: 0;
}


/*Static Pages */


/* Responsive */

@media (min-width: 2000px) and (max-width: 5000px){

    :root{
        --fixed-width: 1900px;
    }


    .master-head .mh-wrapper,
    .container{
        max-width: 2000px;
        margin: auto;
    }

    .layout-fixed {
        width: 96%;
        margin: auto;
        max-width: 1960px;
    }
}

@media (max-width: 1400px){
    
    .h1, h1{
        font-size: 56px;
    }
    .h2, h2{
       font-size: 40px;
    }
    .h3, h3{
       font-size: 36px;
    }
    .h4, h4{
       font-size: 26px;
    }
    .h5, h5{
       font-size: 20px;
    }
    .h6, h6{
       font-size: 16px;
    }
    
    .container{
        max-width: 1340px;
    }


    
    
    
}

@media (max-width: 1200px){
    
    :root{
        --basic-font-size:12px;
        --title-h1-font-size:60px;
        --title-h1-font-lineheight:60px;
        --title-h1-font-size-small:30px;
        --title-h1-font-lineheight-small:30px;
        --btn-font-size:14px;
    }
    
    body{
        font-size: var(--basic-font-size);
    }
    
    .h1, h1{
        font-size: 38px;
    }
    .h2, h2{
       font-size: 32px;
    }
    .h3, h3{
       font-size: 28px;
    }
    .h4, h4{
       font-size: 22px;
    }
    .h5, h5{
       font-size: 18px;
    }
    .h6, h6{
       font-size: 15px;
    }

    p{
        font-size: 15px;
    }
    
    .title{
        font-size: var(--title-h1-font-size);
        line-height: var(--title-h1-font-lineheight);
    }
    
    .title__small{
        font-size: var(--title-h1-font-size-small);
        line-height: var(--title-h1-font-lineheight-small);
    }
    
    .lead{
        font-size: 14px
    }
    
    .btn{
        font-size: 15px;
        padding: 10px 30px
    }

    .btn-icon{
        padding-right: 0;
    }
    

    .container {
        max-width: 900px;
    }


        .master-head .mh-wrapper,
        .page-banner .pb-wrapper,
        .properties .properties-wrapper
        section > .container,
        .property-full-details .details-wrapper,
        .head-office-info .info-wrapper{
            width: 900px;
        }
        .properties .properties-wrapper{
    width: 900px;
}
 

        .master-head .mh-wrapper{
            padding: 15px 0;
        }

        .master-head .main-site-links,
        .master-head .priamry-cta{
            display: none;
        }
    
    .master-head .secondary-links a{
        font-size: 11px
    }

    .master-head .brand-logo img{
        width: 100%;
    }
    
    .master-head .cta-buttons .expert-button{
        font-size: 14px;
        line-height: 14px
    }

    .page-banner .pb-wrapper{
        padding: 20px 0;
    }

    .page-banner .title{
        font-size: 36px;
    }

    .hero-banner .banner-visual{
        height: auto;
    }
    
    .hero-banner .banner-content{
        width: 400px;
        margin: 20px 30px;
        padding: 40px;   }

    
    .hero-banner .banner-block{
        height: auto;
        padding:  0    }
    .hero-banner .banner-text .title{
        font-size: 40px;
        line-height: 54px    }
    .hero-banner .banner-text .sub-heading{
        font-size: 18px    }

        

        .property-search .search-widget .form-control, .property-search .search-widget .form-select{
            font-size: 15px;
        }

        .property-search .search-widget .has-icon .form-select, .property-search .search-widget .has-icon .form-control{
            padding-left: 30px;
        }

        .implementation .feedback .feedback-text{
            font-size: 16px;
        }

        .page-banner .brief{
            font-size: 14px;
            line-height: 1.3;
        }

        .page-banner .properties-sort{
            border-top: solid 1px #000000;
            margin: 10px 0 0 0;
            padding: 15px 0 0 0;
        }

        .primary-services-list .accordion-button .service-icon img{
            width: 80px;
        }
    

        .properties .list-view{
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 20px;
            grid-row-gap: 30px;
        }

        .property .property-features{
            font-size: 12px;
            margin: 0;
        }

        .property-full-details .property-title{
            font-size: 26px;
        }

        .property-full-details .property-rate{
            font-size: 20px;
        }

        .property-full-details .property-cta .cta-label{
            font-size: 13px;
        }
    
        footer .footer-main{
            flex-direction: column;
            gap: 0;
        }

        footer .brand-logo{
            width: 180px;
        }
    
    footer .site-nav.nav-grid{
        grid-template-columns:1fr 1fr 1fr ;
        grid-row-gap: 40px;
        grid-column-gap: 10px;
    }
    
    .footer .connect{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .footer .connect .social{
        margin-bottom: 0
    }
    
    .footer .connect .logo .brand-logo{
        width: 100px
    }
    
    footer .connect-social{
        flex-direction: row;
        justify-content: space-between
    }
    
    footer nav.social-nav a:not(:last-child){
        margin-right: 10px
    }
    .property .property-image img{
        height: 250px;
    }
    footer .logo {
        margin-bottom: 40px;
    }
    
    
}

@media only screen and (max-width: 1170px) {
    
    :root{
        --layout-space:15px;
    }
    
  
    
    .section-head .title{
        font-size: 24px;
    }
    

    .services .primary-service .card-img-overlay{
        position: relative;
        padding: 0;
    }
 
    
}

@media (max-width:900px){
    
    :root{
        --basic-font-size:12px;
        --title-h1-font-size:40px;
        --title-h1-font-lineheight:40px;
        --title-h1-font-size-small:24px;
        --title-h1-font-lineheight-small:24px;
    }
    
 
    .title {
        font-size: var(--title-h1-font-size);
        line-height: var(--title-h1-font-lineheight);
    }
    
    .icon{
        width: 10px;
        height: 10px;
    }

    .icon__medium{
        width: 16px;
        height: 16px;
        background-size: 16px!important
    }

    .icon__large{
        width: 24px;
        height: 24px;
        background-size: 24px!important
    }

    .icon__xlarge{
        width: 40px;
        height: 40px;
        background-size: 40px!important
    }

    .icon__xxlarge{
        width: 64px;
        height: 64px;
        background-size: 64px!important
    }

    .master-head .mh-wrapper, .page-banner .pb-wrapper, .properties .properties-wrapper section > .container, .property-full-details .details-wrapper {
        width: 90vw;
    }
    .properties .properties-wrapper{
     width: 90vw;
    }
    .implementation{
        width: 90vw;
    }
    
    .master-head .header-end{
        padding: 0
    }
    
    .master-head .primary-nav{
        display: none
    }
    
    
    .master-head .menu-trigger{
        display: inline-block!important;
    }
    
    .master-head .menu-trigger .btn{
        margin: 0 0 0 10px;
        padding: 0;
        color: #fff
    }
    
    .master-head .menu-trigger .btn i::before{
        font-size: 30px
    }
    
    .master-head .cta-buttons .secondary-links a{
        display: block
    }
    
    .master-head .secondary-links{
        margin: 0 0 5px 0;
        padding: 0
    }
    
    .master-head .secondary-links li{
        margin:0 0 0 5px
    }
    
    .master-head .secondary-links .user-name{
        display: none
    }
    
    .master-head .secondary-links a{
        font-size: 9px
    }
    
    .hero-banner{
        padding: 0
    }
    
    .hero-banner .banner-block{
        display: flex;
        flex-direction: column-reverse
    }

    .page-banner .sub-nav {
        margin: 5px 0 0 0;
        overflow-x: scroll;
        flex-wrap: inherit;
        display: flex;
        width: 100%;
    }

    .property-search .search-widget .has-icon .form-select, .property-search .search-widget .has-icon .form-control {
        padding-left: 40px;
    }

    .property-full-details .property-primary-content .property-cta{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 20px 0 0 0;
    }

    .property-full-details .property-cta .cta-label{
        margin: 0 20px 0 0;
    }

    .property-full-details .property-primary-content,
    .property-full-details .property-visuals{
        flex-direction: column;
    }
    
    .property-full-details .property-enquiry{
        margin: 40px 0 0 0;
    }

    .head-office-info .info-visual{
        margin: 0  0 40px 0;
    }
    
    
}

@media (max-width:768px){
    
    :root{
        --basic-font-size:14px;
        --title-h1-font-size:30px;
        --title-h1-font-lineheight:30px;
        --title-h1-font-size-small:20px;
        --title-h1-font-lineheight-small:20px;
        --padding-x-sm:20px;
        --padding-y-sm:20px;
    }
    
    .space-y{
        padding: 50px 0;
    }

    .space-y--large{
        padding: 70px 0;
    }
    
    .h1, h1{
        font-size: 36px;
    }
    .h2, h2{
       font-size: 30px;
    }
    .h3, h3{
       font-size: 24px;
    }
    .h4, h4{
       font-size: 20px;
    }
    .h5, h5{
       font-size: 18px;
    }
    .h6, h6{
       font-size: 16px;
    }
    
    

    .layout-fixed,
    .container{ 
        max-width: 700px!important;
/*        padding: 0*/
    }
    
    .hide-sm{ display: none!important }
    .show-sm{ display: inline!important }
    
    .icon{
        width: 10px;
        height: 10px;
        background-size: 10px!important
    }
    
    .icon__medium{
    width: 14px;
    height: 14px;
    background-size: 14px!important
    }

    .icon__large{
        width: 20px;
        height: 20px;
        background-size: 20px!important
    }

    .icon__xlarge{
        width: 30px;
        height: 30px;
        background-size: 30px!important
    }

    .icon__xxlarge{
        width: 45px;
        height: 45px;
        background-size: 45px!important
    }
    
    .title {
        font-size: var(--title-h1-font-size);
        line-height: var(--title-h1-font-lineheight);
    }
    

    .master-head .mh-wrapper, 
    .page-banner .pb-wrapper, 
    .properties .properties-wrapper,
    section > .container,
    .property-full-details .details-wrapper,
    .head-office-info .info-wrapper {
        width: 94vw;
    }

    
    .master-head  .mh-wrapper{
        padding: 20px 0
    }
    
    .master-head .header-end{
        padding: 15px 0 10px 0
    }
    
    .master-head .brand-logo{
        margin: 0;
        padding: 0
    }
    
    
    
    
    .hero-banner .banner-block{
        grid-template-columns: 1fr;
        height: auto;
        padding: 0
    }
    
    .hero-banner .banner-content{
        width: auto;
        padding: 40px 40px 40px 40px;
        margin: 30px 0 0 0;
    }
    
    .hero-banner .banner-text .title{
        font-size: 30px;
        line-height: 30px
    }
    
    .hero-banner .banner-text .sub-heading{
        font-size: 13px
    }
    

    .property-search{
        padding: 0 0 30px 0;
    }

    .featured-properties{
        padding: 30px 0;
    }

    .featured-properties .section-head{
        margin-bottom: 30px;
    }

    .implementation .feedback::before{
        width: 100%;
        height: 1px;
    }

    .primary-services-list .accordion .accordion-item .accordion-button,
    .primary-services-list .accordion .accordion-item .accordion-body{
        padding: 20px 30px;
    }

    .primary-services-list .accordion-flush>.accordion-item .accordion-button{
        font-size: 20px;
        line-height: 1.4;
    }

    .primary-services-list .accordion-button .service-icon img{
        width: 60px;
    }
    
    .market-places ul.logos{
        flex-wrap: wrap;
    }

    .market-places ul.logos li{
        width: 50%;
        display: flex;
        align-items: center;
    }

    .property .property-title{
        font-size: 16px;
        line-height: 1.2;
        margin: 0 0 5px 0;
    }

    .property .property-rate{
        font-size: 14px;
    }

    .property-full-details .property-title {
        font-size: 22px;
    }
    
    .property-full-details .primary-info{
        width: 100%;
        border-bottom: solid 1px #000000;
        margin: 0 0 10px 0;
    }
    

    .property-full-details .property-primary-content .primary-features{
        margin: 0;
        padding: 0;
        justify-content: center;
    }


    .property-full-details .property-visuals ul.options-bar{
        position: relative;
        padding: 10px 0;
        justify-content: center;
        border-bottom: solid 1px #e0e0e0
    }

    section.services .office-photo{
        height: 20vh;
    }
    
    section.services .office-photo img{
        width: 100%;
        height: auto;
        transform: translateY(-5%);
    }
    
    footer::after{
        background-size: cover;
    }

    footer .footer-bottom{
        padding: 40px 0;
    }

    footer .right-credits .credit{
        text-align: left;
        margin: 15px 0 0 0;
    }
    
    .dialog-valuation .valuation-container, .dialog-call-request .request-container{
        width: 90vw;
    }
   
    .property-full-details .property-visuals .property-gallery .property-img {
    height: 250px;
    width: 100%;
}
    
    
}


@media (max-width:480px){

    .layout-fixed, 
    .container,
    .master-head .mh-wrapper, 
    .page-banner .pb-wrapper, 
    .properties .properties-wrapper, 
    section > .container,
    .head-office-info .info-wrapper,
    .property-full-details .details-wrapper{
        width: 90vw;
    }

    .master-head .brand-logo img {
        width: 200px;
    }
    
    .master-head .search{
        display: none;
    }

    .master-head .cta-buttons .list_icons img{
        width: 34px;
    }

    .property-search .search-widget {
        min-height: 60vh;
    }
    

    .property-search .search-widget .widget-head{
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 15px 0;
    }

    .property-search .search-widget .widget-title{
        font-size: 20px;
        line-height: 1.2;
        margin: 0 0 10px 0;
    }

    .hero-banner .content-overlay{
        position: relative;
    }

    .implementation .feedback{
        padding-bottom: 110px;
    }

    .implementation .feedback .feedback-container{
        padding: 40px;
    }

    .implementation .feedback .client-info{
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
    }

    .implementation .feedback .rating{
        height: 40px;
        padding: 10px 60px 10px 25px;
        font-size: 18px;
        line-height: 1.2;
    }

    .implementation .feedback .swiper-controls{
        left: 0;
        right: inherit;
    }

    .property-full-details .primary-info{
        flex-direction: column;
        border-bottom: solid 1px #000000;
    }

    .property-full-details .property-primary-content .property-cta {
        width: 100%;
        padding: 10px 20px;
        text-align: center;
    }

    .property-full-details .property-primary-content, .property-full-details .property-visuals {
        flex-direction: column;
    }

    .property-full-details .primary-info .back-btn{
        display: none;
    }

    .property-full-details .property-primary-content .primary-features{
        border-top: solid 1px #000000;
    }

    .property-full-details .property-primary-content .primary-features li{
        padding:10px 20px;
    }
    

    footer .logo{
        margin-bottom: 40px;
    }

    footer .site-nav.nav-grid,
    .dialog-nav .nav-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        grid-column-gap: 0;
    }

    

    footer .footer-bottom a {
        font-size: 14px;
        margin: 10px 5px;
        display: inline-block;
    }

    .dialog-nav .nav-container {
        width: 80vw;
    }

    .dialog-nav .nav{
        padding: 20px;
        grid-row-gap: 0;
    }

    .dialog-nav .social .nav{
        padding: 20px 0;
        margin: 0 0 0 10px;
    }

    .dialog-nav .social a{
        margin: 0 5px;
    }

    .dialog-nav .social  a img{
        width: 20px;
    }
   

    

}
@media (max-width:650px) {
    .properties .list-view{
        grid-template-columns: 1fr;
        /* grid-column-gap: 20px; */
        grid-row-gap: 30px;
    }
}

/* Carousel */

/* Owl Controls */
.owl-theme .owl-dots .owl-dot span{
    text-indent: -9999px;
    padding: 0;
    height: 10px;
    width: 10px;
    border: 0;
    border-radius: 40px;
    margin: 0 3px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1)
    transition: .3s;
}

.owl-theme .owl-dots .owl-dot.active span{
    width: 20px;
    background: #fff;
}

.owl-theme .owl-dots .owl-dot.active span{
    background:#fff; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5)
}

.owl-carousel .owl-nav .owl-prev, 
.owl-carousel .owl-nav .owl-next {
    font-family: 'Linearicons-Free'!important;
    margin: 0;
    color: #9e9e9e!important;
}

.owl-carousel .owl-nav .owl-prev:hover, 
.owl-carousel .owl-nav .owl-next:hover{
    background:transparent ;
    color: #ea1b35!important;
}

.owl-carousel  .owl-nav .owl-prev:before {
    content: '\e875';
}
.owl-carousel  .owl-nav .owl-next:before {
    content: '\e876';
}


/**********************************************/
/** Code by cGFydmF0aGFyZWRkeV85MDU5MDcyNTU4 **/
/**********************************************/
