@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Great+Vibes&family=IBM+Plex+Mono:ital@1&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Karla:ital,wght@0,200..800;1,200..800&family=Lato:wght@700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lobster&family=Lobster+Two&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Old+Standard+TT&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Patua+One&family=Roboto+Slab:wght@100..900&family=Signika+Negative:wght@400;500;600&family=Song+Myung&family=Ultra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Castoro:ital@0;1&family=Great+Vibes&family=IBM+Plex+Mono:ital@1&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Karla:ital,wght@0,200..800;1,200..800&family=Lato:wght@700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lobster&family=Lobster+Two&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Old+Standard+TT&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pattaya&family=Patua+One&family=Roboto+Slab:wght@100..900&family=Signika+Negative:wght@400;500;600&family=Song+Myung&family=Ultra&display=swap');
html, body{
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}
.navbar-nav{
   
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding-left: 0px !important;
  }

  a{
      text-decoration: none;
  }
  
/*  HEADER */

.nav-link {
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  color:rgb(255, 255, 255);
  transition: color 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;


}

.navbar-scrolled .nav-link {
  color:rgb(255, 255, 255);
  }

  @media only screen and (max-width: 1000px) {
      .nav-link {
          color:rgb(255, 255, 255);
      }
    }

.nav-item .underline {
  height: 4px;
  background-color: transparent;
  width: 0;
  transition: width 0.6s, background-color 0.6s;
  border-radius: 70px;
  margin: 0 auto;

}

.nav-item.active-link a {

  color: #12A79D ;
}

.nav-item.active-link .underline {
  width: 100%;
  background-color:#12A79D;

}

.nav-item:hover .underline {
  background-color:#12A79D;
  width: 100%;

}

.nav-item:hover a {

  color:  rgb(255, 255, 255);
}


.nav-item:active a {
  transition: none;
}

.nav-item:active .underline {
  transition: none;
  background-color:#12A79D;

}

::selection {
  background-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}


.navbar-nav {
  margin-left: auto;
  gap: 20px;
  font-size: 18px;

}

.navbar {
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease-in-out;

}

.navbar-scrolled {
  background-color: #f5f5f5;

}


@media only screen and (max-width: 1000px) {
  .navbar {
      background-color: #f7f7f7;
      transition: background-color 0.3s ease-in-out;
  
  }
}

.navbar-toggler{
  border-color: #12A79D !important;
  background-color:#12A79D #12A79D !important;

}


.navbar-toggler:hover,.navbar-toggler:active{
  border-color:#12A79D!important;
  background-color: #12A79D; 
  color: transparent !important;


}

@media screen and (width: 1024px) {
  .navbar-nav {
      font-size: 16px;
  }
}
/* GENERAL BUTTON STYLING */
#button,
#button::after {
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
  -o-transition: all 0.5s;
	transition: all 0.5s;
}
#button,
#button::after {
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
  -o-transition: all 0.5s;
	transition: all 0.5s;

}

#button {
  background: #12A79D;
  border: 0;
  border-radius: 0px !important;
  color:rgb(255, 255, 255) !important;
  font-size: 15px;
  font-weight: bold;
  margin: 0 auto;
  padding: 13px 30px;
  position: relative;
  text-transform: uppercase;
  border-radius:0;
  transition: 0.5s;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #ffffff;

}

#button::before,
#button::after {
    
  background: #12A79D!important;
  content: '';
  position: absolute;
  z-index: -1;


}

#button:hover {
  color: #ffffff !important;
  transform: scale(1);
  border: 2px solid #12A79D;

}


.btn-3 {
    overflow: hidden;
  }

  .btn-3::before {
    height: 100%;
    left:0;
    top: 0;
transition: 0.5s;
    width: 0;

  }
  
  .btn-3::after {
    height: 100%;
    right:0;
    top: 0;

    width: 0;

  }

  .btn-3:hover:after,  .btn-3:hover:before {
    height: 100%;
    width: 55%;
  }



  
  .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;
  }
/* ************** */
.room-bg1{
    background: url('image/24837.jpg') rgba(0, 0, 0, 0.753);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 60vh;
    position: relative;
  
    margin-top: 60px;
  }

  .gallery-bg1{
    background: url('image/24833.jpg') rgba(0, 0, 0, 0.685);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 60vh;
    position: relative;
  
    margin-top: 60px;
  }
  .about-bg1{
    background: url('image/153192896.jpg') rgba(0, 0, 0, 0.705);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 60vh;
    position: relative;
  
    margin-top: 60px;
  }


  .contact-bg1{
    background: url('image/24829.jpg') rgba(0, 0, 0, 0.671);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 60vh;
    position: relative;
  
    margin-top: 60px;
  }

  
  .bg01{
    text-align: center;
    font-family: "Song Myung", serif;
    font-weight: 600;
        font-size: 70px;
        color: #ffffff;
        padding-top: 150px;
    
     
      }

/*CONTACT*/


#contact-head h1{
    letter-spacing: 3px;
    font-weight: bold;
    color: lightgoldenrodyellow;
    font-family: 'Fondamento', cursive;


}
#contact-head h3,#contact-head p{
    font-weight: bold;
        font-family: 'Outfit', sans-serif;
        letter-spacing: 2px;
    color: whitesmoke;
    
    }

    
.contacts .col-lg-12 h3{
    color: #12A79D;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;

}

.contacts .col-lg-12 p{
    color:#8d8d8d;
    font-family: 'Outfit', sans-serif;

}

.contacts .col-lg-12 h2{
    font-family: 'Fondamento', cursive;
    font-weight: bold;
    border-bottom: 3px solid  #12A79D;
    border-radius: 5px;
    display: inline-block;
}

.contacts .col-lg-4 p{
    font-family: 'Outfit', sans-serif;
    font-weight: bold;

}

.contacts .col-lg-4 h2{
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: bold;

}

.contact-info{
    border-bottom: 1px solid   #29b3e4;
    background-image: linear-gradient(180deg, #f9f9f9 45%,  #12A79D 92%,  #12A79D 100%);

}

.contacts .col-lg-12 .map{
    border:3px solid #12A79D;
    box-shadow: 0 0 10px 5px  #12A79D;
}




/* CAROUSEL */
.carousel-caption {
    top: 25%;
   
}

.carousel-caption p{
    font-family: 'Montserrat', sans-serif;    
    font-weight: bold;
    letter-spacing: 5px;

}


.carousel-caption h1{
    font-family: "Abril Fatface", serif;
    font-weight: 800;
    font-style: normal;
   
  
        letter-spacing: 5px;

}

.carousel-caption h4{
    font-family: "Castoro", serif;
}
.c-item {
    height: 700px; 
    margin-top: 75px;
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);

}



  .carousel-item.active img{
    transition: transform 5s linear;
    transition-duration: infinite;
    transform: scale(1.05, 1.05);
  }

  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
  }

  
  .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
   }


   

  .carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: 50% center;
    background-size: 100% 100%;
}


.carousel-control-next, .carousel-control-prev {

    width: 10%;
   
}
@media only screen and (max-width: 600px) {
    .carousel-caption{
        text-align: center;
    }
        }



        .about-section{

    
            position: relative;
            overflow: hidden;
        }
        
          .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1; /* Place it behind the content */
            background-image: url('../photos/scott-webb-UjupleczBOY-unsplash.png') ; /* Replace with your image path */
            background-size: cover;
            filter: blur(3px); /* Apply the filter effect you want */
          }
          .color-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1; /* Place it behind the content */
            background-color:#EDECE8; /* Replace with the color you want */
            opacity: 0.8; /* Adjust the opacity as needed (0.1 to 1) */
          }
        
          .about-content {
            position: relative;
            z-index: 10 !important; /* Place it above the pseudo-element */
            /* Other styles for your content */
        
          }
          .about-img{
            position: relative;
            margin-left: -170px;
            margin-top: 200px;
         
          }
        @media (min-width: 768px) {
          .button-59 {
            min-width: 170px;
          }
        }
        @media(max-width:990px){
        .about-img img{
            position: relative !important;
            margin-left: 100px !important;
            margin-top: -80px !important;
          
        } 
        .about01{
          margin-left:0px !important;
        }
        .about02{
          font-size: 30px !important;
        }
         .rev1{
            font-size: 35px !important;

         }
         .bg01{
            font-size: 50px;
         }
        }



            /*JUMBOTRON */

      .jumbotron {
        background: linear-gradient(rgba(0,0,0,0.7),
        rgba(0,0,0,0.5)),
        url('image/24833.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        height: 50vh;
        width: 100%;
        position: relative;
        align-items: center;
    
        }

.jumbotron hr{
    border-top:4px solid #12A79D;
    align-items: center;
    width:100px;
    justify-content: center;
    opacity: 1;
    margin:0 auto;
}


@media (min-width: 1300px) {
    .jumbotron img {
        width:20%;
    }
}

@media (max-width: 1300px) {
    .jumbotron img {
        width:40%;
    }
}
        
/* *************** */

/*FACILITIES*/


.support-padding {
    padding-top: 100px;
    padding-bottom: 100px
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .support-padding {
        padding-top:100px;
        padding-bottom: 100px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .support-padding {
        padding-top:100px;
        padding-bottom: 100px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .support-padding {
        padding-top:100px;
        padding-bottom: 100px
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .support-padding {
        padding-top:70px;
        padding-bottom: 70px
    }
}

@media (max-width: 767px) {
    .support-padding {
        padding-top:70px;
        padding-bottom: 70px
    }
}


.fix {
    overflow: hidden
}



.facilities  .facilities-img {
    position: relative;
}

.facilities .facilities-img::before {
    position: absolute;
    content: "";
    width: 70%;
    height: 100%;
    border: 9px solid #12A79D;
left:4%;
    z-index: 0;
    top: -4%;
}






@media only screen and (max-width: 700px)  {
    .aboutOne .facilities-img::before {
        position: absolute;
        content: "";
        width: 70%;
        height: 100%;
        border: 9px solid #12A79D;
left:-5%;
        z-index: 0;
        top: -5%;
    }
    

 }

.section-tittle h1, .support-caption h3 , .support-caption h5{
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}



@media only screen and (min-width: 1200px) and (max-width: 1250px) {
    .facilities .facilities-img::before {
        left:-2%
    }
}



.facilities .facilities-img img {
    width: 70%;
}

.facilities .facilities-img .support-img-cap {
    position: absolute;
    bottom: 138px;
    right: -104px;
    transform: rotate(-90deg)
}

@media (max-width: 767px) {
    .facilities .facilities-img  {
        right:-69px
    }
}




.facilities.right-caption {
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .facilities .right-caption {
        right:-25px
    }
}

@media (max-width: 767px) {
    .facilities .right-caption {
        right:0px
    }
}

.facilities .right-caption .support-caption p {
    padding-right: 84px;
    color: #000000;
    /* margin-bottom: 46px */
}



.ftco-section {
    position: relative;
    width: 100%;
    display: block; }
    .ftco-section .nav-pills p {
      margin-bottom: 0; }
    .ftco-section .nav-pills .nav-link {
      border-radius: 0;
      margin-bottom: 0;
      font-size: 18px;
      font-weight: 400;
      position: relative;
      display: inline-block;
      margin-left: 5px;
      margin-right: 5px;
      color: #b3b3b3;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      border-radius: 30px; }
      .ftco-section .nav-pills .nav-link:hover {
        color: #000000; }
      .ftco-section .nav-pills .nav-link.active {
        color: #fff;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .ftco-section .nav-pills .nav-link.active:after {
          opacity: 1; }
        @media (max-width: 767.98px) {
          .ftco-section .nav-pills .nav-link.active:after {
            opacity: 0; } }
      @media (max-width: 767.98px) {
        .ftco-section .nav-pills .nav-link {
          display: block;
          width: 100%;
          margin-bottom: 5px; } }
    .ftco-section .tab-content .tab-pane h2 {
      font-size: 24px; }
    .ftco-section .tab-content .tab-pane .one-forth {
      width: 50%; }
      .ftco-section .tab-content .tab-pane .one-forth img {
        -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
        -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03); }
        @media (max-width: 767.98px) {
          .ftco-section .tab-content .tab-pane .one-forth img {
            margin-bottom: 20px; } }
      @media (max-width: 767.98px) {
        .ftco-section .tab-content .tab-pane .one-forth {
          width: 100%; } }
    .ftco-section .tab-content .tab-pane .one-half {
      width: 50%; }
      @media (max-width: 767.98px) {
        .ftco-section .tab-content .tab-pane .one-half {
          width: 100%; } }



.services {
    background: #fff;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px; }
    .services .icon {
      line-height: 1.3;
      position: relative;
      width: 70px;
      height: 70px;
      background: #dbfffd;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }
 
    .services .media-body h3 {
      font-size: 20px; }



                  /*ROOMS*/
.rooms{
    position: relative;
    padding-top:  8vh;
    padding-bottom:  8vh;
}

.room-content{
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.room-content:hover{
box-shadow: 0 .5rem 1.5rem  rgba(255, 255, 255, 0.4);
}

.room-img img{
    border-radius: 10px;

}

.room-info{
    padding: 2rem 1rem  5px;
}


.rating{
    gap: 2px;
}

.rating span{
    font-family: 'Poppins', sans-serif;
    color:#616161 ;
    font-weight: bold;
}

.room-info .div h4{
    background-color: #92929234;
    padding: 8px;
    border-radius: 50%;
    border: 1px dashed  #929292b7;
}

.room-info .div{
    padding-bottom: 15px;
    border-bottom: 2px dashed #9292922d;
}



.room-lower h4{
    color:    #807d7d67;
    font-weight: bold;
    font-family: 'Red Hat Display', sans-serif;


}


@media only screen and (min-width: 300px) {
    .room-lower {
display: flex;   
justify-content: space-between;
 }
  }
   





  /*GALLERY*/
.gallery h2 {
    font-family: 'Libre Baskerville', serif; 
    font-weight: 600;
    font-size:40px;

}


.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #000;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav button:focus {
    outline: none;
}

.owl-slider .item {
    height: auto;
}






.swiper-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    right: 0px;
    margin: 0 auto;


}

.swiper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.swiper-slide {
    width: 10rem;
    height: 24rem;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    border-radius: 12px;
    box-shadow: -1px 5px 15px #0000001f;
    text-align: center;
    transition: opacity 0.4s ease-in;

}

.swiper-slide-active {
    display: grid;
    opacity: 1;
}

.swiper-pagination {
    position: relative;
    bottom: -0.313rem;
    text-align: center;
    margin-top: 35px;
    width: auto;


}

.circle {
    position: absolute;
    bottom: -5em;
    left: -8em;
    width: clamp(150px, 40vw, 400px);
    height: clamp(150px, 40vw, 400px);
    background: black;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
}






/*REVIEWS*/
.reviews {

    padding-bottom: 120px;
    font-family: 'Poppins', sans-serif;

  
  }
  
  .testimonial {
    margin: 0 20px 40px;
  }
  
  .testimonial .testimonial-content {
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background:#c9fcf8;
    position: relative;

  }
  
  .testimonial .testimonial-content:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    border-top: 15px solid #718076;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  
  .testimonial .testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    border-top: 15px solid #718076;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  
  .testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: #12A79D;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
  }
  
  .testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #12A79D;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
  }
  
  .testimonial .description {
    font-size: 15px;
    font-style: italic;
    color: black;
    line-height: 23px;
    margin: 0;
  }
  
  .testimonial .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
  }
  
  .testimonial .post {
    display: block;
    font-size: 14px;
    color: #000000;
  }
  
  .owl-theme .owl-controls {
    margin-top: 20px;
  }
  
  .owl-theme .owl-controls .owl-page span {
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
  }
  
  .owl-theme .owl-controls .owl-page.active span,
  .owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #12A79D;
  }






  #rooms-head .col-lg-12{
    margin-top: 27vh;
    
    }
    

    #rooms-head h1{
    font-family: 'Rubik', sans-serif;        
      letter-spacing: 3px;
        text-transform: uppercase;
        color: white;}



        


  
        #rooms-head  h4{
            color: #ffffffb3;
        
            font-family: 'Poppins', sans-serif;          
        }



    
.accommodation .gy-5{
    
    --bs-gutter-y: 7rem;
}

@media only screen and (min-width: 1000px) {
    .all-rooms {
display: flex;    }
  }

  .accommodation h2 , .accommodation h3{
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
  }

  .accommodation p{
    font-family: 'Outfit', sans-serif;
}

  @media only screen and (min-width: 600px) {
   .accommodation .div {display: flex;
    justify-content: space-between;
    }
  }

  
  .accommodation .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 1rem;
    

  
    [data-bs-target] {
      box-sizing: content-box;
      flex: 0 1 auto;
      width: 5px;
      height: 5px;
position: relative;
      text-indent: -999px;
      cursor: pointer;
      box-shadow: 0 0 0 2px rgba(255,255,255,1);
            border: none;
            background: white;
            border-radius: 50%;
            border:1px solid rgb(0, 0, 0);


    }

}



    @media only screen and (max-width: 300px) {
        #gallery-head .col-lg-12 h1 , #about-head .col-lg-12 h1, #rooms-head .col-lg-12 h1,#contact-head .col-lg-12 h1{
    font-size: 30px;    }
      }
    
    @media only screen and (min-width: 300px)and (max-width: 600px) {
        #gallery-head .col-lg-12 h1, #about-head .col-lg-12 h1, #rooms-head .col-lg-12 h1, #contact-head .col-lg-12 h1{
            font-size: 50px;
        }
      }
    
    
    @media only screen and (min-width: 600px)  {
        #gallery-head .col-lg-12 h1, #about-head .col-lg-12 h1, #rooms-head .col-lg-12 h1, #contact-head .col-lg-12 h1{
            font-size: 80px;
        }
      }
    

      .read-btn{
        background: none;
        border: 0;
        font-family: 'Poppins', sans-serif;
        color: white;
    fill: white;
    }
    
  
