/* preet  */



@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;1,100;1,300;1,500;1,600&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* space-about-heading-text  */

.space1 {
  height: 300px;
  background-color: #66451a;
  display: flex;
  justify-content: center;
  align-items: center;

}


/* about content  */


#about-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-content{
    width: 90%;
}
.button-banner button{
  text-align: center; 
  margin-top: 40px;
  height: 50px;
  border-radius: 8px;
  width: 18%;
  background-color: #ffac41;
  border: none;
  color: #ffffff;
}


.button-banner{
  margin-top:50px
}
a.button-banner{
  text-decoration: none;
  color: white;
  border-radius: 30px;
  border: 1px solid white;
  padding: 10px;
  background-color: #caa169;
  
}
a.button-banner:hover{
  text-decoration: none;
  color: white;
  border-radius: 30px;
  border: 1px solid white;
  padding: 10px;
  background: transparent;
  
}

/* banner-image-text */
.hotel-image-bn{
  background-image: url(../assets/image/banner-about11.jpg);
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  margin-top: 80px;
  
}
#hotel-image-bn1{
  text-align: center;
}




/* footer  */

.last-footer {
  background-color: #3a3138;
   padding: 20px;
  margin-top: 40px;


}
  
  #footer1-color {
    background-color: #3a3138;
    color: white;
    border: 1px solid #3a3138;
  }
  
  #footer1-color p {
  
    color: gray;
  }
  
  #footer1-color h6 {
  
    color: white;
  }
  
  #footer-flax {
    display: flex;
  }



/* hover-image */





.wrapper1 {
  /* background: red; */
  margin: 100px auto;
  width: 100%;
}

.wrapper1 nav {
  display: flex;
  justify-content: center;
}

nav .items {
  display: flex;
  max-width: 720px;
  width: 100%;
  /* background: blue; */
  justify-content: center;
  
}

nav .items .item {
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 500;
  color: #66451a;
  border: 2px solid #66451a;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
}

nav .items .active,
nav .items .item:hover {
  color: #fff;
  background: #66451a;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;

}

.gallery .image {
  width: calc(100% / 4);
  padding: 7px;
}
.gallery .image.hide{
  display: none;
}
.gallery .image.show{
  animation: animate 0.4s ease;
}

@keyframes animate{
  0%{
      transform: scale(0.5);

  }
  100%{
      transform: scale(1);
      
  }
}

.gallery .image span {
  display: flex;
  width: 100%;
  overflow: hidden;

}

.gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.gallery .image:hover img {
  transform: scale(1.1);
}
.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.7);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
 
}
.preview-box .details{
  display: flex;
  align-items: center;
  padding: 13px 15px 13px 10px;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  margin-left: 5px;
  font-weight: 400;
}
.details .icon{
  font-size: 22px;
  color: #007bff;
  cursor: pointer;
}
.preview-box .image-box{
  display: flex;
  width: 100%;
  height: 600px;
  
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}

.shadow{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 2;
  background: rgba(0,0,0,0.4);
}
.shadow.show{
  display: block;
}





/* accordion-imag  */




#accordion-image{
  background-image: url(../assets/image/banner-about11.jpg);
  height: 500px;
  background-size: cover;
}

.text-wpb_wrapper{
  width: 50%;
  justify-content: center;
  display: flex;
}







@media(max-width: 1000px) {
  .gallery .image {
      width: calc(100% / 3);

  }
}

@media screen and (max-width: 995px) {
  .last-footer {

    height: 550px;



  }
}
@media screen and (max-width: 767px) {
  .last-footer {

    height: 850px;



  }

  
}

@media(max-width: 800px) {
  .gallery .image {
      width: calc(100% / 2);

  }
}

@media(max-width: 700px) {
  nav .items {

      max-width: 600px;

  }

  nav .items .item {
      padding: 7px 15px;
  }
}

@media(max-width: 600px) {
  nav .items {

      flex-wrap: wrap;
      justify-content: center;


  }

  nav .items .item {
      margin: 5px;
  }

  .gallery .image {
      width: 100%;

  }
  .last-footer {

    height: 900px;



  }

  .button-banner button{
    width: 80%;
  }



  
}





  
  