@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Outfit:wght@100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Outfit:wght@100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Satisfy&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=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap');
* {
    padding: 0;
    margin: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff; /* Mund të ndryshosh ngjyrën e sfondit */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Siguron që të jetë mbi të gjitha elementet e tjera */
}

.loader h1 {
    font-size: 6rem;
    color: #272535 ; /* Ngjyra e tekstit */
    font-family: 'Outfit', sans-serif; /* Fonti që preferoni */
    animation: pulse 3.5s infinite !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
#content {
    display: none; /* Fsheh përmbajtjen deri sa të mbarojë preloader */
}

a{
    text-decoration: none;
}
.navbar {
    -webkit-box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    overflow-x: hidden;
    background-color:#1f1e2b;
    /* background-image: linear-gradient(45deg, black 30%, blue 70%); */
}
.nav-link img {
    width: 25px;
    height: 15px;
}
.navbar-nav a {
    margin-left: 10px;
    text-decoration: none;
    padding: 10px;
    font-size: 17px;
    font-family:'Outfit', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid transparent;
}

.navbar-nav a:hover {
    color: #C4A676;
}

.navbar-nav a.active {
    color: #C4A676!important;
}
 .navbar-toggler{
    background-color:  #857083 !important;
}
:root {
    /* Background Color */
    --primary-color: #212122b9;
    --secondary-color: #a3a190;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;

    /* Text Style */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Oswald', sans-serif;
    --tertiary-font: 'Cinzel', serif;
    --fourth: 'Cormorant Garamond', serif;
    --five: 'Outfit', sans-serif;
    --six: 'Satisfy', cursive;
    --seven: "Playfair Display", serif;
    --eight:"Jost", sans-serif;
    --nine: "Forum", serif;
    --primary-text: #212122b9;
    --secondary-text: #201f1f;
    --text-white: #fff;
    --text-black: rgb(79, 79, 79);
    --text-gray: #e4e4e4;
}

  .btn2 {
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    display: inline-block;
    transition: all .3s;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: white;
    background-color: #C4A676;
    cursor: pointer;
  }
  
  .btn2:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn2:active {
    transform: scale(0.95);
    box-shadow: none;
  }
  
  .btn2::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
  }
  
  .btn2::after {
    background-color: #C4A676;
  }
  
  .btn2:hover::after {
    transform: scaleX(1.2) scaleY(1.4);
    opacity: 0;
  }
  h1 {
    font-size: 2.75rem;
    line-height: 4.25rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    text-transform:capitalize;
    font-family: "Forum", serif;
}
h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var( --primary-text);
    text-transform: capitalize;
    font-family:"Forum", serif;
    color: white;
}
h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-text);
    font-family: var(--secondary-font);
}

h3 span {
    color: var(--secondary-text);
}
h4{
    color: #625859;
    font-size: 20px;
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--secondary-text);
    margin-bottom: .9375rem;
    margin-top: .9375rem;
    font-weight: 600;
    font-family: var(--secondary-font);

}

h6 {
    color: var(--text-white);
    font-weight: 500;
    font-family: var(--secondary-font);
}
p{
    line-height: 30px;
    font-size: 18px;
}
  section {
    padding: 120px 0;
    position: relative;
}


.footer_wrapper {
    background-color:#272535 !important;
     background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/footer_bottom_img.png') !important ;
}

.footer_wrapper h5 {
    color:white;
    margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
    margin-bottom: .5rem;
    list-style: none;
}

.footer_wrapper .contact-info li a{
    color:white
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
    color: white;
    font-size: 14px;
    padding-left:1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    
}

.footer_wrapper .link-widget li a:hover {
    margin-left: .625rem;
    color:#CDA45E;
}

.footer_wrapper .social-network a {
    width: 2.1rem;
    height: 2.1rem;
    margin: .6rem;
    line-height:2rem;
    font-size: .875rem;
    display: inline-block;
    border: .125rem solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
    background-color:#C9A496;
    border-color: var(--secondary-text);
    color: var(--text-white);
    box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
    transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
    background-color:  #dddddd;
    padding: 1.25rem 0 .3125rem;
    text-align: center;
}


.footer_wrapper .copyright-section a {
    color: var(--secondary-text);
}
.banner_wrapper {
    height:75vh;
}

.banner_wrapper .swiper {
    width: 100%;
    height: 100%;
}

.banner_wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner_wrapper .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0.5;
    z-index: 0;
}
.banner_wrapper .swiper-slide::before {
    background: #272535; /* Example: Blue overlay */
}
.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: .8375rem;
    height: .8375rem;
    margin-bottom: 20px;
    background-color: #272535;
    border: .0625rem solid #272535;
}

.banner_wrapper .swiper .slide-caption {
    height: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_wrapper .swiper .slide-caption p {
    max-width: 37.5rem;
    margin: 0 auto;
    color: var(--text-white);
}
.banner_wrapper .swiper-slide h6{
    font-size: 2.2rem;
    font-weight: 400;
    color: var( --primary-text);
    margin-bottom: 1.25rem;
    text-transform: capitalize;
    font-family:"Forum", serif;
    color: white;
}
.banner_wrapper .swiper-slide h1{
    font-size:120px;
    letter-spacing: 8px;
    text-shadow: #201f1f 3px 3px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    margin: 60px 0;
        
}
.swiper-pagination .swiper-pagination-bullet{
    color: #CDA45E !important;
    background-color: #CDA45E;
}
.line h2 {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.line h2::before,
.line h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 70px;
    height: 1.5px;
    background: #ffffff;
}

.line h2::before {
    left: -90px;
}

.line h2::after {
    right: -90px;
}

.line h2 span {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.line h2 span::before,
.line h2 span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 5px;
    background: #ffffff;
}

.line h2 span::before {
    left: -40px;
}

.line h2 span::after {
    right: -40px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    margin: 0px;
}
.with-svg-item.svg-right-side {
    left: auto;
    right: 0;
    margin-top: -4.5rem;
    margin-right: -3rem;
}
.with-svg-item {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin-top: 2rem;
}

.Slogan{
    background: url('../img/img3.jpg') rgba(0, 0, 0, 0.589);
    background-position: center 80%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    padding: 150px 0 !important;
}



.Seaction-About-1 .outline {
    position: relative;
    display: inline-block;
}

.Seaction-About-1 .outline img {
    display: block;
}

.Seaction-About-1 .outline::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 3px solid rgb(255, 255, 255); /* Ngjyra e bordurës */
    box-sizing: border-box; /* Kjo siguron që dimensionet të përfshijnë bordurën */
}

/*=====Cars=====*/
.cars1 {
    position: relative;
}
.cars1 .cars1-carousel {
    position: relative;
    display: block;
    max-width: 800px;
    margin: 0 auto;
}
.cars1 .cars1-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}
.cars1 .item {
    position: relative;
    display: block;
    margin-bottom: 15px;
}
.cars1 .item .img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
    
        width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}


.cars1 .item:hover img {
    transform: scale(1.05);
}
.cars1 .item .con {
    position: relative;
    display: block;
    background-color: #f1dfd7;
    /* background-color: #C9A496; */
    padding: 20px 25px;
    margin-top: -55px;
    margin-left: 25px;
    margin-right: 25px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;
    visibility: visible;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    border-radius: 10px;
}
.cars1 .item .con.opacity-1 { 
    opacity: 0;
}
.cars1 .item .con.active{
    visibility: visible;
    opacity: 1;
}
.cars1 .item .con .title,
.cars1 .item .con .title a {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    margin-bottom: 0px;
    color: #292727bd;
    font-weight: 700;
    line-height: 1.2em;
    transition: all 500ms ease;
    margin-bottom: 10px;
    font-family: "Forum", serif;
}
.cars1 .item .con .details {
    font-size: 14px;
    display: flex;
    color: #999;
    margin-bottom: 0;
    margin-right: 10px;
    transition: all 500ms ease;
}
.cars1 .item .con .details span {
    display: flex;
    margin-right: 10px;
    margin-left: 10px;
}
.cars1 .item .con .details span  img{
    width: 20px !important;
    margin-right: 5px;
}

.cars1 .item .con .details span i {
    color: #C9A496;
    margin-right: 2px;
    font-style: normal;
    
}
/* book */
.cars1 .item .con .book {
    text-align: -webkit-right;
    margin-top: 1px;
}
.cars1 .item .con .book .btn {
    margin: 0;
    background: #C9A496;
    padding: 14px 21px;
    color: #ffffff;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
}
.cars1 .item .con .book .btn:hover {
    background: #fff;
    color: #1b1b1b;
}
.cars1 .item .con .book > div {
    display: table-cell;
    vertical-align: middle;
}
.cars1 .item .con .book > div:nth-child(2) {
    padding-left: 15px;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.2em;
}
.cars1 .item .con .book > div > span {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    color: #999;
}
.cars1 .item .con .book .price {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    line-height: 1.2em;
    color: #C9A496;
    font-weight: 700;
}


.cars1 .owl-theme .owl-prev::before, 
.cars1 .owl-theme .owl-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f104"; /* Default arrow for prev */
}

.cars1 .owl-theme .owl-next::before {
    content: "\f105"; /* Default arrow for next */
}

.cars1 .owl-theme .owl-prev,
.cars1 .owl-theme .owl-next {
    color: #fff;
    position: absolute !important;
    top: 50%;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 50px;
    text-align: center;
    font-size: 20px; /* Adjust the size of the icons */
}

.cars1 .owl-theme .owl-prev {
    left: 10px !important;
}

.cars1 .owl-theme .owl-next {
    right: 10px !important;
}

.cars1 .owl-theme .owl-nav [class*=owl-] {
    background: #C9A496;
    color: #1b1b1b;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.cars1 .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: #1b1b1b;
}
/* owl nav */
.owl-item.active .item .con {
    visibility: visible;
    opacity: 1;
}
.cars1 .owl-theme .owl-nav {
    position: absolute !important;
    top: 45% !important;
    bottom: auto !important;
    width: 100%
}
.cars1 .owl-theme .owl-nav {
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.cars1 .owl-theme .owl-prev,
.cars1 .owl-theme .owl-prev {
    left: 10px !important;
}
.cars1 .owl-theme .owl-next {
    right: 10px !important;
}
.cars1 .owl-theme .owl-prev,
.cars1 .owl-theme .owl-next {
    color: #fff;
    position: absolute !important;
    top: 50%;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
    text-align: center;
    font-size: 14px
}
.cars1 .owl-theme .owl-prev > span,
.cars1 .owl-theme .owl-next > span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.cars1 .owl-carousel .owl-nav button.owl-next,
.cars1 .owl-carousel .owl-nav button.owl-prev {
    outline: none;
 
}
.cars1 .owl-theme .owl-nav [class*=owl-] {
    width: 50px;
    height: 50px;
    line-height: 53px;
    background: #C9A496;
    border-radius: 100%;
    color: #1b1b1b;
    font-size: 10px;
    margin-right: 5px;
    margin-left: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.cars1 .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: #1b1b1b;
}
.cars1 .owl-theme .owl-nav {
    top: 35% !important;
}
.cars1 .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
.cars1 .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}
@media screen and (max-width: 991px) {
    .cars1 .item .con {
        padding: 30px 20px;
        margin: 0;
    }
    .order2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .cars1 .item .con .book {
        text-align: left;
        margin-top: 3px;
    }
    .cars1-carousel {
        overflow: hidden;
    }
    .cars1 .owl-theme .owl-nav {
        display: none;
    }
}
.facilities h1{
    font-size: 50px !important;
}
.facilities h2{
    font-size: 30px !important;
    font-weight: 600 !important;
}

.image-container {
    width:100%; /* Gjerësia e div-it */
    height: 300px; /* Lartësia e div-it */
    overflow: hidden; /* Fsheh pjesët që dalin nga div-i */
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease; /* Animacion i qetë për efektin e zoom-it */
}

.image-container:hover img {
    transform: scale(1.1); /* Zmadhon imazhin kur kalon miu mbi të */
}
.testimonials{
    background: url('../img/img3.jpg') rgba(0, 0, 0, 0.582) ;
    background-attachment: fixed;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-blend-mode: multiply;
      padding-top: 100px;
      padding-bottom: 100px;
  }

  .title-head{
    padding: 80px 0px !important;
    margin: 0 !important;
    color: white;
    font-size:70px;
    font-style: italic;
    letter-spacing: 6px;
    font-weight: 300;
    font-family: "Forum", serif;
  }
  .Rooms-head{
    background: url('../img/double1-1.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;   
}
.rooms-card{
    margin-bottom: 120px !important;
    background: url('../img/20210420164446_00-00437364-1.jpg')rgba(0, 0, 0, 0);
    background-position: center 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply; 
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.rooms-card .room-text h1{
color: #1b1b1b;
font-size: 40px;
line-height: none !important;
}
.rooms-card .room-text h6{
    color: #1b1b1b;
    font-size: 18px;
 }
 .rooms-card .room-text p{
    color: #1b1b1bcc;
    font-size: 18px;
    margin-top: 10px;
 }
 .rooms-card .room-text h6 span{
    color: #50458f !important;
    font-size: 18px;
 }
 .icons-room span img{
width: 25px;
 }
 .rooms-card {
    display: flex;
}
.room-text {
    order: 1;
}
.carousel {
    order: 2;
}

@media (max-width: 991px) {
    .rooms-card {
        flex-direction: column;
    }
    .room-text {
        order: 2;
    }
    .carousel {
        order: 1;
    }
}

.Gallery-head{
    background: url('../img/img3.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;  
}
.transition {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 0.5s;
}

.thumb {
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.read-btn {
    background: none;
    border: 0;
    font-family: 'Poppins', sans-serif;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
}
.About-head{
    background: url('../img/img2.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 120%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;  
}
.Contact-head{
    background: url('../img/family1-4.jpg')rgba(0, 0, 0, 0.425);
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.inff{
    transition: 0.7s;
    padding: 30px 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    transition: 0.5s;
}
.inff:hover{
    padding: 30px 10px;
    box-shadow:none;
    transition: 0.5s;
    background-color: #F3EBE8;
}
.inff i{
    font-size: 30px;
    color: #272535;
    margin-bottom: 15px;
    transition: 0.5s;
}
.inff:hover i{
    font-size: 30px;
    color: #C9A496;
    margin-bottom: 15px;
    transition: 0.5s;
}

.inff p{
    color: #272535;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1199px){
    .ABOUT-text {
        padding: 0 !important;
    }

}
@media only screen and (max-width: 582px){
.banner_wrapper h1{
    line-height: 30px !important;
    font-size: 70px!important;
    letter-spacing:none;
    text-shadow: #201f1f 3px 3px;
    font-weight: 500 !important;
    font-family: "Playfair Display", serif;
    margin: 40px 0;
}
.banner_wrapper h2{
    font-size: 30px;
}
}
@media only screen and (max-width: 430px){
    .title-head{
        padding: 80px 0px !important;
        margin: 0 !important;
        color: white;
        font-size:50px;
        font-style: italic;
        letter-spacing: 6px;
        font-weight: 300;
        font-family: "Forum", serif;
      }
      .Slogan{
        background: url('../img/img3.jpg') rgba(0, 0, 0, 0.589);
        background-position: center 80%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;
        padding: 150px 0 !important;
    }
    .testimonials{
        background: url('../img/img3.jpg') rgba(0, 0, 0, 0.582) ;
        background-attachment: none;
          background-position: center;
          background-size: cover;
          background-repeat: no-repeat;
          background-blend-mode: multiply;
          padding-top: 100px;
          padding-bottom: 100px;
      }
      .Rooms-head{
        background: url('../img/double1-1.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 60%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;   
    }
    .Gallery-head{
        background: url('../img/img3.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;  
    }
    .About-head{
        background: url('../img/img2.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 120%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;  
    }
    .Contact-head{
        background: url('../img/family1-4.jpg')rgba(0, 0, 0, 0.425);
        background-position: center 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-blend-mode: multiply;
        background-attachment: none;
    }
    .loader h1 {
        font-size: 4rem;
        color: #272535 ; /* Ngjyra e tekstit */
        font-family: 'Outfit', sans-serif; /* Fonti që preferoni */
        animation: pulse 3.5s infinite !important;
    }
}

 /* animation */
 .fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
  }
  .fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
  }
  .fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
  }
  .fadeinup{
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
  }
  .fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
  }
  .active-left,.active,.active-right,.active-down,.active-up{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
  }
  .fadein{
  opacity: 0;
  }