@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Poppins', Sans-serif;
  scroll-behavior: smooth;

}

:root {
 --main-color: #a71300;
  --text-color: #111;
  --bg-color: #fff;
  --second-color: #5a7184;
  --text-second: #78716c;
  --header-color: linear-gradient(to right, rgb(141, 27, 11), rgb(5, 117, 230));


  --h1-font: 4rem;
  --h2-font: 2rem;
  --p-font: 1rem;
  --trans: 0.4s ease-in-out;
  --max-width: 1200px;

}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-color);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--main-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-color);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.btn {
  padding: .75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bg-color);
  background-color: var(--main-color);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--trans);

}

.btn:hover {
  border: 1px solid var(--main-color);
  background: var(--bg-color);
  color: var(--main-color);

}


img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
}

.title {
  text-align: center;
}

.title h2 {
  font-size: var(--h2-font);
  line-height: 1.2;
  background-image: var(--header-color);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

hr {
  transition: ease .40s;
  box-shadow: 5px 10px 30px rgb(85 85 85 / 80%);
}

/* ===============================================*/
/* ===============================================*/
/* ====================HOME PAGE==================*/
/* ===============================================*/
/* ===============================================*/
/*POPUP*/
button.show-modal,
.modal-box {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}

section.active .show-modal {
  display: none;
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

section.active .overlay {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.2);
}

section.active .modal-box {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-box i {
  font-size: 50px;
  color: var(--main-color);
}

.modal-box .h2 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
}

.modal-box h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  text-align: center;
}
.modal-box h3 i{
  font-size: 16px;
}

.modal-box .buttons {
  margin-top: 25px;
}

.modal-box button {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 10px;
}


/******************
HEADER
******************/

header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  padding: 10px 18%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .40s ease;
  backdrop-filter: blur(1px);

}

header.stay {
  background: transparent;
  backdrop-filter: blur(35px);
  padding: 10px 18%;
  box-shadow: rgba(33, 35, 38, 0.9) 0px 10px 10px -10px;
}

a {
  color: var(--text-color);
}

.logo {
  max-width: 130px;

}

.stay .logo {
  color: var(--text-color);
  max-width: 70px;
}

span {
  color: var(--main-color);
}

.stay span {
  color: var(--main-color);
}

.navbar {
  display: flex;
}

.stay .navbar {
  color: var(--bg-color);
}

.navbar a {
  color: var(--bg-color);
  font-size: var(--p-font);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 34px;
  transition: all .50s ease;
}

.stay .navbar a {
  color: var(--text-color);
}

.navbar a:hover {
  color: var(--text-color);
  background-color: var(--bg-color);
  box-shadow: 5px 10px 30px rgb(85 85 85 / 80%);
  border-radius: 4px;

}

#menuicon {
  color: var(--bg-color);
  font-size: 35px;
  cursor: pointer;
  z-index: 10001;
  display: none;
}

/***************************
	HOME SECTION
***************************/

section {
  padding: 100px 10% 100px;

}

.home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(112, 48, 18, 0.5), rgba(5, 117, 230, 0.1)),
    url("Images/Home.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: flex-start;
  align-items: center;

}

.home-text h1 {
  font-size: var(--h1-font);
  line-height: 1.2;
  color: rgb(172, 172, 172);
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;

}

.home-text h2 {
  line-height: 1.2;
  color: var(--bg-color);
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;

}

.home-text p {
  color: var(--bg-color);
  font-size: 20px;
  font-weight: 600;
  font-family: 'Courgatte', cursive;
  line-height: 40px;
  margin-bottom: 50px;
  text-align: center;

}

/***************************
	BOOKING SECTION
***************************/

.booking__container {
  padding-block: 1;

}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--bg-color);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
  transition: ease .40s;
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--main-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-color);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-color);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-second);
}


/***************************
	ABOUT SECTION
***************************/
.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

#more {
  display: none;
}

#more:checked~.more-content {
  display: block;
}

#more:checked~.more-content {
  display: block;
}

#more:checked~.read-more {
  display: none;
}

.more-content {
  display: none;
}

label {
  margin-top: 20px;
}

/***************************
	ROOMS SECTION
***************************/
.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;


}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
  color: gold;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--bg-color);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}


.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-second);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
}

.room__card__details h5 span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--second-color);
  float: right;
}
.slider{
    width: 380PX;
    max-width: 100vw;
    height: 250PX;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 100%;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 4%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}
.full-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.btn-view {
  background: var(--second-color);
}

.btn-view:hover {
  border: 1px solid var(--second-color);
  background: var(--bg-color);
  color: var(--second-color);

}

/***************************
	SERVICES SECTION
***************************/
.service {
  background-image: url("Images/garden-16.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-color);
  background-color: var(--text-second);
  border-radius: 100%;
}




.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}
.service__list li:nth-child(2) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(3) span {
  color: #f472b6;
  background-color: #fce7f3;
}
.service__list li:nth-child(4) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(5) span {
  color: #c084fc;
  background-color: #f3e8ff;
}
.service__list li:nth-child(6) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(7) span {
  color: #fb7185;
  background-color: #ffe4e6;
}
.service__list li:nth-child(8) span {
  color: #fb7185;
  background-color: #ffe4e6;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}


/***************************
	EXPLORE SECTION
***************************/

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr) minmax(0, var(--max-width)) minmax(1rem, 1fr);
  background-image: url("Images/kome-caves.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: change 30s infinite ease-in-out;

  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-color);
}

.explore__content .btn {
  color: var(--main-color);
  background-color: var(--bg-color);
  border: 1px solid var(--main-color);
}

.explore__content .btn:hover {
  color: var(--bg-color);
  background-color: var(--main-color);
}

@keyframes change {
  0% {
    background-image: url("Images/afriski.png");
  }

  20% {
    background-image: url("Images/Afriski-P.jpg");
  }

  40% {
    background-image: url("Images/kome-caves.jpg");
  }

  60% {
    background-image: url("Images/Kome-caves-P.jpg");
  }

  80% {
    background-image: url("Images/thaba-bosiu-P.jpg");
  }

  100% {
    background-image: url("Images/horse-riding.jpg");
  }
}

/****************************************
	LOCATION
*****************************************/
iframe{   
  width: 800px;
  height: 300px;
   border:0;
}
button.show-modal-loc,
.modal-box-loc {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}

article.active .show-modal-loc {
  display: none;
  
}

.show-modal-loc {
cursor: pointer;
}

.overlay-loc {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

article.active .overlay-loc {
  opacity: 1;
  pointer-events: auto;
}

.modal-box-loc {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.2);
}

article.active .modal-box-loc {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-box-loc i {
  font-size: 50px;
  color: var(--main-color);
}

.modal-box-loc .buttons-loc {
  margin-top: 25px;
}

.modal-box-loc button {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 10px;
}


/*****************
Footer section
*****************/

.contact {
  background: var(--main-color);
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 1.2rem;

}

.footer-box {
  display: flex;
  flex-direction: column;
}

.footer-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;

}

.footer-box a {
  color: var(--bg-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
  transition: all .5s ease;
}

.footer-box a:hover {
  color: var(--text-color);
  transform: translateX(-5px);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--bg-color);
  font-size: 20px;
  font-weight: 500;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 10px;
  transition: transform 0.6s;
  background-color: #111;
}

.socials a:hover {
  color: var(--main-color);
  transform: translateX(-5px);
  border: 4px solid #111;
}

.Copyright p {
  text-align: center;
  padding: 15px;
  background-color: var(--main-color);
  color: var(--bg-color);
  font-size: 15px;
}

/*==================================================================*/
/*=======================ROOMS AND LODGING PAGE=====================*/
/*==================================================================*/
/*==================================================================*/
.room_home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(112, 48, 18, 0.4), rgba(5, 117, 230, 0.3)),
    url("Images/Rooms/KD-0.jpeg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: flex-start;
  align-items: center;

}


/*==================================================================*/
/*=======================MEALS PAGE=====================*/
/*==================================================================*/
/*==================================================================*/

.meal_home{
	position:relative;
	height:100vh;
	width:100%;
	background-image: linear-gradient( rgba(112, 48, 18, 0.4),  rgba(5, 117, 230, 0.3)), 
                  url("Images/Drinks/backround-3.jpeg");
	background-size: cover;
	background-position: center;
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	justify-content:flex-start;
	align-items: center;
}

.special_section :is(.section_header, .section_subheader){
	text-align: center;
	margin-inline: auto;
}

.special_bg{
	margin-top: 3rem;
	padding-block: 4rem;
	display: grid;
	grid-template-columns:	minmax(4rem, 3fr) minmax(0, var(--max-width));
	background-image: url("Images/Meals/cheese-platter.jpg");
	background-position: center ;
	background-repeat: no-repeat;
}
.special_content{
	grid-column: 2/3;
	max-width: 400px;
	padding: 2rem;
	background-color: var(--bg-color);
	border-radius: 5px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.special_content p{
	margin-bottom: .5rem;
}

.special_content h4{
	margin-bottom: 4rem;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: var(--text-color);
}

.special_content .btn{
	color: var(--main-color);
	background-color: var(--bg-color);
	border: 1px solid var(--main-color);
}

.special_content .btn:hover{
	color: var( --bg-color);
	background-color: var(--main-color);
}

.main {
    max-width: 1200px;
   
	
}
.section-title {
    text-align: center;
    margin-bottom: 80px;
}
.section-title h2 {
    text-transform: capitalize;
    font-size: 35px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.menus {
    display: grid;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.menu-column {
    width: 33%;
    padding: 3px;
}
.menu-column h4 {
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.menu-column h4:before {
    content: "";
    position: absolute;
    width: 12rem;
    height: 2px;
    background-color:var(--main-color);
    bottom: 0;
	
	border: 1px dotted var(--second-color);
}
.single-menu {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.single-menu img {
    
    max-width: 300px;
	max-height: 300px;
    border: 1px dashed var(--second-color);
    padding: 3px;
    margin-right: 15px;
    transition: .3s;
}
.single-menu:hover img {
    transform: rotate(360deg);
	transition: all 1.40s ease;
}
.single-menu .menu-content h5 {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px dashed #222;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.single-menu .menu-content h5 span {
    color: var(--second-color);
    float: right;
    font-weight: 600;
    font-style: italic;
}



/*==================================================================*/
/*=======================GALLARY PAGE=====================*/
/*==================================================================*/
/*==================================================================*/

.gallary_home {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(112, 48, 18, 0.4), rgba(5, 117, 230, 0.3)),
    url("Images/Home-4.jpeg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: flex-start;
  align-items: center;

}

.container {
  max-width: 3000px;
  width: 95%;
  min-height: 100vh;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: var(--second-color);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background: var(--main-color);
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(40, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/*==================================================================*/
/*=======================POLICIES PAGE=====================*/
/*==================================================================*/
/*==================================================================*/
.terms{
	background: var(--bg-color);
	color: var(--text-color);
}
.flex_align_justify{
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .wrapper-p{
	min-height: 100vh;
	padding: 0 20px;
  }
  
  .tc_wrap{
	width: 1000px;
	max-width: 100%;
	height:auto;
	background: var(--bg-color);
	display: flex;
	border-radius: 3px;
	overflow: scroll;
	border-radius: 5px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  }
  
  .tc_wrap .tabs_list{
	width: 150px;
	background: var(--tabs-list-bg-clr);
	height: 100%;
	font-size: 12px;
  }
  
  .tc_wrap .tabs_content{
	width: calc(100% - 150px);
	padding: 0 10px 0 20px;
	height: 100%;
  }
  
  .tc_wrap .tabs_content .tab_head{
	color: var(--main-color);
	padding: 25px 0;
	height: 100px;
  }
  
  .tc_wrap .tabs_content .tab_head{
	text-align: center;
	font-size:13px;
  }
  
  .tc_wrap .tabs_content .tab_body{
	height: calc(100% - 100px);
	overflow: auto;
  }
  
  .tc_wrap .tabs_list ul{
	padding: 70px 20px;
	text-align: right;
  }
  
  .tc_wrap .tabs_list ul li{
	padding: 10px 0;
	position: relative;
	margin-bottom: 3px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.5s ease;
  }
  
  .tc_wrap .tabs_list ul li:before{
	content: "";
	position: absolute;
	top: 0;
	right: -20px;
	width: 2px;
	height: 100%;
	background: var(--main-color);
	opacity: 0;
	transition: all 0.5s ease;
  }
  
  .tc_wrap .tabs_list ul li.active,
  .tc_wrap .tabs_list ul li:hover{
	color: var(--primary-clr);
  }
  
  .tc_wrap .tabs_list ul li.active:before{
	opacity: 1;
  }
  
  .tc_wrap .tabs_content .tab_body .tab_item h3{
	padding-top: 10px;
	margin-bottom: 10px;
	color: var(--primary-clr);
  }
  
  .tc_wrap .tabs_content .tab_body .tab_item p{
	margin-bottom: 20px;
  }
  
  .tc_wrap .tabs_content .tab_body .tab_item.active{
	display: block !important;
  }
  
  .tc_wrap .tabs_content .tab_foot button{
	  width: 125px;
	  padding: 5px 10px; 
	  background: transparent;
	  border: 1px solid;
	  border-radius: 25px;
	cursor: pointer;
	transition: all 0.5s ease;
  }
  
  .tc_wrap .tabs_content .tab_foot button.decline{
	margin-right: 15px;
	border-color: var(--tabs-list-bg-clr);
	color: var(--tabs-list-bg-clr);
  }
  
  .tc_wrap .tabs_content .tab_foot button.agree{
	 background: var(--primary-clr);
	border-color: var(--primary-clr);
	color: var(--white);
  }
  
  .tc_wrap .tabs_content .tab_foot button.decline:hover{
	background: var(--tabs-list-bg-clr);
	color: var(--white);
  }
  
  .tc_wrap .tabs_content .tab_foot button.agree:hover{
	background: var(--btn-hvr);
	border-color: var(--btn-hvr);
  }



/**************************
	NEWS customers
	**********************/

.sec-width {
  width: 85vw;
  margin: 0 auto !important;
}

.customers {
  margin-top: 40px;
  padding: 40px 0;
  grid-column: 1/3;
}

.customer {
  background: #fff;
  padding: 35px;
  text-align: center;
  margin: 24px 0;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transition: var(--transition);
}

.rating {
  margin: 10px 0;
  color: var(--yellow);
}

.customer h3 {
  font-size: 25px;
}

.customer p {
  opacity: 0.7;
  line-height: 1.8;
  width: 100%;
  margin: 0 auto;
}

.customer img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 25px auto;
}

.customer span {
  font-weight: 700;
  opacity: 0.7;
}

.customer:hover {
  transform: translateY(-18px);
}

@media(min-width: 992px) {
  .customers-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}

@media(min-width: 1370px) {
  .customers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}


/*==================================================================*/
/*=======================FAQ PAGE===============================*/
/*==================================================================*/
/*==================================================================*/
.FAQ {
  width: 100%;
  height: auto;

}

.faq_return {
  align-items: center;
  background-position: center;

}

.faq_return a {
  text-align: center;
}

.faq_header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Images/garden-1.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 3%;
  border-radius: 30px;
  width: 94%;
  max-height: 350px;
  color: var(--bg-color);
  margin: 2rem 2rem;
}

.faq_header_tittle {
  font-size: 48px;
  letter-spacing: 1.5;
}

.faq_header_details {
  font-size: 14px;
  letter-spacing: 1;
  text-align: center;
}

.faq_search {
  width: 60%;
  height: 50px;
  background-color: var(--bg-color);
  margin-top: 5%;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.faq_search input {
  width: 80%;
  height: 100%;
  padding: 1% 3%;
  background: transparent;
  border: none;
}

.faq_search button {
  background-color: var(--main-color);
  color: var(--bg-color);
  width: 20%;
  min-width: 100px;
  height: 100%;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.faq_main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 3%;
}

.faq_name {
  flex: .5;
  padding: 2% 2% 0 0;
}

.faq_tittle {
  padding: 5% 0 0 0;
  font-size: 40px;
  letter-spacing: 2;
}

.faq_img {
  width: 100%;
  max-width: 400px;
}

.faq_box {
  flex: 1;
  min-width: 320px;
  padding: 2% 0 4% 4%;
  border-left: 2px solid var(--main-color);
}

.faq_wrapper {
  width: 100%;
  padding: 1.5rem;
  border-bottom: 1px solid var(--second-color);

}

.faq_title {
  display: block;
  position: relative;
  color: var(--main-color);
  width: 100%;
  letter-spacing: 1.2;
  font-size: 24px;
  font-weight: 600;
}

.faq_title::after {
  height: 10px;
  width: 10px;
  content: " ";
  float: right;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
  transition: var(--trans);
  cursor: pointer;
}

.faq_details {
  line-height: 1.5;
  letter-spacing: 1;
  max-height: 0;
  overflow: hidden;
  transition: var(--trans);
  font-size: 14px;
}

.trigger {
  display: none;
}

.trigger:checked+.faq_title+.faq_details {
  max-height: 500px;
}

.trigger:checked+.faq_title::after {
  transform: rotate(-45deg);
}
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
@media (width > 576px) {

.room__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menus {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/***************************************************************/
@media (width > 800px) {

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menus {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}
/***************************************************/
@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }
  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .menus {
    gap: 2rem;
  }
}
/**************************************************************/
@media (max-width: 1400px) {

  header {
    padding: 17px 3%;
    transition: .3s;
  }

  header.stay {
    padding: 10px 3%;
    transition: .3s;
  }

  section {
    padding: 80px 3%;
    transition: .2s;
  }

  :root {
    --h1-font: 4.5rem;
    --h2-font: 2.3rem;
    --p-font: 1rem;
    transition: .2s;

  }
  .room_grid{
		gap:2rem;

	}
}
/**************************************************/
@media (max-width: 1040px) {
  #menuicon {
    display: block;
  }

  .stay #menuicon {
    color: var(--text-color);
  }

  .home {
    height: 80vh;
  }

  .navbar {
    position: absolute;
    top: 0;
    right: -100%;
    width: 270px;
    height: 120vh;
    color: var(--bg-color);
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    transition: .5s all;
  }

  .navbar a {
    display: block;
    margin: 1.2rem 0;
  }
  
.room_grid{
		grid-template-columns: repeat(3,1fr);
	}
	
  .stay .navbar a {
    color: var(--bg-color);
  }

  .open {
    right: 0;
  }

  .list {
    width: 50%;
    margin-bottom: 12px;
  }


  .blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

}
/*************************************************************/
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }

  .modal-box {
    width: 90%
  }

  .list {
    width: 100%;
  }

  .NewsLetter Form {
    width: 100%;
  }

  :root {
    --h1-font: 2.5rem;
    --h2-font: 1.3rem;
    transition: .3s;

  }

  .home {
    height: 85vh;
    transition: .3s;

  }

  .booking__container {
    padding-block: 2;

  }

  .section__header {
    max-width: 300px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2rem;
    color: var(--text-color);
  }

  .btn {
    font-size: 0.5rem;
    font-weight: 500;

  }

  .faq_search {
    width: 100%;
  }

  .faq_title {
    font-size: 20px;
  }

  .service__container {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border-radius: 5px;
  }

  .service__list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 0.7rem;
  }

  .service__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-color);
  }

  .service__list span {
    font-size: 1.3rem;
  }

  .tc_wrap .tabs_content .tab_head {
    font-size: 0.6rem;
  }
  .room_grid{
		grid-template-columns: repeat(2,1fr);
	}
  .menus {
    grid-template-columns: repeat(1, 1fr);
  }
   iframe{   
    width: 250px;
    height: 150px;

  }
  
    .customer p {
    width: 100%;
  }

  .customer img {
    width: 100px;
    height: 100px;
  }
  
  .tc_wrap .tabs_content  {
  font-size:13px;
}
}
/******************************************************************/
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}
/*******************************************************/
