@font-face {
    font-family: 'Tangerine';
    src: url(fonts/Tangerine/Tangerine-Regular.ttf);
}
@font-face {
    font-family: 'Lora';
    src: url(fonts/Lora/static/Lora-Regular.ttf);
}
@font-face {
    font-family: 'Lora Bold';
    src: url(fonts/Lora/static/Lora-Bold.ttf);
}
body, div, h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, figure,span{
    margin:0;
    padding:0;
    font-weight: normal;
    font-size: unset;
    letter-spacing: 0;
}
body{
    position: relative;
    max-width: 1920px;
    margin:0 auto;
    font-family: 'Lora', serif;
    -webkit-text-size-adjust: 100%;
    background-color:#F5F0E1;
    color:#33250F;
    overflow-x: hidden;
    cursor:default;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
li{
    list-style-type: none;
}
html {
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
.flex{
    display: flex;
}
.flex.column{
    flex-direction: column;
}
.flex.centered{
    align-items: center;
}
.flex.space{
    justify-content: space-between;
}
.flex.reversed{
    flex-direction: row-reverse;
}
img{
    width:100%;
    max-width: 100%;
    object-fit: cover;
}
.logo-header h1{
    font-family: 'Tangerine',cursive;
    font-size: 45px;
}
header{
    padding:20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.logo-header{
    align-items: baseline;
    padding: 0 20px;
    position: relative;
}
.logo-header a{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.logo-header h2{
    padding: 0 10px;
    font-size:14px;
}
.logo-wrapper , .main-menu , .book-btn {
    width:calc(100%/3);
}
.main-menu{
   justify-content: center;
   padding: 10px 0;
   width:100%;
}
.book-btn{
    text-align: right;
    padding:10px 0;
}
.main-menu li{
    padding:0 20px;
    font-size: 18px;
}
.main-menu .active::after{
    content:"";
    display: block;
    width:35px;
    height:1px;
    background-color: #33250F;
    margin:0 auto;
}
.main-menu li:hover::after{
    content:"";
    display: block;
    width:35px;
    height:1px;
    background-color: #33250F;
    margin:0 auto;
}
.book-btn span{
    padding:10px 15px;
    background-color: rgba(47, 65, 26, 0.74);
    color:#F5F0E1;
    font-size: 18px;
}
.intro-video{
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: -1;
}
.intro-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-video::after{
    content:"";
    display: block;
    width:100%;
    height: 100%;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
}
.img-card{
    max-width: 897px;
    position: relative;
    overflow: hidden;
}
.img-card img{
    aspect-ratio: 1.77;
    transition: all 0.3s ease-in-out;
}
.img-card::after{
    content:"";
    display: block;
    width:100%;
    aspect-ratio: 1.77;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
    transition: all 0.3s ease-in-out;
}
.img-card:hover::after{
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.img-card:hover img{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.about-home{
    padding: 100px 200px;
    position: relative;
}
.bg-brown{
    width:100%;
    height: 370px;
    background-color: rgba(89, 69, 38, 0.42);
    position: absolute;
    top:100px;
    left:0;
    z-index: -1;
}
.about-home-container{
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 0 0;
    gap:40px;
    justify-content: space-between;
}
.card-txt-wrapper h3{
    font-size: 20px;
    padding: 30px 30px 50px 0;
}
.card-txt-wrapper{
    width:60%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}
.btn span{
    font-size: 50px;
    font-family: 'Tangerine',cursive;
}
.card-img{
    max-width: 544px;
    position: relative;
    width:40%;
    overflow: hidden;
    align-self: flex-end;
}
.card-img::after ,.house-home-img::after{
    content:"";
    display: block;
    width:100%;
    aspect-ratio: 0.66;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
    transition: all 0.3s ease-in-out;
}
.card-img img{
    aspect-ratio: 0.66;
    transition: all 0.3s ease-in-out;
}
.card-img:hover::after, .full-img:hover::after , .house-home-img:hover::after{
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.card-img:hover img , .house-home-img:hover img{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.logo-center{
    max-width: 230px;
    margin:0 auto;
}
.houses-home-wrapper h2{
    text-align: center;
    font-size: 40px;
    padding: 30px;
}
.houses-home-wrapper h3{
    text-align: center;
    font-size:20px;
    padding: 0 200px;
}
.house-home{
    width: 50%;
    justify-content: flex-end;
}
.house-home h2{
    font-size: 25px;
    width:fit-content;
    padding: 30px 10px;
}
.house-home img{
    max-width: 540px;
    aspect-ratio: 0.66;
}
.house-home:last-of-type h2{
    align-self: flex-end;
}
.house-home-container{
    justify-content: center;
    padding:80px 100px 20px;
}
.houses-home{
    padding:0 0 100px;
}
.houses-home-wrapper{
    max-width: 1800px;
    margin: 0 auto;
}
.house-home:first-of-type{
    position: relative;
}
.house-home:last-of-type{
    position: relative;
}
.houses-home-wrapper .btn{
    text-align: right;
    padding:0 100px;
    max-width: 1700px;
    margin:0 auto;
}
.full-img img{
    aspect-ratio: 1.92;
}
.full-img{
    position: relative;
}
.full-img::after{
    content:"";
    display: block;
    width:100%;
    height: 100%;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
    transition: all 0.3s ease-in-out;
}
.stay-wrapper{
    padding:100px;
}
.stay-home .card-txt-wrapper h2 ,.location-home h2{
    font-size: 50px;
    padding-top: 30px;
}
.stay-home .card-txt-wrapper {
    justify-content: flex-start;
}
.stay-home .card-txt-wrapper h3{
    padding:10px 0;
}
.stay-home .about-home-container{
    padding: 120px 200px;
    max-width: unset;
}
.location-home{
    background-color: rgba(47, 65, 26, 0.42);
    color:#fff;
    padding: 0 50px 100px;
    margin-bottom: 100px;
}
.location-home h2{
    text-align: center;
    padding:50px 0 20px;
}
.location-txt h3{
    font-size:20px;
    padding: 50px 0;
}
.location-txt{
    width:50%
}
.location-wrapper{
    max-width: 1500px;
    margin:0 auto;
    align-items: flex-end;
    gap: 50px;
}
.location-txt iframe{
    width: 100%;
    aspect-ratio: 1.6;
    height: unset;
}
.location-img{
    width:50%;
    position: relative;
}
.location-img img{
    aspect-ratio: 1.6;
}
.location-img::after , .main-img::after{
    content:"";
    display: block;
    width:100%;
    aspect-ratio: 1.6;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
    transition: all 0.3s ease-in-out;
}
.main-img::after{
    aspect-ratio: unset;
    height:100%;
}
.location-img:hover::after{
    background-color:transparent;
    transition: all 0.3s ease-in-out;
}
.book-wrapper{
    background-color: rgba(214, 156, 80, 0.42);
    margin-bottom:100px;
}
.book-wrapper h2{
    font-family: 'Tangerine',cursive;
    font-size: 80px;
    text-align: center;
    padding:100px 0;
}
.book-wrapper h3{
    font-size:20px;
    text-align: center;
    max-width: 720px;
    margin:0 auto;
    padding-bottom: 50px;
}
.book-wrapper .book-btn{
    width: 100%;
    text-align: center;
    padding-bottom: 100px;
}
footer{
    padding:0 50px;
}
.footer-wrapper{
    border-top:1px solid #33250F;
    padding: 50px 0;
}
.footer-container img{
    max-width: 150px;
    object-fit: contain;
}
.follow img{
    max-width: 45px;
    padding: 0 10px;
}
.follow{
    align-items: center;
}
.follow h3{
    padding: 20px 30px;
    font-size: 16px;
    font-family: 'Lora Bold', serif;
}
.follow h4{
    font-size: 16px;
    padding: 20px;
}
.menu-footer li{
    font-size:16px;
    text-align: center;
    padding:5px 0;
}
.menu-footer{
    padding-right:50px;
}
.menu-footer li:last-of-type{
    padding:10px;
    background-color: rgba(47, 65, 26, 0.74);
    color: #F5F0E1;
}
.copyrights{
    padding-bottom:30px;
    font-size: 12px;
}
.copyrights strong{
    font-family: 'Lora Bold', serif;
}
.houses-main{
    padding-top:88px;
}
.houses-main .card-txt-wrapper h2 {
    font-size:30px;
}
.title-houses h2{
    font-size: 48px
}
.houses-main h3{
    font-size: 20px;
}
.title-houses{
    padding: 60px 200px;
    margin: 0 auto;
}
.house-wrapper{
    margin-bottom:200px;
}
.bg-color{
    width:100%;
    height:80%;
    background-color: rgba(89, 69, 38, 0.42);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.house-wrapper{
    position: relative;
    margin-top: 60px;
    padding: 0 200px;
}
.house-wrapper:nth-of-type(even) .bg-color{
    background-color: rgba(47, 65, 26, 0.42);
}

.main-img{
    max-width: 510px;
    width: 50%;
    position:relative;
}
.main-img img{
    aspect-ratio: 0.7;
}
.header-about{
    align-items: flex-end;
    position: relative;
    padding: 150px 200px;
    z-index: -1;
}
.header-about .title h2{
    font-size:48px;
}
.header-about .title{
    padding-left:100px;
    align-self: center;
}
.back-rect{
    position: absolute;
    bottom:20%;
    left:0;
    width:100%;
    background-color: rgba(47, 65, 26, 0.42);
    height:400px;
    z-index: -1;
}
.about-main .card-txt-wrapper h3{
    padding-bottom:0;
    font-size: 18px;
}
.about-main .about-home-container{
    max-width: unset;
    padding: 80px 200px 120px;
}
.about-title{
    text-align: center;
    font-size: 22px;
}
.about-title span:first-of-type{
    color:rgba(51, 37, 15, 0.53);
}
.about-- h2{
    text-align: center;
    font-size:36px;
    padding:50px 30px;
}
.about-- {
    padding: 0 200px;
}
.about-- .card-txt-wrapper{
    width: 100%;
}
.images-about {
    gap:20px;
    padding:50px 0;
    flex-wrap: wrap;
}
.images-about figure{
    width:calc(50% - 10px);
    position: relative;
}
.images-about figure img{aspect-ratio: 1.6;}
.images-about figure:nth-of-type(3){
    width: 60%;
}
.images-about figure:nth-of-type(4) {
    width: calc(22% + 7px);
}
.images-about figure:nth-of-type(4) img{
    aspect-ratio: 0.6;
}
.images-about figure:nth-of-type(5){
    width:100%;
}
.images-about figure:nth-of-type(5) img{
    aspect-ratio: 2.4;
}
.swiper-slide img{aspect-ratio: 1.4;}
.swiper-gallery{
    padding:50px 0 80px;
}
.swiper-slide::after{
    content:"";
    display: block;
    width:100%;
    aspect-ratio: 1.4;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
    transition: all 0.3s ease-in-out;
}
.swiper-slide:hover::after{
    display: none;
    transition: all 0.3s ease-in-out;
}
.about-strofilia{
    padding-top:50px;
}
.about-main .about-home-container.logo-about{
    padding-top:0;
}
.house-main-img{
    height:100vh;
    position: relative;
}
.house-main-img img{
    height:100%;
}
.house-home-img{
    position: relative;
    overflow: hidden;
}
.house-main-img::after , .house-info-img::after{
    content:"";
    display: block;
    width:100%;
    height: 100%;
    background-color: rgba(39, 30, 15, 0.3);
    position: absolute;
    top:0;
    left:0;
    transition: all 0.3s ease-in-out;
}
.house-info-img:hover::after{
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.header-house{
    position:relative;
}
.header-house h2{
    width: 600px;
    padding: 10px 0;
    margin: 0 auto;
    background-color: rgba(245, 240, 225, 0.25);
}
.house-title-wrapper {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 25px;
}
.house-title-wrapper button{
    position: absolute;
    width: 40px;
    top: 6px;
    height: 40px;
    left: 30%;
    background-color: transparent;
    outline: none;
    border: none;
    transform: rotate(90deg);
    cursor:pointer;
}
.house-title-wrapper img{
    width: 40px;
}
.house-title-wrapper button#nextBtn{
    right: 30%;
    left: unset;
    transform: rotate(-90deg);
}
.house-info {
    padding:100px;
}
.house-info-wrapper{
    padding-top:80px;
    justify-content: center;
}
.house-info-img{
    width:60%;
    max-width: 880px;
    position: relative;
    overflow: hidden;
}
.house-info-img img{
    height:100%;
}
.house-info-img:hover img{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.house-description{
    width:40%;
    padding-left:50px;
    font-size:18px;
    position: relative;
}
.house-description p{
    padding: 5px 0;
    text-transform: uppercase;
}
.house-description h4{
    padding:20px 0 5px;
    text-transform: uppercase;
    font-family: 'Lora Bold' , serif;
}
.house-description li{
    padding:5px 0;
    text-transform: uppercase;
}
.house-description p:last-of-type{
    font-family: 'Lora Bold' , serif;
    padding-top:20px;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
  
.hidden {
    display: none;
}
  
.modal-content {
    background-color: #F5F0E1;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}
  
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}
.modal-content h3{
    font-size: 25px;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.modal-content li{
    padding:5px 0;
    font-size:18px;
    text-transform: uppercase;
}
#open-amenities-btn{
    position: absolute;
    bottom: -45px;
    right: 0;
    font-size: 18px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #33250F;
    color:#33250F;
    cursor: pointer;
}
.living-swiper .about-title span{
    color:#33250F
}
.living-swiper .about-title{
    padding-bottom: 50px;
}
.swiper-title{
    padding: 20px 100px;
    font-size: 20px;
}
.living-swiper{
    padding-bottom:50px;
}
.house-home a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.book-btn span {
    padding: 5px 10px;
}
.burger-menu-wrapper, .burger-menu .main-menu{
    display: none;
}
.lang-wrapper .selected{
    border-bottom:1px solid #33250F;
    font-family: "Lora Bold",serif;
}
.lang-wrapper span{
    cursor: pointer;
}
.swiper-button-next , .swiper-button-prev{
    display: none;
}
.static-slide {
    display: none;
}

.contact form input{
    display: block;
    font-size:18px;
    width:48%;
    border:none;
    outline: none;
    border-bottom:1px solid #33250F;
    color:#000;
    padding:15px 0;
    margin-top: 50px;
    background: transparent;
    font-family: 'Lora',serif;
}
.contact form{
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    padding: 50px;
    margin: 0 auto;
    justify-content: space-between;
}
.contact form textarea{
    width:100%;
    font-size:18px;
    font-family: 'Lora',sans-serif;
    padding: 20px 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #33250F;
    margin-top: 50px;
    background: transparent;
}
.contact input[type="submit"]{
    background-color: #33250F;
    color:#fff;
    font-family: 'Lora',sans-serif;
    outline:none;
    border:none;
    width:fit-content;
    padding: 10px 40px;
    margin-left: auto;
}
.contact-details h4{
    font-size: 22px;
    text-align: center;
    padding-bottom: 20px;
}
.contact{
    padding-top: 30px;
}
.terms header{
    position: relative;
}
.terms main{
    padding:100px;
}
.terms h1{
    font-size:30px;
}
.terms-main p{
    padding:10px 0;
}
.terms-main h2{
    font-size:22px;
}
.terms-main li{
    padding:5px 0;
}
@media screen and (max-width:1100px) {
    .book-btn span {
        padding: 5px 10px;
        font-size: 16px;
    }
    .main-menu li {
        padding: 0 15px;
        font-size: 16px;
    }
    .logo-header h1{
        font-size: 36px;
    }
    .logo-header h2 {
        padding: 0 5px;
        font-size: 12px;
    }
    .lang-wrapper span{
        font-size:14px;
    }
    .about-home{
        padding:100px;
    }
    .card-txt-wrapper h3 {
        font-size: 18px;
    }
    .btn span {
        font-size: 40px;
    }
    .houses-home-wrapper h2{
        font-size: 35px;
    }
    .houses-home-wrapper h3{
        font-size: 18px;
        padding: 0 100px;
    }
    .logo-center {
        max-width: 180px;
    }
    .house-home h2{
        font-size: 25px;
    }
    .stay-home .about-home-container {
        padding: 80px 100px;
    }    
    .stay-home .card-txt-wrapper h2, .location-home h2 {
        font-size: 39px;
        padding-top: 10px;
    }
    .book-wrapper h2{
        font-size: 60px;    
        padding: 80px 0 30px;
    }
    .book-wrapper .book-btn{
        padding-bottom:80px;
    }
    .book-wrapper h3 {
        font-size: 16px;
        padding-bottom: 25px;
    }
    .book-wrapper,.location-home{
        margin-bottom:50px;
    }
    .follow h3 {
        padding: 12px 30px;
        font-size: 12px;
    }
    .follow h4 {
        font-size: 12px;
        padding: 12px;
    }
    .menu-footer li {
        font-size: 12px;
    }
    .footer-container img {
        max-width: 100px;
    }
    .follow img {
        max-width: 45px;
    }
    .footer-wrapper{
        padding: 30px 0;
    }
    .footer-container{
        align-items: center;
    }
    .header-about{
        padding: 100px 100px 50px;
    }
    .about-main .about-home-container{
        padding: 50px 100px 100px;
    }
    .about-- h2{
        font-size: 32px;
        padding: 30px 20px 0;
    }
    .about--{
        padding: 0 100px;
    }
    .title-houses{
        padding:50px 100px;
    }
    .house-wrapper{
        padding: 0 100px;
    }
    .houses-body .burger-menu.on{
        height: 100vh;
        top: 0;
        position: fixed;
        background-color: #f5f0e1a5;
    }
    .houses-body header{
        z-index: 3;
    }
    .houses-body header.on{
        position: fixed;
    }
    .house-info{
        padding:100px 50px;
    }
    .house-description{
        padding-left:30px;
    }
    .swiper-title{
        padding: 20px 50px;
    }
}
@media screen and (max-width:900px){
    .about-home-container{
        padding: 50px 0 0;
    }
    .about-home{
        padding: 50px;
    }
    .bg-brown{
        top: 50px;
    }
    .house-home-container{
        padding: 50px 50px 20px;
    }
    .houses-home-wrapper .btn{
        padding: 0 50px;
    }
    .house-home h2 {
        font-size: 20px;
    }
    .houses-home {
        padding: 0 0 60px;
    }
    .stay-home .about-home-container {
        padding: 80px 50px;
    }
    .stay-home .card-txt-wrapper h2{
        padding-bottom:15px;
    }
    .stay-home .card-txt-wrapper h3 {
        padding: 5px 0;
    }
    .card-txt-wrapper h3 ,.about-main .card-txt-wrapper h3{
        font-size: 16px;
    }
    .location-txt h3 {
        font-size: 16px;
        padding: 35px 0;
    }
    .main-menu li {
        padding: 0 10px;
    }
    .menu-footer{
        padding-right: 0;
    }
    footer{
        padding:0 20px;
    }
    .copyrights{
        font-size:10px;
    }
    .back-rect{
        height: 260px;
    }
    .about-main .about-home-container{
        padding:50px 50px 100px;
    }
    .about--{
        padding:0 50px;
    }
    .house-wrapper{
        padding:0 50px;
        margin-bottom: 100px;
    }
    .title-houses{
        padding:50px;
    }
}
@media screen and (max-width:768px){
   .book-btn{ 
        position: fixed;
        bottom: 10px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }
    .menu-footer li:last-of-type{
        display: none;
    }
    .main-menu{
        display: none;
    }
    header{
        height:100vh;
    }
    .burger-menu-wrapper{
        display: block;
        height:fit-content;
        cursor:pointer;
    }
    .logo-header{
        padding: 0;
        height: fit-content;
    }
    .lang-wrapper{
        display: none;
    }
    .logo-wrapper{
        width:fit-content;
    }
    .burger-menu{
        height:0;
        position: absolute;
        transition: height 0.3s ease-in-out;
    }
    .burger-menu.on{
        width: 100%;
        z-index: 2;
        height: 70vh;
        position: absolute;
        top: 70px;
        left: 0;
        transition: height 0.3s ease-in-out;
    }

    .burger-menu.on .main-menu{
        display: flex;
        margin: 0 auto;
        height: 100%;
    }
    .main-menu li{
        font-size: 22px;
        text-align: center;
        padding: 10px 0;
    }
    .book-btn span{
        font-size:20px;
    }
    header.on{
        background-color: #f5f0e16a;
    }
    .burger-menu .follow{
        justify-content: center;
        padding-top: 10px;
    }
    .burger-menu .follow h3{
        display: none;
    }
    .about-home {
        padding: 50px 30px;
    }
    .logo-center {
        max-width: 150px;
    }
    .houses-home-wrapper h2 {
        font-size: 30px;
    }
    .house-home h2{
        padding:0;
        line-height: 20px;
    }
    .houses-home-wrapper h3 {
        font-size: 16px;
        padding: 0 30px;
    }
    .house-home , .house-home.flex.reversed{
        flex-direction: column-reverse;
    }
    .about-home-container{
        gap:20px;
    }
    .house-home-container{
        gap:20px;
        padding: 50px 30px 20px;

    }
    .stay-home .about-home-container{
        padding: 80px 30px;
    }
    .location-home{
        padding: 20px 30px;
    }
    .location-txt h3{
        padding: 0 0 20px;
    }
    .location-wrapper{
        gap:20px;
    }
    .book-wrapper .book-btn{position: unset;}
    .footer-wrapper{
        flex-direction: column;
    }
    .menu-footer{
        flex-wrap: wrap;
        flex-direction: row!important;
        justify-content: center;
        padding-top: 20px;
    }
    .menu-footer li{
        width:50%;
    }
    .menu-footer li:last-of-type{
        width: fit-content;
    }
    .copyrights{
        flex-direction: column;
        text-align: center;
        gap: 7px;
    }
    .follow h3{
        padding: 12px 20px;
    }
    .follow h4{
        padding: 5px;
    }
    .follow{
        flex-wrap: wrap;
    }
    .lang-wrapper span {
        font-size: 18px;
    }
    .burger-menu .lang-wrapper{
        display: block;
        text-align: center;
        padding-top: 20px;
    }
    .header-about{
        height:100vh;
        padding: 50px;
        display: block;
        text-align: right;
    }
    .main-img{
        width:100%;
        height: 85%;
    }
    .main-img img{
        height: 100%;
    }
    .about-main .about-home-container{
        padding:50px 30px;
    }
    .about--{
        padding: 0 30px;
    }
    .about-title{
        font-size: 18px;
    }
    .about-- h2{
        font-size:25px;
    }
    .house-wrapper{
        padding:0 30px;
    }
    .title-houses{
        padding:30px;
    }
    .houses-header{
        height:auto;
    }
    .house-info{
        padding: 50px 30px 100px;
    }
    .living-swiper .about-title {
        padding-bottom: 25px;
    }
    .swiper-title{
        padding:20px 30px;
    }
}
@media screen and (max-width:650px) {
    .house-info-wrapper{
        flex-direction: column;
        padding-top: 50px;
    }
    .house-info-img{
        width:100%;
    }
    .house-description{
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .house-title-wrapper button{
        left:30px;
    }
    .house-title-wrapper button#nextBtn {
        right: 30px;
    }
    .header-house h2{
        width:calc(100% - 60px);
    }
    .contact form input, .contact form textarea{
        width:100%;
        margin-top: 35px;
    }
    .contact form{
        padding: 20px;
    }
}
@media screen and (max-width:500px) {
    .about-home{
        padding: 50px 0;
    }
    .about-home-container{
        flex-direction: column;
        padding-top:0;
        background-color: rgba(89, 69, 38, 0.42);
        padding-bottom: 55px;
    }
    .card-txt-wrapper{
        width:100%;
    }
    .bg-brown{
        display: none;
    }
    .card-txt-wrapper h3{
        padding: 30px;
        font-size: 20px;
    }
    .btn{
        padding: 0 30px;
    }
    .card-img {
        width:75%;
        margin:0 auto;
    }
    .house-home-container{
        flex-direction: column;
        padding: 50px 0 0;
        gap: 40px;
    }
    .house-home{
        width:100%;
    }
    .house-home h2{
        padding:0 20px;
    }
    .houses-home-wrapper .btn {
        padding: 0 20px;
    }
    .stay-home .about-home-container{
        background-color: transparent;
        flex-direction: column;
        padding: 50px 0;
    }
    .full-img img {
        aspect-ratio: 1.5;
    }
    .full-img::after{
        aspect-ratio: 1.5;
        height: unset;
    }
    .stay-home .card-txt-wrapper h3,
    .stay-home .card-txt-wrapper h2{
        text-align: center;
    }
    .stay-home .card-txt-wrapper h2{
        order:1;
        font-size: 30px;
    }
    .stay-home .card-txt-wrapper .img-card{
        order:2;
    }
    .stay-home .card-txt-wrapper h3:first-of-type{
        order:3;
    }
    .stay-home .card-txt-wrapper h3:nth-of-type(2){
        order:4;
    }
    .stay-home .card-txt-wrapper h3:last-of-type{
        order:5;
    }
    .location-txt{
        width: 90%;
        margin: 0 auto;
    }
    .location-wrapper{
        flex-direction: column;
    }
    .location-home{
        padding: 20px 0;
    }
    .location-img{
        width: 100%;
    }
    .location-home h2{
        font-size:30px;
    }
    .book-wrapper h3{
        padding:20px;
    }
    .follow{
        justify-content: flex-end;
    }
    .menu-footer{
        padding: 30px 0 15px;
    }
    .header-about .title{
        text-align: left;
        padding: 20px;
    }
    .header-about .title h2{
        font-size: 36px;
    }
    .header-about{
        padding:0;
    }
    .back-rect{
        bottom:0;
    }
    .main-img img{
        aspect-ratio: unset;
        height: 100%;
    }
    .main-img{
        height:75%;
    }
    .about-main .about-home-container{
        flex-direction: column-reverse;
        padding: 20px 0;
        background-color: transparent;
    }
    .about-main .card-txt-wrapper h3{
        padding: 20px 30px;
    }
    .about--{
        padding:0;
    }
    .about-- h2{
        font-size: 22px;
    }
    .images-about figure{
        width:100%;
    }
    .images-about figcaption{
        text-align: center;
    }
    .images-about figure:nth-of-type(4){
        width: calc(25% + 4px);
    }
    .images-about figure:nth-of-type(3) {
        width: 67%;
    }
    .house-container .about-home-container{
        background-color: transparent;
        flex-direction: column-reverse;
    }
    .house-wrapper{
        margin-top: 0;
        padding: 30px 0 30px;
        margin-bottom: 30px;
    }
    .house-wrapper .card-img{
        width: 86%;
    }
    .bg-color{
        height:35%;
    }
    .houses-main .card-txt-wrapper h2{
        padding: 0 30px;
        font-size: 25px;
    }
    .title-houses h2 {
        font-size: 35px;
    }
    .houses-main h3 {
        font-size: 18px;
    }
    .house-info{
        padding: 50px 0;
    }
    .house-description{
        padding: 20px;
        font-size: 16px;
    }
    #open-amenities-btn{
        position: relative;
        bottom:0;
        padding-top:20px;
    }
    .living-swiper .swiper-button-next , .living-swiper .swiper-button-prev{
        display: block;
    }
    .living-swiper .swiper{
        padding-bottom:35px;
    }
    .living-swiper .swiper-button-next ,.living-swiper .swiper-button-prev{
        bottom: 0;
        top: unset;
        color: #33250fb3;
        width: 25px;
        height: 25px;
        text-align: center;

    }
    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
        font-size: 25px;
    }
    .swiper-title{
        font-size: 18px;
        padding:20px;
    }
    .house-title-wrapper{
        font-size: 20px;
    }
    .living-swiper {
        padding-bottom: 30px;
    }
    .static-slide {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
      }
    
      .static-slide img {
        width: 100%;
        height: auto;
        display: block;
      }
    
      .swiper .swiper-slide:first-child {
        display: none !important; 
      }
}

.booking-wrapper iframe{
    width:100%
}
.booking-wrapper header{
    position: relative;
}
@media screen and (max-width: 768px) {
    .booking-wrapper header{
        height:auto;
    }
    .booking-wrapper header.on{
        height:100vh;
    }
    .booking-wrapper .book-btn{
        display: none;
    }
}

/* Initial state for animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation classes */
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"].in-view {
  opacity: 1;
  transform: none;
}

[data-animate="slide-up"].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Add delay for text elements */
[data-animate="fade-in"].text {
  transition-delay: 0.3s;
}