
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

@font-face {
    font-family: 'Segoe UI';
    src: url('../../fonts/segoeui.ttf');
    src: url('../../fonts/segoeuib.ttf');
    src: url('../../fonts/segoeuii.ttf');
}


* {

	margin: 0;
	padding: 0;
	box-sizing: border-box;

}

body {
	
	margin: 0;
	padding: 0;
	background: #fff;

}

	.Header-PhoneNo {

 		float: left; 
 		position: relative; 
 		width: auto; 
 		padding: 1px 0px 0px 5px;
		display: block;

	}

	.Header-Divider {

		float: left; 
		position: relative; 
		width: 1px;  
		padding: 2px 10px 0px 10px; 
		font-size: 12px; 
		color: #ffcc00;
		display: block;
 	
 	}

 	.Header-Whatsapp {

		float: left; 
		position: relative; 
		width: auto; 
		padding: 2px 5px 0px 5px; 
		font-size: 16px;

 	}

 	.Header-FBook {

		float: left; 
		position: relative; 
		width: auto; 
		padding: 2px 0px 0px 0px; 
		font-size: 16px;

 	}

 	.Header-Row1-Col2 {

		float: left; 
		position: relative; 
		width: 50%; 
		height: 100%; 
		padding: 2px 10px 0px 0px; 
		font-family: 'poppins'; 
		font-size: 14px; 
		text-align: right; 
		color: rgba(255,255,255,1);

 	}

 	.Header-Mail-Icon {

		float: right; 
		position: relative; 
		width: auto; 
		padding: 3px 7px 0px 0px; 

 	}

 	.Header-Mail-Txt {

		float: right; 
		position: relative; 
		width: auto; 
		display: block; 		

 	}

header {

	position: fixed;
	top: 25px;
	left: 0;
	padding: 10px 75px 10px 25px;
	width: 100%;
	height: 125px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.6s;
	z-index: 100000;
	border: 0px solid red;
	/*background-color: rgba(225,29,53,0.5);*/
	background-color: rgba(255,255,255,0.7);

}

.logoDiv {

	float: right; 
	position: relative; 
	width: 210px;
	border: 0px solid blue;

}

header .logo {

	float: right;
	position: relative;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.6s;
	width: 500px;
	height: auto;

}

header .Slogo {

	float: right;
	position: relative;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.6s;
	width: 500px;
	height: auto;

}

header nav {

	position: relative;
	top: 0px;

}

header nav ul {

	display: flex;	
	border: 0px solid blue;

}

header nav ul li {

	list-style: none;
	position: relative;
	font-family: 'Poppins', sans-serif; /* , 'Work Sans' */
 	font-weight: 100;
	font-size: 16px;
	border: 0px solid blue;

}

header nav ul li.sub-menu:before {

	content: '\f078';
	font-family: fontAwesome;
	font-size: 10px;
	position: absolute;
	line-height: 50px;
	color: #000;
	right: 5px;

}

header nav ul li.active.sub-menu:before {

	content: '\f077';

}

header nav ul li ul {

	position: absolute;
	left: 0;
	background: rgba(255,255,255,0.9);
	display: none;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    margin:0px;

}

header nav ul li ul a { 

	color: #666;

}

header nav ul li.active ul {

	display: block;
    -webkit-animation: slide-down .6s ease-out;
    -moz-animation: slide-down .6s ease-out;

}


@-webkit-keyframes slide-down {
    0% { opacity: 0; -webkit-transform: translateY(100%); }   
    100% { opacity: 1; -webkit-transform: translateY(0); }
}
@-moz-keyframes slide-down {
    0% { opacity: 0; -moz-transform: translateY(100%); }   
    100% { opacity: 1; -moz-transform: translateY(0); }
}


header nav ul li ul li {

	display: block;
	width: 285px;	/* 250px */

}

header nav ul li a {

	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	color: rgba(0,0,0,1);
	text-decoration: none;
	display: block;

}

header nav ul li a:hover,
header nav ul li a.active

{

	color: rgba(225,29,53,1);
	background: rgba(255,255,255,0.0);
	border-radius: 5px 5px 0px 0px;
	border-top: 0px solid #FEA73D;
  	transition: 0.6s;
 
}

header nav ul li ul li a {

	border-bottom: 1px solid #f1f1f1;

}

header nav ul li ul li a:hover,
header nav ul li ul li a.active

{

	color: #fff;
	background: rgba(225,29,53,0.7);
	border-radius: 0px 0px 0px 0px;
	transition: 0.6s;

}

header.sticky {
 
	padding: 20px 100px 20px 100px;
	background: rgba(255,255,255,0.9);
	top:0px;

}

header.sticky nav {
 
	top: 0px;

}

header.sticky nav ul li.sub-menu:before,
header.sticky .logo,
header.sticky ul li a {

	color: #666;

}

header.sticky ul li a:hover,
header.sticky ul li a.active {

	color: #666;

}

header.sticky nav ul li ul li a:hover,
header.sticky nav ul li ul li a.active

{

	color: #fff;
	background: rgba(225,29,53,0.7);
	border-radius: 0px 0px 0px 0px;
	transition: 0.6s;

}

.menu-toggle {

/*	color: #fff;
	float: right;
	position: relative;
	line-height: 50px;
	font-size: 24px;
	cursor: pointer;
	display: none;
	padding: 0px 0px 0px 0px;
	top: -20px;
*/

	color: #fff;
	float: left;
	position: absolute;
	font-size: 24px;
	cursor: pointer;
	display: none;
	padding: 0px 0px 0px 0px;
	top: 20px;

}

.banner {

	float: left;
	position: relative;
	width: 100%;
	top:125px;
	border: 0px solid blue;

}

.AbtUs_Header_Div {

	float:left; 
	position:relative; 
	width:100%; 
	height:auto; 
	min-height:300px; 
	border:0px solid red; 
	background-image:url('../../Img/AbtUs_HeaderImage.jpg'); 
	background-position:center; 
	background-repeat:no-repeat; 
	background-size:100% auto; 
	top:125px;

}

.AbtUs_Header_Div_Text {

	display:flex; 
	justify-content:center; 
	align-items:center; 
	font-family:'poppins'; 
	font-size:5em; 
	text-align:center; 
	color:rgba(255,255,255,1); 
	height:auto; 
	min-height:300px;

}

.CntUs_Header_Div {

	float:left; 
	position:relative; 
	width:100%; 
	height:auto; 
	min-height:300px; 
	border:0px solid red; 
	background-image:url('../../Img/CntUs_HeaderImage.jpg'); 
	background-position:center; 
	background-repeat:no-repeat; 
	background-size:100% auto; 
	top:125px;

}

.CntUs_Header_Div_Text {

	display:flex; 
	justify-content:center; 
	align-items:center; 
	font-family:'poppins'; 
	font-size:5em; 
	text-align:center; 
	color:rgba(255,255,255,1); 
	height:auto; 
	min-height:300px;

}

 .HeaderBGRow {
     
    float:left;
    position:relative;
    width:94%;
    margin-left:3%;
    margin-right:3%;
    border-radius:5px 5px 0px 0px;
    border:0px solid #F7C11D;
    height:auto;
    margin-top:0px;
    padding-top:50px;
    padding-bottom: 50px;
		padding-left:100px;
		padding-right:100px;
		font-family:"Segoe UI";
    font-size:32px;
    text-align:left;
		top:125px;	
	
 }

	 .IconInfo {

		font-size:36px; 
		color:rgba(254,167,61,0.7);

	 }

	 .HeaderTxt {

		float:left;
		position:relative;
		width:100%;
		text-align:center;
		font-size:56px;
		background-image: url(Img/TxtBG.png);
		background-repeat: no-repeat;
		background-position: center;
		border: 0px solid blue; 

	 }


	 	.HeaderText_Align {

	 		padding:50px 0px 50px 0px;
	 	
	 	}

	 .ProfileMainDiv {

			float:left; 
			position:relative; 
			width:100%; 
			padding:20px 20px 75px 20px; 
			top:125px; 
			border:0px solid red;

	 }

	 .ProfileMainDiv_1stProfile {

			float:left; 
			position:relative; 
			width:40%; 
			min-height: 770px; 
			margin:0px 2% 0px 8%; 
			padding:20px; 
			border:1px solid #f1f1f1;

 	 }

	 .ProfileMainDiv_2ndProfile {

			float:left; 
			position:relative; 
			width:40%; 
			min-height: 770px; 
			margin:0px 8% 0px 2%; 
			padding:20px; 
			border:1px solid #f1f1f1;

 		}

	 .ProfileMainDiv_HeaderText {

			font-family:'poppins'; 
			font-size:2em; 
			text-align:center; 
			padding: 20px;

 		}

 				 .ProfileMainDiv_SubHeaderText {

						color:#E12038; 
						font-size: 0.5em;

 				 }
 				 	
	 .ProfileMainDiv_Text {

			font-family:'poppins'; 
			font-size: 0.9em; 
			text-align: justify;

 		}


	 .ContactUsDiv {

			float:left; 
			position:relative; 
			width:100%; 
			padding:100px; 
			top:125px; 
			border:0px solid #f1f1f1;

	 }

	 .AddressDiv {

			float:left; 
			position:relative; 
			width:40%; 
			height: 550px;
			margin:0px 0% 0px 0%; 
			padding:20px; 
			border:1px solid #f1f1f1;
			border-radius: 10px 0px 0px 10px;

 	 }

 	 			 .AddressDiv_Header {

			 	 	font-family:'poppins'; 
			 	 	font-size: 3em; 
			 	 	color: rgba(33, 33, 33, 0.7);

			 	 } 

 	 			 .AddressDiv_CName {

					font-family:'poppins'; 
					font-size: 1.5em; 
					color:#E12038; 
					padding:0px 0px 0px 5px; 
					margin-bottom: 30px;

 				 }

 				 .mbottom {

 					margin-bottom:30px;

 				 }

 				 .AddressDiv_SubHeading {

					font-family:'poppins'; 
					font-size: 1.2em; 
					color:rgba(33, 33, 33, 1); 
					padding:0px 0px 0px 5px;

 				 }

 				 .AddressDiv_Details {

					font-family:'poppins'; 
					font-size: 1em; 
					color:rgba(33, 33, 33, 0.6); 
					padding:0px 0px 0px 5px;

 				 }

 				 .AddressDiv_FUs {

					font-family:'poppins'; 
					font-size: 3em; 
					padding:0px 0px 0px 5px;

				 }	

	 .MapDiv {

			float:left; 
			position:relative; 
			width:60%; 
			height: 550px;
			margin:0px 0% 0px 0%; 
			padding:0px; 
			border:0px solid #f1f1f1;

 		}


	 .MegaMenuLeft {

		float: left;
		position: absolute;
	    border-top: 2px solid rgba(225,29,53,1);

	 }

	 .MegaMenuRight {

		float: right;
		position: absolute;
		margin-left: 285px;
	   	border-top: 2px solid rgba(225,29,53,1);

	 }

/* Index Page Start From Here */

	.PGraph { 

		line-height: 10px; 
		color:rgba(225,29,53, 1); 
		font-size: 38px;

	}

	.PGraph1 {

 		color:rgba(12,35,87,1); 
 		padding-bottom: 10px;

	}

/* Index Page Ends Here */

/* About Us Page Info Start From Here */

	 .DDetailsAddressRow {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		height: auto; 
 		background-image: url(../../Img/CntBG.png1); 
 		background-repeat: no-repeat; 
 		background-position: center;
	 	background-size: 100%;

	 }

	 .DDetails { 

	 	float:left; 
	 	position:relative; 
	 	width:100%; 
	 	height:auto; 
	 	background-color:rgba(106,138,239, 1);
	 	margin-top:30px; 
	 	margin-bottom:30px; 
	 	padding-top: 50px; 
	 	padding-bottom:30px;

	 }

	 .DDetailsHeader {

	 	float:left; 
	 	position:relative; 
	 	width:100%; 
	 	text-align: center; 
	 	height:75px; 
	 	margin-top:10px; 
	 	font-family:'Segoe UI'; 
	 	font-size:32px; 
	 	color:rgba(255,255,255, 1); 
	 	border:0px solid blue;

	 }

 	 .DDetailsIconInfo {

		font-size:36px; 
		color:rgba(254,167,61,1);

	 }

	 .DDetailsContainerLeft {

 		float:left; 
 		position:relative; 
 		width:40%; 
 		height:420px; 
 		margin-left:10%; 
 		margin-top:0px; 
 		font-family:'Segoe UI'; 
 		font-size:32px; 
 		color:#fff; 
 		text-align:center; 
 		border:0px solid blue;

	 }

	 .DDetailsContainerRight {

 		float:left; 
 		position:relative; 
 		width:40%; 
 		height:420px; 
 		margin-right:10%; 
 		margin-top:0px; 
 		font-family:'Segoe UI'; 
 		font-size:32px; 
 		color:#fff; 
 		text-align:center; 
 		border:0px solid blue;

	 }

	 .DDetails1stRowImg {

		float:left; 
		position:relative; 
		margin-left:auto; 
		margin-right:auto; 
		width:100%;
		height: 0;
		border:0px solid red;

	 }

	 .DDetails2ndRowContent {

 		float: left; 
 		position: relative; 
 		width: 100%;

	 }

	 .DDetailsImgSize {

	 	width: 400px;
	 	height: 400px;
	 	padding-bottom: 5px;
	 	border-radius:100%

	 }

	 .DDetailsContent {

		text-align:justify; 
		padding:0px 75px 0px 75px; 
		color:RGBA(255,255,255, 1); 
		font-family:'Segoe UI'; 
		font-size:16px;

	 }

/* About Us Page Info Ends Here */

/* Footer Row Start From Here */    
	
	 .PageHeader {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		margin-top:-250px; 
 		text-align: center; 
 		text-align:center; 
 		font-family: 'Segoe UI', Verdana, Arial, Helvetica, sans-serif; 
 		font-size:72px; 
 		color:#fff;

	 }	

	 .AddressRow {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		height: 100%; 
 		background-image: url(../../Img/CntBG.png); 
 		background-repeat: no-repeat; 
 		background-position: center;
	 	background-size: 100% auto;

	 }

	 .ContactUsHeaderBGRow  {
	     
	    float:left;
	    position:relative;
	    width:94%;
	    margin-left:3%;
	    margin-right:3%;
	    margin-top: 75px;
	    border-radius:5px 5px 0px 0px;
	    border:0px solid #F7C11D;
	   	background-color: rgba(255,255,255,0.3);	 /*rgba(252,210,25,0.1);*/ 		
	    height:auto;
	    padding:50px 50px 50px 50px;
		font-family:"Segoe UI";
	    font-size:32px;
	    text-align:left;

	 }

    .CntUs_Row {
	
	    float:left;
	    width:100%;
	    height:600px;
        position:relative;
	   /* background-color:rgba(215,0,40,0.8); */
	    background-color:rgba(0,0,0,0.8);
	    padding-bottom:20px;
	    text-align:center;
	    color:#fff;
	    border:0px solid blue;
	    background-image:url(Img/Polygonal1.jpg);
	    background-repeat:no-repeat;
	    background-size:100% auto;
		margin-top:5px;
	
    }

	.CntUs_Header {

        float: left;
		width: 100%;
		height: auto;
        position: relative;
 		text-align: center;
		font-family: "Segoe UI";
		font-size: 58px;
		font-weight: bold;
		color:rgba(246,199,28,0.8);
		padding-top: 50px;
		padding-bottom: 15px;
		border-bottom: 0px #fff dashed;
 		line-height: 40px;
	
	}

	.CntUs_CompanyName {
	
 		font-family:"Segoe UI";
		font-size:38px;
		text-align:center;
		color:#fff;
		padding-left:0px;
		padding-top:15px;
		padding-bottom:5px;	
	
	}
	
	.CntUsAddressRow {
	
	    float:left;
	    width:100%;
	    height:auto;
	    position:relative;
	 	padding-top:30px;
	 	padding-left:0px;
	 	padding-right:0px;
		font-family:"Segoe UI";
		font-size:20px;
		color:#fff;
		text-align:center;
		border:0px solid red;
	 
	}
	
	.CntUsBlankCol {
	    
	    float:left;
	    width:20%;
	    position:relative;
		border:0px solid yellow;
	
	}
	
	.CntUsFirstAddress {
	
	    float:left;
	    width:60%;			/*30%;*/		
	    position:relative;
	    height:auto;
	 	padding-top:0px;
		font-family:"Segoe UI";
		font-size:16px;
		font-weight: 400;
		color:RGB(51,51,51, 0.7);
		text-align:center;
		border:0px solid #f1f1f1;
	 
	}
	
/*	.CntUsSecondAddress {
	
	    float:left;
	    width:30%;
	    position:relative;
	 	padding-top:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:20px;
		color:#fff;
		text-align:center;
		border:0px solid white;
	 
	}
*/

	.CntUsAddressRow1 {
	
	    float:left;
	    width:100%;
	    height:150px;
	    position:relative;
	 	padding-top:5px;
	 	padding-left:0px;
	 	padding-right:0px;
	 	margin-bottom: 50px;
		font-family:"Segoe UI";
		font-size:20px;
		color:#fff;
		text-align:center;
		border-top:0px solid #fff;
	 
	}
	
	.Address1BlankCol {
	    
	    float:left;
	    width:5%;
	    position:relative;
	
	}
	
	.CntUsContactNo {
	
	    float:left;
	    width:25%;
	    position:relative;
	 	padding-top:30px;
		font-family:"Segoe UI";
		font-size:16px;
		color:rgba(51,51,51, 0.7);
		text-align:center;

	}
	
	.CntUsEmail {
	
	    float:left;
	    width:25%;
	    position:relative;
	 	padding-top:30px;
		font-family:"Segoe UI";
		font-size:16px;
		color:rgba(51,51,51, 0.7);
		text-align:center;
	 
	}

	.CntUsSocial {
	
	    float:left;
	    width:25%;
	    position:relative;
	 	padding-top:30px;
		font-family:"Segoe UI";
		font-size:20px;
		color:#fff;
		text-align:center;
	 
	}

	.CntUsIATO {
	
	    float:left;
	    width:15%;
	    position:relative;
	 	padding-top:30px;
		font-family:"Segoe UI";
		font-size:20px;
		color:#fff;
		text-align:center;
	 
	}

	.MapCol {

		float: left;
		width: 100%;
		height: 100%;
		position:relative;
		border:0px solid red;
		text-align:left;
		padding-top:0px;	

	}

 .AboutBottomRow {

	float:left;
	width:100%;
	border-top:0px solid rgba(7,92,187, 0.4);
	/*margin-top:890px;*/
	background-color:rgba(229,238,248, 0.5);
	background-image:url('Img/BlueHeadingBg1.jpg1');
	background-position:center;
	background-size:cover;
	height:100px;
	position:relative;
	padding-top:10px;
	margin-top:0px;

 }

 .BottomRow {

	float:left;
	width:100%;
	border-top:0px solid rgba(7,92,187, 0.4);
	/*margin-top:890px;*/
	background-color:rgba(12,35,87,1);
	background-image:url('Img/BlueHeadingBg1.jpg1');
	background-position:center;
	background-size:cover;
	height:100px;
	position:relative;
	padding-top:10px;
	margin-top:125px;

 }

 .BottomCol1 {

	float:left;
	width:70%;
	position:relative;
	padding-left: 10px;
	padding-top: 30px;
	font-family: 'poppins';
	font-size: 14px;
	color: #ffffff;
	text-align:left;

 }

 .BottomCol2 {

	float:left;
	width:15%;
	position:relative;
	padding-left: 10px;
	padding-top: 30px;
	font-family: 'poppins';
	font-size: 14px;
	color: #ffffff;
	text-align:right;
	vertical-align:top;
	
 }

 .BottomCol3 {

	float:right;
	width:15%;
	position:relative;
	padding-left: 10px;
	padding-top: 10px;
	font-family: 'Roboto';
	font-size: 16px;
	color: #666;
	text-align:center;
	border:0px solid blue;
	z-index:100000;	
 }

 .IATO {

 	float: right; 
 	position: fixed; 
 	width: auto; 
 	right: 30px; 
 	z-index: 1111111111;

 }

 	.IATO_Img {

 		 width:80px; 
 		 height:125px;

 	}

 	.div-glimpses-banner-heading {

		display: flex; 
		width:100%;  
		min-height: 200px; 
		background-image: url('https://delightjourneys.in/Img/hclients.jpg'); 
		background-position: center center; 
		background-repeat: no-repeat; 
		background-size: Cover; 
		color: #fff; 
		font-size:36px; 
		font-family: 'poppins'; 
		justify-content: center; 
		align-items: center;
 
 	}

 	.div-glimpses {

 		float:left; 
 		position:relative; 
 		width:80%; 
 		display:flex; 
 		flex-direction:column; 
 		margin: 0px 10% 100px 10%; 
 		top:175px; 
 		border:0px solid red;

	}

		.div-glimpses-1stcol {

			float:left; 
			position:relative; 
			width:32%; 
			margin: 0px 1% 0px 1%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/North/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}

			.div-glimpses-heading {

				float:left; 
				position:relative; 
				width:100%; 
				text-align: center; 
				margin-top:150px; 
				justify-content: center; 
				align-items: center; 
				font-size:32px; 
				line-height: 40px;
			
			}

		.div-glimpses-2ndCol {
		
			float:left; 
			position:relative; 
			width:32%; 
			margin: 0px 1% 0px 0px; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/South/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}	

		.div-glimpses-3rdCol {

			float:left; 
			position:relative; 
			width:32%; 
			margin: 0px 1% 0px 0px; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Culinary/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height:400px;

		}	

		.div-glimpses-4thCol {

			float:left; 
			position:relative; 
			width:32%; 
			margin: 0px 1% 0px 1%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Bird/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;
		
		}

		.div-glimpses-5thCol {

			float:left; 
			position:relative; 
			width:32%; 
			margin: 0px 1% 0px 0px; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Varanasi/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}

		.div-glimpses-6thCol {

 			float:left; 
 			position:relative; 
 			width:32%; 
 			margin: 0px 1% 0px 0px; 
 			border: 0px solid #333; 
 			background-image: url(../../Img/Glimpses/Holi/1.jpg); 
 			background-position: center center; 
 			background-size: cover; 
 			background-repeat: no-repeat; 
 			justify-content: center; 
 			align-items: center; 
 			color: #fff; 
 			font-family:'poppins'; 
 			min-height:400px;

		}

/* ScrollBar Start */


/* width */

::-webkit-scrollbar {

  width: 2px;

}

/* Track */

::-webkit-scrollbar-track {

  background: #f1f1f1;

}
 
/* Handle */

::-webkit-scrollbar-thumb {

  background: #888; 

}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {

  background: #555; 

}


/* Scrollbar End */

/* Small devices ( phones, 991px and down)*/

@media (max-width: 1200px) {

	.Header-PhoneNo {

 		float: left; 
 		position: relative; 
 		width: auto; 
 		padding: 1px 0px 0px 5px;
		display: none;

	}

	.Header-Divider {

		float: left; 
		position: relative; 
		width: 1px;  
		padding: 2px 10px 0px 10px; 
		font-size: 12px; 
		color: #ffcc00;
		display: none;
 	
 	}

 	.Header-Whatsapp {

		float: left; 
		position: relative; 
		width: auto;
		padding: 3px 5px 0px 6px; 
		font-size: 15px;

 	}

 	.Header-FBook {

		float: left; 
		position: relative; 
		width: auto; 
		padding: 4px 0px 0px 0px; 
		font-size: 14px;

 	}

 	.Header-Mail-Icon {

		float: right; 
		position: relative; 
		width: auto; 
		padding: 3px 0px 0px 0px; 

 	}

 	.Header-Mail-Txt {

		float: right; 
		position: relative; 
		width: auto; 
		display: none; 		

 	}

	header {

		position: fixed;
		top: 25px;
		left: 0;
		padding: 10px 0px 10px 0px;
		width: 100%;
		height: 75px;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: 0.6s;
		z-index: 100000;
		border: 0px solid red;
		/*background-color: rgba(225,29,53,0.5);*/
		background-color: rgba(255,255,255,1);

	}

	.logoDiv {

		float: left; 
		position: relative; 
		width: auto;
		border: 0px solid blue;

	}

	header .logo {

		width: 100%;
		height: auto;
		max-width: 350px;

	}

	header .Slogo {

		width: 100%;
		height: auto;
		max-width: 350px;

	}
	
	.menu-toggle {

		float: right;
		position: relative;
		display: block;
		padding-right: 20px;
		top:0px;
		z-index: 100000;
		color: rgba(12,35,87,1);
	}

	header nav {

		position: absolute;
		width: 100%;
		height: calc(100vh - 50px);
		background: rgba(225,29,53,0.9);
		top: 75px;
		left: -100%;
		transition: 0.5s;
		overflow: auto;
		z-index: 111111111111;

	}

	header nav.active {

		left: 0;

	}
		
	header nav ul {

		display: block;
		text-align: left;

	}

	header nav ul li a {

		color: #fff;
		border-bottom: 1px solid rgba(255,255,255,0.2);

	}

	header nav ul li.active ul {

		position: relative;
		background: #fff;
		overflow: hidden;

	}

	header nav ul li ul li {

		width: 100%;

	}

	header nav ul li a:hover,
	header nav ul li a.active

	{

		color: rgba(255,204,0,1);
		background: rgba(255,255,255,0.0);
		border-radius: 5px 5px 0px 0px;
		border-top: 0px solid #FEA73D;
	  	transition: 0.6s;
	 
	}

	header nav ul li.sub-menu:before {

		content: '\f078';
		font-family: fontAwesome;
		font-size: 10px;
		position: absolute;
		line-height: 50px;
		color: #fff;
		right: 20px;

	}

	header nav ul li.active.sub-menu:before {

		content: '\f077';

	}

	header.sticky .menu-toggle {

		color: #666;

	}

	header.sticky {
	 
		padding: 20px 0px 20px 0px;
		background: rgba(255,255,255,1);
		top:0px;

	}

.banner {

	float: left;
	position: relative;
	width: 100%;
	top:75px;
	border: 0px solid blue;

}

.AbtUs_Header_Div {

	float:left; 
	position:relative; 
	width:100%; 
	height:auto; 
	min-height:300px; 
	border:0px solid red; 
	background-image:url('../../Img/AbtUs_HeaderImage.jpg'); 
	background-position:center; 
	background-repeat:no-repeat; 
	background-size:cover; 
	top:75px;

}

.AbtUs_Header_Div_Text {

	display:flex; 
	justify-content:center; 
	align-items:center; 
	font-family:'poppins'; 
	font-size:2em; 
	text-align:center; 
	color:rgba(255,255,255,1); 
	height:auto; 
	min-height:300px;

}

.CntUs_Header_Div {

	float:left; 
	position:relative; 
	width:100%; 
	height:auto; 
	min-height:300px; 
	border:0px solid red; 
	background-image:url('../../Img/CntUs_HeaderImage.jpg'); 
	background-position:center; 
	background-repeat:no-repeat; 
	background-size:cover; 
	top:75px;

}

.CntUs_Header_Div_Text {

	display:flex; 
	justify-content:center; 
	align-items:center; 
	font-family:'poppins'; 
	font-size:4em; 
	text-align:center; 
	color:rgba(255,255,255,1); 
	height:auto; 
	min-height:300px;

}

	 .HeaderBGRow {
	     
	    float:left;
	    position:relative;
	    width:94%;
	    margin-left:3%;
	    margin-right:3%;
	    border-radius:5px 5px 0px 0px;
	    border:0px solid #F7C11D;
	    height:auto;
	    margin-top:0px;
	    padding-top:50px;
		padding-left:100px;
		padding-right:100px;
		font-family:"Segoe UI";
	    font-size:32px;
	    text-align:left;
		top:75px;	
		
	 }

	 .HeaderBGRow  {
	     
	    float:left;
	    position:relative;
	    width:94%;
	    margin-left:3%;
	    margin-right:3%;
	    border-radius:5px 5px 0px 0px;
	    border:0px solid #F7C11D;
	    background-image:url(Img/txtBG.png1);
	    background-repeat:no-repeat;
	    background-position:center;
	    background-size:200px 200px;
	    height:auto;
	    margin-top:0px;
	    padding-top:30px;
		padding-left:20px;
		padding-right:20px;
		font-size:26px;
	    text-align:left;
		
	 }

	 .IconInfo {

		font-size:26px; 
		color:rgba(254,167,61,0.7);

	 }

	 .HeaderTxt {

		float:left;
		position:relative;
		width:100%;
		text-align:center;
		font-size:26px;"
		background-image: url(Img/TxtBG.jpg);
		background-repeat: no-repeat;
		background-position: center;

	 }

	 	.HeaderText_Align {

	 		font-size:16px; 
	 		text-align:justify; 
	 		color:#666; 
	 		padding:50px 0px 30px 0px;
	 	
	 	}

	 .ProfileMainDiv {

			float:left; 
			position:relative; 
			width:100%; 
			padding:20px; 
			top:75px; 
			border:0px solid red;

	 }

	 .ProfileMainDiv_1stProfile {

			float:left; 
			position:relative; 
			width:46%; 
			min-height: 770px; 
			margin:0px 2% 0px 2%; 
			padding:20px; 
			border:1px solid #f1f1f1;

 	 }

	 .ProfileMainDiv_2ndProfile {

			float:left; 
			position:relative; 
			width:46%; 
			min-height: 770px; 
			margin:0px 2% 0px 2%; 
			padding:20px; 
			border:1px solid #f1f1f1;

 		}

	 .ProfileMainDiv_HeaderText {

			font-family:'poppins'; 
			font-size:2em; 
			text-align:center; 
			padding: 20px;

 		}

 				 .ProfileMainDiv_SubHeaderText {

						color:#E12038; 
						font-size: 0.5em;

 				 }

	 .ProfileMainDiv_Text {

			font-family:'poppins'; 
			font-size: 0.9em; 
			text-align: justify;

 		}

	 .ContactUsDiv {

			float:left; 
			position:relative; 
			width:100%; 
			padding:20px; 
			top:75px; 
			border:0px solid #f1f1f1;

	 }

	 .AddressDiv {

			float:left; 
			position:relative; 
			width:50%; 
			height: 550px;
			margin:0px 0% 0px 0%; 
			padding:20px; 
			border:1px solid #f1f1f1;
			border-radius: 10px 0px 0px 10px;

 	 }

 	 			 .AddressDiv_Header {

			 	 	font-family:'poppins'; 
			 	 	font-size: 3em; 
			 	 	color: rgba(33, 33, 33, 0.7);

			 	 } 

 	 			 .AddressDiv_CName {

					font-family:'poppins'; 
					font-size: 1.5em; 
					color:#E12038; 
					padding:0px 0px 0px 5px; 
					margin-bottom: 30px;

 				 }

 				 .mbottom {

 					margin-bottom:30px;

 				 }

 				 .AddressDiv_SubHeading {

					font-family:'poppins'; 
					font-size: 1.2em; 
					color:rgba(33, 33, 33, 1); 
					padding:0px 0px 0px 5px;

 				 }

 				 .AddressDiv_Details {

					font-family:'poppins'; 
					font-size: 1em; 
					color:rgba(33, 33, 33, 0.6); 
					padding:0px 0px 0px 5px;

 				 }

 				 .AddressDiv_FUs {

					font-family:'poppins'; 
					font-size: 3em; 
					padding:0px 0px 0px 5px;

				 }	

	 .MapDiv {

			float:left; 
			position:relative; 
			width:50%; 
			height: 550px;
			margin:0px 0% 0px 0%; 
			padding:0px; 
			border:0px solid #f1f1f1;

 		}

	 .MegaMenuLeft {

		float: left;
		position: absolute;
	    border-top: 0px solid rgba(12,35,87,1);

	 }


/* Index Page Start From Here */

	.PGraph { 

		line-height: 25px; 
		color:rgba(225,29,53, 1); 
		font-size: 26px;

	}

	.PGraph1 {

 		color:rgba(12,35,87,1); 
 		padding-bottom: 10px;

	}

/* Index Page Ends Here */

/* About Us Page Info Start From Here */

	 .DDetailsAddressRow {

		float: left; 
 		position: relative; 
 		width: 100%; 
 		height: 800px; 
 		background-image: url(../../Img/CntBG.png1); 
 		background-repeat: no-repeat; 
 		background-position: center;
	 	background-size: 100%;

	 }

	 .DDetails { 

	 	float:left; 
	 	position:relative; 
	 	width:100%; 
	 	height:auto; 
	 	background-color:rgba(106,138,239, 1);
	 	margin-top:30px; 
	 	margin-bottom:30px; 
	 	padding-top: 20px; 
	 	padding-bottom:30px;

	 }

	 .DDetailsHeader {

	 	float:left; 
	 	position:relative; 
	 	width:100%; 
	 	text-align: center; 
	 	height:75px; 
	 	margin-top:10px; 
	 	margin-bottom: 30px;
	 	font-family:'Segoe UI'; 
	 	font-size:32px; 
	 	color:rgba(255,255,255, 1); 
	 	border:0px solid blue;

	 }

 	 .DDetailsIconInfo {

		font-size:36px; 
		color:rgba(254,167,61,1);

	 }

	 .DDetailsContainerLeft {

 		float:left; 
 		position:relative; 
 		width:100%; 
 		height:auto; 
 		margin-left:0%; 
 		margin-top:0px; 
 		margin-bottom: 30px;
 		font-family:'Segoe UI'; 
 		font-size:32px; 
 		color:#fff; 
 		text-align:center; 
 		border:0px solid blue;

	 }

	 .DDetailsContainerRight {

 		float:left; 
 		position:relative; 
 		width:100%; 
 		height:auto; 
 		margin-right:0%; 
 		margin-top:0px; 
 		font-family:'Segoe UI'; 
 		font-size:32px; 
 		color:#fff; 
 		text-align:center; 
 		border:0px solid blue;

	 }

	 .DDetails1stRowImg {

		float:left; 
		position:relative; 
		margin-left:auto; 
		margin-right:auto; 
		width:100%;
		height: 0;
		border:0px solid red;

	 }

	 .DDetails2ndRowContent {

 		float: left; 
 		position: relative; 
 		width: 100%;

	 }

	 .DDetailsImgSize {

	 	width: 200px;
	 	height: 200px;
	 	padding-bottom: 5px;
	 	border-radius:100%

	 }

	.DDetailsContent {

		text-align:justify; 
		padding:0px 25px 0px 25px; 
		color:RGBA(255,255,255, 1); 
		font-family:'Segoe UI'; 
		font-size:16px;

	 }

/* About Us Page Info Ends Here */

/* Footer Row Start From Here */    

	 .PageHeader {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		margin-top:-75px; 
 		text-align: center; 
 		text-align:center; 
 		font-family: 'Segoe UI', Verdana, Arial, Helvetica, sans-serif; 
 		font-size:24px; 
 		color:#fff;

	 }	

	 .AddressRow {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		height: 900px; 
 		background-image: url(../../Img/CntBG.png); 
 		background-repeat: no-repeat; 
 		background-position: center;
	 	background-size: 100% auto;

	 }

	 .ContactUsHeaderBGRow  {
	     
	    float:left;
	    position:relative;
	    width:96%;
	    height:auto;
	    margin-left:2%;
	    margin-right:2%;
	    margin-top: 25px;
	    border-radius:5px 5px 0px 0px;
	   	background-color: rgba(255,255,255,0.3);	 /*rgba(252,210,25,0.1);*/ 		
	    padding:10px 10px 10px 10px;
		font-family:"Segoe UI";
	    font-size:32px;
	    text-align:left;
	    border:0px solid #F7C11D;
		
	 }

    .CntUs_Row {
	
	    float:left;
	    width:100%;
	    height:850px;
        position:relative;
	    background-color:rgba(0,0,0,0.8);
	    padding:10px 10px 20px 10px;
	    text-align:center;
	    color:#fff;
	    border:0px solid blue;
	    background-image:url(Img/Polygonal1.jpg);
	    background-repeat:no-repeat;
	    background-size:100% auto;
		margin-top:0px;
	
    }

	.CntUs_Header {

        float: left;
		width: 100%;
		height: auto;
        position: relative;
 		text-align: center;
		font-family: calibri,verdana;
		font-size: 48px;
		font-weight: bold;
		color:rgba(246,199,28,0.8);
		padding-top: 50px;
		padding-bottom: 15px;
		border-bottom: 0px #fff dashed;
 		line-height: 40px;
	
	}

	.CntUs_CompanyName {
	
	    float:left;
	    width:100%;
	    height:auto;
        position:relative;
 		font-family:calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:28px;
		text-align:center;
		color:#fff;
		padding-left:0px;
		padding-top:15px;
		padding-bottom:5px;	
	
	}
	
	.CntUsAddressRow {
	
	    float:left;
	    width:100%;
	    height:auto;
	    position:relative;
	 	padding-top:30px;
	 	padding-left:0px;
	 	padding-right:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
		border:0px solid yellow;
	 
	}
	
	.CntUsBlankCol {
	    
	    float:left;
	    width:0%;
	    position:relative;
		border:0px solid yellow;
	
	}
	
	.CntUsFirstAddress {
	
	    float:left;
	    width:100%;
	    position:relative;
	    height:auto;
	 	padding:0px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:RGB(51,51,51, 0.7);
		text-align:center;
		border:0px solid #f1f1f1;
	 
	}
	
	.CntUsSecondAddress {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding-top:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
		border:0px solid white;
	 
	}

	.CntUsAddressRow1 {
	
	    float:left;
	    width:100%;
	    height:150px;
	    position:relative;
	 	padding-top:5px;
	 	padding-left:0px;
	 	padding-right:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
		border-top:0px solid #fff;
	 
	}
	
	.Address1BlankCol {
	    
	    float:left;
	    width:0%;
	    position:relative;
	
	}
	
	.CntUsContactNo {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding:5px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:RGB(51,51,51, 0.7);
		text-align:center;
	 
	}
	
	.CntUsEmail {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding:5px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:RGB(51,51,51, 0.7);
		text-align:center;
	 
	}

	.CntUsSocial {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding:5px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
	 
	}

	.CntUsIATO {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding-top:10px;
		font-family:"Segoe UI";
		font-size:20px;
		color:#fff;
		text-align:center;
		border:0px solid blue; 

	}

	.MapCol {

		float: left;
		position:relative;
		width: 100%;
		height: 100%;
		text-align:left;
		padding-top:0px;	
		border:0px solid red;

	}

	.BottomRow {
	
		float:left;
		width:100%;
		border:0px solid blue;
		background-image:url('Img/BlueHeadingBg1.jpg');
		background-position:center;
		background-size:cover;
		height:130px;
		position:relative;
		padding-top:0px;
		padding-bottom:0px;
		margin-top: 100px;
	
	}

	.BottomCol1 {
	
		float:left;
		width:100%;
		position:relative;
		padding-left: 0px;
		padding-top: 10px;
		font-family: 'poppins';
		font-size: 14px;
		color: #fff;
		text-align:center;
	
	}

	.BottomCol2 {
	
		float:left;
		width:100%;
		position:relative;
		padding-left: 0px;
		padding-top: 10px;
		font-family: 'poppins';
		font-size: 14px;
		color: #fff;
		text-align:center;
		
	}

	.BottomCol3 {
	
		float:left;
		width:100%;
		position:relative;
		padding-left: 0px;
		padding-top: 10px;
		font-family: 'Roboto';
		font-size: 16px;
		color: #999;
		text-align:center;
		border:0px solid blue;
		background-color:none;
			
	}

 .IATO {

 	float: right; 
 	position: fixed; 
 	width: auto; 
 	right: 0px; 
 	z-index: 1111111111;

 }

 	.IATO_Img {

 		 width:80px; 
 		 height:125px;

 	}

 	.div-glimpses-banner-heading {

		display: flex; 
		width:100%;  
		min-height: 200px; 
		background-image: url('https://delightjourneys.in/Img/hclients.jpg'); 
		background-position: center center; 
		background-repeat: no-repeat; 
		background-size: Cover; 
		color: #fff; 
		font-size:24px; 
		font-family: 'poppins'; 
		justify-content: center; 
		align-items: center;
 
 	}

 	.div-glimpses {

 		float:left; 
 		position:relative; 
 		width:80%; 
 		display:flex; 
 		flex-direction:column; 
 		margin: 0px 10% 100px 10%; 
 		top:125px; 
 		border:0px solid red;

	}

		.div-glimpses-1stcol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/North/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}

			.div-glimpses-heading {

				float:left; 
				position:relative; 
				width:100%; 
				text-align: center; 
				margin-top:150px; 
				justify-content: center; 
				align-items: center; 
				font-size:32px; 
				line-height: 40px;
			
			}

		.div-glimpses-2ndCol {
		
			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/South/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}	

		.div-glimpses-3rdCol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Culinary/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height:400px;

		}	

		.div-glimpses-4thCol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Bird/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;
		
		}

		.div-glimpses-5thCol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Varanasi/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}

		.div-glimpses-6thCol {

 			float:left; 
 			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
 			border: 0px solid #333; 
 			background-image: url(../../Img/Glimpses/Holi/1.jpg); 
 			background-position: center center; 
 			background-size: cover; 
 			background-repeat: no-repeat; 
 			justify-content: center; 
 			align-items: center; 
 			color: #fff; 
 			font-family:'poppins'; 
 			min-height:400px;

		}

/* ScrollBar Start */


/* width */

::-webkit-scrollbar {

  width: 5px;

}

/* Track */

::-webkit-scrollbar-track {

  background: #f1f1f1;

}
 
/* Handle */

::-webkit-scrollbar-thumb {

  background: #888; 

}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {

  background: #555; 

}


/* Scrollbar End */


}

/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {

	.Header-PhoneNo {

 		float: left; 
 		position: relative; 
 		width: auto; 
 		padding: 1px 0px 0px 5px;
		display: none;

	}

	.Header-Divider {

		float: left; 
		position: relative; 
		width: 1px;  
		padding: 2px 10px 0px 10px; 
		font-size: 12px; 
		color: #ffcc00;
		display: none;
 	
 	}

 	.Header-Whatsapp {

		float: left; 
		position: relative; 
		width: auto;
		padding: 3px 5px 0px 6px; 
		font-size: 15px;

 	}

 	.Header-FBook {

		float: left; 
		position: relative; 
		width: auto; 
		padding: 4px 0px 0px 0px; 
		font-size: 14px;

 	}

 	.Header-Mail-Icon {

		float: right; 
		position: relative; 
		width: auto; 
		padding: 3px 0px 0px 0px; 

 	}

 	.Header-Mail-Txt {

		float: right; 
		position: relative; 
		width: auto; 
		display: none; 		

 	}

	header {

		position: fixed;
		top: 25px;
		left: 0;
		padding: 10px 0px 10px 0px;
		width: 100%;
		height: 75px;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: 0.6s;
		z-index: 100000;
		border: 0px solid red;
		/*background-color: rgba(225,29,53,0.5);*/
		background-color: rgba(255,255,255,1);

	}

	.logoDiv {

		float: left; 
		position: relative; 
		width: auto;
		border: 0px solid blue;

	}

	header .logo {

		width: 100%;
		height: auto;
		max-width: 350px;

	}

	header .Slogo {

		width: 100%;
		height: auto;
		max-width: 350px;

	}

	.menu-toggle {

		float: right;
		position: relative;
		display: block;
		padding-right: 20px;
		top:0px;
		z-index: 100000;
		color: rgba(12,35,87,1);
	}

	header nav {

		position: absolute;
		width: 100%;
		height: calc(100vh - 75px);
		background: rgba(225,29,53,0.9);
		top: 75px;
		left: -100%;
		transition: 0.5s;
		overflow: auto;
		z-index: 111111111111;

	}

	header nav.active {

		left: 0px;
		top: 75px;

	}
		
	header nav ul {

		display: block;
		text-align: left;

	}

	header nav ul li a {

		color: #fff;
		border-bottom: 1px solid rgba(255,255,255,0.2);

	}

	header nav ul li.active ul {

		position: relative;
		background: #fff;
		overflow: hidden;

	}

	header nav ul li ul li {

		width: 100%;
		
	}

	header nav ul li a:hover,
	header nav ul li a.active

	{

		color: rgba(255,204,0,1);
		background: rgba(255,255,255,0.0);
		border-radius: 5px 5px 0px 0px;
		border-top: 0px solid #FEA73D;
	  	transition: 0.6s;
	 
	}

	header nav ul li.sub-menu:before {

		content: '\f078';
		font-family: fontAwesome;
		font-size: 10px;
		position: absolute;
		line-height: 50px;
		color: #fff;
		right: 20px;

	}

	header nav ul li.active.sub-menu:before {

		content: '\f077';

	}

	header.sticky .menu-toggle {

		color: #666;

	}

	header.sticky {
	 
		padding: 20px 0px 20px 0px;
		background: rgba(255,255,255,1);
		top:0px;

	}

	header.sticky nav {
	 
		top: 75px;

	}

header.sticky nav ul li.sub-menu:before,
header.sticky .logo,
header.sticky ul li a {

	color: #fff;

}

header.sticky ul li a:hover,
header.sticky ul li a.active {

	color: #fff;

}

header.sticky nav ul li ul li a:hover,
header.sticky nav ul li ul li a.active

{

	color: #fff;
	background: rgba(225,29,53,0.7);
	border-radius: 0px 0px 0px 0px;
	transition: 0.6s;

}

.banner {

	float: left;
	position: relative;
	width: 100%;
	top:75px;
	border: 0px solid blue;

}

.AbtUs_Header_Div {

	float:left; 
	position:relative; 
	width:100%; 
	height:auto; 
	min-height:300px; 
	border:0px solid red; 
	background-image:url('../../Img/AbtUs_HeaderImage.jpg'); 
	background-position:center; 
	background-repeat:no-repeat; 
	background-size:cover; 
	top:75px;

}

.AbtUs_Header_Div_Text {

	display:flex; 
	justify-content:center; 
	align-items:center; 
	font-family:'poppins'; 
	font-size:2em; 
	text-align:center; 
	color:rgba(255,255,255,1); 
	height:auto; 
	min-height:300px;

}

.CntUs_Header_Div {

	float:left; 
	position:relative; 
	width:100%; 
	height:auto; 
	min-height:300px; 
	border:0px solid red; 
	background-image:url('../../Img/CntUs_HeaderImage.jpg'); 
	background-position:center; 
	background-repeat:no-repeat; 
	background-size:cover; 
	top:75px;

}

.CntUs_Header_Div_Text {

	display:flex; 
	justify-content:center; 
	align-items:center; 
	font-family:'poppins'; 
	font-size:3em; 
	text-align:center; 
	color:rgba(255,255,255,1); 
	height:auto; 
	min-height:300px;

}

	 .HeaderBGRow {
	     
	    float:left;
	    position:relative;
	    width:94%;
	    margin-left:3%;
	    margin-right:3%;
	    border-radius:5px 5px 0px 0px;
	    border:0px solid #F7C11D;
	    height:auto;
	    margin-top:0px;
	    padding-top:50px;
		padding-left:100px;
		padding-right:100px;
		padding-bottom: 30px;
		font-family:"Segoe UI";
	    font-size:32px;
	    text-align:left;
		top:75px;	
		
	 }

	 .HeaderBGRow  {
	     
	    float:left;
	    position:relative;
	    width:94%;
	    margin-left:3%;
	    margin-right:3%;
	    border-radius:5px 5px 0px 0px;
	    border:0px solid #F7C11D;
	    background-image:url(Img/txtBG.png1);
	    background-repeat:no-repeat;
	    background-position:center;
	    background-size:200px 200px;
	    height:auto;
	    margin-top:0px;
	    padding-top:30px;
		padding-left:20px;
		padding-right:20px;
		font-size:26px;
	    text-align:left;
		
	 }

	 .IconInfo {

		font-size:26px; 
		color:rgba(254,167,61,0.7);

	 }

	 .HeaderTxt {

		float:left;
		position:relative;
		width:100%;
		text-align:center;
		font-size:26px;
		background-image: url(Img/TxtBG.jpg);
		background-repeat: no-repeat;
		background-position: center;

	 }

	 	.HeaderText_Align {

	 		font-size:1em; 
	 		text-align:justify; 
	 		color:#666; 
	 		padding:50px 0px 30px 0px;
	 	
	 	}

	 .ProfileMainDiv {

			float:left; 
			position:relative; 
			width:100%; 
			padding:20px; 
			top:75px; 
			border:0px solid red;

	 }

	 .ProfileMainDiv_1stProfile {

			float:left; 
			position:relative; 
			width:96%; 
			min-height: auto; 
			margin:0px 2% 20px 2%; 
			padding:20px; 
			border:1px solid #f1f1f1;

 	 }

	 .ProfileMainDiv_2ndProfile {

			float:left; 
			position:relative; 
			width:96%; 
			min-height: auto; 
			margin:0px 2% 20px 2%; 
			padding:20px; 
			border:1px solid #f1f1f1;

 		}

	 .ProfileMainDiv_HeaderText {

			font-family:'poppins'; 
			font-size:1.1em; 
			text-align:center; 
			padding: 20px;

 		}

 				 .ProfileMainDiv_SubHeaderText {

						color:#E12038; 
						font-size: 0.8em;

 				 }

	 .ProfileMainDiv_Text {

			font-family:'poppins'; 
			font-size: 0.8em; 
			text-align: justify;

 		}

	 .ContactUsDiv {

			float:left; 
			position:relative; 
			width:100%; 
			padding:10px; 
			top:75px; 
			border:0px solid #f1f1f1;

	 }

	 .AddressDiv {

			float:left; 
			position:relative; 
			width:100%; 
			height: auto;
			margin:0px 0% 0px 0%; 
			padding:10px; 
			border:1px solid #f1f1f1;
			border-radius: 10px 10px 0px 0px;

 	 }

 	 			 .AddressDiv_Header {

			 	 	font-family:'poppins'; 
			 	 	font-size: 2em; 
			 	 	color: rgba(33, 33, 33, 0.7);
			 	 	padding: 0px 0px 0px 5px;
			 	 	text-align: center;

			 	 } 

 	 			 .AddressDiv_CName {

					font-family:'poppins'; 
					font-size: 1.2em; 
					color:#E12038; 
					padding:0px 0px 0px 5px; 
					margin-bottom: 30px;
					text-align: center;

 				 }

 				 .mbottom {

 					margin-bottom:20px;

 				 }

 				 .AddressDiv_SubHeading {

					font-family:'poppins'; 
					font-size: 1em; 
					color:rgba(33, 33, 33, 1); 
					padding:0px 0px 0px 0px;
					text-align: center;

 				 }

 				 .AddressDiv_Details {

					font-family:'poppins'; 
					font-size: 0.8em; 
					color:rgba(33, 33, 33, 0.6); 
					padding:0px 0px 0px 0px;
					text-align: center;
 				 }

 				 .AddressDiv_FUs {

					font-family:'poppins'; 
					font-size: 3em; 
					padding:0px 0px 0px 0px;
					text-align: center;

				 }	

	 .MapDiv {

			float:left; 
			position:relative; 
			width:100%; 
			height: auto;
			margin:0px 0% 0px 0%; 
			padding:0px; 
			border:0px solid #f1f1f1;

 		}

	 .MegaMenuLeft {

		float: left;
		position: absolute;
	    border-top: 0px solid rgba(12,35,87,1);

	 }


/* Index Page Start From Here */

	.PGraph { 

		line-height: 20px; 
		color:rgba(225,29,53,1); 
		font-size: 26px;

	}

	.PGraph1 {

 		color:rgba(12,35,87,1); 
 		padding-bottom: 10px;
 		
	}

/* Index Page Ends Here */

/* About Us Page Info Start From Here */

	 .DDetailsAddressRow {

		float: left; 
 		position: relative; 
 		width: 100%; 
 		height: 800px; 
 		background-image: url(../../Img/CntBG.png1); 
 		background-repeat: no-repeat; 
 		background-position: center;
	 	background-size: 100%;

	 }

	 .DDetails { 

	 	float:left; 
	 	position:relative; 
	 	width:100%; 
	 	height:auto; 
	 	background-color:rgba(106,138,239, 1);
	 	margin-top:30px; 
	 	margin-bottom:30px; 
	 	padding-top: 20px; 
	 	padding-bottom:30px;

	 }

	 .DDetailsHeader {

	 	float:left; 
	 	position:relative; 
	 	width:100%; 
	 	text-align: center; 
	 	height:75px; 
	 	margin-top:10px; 
	 	margin-bottom: 30px;
	 	font-family:'Segoe UI'; 
	 	font-size:32px; 
	 	color:rgba(255,255,255, 1); 
	 	border:0px solid blue;

	 }

 	 .DDetailsIconInfo {

		font-size:36px; 
		color:rgba(254,167,61,1);

	 }

	 .DDetailsContainerLeft {

 		float:left; 
 		position:relative; 
 		width:100%; 
 		height:auto; 
 		margin-left:0%; 
 		margin-top:0px; 
 		margin-bottom: 30px;
 		font-family:'Segoe UI'; 
 		font-size:32px; 
 		color:#fff; 
 		text-align:center; 
 		border:0px solid blue;

	 }

	 .DDetailsContainerRight {

 		float:left; 
 		position:relative; 
 		width:100%; 
 		height:auto; 
 		margin-right:0%; 
 		margin-top:0px; 
 		font-family:'Segoe UI'; 
 		font-size:32px; 
 		color:#fff; 
 		text-align:center; 
 		border:0px solid blue;

	 }

	 .DDetails1stRowImg {

		float:left; 
		position:relative; 
		margin-left:auto; 
		margin-right:auto; 
		width:100%;
		height: 0;
		border:0px solid red;

	 }

	 .DDetails2ndRowContent {

 		float: left; 
 		position: relative; 
 		width: 100%;

	 }

	 .DDetailsImgSize {

	 	width: 200px;
	 	height: 200px;
	 	padding-bottom: 5px;
	 	border-radius:100%

	 }

	.DDetailsContent {

		text-align:justify; 
		padding:0px 25px 0px 25px; 
		color:RGBA(255,255,255, 1); 
		font-family:'Segoe UI'; 
		font-size:16px;

	 }

/* About Us Page Info Ends Here */

/* Footer Row Start From Here */    

	 .PageHeader {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		margin-top:-75px; 
 		text-align: center; 
 		text-align:center; 
 		font-family: 'Segoe UI', Verdana, Arial, Helvetica, sans-serif; 
 		font-size:24px; 
 		color:#fff;

	 }	

	 .AddressRow {

 		float: left; 
 		position: relative; 
 		width: 100%; 
 		height: 900px; 
 		background-image: url(../../Img/CntBG.png); 
 		background-repeat: no-repeat; 
 		background-position: center;
	 	background-size: 100% auto;

	 }

	 .ContactUsHeaderBGRow  {
	     
	    float:left;
	    position:relative;
	    width:96%;
	    height:auto;
	    margin-left:2%;
	    margin-right:2%;
	    margin-top: 25px;
	    border-radius:5px 5px 0px 0px;
	   	background-color: rgba(255,255,255,0.3);	 /*rgba(252,210,25,0.1);*/ 		
	    padding:10px 10px 10px 10px;
		font-family:"Segoe UI";
	    font-size:32px;
	    text-align:left;
	    border:0px solid #F7C11D;
		
	 }

    .CntUs_Row {
	
	    float:left;
	    width:100%;
	    height:850px;
        position:relative;
	    background-color:rgba(0,0,0,0.8);
	    padding:10px 10px 20px 10px;
	    text-align:center;
	    color:#fff;
	    border:0px solid blue;
	    background-image:url(Img/Polygonal1.jpg);
	    background-repeat:no-repeat;
	    background-size:100% auto;
		margin-top:0px;
	
    }

	.CntUs_Header {

        float: left;
		width: 100%;
		height: auto;
        position: relative;
 		text-align: center;
		font-family: calibri,verdana;
		font-size: 48px;
		font-weight: bold;
		color:rgba(246,199,28,0.8);
		padding-top: 50px;
		padding-bottom: 15px;
		border-bottom: 0px #fff dashed;
 		line-height: 40px;
	
	}

	.CntUs_CompanyName {
	
	    float:left;
	    width:100%;
	    height:auto;
        position:relative;
 		font-family:calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:28px;
		text-align:center;
		color:#fff;
		padding-left:0px;
		padding-top:15px;
		padding-bottom:5px;	
	
	}
	
	.CntUsAddressRow {
	
	    float:left;
	    width:100%;
	    height:auto;
	    position:relative;
	 	padding-top:30px;
	 	padding-left:0px;
	 	padding-right:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
		border:0px solid yellow;
	 
	}
	
	.CntUsBlankCol {
	    
	    float:left;
	    width:0%;
	    position:relative;
		border:0px solid yellow;
	
	}
	
	.CntUsFirstAddress {
	
	    float:left;
	    width:100%;
	    position:relative;
	    height:auto;
	 	padding:0px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:RGB(51,51,51, 0.7);
		text-align:center;
		border:0px solid #f1f1f1;
	 
	}
	
	.CntUsSecondAddress {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding-top:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
		border:0px solid white;
	 
	}

	.CntUsAddressRow1 {
	
	    float:left;
	    width:100%;
	    height:150px;
	    position:relative;
	 	padding-top:5px;
	 	padding-left:0px;
	 	padding-right:0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
		border-top:0px solid #fff;
	 
	}
	
	.Address1BlankCol {
	    
	    float:left;
	    width:0%;
	    position:relative;
	
	}
	
	.CntUsContactNo {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding:5px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:RGB(51,51,51, 0.7);
		text-align:center;
	 
	}
	
	.CntUsEmail {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding:5px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:RGB(51,51,51, 0.7);
		text-align:center;
	 
	}

	.CntUsSocial {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding:5px 0px 20px 0px;
		font-family:Calibri,Verdana, Arial, Helvetica, sans-serif;
		font-size:18px;
		color:#fff;
		text-align:center;
	 
	}

	.CntUsIATO {
	
	    float:left;
	    width:100%;
	    position:relative;
	 	padding-top:10px;
		font-family:"Segoe UI";
		font-size:20px;
		color:#fff;
		text-align:center;
		border:0px solid blue; 

	}

	.MapCol {

		float: left;
		position:relative;
		width: 100%;
		height: 100%;
		text-align:left;
		padding-top:0px;	
		border:0px solid red;

	}

	.BottomRow {
	
		float:left;
		width:100%;
		border:0px solid blue;
		background-image:url('Img/BlueHeadingBg1.jpg');
		background-position:center;
		background-size:cover;
		height:130px;
		position:relative;
		padding-top:0px;
		padding-bottom:0px;
		margin-top: 100px;
	
	}

	.BottomCol1 {
	
		float:left;
		width:100%;
		position:relative;
		padding-left: 0px;
		padding-top: 10px;
		font-family: 'Poppins';
		font-size: 14px;
		color: #fff;
		text-align:center;
	
	}

	.BottomCol2 {
	
		float:left;
		width:100%;
		position:relative;
		padding-left: 0px;
		padding-top: 10px;
		font-family: 'Poppins';
		font-size: 14px;
		color: #fff;
		text-align:center;
		
	}

	.BottomCol3 {
	
		float:left;
		width:100%;
		position:relative;
		padding-left: 0px;
		padding-top: 10px;
		font-family: 'Roboto';
		font-size: 16px;
		color: #999;
		text-align:center;
		border:0px solid blue;
		background-color:none;
			
	}

 .IATO {

 	float: right; 
 	position: fixed; 
 	width: auto; 
 	right: 0px; 
 	z-index: 1111111111;

 }

 	.IATO_Img {

 		 width:80px; 
 		 height:125px;

 	}

 	.div-glimpses-banner-heading {

		display: flex; 
		width:100%;  
		min-height: 200px; 
		background-image: url('https://delightjourneys.in/Img/hclients.jpg'); 
		background-position: center center; 
		background-repeat: no-repeat; 
		background-size: Cover; 
		color: #fff; 
		font-size:24px; 
		font-family: 'poppins'; 
		justify-content: center; 
		align-items: center;
 
 	}

 	.div-glimpses {

 		float:left; 
 		position:relative; 
 		width:80%; 
 		display:flex; 
 		flex-direction:column; 
 		margin: 0px 10% 100px 10%; 
 		top:125px; 
 		border:0px solid red;

	}

		.div-glimpses-1stcol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/North/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}

			.div-glimpses-heading {

				float:left; 
				position:relative; 
				width:100%; 
				text-align: center; 
				margin-top:150px; 
				justify-content: center; 
				align-items: center; 
				font-size:32px; 
				line-height: 40px;
			
			}

		.div-glimpses-2ndCol {
		
			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/South/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}	

		.div-glimpses-3rdCol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Culinary/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height:400px;

		}	

		.div-glimpses-4thCol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Bird/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;
		
		}

		.div-glimpses-5thCol {

			float:left; 
			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
			border: 0px solid #333; 
			background-image: url(../../Img/Glimpses/Varanasi/1.jpg); 
			background-position: center center; 
			background-size: cover; 
			background-repeat: no-repeat; 
			justify-content: center; 
			align-items: center; 
			color: #fff; 
			font-family:'poppins'; 
			min-height: 400px;

		}

		.div-glimpses-6thCol {

 			float:left; 
 			position:relative; 
			width:90%; 
			margin: 0px 5% 5% 5%; 
 			border: 0px solid #333; 
 			background-image: url(../../Img/Glimpses/Holi/1.jpg); 
 			background-position: center center; 
 			background-size: cover; 
 			background-repeat: no-repeat; 
 			justify-content: center; 
 			align-items: center; 
 			color: #fff; 
 			font-family:'poppins'; 
 			min-height:400px;

		}


/* ScrollBar Start */


/* width */

::-webkit-scrollbar {

  width: 5px;

}

/* Track */

::-webkit-scrollbar-track {

  background: #f1f1f1;

}
 
/* Handle */

::-webkit-scrollbar-thumb {

  background: #888; 

}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {

  background: #555; 

}


/* Scrollbar End */


}

