*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

.main-container{
  width: 100%;
  /* height: 100%; */
}

  /* Main Slider */
 .carousel {
  width: 100%;
  height: 118vh;
  position: relative;
}

.carousel:hover > .carousel-button{
  opacity: 1;
}

.carousel-heading-view{
  position: absolute; 
  top: 30%; 
  width: 100%; 
  height: 35%; 
  z-index: 5; 
  display: flex; 
  flex-direction: column;
  justify-content: space-evenly; 
  align-items: center;
}

.carousel-title{
  font-size: 16px; 
  font-weight: 700;
  font-family: 'Poppins', sans-serif; 
  color: white;
  opacity: 0;
  transition: 1500ms ease-out 500ms;
}

.carousel-title.animate{
  opacity: 1;
}

.carousel-subTitle{
  font-size: 72px; 
  /* font-weight: 700;  */
  font-family: 'Poppins', sans-serif; 
  color: white;
}

.carousel-heading-button{
  width: 200px; 
  height: 50px; 
  background-color: transparent; 
  border: 2px solid #1cc3b2;
  color: white; 
  font-weight: 700;
  font-family: 'Poppins', sans-serif; 
  font-size: 16px;
}

.carousel-heading-button:hover{
  background-color: #1cc3b2;
  cursor: pointer;
  transition: 1s;
  border-radius: 2px;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
  overflow: hidden;
}

#slide-image-1{
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("https://preview.colorlib.com/theme/roberto/img/bg-img/16.jpg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#slide-image-2{
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("https://preview.colorlib.com/theme/roberto/img/bg-img/17.jpg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#slide-image-3{
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("https://preview.colorlib.com/theme/roberto/img/bg-img/18.jpg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.carousel-button {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 48%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  padding: 0 .5rem;
  transition: 0.5s;
  /* visibility: hidden; */
  opacity: 0;
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1.8rem;
}

.carousel-button.prev > img{
  width: 80px; 
  height: 80px; 
  object-fit: cover; 
  border-radius: 50%;
}

.carousel-button.next > img{
  width: 80px; 
  height: 80px; 
  object-fit: cover; 
  border-radius: 50%;
}

/* .carousel ul{

} */

/* Availability input section */
.avail-main-container{
  width: 100%; 
  height: 155px; 
  display: flex; 
  justify-content: center; 
  align-items: center;
  z-index: 5; 
  position: absolute; 
  bottom: -340px;
}

.avail-box{
  width: 100%; 
  margin: 0 150px; 
  padding: 0 10px; 
  height: 100%; 
  display: grid; 
  grid-template-columns: 1.3fr 0.8fr 0.9fr; 
  box-shadow: 0 2px 14px 5px rgb(20 20 20 / 10%); 
  background-color: #ffffff; 
  border-radius: 5px;
}

.check-inputs{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.ind-avail-box{
  margin:20px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
}

.ind-avail-box > p {
  font-size: 16px; 
  font-family: 'Poppins', sans-serif;
}

.ind-avail-input {
  width: 200px;
  height: 45px; 
  border-radius: 5px; 
  border: 1px solid gray; 
  opacity: 0.5;
  padding: 0px 10px;
}

.number-input{
  margin:20px; 
  display: flex; 
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center;
}

.room-number-input{
  display: flex; 
  flex-direction: column; 
  justify-content: space-around;
}

.room-number-input > p{
  font-size: 16px; 
  font-family: 'Poppins', sans-serif;
}

.room-number-inputTag{
  width: 50px; 
  height: 45px; 
  border-radius: 5px; 
  border:1px solid grey; 
  opacity: 0.5;
  padding-left: 10px;
}

.avail-button-view{
  margin:20px; 
  display: flex; 
  flex-direction: column; 
  justify-content:center;
}

.avail-button:hover{
  background-color: white;
  color: #1cc3b2;
  cursor: pointer;
  box-shadow: 0 2px 14px 5px rgb(20 20 20 / 10%); 
  transition: 0.5s;
}

.avail-button{
  height: 50px; 
  background-color: #1cc3b2; 
  border: none; 
  color: white; 
  margin-top: 15px; 
  font-size: 16px; 
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* About Us Section */
.aboutUsContainer{
  display: grid;
  margin: 150px 100px 100px 100px; 
  grid-template-columns: 1fr 1fr;
}

.aboutUsTextDetails{
  display: grid; 
  grid-template-rows: 0.8fr 1.2fr;
  transform: scale(0.5s);
  transition: all 2s ease-in-out;
  opacity: 0;
}


.active{
  opacity: 1;
  transform: scale(1);
}


.aboutUsTitleView{
  display: flex; 
  justify-content: center; 
  flex-direction: column;
  transition: all 5s ease-in-out;
  /* transition-delay: 4500ms; */
}

.aboutUsTitleView p {
  color: #1cc3b2;
  font-family: 'Poppins', sans-serif;
}

.aboutUsTitleView h1 {
  font-size: 42px; 
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px
}

.aboutUsMessageView{
  display: flex; 
  justify-content: space-around; 
  flex-direction: column;
}

.aboutUsMessage{
  font-size: 20px;
  color: #636A76;
  padding-right: 20px;
  font-family: 'Poppins', sans-serif;
}

.aboutUsManagerDetailView{
  display: flex; 
  flex-direction: row;  
}

.aboutUsManagerHeading{
  color: #2A303B; 
  font-size: 16px; 
  font-family: 'Poppins', sans-serif;
}

.aboutUsManager{
  color: #1cc3b2; 
  font-size: 14px; 
  font-family: 'Poppins', sans-serif;
}

.aboutUsMessageView img {
  width: 100px; 
  height: 50px;
}

.aboutUsThumbnailsView{
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  column-gap: 10px;
  /* transform: scale(0.5); */
  transform: scale(1);
  transition: all 2s ease-in-out;
  /* opacity: 1; */
}

/* .actives{
  opacity: 1;
  transform: scale(1);
} */

.img1{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.img1 img{
   width: 100%;
   transition: 0.7s;
}

.img1:hover img{
  transform: scale(1.2);
}

.aboutUsThumbnailImages{
  display: grid; 
  grid-template-rows: 1fr 1fr; 
  row-gap: 10px;
  overflow: hidden;
}

.aboutUsThumbnailImages img {
  width: 100%; 
  height: 100%; 
  border-radius: 10px;
  /* transition: 2s; */
}
 
.aboutUsThumbnailVerticalImage{
  width: 100%; 
  height: 100%; 
  border-radius: 10px;
}

/* ///////////////////////////////// */
/* Services Box */
.servicesBoxContainer{
  display: grid; 
  margin: 50px 120px 100px 120px; 
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
   column-gap: 50px;
}

/* /////////////////////////////////////////// */

.services-box{
  background-color: #ffffff;
  box-shadow: 0 2px 14px 5px rgb(20 20 20 / 5%);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 200%;
}

.services-box:hover > p{
  color: #1cc3b2;
  transition: 0.5s;
}

.services-box > img{
  width: 45px;
  height: 45px;
}

.services-box p {
  font-size: 1.25rem; 
  font-family: 'Poppins', sans-serif;
}

/* Second Slider */

.ff{
 margin-top: 150px;
}

.carousel-button-1-prev{
  position: absolute;
  width: 150px;
  height: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  bottom: 0;
  right: 50%;
}

.carousel-button-1-prev:hover{
  background-color: #1cc3b2;
  transition: 0.5s;
  cursor: pointer;
}

.carousel-button-1-prev:hover > p{
  color: white;
  transition: 0.5s;
}

.carousel-button-1-next{
  position: absolute;
  width: 150px;
  height: 50px;
  background-color: #1cc3b2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  bottom: 0;
  left: 50%;
}

.carousel-button-1-next:hover{
  background-color: #0E2737;
  transition: 0.5s;
  cursor: pointer;
}

.carousel-button-1-prev p{
  font-size: 18px; 
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.carousel-button-1-next p {
  font-size: 18px; 
  font-weight: 700;
  font-family: 'Poppins', sans-serif; 
  color: #ffffff;
}

.slide-1-Container{
  display: grid; 
  height: 100vh; 
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

 .sec-carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sec-carousel ul{
  list-style-type: none;
}

.sec-carousel ul li {
  color: #ffffff; 
  font-family: 'Poppins', sans-serif;
}

.sec-carousel {
  width: 100%;
  height: 100vh;
  position: relative;
}

.slide-1{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.slide-1[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.slide-1-Container img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.slide-1-Details{
  background-color: #0e2737; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  padding: 10px 0px 10px 50px
}

.slide-1-DetailsText{
  display: flex; 
  flex-direction: row; 
  /* width: 400px;  */
  margin-right: 100px;
  justify-content: space-between; 
  align-items: center;
}

.slide-1-DetailsText ul li{
  margin: 10px 0px;
}

.slide-1-DetailsTitle{
  font-size: 2.4rem; 
  color: #ffffff; 
  font-family: 'Poppins', sans-serif;
  transition: 2s;
}

.slide-1-Rent{
  font-size: 36px; 
  color: #1cc3b2; 
  font-family: 'Poppins', sans-serif;
}

.slide1-rent-span{
  color: white; font-size: 14px;
}

.slide-1-viewDetails{
  width: 170px; 
  height: 50px; 
  background-color: #1cc3b2; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  margin-top: 50px;
  border-radius: 2px;
}

.slide-1-viewDetails:hover{
  background-color: white;
  color: #1cc3b2;
  transition: 0.5s;
  cursor: pointer;
}

.slide-1-viewDetails:hover > p{
  color: #1cc3b2;
  transition: 0.5s;
}

.slide-1-viewDetails p {
  color: #ffffff; 
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Testimonials */
.testimonialsContainer{
  margin: 100px 130px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  column-gap: 40px;
  height: 450px;
}

.imgSecView{
  overflow: hidden;
}

.imgSec{
  height: 100%;
  width: 100%;
  left: 0; 
  display: flex;
  position: relative; 
 animation: 20s testimonial infinite;
}

.imgSec img{
width: 100%; 
height: 100%; 
border-radius: 10px; 
object-fit: cover;
float: left;
}

@keyframes testimonial {
  0%{
    left: 0;
  }

  20%{
    left: -0%;
  }

  25%{
    left: -100%;
 }

 50%{
 left: -100%;
} 
70%{
 left: -100%;
}

100%{
 left: -100%;
}
}


.testimonialsMessageView{
display: grid;
grid-template-rows: 0.8fr 1.7fr 0.5fr;
}

.testimonialsHeaderView{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.testimonialsMessage{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.testimonialsTitle{
font-size: 18px; 
color: #1cc3b2;
font-family: 'Poppins', sans-serif;
}

.testimonialsSubTitle{
font-size: 42px; 
font-family: 'Poppins', sans-serif;
}

.testimonialsMessage p{
font-size: 22px; 
color: #636A76;
font-family: 'Poppins', sans-serif;
}

.radio-dot-view{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 20px;
}

.radio-dot{
width: 12px;
height: 12px;
background-color: gray;
border-radius: 50%;
margin: 0 3px 0 3px;
}

.radio-dot:hover{
  cursor: pointer;
  background-color: #1cc3b2;
  transition: 0.5s;
}

/* Gallery Container */
.galleryContainer{
  width: 100%; 
  height: 115vh; 
  /* grid-template-columns: 1fr 1fr 1fr;  */
  /* position: relative; */
  overflow: hidden;
}

.galleryContainer img{
  width: 100%; 
  height: 115vh; 
  opacity: 1;
  object-fit: cover;
}

.galleryDescContainer{
  /* display: grid;  */
  width: 100%;
  left: 0; 
  display: flex;
  position: relative; 
 animation: 20s slider infinite linear 1s;
}

.galleryDescContainer img{
  width: 100%;
  float: left;
}

@keyframes slider {
   0%{
     left: 0;
   }

   20%{
     left: 0;
   }

   25%{
     left: -33.33%;
   }

   45%{
    left: -33.33%;
   }
 
   50%{
    left: -66.66%; 
   }

   70%{
    left: -66.66%;
   }

   75%{
    left: -99.99%;
   }

   95%{
    left: -99.99%;
   }

   100%{
    left: 0%;
   }

  }


.galleryDescContainer::-webkit-scrollbar{
  display: none;
}

.galleryDescSubContainer{
  position: relative;
  height: 100%;
}

.galleryDetails{
  position: absolute;
  bottom: 0;
  background-color: rgba(134, 126, 126, 0.651);
  width: 100%;
  height: 10%;
  padding: 10px;
}

.q{
  min-width: 33.33%;
  position: relative;
  /* margin-left: 3px; */
}

.q:hover > .onhoverSec{
   opacity: 1;
   transform: translateY(0%);
  }
  
  .onhoverSec{
    position: absolute;
    bottom: 0;
    background-color: red;
    height: 35%;
    transform: translateY(100%);
    width: 100%;
    transition: 1s;
}

.onhoverSecTextView{
  display: flex; 
  flex-direction: column; 
  height: 100%;
}

.onhoverSecFirstTextView{
  background-color: #1cc3b2; 
  height: 70%;
  display: flex; 
  flex-direction: column; 
  justify-content: space-around; 
  padding: 30px;
}

.onhoverSecTitle{
  font-size: 16px; 
  font-weight: 700; 
  font-family: 'Poppins', sans-serif; 
  color: white;
}

.onhoverSecSubTitle{
  font-size: 20px; 
  font-weight: 700; 
  font-family: 'Poppins', sans-serif; 
  color: white;
}

.onhoverSecContent{
  font-size: 16px; 
  font-family: 'Poppins', sans-serif; 
  color: white;
}

.onhoverSecSecondTextView{
  height: 30%; 
  background-color: #0E2737;
  display: flex; 
  align-items: center; 
  padding: 30px;
}

.onhoverSecSecondTextView:hover{
 cursor: pointer;
}

.onhoverSecSecondTextTitle{
  font-size: 16px; 
  font-weight: 700; 
  font-family: 'Poppins', sans-serif; 
  color: white;
}

.galleryTitle{
  color: #f5efef; 
  font-size: 16px; 
  font-family: 'Popins', sans-serif; 
  margin: 3px 0 3px 0; 
}

.gallerySubTitle{
  color: #f8f1f1; 
  font-size: 20px; 
  font-family: 'Popins', sans-serif; 
  margin: 3px 0 3px 0;
}

/* Blog Section */
.blogSection{
  width: 100%;
  height: 100%;
}

.blogContainer{
  width: 100%; 
  height: 80px; 
  margin-top: 50px; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-around; 
  align-items: center;
}

.blogContTitle{
  color: #1cc3b2; 
  font-size: 16px; 
  font-family: 'Popins', sans-serif;
}

.blogContSubTitle{
  font-size: 42px; 
  font-family: 'Popins', sans-serif;
}

.blogCardContainer{
  display: grid; 
  height: 500px; 
  margin: 50px 100px; 
  grid-template-columns: 1fr 1fr 1fr; 
  column-gap: 30px;
}

.blogCardSubContainer{
  display: grid; 
  grid-template-rows: 1.2fr 0.8fr; 
  row-gap: 20px;
  transition: 0.5s;
}

.blogCardSubContainer:hover{
  cursor: pointer;
  transform: translateY(-12px);
}

.blogCardSubContainer:hover .blogTitle{
  color: #1cc3b2;
  }

.blogCardSubContainer img{
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.blogContentView{
  display: flex; 
  flex-direction: column; 
  justify-content: space-around;
}

.blogDate{
  color: #AFB4BF; 
  font-size: 14px; 
  font-family: 'Popins', sans-serif;
}

.blogTitle{
  font-size: 20px; 
  font-family: 'Popins', sans-serif;
}

.blogMsg{
  color: #636A76; 
  font-size: 16px; 
  font-family: 'Popins', sans-serif;
}



