:root {
    --accent-color: #beaf87;
    --trans: 0.4s all ease;
    --body-font: "Outfit", sans-serif;
}

@font-face {
    font-display: swap;
    font-family: "PT Sans Narrow";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/pt-sans-narrow-v18-latin-regular.woff2") format("woff2");
}

@font-face {
    font-display: swap;
    font-family: "PT Sans Narrow";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/pt-sans-narrow-v18-latin-700.woff2") format("woff2");
}

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

/* outfit-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Outfit";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/outfit-v15-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.flush {
    padding: 0 !important;
}

body {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h1,
.h1 {
    font-size: 60px;
}

h3,
.h3 {
    font-size: 38px;
}

p {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 5px;
}

a {
    font-family: var(--body-font);
}

.bigger-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: block;
    position: relative;
}

#header {
    transition: var(--trans);
}

#header.scrolled {
    background: #141414;
    filter: drop-shadow(2px 4px 6px #222);
}

#header .navbar-nav li {
    margin: 0 17px;
}

#header .navbar-nav li a {
    color: #fff;
    text-decoration: none;
    transition: var(--trans);
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: var(--body-font);
    padding: 10px 0;
}

#header .navbar-nav li a:hover,
#header .navbar-nav li.current-menu-item a {
    opacity: 0.7;
}

#header .dropdown-menu {
    background: #141414;
    color: #fff;
    border-radius: 0;
    padding: 0;
    border: none;
    min-width: 250px;
    left: 50%;
    transform: translateX(-50%);
}

#header .navbar-nav li .dropdown-menu a {
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    display: block;
    transition: var(--trans);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}

#header .navbar-nav .dropdown-menu li {
    margin: 0;
}

#header .dropdown-menu a:hover {
    background: #000;
}

#header .navbar-brand img {
    width: 350px;
    filter: invert(1);
    transition: var(--trans);
    opacity: 1;
}

.home #header .navbar-brand img {
    opacity: 0;
}

#header.scrolled .navbar-brand img {
    opacity: 1;
}

.home--banner {
    color: #fff;
    height: 100vh;
    background-color: #beaf87;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .home--banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(47, 72, 88, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    content: "";
} */

.home--banner .inner h2 {
    letter-spacing: 13px;
    font-size: 100px;
    font-weight: 600;
    text-transform: uppercase;
}

.home--banner .wrapper {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    width: 100%;
    z-index: 2;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 100px 80px 0 80px;
}

.home--banner .img {
    align-self: end;
    width: 40%;
}

.home--banner .inner {
    width: 60%;
}

.home--banner .img img {
    height: calc(100vh - 100px);
    object-fit: cover;
    object-position: top;
}

.home--banner .banner-img img {
    width: 220px;
    filter: invert(1);
}

.default,
#header .navbar-nav li.menu-btn a,
#burger-content li.menu-btn a {
    font-size: 14px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    padding: 0 0 0 20px;
    display: flex;
    color: #000;
    background: var(--accent-color);
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 200px;
    outline: none;
    width: fit-content;
    transition: 0.5s all ease;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    opacity: 1;
    border: none;
}

.default:hover::after,
#burger-content li.menu-btn a:hover::after {
    width: 100%;
}

.default::after,
#header .navbar-nav li.menu-btn a::after,
#burger-content li.menu-btn a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    z-index: -1;
    background: #fff;
    transition: var(--trans);
    top: 0;
    right: 0;
}

img {
    max-width: 100%;
}

.title {
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.title h2 {
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 3px;
}

.title h3 {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    font-weight: 400;
}

.home--about {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
}

.padd-xl {
    padding: 100px 0;
}

#burger-menu {
    display: none;
}

#burger-menu.is-active .burger-box::before {
    width: 26px;
    top: 50%;
    right: auto;
    transform: rotate(45deg);
}

#burger-menu.is-active .burger-box::after {
    top: 50%;
    transform: rotate(-45deg);
}

#burger-menu.is-active .burger-inner {
    opacity: 0;
}

#burger-content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3000;
    width: 100%;
    height: 100vh;
    background-color: #0e0e0e;
    padding: 50px 60px;
    transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: translateX(100%);
    overflow-y: auto;
}

#burger-content.active {
    transform: translateX(0);
}

#menu-burger-menu li {
    padding-top: 30px;
    width: 50%;
}

#menu-burger-menu li ul li {
    width: 100%;
    padding-top: 0;
}

#menu-burger-menu li ul li a {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.9;
    color: #999;
    text-transform: uppercase;
}

#burger-content .burger-menu-container {
    position: relative;
    z-index: 1;
    height: 100%;
    align-items: center;
}

#burger-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

#menu-burger-menu {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#burger-content li a {
    margin: 20px 0;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: var(--trans);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    padding: 6px 12px;
}

#burger-content ul li {
    width: 50%;
}

#burger-content li ul {
    display: block;
}

#burger-content li ul li a {
    color: #999;
    margin: 0;
}

#burger-content ul li ul li {
    width: 100%;
}

.home--about::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url(/wp-content/uploads/2024/03/brick.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.home--services .inner,
.discover .points .inner {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
    padding: 70px 25px;
    height: 100%;
    position: relative;
    transition: var(--trans);
}

.home--services .inner:hover,
.discover .points .inner:hover {
    background-color: var(--accent-color);
    color: #000;
}

.home--services .inner:hover h3 {
    -webkit-text-stroke-color: #000;
}

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

.home--services .inner::before,
.discover .inner::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    background-image: url(/wp-content/uploads/2024/03/brick.png);
    width: 320px;
    height: 100%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
}

.title.black {
    color: #000;
}

.title.black h3 {
    -webkit-text-stroke-color: #000;
}

.title p {
    font-size: 20px;
    margin-top: 20px;
    text-transform: none;
    margin-bottom: 0;
    line-height: 1.6;
}

.home--socials .single--social a {
    display: flex;
    align-items: center;
    border: 2px solid var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    text-decoration: none;
    font-weight: 400;
    justify-content: center;
    transition: var(--trans);
    padding: 20px;
}

.home--socials .single--social a:hover {
    background: var(--accent-color);
    color: #000;
}

.home--socials .single--social span {
    letter-spacing: 3px;
}

.home--socials .single--social em {
    margin-right: 20px;
}

.before::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home--socials {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
}

.home--socials::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url(/wp-content/uploads/2024/03/brick.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.home--testi .inner {
    padding: 0 80px;
}

.home--testi .inner p {
    font-size: 20px;
    line-height: 1.6;
}

.home--testi .inner h6 {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.custom-arrows .swiper-button-prev:hover,
.custom-arrows .swiper-button-next:hover {
    background: var(--accent-color);
    color: #000;
}

.custom-arrows .swiper-button-prev:after,
.custom-arrows .swiper-button-next:after {
    font-size: 20px;
    line-height: 60px;
    font-weight: 600;
}

.custom-arrows .swiper-button-prev,
.custom-arrows .swiper-button-next {
    color: #fff;
    background: #000;
    width: 60px;
    height: 60px;
    transition: var(--trans);
    border-radius: 0;
    outline: none !important;
}

.custom-shape-divider-top,
.custom-shape-divider-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    fill: #fff;
    height: 25px;
    width: 100%;
}

.custom-shape-divider-bottom svg {
    fill: #fff;
    height: 25px;
    width: 100%;
}

.custom-shape-divider-bottom {
    bottom: 0;
    position: absolute;
    left: 0;
}

.home--banner .inner p {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
}

footer {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
}

img.invert {
    filter: invert(1);
}

footer .copyrights img {
    width: 120px;
}

footer .copyrights p {
    margin-bottom: 0;
    font-size: 14px;
}

footer .agency img {
    width: 250px;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 40px;
    display: none;
}

footer .logo img {
    width: 500px;
    margin-bottom: 20px;
}

footer .contact a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    margin-bottom: 10px;
    transition: var(--trans);
}

footer .contact a:hover {
    color: var(--accent-color);
}

footer .contact a i {
    margin-right: 10px;
}

footer .subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 30px;
}

.default i,
#header .navbar-nav li.menu-btn a i,
#burger-content li.menu-btn a i {
    margin-left: 15px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    background: #fff;
    color: #000;
    clip-path: polygon(15px 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

#header .navbar-nav li.menu-btn a {
    min-width: 250px;
}

.home--contact {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
}

.custom--form input,
.custom--form select,
.custom--form textarea {
    height: 50px;
    border: 1px solid #fff;
    width: 100%;
    padding-left: 20px;
    background: transparent;
    color: #fff;
    outline: none;
    margin-bottom: 20px;
}

.custom--form textarea {
    height: 120px;
    padding-top: 12px;
}

.home--contact::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: url(/wp-content/uploads/2024/03/brick.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.custom--form ::placeholder {
    color: #fff;
    text-transform: uppercase;
}

.default.hover--black::after {
    background: #000;
}

.default.hover--black {
    color: #fff;
}

.default.hover--black i {
    background: #000;
    color: #fff;
}

footer .socials a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--trans);
    width: 50%;
    float: left;
}

footer .socials a em {
    margin-right: 10px;
}

footer .socials a:hover {
    color: var(--accent-color);
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0.125em;
}

.otgs-development-site-front-end,
.grecaptcha-badge {
    display: none !important;
}

.home--listings::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: 8.75vw;
    height: 56vw;
    background: #141414;
}

.home--listings .property:nth-child(odd) {
    padding-left: 10.37%;
}

.home--listings .property:nth-child(even) {
    padding-right: 10.37%;
}

.home--listings .property {
    position: relative;
    padding-bottom: 112px;
}

.property-details {
    position: absolute;
    width: 375px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.96);
    bottom: -80px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 -20px 40px 0;
    padding: 30px 20px 45px;
}

.home--listings .property:nth-child(even) .property-details {
    background-color: #141414;
    left: 10.37%;
    color: #fff;
}

.property .img img {
    height: 750px;
    width: 100%;
    object-fit: cover;
}

.home--listings .property a {
    display: block;
    transition: var(--trans);
    text-decoration: none;
}

.home--listings .property a:hover .img img {
    filter: grayscale(1);
    transition: var(--trans);
}

.home--listings .property:nth-child(odd) .property-details {
    right: 10.37%;
    color: #000;
}

.home--listings .property ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.home--listings .property ul li {
    display: inline-block;
    margin: 0 15px;
}

.home--listings .property ul li i {
    margin-left: 8px;
}

.ip--banner {
    padding: 100px 0 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
}

.ip--banner::before {
    background: rgba(0, 0, 0, 0.7);
}

.ip--banner .title h1 {
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    -webkit-text-stroke-width: 1px;
    color: transparent;
    -webkit-text-stroke-color: #fff;
    font-weight: 400;
}

.ip--banner p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 75%;
    margin: 0 auto;
}

.ip--banner .row {
    padding: 8rem 0 10rem;
}

.title.inner h2 {
    font-size: 42px;
}

.discover .icon img {
    width: 60px;
}

.discover .content {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.discover .content p {
    font-size: 18px;
    font-weight: 500;
}

.home--banner .inner h1 {
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media screen and (min-width: 577px) {
    #multi-step-form .fw-choice.fw-input-container {
        display: inline-block;
        width: 49%;
    }
}

.single-grid .property-box {
    display: inline-block;
    width: 100%;
    position: relative;
    text-decoration: none;
    color: #000;
}

.single-grid .property-box img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.single-grid .property-box img.icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.single-grid .property-box .img {
    position: relative;
    transition: 0.6s all ease;
}

.single-grid .property-box .img::after {
    content: "";
    background: url(../img/white-icon-logo.png) 90% 10% no-repeat;
    background-size: 30% auto;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    opacity: 0;
    transition: 0.3s all ease;
    display: none;
}

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

.property-details-grid {
    padding-top: 10px;
}

.property-box:hover img::before {
    opacity: 1;
}

.property-details-grid h3 {
    margin: 0px;
    line-height: 1;
    font-size: 35px;
}

.property-details-grid p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.property-details-grid p.price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.property-details-grid p.type {
    font-size: 16px;
    font-weight: 600;
}

.property-details-grid .btn-default {
    color: #000;
    font-size: 16px;
}

.property-details-grid ul {
    padding: 0;
    margin: 0;
    list-style: none;
    transition: var(--trans);
}

.property-details-grid ul li {
    display: inline-block;
    margin-right: 25px;
}

.property-details-grid ul li:last-child {
    margin-right: 0;
}

.property-details-grid ul li i {
    margin-left: 8px;
}

.btn-default {
    font-size: 14px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    padding: 10px 20px;
    color: #000;
    background: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    outline: none;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
    opacity: 1;
    border: none;
    text-align: center;
}

.current-page-pagination,
.btn-default:hover {
    background: #000;
    color: #fff;
}

#multi-step-form {
    padding: 40px;
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
    font-family: "Outfit", sans-serif;
}

.forms {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
    padding: 100px;
    text-align: center;
}

.forms input,
.forms select,
.forms textarea {
    background: transparent;
    border: 1px solid #fff;
    outline: none;
    color: #fff;
    height: 45px;
    padding-left: 12px;
    margin-bottom: 20px;
    font-family: "Outfit", sans-serif;
    width: 100%;
}

.forms select option {
    color: #000;
}

.forms select option:hover {
    background-color: #eee !important;
    color: #000 !important;
}

.forms textarea {
    height: 120px;
    padding-top: 12px;
}

.forms ::placeholder {
    text-transform: uppercase;
    color: #fff;
    opacity: 0.7;
    font-size: 15px;
}

.cpage .inner a,
.cpage .inner p {
    color: #000;
    text-decoration: none;
    font-size: 25px;
    transition: var(--trans);
    margin-bottom: 20px;
}

.cpage .inner a:hover {
    color: var(--accent-color);
}

.padd-lg {
    padding: 60px 0;
}

.homeEvalutation {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
    padding: 40px;
}

.service-row {
    margin-bottom: 70px;
}

.marketing .row.mr-row {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.marketing {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
}

.marketing .inner p {
    font-size: 18px;
}

.property-details-hover {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    bottom: unset;
    opacity: 0;
}

.property-box:hover .property-details-hover {
    opacity: 1;
}

.home--banner .inner img {
    max-width: 600px;
}

.home--banner h1 {
    font-size: 70px;
    color: #000;
    /* filter: drop-shadow(2px 4px 6px black); */
}

/* Loader Styles start here */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    text-align: center;
    z-index: 1001;
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--accent-color);
    width: 50%;
    height: 100%;
    z-index: 1000;
    transition: all 2s 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loader-wrapper .loader-section.section-left {
    left: 0;
    transform-origin: right center;
}

.loader-wrapper .loader-section.section-right {
    right: 0;
    transform-origin: left center;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%) rotateY(90deg);
    transition: all 2s 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%) rotateY(-90deg);
    transition: all 2s 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
    opacity: 0;
    transition: all 1s 1s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 3s ease-out;
}

#multi-step-form label {
    display: block;
}

.forms form label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
}

.forms fieldset {
    display: none;
}

.forms fieldset#step1 {
    display: block;
}

.forms .btn-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.forms input[type="checkbox"] {
    text-align: left;
    width: 20px;
    height: 20px;
}

ul.nolist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.about--page .socials a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 17px;
    font-family: "Outfit", sans-serif;
    transition: var(--trans);
}

.about--page .socials a:hover {
    color: var(--accent-color);
}

.about--page .socials a i {
    margin-right: 10px;
}

.niceForm input,
.niceForm select,
.niceForm textarea {
    background: transparent;
    border: 1px solid #333;
    outline: none;
    color: #333;
    height: 55px;
    padding-left: 12px;
    margin-bottom: 20px;
    font-family: "Outfit", sans-serif;
    width: 100%;
}

.niceForm textarea {
    height: 100px;
}

.bg-accent {
    background: var(--accent-color);
}

.steps .single-step h4 {
    -webkit-text-stroke-color: #000;
    color: transparent;
    -webkit-text-stroke-width: 1px;
}

.steps .conclusion {
    font-size: 20px;
    font-weight: 500;
}

.steps .single-step:last-child .arrow-icon {
    display: none !important;
}

.blog-grid .details {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
    padding: 20px;
    height: 100%;
}

.blog-grid .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-grid .inner {
    height: 100%;
    overflow: hidden;
}

body:not(.home) .wrapper {
    margin-top: 77px;
}

#multi-step-form .fw-plain-layout .fw-step-part-title {
    display: none;
}

.single-blog p a,
.single-blog li a {
    font-family: "Outfit", sans-serif;
}

a.static,
button.static {
    background: #141414;
    display: inline-block;
    padding: 10px 15px;
    min-width: 160px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Outfit", sans-serif;
    transition: 0.5s all ease;
    font-weight: 400;
    border: none;
}

a.static.gold,
button.static.gold {
    background: var(--accent-color);
    color: #000;
}

a.static.gold:hover,
button.static.gold:hover {
    background: #141414;
    color: #fff;
}

#my-prop-search input,
#my-prop-search select {
    width: 100%;
    height: 45px;
    background: transparent;
    border: none;
    border-bottom: solid 1px #fff;
    padding: 0 10px;
    color: #fff;
}

#my-prop-search select option {
    color: #000;
}

#my-prop-search input:focus,
#my-prop-search select:focus {
    outline: none;
}

#my-prop-search {
    background-repeat: repeat;
    background-image: url(/wp-content/uploads/2024/03/bg-2.png);
    background-color: #141414;
    color: #fff;
    padding: 50px;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
}
.mw-calc-section {
    background-color: #000 !important;
}

#slider #pocket-thumbnail img {
    height: 70px;
}

.acf-map {
    width: 100%;
    height: 450px;
    border: #ccc solid 1px;
}

.acf-map img {
    max-width: inherit !important;
}

.consent-ctn {
    margin-bottom: 20px;
}

.consent-ctn input[type="checkbox"] {
    height: auto;
    width: auto;
    margin: 0;
}

.errorpage {
    min-height: 51vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

.home--banner .arrowdown {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    font-size: 40px;
    color: #000;
}

.home--banner .arrowdown a {
    color: #000;
}
