/*to hide the scrollbar but still keep the functionality*/
body::-webkit-scrollbar 
{
    display: none;
}


.btn_hover:hover
{
	transform: scale(1.1);
}

/*scroll indicator start*/

.progress-container {
  width: 100%;
  height: 8px;
  background: #ccc;
  top: 0px;
  z-index: 3;
}

.progress-bar {
  height: 8px;
  background: #4296cb;
  width: 0%;
  transition: 0s;
}

/*scroll indicator end*/

/*nav bar start*/

.nav_header
{
	 overflow: hidden; 
	 position: sticky; 
	 top: 0; 
	 z-index: 2;	
}

.nav_header_2
{
	background: white;
	opacity: 0.9;
}

/*nav bar end*/


/*search bar css start*/

.sb_overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 2;		
  top: 0;
  left: 0;
  background-color: rgba(0,0,0, 0.9);
}

.sb_overlay .sb_closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.sb_overlay .sb_closebtn:hover {
  color: #ccc;
}

.sb_overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.sb_overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.sb_search
{
	width: 60vw;
	height: 50px;
	border-radius: 50px;
}

.sb_button
{
	width: 100px; 
	height: 50px;
	border-radius: 10px;
	color: white;
	background: #4296cb;
}

.sb_button:hover
{
	transform: scale(1.1);
}


/*search bar css end*/


/*logo css start*/

.logo
{
	width: 280px;
}

@media screen and (max-width: 900px)
{
	.logo
	{
		width: 200px;
	}
}

/*logo css end*/


/*nav bar curtain start*/

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 50px !important;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 80px;
}

@media screen and (max-height: 900px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 20px;
  }
}

/*nav bar curtain end*/

/*slider carousel css start	*/
	
	.slider_dmns
	{
		height: 650px;
	}

	@media only screen and (max-width: 900px) 
	{
  		.slider_dmns
  		{
  			height: 700px;
  		}
	}

	.slider_text
	{
		height: 450px;
		width: 700px;
		color: white;
		font-family: 'Ubuntu', sans-serif;
		animation: st_anim 1.5s ease 0s 1 normal forwards;
	}

@keyframes st_anim {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, -3000px, 0);
  transform: translate3d(0, -3000px, 0);
  }
  
  60% {
  opacity: 1;
  -webkit-transform: translate3d(0, 25px, 0);
  transform: translate3d(0, 25px, 0);
  }
  
  75% {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  }
  
  90% {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  }
  
  100% {
  -webkit-transform: none;
  transform: none;
  }
  }
  
  @keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, -3000px, 0);
  transform: translate3d(0, -3000px, 0);
  }
  
  60% {
  opacity: 1;
  -webkit-transform: translate3d(0, 25px, 0);
  transform: translate3d(0, 25px, 0);
  }
  
  75% {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  }
  
  90% {
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  }
  
  100% {
  -webkit-transform: none;
  transform: none;
  }
  } 


	@media only screen and (max-width: 900px) 
	{
  		.slider_text
  		{
  			height: 500px;
  			width: 200px;
  		}
	}

	.slider_text p:first-child
	{
		font-size: 20px;
	}

	.slider_text p:nth-child(2)
	{
		font-size: 80px !important;
		font-weight: bold;
	}

	@media only screen and (max-width: 900px) 
	{
		.slider_text p:nth-child(2)
		{
			font-size: 60px !important;
		}
	}

	.slider_text p:nth-child(3)
	{
		font-size: 20px;
	}

	.more_details_box
	{
		width: 150px;
		height: 70px;
		background: #b0914f;
		font-weight: bold;
		border: 0px !important;
		border-radius: 5px;
	}

	.more_details_box a
	{
		color: white;
		text-decoration: none;
	}

	.carousel-dark .carousel-indicators [data-bs-target]
	{
		background-color: white;
	}

	.carousel-indicators [data-bs-target]
	{
		height: 10px;
		width: 10px;
		border-radius: 500px !important;
		border: 0px;
	}

/*slider carousel css end */


/*destination form start*/

.df_col
{
	height: 50px;
	width: 160px;
}

.sd_overlap
{
	background: #f0f0f0; 
	overflow-x: hidden; 
	z-index: 1;
	position: relative; 
	top: -80px; 
	width: 90%; 
	border-radius: 20px;"
}

.sd_dmns
{
	height: 100px;
}

@media only screen and (max-width: 900px) 
{
	.sd_dmns
	{
		height: 200px;
	}
}


.check_button
{
	width: 100%; 
	height: 100%;
	background: #b0914f;
	border: 0px !important;
	border-radius: 5px;
}

.sd_text
{
	font-size: 25px;
	font-family: 'Roboto Mono', monospace;
	font-weight: bold;
	margin-top: 20px;
}


/*destination form end*/

/*travel bud pro destination start*/

.tbp_dmns
{
	height: 850px; 
	overflow-x: hidden;
}

@media only screen and (max-width: 900px) 
{
	.tbp_dmns
	{
		height: 1120px;
	}
}


.tbp_dest
{
	height: 250px;
}

@media only screen and (max-width: 900px) 
{
	.tbp_dest
	{
		height: 400px;
	}
}

.tbp_dest p:first-child
{
	color: #b0914f !important;
	font-size: 20px;
	font-weight: 700;
}

.tbp_dest p:nth-child(2)
{
	font-size: 48px;
	font-weight: 600;
}

@media only screen and (max-width: 600px) 
{
	.tbp_dest p:nth-child(2)
	{
		font-size: 40px;
	}
}


.tbp_dest p:nth-child(3)
{
	font-size: 15px;
	color: #7b7b7b;
}

.tbp_heading
{
	font-size: 40px;
	font-family: 'Comfortaa', cursive;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.tbp_list
{
	font-size: 30px !important;
}

@media only screen and (max-width:900px) 
{
	.tbp_list
	{
		font-size: 25px !important;
	}
}

/*travel bud pro destination end*/

/*top destinations overlay start*/

.container {
  position: relative;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.g_overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #008CBA;
  opacity: 0.8;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.container:hover .g_overlay {
  bottom: 0;
  height: 100%;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.td_heading
{
	font-size: 100px; 
	font-family: 'Staatliches', cursive;"
}

@media only screen and (max-width: 900px) 
{
	.td_heading
	{
		font-size: 60px;
	}
}

/*top destinations overlay start*/




/*testimonial css start*/

.testimonial_font
{
	padding-top: 150px;
}

@media only screen and (max-width: 900px) 
{
	.testimonial_font
	{
		padding-top: 50px;
	}
}

.testimonial_font p:first-child
{
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2.8px;
	color: #b0914f !important;
}

.testimonial_font p:nth-child(2)
{
	color: black;
	font-size: 3.5vw;
	font-family: 'Comfortaa', cursive;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);;
}

.testimonial_carousel
{
	height: 400px;
	width: 800px;
}

@media only screen and (max-width: 900px) 
{
	.testimonial_carousel
	{
		height: 420px;
		width: 400px;
		margin-top: 0px !important;
	}
}

.testimonial_carousel_text
{
	font-size: 18px;
	line-height: 38px;
	color: white;
}

/*testimonial css end*/


/*cards start*/

.card_dmns
{
	height: 500px;
	width: 400px;
}

.card_animation
{
	animation: cards_anim 3s ease 0s 1 normal forwards;	
}

@keyframes cards_anim {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 900px) 
{
	.card_dmns
	{
		height: 500px;
		width: 350px;
	}
}

.card_dmns .card-body p:first-child
{
	font-size: 15px;
	color: #212529;
	margin-bottom: 40px;
}  

.card_dmns .card-body p:nth-child(2)
{
	font-size: 25px;
	color: black;
	margin-bottom: 50px;
}

.card_dmns .card-body p:nth-child(3)
{
	font-size: 15px;
	color: #6c757d;
}


/*cards end*/

/*gallery css start*/

.gallery_tabs
{
	height: 55px;
	border: 1px solid;
	border-color: rgba(0, 0, 0, 0.1);
	border-radius: 50px;
}

.gallery_tabs .active {
  background-color: #4296cb !important;
  color: white;
  font-weight: bold;
}

.gallery_tabs .active:hover
{
	transform: scale(1.0) !important;
}

@media only screen and (max-width: 900px)
{
	.gallery_tabs
	{
		height: 120px;
	}	
}

.gallery_tabs_item
{
	width: 120px;
	text-align: center;
	cursor: pointer !important;
	font-size: 20px;
	line-height: 50px;
	border-radius: 50px;
}

  .tabcontent {
animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@keyframes fadeEffect 
{
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .column {
    -ms-flex: 33%; /* IE10 */
    flex: 33%;
    max-width: 33%;
    padding: 0 4px;
  }

  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 900px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }

  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 900px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }

  /*gallery css end*/


/*footer start*/

.footer1_items
{
	color: #a7aabb !important;
	font-size: 15px !important;
	text-decoration: none;
}

.footer1_items:hover
{
	text-decoration: underline !important;
	text-decoration-color: #a7aabb !important;
}

.footer_animation
{
	animation: footer_anim 2s ease 0s 1 normal forwards;
}

@keyframes footer_anim {
  0% {
    transform: scale(0);
    transform-origin: 50% 0%;
  }

  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
}

/*footer end*/

/*floating call start*/

.floating_contact_logo
{
	width: 70px;
	height: 70px;
	/*border: 2px solid black;*/
	position: fixed;
	bottom: 10px;
	right: 10px;
	animation: call 2s linear 0s infinite normal none;
	cursor: pointer;
}

@keyframes call {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

/*floating call end*/


abbr
{
	cursor: pointer !important;
}

.to_top
{
	height: 80px;
	width: 80px;
	position: fixed;
	bottom: 0;
	z-index: 1000;
	visibility: hidden;
	scroll-behavior: smooth;
}

.to_top_2
{
	visibility: visible;
}

.to_top_2:hover
{
	transform: scale(1.1);
}



/*slider background images start*/

.s1
{
	background-image: url("../fp_imgs/s1.jpg");
	background-size: cover;
}

.s2
{
	background-image: url("../fp_imgs/s2.jpg");
	background-size: cover;
}

.s3
{
	background-image: url("../fp_imgs/s3.jpg");
	background-size: cover;
}

.s4
{
	background-image: url("../fp_imgs/s4.jpg");
	background-size: cover;
}

/*slider background images end*/


/*animations start*/

.tbp_heading_anim
{
	animation: tbph_amin 2s ease 0s 1 normal forwards;
}

@keyframes tbph_amin {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.tbp_points_anim
{
	animation: tbph_points 2s ease 0s 1 normal forwards;
}

@keyframes tbph_points {
  0% {
    opacity: 0;
    transform: translateX(250px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.blog_anim
{
	animation: blog_animation 1s ease 0s 1 normal forwards;
}

@keyframes blog_animation {
  0% {
    opacity: 0;
    transform: translateX(-250px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*animations start*/
