#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1.5;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	#cssmenu:after,
	#cssmenu > ul:after {
		content: ".";
		display: block;
		clear: both;
		visibility: hidden;
		line-height: 0;
		height: 0;
	}

	#cssmenu #menu-button {
		display: none;
	}

#cssmenu {
	width: auto;
	line-height: 1;
	float: right;
}

#menu-line {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0px;
	background: #009de0;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

#cssmenu > ul > li {
	float: left;
}

#cssmenu.align-center > ul {
	font-size: 0;
	text-align: center;
}

	#cssmenu.align-center > ul > li {
		display: inline-block;
		float: none;
	}

#cssmenu.align-center ul ul {
	text-align: left;
}

#cssmenu.align-right > ul > li {
	float: right;
}

#cssmenu.align-right ul ul {
	text-align: right;
}

#cssmenu > ul > li > a {
	padding: 1em .5em;
	font-size: 1.2em;
	text-decoration: none;
	text-transform: none;
	font-weight: normal;
	color: #fff;
	margin-left: 10px;
	border-radius: 5px 5px 0 0;
	-webkit-transition: .6s ease-in-out;
	-moz-transition: .6s ease-in-out;
	-ms-transition: .6s ease-in-out;
	-o-transition: .6s ease-in-out;
	transition: .6s ease-in-out;
}

#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
	color: #333;
	background: #fff;
	transition: .6s ease-in-out;
}

#cssmenu > ul > li.has-sub > a {
	padding-right: 25px;
}

	#cssmenu > ul > li.has-sub > a::after {
		position: absolute;
		top: 20px;
		right: 10px;
		width: 7px;
		height: 7px;
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
		content: "";
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: border-color 0.6s ease;
		-moz-transition: border-color 0.6s ease;
		-ms-transition: border-color 0.6s ease;
		-o-transition: border-color 0.6s ease;
		transition: border-color 0.6s ease;
	}

#cssmenu > ul > li.has-sub:hover > a::after {
	border-color: #333;
}

#cssmenu ul ul {
	position: absolute;
	left: -9999px;
	margin-left:10px;
	z-index: 6;
}

#cssmenu li:hover > ul {
	left: auto;
}

#cssmenu.align-right li:hover > ul {
	right: 0;
}

#cssmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}

#cssmenu.align-right ul ul ul {
	margin-left: 0;
	margin-right: 100%;
}

#cssmenu ul ul li {
	height: 0;
	-webkit-transition: height .6s ease;
	-moz-transition: height .6s ease;
	-ms-transition: height .6s ease;
	-o-transition: height .6s ease;
	transition: height .6s ease;
}

#cssmenu ul li:hover > ul > li {
	height: 53px;
}

#cssmenu ul ul li a {
	padding: 20px 20px;
	width: 300px;
	font-size: 1.2em;
	border-top: 1px solid #f83929;
	background: #f84b3c;
	text-decoration: none;
	color: #fff;
	font-weight: normal;
	-webkit-transition: .6s ease-in-out;
	-moz-transition: .6s ease-in-out;
	-ms-transition: .6s ease-in-out;
	-o-transition: .6s ease-in-out;
	transition: .6s ease-in-out;
}

	#cssmenu ul ul li:hover > a,
	#cssmenu ul ul li a:hover {
		color: #fff;
		background: #f83929;
		transition: .6s ease-in-out;
	}

#cssmenu ul ul li.has-sub > a::after {
	position: absolute;
	top: 15px;
	right: 10px;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid #dddddd;
	border-right: 2px solid #dddddd;
	content: "";
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: border-color 0.6s ease;
	-moz-transition: border-color 0.6s ease;
	-ms-transition: border-color 0.6s ease;
	-o-transition: border-color 0.6s ease;
	transition: border-color 0.6s ease;
}

#cssmenu.align-right ul ul li.has-sub > a::after {
	right: auto;
	left: 10px;
	border-bottom: 0;
	border-right: 0;
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
}

#cssmenu ul ul li.has-sub:hover > a::after {
	border-color: #e4e500;
}

@media screen and (max-width:480px), (max-width: 375px), (max-width: 320px), (max-width: 425px) {
	#cssmenu {
		width: 100%;
		padding-top: 0px;
	}

		#cssmenu ul {
			width: 100%;
			display: none;
			position: absolute;
			z-index: 17;
			background: #333;
		}

		#cssmenu.align-center > ul,
		#cssmenu.align-right ul ul {
			text-align: left;
		}

		#cssmenu ul li,
		#cssmenu ul ul li,
		#cssmenu ul li:hover > ul > li {
			width: 100%;
			height: auto;
		}

			#cssmenu ul li a,
			#cssmenu ul ul li a {
				width: 100%;
				padding: 10px 20px !important;
				font-size: 1em;
				border-top: 1px solid #454545;
				font-weight: normal;
				color: #fff;
				margin-left: 0px;
				border-radius: 0px;
				background: #333;
			}

		#cssmenu > ul > li:hover > a,
		#cssmenu > ul > li.active > a {
			color: #fff;
			background: #454545;
		}

		#cssmenu > ul > li,
		#cssmenu.align-center > ul > li,
		#cssmenu.align-right > ul > li {
			float: none;
			display: block;
		}

		#cssmenu ul ul li a {
			padding: 15px 25px;
			font-size: 12px;
			color: #fff;
			font-weight: normal;
			border-top: 1px solid #3f9851;
			background: #409c53;
		}

			#cssmenu ul ul li:hover > a,
			#cssmenu ul ul li a:hover {
				color: #fff;
				background: #3f9851;
			}

		#cssmenu ul ul ul li a {
			padding-left: 40px;
		}

		#cssmenu ul ul,
		#cssmenu ul ul ul {
			position: relative;
			left: 0;
			top: 0;
			box-shadow: 0 0 0 0 #000;
			right: auto;
			width: 100%;
			margin: 0;
		}

			#cssmenu > ul > li.has-sub > a::after,
			#cssmenu ul ul li.has-sub > a::after {
				display: none;
			}

	#menu-line {
		display: none;
	}

	#cssmenu #menu-button {
		display: block;
		padding: 8px;
		color: #fff;
		cursor: pointer;
		font-size: 1.3em;
		font-weight: normal;
		text-transform: uppercase;
	}

		#cssmenu #menu-button::after {
			content: '';
			position: absolute;
			top: -5px;
			right: 20px;
			display: block;
			width: 20px;
			height: 2px;
			background: #fff;
		}

		#cssmenu #menu-button::before {
			content: '';
			position: absolute;
			top: 3px;
			right: 20px;
			display: block;
			width: 20px;
			height: 9px;
			border-top: 2px solid #fff;
			border-bottom: 2px solid #fff;
		}

	#cssmenu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		top: 0;
		display: block;
		border-left: 1px solid rgba(120, 120, 120, 0.15);
		height: 34px;
		width: 40px;
		cursor: pointer;
	}

		#cssmenu .submenu-button::after {
			content: '';
			position: absolute;
			top: 12px;
			left: 20px;
			display: block;
			width: 1px;
			height: 11px;
			background: #fff;
			z-index: 99;
		}

		#cssmenu .submenu-button::before {
			content: '';
			position: absolute;
			left: 15px;
			top: 17px;
			display: block;
			width: 11px;
			height: 1px;
			background: #fff;
			z-index: 99;
		}

		#cssmenu .submenu-button.submenu-opened:after {
			display: none;
		}
}
.cont1 {
	position: relative;
	width: 100%;
}

.image {
	display: block;
	width: 100%;
	height: auto;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: url(../images/camp-bg.html) repeat;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: .5s ease;
}

.cont1:hover .overlay {
	width: 100%;
	left: 0;
}

.text {
	color: #000;
	font-size: 1.2em;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	padding: 10px 20px;
	border-radius: 50px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	white-space: nowrap;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}
.row {
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

footer {
	margin: auto;
	font-size: 14px;
	font-weight: 500;
	background: linear-gradient(90deg, #043281, #3a7dee, #051226);
	text-align: center;
	color: #ddd;
	padding: 10px;
}

	footer ul {
		line-height: 43px;
		list-style: none;
		margin-left: -55px;
		text-align: left;
		margin-bottom: 0px;
	}

		footer ul li a {
			color: #ddd;
			padding: 10px;
			font-weight: normal;
			font-size: 1.05em;
			transition: .8s;
			text-decoration: none;
			list-style: square;
		}

			footer ul li a:hover, footer ul li a:focus {
				color: #fff;
				text-decoration: none;
				transition: .8s;
			}

			footer ul li a:visited, footer ul li a:unvisited {
				color: #fff;
				text-decoration: none;
				transition: .8s;
			}

	footer a {
		color: #ddd;
		font-weight: normal;
		font-size: 1.05em;
		transition: .8s;
		text-decoration: none;
	}

		footer a:hover, footer a:focus {
			color: #fff;
			transition: .8s;
			text-decoration: none;
		}

		footer a:visited, footer a:unvisited {
			color: #fff;
			transition: .8s;
			text-decoration: none;
		}

	footer img {
		padding: 5px;
	}

	footer h4 {
		color: #fff;
		font-weight: bold;
		text-align: left;
	}

	footer address {
		font-size: 1em;
		color: #ddd;
	}

	footer p {
		font-size: 1em;
		color: #ddd;
		text-align: left;
	}
447 to 1319




.pac{ text-decoration:none;}
.pac:hover, .pac:focus{ text-decoration:none;}
.pac1{ text-decoration:none; color:#3c763d;}
.pac1:hover, .pac1:focus{ text-decoration:none; color:#000;}
.pad {
	padding: 5px;
}

.panel-body {
	padding: 0px;
}

.panel-title a {
	text-decoration: none;
}

.form-control {
	font-size: 1.1em; /*padding:0px 10px;*/
}

.form {
	background: #f5f5f5;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 10px;
}

.mship {
	background: url(../images/mship-bg.jpg) no-repeat center fixed;
	background-size: cover;
}
.call{ position:fixed; z-index:5; bottom:10%; text-decoration:none; right:1%}
.call img{ width:50px; height:auto; transition: .5s ease-in-out; transform: scale(.9);}
.call img:hover, .call img:focus{ transition: .5s ease-in-out; transform: scale(1);}
.serve {
	padding-top: 70px;
	padding-left: 0px;
	background: url(../images/serve-bg.png) repeat;
	padding-right: 0px;
	margin-top: 85px;
	text-align: center;
	transition: .5s ease-in-out;
	margin-bottom: 5px;
	border-radius: 5px;
	border: 5px solid #fff;
}

	.serve:hover {
		border: 5px solid #fff;
		transition: .5s ease-in-out;
	}

	.serve h3 {
		text-align: center;
		padding: 30px 2px;
		color: #fff;
		font-weight: bold;
	}

.img {
	position: absolute;
	width: 96%;
	z-index: 1;
	text-align: center;
}

	.img img {
		border: 0px solid #ddd;
		transform: scale(1);
		width: 30%;
		height: auto;
		transition: .8s ease-in-out;
	}

		.img img:hover, .img img:focus {
			border: 0px solid #808080;
			transform: scale(.95);
			transition: .8s ease-in-out;
		}

.serve1 {
	padding-top: 70px;
	padding-left: 0px;
	background: #f84b3c;
	padding-right: 0px;
	margin-top: 85px;
	text-align: center;
	transition: .5s ease-in-out;
	margin-bottom: 5px;
	border-radius: 5px;
	border: 5px solid #fff;
}

	.serve1:hover {
		border: 5px solid #fff;
		transition: .5s ease-in-out;
	}

	.serve1 h3 {
		text-align: center;
		padding: 30px 2px;
		color: #fff;
		font-weight: bold;
	}

.img2 {
	position: absolute;
	width: 96%;
	z-index: 1;
	text-align: center;
}

	.img2 img {
		transform: scale(1);
		box-shadow: 0 0 10px -5px #000;
		border-radius: 50%;
		width: 30%;
		height: auto;
		transition: .8s ease-in-out;
	}

		.img2 img:hover, .img2 img:focus {
			border: 0px solid #808080;
			transform: scale(.95);
			transition: .8s ease-in-out;
		}

.price {
	background: #fff;
	padding: 10px 0px;
}


.pack img {
	width: 100%;
	height: 250px !important;
}

.pack p {
	color: #333;
	padding: 10px 3px;
	background: #f5f5f5;
}

.pack small {
	text-align: center;
	background: #e4a809;
	color: #000;
	font-size: 1.2em;
	font-weight: bold;
	padding: 7px 20px;
	border-radius: 50px 0 0 50px;
	position: absolute;
	top: 20px;
	right: 0px;
	z-index: 1;
}

.pack h3 {
	text-align: center;
	position: absolute;
	bottom: 0px;
	width: 100%;
	font-weight: normal;
	color: #fff;
	background: url(../images/pack-h3-bg.png) repeat;
	margin: auto;
	padding: 5px 5px;
}

.hotel img {
	width: 100%;
	height: 190px !important;
}

.hotel h4 {
	text-align: center;
	position: absolute;
	bottom: 0px;
	width: 100%;
	font-weight: normal;
	color: #fff;
	background: url(../images/pack-h3-bg.png) repeat;
	margin: auto;
	padding: 5px 5px;
}
.link {
	text-align: center;
	background: #f5f5f5;
	/*padding-bottom: 10px;*/
}

	.link p {
		text-align: center;
		color: #333;
		margin-bottom: 0px;
	}

		.link p strong {
			color: #f24439;
			font-size: 1.2em;
		}

.view {
	width: 100%;
	display: inline-block;
	background: #3a7dee;
	transition: .7s ease-in-out;
	text-transform: uppercase;
	color: #fff !important;
	text-decoration: none !important;
	padding: 12px 0px;
	font-size: 1.1em;
	font-weight: normal;
}

	.view:hover, .view:focus {
		background: #2c74ed;
		transition: .7s ease-in-out;
	}

.why {
	padding: 20px 0px;
}

.icon1 {
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: 1s ease-in-out;
}

	.icon1:hover, .icon1:focus {
		border: 1px solid #808080;
		transition: 1s ease-in-out;
	}

	.icon1 img {
		width: 80px;
		height: auto;
	}

	.icon1 h4 {
		text-align: center;
		color: #595959;
		font-weight: normal;
	}

.over {
	background: #f5f5f5;
	box-shadow: 0px 0px 10px -5px #000;
	padding: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.back1 {
	background: #fcfcfc;
	border: 1px solid #ddd;
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.pad3 {
	font-size: 1.5em;
	text-align: center;
}

.pad2 {
	padding: 10px;
	text-align: center;
	font-size: 1.2em;
}

.search {
	background: linear-gradient(90deg, #f84b3c, #f83a2c, #f84b3c);
	padding: 10px;
	margin-bottom: 20px;
	margin-top: 10px;
}

	.search h3 {
		text-align: center;
		color: #fff;
		margin: auto;
		padding: 10px;
		0px;
	}

	.search label {
		color: #fff;
		font-weight: normal;
	}

.top {
	background: #0c2859;
	border-bottom: 3px solid #f84b3c;
}

.top-div {
	background: url(../images/top-div-bg.png) no-repeat center right;
	margin-bottom: 11px;
}

	.top-div p {
		padding: 10px;
		margin-bottom: 0px;
		color: #fff;
		font-size: 1.1em;
		text-align: right;
	}

	.top-div img {
		width: 40px;
		height: auto;
	}

	.top-div a {
		color: #fff;
		font-size: 1.1em;
		text-decoration: none;
	}

		.top-div a:hover, .top-div a:focus {
			text-decoration: none;
			color: #fff;
		}
.scroll-img {
  
  width: 100%;
  height: 150px;
  overflow: hidden;
  font-size: 0;
}

.scroll-img ul li {
  display: inline-block;
  margin: 10px 0 10px 10px;
}
.scroll-img ul li img{ width:210px; height:150px;}
.logo {
	width: 100%;
	padding: 0px;
	height: auto;
}

.icon {
	text-decoration: none;
	color: #ddd;
	font-size: 1.2em;
	padding: 5px;
}

	.icon:hover, .icon:focus {
		text-decoration: none;
		color: #fff;
	}

.pad1 {
	padding: 10px;
}

.btn1 {
	border-radius: 5px;
	color: #333;
	box-shadow: 5px 3px 5px 0px #000;
	font-size: .8em;
	background: #ffb600;
	padding: 10px 20px;
	transform: scale(1);
	transition: .5s ease-in-out;
	border: 1px solid #ffb600;
}

	.btn1:hover, .btn1:focus, .btn1:visited {
		background: #f2af00;
		border: 1px solid #f2af00;
		color: #333;
		transition: .5s ease-in-out;
		transform: scale(1.05);
	}

.btn2 {
	border-radius: 5px;
	color: #fff;
	font-size: .8em;
	background: #333;
	padding: 10px 20px;
	transform: scale(1);
	transition: .5s ease-in-out;
	border: 1px solid #333;
}

	.btn2:hover, .btn2:focus, .btn2:visited {
		background: #222;
		border: 1px solid #222;
		color: #fff;
		transition: .5s ease-in-out;
		transform: scale(1.05);
	}

.btn3 {
	border-radius: 5px;
	color: #fff;
	width: 30%;
	font-size: .8em;
	background: #d20808;
	padding: 10px 20px;
	transform: scale(1);
	transition: .5s ease-in-out;
	border: 1px solid ##d20808;
}

	.btn3:hover, .btn3:focus, .btn3:visited {
		background: #cb0707;
		border: 1px solid #cb0707;
		color: #fff;
		transition: .5s ease-in-out;
		transform: scale(1.05);
	}

.btn4 {
	font-size: 1.5em;
	padding: 10px 25px;
	transform: scale(1);
	transition: .5s ease-in-out;
}

	.btn4:hover, .btn4:focus, .btn4:visited {
		transition: .5s ease-in-out;
		transform: scale(1.01);
	}

.headi {
	text-align: center;
	padding: 20px 5px;
	font-weight: bold;
	background: url(../images/h-bg.png) no-repeat center bottom;
	margin: auto;
	color: #000;
}

.headi1 {
	text-align: center;
	padding: 25px 5px;
	font-weight: bold;
	background: url(../images/h-bg1.html) no-repeat center bottom;
	margin: auto;
	color: #fff;
}

.headi2 {
	text-align: center;
	padding: 20px 5px;
	font-weight: bold;
	font-size: 1.8em;
	background: url(../images/headi2-bg.png) repeat-x center;
	margin-top: 20px;
	color: #e40017;
}

	.headi2 span {
		background: #f5f5f5;
		padding: 8px 15px;
		border-radius: 5px 5px 0 0;
	}

.div-pad {
	padding-top: 15px;
	padding-bottom: 15px;
}

.bg1 {
	background: url(../images/bg3.html) repeat-x;
	padding-top: 10px;
	padding-bottom: 10px;
}

	.bg1 h3 {
		text-align: center;
		color: #000;
		padding: 10px 5px;
	}

.about {
	background: url(../images/about-bnr.jpg) no-repeat bottom;
	background-size: cover;
	min-height: 300px;
}

.pkg {
	background: url(../images/pkg-bnr.html) no-repeat bottom;
	background-size: cover;
	min-height: 350px;
}

p {
	font-size: 1.1em;
	color: #333;
	text-align: justify;
	font-weight: normal;
	padding: 6px;
	line-height: 25px;
}

.anchor {
	display: inline-block;
	text-decoration: none;
	width: 100%;
}

.img1 {
	height: 180px;
	padding: 0px;
	border: 1px solid #ddd;
	border-radius: 3px;
	width:100%;
}
.img1 center{ text-decoration:none; color:#333;}
.breadcrumb {
	background: none;
	margin-top: 130px;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 5px;
}

	.breadcrumb li {
		color: #fff;
		text-decoration: none;
		font-weight: normal;
	}

		.breadcrumb li a {
			color: #fff;
			text-decoration: none;
			font-weight: normal;
		}

	.breadcrumb .active {
		color: #01cd01;
		font-weight: normal;
		font-size: 1em;
	}

	.breadcrumb > li + li:before {
		color: #ddd;
	}

.table-striped {
	width: 100%;
	padding: 5px;
	border: 0px solid #ddd;
}

	.table-striped a {
		text-decoration: none;
	}

	.table-striped th {
		padding: 10px;
		text-align: center;
		font-weight: normal;
		font-size: 1.2em;
		border: 0px solid #ddd;
		color: #333;
		background: #f5f5f5;
	}

	.table-striped td {
		padding: 15px 10px;
		text-align: center;
		font-size: 1.1em;
		color: #333;
		border: 0px solid #ddd;
	}

.bottom {
	text-align: center;
	color: #fff;
	background: none;
	border-top: 1px solid #0f62ed;
	font-size: 1.3rem;
	padding: 10px 5px;
}

	.bottom a {
		color: #333;
		text-decoration: none;
	}

		.bottom a:hover, .bottom a:focus {
			text-decoration: none;
			color: #000;
		}

.add {
	text-align: left;
	font-size: 1em;
	line-height: 35px;
	color: #ddd;
	border-radius: 5px;
}

	.add a {
		color: #ddd;
		text-decoration: none;
	}

		.add a:hover, .add a:focus {
			color: #fff;
		}

.add1 {
	text-align: left;
	line-height: 30px;
	font-size: 1.2em;
	color: #333;
}

	.add1 a {
		color: #333;
		text-decoration: none;
	}

		.add1 a:hover, .add1 a:focus {
			color: #000;
		}
/* The actual timeline (the vertical ruler) */
.timeline {
	position: relative;
	width: 100%;
	margin: 15px auto;
}

	/* The actual timeline (the vertical ruler) */
	.timeline::after {
		content: '';
		position: absolute;
		width: 6px;
		background-color: #ddd;
		top: 0;
		bottom: 0;
		left: 50.4%;
		margin-left: -3px;
	}

/* Container around content */
.cont {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

	/* The circles on the timeline */
	.cont::after {
		content: '';
		position: absolute;
		width: 25px;
		height: 25px;
		right: -17px;
		background-color: white;
		border: 4px solid #ffb800;
		top: 15px;
		border-radius: 50%;
		z-index: 1;
	}

/* Place the container to the left */
.left {
	left: 0;
}

/* Place the container to the right */
.right {
	left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	right: 25px;
	border: medium solid #ddd;
	border-width: 10px 0 10px 15px;
	border-color: transparent transparent transparent #ddd;
}

/* Add arrows to the right container (pointing left) */
.right::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	left: 25px;
	border: medium solid #ddd;
	border-width: 10px 15px 10px 0;
	border-color: transparent #ddd transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
	left: -9px;
}

/* The actual content */
.content {
	padding: 20px 30px;
	background-color: #f5f5f5;
	position: relative;
	border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
	/* Place the timelime to the left */
	.timeline::after {
		left: 28px;
	}

	/* Full-width containers */
	.cont {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

		/* Make sure that all arrows are pointing leftwards */
		.cont::before {
			left: 60px;
			border: medium solid #fff;
			border-width: 10px 10px 10px 0;
			border-color: transparent #fff transparent transparent;
		}

	/* Make sure all circles are at the same spot */
	.left::after, .right::after {
		left: 15px;
	}

	/* Make all right containers behave like the left ones */
	.right {
		left: 0%;
	}
}

@media screen and (max-width: 375px) {
	.top-div p {
		font-size: .8em !important;
		text-align: center;
		padding: 6px;
	}

	.logo {
		width: 100% !important;
		height: auto;
		padding: 0px;
	}

	.img1 {
		height: 120px;
	}

	.bottom a {
		color: #ddd;
		text-decoration: none;
	}

		.bottom a:hover, .bottom a:focus {
			text-decoration: none;
			color: #fff;
		}

	.about {
		background: url(../images/about-bnr.jpg) no-repeat bottom;
		background-size: cover;
		min-height: 140px;
	}

	.breadcrumb {
		background: none;
		font-size: 2rem;
		text-align: center;
		margin-bottom: 5px;
	}

		.breadcrumb li a {
			color: #000;
			font-weight: bold;
			text-decoration: none;
		}

		.breadcrumb .active {
			color: #0d0d0d;
			font-weight: normal;
		}

	.icon1 p {
		font-size: .5em;
	}

	.icon1 {
		padding: 5px;
	}
}

@media screen and (max-width:480px), (max-width: 320px), (max-width: 425px) {
	.logo {
		width: 100% !important;
		height: auto;
		padding: 0px;
	}
.scroll-img ul li img{ width:87% !important; height:150px;}
	.img1 {
		height: 120px;
	}

	.bottom a {
		color: #ddd;
		text-decoration: none;
	}

		.bottom a:hover, .bottom a:focus {
			text-decoration: none;
			color: #fff;
		}

	.about {
		background: url(../images/about-bnr.jpg) no-repeat bottom;
		background-size: cover;
		min-height: 140px;
	}

	.breadcrumb {
		background: none;
		font-size: 2rem;
		text-align: center;
		margin-bottom: 5px;
	}

		.breadcrumb li a {
			color: #000;
			font-weight: bold;
			text-decoration: none;
		}

		.breadcrumb .active {
			color: #0d0d0d;
			font-weight: normal;
		}

	.top-div p {
		font-size: .8em !important;
		text-align: center;
	}

	.icon1 p {
		font-size: .5em;
	}

	.icon1 {
		padding: 5px;
	}
}

.navbar {
	margin-bottom: 0px;
	border-radius: 0px;
}
.pac{ text-decoration:none;}
.pac:hover, .pac:focus{ text-decoration:none;}
.pac1{ text-decoration:none; color:#3c763d;}
.pac1:hover, .pac1:focus{ text-decoration:none; color:#000;}
.pad {
	padding: 5px;
}

.panel-body {
	padding: 0px;
}

.panel-title a {
	text-decoration: none;
}

.form-control {
	font-size: 1.1em; /*padding:0px 10px;*/
}

.form {
	background: #f5f5f5;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 10px;
}

.mship {
	background: url(../images/mship-bg.jpg) no-repeat center fixed;
	background-size: cover;
}
.call{ position:fixed; z-index:5; bottom:10%; text-decoration:none; right:1%}
.call img{ width:50px; height:auto; transition: .5s ease-in-out; transform: scale(.9);}
.call img:hover, .call img:focus{ transition: .5s ease-in-out; transform: scale(1);}
.serve {
	padding-top: 70px;
	padding-left: 0px;
	background: url(../images/serve-bg.png) repeat;
	padding-right: 0px;
	margin-top: 85px;
	text-align: center;
	transition: .5s ease-in-out;
	margin-bottom: 5px;
	border-radius: 5px;
	border: 5px solid #fff;
}

	.serve:hover {
		border: 5px solid #fff;
		transition: .5s ease-in-out;
	}

	.serve h3 {
		text-align: center;
		padding: 30px 2px;
		color: #fff;
		font-weight: bold;
	}

.img {
	position: absolute;
	width: 96%;
	z-index: 1;
	text-align: center;
}

	.img img {
		border: 0px solid #ddd;
		transform: scale(1);
		width: 30%;
		height: auto;
		transition: .8s ease-in-out;
	}

		.img img:hover, .img img:focus {
			border: 0px solid #808080;
			transform: scale(.95);
			transition: .8s ease-in-out;
		}

.serve1 {
	padding-top: 70px;
	padding-left: 0px;
	background: #f84b3c;
	padding-right: 0px;
	margin-top: 85px;
	text-align: center;
	transition: .5s ease-in-out;
	margin-bottom: 5px;
	border-radius: 5px;
	border: 5px solid #fff;
}

	.serve1:hover {
		border: 5px solid #fff;
		transition: .5s ease-in-out;
	}

	.serve1 h3 {
		text-align: center;
		padding: 30px 2px;
		color: #fff;
		font-weight: bold;
	}

.img2 {
	position: absolute;
	width: 96%;
	z-index: 1;
	text-align: center;
}

	.img2 img {
		transform: scale(1);
		box-shadow: 0 0 10px -5px #000;
		border-radius: 50%;
		width: 30%;
		height: auto;
		transition: .8s ease-in-out;
	}

		.img2 img:hover, .img2 img:focus {
			border: 0px solid #808080;
			transform: scale(.95);
			transition: .8s ease-in-out;
		}

.price {
	background: #fff;
	padding: 10px 0px;
}


.pack img {
	width: 100%;
	height: 250px !important;
}

.pack p {
	color: #333;
	padding: 10px 3px;
	background: #f5f5f5;
}

.pack small {
	text-align: center;
	background: #e4a809;
	color: #000;
	font-size: 1.2em;
	font-weight: bold;
	padding: 7px 20px;
	border-radius: 50px 0 0 50px;
	position: absolute;
	top: 20px;
	right: 0px;
	z-index: 1;
}

.pack h3 {
	text-align: center;
	position: absolute;
	bottom: 0px;
	width: 100%;
	font-weight: normal;
	color: #fff;
	background: url(../images/pack-h3-bg.png) repeat;
	margin: auto;
	padding: 5px 5px;
}

.hotel img {
	width: 100%;
	height: 190px !important;
}

.hotel h4 {
	text-align: center;
	position: absolute;
	bottom: 0px;
	width: 100%;
	font-weight: normal;
	color: #fff;
	background: url(../images/pack-h3-bg.png) repeat;
	margin: auto;
	padding: 5px 5px;
}
.link {
	text-align: center;
	background: #f5f5f5;
	/*padding-bottom: 10px;*/
}

	.link p {
		text-align: center;
		color: #333;
		margin-bottom: 0px;
	}

		.link p strong {
			color: #f24439;
			font-size: 1.2em;
		}

.view {
	width: 100%;
	display: inline-block;
	background: #3a7dee;
	transition: .7s ease-in-out;
	text-transform: uppercase;
	color: #fff !important;
	text-decoration: none !important;
	padding: 12px 0px;
	font-size: 1.1em;
	font-weight: normal;
}

	.view:hover, .view:focus {
		background: #2c74ed;
		transition: .7s ease-in-out;
	}

.why {
	padding: 20px 0px;
}

.icon1 {
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: 1s ease-in-out;
}

	.icon1:hover, .icon1:focus {
		border: 1px solid #808080;
		transition: 1s ease-in-out;
	}

	.icon1 img {
		width: 80px;
		height: auto;
	}

	.icon1 h4 {
		text-align: center;
		color: #595959;
		font-weight: normal;
	}

.over {
	background: #f5f5f5;
	box-shadow: 0px 0px 10px -5px #000;
	padding: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.back1 {
	background: #fcfcfc;
	border: 1px solid #ddd;
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.pad3 {
	font-size: 1.5em;
	text-align: center;
}

.pad2 {
	padding: 10px;
	text-align: center;
	font-size: 1.2em;
}

.search {
	background: linear-gradient(90deg, #f84b3c, #f83a2c, #f84b3c);
	padding: 10px;
	margin-bottom: 20px;
	margin-top: 10px;
}

	.search h3 {
		text-align: center;
		color: #fff;
		margin: auto;
		padding: 10px;
		0px;
	}

	.search label {
		color: #fff;
		font-weight: normal;
	}

.top {
	background: #0c2859;
	border-bottom: 3px solid #f84b3c;
}

.top-div {
	background: url(../images/top-div-bg.png) no-repeat center right;
	margin-bottom: 11px;
}

	.top-div p {
		padding: 10px;
		margin-bottom: 0px;
		color: #fff;
		font-size: 1.1em;
		text-align: right;
	}

	.top-div img {
		width: 40px;
		height: auto;
	}

	.top-div a {
		color: #fff;
		font-size: 1.1em;
		text-decoration: none;
	}

		.top-div a:hover, .top-div a:focus {
			text-decoration: none;
			color: #fff;
		}
.scroll-img {
  
  width: 100%;
  height: 150px;
  overflow: hidden;
  font-size: 0;
}

.scroll-img ul li {
  display: inline-block;
  margin: 10px 0 10px 10px;
}
.scroll-img ul li img{ width:210px; height:150px;}
.logo {
	width: 100%;
	padding: 0px;
	height: auto;
}

.icon {
	text-decoration: none;
	color: #ddd;
	font-size: 1.2em;
	padding: 5px;
}

	.icon:hover, .icon:focus {
		text-decoration: none;
		color: #fff;
	}

.pad1 {
	padding: 10px;
}

.btn1 {
	border-radius: 5px;
	color: #333;
	box-shadow: 5px 3px 5px 0px #000;
	font-size: .8em;
	background: #ffb600;
	padding: 10px 20px;
	transform: scale(1);
	transition: .5s ease-in-out;
	border: 1px solid #ffb600;
}

	.btn1:hover, .btn1:focus, .btn1:visited {
		background: #f2af00;
		border: 1px solid #f2af00;
		color: #333;
		transition: .5s ease-in-out;
		transform: scale(1.05);
	}

.btn2 {
	border-radius: 5px;
	color: #fff;
	font-size: .8em;
	background: #333;
	padding: 10px 20px;
	transform: scale(1);
	transition: .5s ease-in-out;
	border: 1px solid #333;
}

	.btn2:hover, .btn2:focus, .btn2:visited {
		background: #222;
		border: 1px solid #222;
		color: #fff;
		transition: .5s ease-in-out;
		transform: scale(1.05);
	}

.btn3 {
	border-radius: 5px;
	color: #fff;
	width: 30%;
	font-size: .8em;
	background: #d20808;
	padding: 10px 20px;
	transform: scale(1);
	transition: .5s ease-in-out;
	border: 1px solid ##d20808;
}

	.btn3:hover, .btn3:focus, .btn3:visited {
		background: #cb0707;
		border: 1px solid #cb0707;
		color: #fff;
		transition: .5s ease-in-out;
		transform: scale(1.05);
	}

.btn4 {
	font-size: 1.5em;
	padding: 10px 25px;
	transform: scale(1);
	transition: .5s ease-in-out;
}

	.btn4:hover, .btn4:focus, .btn4:visited {
		transition: .5s ease-in-out;
		transform: scale(1.01);
	}

.headi {
	text-align: center;
	padding: 20px 5px;
	font-weight: bold;
	background: url(../images/h-bg.png) no-repeat center bottom;
	margin: auto;
	color: #000;
}

.headi1 {
	text-align: center;
	padding: 25px 5px;
	font-weight: bold;
	background: url(../images/h-bg1.html) no-repeat center bottom;
	margin: auto;
	color: #fff;
}

.headi2 {
	text-align: center;
	padding: 20px 5px;
	font-weight: bold;
	font-size: 1.8em;
	background: url(../images/headi2-bg.png) repeat-x center;
	margin-top: 20px;
	color: #e40017;
}

	.headi2 span {
		background: #f5f5f5;
		padding: 8px 15px;
		border-radius: 5px 5px 0 0;
	}

.div-pad {
	padding-top: 15px;
	padding-bottom: 15px;
}

.bg1 {
	background: url(../images/bg3.html) repeat-x;
	padding-top: 10px;
	padding-bottom: 10px;
}

	.bg1 h3 {
		text-align: center;
		color: #000;
		padding: 10px 5px;
	}

.about {
	background: url(../images/about-bnr.jpg) no-repeat bottom;
	background-size: cover;
	min-height: 300px;
}

.pkg {
	background: url(../images/pkg-bnr.html) no-repeat bottom;
	background-size: cover;
	min-height: 350px;
}

p {
	font-size: 1.1em;
	color: #333;
	text-align: justify;
	font-weight: normal;
	padding: 6px;
	line-height: 25px;
}

.anchor {
	display: inline-block;
	text-decoration: none;
	width: 100%;
}

.img1 {
	height: 180px;
	padding: 0px;
	border: 1px solid #ddd;
	border-radius: 3px;
	width:100%;
}
.img1 center{ text-decoration:none; color:#333;}
.breadcrumb {
	background: none;
	margin-top: 130px;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 5px;
}

	.breadcrumb li {
		color: #fff;
		text-decoration: none;
		font-weight: normal;
	}

		.breadcrumb li a {
			color: #fff;
			text-decoration: none;
			font-weight: normal;
		}

	.breadcrumb .active {
		color: #01cd01;
		font-weight: normal;
		font-size: 1em;
	}

	.breadcrumb > li + li:before {
		color: #ddd;
	}

.table-striped {
	width: 100%;
	padding: 5px;
	border: 0px solid #ddd;
}

	.table-striped a {
		text-decoration: none;
	}

	.table-striped th {
		padding: 10px;
		text-align: center;
		font-weight: normal;
		font-size: 1.2em;
		border: 0px solid #ddd;
		color: #333;
		background: #f5f5f5;
	}

	.table-striped td {
		padding: 15px 10px;
		text-align: center;
		font-size: 1.1em;
		color: #333;
		border: 0px solid #ddd;
	}

.bottom {
	text-align: center;
	color: #fff;
	background: none;
	border-top: 1px solid #0f62ed;
	font-size: 1.3rem;
	padding: 10px 5px;
}

	.bottom a {
		color: #333;
		text-decoration: none;
	}

		.bottom a:hover, .bottom a:focus {
			text-decoration: none;
			color: #000;
		}

.add {
	text-align: left;
	font-size: 1em;
	line-height: 35px;
	color: #ddd;
	border-radius: 5px;
}

	.add a {
		color: #ddd;
		text-decoration: none;
	}

		.add a:hover, .add a:focus {
			color: #fff;
		}

.add1 {
	text-align: left;
	line-height: 30px;
	font-size: 1.2em;
	color: #333;
}

	.add1 a {
		color: #333;
		text-decoration: none;
	}

		.add1 a:hover, .add1 a:focus {
			color: #000;
		}
/* The actual timeline (the vertical ruler) */
.timeline {
	position: relative;
	width: 100%;
	margin: 15px auto;
}

	/* The actual timeline (the vertical ruler) */
	.timeline::after {
		content: '';
		position: absolute;
		width: 6px;
		background-color: #ddd;
		top: 0;
		bottom: 0;
		left: 50.4%;
		margin-left: -3px;
	}

/* Container around content */
.cont {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

	/* The circles on the timeline */
	.cont::after {
		content: '';
		position: absolute;
		width: 25px;
		height: 25px;
		right: -17px;
		background-color: white;
		border: 4px solid #ffb800;
		top: 15px;
		border-radius: 50%;
		z-index: 1;
	}

/* Place the container to the left */
.left {
	left: 0;
}

/* Place the container to the right */
.right {
	left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	right: 25px;
	border: medium solid #ddd;
	border-width: 10px 0 10px 15px;
	border-color: transparent transparent transparent #ddd;
}

/* Add arrows to the right container (pointing left) */
.right::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	left: 25px;
	border: medium solid #ddd;
	border-width: 10px 15px 10px 0;
	border-color: transparent #ddd transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
	left: -9px;
}

/* The actual content */
.content {
	padding: 20px 30px;
	background-color: #f5f5f5;
	position: relative;
	border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
	/* Place the timelime to the left */
	.timeline::after {
		left: 28px;
	}

	/* Full-width containers */
	.cont {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

		/* Make sure that all arrows are pointing leftwards */
		.cont::before {
			left: 60px;
			border: medium solid #fff;
			border-width: 10px 10px 10px 0;
			border-color: transparent #fff transparent transparent;
		}

	/* Make sure all circles are at the same spot */
	.left::after, .right::after {
		left: 15px;
	}

	/* Make all right containers behave like the left ones */
	.right {
		left: 0%;
	}
}

@media screen and (max-width: 375px) {
	.top-div p {
		font-size: .8em !important;
		text-align: center;
		padding: 6px;
	}

	.logo {
		width: 100% !important;
		height: auto;
		padding: 0px;
	}

	.img1 {
		height: 120px;
	}

	.bottom a {
		color: #ddd;
		text-decoration: none;
	}

		.bottom a:hover, .bottom a:focus {
			text-decoration: none;
			color: #fff;
		}

	.about {
		background: url(../images/about-bnr.jpg) no-repeat bottom;
		background-size: cover;
		min-height: 140px;
	}

	.breadcrumb {
		background: none;
		font-size: 2rem;
		text-align: center;
		margin-bottom: 5px;
	}

		.breadcrumb li a {
			color: #000;
			font-weight: bold;
			text-decoration: none;
		}

		.breadcrumb .active {
			color: #0d0d0d;
			font-weight: normal;
		}

	.icon1 p {
		font-size: .5em;
	}

	.icon1 {
		padding: 5px;
	}
}

@media screen and (max-width:480px), (max-width: 320px), (max-width: 425px) {
	.logo {
		width: 100% !important;
		height: auto;
		padding: 0px;
	}
.scroll-img ul li img{ width:87% !important; height:150px;}
	.img1 {
		height: 120px;
	}

	.bottom a {
		color: #ddd;
		text-decoration: none;
	}

		.bottom a:hover, .bottom a:focus {
			text-decoration: none;
			color: #fff;
		}

	.about {
		background: url(../images/about-bnr.jpg) no-repeat bottom;
		background-size: cover;
		min-height: 140px;
	}

	.breadcrumb {
		background: none;
		font-size: 2rem;
		text-align: center;
		margin-bottom: 5px;
	}

		.breadcrumb li a {
			color: #000;
			font-weight: bold;
			text-decoration: none;
		}

		.breadcrumb .active {
			color: #0d0d0d;
			font-weight: normal;
		}

	.top-div p {
		font-size: .8em !important;
		text-align: center;
	}

	.icon1 p {
		font-size: .5em;
	}

	.icon1 {
		padding: 5px;
	}
}

@media screen and (max-width:768px) {
	#cssmenu {
		width: 100%;
		padding-top: 0px;
	}

		#cssmenu ul {
			width: 100%;
			display: none;
			position: absolute;
			z-index: 17;
			background: #333;
		}

		#cssmenu.align-center > ul,
		#cssmenu.align-right ul ul {
			text-align: left;
		}

		#cssmenu ul li,
		#cssmenu ul ul li,
		#cssmenu ul li:hover > ul > li {
			width: 100%;
			height: auto;
		}

			#cssmenu ul li a,
			#cssmenu ul ul li a {
				width: 100%;
				padding: 10px 20px !important;
				font-size: 1em;
				border-top: 1px solid #454545;
				font-weight: normal;
				color: #fff;
				margin-left: 0px;
				border-radius: 0px;
				background: #333;
			}

		#cssmenu > ul > li:hover > a,
		#cssmenu > ul > li.active > a {
			color: #fff;
			background: #454545;
		}

		#cssmenu > ul > li,
		#cssmenu.align-center > ul > li,
		#cssmenu.align-right > ul > li {
			float: none;
			display: block;
		}

		#cssmenu ul ul li a {
			padding: 15px 25px;
			font-size: 12px;
			color: #fff;
			font-weight: normal;
			border-top: 1px solid #3f9851;
			background: #409c53;
		}

			#cssmenu ul ul li:hover > a,
			#cssmenu ul ul li a:hover {
				color: #fff;
				background: #3f9851;
			}

		#cssmenu ul ul ul li a {
			padding-left: 40px;
		}

		#cssmenu ul ul,
		#cssmenu ul ul ul {
			position: relative;
			left: 0;
			top: 0;
			box-shadow: 0 0 0 0 #000;
			right: auto;
			width: 100%;
			margin: 0;
		}

			#cssmenu > ul > li.has-sub > a::after,
			#cssmenu ul ul li.has-sub > a::after {
				display: none;
			}

	#menu-line {
		display: none;
	}

	#cssmenu #menu-button {
		display: block;
		padding: 13px;
		color: #fff;
		cursor: pointer;
		font-size: 1.3em;
		font-weight: normal;
		text-transform: uppercase;
	}

		#cssmenu #menu-button::after {
			content: '';
			position: absolute;
			top: 3px;
			right: -250px;
			display: block;
			width: 20px;
			height: 2px;
			background: #fff;
		}

		#cssmenu #menu-button::before {
			content: '';
			position: absolute;
			top: 10px;
			right: -250px;
			display: block;
			width: 20px;
			height: 9px;
			border-top: 2px solid #fff;
			border-bottom: 2px solid #fff;
		}

	#cssmenu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		top: 0;
		display: block;
		border-left: 1px solid rgba(120, 120, 120, 0.15);
		height: 34px;
		width: 40px;
		cursor: pointer;
	}

		#cssmenu .submenu-button::after {
			content: '';
			position: absolute;
			top: 12px;
			left: 20px;
			display: block;
			width: 1px;
			height: 11px;
			background: #fff;
			z-index: 99;
		}

		#cssmenu .submenu-button::before {
			content: '';
			position: absolute;
			left: 15px;
			top: 17px;
			display: block;
			width: 11px;
			height: 1px;
			background: #fff;
			z-index: 99;
		}

		#cssmenu .submenu-button.submenu-opened:after {
			display: none;
		}

	.logo {
		width: 100%;
		padding: 5px;
	}
.scroll-img ul li img{ width:210px; height:150px;}
	.icon1 p {
		font-size: 1em;
	}
	.panel-heading{ font-size:.9em;}

	.icon1 {
		padding: 5px;
	}

	.pack h3 {
		font-size: 1.2em !important;
	}

	.link p {
		font-size: .75em;
		font-weight: bold;
	}

	.view {
		font-size: .75em !important;
	}

	.pack span {
		font-size: .9em;
	}

	.top-div p {
		font-size: 1em;
		padding: 5px;
	}

	footer ul li a {
		font-size: .85em;
	}

	footer address {
		font-size: .85em;
	}

	.pack img {
		height: auto;
	}
	.hotel img {
	height:auto;
}
}

@media screen and (max-width:1024px) {
	#cssmenu > ul > li > a {
		font-size: 1.2em;
		padding: 10px 15px;
	}

	#cssmenu > ul > li.has-sub > a::after {
		top: 13px;
		right: 7px;
	}
.scroll-img ul li img{ width:212px; height:150px;}
	.top-div {
		margin-bottom: 5px;
	}

		.top-div p {
			font-size: 1em;
			text-align: right;
		}

	.pack h3 {
		font-size: 1.4em;
		padding: 10px 0px;
	}

	.link p strong {
		font-size: 1.1em;
	}

	.view {
		font-size: .95em;
		padding: 9px 0px;
	}

	.price {
		padding: 5px 0px;
		font-size: .8em;
	}

    .al-rt {
		text-align:right !important;
        float:right;
	}


	.serve {
		margin-top: 70px;
		padding-top: 50px;
	}
}
/* Zoom In #1 */
.hover01 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .9s ease-in-out;
	transition: .9s ease-in-out;
	height: auto;
	border: 0px solid #fff;
}

.hover01 figure:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: .9s ease-in-out;
	transition: .9s ease-in-out;
}

.column {
	margin: 0;
	padding: 0;
}

	.column:last-child {
		padding-bottom: 0px;
	}

	.column::after {
		content: '';
		clear: both;
		display: block;
	}

	.column div {
		position: relative;
		float: left;
		width: 100%;
		height: auto;
		margin: 0 0 0 25px;
		padding: 0;
	}

		.column div:first-child {
			margin-left: 0;
		}

figure {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}

a.back-to-top {
	display: none;
	width: 40px;
	height: 40px;
	text-indent: -9999px;
	position: fixed;
	z-index: 999;
	right: 20px;
	bottom: 20px;
	border-radius: 50px;
	background: #f84b3d url("../images/up-arrow.png") no-repeat center 43%;
	transition: 1s;
}

a:hover.back-to-top {
	background-color: #f84b3d;
}

.scat {
	padding: 7px;
	display: inline-block;
	text-decoration: none;
}




#cssmenu {
    background: #333;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #fff;
}

#menu-button {
    padding: 10px 20px;
    cursor: pointer;
}




ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
}

ul li:hover > ul {
    display: block;
}

ul ul {
    display: none;
    position: absolute;
    background: #444;
    width: 200px;
    top: 100%;
    left: 0;
}

ul ul li {
    width: 100%;
}

@media (max-width: 768px) {
    #cssmenu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 27px; /* Adjust as needed */
        background-color: #333;
        width: 100%;
    }

    #cssmenu ul.active {
        display: flex;
    }
}
