
.property-detail-header{
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.property-detail-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-detail-header__filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(0deg, var(--header) 0%, #08174C38 100%);
}

.property-detail-header__container{
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    bottom: 30px;
}

.property-detail-header__title{
    text-transform: capitalize;
    font-family: "Syne", "sans-serif";
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
}

.property-detail-header__list{
    list-style: none;
    display: flex;
    padding-left: 0;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", "sans-serif";
    font-weight: 200;
    font-size: 16px;
}

.property-detail-header__container a {
    color: white;
    text-decoration: none;
}

.section__title{
    font-size: 38px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Syne", sans-serif;
    text-align: start;
    color: var(--header);
    margin-bottom: 0;
}

.section__sub-title{
    font-size: 23px;
    font-family: "Syne", sans-serif;
    color: var(--light-gray);
    font-weight: 400;
}

.section__paragraph {
    font-size: 16px;
    font-family: "Raleway", "sans-serif";
    color: var(--light-gray);
    font-weight: 300;
}

.section__image-wrapper{
    width: 100%;
}

.section__image-wrapper > img {
    width: 100%;
}

.detail_slider .swiper {
    width: 100%;
    height: 300px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
    color: black;
}

/* .swiper-button-next {
}


.swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 30px;
    font-size: 20px;
} */

.swiper__image-wrapper{
    width: 100%;
}

.swiper__image-wrapper img{
    width: 100%;
    object-fit: contain;
}


.form-control{
    border: none;
    padding: 0;
}

.form-control input,
.form-control textarea {
    border: 1px solid var(--border);
    padding: 10px 15px;
}
.form-control input:focus,
.form-control textarea:focus {
    outline: none !important;
}
.form-control.error input,
.form-control.error textarea {
    border: 1px solid red;
}

.form-control.success input,
.form-control.success textarea{
    border: 1px solid var(--border);
}


small{
    color: red;
}

.form-control.error small {
    visibility: visible;
}

.form-control.success small {
    visibility: hidden;
}

input::placeholder, textarea::placeholder {
    color: var(--light-gray) !important;
    font-family: "Raleway", sans-serif;
    font-weight: 200;
}

.btn {
    width: 100%;
}

.card{
    border: 1px solid var(--border);
}
.card-body{
    padding: 40px;
}

.card-title{
    text-align: center;
    font-size: 23px;
    font-family: "Syne", sans-serif;
    color: var(--light-gray);
    font-weight: 400;
    padding-bottom: 20px;
}

.article-card__image-wrapper {
    width: 100%;
    aspect-ratio: 2 / 1;
}

.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em* 2);
}
.article-card__title {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

.article-card__date {
    font-weight: 400;
    font-family: "Raleway", "sans-serif";
    font-size: 12px;
}

.article-card__description {
    font-family: "Raleway", "sans-serif";
    font-size: 14px;
    font-weight: 300;
}

.article-card__link {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .property-detail-header{
        aspect-ratio: 2 / 1;
    }
    .property-detail-header__title {
        font-size: 45px;
    }
    .section__title{
        font-size: 45px;
    }
}
@media (min-width: 992px) {
    .property-detail-header{
        aspect-ratio: 3 / 1;
    }
}

@media (min-width: 1200px) {
}


@media (min-width: 1400px) {
    .property-detail-header {
        aspect-ratio: 3.5 / 1;
    }
    .property-detail-header__title {
        font-size: 55px;
    }
    .section__title{
        font-size: 55px;
    }
    .section__sub-title{
        font-size: 30px;
    }
}