@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}
body {
	min-height: 100vh;
	display: grid;
	grid-template-rows: 1fr auto;
}

.c-btn{
	padding: 10px 20px;
	margin: 25px 5px;
	border: 1px solid #FFF;
	border-radius: 12px;
	outline: none;
	font-weight: 600;
	text-transform: capitalize;
	color: #FFF;
}
.c-btn:hover{
	font-weight: 900;
	background-color: #FFF;
	color: orangered !important;
}
.custom-card {
	height: 300px;
	background-size: cover; /* This will make the image cover the entire div */
	background-position: center; /* Center the image within the div */
	display: flex;
	align-items: flex-end;
}

.custom-card-content {
	padding: 20px;
	background: rgba(255, 255, 255, 0.8); /* You can adjust the background color and opacity as needed */
}

.main {
	display: block;
	position: relative;
	box-sizing: border-box;
	padding:0 40px;
	width: 100%;
	max-width: 1150px;
	background-color: #fff;
	margin: 0 auto;
	margin-top: 50px;
  }
  
  .topic {
	padding: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-bottom: solid 1px #ebebeb;
  }
  .open {
	cursor: pointer;
	display: block;
	padding: 0px;
  }
  .open:hover {
	opacity: 0.7;
  }
  .expanded {
	background-color: #f5f5f5;
	transition: all 0.3s ease-in-out;
  }
  .question {
	padding-top: 30px;
	padding-right: 40px;
	padding-bottom: 20px;
	font-size: 18px;
	font-weight: 500;
	color: #000;
  }
  .answer {
	font-size: 16px;
	line-height: 26px;
	display: none;
	margin-bottom: 30px;
	text-align: justify;
	padding-left: 20px;
	padding-right: 20px;
  }
  .faq-t {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: inline-block;
	float: right;
	position: relative;
	top: -55px;
	right: 10px;
	width: 10px;
	height: 10px;
	background: transparent;
	border-left: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	transition: all 0.3s ease-in-out;
  }
  .faq-o {
	top: -50px;
	-moz-transform: rotate(-224deg);
	-ms-transform: rotate(-224deg);
	-webkit-transform: rotate(-224deg);
	transform: rotate(-224deg);
  }

/* The intro */
a:hover {
	opacity: 0.7;
	text-decoration: none;
  }
  .intro{
	  text-align: justify;
	  padding: 1.5rem auto !important
  }
  .body-content{
	padding: 0rem 1.5rem !important;
  }
  .headline{
	position: relative;
	padding: 30px auto;
  }
  .headline-activity{
	background-color: #000;
  }
  .headline *{
	color: dodgerblue;
  }
  .headline a:link,small{
	color: #000 !important;
	font-size: medium;
  }
  .headline-activity a:link,small{
	color: #FFF !important;
  }
  .headline .tag{
	position: absolute;
	bottom: 100%;
	background-color: skyblue;
	color: #FFF !important;
	padding: 8px;
	text-transform: uppercase;
	font-size: larger;
	z-index: 0;
  }
  
  .intro h1{
	  font-size: 2.8rem;
	  text-transform: capitalize !important;
	  font-weight: 600;
  }
  
  /* The overview */
  
  .intro #overview{
	  width: 100%;
	  background-color: #1da0a027;
	  border-top: 5px solid #d35400;
	  margin: 0 !important
  }
  
  /* Highlights */
  
  .highlights{
	  border: 3px solid lightblue;
	  border-radius: 20px;
	  width: 100%;
	  max-width: 400px;
	  padding: 20px;
	  display: none;
  }
  .highlights h2{
	  text-transform: uppercase;
  }
  
  /* Itinerary */
  
  .itinerary{
	  box-shadow: -2px -2px 9px #ddd;
	  margin: 30px 0;
	  width: 100%;
	  padding: 20px;
	  border-radius: 10px;
  }
  
  .itinerary h2{
	  padding: 10px 7px;
  }
  .itinerary .itinerary-days{
	  padding: 6px 7px;
	  border-bottom: 2px solid #000;
  }
  .itinerary .item{
	  padding: 14px 7px 7px 7px;
	  text-align: justify;
  }
  .itinerary .item h3{
	  color: dodgerblue;
	  font-size: 1.3rem;
  }
  .itinerary .item p{
	  font-size: 1rem;
	  padding-top: 10px;
  }
  /* images */
  .itinerary .item .content{
	  padding: 10px auto;
	  border-bottom: 1px solid #ccc;
	  display:flex;
	  flex-direction: row;
	  align-items: flex-start;
  }
  .itinerary .item .content .hotel-tag{
	position: absolute; 
	top: 0; 
	left: 0; 
	background-color: rgba(22, 160, 133,0.4); 
	padding: 8px;
	color: #fff;
	font-size: medium;
	margin: 15px auto;
	text-transform: uppercase;
	border-top-left-radius: 3px;
	border-bottom-right-radius: 15px;
  }
  
  .content .image-below-h3 {
	  display: block; /* Ensure the image is a block-level element */
	  margin: 15px auto; /* Add some margin for spacing */
	  min-width: 50%;
	  max-width: 50%;
	  height: auto;
  }
  
  .content .right-paragraph {
	  margin-left: 10px;
	  display:flex;
	  flex-direction: column;
	  align-items:flex-start;
	  text-align: justify;
  }
  .content .right-paragraph ul{
	list-style: repeating-radial-gradient(circle, #3498db, #3498db 10px, #e74c3c 10px, #e74c3c 20px);
	margin-left: -10px;
  }
  .itinerary .item:last-child .content{
	border-bottom: 0px;
  }
  .itinerary .item:last-child .content .image-below-h3,
  .itinerary .item:last-child .content .hotel-tag{
  display: none;
  }
  .itinerary .item:last-child .content .right-paragraph{
  margin-left: 0;
  }
  /* Price */
  
  .price{
	  border-radius: 10px;
	  margin-bottom: 0.3rem;
	  box-shadow: -2px -2px 9px #ddd;
  }
  .price .includes{
	  padding: 14px 10px !important;
	  border-top-left-radius: inherit;
	  border-bottom-left-radius: inherit;
	  background: rgba(144, 238, 144, 0.3);
  }
  .price .excludes{
	  padding: 14px 10px !important;
	  border-top-right-radius: inherit;
	  border-bottom-right-radius: inherit;
	  background-color: rgba(255, 0, 0, 0.125);
  }
  .price .includes ul{
	list-style: none;
  }
  .price .excludes ul{
	list-style: none;
  }
  
  /* The alternative highlights for biking */
  
  .learn{
	  background: linear-gradient(45deg,rgba(30, 143, 255, 0.445), rgba(135, 207, 235, 0.363));
  }
  /* skleton */
  
   /* CSS for the loading skeleton */
   .loading-skeleton .card {
	opacity: 0.2;
	box-shadow: none;
	background-color: lightgray; /* Light gray background color */
  }
  
  .loading-skeleton .skeleton-image,
  .loading-skeleton .skeleton-category,
  .loading-skeleton .skeleton-title,
  .loading-skeleton .skeleton-details,
  .loading-skeleton .skeleton-link {
	opacity: 0.2;
	background-color: lightgray; /* Slightly lighter gray background color */
  }
  /* CSS for the loading skeleton */
  .loading-skeleton .slider {
	background-color: #f0f0f0; /* Light gray background color for the slider container */
  }
  
  .loading-skeleton .skeleton-image {
	width: 200px; /* Adjust the width as needed */
	height: 300px; /* Adjust the height as needed */
	background-color: #e0e0e0; /* Slightly lighter gray background color */
	border-radius: 15px; /* Adjust the border-radius to create rounded corners */
	margin: 10px; /* Add margin for spacing between slider items */
  }
  /* activities */
  .card-container {
	display: flex;
	flex-wrap: wrap;
  }
  .card {
	flex: 1;
	position: relative;
	width: 100%;
	height: auto;
	background: white;
	border-radius: 2rem;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 50px 30px -20px;
  }
  .card .image-container {
	position: relative;
	width: 100%;
	height: 200px;
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
  }
  .card .image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
  }
  
  .card .image-container .category {
	position: absolute;
	left: 0.7rem;
	bottom: 0rem;
	color: white;
	font-weight: 900;
	font-size: 0.9rem;
	padding: 0.3rem;
	text-transform: uppercase;
  }
  .card .content {
	margin-bottom: 1rem;
	padding: 0.3rem;
	align-items: flex-start;
  }
  .card .content .title {
	font-weight: 900;
	color: #000;
  }
  .card .content .title span {
	color:#3498db;
	margin: 0 0.3rem;
  }
  .card .content .details {
	font-weight: 600;
	text-transform: capitalize;
	color: #666666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
  }
  
  .card .link-container {
	position: absolute;
	display: flex;
	bottom: 0;
	left: 0;
	right: 0;
  }
  .card .link-container a {
	border-bottom-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
	padding: 0.5rem 1.8rem;
	font-weight: 600;
	text-align: center;
	background-color: #FFF;
	color: #000;
	font-weight: bold;
	font-size: small;
	width: 100%;
	border: 2px solid orangered;
  }
  .card .link-container a:hover {
	font-weight: 900;
	background-color: orangered;
  }
  
  .card .link-container a::after {
	content: ">";
	float: right;
	padding-right: 1rem;
	font-weight: 900;
  }
  
  /* CSS for the message when there are no activities */
  .no-activities-message {
	text-align: center;
	font-size: 24px;
	margin-top: 20px;
	padding: 20px;
	border-radius: 10px;
	background-color: #f7f7f7;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	color: #555;
  }
  /* slider */
  
  @-webkit-keyframes scroll {
	  0% {
		transform: translateX(0);
	  }
	  50% {
		transform: translateX(calc(-30%));
	  }
	  75% {
		transform: translateX(calc(-70%));
	  }
	  100% {
		transform: translateX(calc(-100%));
	  }
	}
	
	@keyframes scroll {
	  0% {
		transform: translateX(0);
	  }
	  50% {
		transform: translateX(calc(-30%));
	  }
	  75% {
		transform: translateX(calc(-70%));
	  }
	  100% {
		transform: translateX(calc(-100%));
	  }
	}
	
	.slider {
	  background: white;
	  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
	  height: 250px;
	  margin: auto;
	  overflow: hidden;
	  position: relative;
	  width: 100%;
	  border-top: 2px solid black;
	  border-bottom: 2px solid black;
	}
	
	.slider::after {
	  right: 0;
	  top: 0;
	  transform: rotateZ(180deg);
	}
	.slider::before {
	  left: 0;
	  top: 0;
	}
	.slider .slide-track {
	  -webkit-animation: scroll 50s linear infinite;
			  animation: scroll 50s linear infinite;
	  display: flex;
	  width: calc(-100%-0.5px);
	}
	.slider .slide {
	  height: 250px;
	  width: auto;
	  border-right: 2px solid black;
	}
	.slider .slide img{
	  height: 100%;
	  width: auto;
	}

/* Media query for screens with a width less than 600 pixels */
@media screen and (max-width: 600px) {
	*{
	  box-shadow: none !important;
	}
	.intro h1{
	  font-size: 1.2rem;
	  display: -webkit-box;
	  -webkit-box-orient: vertical;
	  -webkit-line-clamp: 1;
	  overflow: hidden;
  }
  .itinerary{
	  box-shadow: 0px 0px 0px #ddd;
	  margin: 2px 0;
	  padding: 0;
	  border-radius: 0px;
	}
  .itinerary .itinerary-days{
		padding: 0px auto;
		font-size: medium;
		font-weight: 600;
		display: -webkit-box;
		-webkit-box-orient: horizontal;
		-webkit-line-clamp: 1;
		overflow: hidden;
	  }
	  .itinerary .item .content{
		  display:flex;
		  flex-direction: column;
	  }
	  .itinerary .item h3{
		font-size: medium;
		font-weight: 500;
	}
	  .content .image-below-h3 {
		min-width: 100%;
	  	max-width: 100%;
	  }
	  
	  .content .right-paragraph {
		  margin-left: 0px;
	  } 
	  .price{
		border-radius: 0;
		box-shadow: none;
	}
  }
  @media only screen and (max-width: 480px) {
	.faq-t {
	  display: none;
	}
	.question {
	  padding-right: 0px;
	}
	.main {
	  padding: 10px;
	}
	.answer {
	  margin-bottom: 30px;
	  padding-left: 0px;
	  padding-right: 0px;
	}
  }