@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*** GENERIC CSS ***/
html,body {
    background: #fff;
}

* {
    font-family: "Poppins", sans-serif;
    font-weight:400;
}

body {
    font-size: 16px;
    color: #555555;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #24a9e2;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:#555555;
    font-weight:600;
}

h1 {
    font-size:54px;
    line-height: 1.5;
}

h2 {
    font-size: 48px;
    line-height: 1.4;
}

h3 {
    font-size:36px;
    line-height: 1.5;
}

h4 {
    font-size:30px;
    line-height: 1.5;
}

h5 {
    font-size:24px;
    line-height: 1.5;
}

p {
    color: #525252;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 2;
}

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

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

.img-rounded {
    border-bottom-right-radius: 50%;
}

.btn-default {
    border-radius: 0px;
    color: #aa272f;
    border: 1px solid #aa272f;
    outline: 0px;
    padding: 0px 40px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    line-height: 49px;
    display: inline-block;
    letter-spacing: 0px;
    transition: all .4s ease-in-out;
}

.btn-default:hover,.btn-default.active {
    background: #aa272f;
    border-color: #aa272f;
    color: #fff;
}

.btn-default.blackfill {
    border-color: #000;
    color: #000;
    background: none;
}

.btn-default.blackfill:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.btn-default.white {
    background: none;
    border-color: #fff;
    color: #fff;
}

.btn-default.white:hover {
    background:#fff;
    color:#000;
}

.btn-default.whitefill {
    background: #fff;
    border-color: #fff;
    color:#000;
}

.btn-default.whitefill:hover {
    background: #525252;
    border-color: #525252;
    color:#fff;
}

.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.section-title h6 {
    color: #aa272f;
    font-size: 20px;
    margin-bottom: 15px;
    margin: 3px 0px 10px 0px;
    text-transform: uppercase;
}

.section-title h2 {
    color: #555555;
    line-height: 1;
    font-size: 60px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title.small h2 {
    font-size: 35px;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1240px;
}

.section-title.white h6,
.section-title.white h2 {
    color: #fff;
}


.uppercase {
    text-transform: uppercase;
}
/*** HEADER ***/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding:0px 15px;
    z-index: 99;
    overflow: visible;
    transition: all .3s;
}

@media only screen and (min-width:992px) {
.header .navbar-collapse {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}
}

.header.fixed {
    position: fixed;
    z-index: 999;
    background:#aa272f;
    padding: 6px 15px;
}

.header.fixed .navbar-brand.logo a {
    font-size: 21px;
    line-height: .55;
}

.header.fixed .navbar-brand.logo a span {
    font-size: 7px;
    letter-spacing: 0.5em;
}

.navbar-brand {
    position: relative;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.header .navbar-brand.logo img {
    max-height: 100px;
}

.header.fixed .navbar-brand.logo img {
    max-height: 75px;
}

.navbar-area {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-nav {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
}

.main-nav .navbar {
    transition: all ease .5s;
    z-index: 2;
    position: unset;
    padding: 0
}

.main-nav .navbar ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
    justify-content: center;
    align-items: center;
}

.main-nav .navbar .navbar-nav .nav-item {
    position: relative;
    padding: 0px 10px;
    transition: all .3s;
}

.header.fixed .main-nav .navbar .navbar-nav .nav-item  {
    padding: 0px 12px;
}

.main-nav .navbar .navbar-nav>.nav-item:last-child {
    padding-right: 0px;
}

.main-nav .navbar .navbar-nav .nav-item.lbtn .nav-link::after {
    display: none !important;
}

.main-nav .navbar .navbar-nav .nav-item.lbtn .nav-link {
    padding: 0px 23px;
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    text-align: center;
    transition: all 0.6s ease;
    flex-shrink: 0;
    min-width: 117px;
    margin-left: 13px;
    line-height: 51px !important;
}

.main-nav .navbar .navbar-nav .nav-item.lbtn:hover> .nav-link {
    background: #fff !important;
    color: #000 !important;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding: 0px 0px;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
}

.main-nav .navbar .navbar-nav>.nav-item.menu-item-has-children>.nav-link {
    padding-right: 12px;
}

.main-nav .navbar .navbar-nav>.nav-item.menu-item-has-children>.nav-link::before {
    content: "";
    display: inline-block;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: 42%;
    right: 0px;
}


.main-nav .navbar .navbar-nav>.nav-item>.nav-link:after {
    display: block;
    background: #ffffff;
    width: 0%;
    content: "";
    height: 2px;
    margin: 0;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.6s ease;
    border: none;
    bottom: -15px;
}

.main-nav .navbar .navbar-nav>.nav-item:hover>.nav-link:after, .main-nav .navbar .navbar-nav>.nav-item.active .nav-link:after {
    width: 100%;
    opacity: 1;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .nav-link:focus,
.main-nav .navbar .navbar-nav .nav-item .nav-link.active {
    background: none !important;
    color: #fff !important;
}

.main-nav .navbar .navbar-nav .nav-item .nav-link i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 4px
}

.main-nav .navbar .navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0
}

.header.fixed .main-nav .navbar .navbar-nav>.nav-item:hover>.nav-link,
.header.fixed .main-nav .navbar .navbar-nav>.nav-item.active>.nav-link {
    color: #fff;
}

.header.fixed .main-nav .navbar .navbar-nav>.nav-item.lbtn:hover>.nav-link,
.header.fixed .main-nav .navbar .navbar-nav>.nav-item.lbtn.active>.nav-link {
    color: #000 !important;
}

.header.fixed .main-nav .navbar .navbar-nav>.nav-item>.nav-link {
    color: #fff !important;
    font-size: 14px;
}

.navbar-expand-lg .navbar-nav>.nav-item {
    position: relative;
}

.navbar-expand-lg .navbar-nav>.nav-item:hover .dropdown-menu,
.navbar-expand-lg .navbar-nav>.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-50%);
    border-radius: 0;
}

.navbar-expand-lg .navbar-nav>.nav-item .dropdown-menu,
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu {
    padding: 25px 0 0;
    list-style: none outside none;
    margin: 0;
    position: absolute;
    left: 50%;
    width: auto;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 30px);
    transition: transform .3s, opacity .3s, visibility, .3s;
    display: block;
    min-width: 200px;
    background: none !important;
    border: none;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li {
    background: none !important;
    text-align: center;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li>a.nav-link {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    text-transform: inherit;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    padding: 0px 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 41px;
    display: block;
    text-transform: uppercase;
    text-align: center;
    color: #fff !important;
    background: rgba(0, 0, 0, 1) !important;
}

.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li:hover>a.nav-link,
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li.active>a.nav-link {
    background: #aa272f !important;
    color: #fff !important;
}

.header .navbar-nav.rt>.nav-item.tel .nav-link {
    display: flex;
    align-items: center;
    gap: 17px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.header .navbar-nav.rt>.nav-item.tel:hover .nav-link,
.header .navbar-nav.rt>.nav-item.tel:focus .nav-link {
    background: none !important;
    color: #fff !important;
}

.header .navbar-nav.rt>.nav-item.tel .nav-link i {
    margin-right: 0px;
    margin-top: -7px;
    font-size: 24px;
    vertical-align: middle;
}

.header .navbar-nav.rt>.nav-item:last-child {
    margin-left: 40px;
}

.header .navbar-nav.rt>.nav-item:last-child .nav-link {
    padding-right: 0px !important;
}

.header .navbar-nav.rt>.nav-item.logo-agency {
    margin-left: 10px;
}

.header .navbar-nav.rt>.nav-item.logo-agency img {
    height: 35px;
}


.menu-btn-desktop {
    display: inline-block;
    border: 1px solid #bbbbbb;
    padding: 4px 7px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #4d4d4d;
    text-transform: uppercase;
}

.menu-btn-desktop span {
    height: 3px;
    width: 100%;
	background:#fff;
    display: inline-block;
    margin: 3px 0px;
    float: right;
    transition: all .3s;
    border-radius: 3px;
}

.menu-btn-desktop div {
    display: inline-block;
    min-width: 37px;
}

.header .nav-item .menu-btn-desktop {
    border: none;
    padding: 0;
    background: none !important;
    margin-left: 15px;
}

.header .nav-item .menu-btn-desktop div {
    width: 42px;
}

.header .nav-item .menu-btn-desktop span {
    border-radius: 0px;
    margin: 5px 0px;
}

.header .nav-item .menu-btn-desktop span:nth-child(1) {
    width: 19px;
}

.header .nav-item .menu-btn-desktop span:nth-child(2) {
    width: 100%;
}

.header .nav-item .menu-btn-desktop span:nth-child(3) {
    width: 32px;
}

section {
    overflow: hidden;
}

/*** HERO ***/
.hero {
    height: 86vh;
    position: relative;
    overflow: hidden;
}

.hero-content .container {
    max-width: 1170px;
}

.hero-content {
    position: absolute;
    z-index: 5;
    width: 100%;
    bottom: 0px;
    left: 0;
    padding: 61px 0px;
    z-index: 9999;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1;
    width: 100%;
    text-align: center;
    color: #aa272f;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-content h6 {
    color: #fff;
    letter-spacing:0px;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
    text-align: center;
}

.hero-content .btn-default {
    background:none;
    border: 0px;
    line-height: 37px;
    color: #fff;
    letter-spacing: 0;
    padding: 10px 10px;
    text-align: center;
    width: 100%;
    margin-top: 15px;
    position: relative;
}

.hero-content .btn-default::after {
    width: 50px;
    content: '';
    position: absolute;
    top: 95%;
    left:calc(50% - 25px);
    height: 2px;
    background: #fff;
}

.hero-content .btn-default:hover {
    background: #fff !important;
    color: #aa272f !important;
}

.hero-content .btn-default:hover::after {
    display: none;
}

.hero video {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    background: linear-gradient(180deg,#000c,#0000 15.13%),linear-gradient(180deg,#0000 46.88%,#0009);
    z-index: 4;
    display: none;
}

.hero-content .bootstrap-select>.dropdown-toggle {
    background: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    border: none !important;
    padding: 6px 0px 9px 0px;
    color: #fff;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle:after {
    display: none;
}

.hero .container ,
.hero-content .contianer{
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #fff;
}

.hero-content .bootstrap-select {
    border: none;
    padding: 0;
    color: #fff !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: url(../img/dd-arrow.webp) no-repeat center right 4px transparent !important;
    min-width: 100%;
    width: 100% !important;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    text-transform: uppercase;
    outline: none !important;
}

.bootstrap-select .dropdown-menu li a {
    color: #000 !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-transform: uppercase;
}

.bootstrap-select .dropdown-toggle .filter-option {
    color: #000 !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-transform: uppercase;
}

.hero-content .lists {
    display: flex;
    align-items: center;
}

.hero-content .lists .search-icon {
    width: 4%;
    margin-right: 5%;
    max-width: 32px;
}

.hero-content .bootstrap-select {
    width: 11.62% !important;
    min-width: 11.62% !important;
    margin: 0 .5% !important;
    padding-top: 5px !important;
}

.hero-content .bootstrap-select:nth-child(2) {
    width: 19% !important;
    min-width: 19% !important;
}

.hero-content .bootstrap-select:nth-child(3) {
    width: 18% !important;
    min-width: 18% !important;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #000;
    text-transform: capitalize;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
}

.hero-content .bootstrap-select {
    padding: 0;
    color: #000 !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    background: none!important;
    min-width: 100%;
    width: 100% !important;
    border: 1px solid #000;
    border-radius: 0;
    background: url(../img/dropdown-arrow.svg) 95% 50% no-repeat !important;
    background-size: auto 15px !important;
    outline: none !important;
    position:relative;
}

.bootstrap-select .dropdown-menu li a {
    color: #000 !important;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.bootstrap-select .dropdown-toggle .filter-option {
    color: #000 !important;
    font-size: 15px;
    font-weight: 400;
    padding: 0px 10px;
    text-transform: uppercase;
}



.bootstrap-select .dropdown-menu.inner {
    position: absolute;
    z-index:9999;
    top: 0px;
    left: 0px;
}

.hero-content .btn-default:hover {
    background: #aa272f;
    color: #fff;
}

.hero-content .btn-default.active {
    background: #aa272f;
    color: #fff;
}

#hero .sd-button a:hover {
    opacity: 0.7;
}

.hero .banner-btn i {
    font-size: 40px;
}

.hero-content * {
    color: #000;
}

.social-fix {
    position: fixed;
    right: 35px;
    top: 50%;
    z-index: 15;
    transform: translate(0, -50%);
}

.social-fix ul {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.social-fix ul li {
    margin: 5px 0;
}

.social-fix  ul li.st-divider {
    background-color: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 54px;
}

.social-fix  ul li:first-child a {
    font-size: 14px;
}

.social-fix  ul li a {
    font-size: 20px;
    display: flex;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    color: #000;
}

.social-fix  ul li .ai-font-envelope-f {
    font-size: 12px;
}


/*** ***/
.bgblack-img {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.bgblack-img .bgimg {
    background: url(../img/bg-feature.jpg) 50% 50% no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    opacity: 0.15;
    filter: grayscale(1);
}

.bgblack-img .bgimg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0, 0, 0) 28%, rgba(0, 0, 0, 0) 100%);
    z-index: 4;
}

/*** featured-properties ***/
.featured-properties {
    position: relative;
    overflow: hidden;
    z-index: 4;
    padding-bottom: 80px;
}

.featured-properties .property-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-properties .img {
    position: relative;
}

.featured-properties .img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.featured-properties .section-title {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-grow: 1;
    padding-left: 40px;
    padding-bottom: 80px;
}

.featured-properties .property-box .property-infos-ctn {
    flex-grow: 1;
    margin-bottom: 20px;
}

.featured-properties h3 {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.featured-properties p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    margin: 15px 0;
}

.featured-properties .custom-nav {
    position: absolute;
    bottom: 80px;
    right: 30%;
    z-index: 5;
}

.featured-properties .custom-nav button {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #000 !important;
    padding: 10px 12px 6px 12px;
    cursor: pointer;
    font-size: 20px;
}

.featured-properties .custom-nav button:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.251);
    padding-left: 0;
}

.featured-properties .property-box {

}

.featured-properties .property-box img {
    aspect-ratio: 1 / 0.85;
}

.featured-properties .property-box .section-title {
    padding: 15px 0;
}

/*** about ***/
.about {
    padding: 111px 3.125% 0;
    padding-bottom: 0px;
    position: relative;
}

.about .mwidth {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    z-index: 9;
    background: #fff;
    display: block;
    border-top-right-radius:55%;
}

.about .container {
    margin: 0 auto;
    width: 100%;
    max-width: 1240px;
}

.about p {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin: 15px 0;
    display: inline-block;
    width: 100%;
}

.about .img {
    width: 42%;
}

.about .right {
    width: 58%;
}

.about .btn-default {
    margin-top: 0px;
}

.about .section-title {
    padding-left: 35px;
    margin: 0;
}

.about .bgimg {
    position: absolute;
    background: url(../img/offcanvas-bg.webp);
    width: 15%;
    height: calc(100% - 64px);
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    background-size: cover;
    background-position: right top;
    filter: grayscale(1);
}

.about .bgimg::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}

/*** meet-team ***/
.meet-team {
    position: relative;
    overflow: hidden;
    margin-top: 145px;
    padding-bottom: 135px;
}

.meet-team .zindex {
    position: relative;
    z-index: 5;
}

.meet-team .sleft {
    padding-left: 11.25%;
}

.meet-team:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 100px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0, 0, 0) 28%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

.meet-team:before {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 100px);
    position: absolute;
    left: 0;
    top: 100px;
    background: #000;
    z-index: 2;
}

.meet-team .bgimg {
    background: url(../img/bg-feature.jpg) 50% 50% no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    top: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    z-index: 2;
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0.15;
    filter: grayscale(1);
    height: 100%;
}

.teambox {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.teambox .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.teambox .img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    object-position: center top;
}

.teambox:hover .img:after {
    opacity: .9;
}

.teambox .img::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
    transition: all 0.6s ease;
}

.teambox .text {
    position: absolute;
    z-index: 7;
    bottom: 0;
    width: 100%;
    padding: 40px;
}

.teambox h3 {
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    margin-bottom: 0;
}

.teambox h4 {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin: 0;
    color: #fff;
}

.meet-team .btn-default {
    margin-top: 65px;
    min-width: 220px;
}

.meet-team .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    z-index: 99;
    color: #fff;
    top: 27%;
    font-size: 22px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.6s ease;
    background: none !important;
}

.meet-team .owl-theme .owl-nav [class*=owl-].owl-prev {
    left: -75px;
}

.meet-team .owl-theme .owl-nav [class*=owl-].owl-next {
    right: 75px;
}


.max-container {
    max-width: 1500px;
    display: block;
    margin: 0 auto;
    width: 100%;
}

/*** featured-communities ***/
.featured-communities {
    padding-top: 50px;
    margin-top: 52px;
    position: relative;
    padding-bottom: 100px;
}

.featured-communities .max-container {
    background: #fff;
    position: relative;
    z-index: 8;
    border-top-left-radius:25%;
}

.featured-communities .bgimg {
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    max-height: 320px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.25;
    background: url(../img/offcanvas-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    filter: grayscale(1);
}

.featured-communities .section-title {
    padding-top: 90px;
    padding-bottom: 20px;
}

.comunity-box {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.comunity-box .img {
    position: relative;
    overflow: hidden;
}

.comunity-box .img:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    z-index: 9;
    content: "";
    top: 0;
    left: 0;
    opacity: 0.3;
    transition: all 0.6s ease;
}

.comunity-box:hover .img:after {
    opacity: 0.75;
}

.comunity-box .img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.3;
}

.comunity-box .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    z-index: 9;
    padding: 10px;
    text-align: center;
}

.comunity-box .text h3 {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin: 0;
}

.comunity-box .text span {
    color: #000000;
    background: #fff;
    display: block;
    height: 0;
    width: 100%;
    max-width: 164px;
    text-align: center;
    line-height: 51px;
    margin-top: 10px;
    transition: all 0.6s ease;
    letter-spacing: 0.04em;
    overflow: hidden;
    opacity: 0;
}

.comunity-box:hover .text span {
    height: 51px;
    opacity: 1;
}

.featured-communities .btn-default {
    margin-top: 60px;
}






/*** properties ***/
.properties {
    padding-top: 81px;
    padding-bottom: 81px;
}

.propertybox {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.propertybox .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.propertybox .img:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(2, 0, 36) 0%, rgba(9, 9, 121, 0) 0%, #000 100%);
    z-index: 3;
    transition: all 0.6s ease;
    opacity: 0;
}

.propertybox .img:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    background-size: 100%;
    z-index: 2;
}

.propertybox:after {
    display: block;
    width: 0;
    background: #000;
    height: 12px;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    max-width: 238px;
    transition: all 0.6s ease;
}

.propertybox:hover:after {
    width: 100%;
}

.propertybox:hover .img:before {
    opacity: 1;
}

.propertybox .img img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / .7;
}

.propertybox .text {
    position: absolute;
    left: 0;
    bottom: 33px;
    width: 100%;
    padding: 0 33px;
    z-index: 6;
}

.propertybox .text h3 {
    color: #fff;
    font-size: 30px;
    letter-spacing: 0.14em;
    margin: 0;
}

.propertybox .text p {
    font-size: 16px;
    letter-spacing: 0.14em;
    color: #fff;
    text-transform: uppercase;
    margin: 5px 0;
}

.propertybox .text ul {
    display: flex;
    margin-top: 4px;
    list-style: none;
    padding: 0;
    color: #fff;
    margin: 0;
}

.propertybox .text ul li {
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.502);
    letter-spacing: 0.14em;
}

.propertybox .text ul li:first-child {
    border-left: 0;
    padding-left: 0;
}

.propertybox span {
    width: 100%;
    color: #fff;
    position: absolute;
    display: block;
    max-width: 133px;
    right: 33px;
    bottom: 0;
    background: transparent;
    border: 2px solid #ffffff;
    font-size: 13px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.6s ease;
    line-height: 42px;
    letter-spacing: 0.14em;
}

.properties .arrowstyle {
    margin-top: 40px;
}

.properties .arrowstyle button {
    background: none !important;
    margin: 0;
    border: none !important;
    margin: 0px 13px;
    margin-top: 10px;
}

.properties .arrowstyle .btn-default {
    vertical-align: top;
}

.properties .arrowstyle i {
    font-size: 34px;
    color: #999999;
}


/*** reviews ***/
.reviews {
    padding-top: 30px;
    background: #aa272f;
    position: relative;
    padding: 72px 0;
}

.reviews .bgimg {
    z-index: 1;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
    background: url(../img/testimonials-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.reviews .space {
    padding-left: 70px;
    padding-right: 99px;
    border-left: 1px solid rgba(255, 255, 255, 0.102);
}

.reviews .section-title h2 {
    font-weight: 500;
    font-size: 35px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.reviews .custom-nav {
    margin-bottom: 15px;
    margin-top: 100px;
}

.reviews .custom-nav button {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    padding: 10px 12px 6px 12px;
    cursor: pointer;
    font-size: 20px;
}

.reviews .custom-nav button:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.251);
    padding-left: 0;
}

.reviews p {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 58px;
    font-style: italic;
    color: #fff;
}   

.reviews h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 48px;
    color: #fff;
}

.reviews .btn-default {
    margin-top: 15px;
}

/*** ctas ***/
.ctas {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background:#000;
}

.ctas .bgimg {
    z-index: 1;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    background: url(../img/cta-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.ctas a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: #000;
    background: #fff;
    padding: 35px 20px;
    transition: all 0.6s ease;
}

.ctas a:hover {
    background: #aa272f;
    color: #ffffff;
    border-color: #aa272f;
}

.ctas a span {
    display: inline-block;
    width: 100%;
}

/*** news ***/
.news {
    margin-top: 143px;
    position: relative;
}

.news .bgimg {
    display: block;
    content: "";
    width: 20%;
    height: 93%;
    position: absolute;
    right: 0;
    top: 2%;
    opacity: 0.25;
    filter: grayscale(1);
    background: url(../img/offcanvas-bg.webp);
}

.news .section-title {

}

.news .max-container {
    background: #fff;
    position: relative;
    z-index: 4;
    padding-top: 40px;
}

.news .container {
    position: relative;
    z-index: 5;
}

.news .bgblog {
    position: relative;
}

.newsbox:last-child {
    margin-bottom: 0;
}

.newsbox {
    display: flex;
    align-items: center;
    color: #000;
    margin-bottom: 18px;
}

.newsbox .img-rounded {
    border-bottom-right-radius: 35%;
}

.newsbox:hover .img img {
}

.newsbox .img img {
    transition: all .3s;
    position: relative;
    aspect-ratio: 1 / .6;
    object-fit: cover;
}

.newsbox .img {
    position: relative;
    flex-shrink: 0;
    width: 36%;
    overflow: hidden;
}

.newsbox .text {
    width: 64%;
    padding-left: 47px;
}

.newsbox h3 {
    color: #555555;
    font-weight: 500;
    font-size: 23px;
    text-transform: uppercase;
}

.newsbox p {
    color: #222222;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin: 20px 0;
    font-weight: 500;
}

.newsbox .text span {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

/*** facebookinfo ***/
.facebookinfo {
    padding: 131px 0px 0px 0px;
}

.facebookinfo .fb {
    display: inline-block;
    vertical-align: middle;
    max-height: 44px;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(92deg) brightness(102%) contrast(170%);
}

.facebookinfo .tstyle {
    color: #000;
    display: inline-block;
    vertical-align: middle;
    margin-left: 41px;
    font-size: 25px;
    font-weight: 500;
    line-height: 0.9;
    top: 7px;
    position: relative;
}

.facebookinfo .tstyle span {
    font-size: 17px;
    font-weight: 400;
}

.facebookinfo .rt .btn-default {
    min-width: 183px;
    text-align: center;
    line-height: 48px;
    border-color: #000;
    color: #000;
}

.facebookinfo .rt .btn-default:hover {
    color: #fff;
}

.facebookinfo .rt .btn-default i {
    margin-right: 3px;
    font-size: 16px;
}

.facebookbox {
    display: inline-block;
    width: 100%;
    color: #767676;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.facebookbox .img {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.facebookbox h3 {
    color: #555555;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.facebookbox h3 span {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0px;
}

.facebookbox .fa {
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 43px;
    z-index: 6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.facebookbox .img img {
    transition: all .3s;
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.facebookbox p {
    color: #555555;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-top: 30px;
    font-weight: 500;
}

/*** socialinfo ***/
.socialinfo {
    position: relative;
    padding: 80px 0 50px 0;
    overflow: hidden;
}

.socialinfo .space>div {
    position: relative;
}

.socialinfo .space>div:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
}

.instauser {
    height: 100%;
    display: flex;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
}

.instauser i {
    font-size: 59px;
    color: #000;
}

.instauser h3 {
    position: relative;
    display: block;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #000;
    margin: 25px 0 30px;
}

.instauser p {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #000;
    font-weight: 500;
}

.socialinfo .faceimg {
    display: inline-block;
    width: 100%;
    position: relative;
    background: #ffffff;
}

.socialinfo .faceimg img {
    transition: all .3s;
    width: 100%;
}

.socialinfo .faceimg:hover img {
}

.socialinfo .btn-default i {
    margin-right: 5px;
    font-size: 22px;
    vertical-align: middle;
    top: -3px;
    position: relative;
}

.socialinfo .btn-default {
}

.socialinfo .down {
    padding: 59px 15px;
}


/*** contactform ***/
.contactform {
    position: relative;
}

.contactform .bgimg {
    width: 100%;
    position: absolute;
    height: 443px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../img/contact-bg.webp) 50% 50% no-repeat;
    background-size: cover;
    overflow: hidden;
}

.contactform .bgimg::after {
    display: block;
    content: "";
    background: #000000;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

.contactform .section-title {
    position: relative;
    background: #000;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 60px;
    overflow: hidden;
}

.contactform .bgoverlay {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
    background: url(../img/form-bg.webp) 50% 50% no-repeat;
    background-size: cover;
}

.contactform .container {
    position: relative;
    z-index: 3;
}

.contactform .section-title h2 {
    margin-bottom: 40px;
}

.contactform label {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}

.contactform .form-control {
    width: 100%;
    background: transparent;
    border: none;
    height: 25px;
    color: #ffffff;
    border-radius: 0px;
    padding: 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    outline: none !important;
    box-shadow: none !important;
    margin-bottom: 15px;
    font-size: 15px;
}

.contactform .form-control::-webkit-input-placeholder {
    color: #fff;
}

.contactform .form-control:focus {
    color: #fff;
    border: none;
    background: transparent;
    border-bottom: 1px solid #ffffff;
}

.contactform .btn-default {
    font-size: 13px;
    letter-spacing: 0.14em;
    line-height: 44px;
    padding: 3px 30px;
    min-width: 220px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 16px;
    margin-top: 20px;
}

.contactform textarea.form-control {
    margin-top: 0px;
    margin-bottom: 30px;
    resize: none;
    height: 60px;
}

/*** footer ***/
.footer {
    position: relative;
    padding: 80px 0 0 0;
}

.footer .logo {
    display: block;
    color: #555555;
    font-size: 32px;
    font-weight: 400;
    line-height: .5;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.footer .logo span {
    color: #555555;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.5em;
    font-weight: 400;
    transition: all 0.6s ease;
}

.footer h3 {
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 20px;
}

.footer .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.footer .links ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #222222;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer .links ul li a:hover {
    color: #555;
}

.footer .tp {
    margin-top: 45px;
}

.footer p {
    color: #222222;
    font-size: 15px;
    line-height: 1.6;
}

.footer p a {
    color: #222222;
}

.footer p a:hover {
    color: #555;
}

.footer form {
    position: relative;
}

.footer .form-control {
    position: relative;
    width: 100%;
    display: inline-block;
    border-radius: 0;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: #828282;
    color: #000;
    outline: none;
    border: 1px solid #2f2f2f;
    background: transparent;
    padding: 12px 15px;
    box-shadow: none !important;
    outline: none !important;
    margin: 0px;
}

.footer .btn-default {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    line-height: unset;
    padding: 0 20px;
}

.footer .submitbtn {
    position: absolute;
    top: 0;
    right:0;
    width: 56px;
    line-height: 65px;
    height: 57px;
    border: none;
    color: #fff;
    font-size: 20px;
    background: #000;
}

.footer .social-items {
    margin-top: 50px;
}

.footer .social-items a {
    display: inline-block;
    width: 47px;
    line-height: 56px;
    height: 47px;
    background: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 21px;
    color: #ffffff;
    margin: 0 5px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.footer .social-items a:hover {
    opacity: 0.7;
}

.footer .copy p {
    margin-top: 50px;
    padding: 20px 0px;
    border-top: 1px solid #c3c3c3;
}

.footer .copy img {
    margin-left: 5px;
}


.backtotop {
    appearance: none !important;
    outline: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px 0px;
    width: 60px;
    height: 60px;
    background-color: #000000;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 500;
    border-radius: 0px;
    border: 0;
    font-size: 19px;
    text-align: center;
    color: #ffffff;
    transition: all 150ms;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0);
    pointer-events: none;
    opacity: 0  ;
}

.backtotop.active {
    opacity: 1;
    pointer-events: all;
}

.backtotop:hover {
    background-color: #4f4f4f;
    color: #ffffff;
    border-color: #4f4f4f;
}

/*** topbar ***/
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px 10px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    -webkit-box-shadow: 0 2px 7px rgba(0, 1, 1, .09);
    -moz-box-shadow: 0 2px 7px rgba(0,1,1,.09);
    box-shadow: 0 2px 7px rgba(0, 1, 1, .09);
}

.topbar a:first-child,
.topbar a:nth-child(3) {
    width: 22.18%;
    text-align: center;
}

.topbar a {
    color: #555 !important;
}

.topbar .tel {
    color: #555555;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}

.topbar .email {
    color: #555555;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}


.menu-btn {
    display: inline-block;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.menu-btn:hover {
    color: #000;
}

.menu-btn span {
    height: 3px;
    width: 100%;
	background:#fff;
    display: inline-block;
    margin: 3px 0px;
    float: right;
    transition: all .3s;
    border-radius: 3px;
}

.menu-btn div {
    display: inline-block;
    min-width: 37px;
}

.menu-btn span:nth-child(2) {
    width: 75%;
}

.menu-btn span:last-child {
    width: 55%;
}

.side-menu {
	position:fixed;
    left: -100%;
    width: 240px;
    top: 0;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	z-index:999999;
    overflow: hidden;
    overflow-y: scroll;
    height: 100vh;
    background: #fff;
}

.side-menu .bgblack {
    padding: 0px;
}

.side-menu .img img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.side-menu.intro {
	left:0;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
    margin-bottom: 10px;
}

.side-menu ul.main-menu {
    margin: 0;
    padding: 0;
	height:100%;
	width:100%;
}

.side-menu ul.main-menu>li:last-child>a {
    border: none;
}

.side-menu ul.main-menu>li>a {
    border-bottom: 1px solid #f7f7f7;
}

.side-menu ul.main-menu li a {
    padding: 0px 20px;
    color: #858585;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 37px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.side-menu ul.main-menu>li:hover>a,
.side-menu ul.main-menu>li.active>a {
    background: none;
    color: #aa272f;
    font-weight: 400;
}

.side-menu .menu-item-has-children>a:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: relative;
    top: 1px;
    left: 4px;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
    background: #3c3c3c;
    color: #fff;
    font-weight: 400;
}

a.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

a.menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg);
    position: relative;
    top: 14px;
}

a.menu-btn.active span:last-child {
    transform: rotate(45deg);
    width: 100%;
    position: relative;
    top: -4px;
}

a.menu-btn.active span:last-child {
    width: 100%;
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}
/* 
.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 27px;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 34px;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 50%;
    transform: translate(0px, -50%);
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
} */

.side-menu li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #f5f5f5;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
    box-shadow: none;
    border: none;
    background: #f5f5f5;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.main-menu li ul.sub-menu li:hover a,
.side-menu ul.main-menu li ul.sub-menu li.current_page_item>a,
.side-menu ul.main-menu li ul.sub-menu li.active>a  {
    background: #aa272f !important;
    color: #fff !important;
}

.side-menu ul.main-menu li ul.sub-menu li a {
    color: #c5c5c5;
    font-size: 14px;
    padding: 0px 10px;
    line-height: 34px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #f7f7f7;
    background-color: #232323;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.main-menu li {
    margin: 0;
    padding: 0;
}

.backdrop-sidemenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
    pointer-events: none;
    opacity: 0;
    transition: all .3s;
	z-index:9999;
}

.backdrop-sidemenu.active {
    opacity: 1;
    pointer-events: all;
}

/*** desktop sidemenu ***/
.side-menu-desktop .rightlinks {
    display: inline-block;
}

.side-menu-desktop .rightlinks a:hover {
    opacity: .75;
}

.side-menu-desktop .rightlinks a {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.05em;
    margin-left: 30px;
}

.side-menu-desktop .rightlinks a i {
    margin-right: 15px;
}

.side-menu-desktop .rightlinks a.lbtn {
    min-width: 170px;
    line-height: 28px;
    padding: 0 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    text-align: center;
}

.side-menu-desktop {
	position:fixed;
    top: 0;
    right: -100%;
    width: 100%;
	-webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	z-index:999999;
    overflow: hidden;
    height: 100vh;
    background: url(../img/bg-sidemnu.jpg) 50% 50% no-repeat;
    background-size: cover;
    overflow: hidden;
    overflow-y: scroll;
    max-width: 100%;
    padding: 45px 65px 92px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-desktop:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.side-menu-desktop>.row {
    width: 100%;
    max-width: 1240px;
    position: relative;
    z-index: 6;
    display: flex;
    margin: 0 auto;
}

.zindex {
    position: relative;
    z-index: 5;
}

.backdrop-sidemenu-desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
    pointer-events: none;
    opacity: 0;
    transition: all .3s;
    z-index: 999;
}

.backdrop-sidemenu-desktop.active {
    opacity: 0;
    pointer-events: all;
}

.side-menu-desktop .img img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.side-menu-desktop.intro {
	right:0;
}

.side-menu-desktop .bgblack {
}

.side-menu-desktop ul.main-menu ul {
	padding: 0;
}

.side-menu-desktop ul.main-menu li {
	list-style:none;
	display:inline-block;
    vertical-align: top;
	width:100%;
    margin-bottom: 10px;
    padding: 16px 0;
}

.side-menu-desktop ul.main-menu {
	padding-left:0px;
	margin-top:0px;
    width: min-content;
    text-align: left;
    margin-right: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    width: 100%;
}

.side-menu-desktop ul.main-menu>li {
    width: 33.33%;
    padding: 20px 0 !important;
}

.side-menu-desktop ul.main-menu>li>a:hover {
    opacity: .75;
}

.side-menu-desktop ul.main-menu li a {
    display: inline-block;
    padding: 0px;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0px;
    transition: all .4s ease-in-out;
    text-align: left;
}

.side-menu-desktop a.CloseBtn {
    float: right;
    color: #fff;
    font-size: 40px;
    margin: 0px 4px 0px 0px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    min-width: 32px;
    min-height: 32px;

    position: absolute;
    right: 62px;
    top: 44px;
    font-size: 30px;
    cursor: pointer;
    z-index: 5;
}

.side-menu-desktop a.CloseBtn:before,
.side-menu-desktop a.CloseBtn:after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 3px;
}

.side-menu-desktop a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu-desktop a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu-desktop a.CloseBtn:hover {
    opacity: .6;
}

.side-menu-desktop .menu-item-has-children {
    cursor: pointer;
}

.side-menu-desktop .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu-desktop .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #000;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 27px;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu-desktop .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 34px;
    color: #fff;
    font-size: 27px;
    z-index: 99;
    top: 50%;
    transform: translate(0px, -50%);
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu-desktop .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu-desktop li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #f5f5f5;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
    box-shadow: none;
    border: none;
    background: #f5f5f5;
}

.side-menu-desktop ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu-desktop ul.main-menu li ul li:hover>a,
.side-menu-desktop ul.main-menu li ul li.current_page_item>a,
.side-menu-desktop ul.main-menu li ul li.active>a  {
    opacity: .5 !important;
    color: #999999 !important;
}

.side-menu-desktop ul.main-menu li ul {
    padding: 20px 0 0px 0px;
}

.side-menu-desktop ul.main-menu > li {
}

.side-menu-desktop ul.main-menu li ul li a {
    color: #7c7c7c;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.side-menu-desktop ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu-desktop ul.main-menu li {
    margin: 0;
    padding: 0;
}

.side-menu-desktop .right ul.main-menu {
    width: 100%;
    margin: 0;
}

.side-menu-desktop .right p {
    color: #7c7c7c;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.side-menu-desktop .right p a {
    color: #7c7c7c;
}

.side-menu-desktop .right p a:hover {
    opacity: .7;
}

/*** page-banner ***/
.page-banner {
    width: 100%;
    height: 50vh;
    padding-bottom: 30px;
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url(data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAABkAAAACcCAQAAACNKa9CAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQflBQ4GFjXsxNWUAAADgklEQVR42u3dsRXDIBQEQWTRf+CCsbtYgj9TAem+Q+JZ3wUAAJDY69w+AgAAMMVev9tHAAAAphAgAABARoAAAAAZAQIAAGQECAAAkBEgAABARoAAAAAZ74AAAAAZCwgAAJARIAAAQEaAAAAAGQECAABkBAgAAJARIAAAQMZveAEAgIwFBAAAyAgQAAAgI0AAAICMAAEAADICBAAAyAgQAAAgI0AAAICMd0AAAICMBQQAAMgIEAAAICNAAACAjAABAAAyAgQAAMgIEAAAICNAAACAjHdAAACAjAUEAADICBAAACAjQAAAgIwAAQAAMgIEAADICBAAACAjQAAAgIx3QAAAgIwFBAAAyAgQAAAgI0AAAICMAAEAADICBAAAyAgQAAAgI0AAAICMAAEAADIeIgQAADIWEAAAIGMBAQAAMhYQAAAgI0AAAICMAAEAADICBAAAyAgQAAAgI0AAAICMAAEAADICBAAAyAgQAAAgI0AAAICMAAEAADICBAAAyAgQAAAgs9e5fQQAAGAKCwgAAJARIAAAQEaAAAAAGQECAABkBAgAAJARIAAAQEaAAAAAGQECAABkBAgAAJD53D4AAAAwx17n9hEAAIApXMECAAAyAgQAAMgIEAAAICNAAACAjAABAAAyAgQAAMh4BwQAAMhYQAAAgIyHCAEAgIwFBAAAyAgQAAAgI0AAAICMAAEAADICBAAAyHgHBAAAyAgQAAAg4woWAACQ8RAhAACQsYAAAAAZAQIAAGR8hA4AAGQsIAAAQEaAAAAAGQECAABkBAgAAJDxEToAAJCxgAAAABkBAgAAZAQIAACQESAAAEBGgAAAABkBAgAAZPyGFwAAyFhAAACAjAABAAAyAgQAAMgIEAAAICNAAACAjL9gAQAAGQsIAACQESAAAEBGgAAAABnfgAAAABkLCAAAkBEgAABARoAAAAAZAQIAAGR8hA4AAGQsIAAAQEaAAAAAGVewAACAjAUEAADICBAAACAjQAAAgIxvQAAAgIwFBAAAyAgQAAAg4woWAACQsYAAAAAZCwgAAJCxgAAAABkBAgAAZFzBAgAAMhYQAAAgI0AAAICMK1gAAEDGAgIAAGQsIAAAQMYCAgAAZCwgAABAxgICAABkBAgAAJBxBQsAAMi867l9BAAAYAoLCAAAkLGAAAAAGQsIAACQeW8fAAAAmMMCAgAAZP44sIRFaYQA/QAAAABJRU5ErkJggg==) repeat-x top left;
}

.page-banner h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
}

.page-banner .breadcrumbs {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    padding: 15px 0px 0px 0px;
    list-style: none;
    margin-bottom: 10px;
}

.page-banner .breadcrumbs li {
    margin: 0px 2px 0px 0px;
    padding: 0px;
    display: inline-block;
}

.page-banner .breadcrumbs li, .page-banner .breadcrumbs li a {
    color: #fff;
    text-transform: uppercase;
}

.page-banner .breadcrumbs a {
    font-weight: 400;
}

.page-banner .container {
    max-width: 1170px;
}

.normal-container {
    max-width: 1170px;
    margin: 0 auto;
}


/*** about-page ***/
.about-page {
    padding: 100px 0px;
}

/*** page-title ***/
.page-title h1 {
    color: #000;
    font-size: 33px;
    text-transform: uppercase;
    margin: 30px 0px;
    line-height: 1.1;
    font-weight: bold;
}

/*** testimonials ***/
.testimonials {
    padding-bottom: 60px;
}

.testimonial-box {
    border: 1px solid #000;
    color: #000;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.testimonial-box .ratings i {
    margin: 0px -2px;
    font-size: 25px;
}

.testimonial-box p {
    color: #555555;
    font-size: 17px;
    line-height: 1.6;
    margin: 10px 0 10px 0;
}

.testimonial-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 .83em 0;
    color: #555555;
    text-transform: none;
}

.testimonial-box.first h5 {
    font-size: 25px;
}


/*** SOCIAL MEDIA ***/
.social-media {
    padding: 60px 15px;
}

.social-media .bordere-style>div.bright {
    border-right: solid 1px #d4d4d4;
}

.social-media .bordere-style>div.bbottom {
    border-bottom: solid 1px #d4d4d4;
}

.social-media .bordere-style>div {
    padding: 30px;
}

.socialbox h2 {
    font-weight: 700;
    font-size: 37px;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: #333;
    margin: 80px 0px 30px 0px;
    text-align: center;
    line-height: 1.6;
}

.socialbox ul {
    margin: 22px 0 0;
    line-height: 1.7;
    list-style: none;
    padding: 0;
}

.socialbox li a {
    display: block;
    position: relative;
    width: 123px;
    height: 123px;
    border: solid 1px #999;
    transition: all 0.3s linear;
    text-align: center;
    margin-bottom: 10px;
    color: #337ab7;
}

.socialbox li a:hover {
    background: #999;
    color: #fff;
}

.socialbox li a span {
    display: block;
    margin: 33px 0 4px;
    font-size: 31px;
}

.socialbox li a span + span {
    font-size: 12px;
    margin: 15px 0 0px;
    font-weight: bold;
}

.sociallinks {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
    text-align: right;
}

.sociallinks a {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-align: right;
    letter-spacing: 0.6em;
    color: #a3a3a3;
    margin-top: 20px;
    transition: color 0.3s linear;
    display: inline-block;
}

.sociallinks a::before {
    content: '';
    display: block;
    width: calc(100% - 12px);
    height: 1px;
    background: #3f3f3f;
    position: absolute;
    bottom: -4px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s linear;
}

.sociallinks a:hover,
.sociallinks a.active {
    color: #3f3f3f;
}

.sociallinks a:hover::before {
    opacity: 1;
}

.socialboxes {
    display: inline-block;
    width: 100%;
}

.socialboxes>img {
    display: inline-block;
    width: 100%;
    aspect-ratio: 1 / .7;
    object-fit: cover;
    margin-bottom: 35px;
}

.socialboxes .text {
    display: flex;
}

.socialboxes .text p {
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.7;
    color: #555555;
}

.socialboxes .text .dates {
    padding-right: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.7;
    color: #555555;
}

/*** TEAM ***/
.team {
    padding: 25px 0px 150px 0px;
}

.team h2 {
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.team h5 {
    font-size: 26px;
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team h2 b {
    font-weight: 700;
}

.team figure {
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.42;
}

.team figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.4s ease;
}

.team .team-member-pic:hover img {    
    transform: scale(1.1);
}

.team .team-intro {
    display: flex;
    flex-grow: 1;
    margin-left: 35px;
    align-items: center;
    flex-flow: row wrap;
    height: 100%;
    padding-left: 10px;
}

.team .team-intro.last {
    margin-right: 50px;
    margin-left: 0px;
}

.team .team-intro p {
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
}

.team .member-info {
    background:#000;    
    display: flex;
    align-items: center;
    justify-content: left;
    flex-flow: row wrap;
    margin: 50px 0 0px;
    padding: 10px 10px;
    position: relative;
    width: 100%;
}

.team .member-info a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 10px 8px;
}

.team .member-info a i {
    font-size: 12px;
    margin-right: 5px;
}

.team .member-info a:hover {
    opacity: 0.7;
}

.btn-border-normal {
    display: inline-block;
    color: #000;
    border: 2px solid #000;
    line-height: 46px;
    min-width: 136px;
    text-align: center;
    padding: 0px 15px;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.btn-border-normal:hover {
    border-color: #d6d6d6;
    background: #d6d6d6;
    color: #fff;
}

.team .btn-border-normal {
    margin-top: 25px;
}

.team .mtspace {
    margin-top: 80px;
}

/**/
.search-properties {
    padding: 40px 0px 80px 0px;
}

.search-properties .danger {
    color: red;
    font-size: 16px;
    font-weight: 700;
}


/*** propertiesinfo ***/
.propertiesinfo {
    padding: 50px 0px 80px 0px;
}

.propertiesinfo .page-title {
    margin-bottom: 70px;
}

.propertiesinfo .list-links a {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000;
    margin-right: 4px;
}

.propertiesinfo .list-links a:hover,
.propertiesinfo .list-links a.active {
    color: #000;
}

.propertiesinfo .sright .dropdown {
    display: inline-block;
    background: none !important;
    border-radius: 0px;
    text-align: left;
    margin-left: 15px;
}

.propertiesinfo .sright .dropdown-toggle {
    display: inline-block;
    background: none !important;
    border-radius: 0px;
    padding: 0px;
    color: #000;
    border: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.34px;
    text-transform: uppercase;
}

.propertiesinfo .sright .dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.propertiesinfo .dropdown-menu.formdrop {
    min-width: 325px;
    padding: 20px;
}

.propertiesinfo .dropdown-menu {
    margin-top: 15px !important;
}

.propertiesinfo .formdrop label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .34px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.propertiesinfo .formdrop .form-control {
    height: 40px;
    border: 1px solid #d9d9d9;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 0;
    margin-bottom: 10px;
}

.propertiesinfo .formdrop .btn-default {
    width: 100%;
    font-size: 17px;
    margin: 15px 0px;
    line-height: 35px;
    background:#000;
    color: #fff;
}


/**/
.propertiesinfo ul.dropdown-menu {
    padding: 0px;
    min-width: 275px;
    padding: 10px 0;
    margin-top: 10px;
}

.propertiesinfo ul.dropdown-menu li a:hover,
.propertiesinfo ul.dropdown-menu li a.active {
    background: #000;
    color: #fff;
}

.propertiesinfo ul.dropdown-menu li a {
    display: inline-block;
    width: 100%;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    color: #333;
}

.propertiesinfo .spr {
    padding: 0px 13px;
}

.propertiesinfo .spr>div {
    padding: 1px;
}

.listings-item {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    float: left;
}

.listings-img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.listings-img img {
    display: inline-block;
    width: 100%;
    transition: all .3s;
    object-fit: cover;
    aspect-ratio: 1 / .7;
}

.listings-item:hover .listings-img img {
    transform: scale(1.1);
}

.listings-img .property-status {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    max-width: 42%;
}

.listings-img .property-status span {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 2px 5px;
    letter-spacing: 0.1em;
    margin: 0 1px 5px 0px;
}

.status-green {
    background: #008852;
    color: #fff;
}

.status-red {
    background: red;
    color: #fff;
}

.listings-info {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, .5);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
}

.listings-info .listings-address {
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

.listings-info .listings-address span {
    display: block;
    font-size: 20px;
    color: #fff;
    margin-top: 8px;
}

.listings-info .listings-price {
    margin-bottom: 10px;
}

.listings-info .listings-price h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin: 0;
}

.property-box .listings-plan,
.listings-info .listings-plan {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.listings-info .listings-plan li {
    font-size: 16px;
    color: #fff;
    padding: 0 10px;
}

.property-box .listings-plan li {
    font-size: 16px;
    color: #000;
    padding: 0 10px;
}

.property-box .listings-plan li img,
.listings-info .listings-plan li img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.property-box .listings-plan li img {
    filter: invert(1);
}

/*** featured-communities inner ***/
.featured-communities.inner {
    margin-top: 0px;
    padding-top: 30px;
}

.communities-inner {
    padding: 40px 0px;
}

.communities-inner .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.communities-inner .img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.communities-inner p {
    color: #555555;
    font-size: 16px;
    line-height: 1.5;
}

.communities-inner .page-title h1 {
    margin-top: 0;
}

.communities-inner .btn-default {
    margin-top: 25px;
    font-size: 16px;
    text-transform: inherit;
    font-weight: 400;
    border-width: 2px;
}

/*** maininfo ***/
.maininfo {
    padding: 20px 0px 70px 0px;
}

.maininfo h1 {
    color: #000;
    font-size: 33px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 20px 0px 40px 0px;
}

.maininfo .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    font-size: 16px;
    margin-bottom: 24px;
}

.maininfo .links ul li {
    padding: 3px 2px;
    text-align: center;
    width: calc(100% / 6);
}

.maininfo .links ul li a {
    padding: 3px;
    border: 1px solid transparent;
    color: #0a0a0a;
    display: inline-block;
    width: 100%;
    line-height: 1.3;
    padding: 1vw;
    font-size: max(0.6vw, 16px);
    text-transform: uppercase;
    height: 100%;
}

.maininfo .links ul li a i {
    font-size: max(2.813vw, 45px);
    margin-bottom: 3px;
    display: inline-block;
}

.maininfo .links ul li:hover a,
.maininfo .links ul li.active a {
    border-color: #000000;
    color: #000000;
}

.maininfo .links ul li a i {
    margin-bottom: 3px;
}

.maininfo .img-right + h3 {
    margin-top: 10px;
}

.maininfo h3 {
    font-weight: bolder;
    font-size: 1.17em;
    margin: 20px 0;
    color: #555555;
    text-transform: inherit;
}

.maininfo p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    font-weight: 700;
    font-weight: 500;
}

.maininfo .linkbtn {
    color: #474747;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    padding: 0 30px;
    margin-top: 35px;
    position: relative;
}

.maininfo .linkbtn img {
    margin-left: 10px;
}

.maininfo .img-right {
    float: right;
    padding-left: 5%;
    padding-bottom: 4%;
    display: block;
    width: 50%;
}

.maininfo .sbtns a + a {
    border-left: 1px solid #c8c8c8;
    margin-left: -2px;
}

.maininfo .text ul {
    line-height: 1.7;
    padding-left: 40px;
    color: #555555;
    font-size: 17px;
}

.maininfo .text li {
    color: #555555;
    font-weight: 700 !important;
}

.maininfo .text ol {
    line-height: 1.7;
    padding-left: 40px;
    color: #555555;
    font-size: 17px;
}

.maininfo .sbtns .linkbtn.prev img {
    margin-left: 0px;
    margin-right: 10px;
}

.maininfo .table-responsive {
    display: inline-block;
    width: 100%;
}

.maininfo table {
    width: 100%;
}

.maininfo table tr:nth-child(odd) td {
    background: #e8e8e8;
}

.maininfo table td {
    padding: 8px;
    border-spacing: 2px;
    text-align: center;
    color: #555555;
    font-weight: 600;
    font-size: 17px;
}

.maininfo table tr:hover td {
    background-color: #ddd !important;
}

.maininfo table td a {
    color: #337ab7;
    font-weight: 600;
}

.maininfo table td em {
    font-style: normal;
}

.maininfo .text .lists-col {
    display: flex;
    flex-flow: row wrap;
    padding-left: 18px;
}

.maininfo .lists-col li {
    padding: 0 19px;
    width: calc(100% / 3);
}

/*** blogpage ***/
.blog-page {
    padding: 100px 0px;
}

.blog-page .row>div {
    padding: 0px 15px;
}

.blog-page .featured-post .readbtn {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.blog-page .img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-post h2, .blog-box h2 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-box h2 { 
    min-height: 110px;
}

.blog-box {
    margin-bottom: 30px;
}

.blog-box .post-img {
    aspect-ratio: 1 / 0.69;
    object-fit: cover;
    object-position: center;
    margin-bottom: 15px;
}

.blog-box p {    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*** contact-page ***/
.page-title {
    display: none;
}

.contact-page {
    padding: 100px 0px 40px 0px;
}

.contact-page .space {
    padding: 0px 115px 100px 115px;
}

.contact-page .bg {
    padding: 60px 50px 0;
    position: relative;
    overflow: hidden;
}

.contact-page .bg:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    background: url(../img/bg-contact.jpg);
    pointer-events: none;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.contact-page .bg:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
    background: rgba(24, 24, 24, 0.75);
}

.contact-page .text {
    position: relative;
    z-index: 3;
}

.contact-page .text h2 {
    color: #fff;
}

.contact-page .text ul {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
    margin-bottom: 10px;
}

.contact-page .text ul li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .056em;
    color: #f8f9fa;
    display: inline-block;
    margin: 0px 20px;
}

.contact-page .text ul li p {
    color: #f8f9fa;
    margin: 0;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.contact-page .text ul li a {
    color: #f8f9fa;
    display: inline-block;
    vertical-align: middle;
}

.contact-page .text ul li a i.phone {
    font-size: 14px;
}

.contact-page .text ul li a i.phone {
    font-size: 14px;
}

.contact-page .text ul li a i {
    font-size: 12px;
    color: #f8f9fa;
    min-width: 30px;
    text-align: left;
    margin-right: 12px;
    transition: all .3s linear;
}

.contact-page .text ul.social-icons {
    margin-top: 20px;
}

.contact-page .text ul.social-icons li {
    margin: 0px 18px;
}

.contact-page .text ul.social-icons li a {
    font-size: 19px;
}

.contact-page .bg-white {
    background: #fff;
    padding: 39px 68px 78px;
    width: 1440px;
    max-width: 100%;
    margin: 73px auto 0;
    position: relative;
    z-index: 3;
}

.contact-page .section-title h6 {
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 0px;
}

.contact-page .section-title h2 {
    font-weight: bolder;
    font-size: 35px;
    line-height: 1.4571;
    margin-bottom: 35px;
}

.contact-page .section-title p {
    color: #000;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .02em;
    font-weight: 400;
}

.contact-page .btn-default {
    background: none;
    font-size: 13px;
    letter-spacing: .46em;
}

.contact-page .rating {
    margin: 30px 0px;
}

.contact-page .rating i {
    color: #FFC502;
    font-size: 24px;
}

.form-box .form-control {
    width: 100%;
    height: 30px;
    border: none;
    border-bottom: 1px solid #000000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.26px;
    color: #000;
    margin: 10px 0px;
    padding: 0px 9px;
    border-radius: 0px;
    outline: 0;
    box-shadow: none;
}

.form-box .form-control::-webkit-input-placeholder {
    color: #000;
}

.form-box textarea.form-control {
    height: 80px;
    resize: none;
    margin-top: 30px;
    margin-bottom: 70px;
}

.contact-page .submit {
    background: none !important;
    position: absolute;
    font-size: 28px;
    bottom: -5px;
    right: 5px;
}



/*** FREE HOME EVALUATION ***/
.evaluation-box {
    padding: 75px 0px;
    position: relative;
}

.evaluation-box .bg-form {
    padding:75px 50px;
    background: #aa272f;
    background: linear-gradient(rgba(170, 39, 47, 0.9), rgba(170, 39, 47, 0.9)), url(../img/testimonials-bg.webp) center top no-repeat;
    background-size: cover;
}

.evaluation-box label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.evaluation-box .checkbox-group label {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.evaluation-box .btn-default.bordered {
    width: 100%;
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 25px 0px;
    font-weight: 400;
    background: none;
    display: inline-block;
}

.evaluation-box .btn-default.bordered span {
    font-size: 14px;
    letter-spacing: .5px;
}

.evaluation-box .btn-default.bordered:hover, .evaluation-box .btn-default.bordered.active {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.evaluation-box .btn-default.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.evaluation-box .btn-default.bordered:before, .evaluation-box .btn-default.bordered:after {
    display: none;
}


.evaluation-box fieldset.active {
    display: block;
}

.evaluation-box .navigate-btns {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.evaluation-box .cf7mls-btns.cf7mls-btns-last-step {
    min-height: unset;
    position: absolute;
    bottom: 0;
}

.evaluation-box .cf7mls-btns.cf7mls-btns-last-step button {
    margin: 0!important;
}

.evaluation-box p {
    color: #fff;
}

fieldset#StepOne .navigate-btns {
    justify-content: end;
}

.evaluation-box .checkbox-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.evaluation-box .checkbox-group label {
    flex: 0 1 calc(50% - 10px); 
    margin-bottom: 25px; 
}

.evaluation-box input[type="checkbox"] {    
    width: 25px;
    height: 25px;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 10px;
}

.evaluation-box .form-control {
    background: none;
    border: 0px;
    border-radius: 0px;
    padding: 10px 16px;
    margin-bottom: 18px;
    height: 50px;
    color: #fff !important;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
}

.evaluation-box .form-control::placeholder {
    color: #fff;
}

.evaluation-box .form-control:focus {
    color: #fff;
    outline: 0;
    box-shadow: none;
    background: none;
    border-color: #fff;
}

.evaluation-box button {
    background: none;
}

/*** CALCULATOR-INFO ***/
.calc-info {
	padding: 90px 0px;
	overflow: hidden;
}

mw-calc-panel-body, mw-calc-section {
	background:#aa272f !important;
	border-radius: 0px !important;
	box-shadow: none !important;
	padding:35px 0px !important;
}

mw-calc-section {
	padding:35px 30px !important;
}

mw-calc-label {
	color: #fff !important;
	font-weight:500 !important;
}

.mw-calc-search-input {
	border-radius: 0px !important;
}

#calculate_lt {
	color: #aa272f !important;
	background: #fff !important;
}

#calculate_lt:hover {
	color: #aa272f !important;
	background: #fff !important;
}

mw-calc-table {
	background: #FAF8F1;
}

.mw-calc-table > tbody > tr.active {
	border-color: #aa272f !important;
	color: #fff !important;
}

.mw-calc-table > tbody > tr.active > td {
	background: #aa272f !important;
	border-color: #aa272f !important;
	color: #fff !important;
}


/*** BUYSELL-ABOUT ***/
.about-page.buysell-about p {
    margin-bottom: 25px;
}

.about-page.buysell-about p a {
    text-decoration: underline;
}

.about-page.buysell-about p a:hover {
    color: #aa272f;
}

.about-page.buysell-about .btn-default {
    margin-bottom: 20px;
    display: inline-block;
}



/*** BUYERS/SELLER FORM ***/
.buysellform {
    padding: 80px 0px;
    background: linear-gradient(rgba(170, 39, 47, 0.9), rgba(170, 39, 47, 0.9)), url(../img/testimonials-bg.webp) center top no-repeat;
    background-size: cover;
}

.buysellform .section-title h2 {
    margin-bottom: 50px;
}

.buysellform .form-control {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .6px;
    background: transparent;
    width: 100%;
    color: #fff;
    border-radius: 0;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: 20px;
    border: 1px solid rgb(255 255 255 / 50%);
    padding: 15px;
}

.buysellform .form-control::placeholder {
    color: #fff;
}

.buysellform .select2-container--default .select2-selection--multiple {
    display: flex;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .6px;
    background: transparent;
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: 20px;
    border: 1px solid rgb(255 255 255 / 50%)!important;
    padding: 15px;
}

.buysellform .select2-search__field {
    margin-top: 0!important;
}

.buysellform .select2-search__field::placeholder {
    line-height: 1.6!important;  
    color: #fff!important;
    opacity: 1;
}

.buysellform select.form-control {
    appearance: auto;
}

.buysellform textarea.form-control {
    height: 125px;
    resize: none;
    padding: 15px 15px;
}

.buysellform option {
    color: #000;
}

.buysellform .btn-default {
    margin-top: 20px;
    border: 1px solid #fff !important;
}

/*** INFO-SMALL ***/
.info-small {
    padding: 60px 0px;
}

.info-small .section-title h2 {
    margin-bottom: 30px;
}

.info-small p {
    margin-bottom: 30px;
}

/*** PROPERTY-WORTH ***/
.about-page.property-worth {

}

.about-page.property-worth .section-title {
    margin-bottom: 60px;
}

.about-page.property-worth ol {
    padding-left: 20px;
}

.about-page.property-worth ol li {
    padding-bottom: 8px;
}

.list {
    padding-left: 20px;
}

.list li::marker {
    color: #aa272f;
}

.list li {
    padding-bottom: 5px;
}

/*** normal-cta ***/
.normal-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:#000;
}

.normal-cta .section-title h2 {
    margin-bottom: 40px;
    width: 100%;
}

.normal-cta .bgimg {
    z-index: 1;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    background: url(../img/cta-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}


/*** MORTAGE-INFO ***/
.mortage-info {
    padding: 90px 0px;
}

.mortage-info .section-title {
    margin-bottom: 50px;
}

.mortage-info .section-title p {
    color: #525252;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 2;
    font-weight: 400;
}

.mortgage-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.mortgage-card .img {
    aspect-ratio: 4 / 3;
    margin-bottom: 15px;
}

.mortgage-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mortgage-card .section-title {
    flex-grow: 1;
    margin: 0;
}

/*** LOAN-TYPES ***/
.loan-types {
    padding: 70px 0px;
}

.loan-types .section-title {
    margin-bottom: 60px;
}

.loantype-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
    height: calc(100% - 60px);
}

.loantype-box .img img {
    aspect-ratio: 1 / 0.85;
}

.loantype-box h3 {
    color: #aa272f;
    font-size: 20px;
    margin-bottom: 15px;
    margin: 3px 0px 10px 0px;
}

.color-red {
    color: #aa272f !important;
}

.loantype-box .text {
    padding: 20px 20px;
}

/*** TERM-RATE ***/
.term-rate {
    padding: 100px 0px;
}

.term-rate .section-title {
    margin-bottom: 40px;
}

.term-rate .table {
    background: #f5f5f5;
}

.term-rate table tr th {
    padding: 12px 10px;
    color: #fff;
    background-color: #000000;
    font-weight: 600;
}

.term-rate table th:nth-child(2) {
    background-color: #AA272F;
}

.term-rate table th:last-child {
    background-color: #939393;
}

.term-rate table tr td  {
    padding: 12px 10px;
}

/*** INFO-TEXT ***/
.info-text {
    padding: 100px 0px;
    background: #f5f5f5;
}

.info-text .section-title h2 {
    margin-bottom: 40px;
}

.info-text h3 {
    color: #AA272F;
    margin-top: 40px;
    font-size: 30px;
}

.info-text p {
    margin-bottom: 20px;
}

.bg-f5f5f5 {
    background: #f5f5f5;
}


.otgs-development-site-front-end{
	display:none;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	color: #fff;
	text-decoration:none;
}

.navigation li {
	display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	background-color: #000;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
}

.navigation li a:hover,
.navigation li.active a {
	background-color: #aa272f;
}

input.wpcf7-form-control.wpcf7-not-valid{
	border-bottom: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip{
	display:none;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	display:inline-block !important; 
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
	display:inline-block !important;
}
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output{
	display:none !important;
}
.wpcf7 form .wpcf7-response-output{
	display:inline-block !important;
	color:#fff;
}

/* ✅ Success message (form sent) */
.wpcf7 form.sent .wpcf7-response-output {
  background: #f6f4ee; /* soft beige or light neutral background */
  color: #0a3a2a; /* elegant dark green accent */
  border: 2px solid #0a3a2a;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  max-width: 500px;
  margin: 1.5rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* ❌ Error message (validation failed or required fields missing) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background: #fdf2f2; /* soft red background */
  color: #8b0000; /* deep red text */
  border: 2px solid #e63946; /* elegant red border */
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  max-width: 500px;
  margin: 1.5rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* ⚠️ Individual field validation tips (inline error under fields) */
.wpcf7-not-valid-tip {
  color: #e63946; /* red accent for field warnings */
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
}

/* ✨ Fade-in animation for both messages */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav .navbar .navbar-nav>.nav-item:hover>.nav-link:after,
.main-nav .navbar .navbar-nav>.nav-item.current_page_item>.nav-link:after,
.main-nav .navbar .navbar-nav>.nav-item.current-menu-parent>.nav-link:after {
    width: 100%;
    opacity: 1;
}
 
.navbar-expand-lg .navbar-nav>.nav-item .sub-menu li.current_page_item>a.nav-link {
    background: #aa272f !important;
    color: #fff !important;
}
 
.side-menu ul.main-menu>li:hover>a,
.side-menu ul.main-menu>li.current-menu-ancestor>a,
.side-menu ul.main-menu>li.current_page_item>a {
    background: none;
    color: #aa272f;
    font-weight: 400;
}
 
.hero-content {
    z-index: 9;
}
 
/**/
.evaluation-box .cf7mls_next.action-button, .evaluation-box .cf7mls_back.action-button, .evaluation-box .action-button {
    margin-bottom: 5px;
    transition: all .3s;
    opacity: 1 !important;
    letter-spacing: 0;
    border-radius: 0px;
    background: none;
    color: #fff;
    border: 1px solid #fff;
    outline: 0px;
    padding: 0px 40px !important;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 47px !important;
    min-width: 10px;
    display: inline-block;
    text-align: center;
}
 
.evaluation-box .cf7mls_next.action-button:hover, .evaluation-box .cf7mls_back.action-button:hover, .evaluation-box .action-button:hover {
    border-color: #fff !important;
    background: #fff !important;
    color: #aa272f !important;
}
 
.evaluation-box .navigate-btns button[type="submit"] {
    margin-left: auto;
}
 
.evaluation-box .checkbox-group span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 
.evaluation-box .checkbox-group .wpcf7-list-item {
    flex: 0 1 calc(50% - 10px);
    margin: 0px;
    margin-bottom: 25px !important;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}
 
.evaluation-box .checkbox-group .wpcf7-list-item label {
    margin: 0;
}
 
.evaluation-box input[type="submit"].btn-default, .evaluation-box button[type="submit"].btn-default {
    margin-left: auto;
}
 
input[type="submit"], button[type="submit"] {
    transition: all .3s;
}
 
.evaluation-box input[type="checkbox"] {
    margin-right: 7px;
}
 
.backdrop-sidemenu {
    position: fixed;
}

.modal-backdrop {
    z-index: 99999;
}
 
.modal {
    z-index: 999999;
    padding: 0px !important;
}
 
.modal.guide .modal-body {
    padding: 70px 30px 70px 30px;
}
 
.modal.guide button.btn-close {
    font-size: 17px;
    position: absolute;
    top: 20px;
    right: 20px;
}
 
.modal.guide button.btn-close svg,
.modal.guide button.btn-close i {
    opacity: 0;
}
 
.modal.guide .modal-dialog {
    max-width: 600px !important;
}
 
.modal.guide .btn-default {
    display: block;
    margin: 0 auto;
    background-color: transparent;
    margin-top: 25px;
}
 
.modal.guide .btn-default:hover {
    color: #fff;
    border: 2px solid #050a30;
    background: #050a30;
}
 
.modal.guide .section-title h2 {
    font-size: 45px;
}
 
.modal.guide .form-control {
    width: 100%;
    height: 51px;
    border: none;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .02em;
    color: #000;
    margin: 10px 0px;
    padding: 0 15px;
    border-radius: 0px;
    outline: 0;
    box-shadow: none;
}
 
.modal.guide .form-control::-webkit-input-placeholder {
    color: #000;
}
 
.modal.guide textarea.form-control {
    height: 100px;
    resize: none;
    margin-top: 30px;
}
