@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

.btn:focus, button:focus,input:focus,textarea:focus,select:focus{
    outline: none !important;
    box-shadow: none !important;
}
.form-select{
    background-image: none;
}

/*Hero */
#hero-section {
    min-height:calc(100vh - 70px);
}

section#hero-section .row {
    display: flex;
    align-items: center;
}
section#hero-section .row .home-cover {
    height: calc(100vh - 70px);
}
.home-text h1 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0px;
    color: rgba(73, 65, 62, 1);
    margin-bottom: 30px;
}

.home-text p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 1);
}
.btn.btn-colored {
    color: white;
    background: linear-gradient(0deg, #3F352F, #3F352F),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
}

.btn.btn-white {
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 10px;
    color: rgba(61, 43, 34, 1);
}

.home-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.home-buttons .btn {
    width: 50%;
}

.btn.btn-colored:hover {
    background: none;
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(61, 43, 34, 1);
}
.btn.btn-white:hover{
    color: white;
    background: linear-gradient(0deg, #3F352F, #3F352F),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));

}

section.home-banner img {
    border-radius: 20px;
}

section.absheron img {
    width: 100%;
    border-radius: 30px;
}

section.absheron .row {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

section.absheron .row h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    padding-right: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
section.absheron .row h2 span {
    border-bottom: 1px solid rgba(64, 64, 64, 0.4);
    display: block;
    width: calc(100% - 250px);
}
section.absheron .row p {
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 0px;
    padding-right: 30px;
}
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}


#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 60, 0.4);
    z-index: 1;
}
form.search-form {
    border-radius: 30px;
    padding: 15px 20px !important;
}
.search-form .flex-fill{
    border-right: 1px solid #000 !important;
}
.search-form .form-label{
    font-weight: bold;
    collapse: #000000;
}
.search-form .form-select {
    color: #000000;
    padding-left: 0px;
    border:none;
    background: none;
}

.nice-select:focus {
    outline: none;
    box-shadow: none;
}

.search-form .nice-select.form-select.open .list {
    left: -10px;
    width: calc(100% - 10px);
}

.search-form .nice-select:after,
.contact-form .nice-select:after {
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    width: 10px;
    height: 10px;
}

form.search-form button.btn.btn-dark {
    background: linear-gradient(0deg, #3F352F, #3F352F),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    margin: 0px 20px;
    min-width: 140px;
    border-radius: 12px;
}

form.search-form .flex-shrink-0 {
    display: flex;
    align-items: center;
}

section.latest-projects .card-body img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

form.search-form .flex-fill {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/*Header*/
.main-header {
    width: 100%;
    background: rgba(138, 129, 117, 1);
}
header.main-header.in-white {
    background: none;
}
.navbar-dark .navbar-brand img {
    height: 60px;
}

.btn-outline-light {
    transition: background-color 0.3s, border-color 0.3s;
}


.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 1);
    color: white;
}

.navbar-nav .nav-link:hover {
    color: #f8f9fa !important;
    opacity: 0.8;
}

ul.navbar-nav.w-100.mx-auto {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: nowrap;
}

.navbar-dark .navbar-brand {
    width: 250px;
}

a.btn.header-button{
    border-radius: 12px;
}

ul.navbar-nav.w-100.mx-auto  li.nav-item a {
    font-size: 16px;
}

header.main-header.in {
    position: relative;
    background: none;
}

header.main-header.in ul.navbar-nav li a {
    color: black !important;
}

header.main-header.in  a.header-button {
    color: black;
    border-color: black !important;
}

header.main-header.in a#navbarDropdownLang {
    color: black !important;
}
header.main-header.in .navbar-dark .navbar-brand img {
    filter: brightness(0);

}

.home-cover img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.text-muted {
    color: #443F3B !important;
}

section.latest-projects .card img.card-img-top {
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
}

section.latest-projects .card{
    padding: 10px;
    box-shadow: 0px 1px 10.8px 0px #0000001A;
    border-radius: 24px;
}

section.latest-projects .swiper.project-slider {
    padding: 20px;
}

section.latest-projects .card .card-body a.btn.btn-link {
    display: flex;
    color: white;
    background: #3F352F;
    width: 24px;
    height: 24px;
    float: right;
    border-radius: 50%;
    align-items: center;
    justify-content: flex-start;
    padding: 0px !important;
}

section.latest-projects .card .card-body a.btn.btn-link i {
    color: white !important;
    font-size: 18px !important;
    margin-left: -2px;
}

section.latest-projects .card .card-body h5.card-title {
    font-size: 16px;
}

section.latest-projects .card .card-body {
    padding: 16px 0px 5px;
}

section.latest-projects .card-body span {
    font-size: 16px;
}

h2.project-section-title {
    font-weight:600;
}

p.project-section-text {
    font-size: 24px;
    line-height: 32px;
    margin: 0px;
}

section.latest-projects .row {
    display: flex;
    align-items: center;
}

/*Advantages*/
h2.advantage-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
}

p.advantage-text {
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
    color: #004658;
}
.advantage-card {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.card-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.advantage-card img {
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}
.advantage-card:hover .card-overlay {
    opacity: 1;
}


.advantage-card .card-overlay {
    height: 40%;
    top: 60%;
    display: flex;
    border-radius: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    align-items: center;
}
.advantage-card .card-overlay p{
    margin-bottom: 0px;
}

/*Gallery*/
h2.gallery-title {
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0px;
}

ul#galleryTabs {
    gap: 20px;
}
section.gallery h2 {
    font-weight: 400;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: justify;
    margin-right: 50px;
    margin-bottom: 0px;
}
ul#galleryTabs li.nav-item button {
    min-width: 200px;
    height: 50px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
}

ul#galleryTabs li.nav-item button.active {
    background: rgba(50, 42, 38, 1);
    color: white;
}
.gallery-swiper .ratio{
    border-radius: 20px;
    overflow: hidden;
}
.gallery-swiper a img{
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
}
.tab-pane.fade:not(.show),
.tab-pane.fade.show {
    transition: opacity 0.3s ease-in-out !important;
}

.swiper-pagination-bullet-active {
    background: #0d6efd !important;
}

/*Apartment*/
h2.aparment-title {
    font-weight: 400;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0px;
}

.plan-tab-btn {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(50, 42, 38, 1);
    border: 1px solid #3F352F;
    border-radius: 10px;
    padding: 10px 20px;
}

.plan-tab-btn.active {
    color: #ffffff;
    background: linear-gradient(0deg, #3F352F, #3F352F),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    border-radius: 10px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: center;
}

.tab-pane.fade {
    transition: opacity 0.3s ease-in-out;
}

.plan-detail-row {
    border-bottom: 1px solid;
    border-image-source: linear-gradient(0deg, #3F352F, #3F352F),
                  linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}


.row.apartment-row > div >div img {
    width: 100%;
    object-fit: cover;
}

.plan-detail-row span {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    color: black;
    margin-bottom: 10px;
}

.row.apartment-row .details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 510px;
    justify-content: center;
}

/*Opportunities*/

h2.opportunities-title {
    font-weight: 400;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0px;
}


p.opportunities-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
}

.row.opportunities .d-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.row.opportunities .d-flex p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
}

.feature-icon-circle {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.feature-image-scale {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.feature-hover-scale-container:hover .feature-image-scale {
    transform: scale(1.15);
}

/*Why us*/
.bg-blue-light {
    background: #033C4A1A;
}

.bg-gray-light {
    background: #EAE5E385;
}
h2.why-us-title {
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0px;
    color: #004658;
}
.row.why-us h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    text-align: center;
}

.row.why-us p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    letter-spacing: 0px;
    text-align: justify;
    margin: 0px;
}

.bg-gray-light p, .bg-gray-light h3 {
    color: #3F352F;
}

a.lets-request {
    border: 1px solid #0046586E;
    opacity: 1;
    border-width: 1px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0px;
    color: #004658;
    text-decoration: none;
}
a.lets-request:hover{
    color: white;
    background-color: #004658;
}
a.lets-request i {
    transform: rotate(315deg);
}

/*Statistics*/

.stat-icon-container {
    display: flex;
    border-right: 1px solid #3F352FA1;
    padding-right: 15px;
}
.stat-number {
    color: #212529;
}
.stat-divider {
    max-width: 100%;
    height: 1px;
    border: 1px solid #4A181857;
    opacity: 0.8;
}
img.statistics-icon {
    height: 100px;
    width: 100px;
    object-fit: cover;
}
.row.statistics {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
}

.stat-content {
    height: 100px;
}

.stat-content h3.stat-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0px;
}

/*FAQ*/
.faq-item {
    border: 1px solid #000000 !important;
    border-radius: 5px !important;
    overflow: hidden ! IMPORTANT;
}
.faq-button {
    background-color: #ffffff;
    color: #000000;
    font-weight: 500;
    padding: 1rem 1.25rem;
    box-shadow: none !important;
    border: none;
}

.faq-button:not(.collapsed) {
    color: #000000;
    background-color: #fff;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
}

.faq-container {
    display: flex;
    gap: 20px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    max-width: 50%;
}

h2.accordion-header button {
    border: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2000'><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'/></svg>");
    transform: rotate(-180deg);
}
h2.faq-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    max-width: 30%;
    margin: auto;
}

/*Contact*/


.contact-form {
    background-color: #ffffff !important;
    border: none;
    border-radius: 1rem !important;
}

.custom-input, .custom-select, .phone-input {
    border: none;
    border-bottom: 1px solid #c7c7c7;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    height: 48px;
}
.custom-input:focus, .custom-select:focus, .phone-input:focus {
    border-color: #343a40;
    box-shadow: none;
}

.custom-input:focus ~ .form-label,
.custom-input:not(:placeholder-shown) ~ .form-label,
.custom-select:focus ~ .select-label,
.custom-select:valid ~ .select-label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: #343a40;
}


.phone-input-group {
    position: relative;
}
.contact-form .form-group {
    width: 100%;
    text-align: center;
}

.nice-select.form-select.custom-select,
.nice-select.form-select.custom-select .list
{width: 100%;}


.custom-select {
    padding-right: 2.25rem !important;
}
.custom-select option {
    color: #000;
}


.custom-submit-btn {
    background-color: #343a40 !important;
    color: #fff !important;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

h2.contact-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
}

button.btn.custom-submit-btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    width: 200px;
    margin: 20px auto;
    background: linear-gradient(0deg, #3F352F, #3F352F),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/*Appartments*/

.filter-bar {
    background-color: #fff;
    border: 1px solid #eee;
}
.filter-select {
    border-radius: 0.5rem;
}
.search-btn {
    background-color: #343a40;
    border-color: #343a40;
}

.apartment-card {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0.75rem;
    overflow: hidden;
}
.apartment-img {
    height: 400px;
    object-fit: cover;
}
/*.apartment-status {*/
/*    font-size: 0.75rem;*/
/*    padding: 0.3rem 0.6rem;*/
/*    background-color: rgba(52, 58, 64, 0.8) !important; !* TÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nd rÃƒÆ’Ã¢â‚¬Â°ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ngdÃƒÆ’Ã¢â‚¬Â°ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ beh statusu *!*/
/*}*/
.apartment-location {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1rem;
}
.apartment-details {
    font-size: 0.9rem;
}
.detail-btn {
    border-radius: 0.5rem;
}

.detail-features span:first-child {
    color: #6c757d;
}
.apartment-plan-image img {
    border-radius: 0.75rem;
}

ul.list-unstyled.apartment-details .text-with-icon img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

ul.list-unstyled.apartment-details .text-with-icon {
    display: flex;
    gap: 10px;
}

.apartment-card-body a.detail-btn {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    margin: 0px 50px;
    width: calc(100% - 100px);
    border-radius: 16px;
}
.apartment-card-body a.detail-btn:focus{
    outline: none !important;
    box-shadow: none !important;
}
.row.back-icon a {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    text-decoration: none;
    color: black;
    display: flex;
    gap: 10px;
}

.share-btn {
    font-weight: 400 !important;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    color: black !important;
}
.share-btn img {
    height: 26px;
    object-fit: contain;
}

a.dropdown-item.share-link {
    font-size: 22px;
}

.gallery-row img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}
.large-img-container {
    height: 600px;
    overflow: hidden;
    border-radius: 0.75rem 0 0 0.75rem;
}
.small-img-container {
    height: 296px;
    overflow: hidden;
    display: block;
}
.col-md-6 .row .col-12:first-child .small-img {
    border-radius: 0 0.75rem 0 0;
}
.col-md-6 .row .col-12:last-child .small-img {
    border-radius: 0 0 0.75rem 0;
}

.image-count-overlay {
    z-index: 10;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    background: #FFFFFFCC;
}
.detail-btn-outline {
    padding: 0.75rem 1.5rem;
}
.share-btn {
    background: none;
    border: none;
    color: #343a40;
    font-weight: 500;
    padding-right: 0;
}
.share-dropdown {
    border-radius: 0.5rem;
    min-width: 180px;
    z-index: 1050;
}
.share-link i {
    font-size: 1.1rem;
}
.image-count-overlay img {
    height: 28px;
}

.image-count-overlay span.badge {
    color: black;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px;
}

.top-details h3 {
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
}

.top-details p {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    display:flex;
    align-items: center;
}

a.detail-btn-outline {
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
}

a.detail-btn-outline:focus {
    box-shadow: none !important;
    outline: none !important;
}

a.detail-btn-outline:hover {
    background: #2C4844;
}
ul.list-unstyled.apartment-details .text-with-icon.number-icon img {
    height: 16px;
}

.detail-row {
    padding: 0.5rem 0;
}

.apartment-plan-image img {
    border-radius: 0.75rem;
}

section.appartment-features {
    background: rgba(44, 72, 68, 0.1);
}

section.appartment-features h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
}

section.appartment-features span {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    color: rgba(126, 120, 116, 1);
}

section.appartment-features .detail-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 50px;
    border-bottom: 1px solid rgba(63, 53, 47, 0.77) !important;
}

.row.detail-row-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.row.detail-row-area > div {
    width: calc(50% - 50px);
}

.main-features-section h3 {
    font-weight: 500;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
}
.comfort-features {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.comfort-features > div {
    border-radius: 10px;
    width: calc(33.33% - 10px);
    border: 1px solid rgba(57, 83, 79, 1);
    padding: 0px;
    overflow: hidden;
}

.comfort-features .features-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 60px;
}
.comfort-features > div:hover,
.construction_features > div:hover{
    color: white;
    background: rgba(57, 83, 79, 1);
}

.comfort-features > div:hover img,
.construction_features > div:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

.comfort-features > div img{
    height: 40px;
    object-fit: cover;
}

.construction_features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.construction_features > div {
    width: calc(20% - 16px);
    border-radius: 10px;
    border: 1px solid rgba(57, 83, 79, 1);
    padding: 0px;
    overflow: hidden;
    padding: 20px;
}

.construction_features > div img{
    height: 25px;
}
.construction_features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.construction_features > div {
    width: calc(20% - 16px);
    border-radius: 10px;
    border: 1px solid rgba(57, 83, 79, 1);
    padding: 0px;
    overflow: hidden;
    padding: 20px;
}

.construction_features > div img{
    max-height: 25px;
    object-fit: contain;
}

.construction_features .features-box div {
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0px;
    margin: 10px 0px;
}

.construction_features .features-box small {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
}

.payment-term-tabs .term-btn {
    background: #ECEBEA;
    border: none;
    color: black;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
    border-radius: 10px;
}
.payment-term-tabs .term-btn:hover {
    background: linear-gradient(0deg, #3F352F, #3F352F), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    color: white;
}
.payment-term-tabs .term-btn.active-term {
    background: linear-gradient(0deg, #3F352F, #3F352F), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.calculator-results {
    border: none;
    background: #F7F8F7;
    border-radius: 30px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

section.payment-plan-section h2 {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 0px;
}

section.payment-plan-section p.lead {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: center;
    color: black;
}
div.payment-term-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 20px;
}

div.payment-term-tabs > div {
    width: calc(50% - 10px);
}
.calculator-results span.detail-label,
.calculator-results span.detail-value,
.monthly-payment-row span.detail-label,
.monthly-payment-row span.detail-value {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    color: #000000;
}

/*About*/

.arrow-wrapper {
    width: 40px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin: auto;
    bottom: 40px;
    z-index: 11;
}

.arrow-icon {
    font-size: 20px;
    animation: moveArrow 1s infinite ease-in-out;
    color: white;
}

@keyframes moveArrow {
    0% { transform: translateY(-6px); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(-6px); }
}
section.about-section {}

section.about-section h2 {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    font-weight: 500;
    font-size: 56px;
    line-height: 68px;
    letter-spacing: 0px;
    width: 100%;
    color: rgba(44, 72, 68, 1);
}

section.about-section h2 hr {
    border: 1px solid rgba(44, 72, 68, 1);
    width: 100%;
    margin-bottom: 20px;
}

section.about-section p {
    font-family: DM Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
}

section.about-section img{
    min-height: 500px !important;
    object-fit: cover;
}

section.values h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0px;
    color: rgba(44, 72, 68, 1);
}

.title-border {
    border-bottom: 3px solid rgba(0, 70, 88, 1);
    width: 120px;
}
.values-card img {
    height: 100px;
    object-fit: contain;
}

.values-card {
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 10px;
}

.values-card h4 {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
}

.values-card p {
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
}

.d-flex.infrastructure {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.d-flex.infrastructure > div {
    width: calc(33% - 16px);
    border: 1px solid rgba(0, 0, 0, 0.59);
    border-radius: 10px;
}

.d-flex.infrastructure > div img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}
section.infrastructure-area h2 {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-weight: 400;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0px;
}

section.infrastructure-area h2 span {
    border-bottom: 1px solid rgba(64, 64, 64, 1);
    width: 100%;
    height: 1px;
}
.d-flex.infrastructure > div h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 0px 10px;
}
.d-flex.infrastructure > div p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 0px 10px;
}

.about-projects-section {
    background: rgba(44, 72, 68, 1);
    padding-top: 80px !important;
}

.about-projects-section  h2 {
    font-weight: 600 !important;
    font-size: 58px;
    line-height: 64px;
    letter-spacing: 0px;
    margin-bottom: 70px;
    margin-top: -32px;
}
.project-text-col {
    color: rgba(255, 255, 255, 1);
}
.project-info-container {
    width: 90%;
}

.projectSwiper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.project-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.custom-swiper-next,
.custom-swiper-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    background: rgba(44, 72, 68, 1);
}

.custom-swiper-next:hover,
.custom-swiper-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-swiper-next i,
.custom-swiper-prev i {
    font-size: 1rem;
}

.swiper-button-prev {
    left: 0px;
}
.swiper-button-next {
    right: 0px;
}
.custom-swiper-next img, .custom-swiper-prev img {
    width: 20px;
}

span.mb-4.aparment-span {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    color: rgba(160, 160, 160, 1);
    display: block;
}

.row.apartment-row  .main-info {
    border: none;
    margin-bottom: 120px;
}

.row.apartment-row .main-info h2 {
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
}

.row.apartment-row .main-info h3 {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    color: rgba(126, 120, 116, 1);
    margin-bottom: 20px;
}

.row.apartment-row .main-info span {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    color: rgba(174, 149, 127, 1);
}

.row.apartment-row img {
    width: 100%;
}

.row.apartment-row .detail-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
    min-height: 210px;
}

.row.apartment-row .detail-info div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(44, 72, 68, 0.23);
}

.row.apartment-row .detail-info div p {
    margin: 0px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
}

.row.apartment-row .detail-info div span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: rgba(174, 149, 127, 1);
}

@media (max-width: 991.98px) {
    .project-text-col {
        padding: 3rem 1.5rem !important;
    }
    .projectSwiper {
        min-height: 350px;
    }
}

section.location img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

section.location .col-lg-7 {
    padding-left: 40px;
}

section.location h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    margin-bottom: 20px;
}

section.location span {
    font-weight: 400;
    font-style: Italic;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
}

.location-info {
    margin-top: 40px;
}

.info-div > div {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.location-info >div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.info-div > div h4 {
    font-family: Inter;
    font-weight: 400;
    font-size: 58px;
    line-height: 68px;
    letter-spacing: 0px;
}

.info-div > div h4 span {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    font-style: normal;
}

.info-div > div p {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
}

section.location .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
