/* General */
:root {
    --color-green: #23ce6b;
    --dark-green: #1ea356;
    --color-yellow: #ffc800;
    --color-orange: #ffae18;
    --color-white: #ffffff;
    --color-black: #000000;
    --gray-900: #212121;
    --gray-800: #424242;
    --gray-750: #565656;
    --gray-700: #616161;
    --gray-600: #757575;
    --gray-500: #9e9e9e;
    --gray-400: #bdbdbd;
    --gray-350: #d9d9d9;
    --gray-300: #e0e0e0;
    --gray-200: #eeeeee;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
}

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

.wpp-floating {
    z-index: 99;
    position: fixed;
    bottom: 40px;
    right: 40px;
    transition: transform 0.2s ease-in-out;
}


@media only screen and (max-width: 768px){
    .wpp-floating {
        z-index: 99;
        position: fixed;
        bottom: 25px;
        right: 25px;
        transition: transform 0.2s ease-in-out;
    }
}



.wpp-floating:hover {
    transform: scale(1.05);
}

.wpp-floating img {
    width: 100%;
}

/* Buttons */
.black-outline-button {
    background-color: var(--color-white);
    color: var(--color-black);
    box-shadow: 0px 0px 0px 1.2px var(--color-black) inset;
    border-radius: 15px;
    border: none;
    padding: 18px;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    display: block;
    text-decoration: none;
}

.black-outline-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--color-orange) inset;
    background-color: var(--color-orange);
    color: var(--color-white);
}

.primary-button {
    background-color: var(--color-orange);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 15px;
    border: none;
    padding: 14px 33px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.primary-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--color-orange) inset;
    background: transparent;
    color: var(--color-orange);
}

.green-button {
    background-color: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 15px;
    border: none;
    padding: 14px 70px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.green-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--color-green) inset;
    background: transparent;
    color: var(--color-green);
}

.green-button-outline {
    background-color: var(--color-white);
    color: var(--color-green);
    text-decoration: none;
    border-radius: 15px;
    border: none;
    padding: 14px 70px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
    box-shadow: 0px 0px 0px 1.2px var(--color-green) inset;
}

.green-button-outline:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.orange-button-outline {
    background-color: var(--color-white);
    color: var(--color-orange);
    text-decoration: none;
    border-radius: 15px;
    border: none;
    padding: 14px 70px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
    box-shadow: 0px 0px 0px 1.2px var(--color-orange) inset;
}

.orange-button-outline:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.white-button {
    background-color: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 8px;
    border: none;
    padding: 10px 16px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.white-button:hover {
    background-color: var(--color-yellow);
    color: var(--color-white);
}

/* Header */
.header-white-bg {
    background-color: var(--color-white) !important;
    background: var(--color-white);
}

.header-white-bg .dropdown-logos .custom-dropdown-header-link i {
    color: var(--color-black) !important;
}

.header-home .collapse .dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--color-white);
}

.header-home .dropdown-logos .custom-dropdown-header-link i {
    color: var(--color-white);
}

.header-white-bg .nav-link {
    color: var(--color-black) !important;
}

.header-white-bg .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.header-real-state .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.header-real-state .navbar-toggler {
    border: none;
}

.header-real-state .navbar-toggler:focus {
    box-shadow: none;
}

.header-real-state {
    z-index: 2;
    position: absolute;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
}

.header-real-state {
    transition: background-color 0.3s ease;
}

.default-header .navbar-brand img {
    width: 100%;
    max-width: 115px;
    max-height: 56px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.default-header hr {
    width: 100%;
    height: 1px;
    display: none;
}

.default-header {
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0px 2px 20px 2px rgba(0, 0, 0, 0.05);
}

.default-header .nav-link {
    font-size: 15px;
    color: var(--color-black);
    font-weight: 400;
}

.header-real-state .nav-link {
    color: var(--color-black);
}

.default-header .nav-link:hover {
    text-decoration: underline;
}

.default-header .navbar-nav {
    gap: 45px;
}

/* Footer */
footer {
    background-color: var(--gray-750);
    padding-top: 60px;
    padding-bottom: 22px;
}

.footer-top img {
    max-height: 100px;
    margin-bottom: 45px;
}

.footer-top ul {
    list-style: none;
    padding-left: 0;
}

.footer-top li {
    margin-bottom: 20px;
}

.footer-top li a,
.footer-top li p {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 400;
    transition: color 0.2s ease-in-out;
    text-decoration: none;
}

.footer-top li a:hover {
    color: var(--gray-400);
}

.footer-top h4 {
    font-size: 18px;
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 35px;
}

.icon-card {
    background: var(--gray-800);
    padding: 5px;
    border-radius: 5px;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.icon-card:hover {
    transform: scale(1.05);
}

.icon-card i {
    color: var(--color-white);
    font-size: 22px;
}

.footer-bottom hr {
    color: var(--gray-350);
    opacity: 1;
    margin-bottom: 25px;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 0;
}

/* Home */
.real-estate-presentation h2 {
    font-size: 42px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 80px;
}

.real-estate-presentation p {
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 400;
    margin-bottom: 50px;
}

.scene-card {
    width: 100%;
    perspective: 600px;
    border-radius: 15px;
    margin-bottom: 20px;

    position: relative;
}

.scene-card.active {
    z-index: 1051;
}

.card {
    width: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    border-radius: 15px;
}

.card-face {
    width: 100%;
    color: var(--color-black);
    font-size: 16px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 30px;
    transition: opacity 0.5s ease-in-out;
}

.card-face-back {
    transform: rotateX(180deg);
}

.card-face-back h3 {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 30px;
}

.card.is-flipped {
    transform: rotateX(180deg);
}

.card .primary-button {
    width: fit-content;
    padding-left: 60px;
    padding-right: 60px;
}

.bg-overlay {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.card-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.card-container .card-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease-in-out;
}

.services img {
    width: 100%;
    max-height: 500px;
    border-radius: 15px;
}

.services a {
    text-decoration: none;
}

.services-bg {
    background-color: var(--gray-100);
    margin-bottom: 100px;
    padding-bottom: 130px;
}

.services-data {
    position: relative;
    width: 100%;
    padding: 48px 25px 25px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
    display: flex;
    justify-content: space-between;
    align-items: end;
    transition: all 0.4s ease-in-out;
}

.services-title {
    font-size: 24px;
    color: var(--color-white);
    font-weight: 600;
    padding-right: 10px;
}

.services-description {
    min-height: 63px;
    font-size: 14px;
    color: var(--gray-300);
    font-weight: 300;
    padding-right: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-bottom: 0;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-container:hover .services-description {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.services-content {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.services-text {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(74px);
    transition: transform 0.4s ease-in-out;
}

.services a:hover .services-text {
    transform: translateY(0%);
}

.services a:hover .services-content {
    transform: translateY(0%);
}

.about-us-home p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.about-us-image {
    object-fit: cover;
}

.about-us-home h1 {
    font-size: 64px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-us-home h1 > img {
    max-height: 35px;
    width: fit-content;
    border-radius: 0;
}

.about-us-home img {
    border-radius: 15px;
    width: 100%;
    max-height: 500px;
}

.about-us-home {
    margin-bottom: 160px;
    position: relative;
}

.arrow-bg {
    position: absolute;
    z-index: -1;
    left: 7%;
    bottom: -18%;
    transform: rotate(20deg);
    width: 100%;
    height: 100%;
}

.arrow-bg img {
    border-radius: 0;
}

.about-us-home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.about-us-home-content-description {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.about-us-home-content a {
    width: fit-content;
    margin-top: 20px;
}

/* Services */
.services-intro h1 {
    font-size: 64px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 25px;
}

.services-intro p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
    margin-bottom: 0;
}

.services-intro img {
    border-radius: 15px;
    width: 100%;
    max-height: 510px;
}

.services-intro {
    margin-top: 60px;
    margin-bottom: 110px;
}

.service-icon {
    background: var(--color-yellow);
    width: 100px;
    height: 90px;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-top p {
    font-size: 24px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 0;
}

.service-card-top {
    margin-bottom: 36px;
}

.service-icon i {
    color: var(--color-black);
    font-size: 36px;
}

.service-card-body p {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 8px;
    font-weight: 400;
}

.service-card-body a {
    font-size: 16px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 600;
}

.service-card-body a:hover {
    text-decoration: underline;
}

.service-card-body {
    margin-bottom: 30px;
}

.service-card a:last-child {
    width: fit-content;
}

.service-cards h2 {
    font-size: 48px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 32px;
}

.service-cards {
    margin-bottom: 150px;
}

#accordionQuestions .accordion-button:not(.collapsed) {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: none;
}

#accordionQuestions .accordion-body {
    color: var(--gray-600);
    padding-top: 0;
    padding-left: 0;
    padding-right: 30px;
    font-size: 14px;
}

#accordionQuestions .accordion-item {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--gray-350);
}

#accordionQuestions [type="button"]:not(:disabled),
[type="reset"]:not(:disabled) {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    padding-right: 0;
    padding-left: 0;
    justify-content: space-between;
}

#accordionQuestions [type="button"]:not(:disabled):focus,
[type="reset"]:not(:disabled):focus {
    outline: none;
    box-shadow: none;
    border: none;
}

#accordionQuestions .accordion-button:not(.collapsed)::after {
    margin-left: 45px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='black' stroke-width='2'/></svg>");
}

#accordionQuestions .accordion-button::after {
    margin-left: 45px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='black' stroke-width='2'/></svg>");
}

#accordionQuestions.accordion {
    --bs-accordion-border-radius: 0;
}

.questions {
    margin-bottom: 170px;
}

.questions h2 {
    font-size: 36px;
    color: var(--color-black);
    font-weight: 700;
}

.questions p {
    font-size: 20px;
    color: var(--color-black);
    font-weight: 300;
    margin-bottom: 40px;
}

#accordionQuestions {
    padding: 0 160px;
}

#accordionQuestions .accordion-item:first-child .accordion-header {
    border-top: 1px solid var(--gray-350);
}

#serviceModal .modal-header {
    padding: 25px 30px;
}

#serviceModal .modal-body {
    padding: 30px;
}

#serviceModal .modal-body p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

#serviceModal .modal-title {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 700;
}

#serviceModal .modal-dialog-scrollable .modal-content {
    max-height: 80%;
}

.modal-body::-webkit-scrollbar {
    width: 10px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--gray-200);
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Architectural design */
.architectural-intro img {
    margin-bottom: 60px;
    width: 100%;
    max-height: 510px;
    border-radius: 15px;
}

.architectural-intro {
    margin-top: 40px;
    margin-bottom: 60px;
}

.architectural-intro h1 {
    font-size: 64px;
    color: var(--color-black);
    font-weight: 700;
}

.architectural-intro p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.architectural-card a {
    text-decoration: none;
}

.architectural-card img {
    width: 100%;
    max-height: 480px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.architectural-card-body {
    padding: 30px;
    border: 1px solid var(--gray-300);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    min-height: 15rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.architectural-card {
    margin-bottom: 50px;
    transition: transform 0.2s ease-in-out;
}

.architectural-card:hover {
    transform: translateY(-5px);
}

.architectural-card-body p {
    font-size: 24px;
    color: var(--color-black);
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.architectural-card .green-button {
    width: fit-content;
}

.architectural-cards .green-button-outline {
    margin-top: 80px;
    width: 36%;
}

.architectural-cards {
    margin-bottom: 150px;
}

.architectural-show-intro {
    margin-top: 45px;
    margin-bottom: 110px;
}

.architectural-show-intro h1 {
    font-size: 48px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 10px;
}

.architectural-show-intro img {
    width: 100%;
    max-height: 640px;
    border-radius: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    object-fit: cover;
}

.architectural-show-date p {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 500;
}

.architectural-show-desc p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.gallery-navigation-btns {
    margin-top: 85px;
    margin-bottom: 150px;
}

.custom-arrow-hover {
    display: flex;
    gap: 10px;
    align-items: center;
    transition: gap 0.2s ease-in-out;
}

.custom-arrow-hover:hover {
    gap: 16px;
}

.gallery img {
    width: 100%;
    max-height: 320px;
    border-radius: 15px;
    margin-bottom: 35px;
    transition: filter 0.2s ease-in-out;
}

.gallery a:hover img {
    filter: brightness(80%);
}

#galleryModal .modal-body {
    padding: 0;
}

#galleryModal .modal-content {
    background-color: transparent;
    border: none;
}

#galleryModal .modal-header {
    border: none;
    padding-right: 0;
}

#galleryModal .btn-close {
    opacity: 1;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.swiperGallery img {
    max-width: 1700px;
    max-height: 800px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.swiperGallery {
    border-radius: 15px;
}

.swiperGallery .swiper-button-next,
.swiperGallery .swiper-button-prev {
    font-size: 50px;
    color: var(--color-white);
    text-shadow: -2px 0 var(--gray-700), 0 2px var(--gray-700),
        2px 0 var(--gray-700), 0 -2px var(--gray-700);
    transition: all 0.2s ease-in-out;
}

.swiperGallery .swiper-button-next {
    padding-right: 36px;
}

.swiperGallery .swiper-button-prev {
    padding-left: 36px;
}

.swiperGallery .swiper-button-next::after,
.swiperGallery .swiper-button-prev::after {
    content: none;
}

/* About */
.about-banner {
    width: 100%;
    max-height: 700px;
}

.about-us img {
    width: 100%;
    border-radius: 15px;
    max-height: 510px;
}

.about-us h1 {
    font-size: 64px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-us p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.about-us {
    margin-top: 100px;
    margin-bottom: 150px;
}

.about-us-padding {
    padding-right: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-loading-background {
    background: var(--color-black);
}

.custom-container {
    position: relative;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.custom-video-btn {
    background: var(--color-yellow);
    font-size: 36px;
    border: none;
    color: var(--color-white);
    padding: 25px;
    width: 90px;
    height: 90px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.custom-video-btn:hover {
    background: transparent;
    box-shadow: 0px 0px 0px 1.2px var(--color-yellow) inset;
    color: var(--color-yellow);
}

.play-button {
    position: absolute;
}

.play-button-modal {
    position: absolute;
}

.video-container img {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
}

#ytVideo, .ytVideo{
    width: 100%;
    height: 600px;
    border-radius: 15px;
}

.video-text p {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.video-text {
    padding: 0px 130px;
}

.video-text-section {
    margin-top: 50px;
    margin-bottom: 200px;
}

/* Products */
.filter-badge {
    background-color: var(--gray-750);
    padding: 5px 10px;
    border-radius: 15px;
    color: var(--color-white);
}

.filter-options {
    margin-bottom: 70px;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.filter-options p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--color-black);
    font-weight: 500;
}

.filter-options .primary-button {
    width: 100%;
}

.filter-options .form-select {
    border: 1px solid var(--color-black);
    font-size: 15px;
    font-weight: 300;
    padding: 14px;
    border-radius: 15px;
}

.disabled-swiper-button {
    display: none;
}

.swiper-pagination-bullet-active {
    background: var(--color-white) !important;
}

.swiper-pagination-2 .swiper-pagination-bullet-active {
    background: var(--gray-400) !important;
}

.swiper-pagination-2 .swiper-pagination-bullet {
    background: var(--gray-700);
}

.swiper-pagination-2 {
    bottom: 6rem !important;
}

.swiper-pagination-3 .swiper-pagination-bullet-active {
    background: var(--gray-400) !important;
}

.swiper-pagination-3 .swiper-pagination-bullet {
    background: var(--gray-700);
}

.swiper-pagination-3 {
    bottom: 6rem !important;
}

.productGallery {
    border-radius: 15px;
}

.swiper-pagination-bullet {
    background: var(--gray-300);
}

.productGallery .swiper-button-next:after,
.productGallery .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bolder;
    background: var(--color-white);
    color: var(--color-black);
    padding: 12px 16px;
    border-radius: 5px;
}

.productGallery .swiper-button-next:after {
    margin-right: 10px;
}

.productGallery .swiper-button-prev:after {
    margin-left: 10px;
}

.productGallery img:not(.room-list-content img, .room-list-content-end img) {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 15px;
}

.product-card-body p {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 10px;
    padding-top: 20px;
}

.product-card-body {
    border-radius: 15px;
    border: 1px solid var(--gray-300);
    padding: 22px 18px;
}

.product-card-body h3 {
    font-size: 20px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 16px;
}

.product-card-body .price {
    font-size: 24px;
    color: var(--color-black);
    font-weight: 700;
    padding-right: 10px;
    margin-bottom: 0;
}

.product-card-body .cut-price {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 500;
    text-decoration: line-through;
    margin-bottom: 3px;
}

.productGallery {
    margin-bottom: -24px;
}

.categories p {
    font-size: 13px;
    color: var(--gray-700);
    padding-top: 0;
    font-weight: 500;
    margin-bottom: 0;
}

.categories span {
    color: var(--gray-700);
    padding: 0 10px;
}

.categories {
    margin-bottom: 20px;
}

.product-card a {
    text-decoration: none;
}

.products {
    margin-bottom: 95px;
}

.products .col {
    margin-bottom: 35px;
}

.swiperFilters .swiper-button-next:after,
.swiperFilters .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bolder;
    background: var(--gray-750);
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 5px;
}

.roomGallery .swiper-button-next:after,
.roomGallery .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bolder;
    background: var(--color-white);
    color: var(--color-black);
    padding: 12px 16px;
    border-radius: 5px;
}

.roomGallery .swiper-button-next:after {
    margin-right: 24px;
}

.roomGallery .swiper-button-prev:after {
    margin-left: 24px;
}

.product-card .product-card-badge {
    background-color: var(--color-orange);
    padding: 6px 30px;
    color: var(--color-white);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
}

.product-card {
    position: relative;
}

#filtersModal .modal-body h3 {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 30px;
}

.swiperFilters input {
    display: none;
}

.swiperFilters label {
    background: transparent;
    padding: 10px 30px;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 15px;
}

.swiperFilters input:checked + label {
    border: 1px solid var(--color-orange);
    background: var(--color-orange);
    color: var(--color-white);
}

.swiperFilters .swiper-slide {
    width: auto !important;
}

#filtersModal .modal-body hr {
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--gray-350);
    opacity: 1;
}

#filtersModal .modal-header,
#filtersModal .modal-footer {
    padding: 30px;
}

#filtersModal .modal-title {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 500;
}

#filtersModal .modal-body {
    padding: 30px 0px 40px 0px;
}

.swiperFilters .swiper-slide:first-child {
    margin-left: 30px;
}

.swiperFilters .swiper-slide:last-child {
    margin-right: 30px;
}

#filtersModal .modal-footer span {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

#filtersModal .modal-footer span:hover {
    text-decoration: underline;
}

#filtersModal .modal-content {
    border-radius: 15px;
}

.roomGallery img {
    width: 100%;
    max-height: 730px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.roomGallery {
    margin-bottom: 50px;
    position: relative;
}

.roomGallery a {
    cursor: zoom-in;
}

.roomGallery i {
    position: absolute;
    z-index: 2;
    right: 30px;
    top: 30px;
    font-size: 40px;
    color: var(--gray-300);
}

.roomGallery .img-maximize {
    position: absolute;
    z-index: 2;
    right: 19px;
    top: 19px;
    width: 36px;
    height: 56px;
}

.product-first-section .code {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 300;
    margin-bottom: 5px;
}

.product-first-section h1 {
    font-size: 32px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 22px;
}

.product-first-section p:not(.categories p):not(.code) {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
    margin-top: 30px;
}

.line-space {
    margin: 50px 0;
    color: var(--gray-350);
    opacity: 1;
}

#roomContentModal .room-list-items li {
    padding: 12px 0;
}

#roomContentModal .modal-body {
    padding: 30px;
}

#roomContentModal .modal-header {
    padding: 24px 30px;
}

.product-features-section li {
    font-size: 16px;
    color: var(--color-black);
    font-weight: 400;
}

.product-features-section ul {
    list-style-type: none;
    padding-left: 0;
}

.product-features-section li {
    padding: 7px 0;
}

.product-features-section .black-outline-button {
    margin-top: 15px;
    width: 40%;
}

.product-features-section h2 {
    font-size: 20px;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: 700;
    margin-bottom: 26px;
}

.room-list-items ul {
    list-style: none;
    padding: 0;
}

.room-list-items p:first-child {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 500;
}

.room-list-items p:last-of-type {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 500;
}

.room-list-items li {
    padding: 7px 0;
}

.broker-card {
    border-radius: 15px;
    border: 1px solid var(--gray-200);
    padding: 30px 26px;
    display: flex;
    margin-bottom: 60px;
}

.broker-card img {
    width: 100%;
    border-radius: 15px;
    max-width: 220px;
    max-height: 220px;
    margin-right: 25px;
}

.broker-card h2 {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.broker-card p:first-of-type {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 300;
    margin-bottom: 10px;
}

.broker-card p:last-of-type {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 300;
    margin-bottom: 25px;
}

.broker-card .primary-button {
    width: max-content;
}

.map iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    margin-bottom: 100px;
}

.swiper-wrap .swiper-button-prev-2,
.swiper-wrap .swiper-button-next-2 {
    background-color: var(--gray-750);
    padding: 10px;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    top: 40%;
    z-index: 2;
    position: absolute;
    margin: 0 10px;
}

.swiper-wrap .swiper-button-next-2 {
    right: -55px;
}

.swiper-wrap .swiper-button-prev-2 {
    left: -55px;
}

.swiper-wrap .swiper-button-prev-2 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox%3D'0 0 27 44'%3E%3Cpath d%3D'M0,22L22,0l2.1,2.1L4.2,22l19.9,19.9L22,44L0,22L0,22L0,22z' fill%3D'%23ffffff' stroke%3D'%23ffffff' stroke-width%3D'3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: center;
}

.swiper-wrap .swiper-button-next-2 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox%3D'0 0 27 44'%3E%3Cpath d%3D'M27,22L27,22L5,44l-2.1-2.1L22.8,22L2.9,2.1L5,0L27,22L27,22z' fill%3D'%23ffffff' stroke%3D'%23ffffff' stroke-width%3D'3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: center;
}

.swiper-wrap .swiper-button-prev-3 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox%3D'0 0 27 44'%3E%3Cpath d%3D'M0,22L22,0l2.1,2.1L4.2,22l19.9,19.9L22,44L0,22L0,22L0,22z' fill%3D'%23ffffff' stroke%3D'%23ffffff' stroke-width%3D'3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: center;
}

.swiper-wrap .swiper-button-next-3 {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox%3D'0 0 27 44'%3E%3Cpath d%3D'M27,22L27,22L5,44l-2.1-2.1L22.8,22L2.9,2.1L5,0L27,22L27,22z' fill%3D'%23ffffff' stroke%3D'%23ffffff' stroke-width%3D'3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: center;
}

.swiper-wrap .swiper-button-prev-3,
.swiper-wrap .swiper-button-next-3 {
    background-color: var(--gray-750);
    padding: 10px;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    top: 40%;
    z-index: 2;
    position: absolute;
    margin: 0 10px;
}

.swiper-wrap .swiper-button-next-3 {
    right: -55px;
}

.swiper_wrap {
    position: relative;
    height: 100%;
    width: 100%;
}

.swiperProducts {
    margin-bottom: 120px;
}

.swiperProducts2 {
    margin-bottom: 120px;
}

.swiper-products-title h2 {
    font-size: 32px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 0;
}

.swiper-products-title {
    margin-bottom: 30px;
}

.productGalleryCustom {
    border-radius: 15px;
}

.productGalleryCustom {
    margin-bottom: -24px;
}

.productGalleryCustom .swiper-button-next:after,
.productGalleryCustom .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bolder;
    background: var(--color-white);
    color: var(--color-black);
    padding: 12px 16px;
    border-radius: 5px;
}

.productGalleryCustom .swiper-button-next:after {
    margin-right: 10px;
}

.productGalleryCustom .swiper-button-prev:after {
    margin-left: 10px;
}

.productGalleryCustom
    img:not(.room-list-content img, .room-list-content-end img) {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    object-fit: cover;
}

.floating-value-card {
    position: sticky;
    top: 40px;
    margin-bottom: 106px;
    padding: 40px;
    box-shadow: 0px 2px 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.floating-value-card hr {
    color: var(--gray-500);
    opacity: 1;
    margin: 20px 0;
}

.floating-value-card h2 {
    margin-bottom: 36px;
    font-size: 24px;
    color: var(--color-black);
    font-weight: 600;
}

.floating-value-card .info p {
    font-size: 18px;
    color: var(--gray-700);
    font-weight: 500;
}

.floating-value-card .info p:last-child {
    margin-bottom: 0;
}

.floating-value-card .final-value p {
    font-size: 22px;
    color: var(--color-black);
    font-weight: 500;
    margin-bottom: 0;
}

.floating-value-card .final-value {
    margin-bottom: 36px;
}

.floating-contact-card {
    position: sticky;
    top: 40px;
    margin-bottom: 106px;
    padding: 25px;
    box-shadow: 0px 2px 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.floating-contact-card hr {
    color: var(--gray-500);
    opacity: 1;
    margin: 20px 0;
}

.floating-contact-card h2 {
    margin-bottom: 36px;
    font-size: 24px;
    color: var(--color-black);
    font-weight: 600;
}

.form-control {
    border: 1px solid var(--color-black);
    padding: 12px 20px;
    border-radius: 15px;
}

.form-control::placeholder {
    font-size: 15px;
    color: var(--gray-700);
    font-weight: 300;
}

textarea {
    resize: none;
}

.form-control:focus {
    border-color: var(--color-black);
    box-shadow: none;
}

/* Real estate */
.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: var(--color-white);
    padding: 0;
    margin: 0;
    height: 900px;

    display: flex;
    align-items: center;
}

.filter-icon {
    font-size: 26px;
    padding: 18px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--color-white);
    border: 1px solid var(--color-yellow);
}

.filters-bg {
    background: var(--color-white);
    border-radius: 15px;
    padding: 16px 25px;
}

.filters-bg input::placeholder {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 300;
}

.filters-bg input {
    border: none;
}

.filters-bg input:focus {
    border-bottom: 1px solid var(--gray-600);
    outline: 0;
    padding-bottom: 0;
}

.filters-bg h3 {
    font-size: 15px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 0;
}

.filters-banner h1 {
    font-size: 48px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 55px;
    text-align: center;
}

.filters-banner .dropdown-toggle {
    color: var(--gray-600);
    padding-left: 0;
    padding-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    border: none;
}

.filters-banner .dropdown-item {
    font-size: 14px;
}

.filters-banner .dropdown-item:active,
.filters-banner .dropdown-item.active {
    background-color: var(--color-green);
}

.filters-button {
    background: transparent;
    color: var(--color-black);
    border: none;
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
}

.filters-banner input:checked + label {
    border: 1px solid var(--color-green);
    background: var(--color-green);
    color: var(--color-white);
    cursor: context-menu;
}

.filters-banner label {
    background: var(--dark-green);
    padding: 10px 30px;
    color: var(--color-white);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

.filters-banner .filter-type input {
    display: none;
}

.filters-banner .filter-type {
    display: flex;
    justify-content: center;
}

.filter-border {
    border-right: 1px solid var(--gray-350);
    padding-right: 20px;
}

.filters-banner {
    margin-bottom: 100px;
}

.categories-highlight p {
    font-size: 13px;
    color: var(--color-white);
    padding-top: 0;
    font-weight: 500;
    margin-bottom: 0;
}

.categories-highlight span {
    color: var(--color-white);
    padding: 0 10px;
}

.categories-highlight {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
}

.banner-highlight h2 {
    font-size: 48px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 16px;
}

.banner-highlight {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 120px;
}

.banner-highlight img {
    width: 100%;
    max-height: 400px;
    border-radius: 15px;
    position: relative;
    object-fit: cover;
}

.banner-highlight-content {
    position: absolute;
    bottom: 70px;
    left: 60px;
    z-index: 2;
    margin-bottom: -55px;;
}

.advertise-with-us {
    background-color: var(--color-orange);
    padding: 60px 0;
    margin-bottom: 120px;
}

.advertise-with-us h2 {
    font-size: 42px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 12px;
}

.advertise-text {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 20px;
}

.advertise-with-us a {
    width: fit-content;
}

.advertise-with-us img {
    border-radius: 15px;
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    padding-right: 10px;
}

.gradient-bg {
    position: relative;
}

.bg-image-gradient {
    min-height: 360px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.contact-card {
    box-shadow: 0px 2px 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 45px;
    max-width: 86%;

    margin-top: 120px;
    margin-bottom: 120px;
}

.contact-card h2 {
    font-size: 32px;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 400;
    margin-bottom: 40px;
}

.filters-bg hr {
    display: none;
}

@media only screen and (max-width: 1400px) {
    .filter-border {
        padding-right: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .video-text {
        padding: 0 20px;
    }

    .about-us {
        margin-top: 50px;
        margin-bottom: 90px;
    }

    .video-text-section {
        margin-bottom: 100px;
    }

    .about-us img {
        margin-top: 12px;
    }

    .filter-options .primary-button {
        padding: 14px;
    }

    .filter-button-container {
        margin-top: 20px;
        width: 100%;
    }

    .advertise-with-us img {
        padding-right: 0;
        margin-bottom: 16px;
    }

    .filter-border {
        padding-right: 12px;
    }

    .about-us-home img {
        max-height: 100%;
        margin-bottom: 50px;
    }

    .about-us-home-content a {
        margin-top: 50px;
    }

    .about-us-home-content {
        padding-left: 12px;
    }

    .default-header .navbar-nav {
        gap: 26px;
    }

    .about-us-padding {
        padding-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .fade {
        height: 100%!important;
        width: 100%!important;
    }

    #accordionQuestions {
        padding: 0;
    }

    .architectural-intro h1 {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .architectural-intro img {
        max-height: 100%;
    }

    .about-banner {
        max-height: 100%;
    }

    .filter-options .form-select {
        font-size: 14px;
    }

    .about-us h1 {
        font-size: 48px;
    }

    .video-container img {
        height: 400px;
    }

    #ytVideo {
        height: 400px;
    }

    .filter-options {
        gap: 26px;
    }

    .swiper-wrap .swiper-button-prev-2,
    .swiper-wrap .swiper-button-next-2,
    .swiper-wrap .swiper-button-prev-3,
    .swiper-wrap .swiper-button-next-3 {
        display: none;
    }

    .filters-bg {
        padding: 30px 32px;
    }

    .filters-bg hr {
        width: 100%;
        height: 1px;
        display: block;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .filter-type-intern {
        width: 100%;
    }

    .filter-border {
        border: none;
    }

    .header-white-bg .nav-link {
        color: var(--color-black) !important;
    }

    .default-header .navbar-nav {
        margin-top: 36px;
    }

    .default-header hr {
        display: block;
        margin: 0;
    }

    .card-container {
        margin-bottom: 20px;
    }

    .floating-value-card {
        padding: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .bg-img {
        background-position: -270px -100px;
    }

    .filters-banner label {
        padding: 10px 16px;
        font-size: 14px;
    }

    .advertise-with-us h2 {
        font-size: 36px;
    }

    .real-estate-presentation h2 {
        font-size: 30px;
    }

    .architectural-show-intro h1 {
        font-size: 32px;
    }

    .mb-15{
        margin-bottom: 15px;
    }

    .mt-15{
        margin-top: 15px
    }

    .product-features-section .black-outline-button {
        width: 100%;
    }

    .roomGallery .img-maximize {
        top: 10px;
    }

    .floating-value-card .final-value p {
        font-size: 18px;
    }

    .gallery-navigation-btns .green-button-outline {
        padding: 14px 30px;
    }

    .architectural-card .green-button {
        width: 100%;
    }

    .product-first-section h1 {
        font-size: 28px;
    }

    #accordionQuestions [type="button"]:not(:disabled),
    [type="reset"]:not(:disabled) {
        font-size: 16px;
    }

    .questions p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .broker-card{
        flex-wrap: wrap;
    }

    .broker-card img {
        max-width: 100%;
        max-height: 300px;
        object-fit: cover;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .broker-card .primary-button,
    .broker-card-content {
        width: 100%;
    }

    .filters-banner {
        padding-top: 100px;
    }

    .filter-button-container button {
        width: 100%;
    }

    .banner-highlight h2 {
        font-size: 33px;
    }

    .categories-highlight p {
        font-size: 12px;
    }

    .footer-top h4 {
        margin-bottom: 30px;
        margin-top: 50px;
    }

    .about-us-home-content-description {
        font-size: 14px;
        text-align: justify;
    }

    .footer-bottom hr {
        margin-top: 40px;
    }

    .about-us-home h1 {
        font-size: 48px;
        margin-bottom: 0;
    }

    .card-container {
        height: 200px;
    }

    .services-bg {
        padding-bottom: 70px;
    }

    .advertise-with-us img {
        max-height: 100%;
        height: 100%;
    }

    .banner-highlight img {
        max-height: 100%;
    }

    .architectural-show-intro img {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .architectural-show-intro {
        margin-bottom: 40px;
    }

    .services-intro h1 {
        font-size: 48px;
    }

    .services-intro {
        margin-bottom: 70px;
    }

    .service-cards h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 428px) {
    .contact-card .green-button {
        padding: 14px 36px;
        width: 100%;
    }

    .gallery-navigation-btns .green-button-outline {
        padding: 14px;
    }

    .banner-highlight-content {
        left: 31px;
    }

    .swiper-products-title .orange-button-outline {
        padding: 14px 36px;
    }

    .filter-options .form-select {
        font-size: 12px;
    }

    .filter-options .primary-button {
        font-size: 12px;
    }

    .filter-badge {
        font-size: 14px;
    }
}

.available-property-card {
    border-left: 2px solid var(--gray-300);
    border-right: 2px solid var(--gray-300);
    border-bottom: 2px solid var(--gray-300);
    border-radius: 10px;
    margin-bottom: 20px;
}

.property-image img {
    width: 100%;
    border-radius: 10px;
}


.property-content {
    padding: 0px 15px;
    .property-type {
        font-size: 14px;
        margin-bottom: 5px;
        margin-top: 20px;
        color: var(--gray-700);
    }
    .property-info {
        font-size: 12px;
        color: var(--gray-700);
    }
    .property-price {
        font-size: 24px;
        font-weight: 700;
    }
    .property-title {
        font-size: 20px;
        font-weight: 700;
    }
}

.available-properties-page-title h1 {
    font-weight: 700;
    margin-top: 64px;
    margin-bottom: 54px;
}

.available-property-link {
    text-decoration: none;
    color: unset;
}
