@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caudex&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');

	

  .fullscreendiv {
    width: 100%;
    height: 650px;
    margin-top: 100px !important;
   }
   
   .inner{
    padding:0;
    margin: 0 !important;
   }

   .topbar{
    top:0;
    padding:0;
    width: 100%;
    height: 100px;
    background: rgba(30, 39, 46,0.5);
    z-index: 100;
    position: fixed;
   }


   .carHeading h1, h2{
		color:#fff;
   }

   .carousel .carousel-indicators button {
    width: 20px;
   	height: 20px;
   	border-radius: 100%;
	background-color:#d70606;
	position: relative;
	bottom: 0px;
	left: 100%;
 }

   #myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.layer{
  top:0;
  padding:0;
  width: 100%;
  height: 700px;
  background:rgba(0, 0, 0, 0.0);
  z-index: 99;
  position: absolute;
}
@media only screen and (max-width:768px){ 
   #myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

}

.logoimg img {
  height: 75px;
  width: 225px;
  padding-right: 30px;
  margin-top: 10px;
}

@media only screen and (max-width:768px){
	.logoimg img {
		height: auto;
		width: 40vw;
		padding-left: 10px;
		margin-top: 0px;
	  }
}



/* ====================================Navbar=============================*/

/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');


/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 5px 0;

  background: transparent !important;
 
}

.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}




.navbar{
	padding: 0;
	margin-top: 30px;
	font-family: 'roboto', sans-serif;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	position: absolute;
  	background:transparent;
	

}
.navbar-brand img{
	height: 80px;
	width: auto;
	display: block;
	

}


.nav-link{
	color: #ffff !important;
	font-weight: 500;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link{
	color: #d70606 !important;
}
.nav-item.active .nav-link{
	color: #FFFFFF !important;
}

.nav-link {
	position: relative;
	padding: 5px 10px !important;
	display: inline-block;
}

.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #d70606;
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
}

/* #Primary style
================================================== */

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #FFFFFF;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: #d70606 !important;
}


/*----------------------Navbard Ends------------------------------------------*/
/*--------------------Side Bar Menu-----------------------------------------------*/

#side-menu-icon{
	position: fixed;
	top: 0px;
	left: 10px;
	height: 40px;
	width: 40px;
	z-index: 120;
  }
  #menu_wahe {
	cursor: pointer;
	padding: 22px 35px 16px 0px;
  }
  
  #menu_wahe span, #menu_wahe span:before, #menu_wahe span:after {
	cursor: pointer;
	height: 2px;
	width: 35px;
	background: #d70606;
	position: absolute;
	display: block;
	content: '';
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
  }
  
  #menu_wahe span:before {
	-webkit-animation: undo-top .5s forwards;
			animation: undo-top .5s forwards;
  }
  
  #menu_wahe span:after {
	bottom: -10px;
	-webkit-animation: undo-bottom .5s;
			animation: undo-bottom .5s;
  }
  
  #menu_wahe.active span {
	background-color: transparent;
  }
  
  #menu_wahe.active span:before {
	top: 0;
  }
  
  #menu_wahe.active span:before {
	-webkit-transform: translateY(0px);
			transform: translateY(0px);
	-webkit-animation: top-x .5s forwards;
			animation: top-x .5s forwards;
  }
  
  #menu_wahe.active span:after {
	-webkit-transform: translateY(0px);
			transform: translateY(0px);
	-webkit-animation: bottom-x .5s forwards;
			animation: bottom-x .5s forwards;
  }
  
  @-webkit-keyframes top-x {
	0% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
	50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
	100% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
  }
  
  @keyframes top-x {
	0% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
	50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
	100% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
  }
  
  @-webkit-keyframes bottom-x {
	0% { transfrom: translateY(0) rotate(0); }
	50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
	100% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
  }
  
  @keyframes bottom-x {
	0% { transfrom: translateY(0) rotate(0); }
	50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
	100% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
  }
  
  @-webkit-keyframes undo-top {
	0% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
	50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
	100% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  }
  
  @keyframes undo-top {
	0% { -webkit-transform: translateY(0px) rotate(45deg); transform: translateY(0px) rotate(45deg); }
	50% { -webkit-transform: translateY(0px) rotate(0); transform: translateY(0px) rotate(0); }
	100% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
  }
  
  @-webkit-keyframes undo-bottom {
  
	0% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
	50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
	100% { transfrom: translateY(0px) rotate(0); }
  }
  
  @keyframes undo-bottom {
  
	0% { -webkit-transform: translateY(-10px) rotate(-45deg); transform: translateY(-10px) rotate(-45deg); }
	50% { -webkit-transform: translateY(-10px) rotate(0); transform: translateY(-10px) rotate(0); }
	100% { transfrom: translateY(0px) rotate(0); }
  }
  
  #side-menu{
	display: block;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 50%;
	background-color: #222;
	z-index: 110;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
	transform: translate(-610px,0px);
	transition: 0.3s ease-in-out;
  }
  
  #side-menu.active{
	transform: translate(0px,0px);
	transition: 0.3s ease-in-out;
  }
  
  #overlay{
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 105;
	display: none;
	transition: 0.3 ease-in-out;
  }
  #overlay.active{
	display: block;
	transition: 0.3 ease-in-out;
  }
  
  /*==================================*/
  #sidebarMenu {
	  height: 550px;
	  position: fixed;
	  left: 0;
	  top: 0;
	  width: 250px;
	  margin-top: 75px;
	  background: #EA2027;
	  z-index: 99999;
	  overflow:auto ;
  
  }
  .wahesidemenu{
	list-style: none; 
	  margin:0;
	  padding:0;
  }
  .wahesidemenu li{
	  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	  overflow: auto;
  }
  .wahesidemenu li a{
	  color: #fff;
	  display: block;
	  padding: 20px;
	  text-transform: uppercase;
	  font-weight: bold;
	  text-decoration: none;
  }
  
  .wahesidemenu li a:hover{
	background:rgba(255, 107, 129,1.0);
  }
  
  .list-unstyled{
	background:#000;
  }
  
  
  .showsidemenu{
	display:none;
  }
  
  @media only screen and (max-width:768px){
	.showsidemenu{
	display:block;
  }
  }
  







/*-----------------------------Carousel-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
 	.carousel-caption{
 		height: 60%;
  		display: flex;
  		justify-content: center; 		
 	}

 	.carousel-caption h1{
 		
 		font-size:5vw;
 		font-family:Poppins ;
 	}
	 .carousel-caption h2{
 		
		font-size:3vw;
		font-family:Poppins ;
	}
	.carousel-caption p{
		font-size:1.5vw;
	}





/*================================================================*/
.about-text{
	text-align: justify;
	text-justify: inter-word;
}

.headline{
	font-family: poppins !important;
	font-size:45px;
	color:rgb(215, 6, 6);
	font-weight:400;
}
.headline2{
	font-family: Caudex;
	font-size:18px;

}
.headline3{
	font-family: poppins !important;
	font-size:40px;
	color:rgb(215, 6, 6);
	font-weight:400;
}

.aboutsign{
	text-align: center;
}

.aboutsign h2{
	font-size: 30px;
	font-family: Caveat;
	color: #044A67;
}


/*=======================================Slider================================*/
@keyframes scroll {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(calc(-250px * 7));
	}
  }
  
  .slider {
	background:#fff;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
	height: 100px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
  }
  .slider::before, .slider::after {
	background: linear-gradient(to right, #ccc 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 100px;
	position: absolute;
	width: 200px;
	z-index: 2;
  }
  .slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
  }
  .slider::before {
	left: 0;
	top: 0;
  }
  .slider .slide-track {
	-webkit-animation: scroll 40s linear infinite;
			animation: scroll 40s linear infinite;
	display: flex;
	width: calc(250px * 14);
  }
  .slider .slide {
	height: 100px;
	width: 250px;
  }
  /* =================================================================*/

  /* ===============Services Div===========================*/
  .service{
	background-color: #FFFFFF;
	border: 0px solid #FFF9EB;
	text-align: center!important;
  }
  
  .linediv{
	border-bottom: 1px solid #8395a7;
}

.eqdiv{
	height:350px;
	width:300px;
	text-align: center;
	cursor: pointer;
	
  
 }


/*********************Air Tickets CSS***************************/

.airtickets {
 width: 140px;
 height: 140px;
 border-radius: 50%;
cursor: pointer;
 border:1px solid #FF003D;

z-index: 999;
}

.aircircle{
 width: 130px;
 height: 130px;
 border-radius: 50%;
cursor: pointer;
 border:0px solid black;
 position:absolute;
 display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.airbox{
   position: relative;
	height: 160px;
	width:160px;
	align-items: center;
	border:0px solid black;
   display: flex;
  justify-content: center  !important;
  margin: auto;
}





/*********************Hotels CSS***************************/

.hotelBooking {
 width: 140px;
 height: 140px;
 border-radius: 50%;
cursor: pointer;
 border:1px solid #FF003D;

z-index: 999;
}

.HotelCircle{
 width: 130px;
 height: 130px;
 border-radius: 50%;
cursor: pointer;
 border:0px solid black;
 position:absolute;
 display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.HotelBox{
   position: relative;
	height: 160px;
	width:160px;
	align-items: center;
	border:0px solid black;
   display: flex;
  justify-content: center  !important;
  margin: auto;
}





/*********************Holidays CSS***************************/

.HolidysBooking {
 width: 140px;
 height: 140px;
 border-radius: 50%;
cursor: pointer;
 border:1px solid #FF003D;

z-index: 999;
}

.HolidaysCircle{
 width: 130px;
 height: 130px;
 border-radius: 50%;
cursor: pointer;
 border:0px solid black;
 position:absolute;
 display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.HolidaysBox{
   position: relative;
	height: 160px;
	width:160px;
	align-items: center;
	border:0px solid black;
   display: flex;
  justify-content: center  !important;
  margin: auto;
}




/*********************Cruise Bookings CSS***************************/

.CruiseBooking {
 width: 140px;
 height: 140px;
 border-radius: 50%;
cursor: pointer;
 border:1px solid #FF003D;

z-index: 999;
}

.CruiseCircle{
 width: 130px;
 height: 130px;
 border-radius: 50%;
cursor: pointer;
 border:0px solid black;
 position:absolute;
 display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.CruiseBox{
   position: relative;
	height: 160px;
	width:160px;
	align-items: center;
	border:0px solid black;
   display: flex;
  justify-content: center  !important;
  margin: auto;
}



/*********************Car Bookings CSS***************************/

.CarBooking {
 width: 140px;
 height: 140px;
 border-radius: 50%;
cursor: pointer;
 border:1px solid #FF003D;

z-index: 999;
}

.CarCircle{
 width: 130px;
 height: 130px;
 border-radius: 50%;
cursor: pointer;
 border:0px solid black;
 position:absolute;
 display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.CarBox{
   position: relative;
	height: 160px;
	width:160px;
	align-items: center;
	border:0px solid black;
   display: flex;
  justify-content: center  !important;
  margin: auto;
}





/*********************Insurance Bookings CSS***************************/

.TravelInsurance {
width: 140px;
height: 140px;
border-radius: 50%;
cursor: pointer;
border:1px solid #FF003D;

z-index: 999;
}

.InsureCircle{
width: 130px;
height: 130px;
border-radius: 50%;
cursor: pointer;
border:0px solid black;
position:absolute;
display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.InsureBox{
position: relative;
height: 160px;
width:160px;
align-items: center;
border:0px solid black;
 display: flex;
justify-content: center  !important;
margin: auto;
}



/*********************ViSA Bookings CSS***************************/

.TravelVisa {
width: 140px;
height: 140px;
border-radius: 50%;
cursor: pointer;
border:1px solid #FF003D;

z-index: 999;
}

.VisaCircle{
width: 130px;
height: 130px;
border-radius: 50%;
cursor: pointer;
border:0px solid black;
position:absolute;
display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.VisaBox{
position: relative;
height: 160px;
width:160px;
align-items: center;
border:0px solid black;
 display: flex;
justify-content: center  !important;
margin: auto;
}








/*********************MICE Bookings CSS***************************/

.TravelMice {
width: 140px;
height: 140px;
border-radius: 50%;
cursor: pointer;
border:1px solid #FF003D;

z-index: 999;
}

.MiceCircle{
width: 130px;
height: 130px;
border-radius: 50%;
cursor: pointer;
border:0px solid black;
position:absolute;
display: inline-block;
background-color:#FF003D;
transition: all .5s ease-in-out;
transform: scale(0);
}



.MiceBox{
position: relative;
height: 160px;
width:160px;
align-items: center;
border:0px solid black;
 display: flex;
justify-content: center  !important;
margin: auto;
}










/**************************COLUMS CSS*****************************/

.col1{
	border-right: 1px solid #8395a7;
}

.col1:hover .aircircle{
	 transform: scale(1);
}

.col2{
	border-right: 1px solid #8395a7;
}

   .col2:hover .HotelCircle{
			 transform: scale(1);
	}

.col3{
	border-right: 1px solid #8395a7;
}

.col3:hover .HolidaysCircle{
			 transform: scale(1);
	}


.col4:hover .CruiseCircle{
			 transform: scale(1);
	}




.col5{
	border-right: 1px solid #8395a7;
}

.col5:hover .CarCircle{
			 transform: scale(1);
	}


.col6{
   border-right: 1px solid #8395a7;
}
.col6:hover .InsureCircle{
   transform: scale(1);
}


.col7{
	border-right: 1px solid #8395a7;
}

.col7:hover .VisaCircle{
   transform: scale(1);
}


.col8{
border-right: 0px solid #8395a7;
}

.col8:hover .MiceCircle{
   transform: scale(1);
}






@media only screen and (max-width:1024px) {	

	.linediv{
			border: 0px solid #8395a7;
		}

	   .eqdiv{
		   border: 1px solid #8395a7 !important;
			height:350px;
			width:300px;
			display: block;
			 margin-left: auto;
			margin-right: auto;

			}

		.col1{
			border-right: 0px solid #8395a7;

		}

		.col1:hover .aircircle{
			 transform: scale(1);
		}


		.col2{
			border-right: 0px solid #8395a7;
		}
		.col3{
			border-right: 0px solid #8395a7;
		}

		.col5{
			border-right: 0px solid #8395a7;
			}
		.col6{
		   border-right: 0px solid #8395a7;
		}
		.col7{
			border-right: 0px solid #8395a7;
		}


}






.pic{
	margin: 0;
	padding: 0;
}
.pic img{
	width:100% !important;
	margin: 0;
	padding: 0;
}



/*-------------------------Service ICONS----------------------------*/

/*====================WhyChooseus Div Starts===============*/


 

   .imgbox{
    height: 350px;
   }

   .ex1{
   	 background-image: url('../images/Final/y1.jpg');
   	 position: relative;
   	 background-repeat: no-repeat;
   	 background-size:cover;
   	  
   }

 .ex2{
   	 background-image: url('../images/Final/y2.jpg');
   	 position: relative;
   	 background-repeat: no-repeat;
   	 background-size:cover;
   	  min-height: 100%;
   	  background-position: center center;
   }

   .ex3{
   	 background-image: url('../images/Final/y3.jpg');
   	 position: relative;
   	 background-repeat: no-repeat;
   	 background-size:cover;
   	  min-height: 100%;
   	  background-position: center center;
   }

   .ex4{
   	 background-image: url('../images/Final/y4.jpg');
   	 position: relative;
   	 background-repeat: no-repeat;
   	 background-size:cover;
   	 min-height: 100%;
   	 background-position: center center;
   }

.box{
  background:rgba(45, 52, 54, 0.5);
  color: #fff;
  position: absolute;
  top: 0%;
  left:0%;
  width: 100%;
  height: 00%;
  box-sizing: border-box;
  z-index: 999;
  transition: all 0.3s;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
cursor: pointer;
}

.box h5{
  margin-top: 40%;
  visibility: hidden;
  text-align: center; 
 
}

.box p{
  visibility: hidden;
  text-align: center;  
  padding: 20px; 
 
}
.box span{
  visibility: hidden;
  text-align: center;  
  border:0px solid #000;
  position: absolute;
  left: 40%;
  top: 25%;
  font-size:4vw;
  transform: translate(-50%,-50%);
}



.ex1:hover .box{
   height: 100%;
   
}

.ex1:hover .box h5,  .ex1:hover .box p, .ex1:hover .box span{
   visibility: visible;
}

.ex2:hover .box h5, .ex2:hover .box p, .ex2:hover .box span{
   visibility: visible;
}

.ex3:hover .box h5, .ex3:hover .box p, .ex3:hover .box span{
   visibility: visible;
}


.ex4:hover .box h5 , .ex4:hover .box p, .ex4:hover .box span{
   visibility: visible;
}


.ex2:hover .box{
   height: 100%;
}

.ex3:hover .box{
   height: 100%;
}

.ex4:hover .box{
   height: 100%;
}

/*====================WhyChooseus Div Ends===============*/

/*====================Memory ============================*/

.MemoryDiv{
	
	position: relative;
	background:url("../images/Final/noise.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.MemoryImgDiv{
    border:0px solid black;

  }
   .MemoryImgDiv img{
      height: 768px;
      width:80%;
      margin-left: 20%;
   }

   .MemSideImage img{
    width:100%;
   translate: -20%;
   }

   @media only screen and (max-width:1024px) {
     .MemoryImgDiv img{
      height: auto;
      width:100%;
      margin-left: auto;
   }
   }


   /*==================== Testimonials ============================*/

   
 .testimonialImage{
	background:url("../images/Final/testi_3.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 750px;
	width:100%;
   }
  
  
  
  .testi_text i{
	  font-size:3vw;
  }
  

  
  .row_text{
	transform: translateY(100px);
  }
  
  #testimonialDiv .owl-nav{
	  font-size:5vw;
  }
  
  
  #testimonialDiv .owl-nav .owl-prev:hover , #testimonialDiv .owl-nav .owl-next:hover{
	  background:none !important;
	  color:#d70606;
	 }
	#navimg{
		  height: 3.5vw;
	  }
  
  .item img{
	height: 150px;
	width: 20% !important;
	border-radius:50%;
  }
  
  
	/*--------------------------------------------------------------*/  
  
	@media only screen and (max-width:1024px) {
	  .testimonialImage{
	background:url("../images/testi_3.jpg");
	width:100%;
	height: auto;
   }
  
  .testi_text{
	padding:10px; 
	font-size:auto;
  }
  .testimonialImage h1{
	 transform: translateY(0px);
  }
  
  .row_text{
	transform: translateY(0px);
  }
  
  
  }
  


/*Top Button CSS Starts*/
#goontop {
	display: inline-block;
	background-color: #2f3542;
	width: 50px;
	height: 50px;
	text-align: center;
	
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s, 
	  opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
  }
  #goontop::after {
	content: "\f102";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
	line-height: 50px;
	color: #fff;
  }
  #goontop:hover {
	cursor: pointer;
	background-color: #d70606;
  }
  #goontop:active {
	background-color: #555;
  }
  #goontop.show {
	opacity: 1;
	visibility: visible;
  }
  
  @media (min-width: 500px) {
  
	#goontop {
	  margin: 30px;
	}
  }
  
  a{
	text-decoration: none;
  }
  
  /*Top Button CSS Ends*/


  /*=========================FOOTER =============================*/
  .footerDiv{
	background:url("../images/8.jpg");
	height:600px ;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
 }
 

 .lastdiv{
  width:100%;
  height: 75px;
  background:#21081a;
  position: absolute;
 }
 .footerRow img{
	width:80%;
	height: 100px;
 }

 .socialDiv{
  background:#ccc;
 }


 @media only screen and (max-width:768px) {

	.footerDiv{
		background:url("../images/8.jpg");
		height:auto;
		width: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	 }
	 
 }
  
/*=========================Counter=================*/
.stats-row {
	overflow: auto;
  }
  .stats-col {
	float: left;
	width: 25%;
	text-align: center;
	height: 100%;
	padding: 50px 0px;
  }
  .stats-col:nth-child(even) {
	background: rgb(215, 6, 6	);
  }
  .stats-col:nth-child(odd) {
	background: rgba(255, 6, 6, 0.8);
  }
  .stats-col i {
	font-size: 50px;
	color: #fff;
  }
  .stats-col h1 {
	font-size: 40px;
	padding: 0;
	font-weight: bold;
	color: #fff;
	font-family: 'Open Sans';
  }
  .stats-col span {
	width: 60px;
	background: #fff;
	height: 2px;
	display: block;
	margin: 0 auto;
  }
  .stats-col p {
	color: #fff;
	font-size: 18px;
	margin: 0;
	padding: 10px;
	font-family: 'Open Sans';
  }
  @media (max-width: 786px) {
	.stats-col {width: 50%;}
  }
  @media (max-width: 500px) {
	.stats-col {width: 100%;}
  } 


/* ==========About US Page CSS ==================================*/
.Banner_image h1{
	display: flex;
	 text-align: center; 
	 position: absolute;
	 transform: translate(-50%,-50%);
	   left: 50%;
	   top: 50%;
	   font-size:4vw; 
	   text-transform: uppercase;
 }
 
	.Banner_image img{
	 width:100%;
	 height: 500px;
	}

	.Banner_image video{
		height: 500px;
		width:100%;
	}
 
 
	.about_div img{
	   width: 100%;
	   height: 200px;
	}
 
	 .WhyCoouseCarousel{
	   height: 60%;
	   display: flex;
	   justify-content: center;    
   }
 
   .WhyCoouseCarousel h1{
	 font-size:3vw;
	 font-family:Poppins;
   }
 
   .whychoose_div{
	 background:#fff;
	 border-radius: 25px;
   }
 
   .whychoose_div i{
	 font-size:3vw;
   }
 
 .WhyCoouse_div img{
	 height: 500px;
	 width:100%;
 }
 
 
 
 
 .MVVDiv h2{
 
	text-align:center;
	padding-top: 50px;
 }
 
 .MVVDiv p{
	text-align:center;
	padding: 50px;
	text-align: justify
 
 }
 .MVVDiv{
   text-align: center;
 }
 .MVVDiv ul{
   display: inline-block;
   text-align: left;
 }
 

/*----------------------Why Choose Luxury Details-----------------------*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

.detail_card {
  box-sizing: border-box;
}


.detail_card a {
  text-decoration: none;
}

.detail_card h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 200;
  font-size:25px;
}

.size {
  max-width: 350px;
  margin: 50px auto 0;

}

.detail_card {
  float: left;
  padding: 0 1.7rem;
  width: 100%;
 
}
.detail_card .menu-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.detail_card .menu-content::before, .detail_card .menu-content::after {
  content: "";
  display: table;
}
.detail_card .menu-content::after {
  clear: both;
}
.detail_card .menu-content li {
  display: inline-block;
}

.detail_card .menu-content span {
  position: absolute;
  left: 50%;
  top: 0;
  font-size: 10px;
  font-weight: 700;
  font-family: "Open Sans";
  transform: translate(-50%, 0);
}
.detail_card .card_wrapper {
  background-color: #fff;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
}
.detail_card .card_wrapper:hover .data {
  transform: translateY(0);
}
.detail_card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(70px + 1em));
  transition: transform 0.3s;
}
.detail_card .data .content {
  padding: 1em;
  position: relative;
  z-index: 1;
}
.detail_card .author {
  font-size: 12px;
}
.detail_card .title {
  margin-top: 10px;
  background:rgba(214, 48, 49,1.0);
}
.detail_card .text {
  height: 100px;
  margin-bottom: 10px;
}

.detail_card:hover .text {
	height: 80%;
	margin-bottom: 50px;
	padding:10px;
	text-align: justify;
	background:rgba(72, 84, 96,0.8)
 }
.detail_card input[type=checkbox] {
  display: none;
}
.detail_card input[type=checkbox]:checked + .menu-content {
  transform: translateY(-60px);
}


.travel_card .card_wrapper:hover .menu-content span {
  transform: translate(-50%, -10px);
  opacity: 1;
}

.travel_card .india_header::before, .travel_card .india_header::after {
  content: "";
  display: table;
}
.travel_card .india_header::after {
  clear: both;
}
.travel_card .india_header .date {
  float: left;
  font-size: 12px;
}
.travel_card .menu-content {
  float: right;
}
.travel_card .menu-content li {
  margin: 0 5px;
  position: relative;
}
.travel_card .menu-content span {
  transition: all 0.3s;
  opacity: 0;
}
.travel_card .data {
  color: #fff;
  transform: translateY(calc(70px + 4em));
}
.travel_card .title a {
  color: #fff;
}




.datacol{
  border:0px solid black;
}
.whychooseLuxary{
	background:url("../images/5006504.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 80vh;
  }
  

 
 
 /*---------------------------------------------*/
	@media only screen and (max-width: 768px) {
	 .Banner_image img{
	 width:100%;
	 height: auto;
	}
 
 
	.Banner_image h1{
		  display: flex;
		  text-align: center; 
		  position: absolute;
		  transform: translate(-50%,-50%);
		  left: 50%;
		  top: 20%;
		  font-size:4vw; 
		  text-transform: uppercase;
 }
 
   .about_div img{
	   width: 100%;
	   height: auto;
	}
 
	.WhyCoouse_div img{
	 height: auto;
	 width:100%;
 }

 .whychooseLuxary{
	background:url("../images/5006504.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
  }
  
 
}


/* ===============================What We Can Do==================================*/

:root {
	--d: 700ms;
	--e: cubic-bezier(0.19, 1, 0.22, 1);
	--font-sans: "Rubik", sans-serif;
	--font-serif: "Cardo", serif;
  }
  
  
  
  .page-content {
	display: grid;
	grid-gap: 1rem;
	padding: 1rem;
	max-width: 1024px;
	margin: 0 auto;
	font-family: var(--font-sans);
	box-sizing: border-box;
  }
  @media (min-width: 600px) {
	.page-content {
	  grid-template-columns: repeat(2, 1fr);
	}
  }
  @media (min-width: 800px) {
	.page-content {
	  grid-template-columns: repeat(4, 1fr);
	}
  }
  
  .card_dxb {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: 1rem;
	width: 100%;
	text-align: center;
	color: whitesmoke;
	background-color: whitesmoke;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  }
  @media (min-width: 600px) {
	.card_dxb {
	  height: 250px;
	}
  }
  .card_dxb:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110%;
	background-size: cover;
	background-position: 0 0;
	transition: transform calc(var(--d) * 1.5) var(--e);
	pointer-events: none;
  }
  .card_dxb:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200%;
	pointer-events: none;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
	transform: translateY(-50%);
	transition: transform calc(var(--d) * 2) var(--e);
  }
  .card_dxb:nth-child(1):before {
	background-image: url(../images/WhatweCanDo/Hotel.jpg);
  }
  .card_dxb:nth-child(2):before {
	background-image: url(../images/WhatweCanDo/1393567.jpg);
  }
  .card_dxb:nth-child(3):before {
	background-image: url(../images/WhatweCanDo/9842591.jpg);
  }
  .card_dxb:nth-child(4):before {
	background-image: url(../images/WhatweCanDo/6437142.jpg);
  }
  .card_dxb:nth-child(5):before {
	background-image: url(../images/WhatweCanDo/Taxi1.jpg);
  }
  .card_dxb:nth-child(6):before {
	background-image: url(../images/WhatweCanDo/3099864.jpg);
  }
  .card_dxb:nth-child(7):before {
	background-image: url(../images/WhatweCanDo/174345.jpg);
  }
  .card_dxb:nth-child(8):before {
	background-image: url(../images/WhatweCanDo/2248320.jpg);
  }
  .card_dxb:nth-child(9):before {
	background-image: url(../images/WhatweCanDo/1307317.jpg);
  }
  .card_dxb:nth-child(10):before {
	background-image: url(../images/WhatweCanDo/AirlineRep.jpg);
  }
  .card_dxb:nth-child(11):before {
	background-image: url(../images/WhatweCanDo/Insurance2.jpg);
  }
  .card_dxb:nth-child(12):before {
	background-image: url(../images/WhatweCanDo/AirTickets2.jpg);
  }
  .card_dxb:nth-child(13):before {
	background-image: url(../images/WhatweCanDo/TravelInsurance.jpg);
  }
  .card_dxb:nth-child(14):before {
	background-image: url(../images/WhatweCanDo/5732917.jpg);
  }
  .card_dxb:nth-child(15):before {
	background-image: url(../images/WhatweCanDo/1968381.jpg);
  }
  .card_dxb:nth-child(16):before {
	background-image: url(../images/WhatweCanDo/4887968.jpg);
  }
  .card_dxb:nth-child(17):before {
	background-image: url(../images/WhatweCanDo/Excursion.jpg);
  }
  .card_dxb:nth-child(18):before {
	background-image: url(../images/WhatweCanDo/5600240.jpg);
  }
  
  
  
  .content-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 0.5rem;
	transition: transform var(--d) var(--e);
	z-index: 1;
  }
  .content-card > * + * {
	margin-top: 0.5rem;
  }
  
  .title-card {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.0;
  }
  
  .copy-card {
	font-family: var(--font-serif);
	font-size: 1.0rem;
	font-style: italic;
	line-height: 1.30;
	
  }
  
  
  
  @media (hover: hover) and (min-width: 600px) {
	.card_dxb:after {
	  transform: translateY(0);
	}
  
	.content-card {
	  transform: translateY(calc(100% - 4.5rem));
	}
	.content-card > *:not(.title-card) {
	  opacity: 0;
	  transform: translateY(1rem);
	  transition: transform var(--d) var(--e), opacity var(--d) var(--e);
	}
  
	.card_dxb:hover,
  .card_dxb:focus-within {
	  align-items: center;
	}
	.card_dxb:hover:before,
  .card_dxb:focus-within:before {
	  transform: translateY(-4%);
	}
	.card_dxb:hover:after,
  .card_dxb:focus-within:after {
	  transform: translateY(-50%);
	}
	.card_dxb:hover .content-card,
  .card_dxb:focus-within .content-card {
	  transform: translateY(0);
	}
	.card_dxb:hover .content-card > *:not(.title-card),
  .card_dxb:focus-within .content-card > *:not(.title-card) {
	  opacity: 1;
	  transform: translateY(0);
	  transition-delay: calc(var(--d) / 8);
	}
  
	.card_dxb:focus-within:before, .card_dxb:focus-within:after,
  .card_dxb:focus-within .content-card,
  .card_dxb:focus-within .content-card > *:not(.title-card) {
	  transition-duration: 0s;
	}
  }
  

 /* ========================Zoom Slider================================*/
 .h-main{
	height: 600px !important;
  
  }
  .h-main img{
	height: 600px;
  }
  
  @media only screen and (max-width:576px) {
	.h-main{
	height: 200px !important;
  
  }
  .h-main img{
	height: auto;
  }
  }
  .carousel-indicators .thumb{
	height: 150px;
	width: 150px;
	background-color:transparent;
	position: relative;
	top:80px;
	left:300px;
  
  
  }
  
  .carousel-indicators .thumb img{
	height: 150px;
	width: 150px;
	position: absolute;
	left:10px;
	border:5px solid #ccc;
  }
  
  @-webkit-keyframes zoom {
	from {
	  -webkit-transform: scale(1, 1);
	}
	to {
	  -webkit-transform: scale(1.5, 1.5);
	}
  }
  
  @keyframes zoom {
	from {
	  transform: scale(1, 1);
	}
	to {
	  transform: scale(1.5, 1.5);
	}
  }
  
  .carousel-inner .h-carousal > img {
	-webkit-animation: zoom 20s;
	animation: zoom 20s;
  }

  /* =======================Achievement Style==========================*/
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

  /*"Sacramento", cursive*/
  
  .AchievementsDiv {
	display: grid;
	height: 100vh;
	font-family:Montserrat ;
	color: #fff;
	/*background: #333;*/
	background-image:url("../images/21307771.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
  }
  
  .TCards .card {
	margin: auto;
	padding: 1em;
	border-radius: 1em;
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
	transform: perspective(500px);
	transform-style: preserve-3d;
	font-size: 3.5vmin;
  }
  /*
  body .card .welcome {
	font-family: "Sacramento", cursive;
	transform: translateZ(20px);
  }
  body .card .year {
	font-family: "Great Vibes", cursive;
	font-size: 2.5em;
  }
  body .card .year span {
	display: block;
	transform: translateZ(40px);
  }
  body .card .year span:nth-child(2) {
	padding-left: 1em;
	transform: translateZ(60px);
  }
  body .card .year span:nth-child(3) {
	padding-left: 2em;
	transform: translateZ(80px);
  }*/
  .logoSvg img{
	width: 100px;
	height: 100px;
  }
  .TCards p{
	 font-family:Raleway;
	 font-size: 2.5vh;
  }
  
  @media only screen and (max-width:768px){
	.AchievementsDiv {
	display: grid;
	height: 100%;
	font-family:Montserrat ;
	color: #fff;
	/*background: #333;*/
	background-image:url("../images/21307771.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
  }
   
  
  }
  
  

  /*../images/21307771.jpg*/


  	/**
 * Timeline styling
 */
.timeline {
	display: flex;
	flex-direction: column;
	padding: 60px 20px 0 37px;
	position: relative;
  }
  @media screen and (min-width: 768px) {
	.timeline {
	  padding: 60px 20px 0;
	}
  }
  .timeline__track {
	background: #d70606;
	background-clip: content-box;
	height: 100%;
	left: 30px;
	min-height: 9px;
	max-height: 100%;
	position: absolute;
	top: 0;
	width: 14px;
	z-index: 2;
  }
  @media screen and (min-width: 768px) {
	.timeline__track {
	  left: calc(50% - 7px);
	}
  }
  .timeline__track::after {
  
	border:0px solid black;
	border-radius: 50%;
	bottom: 0;
	content:"";
	background : url(../images/plane.png) no-repeat;
	height: 100px;
	left: 0;
	position: absolute;
	width: 100px;
	transform: translate(-45px,5px);
  }
  
  .timeline__item {
	padding-top: 10px;
	padding-left: 30px;
	position: relative;
	width: 100%;
  }
  @media screen and (min-width: 768px) {
	.timeline__item {
	  padding-left: 0;
	  width: calc(50% + 2px);
	}
  }
  @media screen and (min-width: 768px) {
	.timeline__item:nth-child(odd) {
	  margin-right: auto;
	  padding-right: 40px;
	}
  }
  @media screen and (min-width: 768px) {
	.timeline__item:nth-child(even) {
	  margin-left: auto;
	  padding-left: 40px;
	  text-align: right;
	}
  }
  @media screen and (min-width: 768px) {
	.timeline__item:nth-child(even) .timeline__line {
	  left: 0;
	  right: auto;
	}
  }
  .timeline__line {
	background: #393e46;
	height: 4px;
	position: absolute;
  
	left: 0;
	top: 0;
	width: 100%;
	z-index: 2;
  }
  @media screen and (min-width: 768px) {
	.timeline__line {
	  left: auto;
	  right: 0;
	}
  }
  
  .timeline__wrap img {
	height: 200px;
	width: 300px;
  }
  
  @media only screen and (max-width:768px){
  .timeline__wrap img {
	height: 200px;
	width: 100%;
  }
  }
  @media screen and (max-width: 767.9px) {
	.timeline__footer {
	  padding-left: 30px;
	}
  }
  .timeline.is-init .timeline__line {
	transition: width 0.5s ease-in-out;
	width: 0;
	will-change: width;
  }
  .timeline.is-init .timeline__wrap {
	opacity: 0;
	transform: translateY(-20px);
	transition: transform 0.5s, opacity 0.2s;
	will-change: opacity, transform;
  }
  .timeline.is-init .timeline__footer {
	opacity: 0;
	transition: opacity 0.2s;
	will-change: opacity;
  }
  .timeline.is-loading .timeline__line, .timeline.is-loading .timeline__wrap, .timeline.is-loading .timeline__footer {
	transition: none;
  }
  .timeline .is-visible .timeline__line {
	width: 100%;
  }
  .timeline .is-visible .timeline__wrap {
	opacity: 1;
	transform: translateY(0);
  }
  .timeline .is-visible.timeline__footer {
	opacity: 1;
  }
  
  /**
   * Demo styling
   */
  @import url('https://fonts.googleapis.com/css2?family=Caudex&display=swap');
  
  .timeline h2{
	color:#d70606;
	font-family: Caudex;
	font-size:28px;
  
  }
  
  .timeline p{
	font-family: Caudex;
	font-size:20px;
	text-align:left;
  }
  
  .timeline h5{
   background: #d70606;
   color:#fff;
   text-align: center;
  
  }
  
  .timeline-section {
	background: #eeeeee;
	padding: 5rem 0;
  }
  

/*Branches Card Styles*/


.card_Container {
	width: 1000px!important;
	position: relative;
	display: flex;
	justify-content: space-between;
	border:0px solid #000;
  }
  
  .card_Container .card_display {
	position: relative;
	border-radius: 10px;
  }
  
  .card_Container .card_display .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f00;
	transition: 0.7s;
	z-index: 1;
  }
  
  .card_Container .card_display:nth-child(1) .icon {
	background: #d70606;
  }
  
  .card_Container .card_display:nth-child(2) .icon {
	background: #d70606;
  }
  .card_Container .card_display:nth-child(3) .icon {
	background: #d70606;
  }
  
  
  .card_Container .card_display .icon svg {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.7s;
	color: #fff;
	width: 120px;
  }

  .card_Container .card_display .icon img {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.7s;
	color: #fff;
	width: 120px;
  }


  @import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
  
  .card_Container .card_display .icon h4{
	 position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	font-family:Dancing Script;
	transition: 0.7s;
	color: #fff;
  }
  
  
  
  .card_Container .card_display .face {
	width: 300px;
	height: 200px;
	transition: 0.5s;
  }
  
  .card_Container .card_display .face.face1 {
	position: relative;
	background: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	transform: translateY(100px);
  }
   
  .card_Container .card_display:hover .face.face1 {
   
	transform: translateY(0px);
  }
  
 
  .card_Container .card_display:hover svg{
   fill:#fff;
  }
  
  .card_Container .card_display .face.face1 .content {
	opacity: 1;
	transition: 0.5s;
  }
  
  .card_Container .card_display:hover .face.face1 .content {
	opacity: 1;
  }
  
  .card_Container .card_display .face.face2 .content p a:hover{
	color:#000;
  }
  
  .card_Container .card_display .face.face2 {
	position: relative;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
	transform: translateY(-100px);
  }
  
  .card_Container .card_display:hover .face.face2 {
	transform: translateY(0);
  }
  
  .card_Container .card_display .face.face2 .content p {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #414141;
  }
  
  .btn-blue {
	background-color:#d70606;
	border-radius: 12px;
	border: 1px transparent solid; /* transparent border */
	color: #fff;
	padding: 13px 30px; /* remove 2px as we are now using the border */
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	
	cursor: pointer;
  }
  
  .btn-blue:hover
  {
	opacity: 1;
	background-color:#eb2f06;
	border: 1px #b71540 solid;
  }
  
  .btn-blue:active
  {
	background-color: #b71540;
	border: 1px #fff solid;
  }
  
/* Buttons For Mobile View */


#branchbutton {
	padding-top: 0px;
	text-align: center;
	font-family: "Nunito", sans-serif;
	background-color: #f8f8ff;
	text-rendering: auto;
}

/* just change the btn padding to increase bg size */
.branchbtn {
	border-radius: 5px;
	padding: 1.5rem;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #fff;
	position: relative;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.branchbtn:active {
	transform: translate(0px, 5px);
	-webkit-transform: translate(0px, 5px);
	box-shadow: 0px 1px 0px 0px;
}

.branchbtn-blue {
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
	text-shadow: 0 1px 1px rgba(33, 33, 33, 0.2), 0 3px 10px rgba(33, 33, 33, 0.2),
		0 3px 20px rgba(33, 33, 33, 0.4);
	color: #f8f8ff;
}

.branchbtn-blue p {
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
	font-size: 1.75rem;
	text-decoration: none;
	text-align: center;
	margin: 0;
	padding: 0;
	color: #f8f8ff;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

@media only screen and (max-width:768px){
	.branchbtn-blue p {
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
	font-size: 1.20rem;
	text-decoration: none;
	text-align: center;
	margin: 0;
	padding: 0;
	color: #f8f8ff;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

}


.branchbtn-blue p:hover {
	color: #212121;
}

.branchbtn-blue:hover {
	box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.text-grow {
	transition: all 0.3s ease-in-out;
}

/*animate parent div so element doesn't push all content*/
.text-grow:hover {
	transform: scale(1.15);
}

/* duplicate the btn-bg rule to create different bgs */
.btn-bg-ocean {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/Africa.jpg");
}
.btn-bg-desert {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/taj.jpg");
}
.btn-bg-arctic {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/me2.jpg");
}









/*Branches Card Styles Ends Here */


  

  .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #d70606; 
    border-color:#d70606; 
}

/*=======================Branch MAP=============================*/
#map {
       
	height:450px;
	width:100%;
  }

/*=======================Branch Slider =================*/
#Branchcontent #BranchSlider .navigation ul li .li__hoverLine, #Branchcontent #BranchSlider .navigation ul li .li__info,
#Branchcontent #BranchSlider .navigation ul li .li__info-mask .mask__infoContainer, #Branchcontent #BranchSlider .navigation, #Branchcontent #BranchSlider {
  width: 100%;
}

#Branchcontent #BranchSlider {
  height: 100%;
}

#Branchcontent #BranchSlider .navigation ul li a, #Branchcontent #BranchSlider .backgroundImages .bi__imgCont .bi__imgCont-img, #Branchcontent #BranchSlider .backgroundImages .bi__imgCont, #Branchcontent #BranchSlider .backgroundImages, #Branchcontent #BranchSlider .mainImages .mi__img, #Branchcontent #BranchSlider .mainImages, #Branchcontent {
  width: 100%;
  height: 100%;
}

#Branchcontent #BranchSlider .navigation ul li, #Branchcontent #BranchSlider .navigation ul {
  width: auto;
  display: table;
}

#Branchcontent #BranchSlider .navigation ul li .li__info,
#Branchcontent #BranchSlider .navigation ul li .li__info-mask .mask__infoContainer, #Branchcontent #BranchSlider .navigation ul li a, a {
  -webkit-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
  /* easeOutExpo */
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  /* easeOutExpo */
}

/* Styles */


#Branchcontent {
  height: 80vh;
  position: relative;
  overflow: hidden;
}


#Branchcontent #BranchSlider img {
  display: none;
}
#Branchcontent #BranchSlider .mainImages {
  position: relative;
  z-index: 1;
}
#Branchcontent #BranchSlider .mainImages .mi__img {
  position: absolute;
  top: 0;
  left: 0;
  /* -webkit-transform: scale(0.7);
  transform: scale(0.7); */
}
#Branchcontent #BranchSlider .backgroundImages {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#Branchcontent #BranchSlider .backgroundImages .bi__imgCont {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
#Branchcontent #BranchSlider .backgroundImages .bi__imgCont .bi__imgCont-img {
  position: relative;
}
#Branchcontent #BranchSlider .navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  z-index: 2;
}
#Branchcontent #BranchSlider .navigation ul {
  margin: 90px auto;
}
#Branchcontent #BranchSlider .navigation ul li {
  float: left;
  margin-right: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
#Branchcontent #BranchSlider .navigation ul li:last-child {
  margin-right: 0;
}
#Branchcontent #BranchSlider .navigation ul li:hover .li__info {
  opacity: 0.9 !important;
}
#Branchcontent #BranchSlider .navigation ul li.active .li__hoverLine .l {
  width: 100%;
}
#Branchcontent #BranchSlider .navigation ul li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#Branchcontent #BranchSlider .navigation ul li .li__info,
#Branchcontent #BranchSlider .navigation ul li .li__info-mask .mask__infoContainer {
  overflow: hidden;
  opacity: 0.7;
}
#Branchcontent #BranchSlider .navigation ul li .li__info h5,
#Branchcontent #BranchSlider .navigation ul li .li__info-mask .mask__infoContainer h5 {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0px;
  color: white;
  float: left;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  padding: 4px 0px 5px 0px;
}
#Branchcontent #BranchSlider .navigation ul li .li__info h4,
#Branchcontent #BranchSlider .navigation ul li .li__info-mask .mask__infoContainer h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  color: white;
  float: left;
  padding-left: 6px;
  text-transform: uppercase;
}
#Branchcontent #BranchSlider .navigation ul li .li__info-mask {
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#Branchcontent #BranchSlider .navigation ul li .li__info-mask .mask__infoContainer {
  opacity: 1;
}
#Branchcontent #BranchSlider .navigation ul li .li__hoverLine {
  height: 1px;
  float: left;
  margin-top: 8px;
}
#Branchcontent #BranchSlider .navigation ul li .li__hoverLine .l {
  width: 0%;
  height: 1px;
  background: #cccccc;
  margin: 0 auto;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
/*=======================Branch Slider END============================*/

/*=======================Service====================================*/


/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*/
.nav-pills-custom .nav-link {
    color: #fff;
    background: #d70606;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    color: #d70606;
    background: #fff;
}


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #d70606;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}


.tabimg img{

	width: 100%;
	height:300px !important;
}


/*
*
* ==========================================
* Services Slider 
* ==========================================
*/

.slideshow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 80vh;
	z-index: 1;
	
  }
  .slideshow .slideshow-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  .slideshow .slides {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
  }
  .slideshow .slide {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
  }
  .slideshow .slide.is-active {
	display: block;
  }
  .slideshow .slide.is-loaded {
	opacity: 1;
  }
  .slideshow .slide .caption {
	padding: 0 100px;
  }
  .slideshow .slide .image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	z-index: 1;
	background-size: cover;
	image-rendering: optimizeQuality;
  }
  .slideshow .slide .image-container::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
  }
  .slideshow .slide .image {
	width: 100%;
	width: 100%;
	object-fit: cover;
	height: 100%;
  }
  .slideshow .slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  .slideshow .slide .title {
	margin: 0 auto 15px;
	max-width: 1000px;
	font: 300 50px/1.2 "Oswald", sans-serif;
	letter-spacing: 0.35em;
	text-transform: uppercase;
  }
  .slideshow .slide .text {
	margin: 0 auto;
	max-width: 1000px;
	font-size: 18px;
	line-height: 1.4;
  }
  .slideshow .slide .btn {
	margin: 15px 0 0;
	border-color: #fff;
  }
  .slideshow .slide .btn::before {
	background: #fff;
  }
  .slideshow .pagination {
	position: absolute;
	bottom: 35px;
	left: 0;
	width: 100%;
	height: 12px;
	cursor: default;
	z-index: 2;
	text-align: center;
  }
  .slideshow .pagination .item {
	display: inline-block;
	padding: 15px 5px;
	position: relative;
	width: 46px;
	height: 32px;
	cursor: pointer;
	text-indent: -999em;
	z-index: 1;
  }
  .slideshow .pagination .item + .page {
	margin-left: -2px;
  }
  .slideshow .pagination .item::before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	left: 5px;
	width: 36px;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	transition: background 0.2s ease;
  }
  .slideshow .pagination .item::after {
	width: 0;
	background: #fff;
	z-index: 2;
	transition: width 0.2s ease;
  }
  .slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
	background-color: #fff;
  }
  .slideshow .arrows .arrow {
	margin: -33px 0 0;
	padding: 20px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 3;
  }
  .slideshow .arrows .prev {
	left: 30px;
  }
  .slideshow .arrows .prev:hover .svg {
	left: -10px;
  }
  .slideshow .arrows .next {
	right: 30px;
  }
  .slideshow .arrows .next:hover .svg {
	left: 10px;
  }
  .slideshow .arrows .svg {
	position: relative;
	left: 0;
	width: 14px;
	height: 26px;
	fill: #fff;
	transition: left 0.2s ease;
  }

/* =====================Service BOX CSS=======================*/
.boxContainer{
	height:100%;
	border:0px solid blue;
	width:100%;
 }

 .boxContainer h2{

	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 5%;
	  font-size:2vw;

 }

  .servicebox1 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox1:hover h4{
  visibility:visible;
 }


 .servicetext1{
	background:rgba(44, 62, 80,0.8);
	padding:2vw;
	margin-top: 7vw !important;
	color:#fff;
	line-height: 2.5;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }

 .servicebox1{
	background:url("../images/WhatweCanDo/Holidays.jpg");
	background-size: cover;  
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 0px solid red;
	cursor: pointer;

 }


.servicebox1 .closebox{
border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}

.servicebox2{
	background:url("../images/WhatweCanDo/1760763.jpg");
	background-size: cover;  
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }

 
.servicetext2{
	background:rgba(44, 62, 80,0.8);
	padding:2vw;
	margin-top: 7vw !important;
	color:#fff;
	line-height: 2.5;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }




.servicebox2 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox2:hover h4{
  visibility:visible;
 }


.servicebox2 .closebox{
border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;


transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}

.servicebox3{
	background:url("../images/WhatweCanDo/850672.jpg");
	background-size: cover; 
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }

 .servicetext3{
	background:rgba(44, 62, 80,0.8);
	padding:1vw;
	margin-top: 5vw !important;
	color:#fff;
	line-height: 2.0;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }




.servicebox3 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox3:hover h4{
  visibility:visible;
 }

.servicebox3 .closebox{
border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
} 



.servicebox4{
	background:url("../images/WhatweCanDo/AirTicket.jpg");
	background-size: cover; 
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }
.servicetext4{
	background:rgba(44, 62, 80,0.8);
	padding:2vw;
	margin-top: 7vw !important;
	color:#fff;
	line-height: 2.5;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }

.servicebox4 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox4:hover h4{
  visibility:visible;
 }


.servicebox4 .closebox{
border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}



.servicebox5{
	 background:url("../images/WhatweCanDo/Insurance.jpg");
	 background-size:cover; 
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }
 .servicetext5{
	background:rgba(44, 62, 80,0.8);
	padding:2vw;
	margin-top: 7vw !important;
	color:#fff;
	line-height: 2.5;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }


.servicebox5 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox5:hover h4{
  visibility:visible;
 }


.servicebox5 .closebox{
border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}



.servicebox6{
	background:url("../images/WhatweCanDo/Taxi.jpg");
	 background-size:cover; 
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }

 .servicetext6{
	background:rgba(44, 62, 80,0.8);
	padding:1vw;
	margin-top: 4vw !important;
	color:#fff;
	line-height: 2.0;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }


.servicebox6 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox6:hover h4{
  visibility:visible;
 }

.servicebox6 .closebox{
border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}




.servicebox7{
	background:url("../images/WhatweCanDo/1968276.jpg");
	 background-size:cover; 
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }
 

 .servicetext7{
	background:rgba(44, 62, 80,0.8);
	padding:1vw;
	margin-top: 3vw !important;
	color:#fff;
	line-height: 1.5;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }


.servicebox7 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox7:hover h4{
  visibility:visible;
 }


.servicebox7 .closebox{
 border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}



.servicebox8{
	 background:url("../images/WhatweCanDo/3099870.jpg");
	 background-size:cover; 
	height: 300px;
	transform: scale3d(1, 1, 1);
	will-change: transform, opacity, contents;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	border : 1px solid #fff;
	cursor: pointer;
 }
 .servicetext8{
	background:rgba(44, 62, 80,0.8);
	padding:1vw;
	margin-top: 3vw !important;
	color:#fff;
	line-height: 1.5;
	text-align: justify;
	 /*visibility:hidden;*/
	 display:none;
 }



.servicebox8 h4{
	  color:#000;
	  font-family: poppins !important;
	  text-align: center;
	  margin-top: 40%;
	  left:-100px;
	  width: 100%;
	  padding: 10px;
	  border: 0px solid black ;
	  background:rgba(255,255,255,0.8);
	  visibility:hidden;
	  transition: 0.3s ease-in-out;
 }

 .servicebox8:hover h4{
  visibility:visible;
 }

.servicebox8 .closebox{
 border:2px solid #fff;
float: right;
background:#d70606;
color:#fff;
font-size:18px;

transition-duration: 0.2s;
transition-delay: 0.6s;
visibility:hidden;
}




/*====================ACTION Classes==============================*/

.is-expended{
top:0;
left: 0;
right:0;
bottom:0;
inset:0;
z-index:100;
width: 100vw !important;;
height:700px;
cursor: pointer;
} 

.hidden-div{
display: none;
}

/*====================Contact US Page================*/

.contact-caption {
  position: absolute;
  top: 25%;
  left: 8rem;
  z-index: 9;
  transform: translateY(-50%);
  opacity: 0;
  transition: 500ms ease opacity, 500ms ease transform;
  transform: translateY(60px);
}
.contact-caption.current-caption {
  transition-delay: 1000ms;
  opacity: 1;
  transform: translateY(0);
}
.contact-caption.previous-caption {
  transform: translateY(-60px);
}
.contact-caption .caption-heading {
  transition: 500ms ease-in all;
}
.contact-caption .caption-heading h1 {
  font-size: 2rem;
  margin-bottom: 1.0rem;
  text-transform: uppercase;
  text-indent: -0.2rem;
  font-weight: 300;
  color:#d70606;
  background:#fff;
  padding:5px;

 
}
.contact-caption .caption-subhead {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 4px;
  word-spacing: 0.1rem;
  margin-bottom: 2.5rem;
  display: block;
  text-decoration: underline;
}
.contact-caption a.btn {
  color: #333;
  font-size: 0.8rem;
  text-decoration: none;
  background-color: white;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  position: relative;
  z-index: 9;
  transition: 250ms ease-in background-color, 500ms ease-in color;
}
.contact-caption a.btn:hover {
  background-color: #EAB543;
  color: white;
}

.contact-container {
  width: 100%;
  height: 80vh;
  background-color: #8395a7;
  display: flex;
  position: relative;
}

.left-col, .right-col {
  width: 100%;
  box-sizing: border-box;
  height: calc(100% - 4rem);
  overflow: hidden;
}

.left-col {
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  margin: 2rem;
  position: relative;
}
.left-col .slide {
  position: absolute;
  width: 100%;
  height: 100% !important;
  background-position: left top !important;
  background-size:cover !important;
  background-repeat:no-repeat;
  opacity: 0;
  transition: 1000ms cubic-bezier(1, 0.04, 0.355, 1) transform, 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55) clip-path;
  transform: translateY(-100%);
  z-index: -1;
}
.left-col .slide.previous {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  animation-delay: 1s;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: 3s ease transform;
  will-change: transform;
}
.left-col .slide.previous.change {
  transform: translateY(50%);
}
.left-col .slide.next {
  transform: translateY(-100%);
  z-index: 3;
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
.left-col .slide.current {
  opacity: 1;
  transform: translateY(0) scale(1.0);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.right-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-col .preview {
  max-width: 400px;
}

.contact-nav {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  overflow: hidden;
}
.contact-nav a {
  color: #fafafa;
  font-size: 3rem;
 
}
.contact-nav:hover .slide-up, .contact-nav:hover .slide-down {
  opacity: 0.5;
  transform: translateX(0);
}
.contact-nav .slide-up, .contact-nav .slide-down {
  display: block;
  position: absolute;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: 0.25s ease opacity, 0.25s ease transform;
  z-index: 99;
}
.contact-nav .slide-up:hover, .contact-nav .slide-down:hover {
  opacity: 1;
}
.contact-nav .slide-up a, .contact-nav .slide-down a {
  text-decoration: none;
  font-weight: 300 !important;
}
.contact-nav .slide-up {
  top: 50%;
  left: 0;
  transform: translateX(-100%);
}
.contact-nav .slide-down {
  top: 50%;
  right: 0;
  transform: translateX(100%);
}

/* =================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@300&display=swap');

.ServiceTab{
    height: 350px;
    background: #130f40;
    margin: 1px;
    padding:0;
    color:#fff;
    cursor: pointer;
	border:0px solid red;
   }
 .add_icon{
  color: #ff9f43;
  font-size:150px;
  text-align: center;
 }
#id-2{
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
    overflow: hidden;
}


.rightdiv{
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.8s;
  -moz-transition: -moz-transform 0.8s;
  transition: transform 0.8s;
  text-align: center;
  color: #fff;
  background-color: #130f40;
}
.leftdiv{
  left:-100% ;
  position: absolute;
  top: 0;
  width:100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  background-color:  #130f40;
  transition: transform 0.8s;
  /*-moz-transition: -moz-transform 0.8s;*/
}



.rightdiv h2{
  font-family: Playpen Sans;
}
.rightdiv h5{
  font-family: Playpen Sans;
}
#Contactbtn{
  font-family: Playpen Sans;
  text-decoration: none;
  color:#fff;
  padding:5px;
  font-size:20px;
}
#Contactbtn:hover{
  background:#fff;
  color:#130f40;

}

#Contactbtn2{
  font-family: Playpen Sans;
  text-decoration: none;
  color:#fff;
  padding:5px;
  font-size:20px;
}
#Contactbtn2:hover{
  background:#fff;
  color:#130f40;

}

#Contactbtn3{
  font-family: Playpen Sans;
  text-decoration: none;
  color:#fff;
  padding:5px;
  font-size:20px;
}
#Contactbtn3:hover{
  background:#fff;
  color:#130f40;

}

#id-2:hover .sliderdiv{
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}



.contactforms{
 width: 100%;
  height: 100%;
  position: relative;
}

.info-form{
  background:#8395a7;
  transform: translateX(-120%);
  transition: transform 0.8s;
  /*
  -webkit-transition: -webkit-transform 0.8s;
  -moz-transition: -moz-transform 0.8s;*/
}

.info-form2{
  background:#95afc0;
  position: absolute;
  top: 0;
  width:100%;
  height: 100%;
  left:-150% ;
  transition: all .8s;

}

.info-form3{
  background:#70a1ff;
  position: absolute;
  top: 0;
  width:100%;
  height: 100%;
   left:0 ;
  transition: all .8s;
}

.ajmerdiv{
  border-right: 1px solid #fff;
}

.jaipurdiv{
  border-right: 1px solid #fff;
}

.udapurdiv{
  border-right: 1px solid #fff;
}


/* =======================Blogg Page CSS===============================*/
.blogger_slider{
    height: 600px !important;
   }
   .maintext{
	height: 100%;
	border: 1px solid #d63031;
  }
  .blgimage{
	height: 100px;
	width: 150px;
  }

  /* ============================================*/
  .tabledata{
	border: 0px solid #d63031;
  }
  #datatable{
	display:none;
  }


  /* New Service Page CSS parallax  */
  #main {
	width: 100%;
	padding: 0;
  }
  .content-asset p {
	margin: 0 auto;
  }
  .breadcrumb {
	display: none;
  }
  
  /* Helpers */
  /**************************/
  .margin-top-10 {
	padding-top: 10px;
  }
  .margin-bot-10 {
	padding-bottom: 10px;
  }
  
  /* Typography */
  /**************************/
  #parallax-world-of-ugg h1 {
	font-family: "Oswald", sans-serif;
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	color: black;
	padding: 0;
	margin: 0;
  }
  #parallax-world-of-ugg h2 {
	font-family: "Oswald", sans-serif;
	font-size: 70px;
	letter-spacing: 10px;
	text-align: center;
	color: white;
	font-weight: 400;
	text-transform: uppercase;
	z-index: 10;
	opacity: 0.9;
  }
  #parallax-world-of-ugg h3 {
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	line-height: 0;
	font-weight: 400;
	letter-spacing: 8px;
	text-transform: uppercase;
	color: black;
  }
  #parallax-world-of-ugg p {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
  }
  .first-character {
	font-weight: 400;
	float: left;
	font-size: 84px;
	line-height: 64px;
	padding-top: 4px;
	padding-right: 8px;
	padding-left: 3px;
	font-family: "Source Sans Pro", sans-serif;
  }
  
  .sc {
	color: #3b8595;
  }
  .ny {
	color: #3d3c3a;
  }
  .atw {
	color: #c48660;
  }
  
  /* Section - Title */
  /**************************/
  #parallax-world-of-ugg .title {
	background: white;
	padding: 60px;
	margin: 0 auto;
	text-align: center;
  }
  #parallax-world-of-ugg .title h1 {
	font-size: 35px;
	letter-spacing: 8px;
  }
  
  /* Section - Block */
  /**************************/
  #parallax-world-of-ugg .block {
	background: white;
	padding: 60px;
	width: 820px;
	margin: 0 auto;
	text-align: justify;
  }
  #parallax-world-of-ugg .block-gray {
	background: #f2f2f2;
	padding: 60px;
  }
  #parallax-world-of-ugg .section-overlay-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.7;
  }
  
  /* Section - Parallax */
  /**************************/
  #parallax-world-of-ugg .parallax-one {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/Holidays.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
  }
  #parallax-world-of-ugg .parallax-two {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/1760763.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  #parallax-world-of-ugg .parallax-three {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/850672.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  
  #parallax-world-of-ugg .parallax-four {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/AirTicket.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  
  
  #parallax-world-of-ugg .parallax-five {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/Insurance.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  
  
  #parallax-world-of-ugg .parallax-six {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/Taxi.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  
  #parallax-world-of-ugg .parallax-seven {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/1968276.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  
  
  
  #parallax-world-of-ugg .parallax-eight {
	padding-top: 200px;
	padding-bottom: 200px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../images/WhatweCanDo/3099870.jpg);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  /* Extras */
  /**************************/
  #parallax-world-of-ugg .line-break {
	border-bottom: 1px solid black;
	width: 150px;
	margin: 0 auto;
  }
  
  /* Media Queries */
  /**************************/
  @media screen and (max-width: 959px) and (min-width: 768px) {
	#parallax-world-of-ugg .block {
	  padding: 40px;
	  width: 620px;
	}
  }
  @media screen and (max-width: 767px) {
	#parallax-world-of-ugg .block {
	  padding: 30px;
	  width: 420px;
	}
	#parallax-world-of-ugg h2 {
	  font-size: 30px;
	}
	#parallax-world-of-ugg .block {
	  padding: 30px;
	}
	#parallax-world-of-ugg .parallax-one,
	#parallax-world-of-ugg .parallax-two,
	#parallax-world-of-ugg .parallax-three {
	  padding-top: 100px;
	  padding-bottom: 100px;
	}
  }
  @media screen and (max-width: 479px) {
	#parallax-world-of-ugg .block {
	  padding: 30px 15px;
	  width: 290px;
	}
  }
  

  /* Clock CSS */
  .clock {
	width: 180px;
	height: 180px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px 0 #888;
	box-shadow: 0 0 5px 0 #888;
	border-radius: 100%;
	position: relative;
	perspective: 100px;
	display: inline-block;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
  }
  
  .clock .apm {
	position: absolute;
	top: 50%;
	left: 60%;
	transform: translateY(-50%);
	font-size: 10px;
	opacity: 0.3;
	color: #000;
  }
  
  .needle {
	width: 50%;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: translateY(-50%) rotateZ(-90deg);
	-ms-transform: translateY(-50%) rotateZ(-90deg);
	transform: translateY(-50%) rotateZ(-90deg);
	position: absolute;
	left: 50%;
	top: 50%;
  }
  
  .needle .hours,
  .needle .minutes,
  .needle .seconds {
	display: block;
	position: relative;
  }
  
  .needle .seconds {
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
  }
  
  .needle .minutes {
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
  }
  
  .needle .hours {
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
  }
  
  .needle .hours:empty:before,
  .needle .minutes:empty:before,
  .needle .seconds:empty:before {
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  }
  
  .needle .seconds:empty:after {
	content: "";
	width: 10px;
	height: 10px;
	display: block;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
  }
  
  .needle .hours:empty:before {
	width: 50%;
	background-color: Tomato;
  }
  
  .needle .hours:empty:after {
	background-color: Tomato;
  }
  
  .needle .minutes:empty:before {
	width: 70%;
	background-color: Tomato;
  }
  
  .needle .minutes:empty:after {
	background-color: Tomato;
  }
  
  .needle .seconds:empty:before {
	width: 90%;
	background-color: Tomato;
  }
  
  .needle .seconds:empty:after {
	background-color: Tomato;
  }
  
  .time-number {
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 50%;
  }
  
  .time-number li {
	position: absolute;
	left: 50%;
	top: 0;
	display: block;
	-webkit-transform-origin: bottom center;
	-moz-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	-o-transform-origin: bottom center;
	transform-origin: bottom center;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
  }
  
  .time-number li > span {
	display: block;
	margin-top: 5px;
  }
  
  /* 1 */
  .time-number li:nth-child(1) {
	-webkit-transform: translateX(-50%) rotateZ(30deg);
	-ms-transform: translateX(-50%) rotateZ(30deg);
	transform: translateX(-50%) rotateZ(30deg);
  }
  
  .time-number li:nth-child(1) > span {
	-webkit-transform: rotateZ(-30deg);
	-ms-transform: rotateZ(-30deg);
	transform: rotateZ(-30deg);
  }
  
  /* 2 */
  .time-number li:nth-child(2) {
	-webkit-transform: translateX(-50%) rotateZ(60deg);
	-ms-transform: translateX(-50%) rotateZ(60deg);
	transform: translateX(-50%) rotateZ(60deg);
  }
  
  .time-number li:nth-child(2) > span {
	-webkit-transform: rotateZ(-60deg);
	-ms-transform: rotateZ(-60deg);
	transform: rotateZ(-60deg);
  }
  
  /* 2 */
  .time-number li:nth-child(3) {
	-webkit-transform: translateX(-50%) rotateZ(90deg);
	-ms-transform: translateX(-50%) rotateZ(90deg);
	transform: translateX(-50%) rotateZ(90deg);
  }
  
  .time-number li:nth-child(3) > span {
	-webkit-transform: rotateZ(-90deg);
	-ms-transform: rotateZ(-90deg);
	transform: rotateZ(-90deg);
  }
  
  /* 2 */
  .time-number li:nth-child(4) {
	-webkit-transform: translateX(-50%) rotateZ(120deg);
	-ms-transform: translateX(-50%) rotateZ(120deg);
	transform: translateX(-50%) rotateZ(120deg);
  }
  
  .time-number li:nth-child(4) > span {
	-webkit-transform: rotateZ(-120deg);
	-ms-transform: rotateZ(-120deg);
	transform: rotateZ(-120deg);
  }
  
  /* 2 */
  .time-number li:nth-child(5) {
	-webkit-transform: translateX(-50%) rotateZ(150deg);
	-ms-transform: translateX(-50%) rotateZ(150deg);
	transform: translateX(-50%) rotateZ(150deg);
  }
  
  .time-number li:nth-child(5) > span {
	-webkit-transform: rotateZ(-150deg);
	-ms-transform: rotateZ(-150deg);
	transform: rotateZ(-150deg);
  }
  
  /* 2 */
  .time-number li:nth-child(6) {
	-webkit-transform: translateX(-50%) rotateZ(180deg);
	-ms-transform: translateX(-50%) rotateZ(180deg);
	transform: translateX(-50%) rotateZ(180deg);
  }
  
  .time-number li:nth-child(6) > span {
	-webkit-transform: rotateZ(-180deg);
	-ms-transform: rotateZ(-180deg);
	transform: rotateZ(-180deg);
  }
  
  /* 2 */
  .time-number li:nth-child(7) {
	-webkit-transform: translateX(-50%) rotateZ(210deg);
	-ms-transform: translateX(-50%) rotateZ(210deg);
	transform: translateX(-50%) rotateZ(210deg);
  }
  
  .time-number li:nth-child(7) > span {
	-webkit-transform: rotateZ(-210deg);
	-ms-transform: rotateZ(-210deg);
	transform: rotateZ(-210deg);
  }
  
  /* 2 */
  .time-number li:nth-child(8) {
	-webkit-transform: translateX(-50%) rotateZ(240deg);
	-ms-transform: translateX(-50%) rotateZ(240deg);
	transform: translateX(-50%) rotateZ(240deg);
  }
  
  .time-number li:nth-child(8) > span {
	-webkit-transform: rotateZ(-240deg);
	-ms-transform: rotateZ(-240deg);
	transform: rotateZ(-240deg);
  }
  
  /* 2 */
  .time-number li:nth-child(9) {
	-webkit-transform: translateX(-50%) rotateZ(270deg);
	-ms-transform: translateX(-50%) rotateZ(270deg);
	transform: translateX(-50%) rotateZ(270deg);
  }
  
  .time-number li:nth-child(9) > span {
	-webkit-transform: rotateZ(-270deg);
	-ms-transform: rotateZ(-270deg);
	transform: rotateZ(-270deg);
  }
  
  /* 2 */
  .time-number li:nth-child(10) {
	-webkit-transform: translateX(-50%) rotateZ(300deg);
	-ms-transform: translateX(-50%) rotateZ(300deg);
	transform: translateX(-50%) rotateZ(300deg);
  }
  
  .time-number li:nth-child(10) > span {
	-webkit-transform: rotateZ(-300deg);
	-ms-transform: rotateZ(-300deg);
	transform: rotateZ(-300deg);
  }
  
  /* 2 */
  .time-number li:nth-child(11) {
	-webkit-transform: translateX(-50%) rotateZ(330deg);
	-ms-transform: translateX(-50%) rotateZ(330deg);
	transform: translateX(-50%) rotateZ(330deg);
  }
  
  .time-number li:nth-child(11) > span {
	-webkit-transform: rotateZ(-330deg);
	-ms-transform: rotateZ(-330deg);
	transform: rotateZ(-330deg);
  }
  
  .clock.ui-dodgerblue .seconds:before,
  .clock.ui-dodgerblue .seconds:after,
  .clock.ui-dodgerblue .minutes:before,
  .clock.ui-dodgerblue .hours:before,
  .clock.ui-tomato .seconds:before,
  .clock.ui-tomato .seconds:after,
  .clock.ui-tomato .minutes:before,
  .clock.ui-tomato .hours:before,
  .clock.ui-black .seconds:before,
  .clock.ui-black .seconds:after,
  .clock.ui-black .minutes:before,
  .clock.ui-black .hours:before,
  .clock.ui-awesome .seconds:before,
  .clock.ui-awesome .seconds:after,
  .clock.ui-awesome .minutes:before,
  .clock.ui-awesome .hours:before {
	background-color: #fff;
  }
  
  .clock.ui-banana-yellow .seconds:before,
  .clock.ui-banana-yellow .seconds:after,
  .clock.ui-banana-yellow .minutes:before,
  .clock.ui-banana-yellow .hours:before {
	background-color: #000;
  }
  
  .clock.ui-dodgerblue .apm,
  .clock.ui-tomato .apm,
  .clock.ui-black .apm,
  .clock.ui-awesome .apm {
	color: #fff;
	opacity: 1;
  }
  
  .clock.ui-banana-yellow .apm {
	color: #000;
	opacity: 1;
  }
  
  .clock.ui-dodgerblue {
	background-color: #d63031;
	color: #fff;
  }
  
  .clock.ui-tomato {
	background-color: #d63031;
	color: #fff;
  }
  
  .clock.ui-black {
	background-color: #d63031;
	color: #fff;
  }
  
  .clock.ui-awesome {
	background-color: #ff2052;
	color: #fff;
  }
  
  .clock.ui-banana-yellow {
	background-color: #ffe135;
	color: #000;
  }
  
  .clock.ui-large {
	width: 400px;
	height: 400px;
	font-size: 40px;
  }
  
  .clock.ui-medium {
	width: 180px;
	height: 180px;
  }
  
  .clock.ui-small {
	width: 150px;
	height: 150px;
  }
  /* delete this ClockDiv css */
  .wrapper {
	width: 80%;
	margin: auto;
	text-align: center;
  }
  
  .ClockDiv {
	display: inline-block;
	margin: 10px;
  }
  
  .ClockDiv h4 {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	text-align: center;
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
	padding: 10px;
  }
  