a {
    color: #AD7F85;
}

a:hover {
    color: #AD7F85;
}

.related-posts .text-decoration-none h3 {
    color: black;
}

.related-posts .text-decoration-none:hover h3 {
    color: #0a58ca;
}

.related-posts a.btn {
    color: white;
}

.swiper-slide.wp-block-image img {
    aspect-ratio: 14/9;
}

/* FORM CONTACT */

.alert__container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 16px 16px;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

.alert__container--show {
    z-index: 1001;
    opacity: 1;
}

.alert__message {
    width: 600px;
    height: 300px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(232, 232, 232, 1);
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 16px;
}

@media screen and (max-width: 1299px) {
    .alert__message {
        width: 350px;
        height: 350px;
    }

    .alert--txt {
        font-size: 21px;
    }
}

@media screen and (max-width: 767px) {
    .alert__message {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 365px) {
    .alert__message {
        width: 270px;
        height: 270px;
    }
          
    .alert--txt {
        font-size: 20px;
    }
}

.alert--txt {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0;
    opacity: 1;
    color: #000;
    text-align: center;
    font-family: 'AeonikPro-Bold',sans-serif;
    border-radius: 16px;
    padding: 10px;
}

.verification__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 5%;
}


.contact .reserve-btn button {
    border-bottom:none;
    width: unset;
    margin: auto 0;
    padding-right: 14px;
}

.contact button {
    width:calc((100% - 35px)/2);
    border:none;
    border-bottom:0.5px solid #E1C177;
    outline:none;
    background: transparent;
    font-family: 'AeonikPro-Regural',sans-serif;
    font-size:16px;
    padding:15.5px 0;
    margin-bottom: 48.5px;
    margin-right:15px;
    color: #C7C7C7;
}

.for-sale-wrapper{
    justify-content:space-evenly;
}

.response-box {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    /* font-family: 'AeonikPro-Bold', sans-serif; */
    opacity: 0;
}

.response-box--reveal {
    opacity: 1;
    transition: opacity 0.4s ease-in;
}

.response-box.success {
    color: #3bbd50;
}

.response-box.error {
    color: #e86a6a;
}

/* =================================
    HERO SLIDER
================================= */
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide{
    position: relative;
}
.heroSwiper .swiper-slide .img-wrapper::after{
    content: "";
    width: 100%;
    aspect-ratio:2.64;
    display: block;
    position: absolute;
    top:0;
    left:0;
    opacity: 0.2;
    background: #151515;
    mix-blend-mode: multiply;
}
.swiper-slide img{
    width:100%;
    height:100%;
    object-fit: cover;
    aspect-ratio: 2.64;
    position:relative;
}
.slide-title{
    position: absolute;
    bottom:11%;
    left:0;
    font-size:42px;
    color:#fff;
    width:100%;
    text-align: center;
    z-index:1;
}
.slide-title h1{
    margin: 0 auto;
    max-width: 824px;
    line-height: 105.3%; /* 44.226px */
    letter-spacing: -1.26px;

}
.swiper-button-next, .swiper-button-prev{
    color:#fff;
    width: 234px;
}
.next-article{
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 127.3%; /* 19.095px */
    letter-spacing: -0.45px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    content:"";
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,30px);
    top: unset;
    bottom: 18%;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity:0;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,30px);
    top: unset;
    bottom: 18%;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,22px);
}

.swiper-pagination-bullet-active,.swiper-pagination-bullet {
    background: #D9D9D9;
}

@media screen and (min-width: 500px) and (max-width: 1024px) {
    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: 'next';
    }

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
        content: 'prev';
    }

    .swiper-button-next h3, 
    .swiper-rtl .swiper-button-prev h3,
    .swiper-button-prev h3, 
    .swiper-rtl .swiper-button-next h3 {
        display: none;
    }

    .slide-title h1 {
        max-width: 580px;
    }

    .swiper-button-prev.prev-article {
        left: 0;
        width: 50px;
    }

    .swiper-button-next.next-article {
        right: 0px;
        width: 50px;
    }
}

@media screen and (max-width: 500px) {
    .heroSwiper .swiper-slide .img-wrapper,
    .heroSwiper .swiper-slide .img-wrapper::after {
        aspect-ratio: 1;
    }

    .heroSwiper .swiper-pagination-bullets.swiper-pagination-horizontal {
        display: none;
    }

    .heroSwiper .swiper-button-next.next-article h3,
    .heroSwiper .swiper-button-prev.prev-article h3 {
        display: none;
    }

    .heroSwiper .slide-title h1 {
        font-size: 20px;
        letter-spacing: normal;
        padding-inline: 5px;
    }

    .heroSwiper .swiper-button-next::after,   
    .heroSwiper .swiper-rtl .swiper-button-next::after {
        content: 'next';
    }
 
    .heroSwiper .swiper-rtl .swiper-button-prev::after, 
    .heroSwiper .swiper-button-prev::after {
        content: 'prev';
    }

    .heroSwiper .swiper-button-next, 
    .heroSwiper .swiper-rtl .swiper-button-prev {
        right: 0;
        width: 75px;
        top: 50%;
        bottom: unset;
    }

    .heroSwiper .swiper-button-prev, 
    .heroSwiper .swiper-rtl .swiper-button-next {
        left: 0;
        width: 75px;
        top: 50%;
        bottom: unset;
    }
}

/* =================================
    STATIC HERO SLIDER
================================= */

.mob-slider {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 10%;
}

.static-slide-container {
    width: 100%;
    height: fit-content;
}

.static-slide {
    width: 100%;
    height: 100%;
    margin-block: 5%;
    padding-block: 5%;
    border-bottom: 1px dashed #000;
}

.static-slide:first-of-type {
    margin-block-start: 0;
    padding-block-start: 0;
}

.static-slide .img-wrapper::after {
    content: "";
    width: 100%;
    aspect-ratio: 1.27;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    /* background: #151515; */
    mix-blend-mode: multiply;
}

.static-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.27;
    position: relative;
    object-position: center;
}

.static-slide .slide-title {
    min-height: 80px;
    color: #000;
    position: relative;
    left: 0;
    bottom: 0;
    padding: 15px 30px;
    width: unset;
    font-size: 27px;
    background: #fff;
    text-align: center;
    z-index: 1;
}

.static-slide .slide-title h1 {
    margin: 0 auto;
    line-height: 105.3%;
    letter-spacing: -1.26px;
    max-width: 524px;
}



@media screen and (max-width: 620px) {
    .mob-slider {
        display: none;
    }

    .swiper.heroSwiper {
        display: block;
    }
}

iframe[src^="https://www.youtube"] {
    width: 100%;
    max-width: 1098px;
    /* aspect-ratio: 16/9; */
    aspect-ratio: 2.47;
    height: auto;
}


/* color palette */

/* .bg-light {
    background-color: #ADD0B3 !important;
} */

.dre__top_header {
    background-color: #AD7F85 !important;
}

.dre__top_menu {
    background-color: #FCF1E8 !important;
}

.text-light,
article header a {
    color: #AD7F85 !important;
    border-color: #AD7F85 !important;
}

.btn.text-light:hover {
    color: #fff !important;
    background-color: #AD7F85;
    border-color: #AD7F85 !important;
}

.home .bg-light-blue {
    background-color: #AD7F85;
    opacity: 0.7;
}

.dre__bot_footer {
    background-color: #AD7F85 !important;
}

.archive .btn-outline-light {
    color: #AD7F85;
    border-color: #AD7F85;
}

.btn-outline-light:hover {
    color: #fff;
    background-color: #AD7F85;
    border-color: #AD7F85;
}

.page .btn-light {
    background-color: #AD7F85;
    border-color: #AD7F85;
}

.page .btn-light:hover {
    color: #AD7F85;
    background-color: #fff;
}

.dre__heading {
    background-color: #AD7F85 !important;
}

.inner__category_list .btn-outline-light {
    border-color: #AD7F85 !important;
    color: #AD7F85 !important;
}

.inner__category_list .btn-outline-light:hover {
    background-color: #AD7F85 !important;
    color: #fff !important;
}

.dre__category_button .btn-outline-light {
    border-color: #AD7F85 !important;
    color: #AD7F85 !important;
}

.dre__category_button .btn-outline-light:hover {
    border-color: #AD7F85 !important;
    background-color: #AD7F85 !important;
    color: #fff !important;
}