html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
figure{
	margin-bottom: 0;
}
*{
	margin:0;
	padding: 0;
}
ul li{
	list-style: none;
	margin:0;
}
ul{
	margin-bottom: 0;
	padding: 0;
}
a,
a:hover,
a:visited,
a:focus,
a:active{
	text-decoration: none;
	outline: none;
}
button,button:hover,button:focus,input,input:focus{
	outline: none;
}
html,body{
	height: 100%;
}
body {
	font: 400 14px 'Roboto';
	-webkit-text-size-adjust: 100%;
	height: 100%;
	color: var(--bodyColor);
	letter-spacing: 0;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-text-stroke:1px transparent;
	overflow-x: hidden;
}
h1{
	font:600 34px 'ZCOOL XiaoWei';
	color: var(--title-color);
}
h2{
	font:500 28px 'ZCOOL XiaoWei';
	color: var(--title-color);
}
h3{
	font:normal 24px 'ZCOOL XiaoWei';
	color: var(--title-color);
}
p{
	line-height: 22px;
}
.clearfix{
	clear: both;
}
:root {
  --bodyColor:#2a3439;
  --headColor:#334e6f;
  --border-Color-1:#e1e1e1;
  --border-Color-2:#0b71e1;
  --bg-Color:#0b71e1;
  --linkColor1:#fff;
  --price-btn:#64C568;
  --title-color:#222;
}
.titleMain h2{
	font:500 30px 'Abril Fatface', cursive;
}

/*********************************************************
***********************************************************/

/*******************************************************
title head
*********************************************************/
.sectionTop{
	margin-top: 80px;
}
.titleMain h2 span{
	position: relative;
}
.titleMain h2 span:after{
	content: '';
	position: absolute;
	width: 100px;
	height: 2px;
	background: var(--border-Color-1);
	left: 0;
	top: -8px;
}
.titleMain h2 span:before{
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	background: var(--border-Color-2);
	left: 0;
	top: -8px;
	z-index: 1;
}
.titleMain{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
}
.viewTripBtn{
	flex-grow: 1;
	text-align: right;
}
.viewTripBtn a{
	border-radius: 20px;
	padding: 8px 15px;
	box-sizing: border-box;
	text-transform: uppercase;
	border: 1px solid var(--bg-Color);
	/*background: var(--bg-Color);*/
	color: var(--bg-Color);
	-webkit-transition: all ease-in-out 0.8s;
	-moz-transition: all ease-in-out 0.8s;
	-ms-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s;
}
.viewTripBtn a:hover{
	-webkit-box-shadow: 0 1px 10px rgba(18,70,214,0.8);
	-moz-box-shadow: 0 1px 10px rgba(18,70,214,0.8);
	-ms-box-shadow: 0 1px 10px rgba(18,70,214,0.8);
	box-shadow: 0 1px 10px rgba(18,70,214,0.8);
	border-radius: 0;
	background: var(--bg-Color);
	color: #fff;

}
/***********************************************
bs selling list
************************************************/
.no-gutters{
	margin: 0 -4px;
}
.no-gutters>.col, .no-gutters>[class*=col-] {
  padding: 0 4px;
}
.bsSellingBg{
	position: relative;
	min-height: 250px;
}
.tripOverlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.6) 100%);
  background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.6) 100%);
  background: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.6) 100%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.titleSm h2{
	font-size: 22px;
}
.tripPackageInfos{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 15px 20px;
	z-index: 3;
	width: 100%;
	transition: bottom 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	color: #fff;
}
.tripPackageInfos p{
	color: #fff;
  max-height: 0;
  line-height: 20px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-out, max-height 0.4s ease-out, margin 0.4s;
  margin-bottom: 0;
}
.tripPackBg:hover .tripPackageInfos p{
	opacity: 1;
  max-height: 100px;
  margin-top: 5px;
  transition: opacity 0.4s ease-out, max-height 0.9s ease-out;
}
.tripPackageInfos a{
	color: #fff;
}
 .tripDays{
	display: inline-block;
	margin-bottom: 5px;
}
.tripPackBg:hover .tripPackageInfos h2 a{
	color: #64C568;
}
.tripPackageInfos h2 a{
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.tripPackBg:hover .tripPackageInfos h2{
	margin-bottom: 8px;
}
.tripPackPrice span{
	font:500 17px 'ZCOOL XiaoWei', serif;
	background:var(--price-btn);
	display: inline-block;
	color: #fff;
	padding: 10px 15px;
	position: relative;
}
.tripPackPrice span:after{
	width: 0;
	height: 0;
	border-top: 20px solid var(--price-btn);
	border-right: 20px solid transparent;
	position: absolute;
	top: 0;
	right: -20px;
	content: '';
}
.tripPackPrice span:before{
	width: 0;
	height: 0;
	border-bottom: 20px solid var(--price-btn);
	border-right: 20px solid transparent;
	position: absolute;
	bottom: 0;
	right: -20px;
	content: '';
}
.tripPackPrice{
	position: absolute;
	left: -5px;
	top: 0;
}
.tripPackPrice:after{
	width: 5px;
  height: 6px;
  background: #419644;
  position: absolute;
  left: 0;
  bottom: -6px;
  content: '';
  border-bottom-left-radius: 4px;
}
.bsSellingList{
	margin-bottom: 8px;
}
.tripPackBg:hover .tripOverlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 80%);
  background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 80%);
  background: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 80%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.8) 80%);
}
/********************************************************
tours and trek package
*************************************************************/
.tripOuterBox:hover{
	-webkit-box-shadow: 0 0 30px rgba(0,0,0,0.3);
		-moz-box-shadow: 0 0 30px rgba(0,0,0,0.3);
		-ms-box-shadow: 0 0 30px rgba(0,0,0,0.3);
		box-shadow: 0 0 30px rgba(0,0,0,0.3);
		cursor: pointer;
}
.tripOuterBox{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background-color: #fff;
  position: relative;
  /*margin-bottom: 30px;*/
  -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
  box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
  -webkit-transition: all ease-in-out 0.8s;
  -moz-transition: all ease-in-out 0.8s;
  -ms-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}
.tripOuterBox figure{
	position: relative;
	overflow: hidden;
}
.tripOuterBox figure img{
	width: 100%;
}
.tripOuterInfos{
	flex: 1 0 auto;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
}
.titleMd h2{
	font-size: 22px;
  margin-bottom: 5px;
  /*width: 300px;*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tripOuterInfos h2 a{
	color: var(--title-color);
}
.ratingUser{
	margin-top: 5px;
	display: none;
}
.ratingUser ul li{
	display: inline-block;
}
.tripOuterBtm{
	padding: 10px 0 0;
	border-top: 1px dashed #d6d4d4;
	margin-top: 10px;
}
.tripOuterBtm p{
	color: #222;
	font-weight: 500;
	font-size: 14px;
}
.tripOuterBtm ul{
	display: flex;
}
.tripOuterBtm ul li{
	display: flex;
	/*flex-direction: column;*/
	flex-basis: 50%;
	align-items: center;
}
.tripOuterBtm ul li .tripIcon{
	display: flex;
	flex-basis: 15%;
	font-size: 24px;
}
.tripOuterBtm ul li .tripShort{
	display: flex;
	flex-basis: 75%;
	flex-direction: column;
	padding-left: 8px;
}
.tripShort span{
	position: relative;
	top: -5px;
}
.tripOuterBox figure img{
	-webkit-transition: 1s ease-in-out;
	-moz-transition: 1s ease-in-out;
	-ms-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
.tripOuterBox:hover figure img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: 1s ease-in-out;
	-moz-transition: 1s ease-in-out;
	-ms-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
.tripOuterBox figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.tripOuterBox:hover figure::before {
	-webkit-animation: shine .9s;
	animation: shine .9s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.tripOuterBox:hover .titleMd h2 a{
	color: var(--bg-Color);
}
.tripsMainList{
	margin-bottom: 20px;
}
.tripsMainBox .no-gutters{
	margin: 0 -8px;
}
.tripsMainBox .no-gutters>.col, .tripsMainBox  .no-gutters>[class*=col-] {
    padding: 0 8px;
}

/************************************************
popular package
**************************************************/
/*.popularPackageSection{
	background: #f9f9f9;
	padding: 50px 0 10px;
}*/
.popularPackageBox .tripOuterInfos{
	padding: 15px;
}
.popularPackageBox .owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    top: -70px;
    right: 0;
}
.popularPackageBox .owl-theme .owl-nav [class*=owl-] {
  height: 30px;
  width: 30px;
  background: var(--bg-Color);
  border-radius: 50%;
  color: #fff;
  line-height: 30px;
  font-size: 25px;
  text-align: center;
}
.popularPackageBox .titleMd h2 {
  font-size: 20px;
  width: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tripOuterBtm p {
   font-size: 13px;
}
.tripShort span{
	font-size: 14px;
}

/**************************************
about us
*********************************************/
.aboutSection {
	/*margin-top: 35px;*/
}
.aboutInfos h2{
	font:500 30px 'Abril Fatface', cursive;
	margin-bottom: 15px;
}
.aboutInfos p{
	margin-bottom: 8px;
}
.aboutMid ul li{
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
}
.aboutMid ul li:before{
	content:"\e958";
	font-family:"uxwing-iconsfont";
	left:0px;
	position:absolute;
	top:6px;
}
.aboutSection{
	background:#fff;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	padding: 30px 0;
}
/************************************
feature holidays image
**************************************/
.ftImg1 .bsHolidayBg{
	position: relative;
	min-height: 400px;
}
.ftImg2 .bsHolidayBg{
	position: relative;
	min-height: 196px;
}
.ftImg2{
	margin-bottom: 8px;
}
.bsHolidayBg .titleSm h2 {
    font-size: 30px;
    color: #ffffff;
}
/**************************************************
things to do 
******************************************/
.tripThings a span{
	color: #333;
}
.tripThings h2{
	font-weight: 600;
}
/********************************************
footer 
***********************************************/
.contactFooterSection{
	border-bottom: 1px solid #dde6ef;
	border-top: 1px solid #dde6ef;
	display: flex;
	min-height: 90px;
	align-items: center;
}
.bottomFootMenu{

}
.brFoot{
	border-right: 1px solid #dde6ef;
}
.footConFlex{
	display: flex;
	flex-direction: column;
	min-height: 90px;
	justify-content: center;
}
.footConFlex p{
	font-weight: 500;
	color: #ffffff;
}
.footConFlex span{
	color: #cdd7e6;
	margin-top: 10px;
}
.footConFlex a{
	margin-top: 10px;
}
.footConFlexShare li{
	display: flex;
	flex-basis: 20%
}
.footConFlexShare{
	display: flex;
	justify-content: center;
}
.socialIc li .fi{
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	color: #fff;
}
.socialIc li .fi-facebook{
	background:#3b5998;
}
.socialIc li .fi-twitter{
	background:#32cdfd;
}
.socialIc li .fi-linkedin{
	background:#0274b3;
}
.socialIc li .fi-google-plus{
	background:#e62117;
}
.socialIc li .fi-instagram{
	background:#952365;
	color: #831010;
}
/*************************
main ooter
***********************************/
.mainFootSection{
	background:#2a3646;
	padding: 50px 0 20px;
}
.footMainTitle{
	color: #fff;
	text-transform: uppercase;
	font:400 17px 'Roboto';
	margin-bottom: 15px;
}
.footListMenu ul li{
	margin-bottom: 10px;
	position: relative;
	/*padding-left: 15px;*/
}
.footListMenu ul li a{
	color: #cdd7e6;
	font-size: 14px;
}
.footListMenu ul li a:hover{
	color: #6b97de;
}
.footListMenu ul li:before{
	content: '-';
	position: absolute;
	left: 0;
}
.copyrightSection{
	border-top:1px solid #cdd7e6;
	padding-top: 25px;
	margin-top: 25px;
}
.copyrightSection p{
	color: #fff;
	font-size: 14px;
}
/*******************************************
tp mid foot
*****************************************/
.topMidFootTitle{
	font:500 30px 'Abril Fatface', cursive;
}
.contactMidSection{
	padding: 50px 0 0;
}
.partnerFlex{
	margin-top: 30px;
}
.partnerFlex ul{
	display: flex;
	justify-content: center;
}
.partnerFlex ul li{
	flex-wrap: wrap;
	display: flex;
	padding: 0 8px;
}
.btmMidFoot{
	border-top: 1px solid #e2e2e2;
	margin-top: 50px;
	padding-top: 50px;
}
.btmMidFootMenu h3{
	color: #333;
	font-weight: 500;
}
.contactFooterSection{
	margin-top: 70px;
}
.form-control{
	border-radius: 0;
	border-color: #ebebeb;
}
.sumbitInput input{
	background:var(--bg-Color);
	border:0;
	padding: 10px 20px;
	color: #fff;
	cursor: pointer;
	border-radius: 25px;
	-webkit-transition: all ease-in-out 0.8s;
	-moz-transition: all ease-in-out 0.8s;
	-ms-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s;
}
.sumbitInput{
	margin-top: 15px;
}
.sumbitInput input:hover {
  -webkit-box-shadow: 0 1px 10px rgba(18,70,214,0.8);
  -moz-box-shadow: 0 1px 10px rgba(18,70,214,0.8);
  -ms-box-shadow: 0 1px 10px rgba(18,70,214,0.8);
  box-shadow: 0 1px 10px rgba(18,70,214,0.8);
  background: var(--bg-Color);
  color: #fff;
}
/******************************************************
banner
*****************************************************/
.bannerSlider .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.bannerBox{
	position: relative;
}
.bannerContentBg{
	position: absolute;
	box-sizing: border-box;
	max-width: 540px;
	top: 50%;
	margin-top: -65px;
}
.bannerContentBg h2{
	font:500 40px 'Abril Fatface', cursive;
	color: #fff;
	margin-bottom: 10px;
}
.destinationTitle h1 {
    font: 500 30px 'Abril Fatface',cursive;
}
.bannerContentBg p{
	color: #fff;
	line-height: 24px;
	font-size: 17px;
}
.bannerBox{
	position: relative;
}
.overlayBanner{
	position: absolute;
	background: linear-gradient(to bottom,rgba(0,0,0,0.67) 0%,rgba(0,0,0,0) 95%,rgba(0,0,0,0.8) 100%);
	height: 100%;
	width: 100%;
	top: 0;
	/*background: rgba(0,0,0,0.4);*/
}
.bannerSlider{
	position: relative;
	top: 0;
	width: 100%;
}
.bannerSlider .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0;
  position: absolute;
  top: 50%;
  right: 20px;
}
.bannerSlider .owl-theme .owl-dots .owl-dot.active span, 
.bannerSlider .owl-theme .owl-dots .owl-dot:hover span {
   background: #64c568;
}
.bannerSlider .owl-theme .owl-dots .owl-dot span{
	width: 20px;
	height: 20px;
	border: 3px solid #fff;
	background: var(--bg-Color);
	margin: 5px 4px;
}
.sliderTitle{
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: .7s ease-in-out;
	transition: .7s ease-in-out;
}
.owl-item.active .sliderTitle{
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition-delay: .5s;
}
.sliderInfos{
	opacity: 0;
	-webkit-transform: scale(.8);
	transform: scale(.8);;
	-webkit-transition: .7s ease-in-out;
	transition: .7s ease-in-out;
}
.owl-item.active .sliderInfos{
	opacity: 1; 
	-webkit-transform: scale(1);
	transform: scale(1);
	transition-delay: 1s;
}
.bannerSlider .owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
}
/*.readBtn{
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

.owl-item.active .readBtn{
	opacity: 1; 
	margin: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .45s ease-in-out;
	transition: .45s ease-in-out;
}*/

/*****************************************
menu box
***********************************************/
.main-nav:after {
  clear: both;
  content: "\00a0";
  display: block;
  height: 0;
  font: 0px/0 serif;
  overflow: hidden;
}

#main-menu {
  clear: both;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}


/* Mobile menu top separator */

#main-menu:before {
  content: '';
  display: block;
  height: 1px;
  font: 1px/1px sans-serif;
  overflow: hidden;
  /*background: #2e8cb8;*/
}

@media (min-width: 768px) {
  #main-menu:before {
    display: none;
  }
}


/* Mobile menu toggle button */

.main-menu-btn {
  margin: 10px;
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
  text-indent: 29px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* hamburger icon */

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: #0b71e1;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.main-menu-btn-icon:before {
  content: '';
  top: -7px;
  left: 0;
}
.main-menu-btn-icon:after {
  content: '';
  top: 7px;
  left: 0;
}
/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}
#main-menu-state:checked ~ #main-menu {
  display: block;
}
@media (min-width: 768px) {
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
  }
}
.sm-blue ul a, .sm-blue ul a:active, .sm-blue ul a:focus, .sm-blue ul a:hover{
	font-size: 14px;
}
.sm-blue>li {
    border-left: 0;
}
.sm-blue a .sub-arrow{
	display: none;
}
.sm-blue a, .sm-blue a.highlighted, .sm-blue a:active, .sm-blue a:focus, .sm-blue a:hover {
  padding: 12px 25px;
  color: #777575;
  text-transform: uppercase;
  font-weight: 500;
  padding-right: 0;
  font-size: 14px;
}
 .sm-blue a:hover {
  color: #0b71e1;
}
.headerMenuFlex{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.headerMenuFlexLeft{
	display: flex;
	flex-basis: 15%;
}
.headerMenuFlexLeft img {
  width: 100%;
  height: 60px;
  object-fit: scale-down;
}
.headerMenuFlexRight{
	display: flex;
	flex-basis: 85%;
	justify-content: flex-end;
}
.sm-blue ul {
  background: #fff;
  top: 65px!important;
}
.topHeaderFlex{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.topHeaderFlexLeft{
	display: flex;
	flex-basis: 80%;
}
.topHeaderFlexRight{
	display: flex;
	flex-basis: 20%;
	justify-content: flex-end;
}
.topHeaderFlexRight ul li{
	display: inline-block;
	margin-right: 10px;
}
.topHeaderFlexRight ul li:last-child{
	margin-right: 0;
}
.topHeaderFlexRight ul li a{
	color: #222;
}
.topHeaderFlex{
	display: flex;
	flex-wrap: wrap;
}
.tpHeaderLeftList{
	display: flex;
	flex-direction: row;
	border-right: 1px solid #cac7c7;
	margin-right: 15px;
	padding-right: 15px;
}
.tpHeaderLeftList:last-child{
	border-right: 0;
}
.tpHeaderList1{
	display: inline-block;
}
.tpHeaderList1 ul{
	display: flex;
}
.tpHeaderLeftList ul li a{
	color: #7a7a7a;
	padding-left: 8px;
}
.tpHeaderLeftList ul li{
	position: relative;
	padding-right: 10px;
}
.tpHeaderLeftList ul li:before{
	content:"\e90f";
	font-family:"uxwing-iconsfont";
	left:0px;
	position:relative;
	top:-2px;
	font-size: 8px;
}
.tpHeaderLeftList ul li:last-child{
	position: relative;
	padding-right: 0;
}
.tpHeaderLeftList .fi{
	font-size: 12px;
	vertical-align: middle;
}
.topHeader{
	padding: 12px 0;
}
.menuHeader{
  border-top: 1px solid #e5e5e5;
  position: relative;
  z-index: 99;
}
/************************************
sticky js
****************************************/
 .headerMenuFlex {
 padding: 10px 0;
 -webkit-transition: all ease-in-out 0.8s;
 -moz-transition: all ease-in-out 0.8s;
 -ms-transition: all ease-in-out 0.8s;
 transition: all ease-in-out 0.8s;
}
/*.menuHeader.sticky .headerMenuFlex {
   padding: 10px 0;
}*/
.menuHeader.sticky .sm-blue ul {
  background: #fff;
  top: 65px!important;
}
.menuHeader.sticky {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: inherit;
  position: fixed;
  box-sizing: border-box;
  background:#fff;
  z-index: 9999;
  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.4);
  	-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.4);
  	-ms-box-shadow: 0 1px 10px rgba(0,0,0,0.4);
  	box-shadow: 0 1px 10px rgba(0,0,0,0.4);

}
.menuHeader.sticky .headerMenuFlexLeft img {
  /*width: 80%;*/
  -webkit-transition: all ease-in-out 0.8s;
  -moz-transition: all ease-in-out 0.8s;
  -ms-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}
.headerMenuFlexLeft img{
	-webkit-transition: all ease-in-out 0.8s;
	-moz-transition: all ease-in-out 0.8s;
	-ms-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s;
}
.sm-blue a.active{
	color: #0b71e1;
}
.sm-blue ul a.highlighted, .sm-blue ul a:active, .sm-blue ul a:focus, .sm-blue ul a:hover {
  background: #0b71e1;
  background-image: initial;
  color: #fff;
  text-transform: initial;
}
.sm-blue ul a{
  color: #222;
  text-transform: initial;
}
/*****************************************
/* Back to top button */
/**********************************/
.back-to-top{
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display:none;
	text-align: center;
	opacity: 0.5;
	-webkit-transition: all ease-in-out 0.7s;
	-moz-transition: all ease-in-out 0.7s;
	-ms-transition: all ease-in-out 0.7s;
	-o-transition: all ease-in-out 0.7s;
	transition: all ease-in-out 0.7s;
	font-size: 40px;
}
.back-to-top:hover{
	opacity: 1;
	color: #0b71e1;
}
/******************************
loader
************************************/
#loading{
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0px;
	top: 0px;
	z-index: 99999;
}
.loaders{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	top: 50%;
	margin-top: -120px;
	animation-name: flip;
	animation-duration: 6000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear; 
}
.loaders img{
	width: 15%;
}
/**********************************************************
single detail page
*************************************************************/
.innerSection{
	margin-bottom: 60px;
}
.mainBreadcrumb .breadcrumb {
  background: 0 0;
  margin-bottom: 0;
  padding: 0;
}
.mainBreadcrumb {
  background: #efefef;
  padding: 12px 0;
  margin-bottom: 60px;
}
.mainBreadcrumbTitle{
	font:500 24px 'Abril Fatface', cursive;
	margin-bottom: 10px;
}
.tripFactBox{
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	padding: 25px;
	box-sizing: border-box;
	border: 1px solid #ececec;
	display: flex;
	height: 100%;
}
.singleSlider{
	margin-bottom: 35px;
}
.overviewIcon{
	float: left;
	width: 35px;
	overflow: hidden;
}
.overviewInfos{
	float: left;
	padding-left: 8px;
}
.overviewInfos p{
	font-size: 14px;
	color: #222;
	font-weight: 500;
}
.overviewIcon i{
	font-size: 35px;
	color: #0b71e1;
}
.tripBoxFlexList{
	margin-bottom: 8px;
}
.tripInfosBg{
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	padding: 25px;
	box-sizing: border-box;
	margin-bottom: 30px;
	border: 1px solid #ececec;
}
#tripFactInfos{
	margin-bottom: 30px;
}
.tripInfosBgTitle{
	font:500 22px 'Abril Fatface', cursive;
	margin-bottom: 10px;
}
.tripInfosBg p{
	margin-bottom: 15px;
}
.tripDescSlide{
	position: relative;
	transition: height 500ms;
	    overflow: hidden;
}
.tripDescSlide:after {
  content: '';
  position: absolute;
  height: 70px;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 80%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  z-index: 1;
  bottom: 0;
  pointer-events: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 1;
}
.tripLink {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
/**************************
itennary
*************************************/
#accordion-style-1 h1,
#accordion-style-1 a{
	color:#222;
}
#accordion-style-1 .btn-link {
	font-weight: 400;
	color: #222;
	background-color: transparent;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: bold;
	padding-left: 42px;
}

#accordion-style-1 .card-body {
	/*border-top: 2px solid #007b5e;*/
	padding-left: 42px;
	padding-top: 10px;
	padding-bottom: 0;
	/*background: #f9f9f9;*/
}

#accordion-style-1 .card-header .btn.collapsed .fa.main{
	display:none;
}
#accordion-style-1 .card-header .btn i.main{
	background: #18458b;
	color: #ffffff;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 5px;
	display:block;
	border-radius: 50%;
	text-align: center;
	line-height: 25px;
}
#accordion-style-1 .card-header .btn .daycount{
	border:2px solid #18458b;
	color: #ffffff;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	top: 8px;
	display:block;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	background: #fff;
}
#accordion-style-1 .card-header {
	padding: .75rem 1.25rem;
	margin-bottom: 0;
	/*background-color: rgba(0,0,0,.03);*/
	border-bottom: 1px solid rgba(0,0,0,.125);
	padding: 0;
	border: 0;
	background-color:transparent;
}
#accordion-style-1 .card{
	border: 0;
	background: transparent;
	margin-bottom: 5px;
	/*margin-bottom: 12px;*/
	/*border-bottom: 1px solid #eee;*/
	/*padding-bottom: 16px;*/
	position: relative;
}
#accordion-style-1 .card:after {
  content: '';
  width: 96%;
  height: 1px;
  background: #eee;
  left: 46px;
  right: 21px;
  margin: 6px auto;
  top: 74px;
}
.itineraryItem ul li{
	margin-right: 10px;
	font-size: 15px;
}
.tourTimeItem ul li{
	display: inline-block;
}
.itineraryItem ul{
	margin: 0 0 15px;
}
.itineraryItem ul li i{
	color: #18458b;
	font-size: 16px;
}
.btmItinerary i.foodBasket{
	font-size: 24px;
	color: #18458b;
}
.btmItinerary strong{
	display: inline-block;
	margin-left: 10px;
	text-transform: uppercase;
	color: #222;
	font-size: 16px;
}
.btmItinerary ul{
	padding-left: 30px;
	margin-top: 5px;
}
.accordion:before {
	content: '';
	border-left: 1px dashed #cacaca;
	position: absolute;
	top: 10px;
	bottom: 25px;
	left: 12px;
}
.accordion{
	position: relative;
}
/********************************
cost 
*******************************************/
.costCols h3{
   font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.costCols ul li{
	position: relative;
	padding: 0 0 7px 25px;
	margin-bottom: 5px;
}
.costCols ul li:last-child{
	margin-bottom: 0;
}
.costExclude{
	margin-top: 20px;
}
.costInclude ul li:before{
	content: "\f00d";
	font-family: IcoFont!important;
	position: absolute;
	left: 0;
	color: #3eb368;
	top: 5px;
}
.costExclude ul li:before{
	content: "\eee3";
	font-family: IcoFont!important;
	position: absolute;
	left: 0;
	color: #e66f6f;
	top: 5px;
}
/*********************************
review
**************************************/
.reviewTitle{
	font-family: 'Roboto';
	font-size: 16px;
	color: #222;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 8px;
}
.reviewLocation:before {
	content: '';
	background: #7f8588;
	width: 1px;
	height: 11px;
	display: inline-block;
	vertical-align: top;
	margin: 3px 7px 0 7px;
}
.reviewLocation:after {
	content: '';
	background: #7f8588;
	width: 1px;
	height: 11px;
	display: inline-block;
	vertical-align: top;
	margin: 3px 7px 0 7px;
}
.reviewRating{
	margin: 5px 0;
}
.reviewRating i{
	color: #ffab53;
	font-size: 16px;
}
.reviewBox{
	margin: 10px 0 30px;
	border-bottom: 1px solid #e1e2e3;
	padding-bottom: 20px;
}
.reviewInfos p{
	margin-bottom: 0;
}
.reviewBox:last-child{
	margin: 0;
	border:0;
	padding: 0;
}
.reviewRatingTop i{
	color: #ffab53;
	font-size: 18px;
}
.reviewRatingTop {
	margin: 10px 0 30px;
	border-bottom: 1px solid #e1e2e3;
	padding-bottom: 20px;
}
.reviewRatingTop span{
	font-size: 16px;
	font-weight: 500;
	color: #ffab53;
}
.reviewBox{
	display: none;
}
/*********************************
fixed departure
***************************************/
.table thead tr th{
	padding: 10px;
	font-size: 14px;
}
.table tbody tr td{
	padding: 15px;
	font-size: 14px;
}
.table thead tr th{
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 0;
}
.bookNow{
	background:#0b71e1;
	color: #fff;
	padding: 6px 15px;
	box-sizing: border-box;
	text-transform: uppercase;
	font-size: 13px;

}
.bookNow:hover{
	color: #fff;
	opacity: 0.8;
}
.customTabs .nav-tabs{
	background: rgba(33, 71, 99, 0.1);
}
.table {
  border: 1px solid #dee2e6;
  margin-top: 30px;
}
/* ==================================================
Sticky
================================================== */
.sticky.navbar {
	border-radius: 0;
	padding-top: 36px;
	    padding-bottom: 30px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.sticky .show-is-sticky,
.sticky .show-not-sticky {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
	visibility: hidden;
}
.sticky .show-not-sticky {
	opacity: 1;
	visibility: visible;
}
.sticky.is-sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9999;
	width: 100%;
}
.sticky.is-sticky.navbar {
	background-color: #4b3968;
}
.sticky.is-sticky .show-is-sticky {
	opacity: 1;
	visibility: visible;
}
.sticky.is-sticky .show-not-sticky {
	opacity: 0;
	visibility: hidden;
}
.sticky.navbar{
	display: none;
}
nav.navbar.navbar-dark.navbar-bootbites.sticky.is-sticky {
	display: block;
}
.sticky.is-sticky.navbar {
	background-color: #fff;
	border-bottom: 1px solid #dedede;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.stickyScroll nav ul{
	display: flex;
	flex-wrap: wrap;
}
.stickyScroll nav ul li{
	display: flex;
	margin-right: 20px;
}
.stickyScroll nav ul li a{
	color: #222;
	text-transform: uppercase;
	font-weight: 600;
	scroll-behavior: smooth;
}
.stickyScroll nav ul li a.active{
	color: #0b71e1;
}
/************************************************
side bar
***********************************************/
/*#contentWrapper{overflow:hidden;}*/
.sideBar.shrink{
	width: 350px;
	background: #fff;
}

/*********************************
sidebar
***********************************/
.sideBox{
  padding: 15px;
  border: 1px solid #ededed;
  /*background-color: #f8f8f8;*/
  box-shadow: 0 1px 9px rgba(0,0,0,0.1);
  background: #fff;
}
.startingDate{
  font-size: 18px;
  color: #222;
  font-weight: 600;
}
.sidePrice{
  margin: 10px 0 20px;
}
.sidePrice span{
  font-size: 28px;
  color: #334e6f;
  font-weight: 700;
}
.sidePrice span small{
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: inline-block;
  margin-left: 5px;
}
.sideBox .form-control{
  border-radius: 0;
  margin-top: 8px;
}
.availableBox{
  background: #2196f3;
  color: #fff;
  display: block;
  padding: 12px 10px;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.availableBox1{
  background: #334e6f;
}
.availableBox:hover{
  color: #fff;
  opacity: 0.9;
}
.peopleCheck{
  margin-bottom: 0;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
}
.sideBar{
  margin-bottom: 20px;
}
.bookBtn{
	display: block;
	background: #0b71e1;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 12px 0;
	box-sizing: border-box;
}
.bookBtn:hover{
	color: #fff;
	opacity: 0.9;
}
.sideBox h3{
	font-family: 'Roboto';
	font-weight: 500;
	margin-bottom: 10px;
	font-size: 18px;
}
.customTrips {
  border: 2px solid #0b71e1;
  color: #333;
  padding: 11px 15px;
  box-sizing: border-box;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 13px;
  border-radius: 8px;
  -webkit-transition: all ease-in-out  1s;
  -moz-transition: all ease-in-out  1s;
  -o-transition: all ease-in-out  1s;
  -ms-transition: all ease-in-out  1s;
  transition: all ease-in-out  1s;

}
.customTrips:hover{
	border: 2px solid #0b71e1;
	background:#0b71e1;
	color: #fff; 
}
.tripMap img{
	width: 100%;
}
.bookAvai{
	margin-bottom: 10px;
}
.reviewBoxOuter{
	background:#0b71e1;
	color: #fff; 
	display: block;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 0;
	box-sizing: border-box;
}
.reviewBoxOuter:hover{
	color: #fff;
}
.reviewForm {
  padding: 25px 15px;
  border: 1px solid #ededed;
  background-color: #f8f8f8;
  display: none;
}
.form-control{
	font-size: 14px;
	min-height: 40px;
}
.reviewsBoxCols {
	display: inline-block;
	background: #18458b;
	color: #fff;
	padding: 1px 11px;
	margin: 0 13px 0 0;
	font-weight: 500;
	border-radius: 3px;
	position: relative;
	margin-left: 5px;
}
.reviewsBoxCols:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 6px 6px 0;
	border-color: transparent #18458b transparent transparent;
	position: absolute;
	right: 100%;
	top: 50%;
	margin: -6px 0 0;
}
/*******************************
custom start
*********************************/
.wrapperStar {
  position: relative;
}
.wrapperStar input {
  border: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  opacity: 0;
}
.wrapperStar label {
  position: relative;
  color: #C8C8C8;
  text-align: right;
}
.wrapperStar label:before {
  content: "\f000";
  font-family: Icofont;
  display: inline-block;
  font-size: 1.5em;
  color: #ccc;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.wrapperStar input:checked ~ label:before {
  color: #FFC107;
}
.wrapperStar label:hover ~ label:before {
  color: #ffdb70;
}
.wrapperStar label:hover:before {
  color: #FFC107;
}
.submitBtn input{
	background: #0b71e1;
  color: #fff;
  border: 0;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
}

.RightCol .dropdown-menu{
	z-index: 999;
}
.sticky.is-sticky{
	z-index: 99999;
}
.fancybox-container{
	z-index: 9999999;
}
.table tbody tr td {
  padding: 10px;
  font-size: 14px;
}
/***********************************************
related package
*************************************************/
.relatedPackages{
	margin-top: 60px;
}
/*******************************************
booking infos
***************************************/
.bookingBox h2{
	font:500 26px 'Abril Fatface', cursive;
	margin-bottom: 20px;
}
.commonOuterBox {
  padding: 25px;
  border: 1px solid #ededed;
  box-shadow: 0 1px 9px rgba(0,0,0,0.1);
  box-sizing: border-box;
}
.bookingImg img{
	width: 100%;
}
.bookingInfos h4{
	/*font:500 22px 'Abril Fatface', cursive;*/
	font:600 22px 'Roboto';
	margin-bottom: 10px;
}
.bookingInfos ul{
	display: flex;
	flex-wrap: wrap;
}
.bookingInfos ul li{
	display: flex;
	flex-basis: calc(100%/3);
	flex-direction: column;
}
.bookingInfos ul li{
	margin-bottom: 10px;
}
.bookingInfos ul li p{
	font-weight: 500;
}
.totalPrice{
	font-size: 15px;
	font-weight: 500;
	color: #0b71e1;
}
.bookingBox{
	margin-bottom: 30px;
}
.titleBook{
	font-weight: 500;
	display: inline-block;
	margin-bottom: 5px;
}
.bookBtnSubmit input{
	padding: 10px 30px;
}
.astrick {
    color: #da5869;
}
/*********************************
side bar
***************************************/
.callInfos p{
	font-size: 15px;
	margin-bottom: 0;
}
.callInfos p span{
	font-weight: 500;
	position: relative;
	top: 5px;
}
.callInfosIc{
	float: left;
	width: 30px;
	overflow: hidden;
	font-size: 30px;
	margin-right: 8px;
}
.callInfos{
	float: left;
}
.callInfosOperated ul li{
	margin-bottom: 10px;
}
.callInfosOperated ul li:last-child{
	margin-bottom: 0;
}
.sideBox p{
	font-size: 14px;
	line-height: 25px;
}
/*********************************************
customize trips
*******************************************/
.innerTitles{
	font: 500 24px 'Abril Fatface', cursive;
	margin-bottom: 10px;
}
.leftCol p{
	margin-bottom: 15px;
	line-height: 25px;
}
.leftCol .alert-primary p{
	margin-bottom: 0;
}
.alert-primary{
	border-radius: 0;
	margin: 8px 0;
}
.customizeBox form {
  background: #eee;
  padding: 15px 15px;
  margin-top: 40px;
}
.cutsomTitleForm {
  font: 500 20px 'Abril Fatface', cursive;
  font-weight: 500;
  margin-bottom: 15px;
}
.textRed {
  color: #da5869;
  font-size: 12px;
}
/**************************************
client review
***************************************/
.reviewBoxList {
  margin: 10px 0 30px;
  border-bottom: 1px solid #e1e2e3;
  padding-bottom: 20px;
  display: none;
}
/***********************************
about us
**************************************/
.aboutLeft p {
  line-height: 24px;
  margin-bottom: 10px;
}
.detailBg {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
}
.aboutRightList p{
	margin-bottom: 0;
}
.aboutRightList i{
	font-size: 45px;
	color: #18458b;
}
.aboutRightList span{
	text-transform: uppercase;
	font-weight: 600;
}
.aboutRight .detailBg{
	padding: 20px;
}
.aboutRightList p strong{
	font-size: 20px;
	font-weight: 600;
}
.aboutRightList p{
	margin: 10px 0 5px;
}
/************************************
common page
****************************************/
.commonWrap figure img{
	width: 100%;
	margin-bottom: 15px;
}
.commonWrapTitle {
  font: 500 30px 'Abril Fatface', cursive;
  margin-bottom: 10px;
}
.commonWrap p{
	margin-bottom: 10px;
}
/***********************************
pagination
************************************/
.mainPagination{
	margin-top: 30px;
}
.pagination li{
	font-size: 20px;
	margin-right: 5px;
}
.pagination>li>a.page-link{ 
	height: 35px;
	width: 35px;
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
	padding: 0;
	margin:0 5px;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.page-item:last-child .page-link {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
/*********************************
blog listing
************************************/
.outerListing{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background:#fff;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	-ms-box-shadow: 0 0 20px rgba(0,0,0,0.2);
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	border:1px solid #f6f6f6;
}
.outerListing figure{
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
	-webkit-transition: all ease-in-out 0.8s;
	-moz-transition: all ease-in-out 0.8s;
	-ms-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s
}
.outerListingContent{
	flex:1 0 auto;
	padding: 15px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.outerListingContent h3{
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 5px;
}
.outerListingContent p{
	line-height: 24px;
	flex:1 0 auto;
	margin-bottom: 10px;
}
.readMore{
	border: 1px solid #334d88;
  padding: 10px 25px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all ease-in-out 0.8s;
  -moz-transition: all ease-in-out 0.8s;
  -ms-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s
}
.outerListing:hover .readMore{
	background:#334d88;
	color: #fff;
	-webkit-box-shadow: 0 0 30px rgba(51,77,136,0.8);
	-moz-box-shadow: 0 0 30px rgba(51,77,136,0.8);
	-ms-box-shadow: 0 0 30px rgba(51,77,136,0.8);
	box-shadow: 0 0 30px rgba(51,77,136,0.8);
}
.outerListing figure img{
	-webkit-transition: all ease-in-out 0.8s;
	-moz-transition: all ease-in-out 0.8s;
	-ms-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s;
	width: 100%;
}
.outerListing:hover figure img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.listingBox{
	margin-bottom: 20px;
}
/****************************************
team member
********************************************/
.ourTeam{
  padding: 0 20px;
  text-align: center;
  position: relative;
  border: 1px solid #dcd6d6;
  padding: 20px 0;
  background: #fff;
}
.ourTeam .pic{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
}
.ourTeam .pic img{
  width: 100%;
  height: auto;
}
.ourTeam .social{
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  transition: all 0.7s ease 0s;
}
.social li{
	display: inline-block;
}
.ourTeam .social  li a{
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  font-size: 13px;
  color: #001d33;
  border: 1px solid #001D33;
  background: #fff;
  transition: all 0.7s ease 0s;
}
.ourTeam .social li a:hover{
  color: #fff;
  background: #001d33;
}
.ourTeam .title{
	font-family: 'Roboto';
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}
.teamListCol{
	margin-bottom: 20px;
}
@media only screen and (max-width: 990px){
  .ourTeam{ margin-bottom: 0; }
}
.teamContent span{
	display: block;
	font-size: 14px;
}
.social li{
	margin-bottom: 5px;
}
.teamContent span{
	margin-bottom: 5px;
}
/*****************************************
contact us
************************************/
.companyMap iframe{
	width: 100%;
	height: 400px;
	margin-bottom: 30px;
}

.contactFormBg{
	background: #fff;
	box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.25);
	padding: 15px;
	box-sizing: border-box;
}
.contactSubmit input{
  background: #0b71e1;
  color: #fff;
  border: 0;
  padding: 6px 20px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.contactBoxSide{
	background: #f6f6f6;
	padding: 15px;
	box-sizing: border-box;
}
.branchContact{
	font-size: 18px;
	font-weight: 600;
}
.contactBoxSide ul li{
	margin-bottom: 10px;
}
.contactBoxSide ul li;last-child{
	margin-bottom: 0;
}
.contactBoxSide{
	margin-bottom: 20px;
}
.contactBlock{
	margin-top: 40px;
}
.formTitle{
	margin-bottom: 10px;
}
.contactBoxSide h2{
	font:500 18px 'Roboto';
	margin-bottom: 10px;
}