body 
{
	font-size: 16px;
	color: #222;
	font-family: 'Montserrat', sans-serif;
}
 
a
{
	transition: color 0.2s linear;
	-webkit-transition: color 0.2s linear;
}
 
a:hover,
a:active,
a:focus
{
  text-decoration: none;
}

h1
{
	font-size: 24px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span
{
	color: rgb(16, 100, 220);
}

@media (min-width: 768px)
{

	.clear-padding-left
	{
		padding-left: 0;
	}

	.clear-padding-right
	{
		padding-right: 0;
	}
}

.button
{
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	background-color: rgb(16, 100, 220);
	border: solid 1px rgb(16, 100, 220);
	border-radius: 3px;
	padding: 10px;
	text-align: center;
}

.button.border
{
	background-color: transparent;
	border: solid 3px #fff;
}

@media (min-width: 768px)
{
	.button:hover
	{
		color: #ccc;
	}
}

/* clearfix */
.group:after {
    content: "";
    display: table;
    clear: both;
}

header.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.top-bar
{
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 200px;
    left: 0;
	text-align: center;
	z-index: 9;
	min-height: 0;
}

.fixed .top-bar {
	background-color: #fff;
}

.top-bar .container {
	max-height: 0px;
	overflow: hidden;
	transition: all 500ms ease-in-out;
  	-webkit-transition: all 500ms ease-in-out;
}

.top-bar.open .container {
	max-height: 125px;
}

@media (min-width: 768px)
{
	.top-bar
	{
		text-align: left;
		background-color: rgba(16, 100, 220, 0.88);
		top: 52px;
		max-height: 125px;
		border-bottom: solid 1px rgba(255,255,255,0.25);
	}

	.front .top-bar
	{
		background-color: transparent;
	}

	.top-bar .container {
		max-height: none;
		overflow: visible;
	}

	.fixed .top-bar {
		display: none;
	}
}

@media (min-width: 768px)
{
	.top-bar a
	{
		color: #fff;
	}

	.top-bar a:hover
	{
		color: #ccc;
	}
}

.contact a
{
	font-size: 12px;
	display: inline-block;
	padding: 17px 0;
}

.top-nav
{
	font-size: 13px;
}

.top-nav .lang
{
	margin: 4px 0;
	padding: 0;

}

.top-nav .info
{
	margin: 4px 0;
	padding: 0;
	border-bottom: solid 1px #7c87a6;
}

.top-nav .lang li,
.top-nav .info li
{
	list-style: none;
	display: inline-block;
}

.top-nav .lang li a,
.top-nav .info li a
{
	padding: 6px;
	display: inline-block;
}

@media (min-width: 768px)
{

	.top-nav .lang
	{
		background: url(/images/template/line.png) no-repeat right center;
		float: right;
	}

	.top-nav .info
	{
		float: right;
		border-bottom: none;
	}

	.top-nav .lang li,
	.top-nav .info li
	{
		display: inline;
	}

	.top-nav .lang li a,
	.top-nav .info li a
	{
		padding: 12px;
	}

	.top-nav .lang li:last-child a
	{
		padding-right: 20px;
	}

	.top-nav .info li:first-child a
	{
		padding-left: 20px;
	}

	.top-nav .info li:last-child a
	{
		padding-right: 0px;
	}
}

.nav-bar
{
	  background-color: rgb(16, 100, 220);
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0;
    z-index: 10;
    border-bottom: solid 1px rgba(255,255,255,0.25);
    /*transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;*/
}

.fixed .nav-bar {
	top: 0;
}

.front .nav-bar
{
	background-color: transparent;
}

.fixed .nav-bar,
.fixed.front .nav-bar {
	background-color: #fff;
}

@media (min-width: 768px)
{
	.nav-bar
	{
	    /*top: 52px;*/
	}
}

.logo
{
	margin: 17px 0 7px;
}

.fixed .logo {
	margin: 13px 0;
}

.logo a:not(#mobile-nav) {
	background: url(/images/template/logo.png) no-repeat;
    width: 168px;
    height: 24px;
    display: inline-block;
    transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
}

.fixed .logo a:not(#mobile-nav) {
	background: url(/images/template/logo-blue.png) no-repeat;
}

#mobile-nav
{
	float: right;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	display: block;
	position: relative;
	padding-top: 16px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.fixed #mobile-nav {
	color: #333;
}

#mobile-nav:hover
{
	text-decoration: none;
}

@media (min-width: 768px)
{
	#mobile-nav
	{
		display: none;
	}
}

#mobile-nav div
{
	position: absolute;
	top: 0;
	left: 0;
}


#mobile-nav span, #mobile-nav span:before, #mobile-nav span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 4px;
  width: 35px;
  background: white;
  position: absolute;
  display: block;
  content: '';
}

.fixed #mobile-nav span, .fixed #mobile-nav span:before, .fixed #mobile-nav span:after {
	background: #333;
}
#mobile-nav span:before {
  top: -8px;
}
#mobile-nav span:after {
  bottom: -8px; 
}

#mobile-nav span, #mobile-nav span:before, #mobile-nav span:after {
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}
#mobile-nav.active span {
  background-color: transparent;
}
#mobile-nav.active span:before, #mobile-nav.active span:after {
  top: 0;
}
#mobile-nav.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#mobile-nav.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.main-nav
{
	background-color: rgba(16, 100, 220,1);
	min-height: 0px;
	/*transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;*/
}

.fixed .main-nav
{
	background-color: #fff;
}

@media (min-width: 768px)
{
	.main-nav
	{
		background-color: transparent;
	}
}

.main-nav ul
{
	margin: 0;
	padding: 0;
	max-height: 0;
	transition: all 500ms ease-in-out;
  	-webkit-transition: all 500ms ease-in-out;
  	overflow: hidden;
}

.main-nav.open > ul
{
	max-height: 400px;
}

@media (min-width: 768px)
{
	.main-nav ul
	{
		float: right;
		margin: 10px 0;
		max-height: none;
		overflow: visible;
	}
}

.main-nav ul li
{
	list-style: none;
	position: relative;
}

@media (min-width: 768px)
{
	.main-nav ul li
	{
		display: inline-block;
	}
}

.main-nav ul li a
{
	color: #fff;
	text-transform: uppercase;
	padding: 9px 6px 5px;
	display: inline-block;
	font-size: 14px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	
}
@media (max-width: 991px)
	{
		.main-nav ul li a
		{
			font-size: 11px;
		}
	}

.fixed .main-nav ul li a
{
	color: rgb(16, 100, 220);
}

@media (min-width: 992px)
{

	.main-nav ul li a
	{
		font-size: 15px;
	}

	.fixed .main-nav ul li a
	{
		padding: 9px 6px 5px;
	}
}

.main-nav > ul > li:last-child a
{
	padding-right: 0;
}

@media (min-width: 992px)
{
	.main-nav ul li a:hover,
	.main-nav ul li a:focus
	{
		color: #ccc;
	}
}

.main-nav ul li.parent > a.opener
{
	display: inline-block;
	background: url(/images/template/arrow.png) no-repeat right center;
	width: 30px;
	height: 10px;
    padding: 0;
    transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.main-nav ul li.parent.open > a.opener {
	transform: rotateX(180deg);
}

.fixed .main-nav ul li.parent > a.opener {
	background: url(/images/template/arrow-dark.png) no-repeat right center;
}

@media (min-width: 768px)
{
	.main-nav ul li.parent > a
	{
		background: url(/images/template/arrow.png) no-repeat right center;
		padding-right: 25px;
		transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
	}

	.fixed .main-nav ul li.parent > a {
		background: url(/images/template/arrow-dark.png) no-repeat right center;
	}

	.main-nav ul li.parent > a.opener
	{
		display: none;
	}
}

.main-nav ul li ul
{
	max-height: 0;
	transition: opacity 0.2s linear, max-height 0.2s linear, background-color 0.5s linear;
	-webkit-transition: opacity 0.2s linear, max-height 0.2s linear, background-color 0.5s linear;
	
	overflow: hidden;
}

@media (min-width: 768px)
{
	.main-nav ul li ul
	{
		background-color: rgb(16, 100, 220);
	}

	.fixed .main-nav ul li ul
	{
		background-color: #fff;
	}
}

.front .main-nav ul li ul
{
	background-color: rgba(16, 100, 220,1);
}

.fixed.front .main-nav ul li ul
{
	background-color: #fff;
}

.main-nav.open ul li.open ul
{
	max-height: 300px;
}

@media (min-width: 768px)
{
	.main-nav ul li ul
	{
		position: absolute;
		top: 30px;
		left: -9999em;
		opacity: 0;
		z-index: 10;
		max-height: none;
		padding: 20px 15px;
		width: 200px;
	}

	.fixed .main-nav ul li ul
	{
		top: 20px;
	}

	.main-nav ul li:hover ul,
	.main-nav ul li a:focus ~ ul
	{
		opacity: 1;
		left: 0;
		max-height: none;
	}
}

.main-nav ul li ul a,
.fixed .main-nav ul li ul a
{
	padding-left: 30px;
}

@media (min-width: 768px)
{
	.main-nav ul li ul a,
	.fixed .main-nav ul li ul a
	{
		padding-left: 15px;
	}
}

.hero
{
	background-image: url(/images/template/head-front-web-new.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 200px;
	padding-bottom: 5%;
	text-align: center;
	color: #fff;
	/*min-height: 450px;*/
	height: 100vh;
}

@media (min-width: 768px)
{
	.hero
	{
		padding-top: 5%;
	}
}
@media (max-height: 414px)
{
	.hero
	{
		padding-top: 20%;
	}
}
@media (max-height: 320px)
{
	.hero
	{
		padding-top: 10%;
	}
}

.hero h1
{
	font-size: 24px;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

@media (min-width: 768px)
{
	.hero h1
	{
		font-size: 36px;
	}
}

.hero p
{
	font-size: 18px;
}

@media (min-width: 768px)
{
	.hero .button
	{
		font-size: 16px;
		padding-left: 25px;
		padding-right: 25px;
	}
}

.hero .first-button .button
{
	width: 100%;
	font-size: 13px;
	margin: 0 0 20px 0;
	text-align: center;
}
@media (min-width: 768px)
{
	.hero .buttons
	{
		padding: 0 0 30px;
	}
}
@media (min-width: 320px)
{
	.hero .buttons
	{
		padding: 0 0 20px;
	}
}
.hero .second-button
{
	text-align: left;
}

.main.front
{
	background: url(/images/template/wall.jpg) no-repeat;
	background-size: cover;
	text-align: center;
	margin-top: 0;
}

.main.front h1
{
	font-size: 26px;
	text-transform: uppercase;
	margin-top: 50px;
	margin-bottom: 40px;
}

.main.front h2
{
	font-size: 40px;
	text-transform: uppercase;
	margin-top: 100px;
	margin-bottom: 60px;
}

.main.front p
{
	font-size: 18px;
}

.main
{
	margin-top: 200px;
}

@media (min-width: 768px)
{
	.main
	{
		margin-top: 140px;

	}
}

.main img,
.gallery-item img
{
	border: solid 3px #f1f1f1;
	margin-bottom: 30px;
	max-width: 100%;
}

@media (min-width: 768px)
{

	.main .align-right
	{
		float: right;
		margin-top: 30px;
		margin-bottom: 30px;
		margin-left: 50px;
	}

	.main .align-left
	{
		float: left;
		margin-top: 30px;
		margin-bottom: 30px;
		margin-right: 50px;
	}

}

.main .container
{
	border-bottom: solid 1px #ccc;
	padding-bottom: 40px;
}

.main.front .container
{
	border-bottom: none;
}

.main ul,
.tour .content ul
{
	padding-left: 0;
}

.main ul li,
.tour .content ul li
{
	list-style: none;
	background: url(/images/template/dot.png) no-repeat 0 8px;
	padding-left: 20px;

}

.main ul li li,
.tour .content ul li li
{
	list-style: none;
	background: url(/images/template/dot2.png) no-repeat 10px 8px;
	padding-left: 30px;
}

.popular .item
{
	background-size: cover;
	position: relevant;
	padding: 0;
}

.popular .item .content
{
	margin-top: 70%;
	min-height: 120px;
	background-color: rgba(255,255,255,0.8);
	padding: 20px 20px 60px;
}

.popular .item .content h3
{
	font-size: 18px;
	margin: 0;
	text-transform: uppercase;
	line-height: 1.1;
	max-height: 38px;
	overflow: hidden;
}

.popular .item .content .time
{
	position: absolute;
	margin: 0;
	bottom: 30px;
	left: 20px;
	padding-left: 25px;
	background: url(/images/template/time2.png) no-repeat left 0px;
	max-width: 40%;
	line-height: 1.1;
	max-height: 17px;
}

@media (min-width: 1200px)
{
	.popular .item .content .time
	{
		max-width: 50%;
	}
}

.popular .item .content .button
{
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.featured
{
	background: url(/images/template/rocks.jpg) no-repeat;
	background-size: cover;
	color: #fff;
	padding-top: 70px;
	padding-bottom: 60px;
	position: relative;
	text-align: center;
	/*min-height: 650px;*/
}

@media (min-width: 768px)
{
	.featured
	{
		text-align: left;
	}
}

@media (max-width: 375px)
{
	.fronttrip
	{
	   width:150px;
	}
	.hero {
		padding-top: 100px!important;
	}
}

@media (max-width: 414px)
{
	.fronttrip
	{
	   width:230px;
	}
	.hero {
		padding-top: 120px!important;
	}
}

.featured .controls .prev
{
	background: url(/images/template/arrow-left.png);
	display: block;
	position: absolute;
	top: 47%;
	left: 2%;
	width: 27px;
	height: 46px;
	z-index: 10;
}

.featured .controls .next
{
	background: url(/images/template/arrow-right.png);
	display: block;
	position: absolute;
	top: 47%;
	right: 2%;
	width: 27px;
	height: 46px;
	z-index: 10;
}

@media (min-width: 1200px)
{
	.featured .controls .prev
	{
		left: 5%;
	}

	.featured .controls .next
	{
		right: 5%;
	}
}

.featured h2
{
	text-align: center;
	font-size: 40px;
	color: #ccc;
	text-transform: uppercase;
	margin-bottom: 70px;
}

.featured h2 span
{
	color: #999;
}

.featured h3
{
	font-size: 24px;
	text-transform: uppercase;
	margin-top: 0;
}

.featured .time
{
	padding-left: 0;
	padding-top: 30px;
	padding-bottom: 2px;
	background: url(/images/template/time3.png) no-repeat center top;
}

@media (min-width: 768px)
{
	.featured .time
	{
		padding-left: 35px;
		padding-top: 2px;
		background: url(/images/template/time3.png) no-repeat left top;
	}
}

.featured .button
{
	margin-right: 20px;
	margin-bottom: 20px;
}

.featured-slider
{
	overflow: hidden;
}

@media (min-width: 768px)
{
	.featured-slider
	{
		height: 400px;
		min-height: 400px;
		max-height: 400px;
	}
}

.featured-gallery
{
	width: 100%;
	overflow: hidden;
}

.featured-gallery ul
{
	margin: 0;
	padding: 0;
}

.featured-gallery ul li
{
	list-style: none;
	float: left;
}

.featured-gallery ul li img
{
	max-width: 96%;
	border: solid 10px #fff;
	border-radius: 3px;
}

.gallery-controls
{
	text-align: center;
	margin-top: 20px;
}

.gallery-controls a
{
	display: inline-block;
	background: url(/images/template/dot3.png) no-repeat center center;
	text-indent: -9999em;
	width: 15px;
	height: 15px;
}

.gallery-controls a.current
{
	opacity: 0.5;
}

.gallery
{
	margin-bottom: 80px;
}

.gallery h1
{
	margin-bottom: 50px;
	padding-left: 15px;
}

@media (min-width: 768px)
{
	.gallery h1
	{
		padding-left: 0;
	}
}

.gallery .item
{
	margin: 15px 0;
	text-align: center;
}

.gallery .item img
{
	border: solid 3px #f1f1f1;
}

.reviews
{
	background-color: #e1e1e1;
	padding-bottom: 65px;
}

.reviews h1
{
	font-size: 40px;
	color: #2e2e2e;
	text-align: center;
	text-transform: uppercase;
	margin-top: 60px;
}

.reviews .item
{
	text-align: center;
}

.reviews .item p
{
	color: #333;
	font-size: 18px;
	font-style: italic;
	
}

.reviews .item p span
{
	color: #888;
	font-size: 18px;
	font-style: normal;
}

.review-list h2 {
	margin-bottom: 0.2em;
}

.review-list .stars {
	margin-bottom: 1em;
}

.review-list .stars .star {
    overflow: hidden;
    float: left;
    margin: 0px 1px 0px 1px;
    width: 14px;
    height: 14px;
    background: url(/images/template/bg-stars.gif) no-repeat 0 1px;
    text-indent: -9999px;
}

.review-list p { 
	clear: both;
	font-style: italic;
}

.gallery-item {
	text-align: center;
	margin-bottom: 20px;
	min-height: 230px;
}

.gallery-item.no-text {
	min-height: auto;
}

.gallery-item a {
	display: block;
}

.gallery-item a img {
	margin-bottom: 10px;
	width: 100%;
}

.gallery-paging {
	padding-left: 15px;
	padding-right: 15px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tour .content ul.gallery-paging li {
	list-style: none;
	background: none;
	display: inline-block;
}

ul.gallery-paging li a {
	display: block;
	padding: 4px 10px;
	border: solid 1px #f1f1f1;
	margin-bottom: 10px;
}

ul.gallery-paging li.current a {
	color: #222;
}

.tours-list {
	margin-bottom: 30px;
}

.tour-item img {
	width: 100%;
	margin-bottom: 10px;
}

.tour
{
	background-size: auto 285px;
	background-position: center top;
	background-repeat: no-repeat;
	padding-top: 285px;
}

@media (min-width: 768px)
{
	.tour
	{
		background-size: 100%;
		background-repeat: no-repeat;
		padding-top: 37.5%;
	}
}

.tour h1
{
	text-align: center;
	font-size: 24px;
	color: #fff;
	text-shadow: 1px 1px 1px #222;
	margin-top: -60px;
}

.tour h1.long
{
	margin-top: -75px;
}

@media (min-width: 768px)
{
	.tour h1
	{
		font-size: 36px;
		margin-top: -22%;
		float: left;
		width: 100%;
	}

	.tour h1.long
	{
		margin-top: -30%;
	}
}

@media (min-width: 992px)
{
	.tour h1
	{
		margin-top: -20%;
	}

	
}

.tour .tour-nav
{
	display: none;
}

@media (min-width: 768px)
{
	.tour .tour-nav
	{
		display: block;
		clear: both;
		margin-top: -119px;
	}
}

.tour .tour-nav ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}

.tour .tour-nav ul li
{
	display: inline-block;
	text-transform: uppercase;
	text-align: center;
}

.tour .tour-nav ul li.active,
.tour .tour-nav ul li:hover
{
	display: inline-block;
	
	border-top: solid 4px rgb(16, 100, 220);
}

.tour .tour-nav ul li a
{
	background-color: #fff;
	font-size: 14px;
	color: rgb(16, 100, 220);
	display: block;
	padding: 15px;
	min-width: 140px;
}

.tour .tour-nav ul li.active a,
.tour .tour-nav ul li:hover a
{
	background-color: rgb(16, 100, 220);
	color: #fff;
}

@media (min-width: 768px)
{
	.tour .tour-info
	{
		margin-top: -65px;
	}
}

.tour .tour-info .row div
{
	background-color: #fff;
	padding: 20px 40px;
}

@media (min-width: 768px)
{
	.tour .tour-info .row div
	{
		border-top: solid 5px rgb(16, 100, 220);
		padding: 20px 25px;
	}
}

.tour .tour-info .row .duration
{
	background: #fff url(/images/template/time.png) no-repeat 15px center;
	padding-left: 40px;
}

.tour .tour-info .departure
{
	background: url(/images/template/bag.png) no-repeat 15px center;
}


.tour .tour-info .passengers
{
	background: url(/images/template/people.png) no-repeat 15px center;
}

@media (min-width: 768px)
{
	.tour .tour-info .departure
	{
		background: url(/images/template/bag.png) no-repeat center left;
	}


	.tour .tour-info .passengers
	{
		background: url(/images/template/people.png) no-repeat center left;
	}
}

.tour .tour-info .row .line-holder
{
	border-top: none;
	padding: 0 15px;
}

.tour .tour-info .row .line
{
	border-top: solid 1px #ccc;
	padding: 0;
}

.tour > .container > .row
{
	position: relative;
	background-color: #fff;
}

@media (min-width: 768px)
{
	.tour .tab
	{
		position: absolute;
		top: 4px;
		left: 0;
		background-color: #fff;
		opacity: 0;
		transition: opacity 0.5s ease-in-out;
		-webkit-transition: opacity 0.5s ease-in-out;
	}
}

@media (min-width: 992px)
{
	.tour .tab
	{
		top: 4px;
	}
}


@media (min-width: 768px)
{
	.tour .tab.active
	{
		z-index: 10;
		opacity: 1;
	}
}

@media (max-width: 767px)
{
	.tour .tab h2.tab-heading
	{
		color: #fff;
		background-color: rgb(16, 100, 220);
		padding: 15px;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: 1px 1px 1px #ccc;
		cursor: pointer;
		margin-top: 20px;
	}
}

.tour .tab .content
{
	padding: 0 20px;
	border: solid 1px #324374;
	
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	box-shadow: 1px 1px 1px #ccc;
	transition: max-height 0.5s linear;
	-webkit-transition: max-height 0.5s linear;
	position: absolute;
	top: 0;
	left: -9999em;
}

@media (min-width: 768px)
{
	.tour .tab .content
	{
		padding: 0;
		border: none;
		box-shadow: none;
		position: static;
		left: auto;
		top: auto;
	}
}

.tour .tab .content.active
{
	position: static;
	left: auto;
	top: auto;
}

.tour .book
{
	/*background-color: #777;
	border: solid 1px #777;
	border-radius: 4px;
	padding: 20px;
	margin-top: 40px;*/
	text-align: center;
}

@media (min-width: 768px)
{
	.tour .book
	{
		float: right;
	}
}

.tour .book h2
{
	/*color: #fff;*/
}

.tour .book .form-field
{
	position: relative;
}

.tour .book input[type=text],
.tour .book select
{
	background-color: #e4e4e4;
	border: solid 1px #e4e4e4;
	border-radius: 4px;
	color: #777;
	width: 100%;
	margin-bottom: 10px;
	padding: 15px;
	-webkit-appearance: none;
}

.tour .book select
{
	padding: 14px;
}

.tour .book input[type=text]:focus[placeholder]::-webkit-input-placeholder
{
    opacity: 0;
}

.tour .book label
{
	position: absolute;
	top: 0;
	left: -9999em;
	color: #777;
	font-size: 12px;
	transition: opacity 0.3s linear;
	-webkit-transition: opacity 0.3s linear;
	opacity: 0;
}

.tour .book input[type=text]:focus + label,
.tour .book select:focus + label
{
	left: 10px;
	opacity: 1;
}

.tour .book .number
{
	width: 32%;
	float: left;
	margin-right: 10px;
}

@media (min-width: 992px)
{
	.tour .book .number
	{
		width: 33%;
	}
}

.tour .book .date
{
	width: 63%;
	float: left;
}

.tour .book .button
{
	margin-bottom: -35px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}

.tour .back a.button
{
	margin: 20px auto;
	width: 250px;
    display: block;
}

.header-video
{
	/*display: none;*/
	background-size: auto 285px;
    background-position: center top;
    background-repeat: no-repeat;
	height: 285px;
	margin-top: -285px;
}

@media (min-width: 768px)
{
	.header-video
	{
		height: auto;
		margin-top: 0;
		background-image: none !important;
	}
}

.header-video video
{
	position: absolute;
	top: 25%;
  	left: 50%;
  	min-width: 100%;
  	/*min-height: 100%;*/
  	width: 100%;
  	height: auto;
  	z-index: -100;
  	transform: translate(-50%, -50%);

  	background-color:transparent;
  	background-repeat: no-repeat;
  	background-position: 0 0;
	display: none;
}

@media (min-width: 768px)
{
	.header-video video
	{
		width: auto;
		top: 50%;
		display: block;
	}
}

footer
{
	background-color: #333;
	padding-top: 80px;
	text-align: center;
}

.falid
{
	display:none;
}

.error, .req
{
	color:#d00;
}

@media (min-width: 768px)
{
	footer
	{
		text-align: left;
	}
}

footer h1
{
	color: #fff;
	font-size: 20px;
}

footer a
{
	color: #ccc;
}

footer a:hover
{
	color: #fff;
}

footer .email,
footer .phone
{
	font-size: 17px;
	padding: 45px 0 15px;
	display: block;

}

footer .email
{
	background: url(/images/template/email.png) no-repeat center 8px;
}

footer .phone
{
	background: url(/images/template/phone.png) no-repeat center top;
}

@media (min-width: 768px)
{
	footer .email,
	footer .phone
	{
		padding-left: 40px;
		padding-top: 15px;
	}

	footer .email
	{
		background: url(/images/template/email.png) no-repeat left center;
	}

	footer .phone
	{
		background: url(/images/template/phone.png) no-repeat 3px center;
	}
}





footer .fb h1
{
	background: url(/images/template/fb.png) no-repeat center top;
	padding-top: 35px;
}

@media (min-width: 768px)
{
	footer .fb h1
	{
		background: url(/images/template/fb.png) no-repeat 130px center;
		padding-top: 0;

	}
}

footer .fb h2
{
	font-size: 14px;
}

footer .badges
{
	margin-top: 20px;
}

footer .badges a.badge
{
	padding-right: 20px;
}

footer .badges .ta-badge
{
	display: inline-block;
}

@media (min-width: 768px)
{
	footer .badges .ta-badge
	{
		float: left;
	}

	footer .badges a.badge
	{
		float: left;
	}
}

footer .badges a:first-child
{
	margin-left: -30px;
}

footer .bottom
{
	border-top: solid 1px #515151;
	padding-top: 40px;
	padding-bottom: 150px;
	margin-top: 20px;
}

footer .address
{
	font-size: 14px;
	color: #ccc;
	margin-top: 0;
}

@media (min-width: 768px)
{
	footer .address
	{
		text-align: right;
	}
}

/* our jeeps hluti */
.img-holder {
	float: right;
	padding-left: 20px;

}

.post {
	margin-top: 20px;
	margin-bottom: 20px;
	border-bottom: 2px solid #ccc;
	min-height: 210px;
}


.tab-booking
{
	clear:both;
	float:left;
	margin:20px 0px 20px 0px;
	padding:10px 0px 0px 0px;
	width:100%;
	background:rgb(16, 100, 220);
}

.tab-booking h2
{
	margin:0px;
	padding:0px;
	line-height:35px;
	font-size:20px;
	color:#fff;
	text-transform:uppercase;
}

.tab-booking ul
{
	clear:both;
	float:left;
	margin:0px;
	padding:3px 0px;
	width:100%;
	list-style:none;
}

.tab-booking ul li
{
	float:left;
	width:50%;
}

.tab-booking ul li + li
{
	float:right;
}

.tab-booking ul li:first-child:last-child
{
	width:100%;
}

.tab-booking ul li a
{
	float:left;
	padding:10px 0px 5px 0px;
	width:100%;
	height:35px;
	line-height:15px;
	font-size:12px;
	font-weight:bold;
	color:#ffffff;
	text-transform:uppercase;
	background:rgb(16, 100, 220);
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	box-sizing:border-box;
}

.tab-booking ul li a:focus
{
	outline:none;
}

.tab-booking ul li.active a
{
	color:rgb(16, 100, 220);
	padding:8px 0px 7px 0px;
	background:#ffffff;
}

.tab-booking ul li:hover a
{
	color:rgb(16, 100, 220);
	background:#ffffff;
}

.tab-booking ~ div
{
	overflow:hidden;
	clear:both;
	float:left;
	width:100%;
	max-height:0px;
}

.tab-booking ~ div.active
{
	overflow:auto;
	max-height:none;
}


.article
{
	border-top: solid 5px rgb(16, 100, 220);
}

.fronttrip
{
	max-width:180px;
	height:auto !important;
}


header + .popular
{
	margin-top:104px;
}

@media screen and (max-width:767px)
{
	header + .popular
	{
		margin-top:55px;
	}
}


.popular .item .content .time.price
{
	padding-left:0px;
	bottom:23px;
	max-height: 34px;
	background:none;
}

@media screen and (max-width:480px)
{
	.popular .item .content .time.price
	{
		bottom:25px;
		font-size:12px;
	}
}

.hero,
.hero[style]
{
	padding-top:140px !important;
	padding-bottom:120px !important;
	min-height:auto !important;
	height:auto !important;
	background-position:center left;
}

@media screen and (max-width:992px)
{
	.hero,
	.hero[style]
	{
		padding-top:70px !important;
		padding-bottom:60px !important;
	}	
}

.icon-app a
{
	display:inline-block;
	margin-top:54px;
	padding:10px 15px;
	background-color: rgb(0, 0, 0);
	border-radius:3px;
	transition:background 200ms;
}

.icon-app a:hover
{
	background-color: rgb(16, 100, 220);
}

.icon-app a img
{
	vertical-align:bottom;
}

@media screen and (max-width:992px)
{
	.icon-app a
	{
		margin-top:0px;
		margin-bottom:20px;
	}
}

.book-now-special {
    background-color: rgb(16, 100, 220) !important;
    color: white;
    padding: 15px 30px;
    text-transform: uppercase;
}

.promo {
    background-color: #1064dc;
    color: white;
    text-transform: uppercase;
}


@media screen and (min-width:768px)
{
	.top-nav .info li.box::before
	{
		content:' ';
		display:inline-block;
		width:1px;
		height:9px;
		background: url(/images/template/line.png) no-repeat left center;
	}

	.top-nav .info li.box a
	{
		padding:1px 5px;
		margin:10px 0px 10px 15px;
		text-transform:uppercase;
		border:1px solid #fff;
		border-radius:1px;
	}

	.top-nav .info li.box a:hover
	{
		color:#fff;
		background:rgb(16, 100, 220);
	}
}

@media screen and (min-width:768px) and (max-width:991px)
{
	.main-nav ul li a
	{
		padding-left:5px;
		padding-right:5px;
	}

	.top-nav .lang li a, .top-nav .info li a
	{
		padding:12px 6px;
	}

	.col-sm-4.contact
	{
		width:20%;
	}

	.col-sm-8.top-nav
	{
		width:80%;
	}
}

@media (max-width: 767px)
{
	.top-bar
	{
		position:fixed;
		top:auto;
		bottom:0px;
	}
}

/* MOBILE FIX */
@media (max-width: 767px)
{
	header.fixed,
	.top-bar,
	.nav-bar
	{
 	   z-index: 999999 !important;
	}
}
