html, body{
	height: 100%;
}
body{
	margin: 0;	
	font-family: 'Montserrat', sans-serif;
}

body a{
	text-decoration: none;
}
.container{
	max-width: 1170px;
	min-width: 300px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
	height: auto;
}

/* ****Header**** */

header{
	height: 100%;
	background-color: lightgrey;
	overflow: hidden;
	min-width: 320px;
}

.nopic{
        height:auto;
}
/* ****mobilemenu**** */

.mobilemenu{
	width: 100%;
	height: 45px;
	position: fixed;
	top: 0;
	background-color: white;
	padding-left: 15px;
	padding-top: 5px;
	z-index: 96;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(5, 5, 5, 0.5);
	        box-shadow: 0px 0px 4px 1px rgba(5, 5, 5, 0.5);
	display: none;

}

.mobilemenu ul li{
	display: none;
}


.menuicon{
	width: 40px;
	height: 40px;
	background-image: url('../images/menuicon.png');
	background-size: cover;
	text-align: center;
	-webkit-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	cursor: pointer;
        display: inline-block;
}

.activemenuicon{
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
    background-image: url('../images/bigpictureclose.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
  display: inline-block;
}

.mobilelogo{
    width:90px;
    height:40px;
    background-image: url('../images/avia-nova-rus.png');
    background-size: cover;
    display: inline-block;
    position: absolute;
    right:25px;
}

.sidemenucontainer{
    position: fixed;
    top:50px;
    left: -300px;  
    width: 300px;
    height: 100%;
    background-color: rgba(217, 217, 217, 0.7);
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    z-index: 93; 
}


.mobilenav ul{
	padding-left: 0;
	margin-top: 0;
}

.mobilenav li{
	list-style: none;
	padding: 15px 15px 15px 45px;
	background-color: rgba(230, 230, 230, 0.9);
	border-bottom: 1px solid rgba(140, 140, 140, 0.8);
	cursor: pointer;
}

.mobilenav li:hover{
	background-color: rgb(179, 255, 255);
}

.mobilenav li a{
	text-decoration: none;
	color: rgb(51, 51, 51);
}

/* ****topmenu**** */

.topmenu{
	height: auto;
	width: 100%;
 	position: fixed; 
 	top: 0; 
	background-color: white;
	z-index: 90;
	border-top: 3px solid rgb(0, 255, 255);
	-webkit-box-shadow: 0px 0px 4px 1px rgba(5, 5, 5, 0.5);
	        box-shadow: 0px 0px 4px 1px rgba(5, 5, 5, 0.5);
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	min-width: 320px;
}

.menublock{
	padding:0 15px;
	height: auto;
	vertical-align: top; 
}

.logo{
	display: inline-block;
	padding: 20px;
} 

.logopic{
	height: 100px;
	width: 250px;
}

.logotext{
 	vertical-align: top;
	margin-top: 45px;
	padding: 10px;
	display: inline-block;
	font-size: 18px;
	border-left: 1px solid black;
}

.logotext p{
	margin: 0;
	padding: 0;
}

/* ****menu**** */

.nav{
	display: inline-block;
	font-size: 16px;
	vertical-align: bottom;
	margin-bottom: 45px;
	padding: 0 15px;

}

.nav ul{
	margin:0;
	padding: 0;
}

.nav li {
	padding: 0 15px;
	list-style: none;
	display: inline-block;
	font-weight: bold;
	border-bottom: 2px solid white;
}

.nav .current{
	border-bottom: 2px solid red;
}

.nav li a{
	color: rgb(140, 140, 140);
}

.nav li a:hover{
	color: rgb(0, 255, 255);
}


/* ****contact line**** */

.contactline{
	background-color: rgb(242, 242, 242);
	color: rgb(179, 179, 179);
	font-size: 16px;
	padding-left: 20px;
}

.contactline .container{
	text-align: left;
}

.emailblock{
	display: inline-block;
	padding: 10px 20px;
}

.phoneblock{
	display: inline-block;
	padding: 10px 20px;
}

.phoneblock a{
        color: rgb(179, 179, 179);
}

.social{
	display: inline-block;
	padding: 10px 20px;
}

.social a{
	color: rgb(179, 179, 179);
}

/* ****slider**** */

.slider{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.sliderimg{
	position: absolute;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	-webkit-animation: fadein 1s;
	        animation: fadein 1s;
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.slideroverlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
        z-index: 3;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.7)), color-stop(65%, rgba(255, 255, 255,0.0)));
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.7), rgba(255, 255, 255,0.0) 65%);
	background-image: -o-linear-gradient(left, rgba(0,0,0,0.7), rgba(255, 255, 255,0.0) 65%);
	background-image: linear-gradient(to right, rgba(0,0,0,0.7), rgba(255, 255, 255,0.0) 65%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0.7)', endColorstr='rgba(255, 255, 255,0.0)');	
}

.headerimg{
	width: 100%;
}

.headertext{
	position: absolute;
	left: 12%;
	bottom: 40%;
	color: rgb(0, 255, 255);
	z-index: 5;
}

.headertext h1{
	margin: 0;
	padding: 0;
	font-size: 43px;
	color: rgb(128, 255, 229);
}

.headertext p{
	font-size: 25px;
}

/* ****Content**** */
.content{
	height: auto;
	min-height: calc(100% - 632px);
	overflow: hidden;
	min-width: 320px;
}

/* ****hottours**** */
.section{
	height: auto;
	width: 100%;
	padding-top: 35px;
	padding-bottom: 30px;
	overflow: hidden;
}

.sectiontitle{
	text-align: center;
	height: auto;
	font-size: 30px;
	font-weight: bold;
	color: rgb(26, 26, 26);
}

.optionWrapper{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 0;
}

.option{
	max-width: 350px;
	padding: 20px;
	height: auto;
	display: inline-block;
	position: relative;
	top: 100px;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
	vertical-align: top;
}

.option h3{
	margin: 0;
	padding: 0;
}

.optionpicture{
	max-width: 350px;
	height: 350px;
	position: relative;
}

.optionimg{
	max-width: 350px;
	height: 350px;
}

.seamore{
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
	height: 70px;
	line-height: 70px;
	background-color: rgba(128, 255, 229, 0.5);
	font-size: 20px;
	opacity:0;
	font-weight: bold;
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
}

.seamore a{
	text-decoration: none;
	color: rgb(26, 26, 26);
}

.seamore a:hover{
	border-bottom: 2px solid red;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
}

.direction{
	color: rgb(26, 26, 26);
	padding: 15px;
	background-color: rgb(242, 242, 242);
}

.direction h3{
	display: inline;
	font-size: 25px;
         
}

.direction .price{
	font-size: 25px;
	color: red;
        margin-top:15px;
       
}

.dates{
	color: rgb(26, 26, 26);
	padding: 0 15px 15px;
	background-color: rgb(242, 242, 242);
	font-size: 20px;
	border-bottom: 3px solid white;
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
}

.option:hover .seamore{
	opacity:1;
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
}

.option:hover .direction h3{
	color: rgb(0, 204, 204);
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
}

.option:hover .dates{
	border-bottom: 3px solid rgb(128, 255, 229);
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
}

/* ****hottickets**** */
.hottickets{
	background-color: rgb(0, 204, 163);	
}

.hottickets .sectiontitle{
	color: white;
}

.hotticketoption{
	width: 25%;
	height: 300px;
	min-width: 200px;  
	display: inline-block;
 	position: relative; 
 	opacity: 0.3;
 	-webkit-transition: 2s;
 	-o-transition: 2s;
 	transition: 2s;
}

.ticketsimg{
	width: 100%;
	height: 300px;
}

.overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.2);
	

}

.ticketdirection{
	font-size: 22px;
	position: absolute;
	width: 100%;
	text-align: center;
	top: 100px;
        -webkit-transition: 0.7s;
        -o-transition: 0.7s;
        transition: 0.7s;
        text-shadow: 2px 2px 2px rgb(13, 13, 13);
}

.ticketdirection h3{
	color: rgb(128, 255, 229);
}

.ticketdirection .price{
	color: rgb(255, 51, 51);
	font-weight: bold;
        font-size: 25px;
      
}

.hotticketoption:hover .ticketsimg{
	-webkit-filter: blur(2px);
	        filter: blur(2px);
	-webkit-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.hotticketoption:hover .ticketdirection{
	font-size: 25px;
	color: white;
	top: 50px;
	-webkit-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.hotticketoption:hover .ticketdirection h3{
	color: white;
}

.hotticketoption:hover .ticketdirection .price{
	color: white;
}

.ticketslink{
	font-size: 25px;
	color: white;
	display: none;
	margin-top: 15px;
}


.hotticketoption:hover .ticketslink{
	display: block;
}

.ticketslink:hover{
	color: rgb(128, 255, 229);
}

.allticketslink{
	text-align: center;
	margin-top: 30px;
	font-size: 30px;
	font-weight: bold;
}

.allticketslink a{
		color: white;
}

.allticketslink a:hover{
	border-bottom: 2px solid red;
}

/* ****about**** */
.about{
	background-color: rgb(242, 242, 242);
	
}

.optionicon{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.5);
	text-align: center;
	line-height: 200px;
	margin: 0 auto;
	color: rgb(0, 255, 255);
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
}


.services span{
	font-size: 80px;
}

.services .optionname{
	font-size: 18px;
	margin-top: 30px;
}

.services .option:hover .optionicon{
	color: rgb(51, 51, 51);
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
}


.abouttext{
	font-size: 20px;
	color: rgb(38, 38, 38);	
}

.servicestitle{
	text-align: center;
	height: auto;
	font-size: 25px;
	font-weight: bold;
}

.documents{
	text-align: center;
	margin-top: 30px;
}

.showdocs{
	width: auto;
	height: auto;
	font-size: 30px;
	line-height: 50px;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
}

.showdocs:hover i{
	color: red;
}

.officialdocs{
	font-size: 25px;
	margin-top: 30px;
	background-color: rgb(242, 242, 242);
	padding-top: 25px;
	margin-bottom: 25px;
	display: none;
}

.docspicture{
	margin-top: 25px;
	text-align: center;
}

.docspics{
	width: 360px;
	height: 480px;
}

.iata{
	width: 550px;
	height: 450px;
}

/* ****contacts**** */
.contacts{ 
       display: none;
}
.contactform{ 
	margin-top: 20px;
	text-align: center;
	color: rgb(77, 77, 77);
	font-size: 15px; 
}

.toplineinput{
	display: inline-block;
	text-align: left;
	width: calc(50% - 35px);
	margin: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.toplineinput label{
	margin-left: 10px;
}

.formtext:focus{
	border-bottom: 2px solid rgb(0, 255, 255);
}

.formtext{
	border: none;
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
	border-bottom: 2px solid gray;
	padding-left: 10px;
	font-weight: bold;
	outline: none;
	color: rgb(38, 38, 38);
	width: 100%
} 

.formtopline{
	height: 40px; 
	line-height: 40px;
}

.messageline{
	text-align: left;
	max-width: 1140px;
	margin: 20px 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.messageline label{
	margin-left: 10px;

}

.formmessage{
	width: 100%;	
	height: 70px;
	outline: none;
	font-size: 20px;
	border-bottom: 2px solid gray;
	padding-left: 10px;
	text-align: left;
}

.check{
	width: 100%;
	height: auto;
	text-align: left;
	padding-left: 10px;
} 

.checktext{
	font-size: 16px;
	text-align: left;
	margin-left: 5px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.checktext a{
	color: red;
}

.checktext a:hover{
	text-decoration: underline;
}

.sendblock{
	font-size: 20px;
	margin-top: 40px;
	overflow: hidden; 
}

.sendblock:hover .sendbutton{
	border-bottom: 2px solid rgb(0, 255, 255);
}

.sendblock:hover i{
	color: rgb(0, 255, 255);
}

.sendbutton{
	font-size: 20px;
	outline: none;
	border: none;
	background-color: white;
	border-bottom: 2px solid red;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
}

.paperplane{
	margin-left: 7px;
}

/* ****map**** */

.map{
	width: 100%;
	height: 450px;
	display: none;
	border: 0;
}

/* ****Footer**** */
footer{
	height: auto;
	background-color: rgb(51, 51, 51);
	padding-top: 40px;
	padding-bottom: 40px;
	overflow: hidden;
	border-top: 3px solid rgb(0, 255, 255);
}

.footercols{
	max-width: 1140px;
	padding-left: 30px;
	padding-right: 30px;
	text-align: center;
	color: rgb(204, 204, 204);
}

.column{
	width: 220px;
	margin: 5px 10px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
.email{
	margin-bottom: 20px;
}

.adress{
	margin-bottom: 10px;
}

.showmap{
	width: 120px;
	height: 35px;
	font-size: 15px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
	border-bottom: 2px solid red; 
	padding: 0 10px;
}

.showmap:hover{
	color: rgb(0, 255, 255);
}

.phone{
	text-align: right;
}

.phone a{
        color:rgb(204, 204, 204);
}

.social a:hover{
       color: rgb(0, 254, 254);
       -webkit-transition: 0.4s;
       -o-transition: 0.4s;
       transition: 0.4s;
}
.upbutton{
	width: 75px;
	height: 75px;
	padding: 5px;
	background: url('../images/up.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border: 0;
	position: fixed;
	bottom: 10%;
	right: 10%;
	display: none;
	background-color: rgb(0, 255, 255);
	border-radius: 50%;
	cursor: pointer;
	outline: none;
	-webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5);
        -webkit-transition: 1s;
        -o-transition: 1s;
        transition: 1s;
        z-index:40;
}

.upbutton:hover{
	background-color: red;
        -webkit-transition: 1s;
        -o-transition: 1s;
        transition: 1s;
}

/* ****tourpage**** */
.headpicture{
	width: 100%;
	height: 100%;

	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	text-align: center;
}

.headeroverlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.8)), to(rgba(166, 166, 166,0.1)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.8), rgba(166, 166, 166,0.1));
	background-image: -o-linear-gradient(top, rgba(0,0,0,0.8), rgba(166, 166, 166,0.1));
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(166, 166, 166,0.1));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0.8)', endColorstr='rgba(166, 166, 166,0.1)');
}

.headpicturetext{
 	position: absolute;
 	top: 50%;
 	width: 100%;
	text-align: center;
	font-size: 55px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	color: rgb(217, 217, 217);
	margin-top: 0;
}

.bookingform{
	height: auto;
	width: auto;	
	
	position: absolute;
	bottom: 0;
	margin-right: 30px;
        margin-left: 30px;
        margin-bottom: 30px;
        z-index: 10;

	
}

.bookingform p{
	margin: 0;
	display: inline;
}

.bookingform h3{
	margin: 0;
	padding: 0;
	line-height: 30px;
	text-align: left;
	font-size: 25px;
	color:rgb(64, 64, 64);
}

.topline{
	height: auto;
	width: auto;
	padding: 20px;

}

.bottomline{
	height: auto;
	width: auto;
	background-color: rgba(0, 255, 255,0.5);
	padding-left: 20px;
	padding-bottom: 10px;
} 

.bookingoption{
	display: inline-block;
	line-height: 35px;
	font-size: 16px;
	margin-right: 10px;
	vertical-align: top;

}

span.wpcf7-list-item{
	display: block;
}

.bookingform input{
	max-width: 200px;
}


.bookingoption label{
	margin-right: 5px;
}

.bookingoption select{
	border: none;
	padding: 5px;
	border-radius: 3px;

}

.bookingoption input{
	border: none;
	padding: 5px;
	border-radius: 3px;
}

.submit{
	display: inline-block;
	border: none;
	border-bottom: 2px solid rgba(0, 255, 255,0.0);
	background-color: rgba(0, 255, 255,0.0);
	cursor: pointer;
	color: rgb(64, 64, 64);
	font-size: 20px;
}

.submit:hover{
	border-bottom: 2px solid red;
}

.tourpagesection{
	padding-top: 60px;
}

.sidebar{
	display: inline-block;
	max-width: 360px;
	min-width: 260px;
	vertical-align: top;
	padding: 15px;
	list-style: none;
}

.sidebar ul{
	padding: 15px;
	margin: 0;
	-webkit-box-shadow: 0 0 3px 1px rgb(26, 26, 26);
	        box-shadow: 0 0 3px 1px rgb(26, 26, 26);
	width: 250px;
	text-align: left;
}

.sidebar ul li{
	list-style: none;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}

.categories li a{
	border-bottom: 2px solid white;
	color: rgb(26, 26, 26);
}

.categories .currentcat a{
	border-bottom: 2px solid red;
}

.categories li a:hover{
	color: rgb(0, 255, 255);
	font-weight: bold;
}

#media_image-2 h1{
   font-size: 25px;
   color: rgb(0, 77, 0);
}

.directionlist{
	width: 250px;
	height: auto;
	padding: 15px;
	text-align: left;
	margin-top: 15px;
}

.directionlist h3{
	margin: 0;
	font-size: 23px;
	color: rgb(0, 204, 204);
}

.directionlist h3 i{
	display: none;
}

.directionlist ul{
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.directionlist li a{
	color:rgb(115, 115, 115);
}

.directionlist li a:hover{
	color: rgb(0, 255, 255);
}

.toursouter{
	display: inline-block;
	width: calc(100% - 390px);
	max-width: 780px;
	font-size: 0px;
	text-align: center;
	min-width: 260px;
}

.sortoptions{
	font-size: 20px;
	padding-top: 5px;
}

.sortoptions a{
	color: rgb(26, 26, 26);
	font-weight: bold;
}

.sortoptions a:hover{
	color: rgb(0,255,255);
}

.toursouter .option{
	width: 230px;
	padding: 15px;
	top: 0;
	vertical-align: top;
}

.toursouter .optionpicture{
	width: 100%;
	height: 230px;
	position: relative;
}

.toursouter .optionimg{
	width: 230px;
	height: 230px;
}

.toursouter .direction{
	padding: 10px;
}
.toursouter .direction h3{
	font-size: 15px;
	margin-right: 25px;
}

.toursouter .direction .price{
	font-size: 16px;
	font-weight: bold;
}

.toursouter .hotelname{
	font-size: 16px;
 	background-color: rgb(242, 242, 242); 
 	padding-bottom: 10px; 
}

.eventicon{
	width: 70px;
	height: 70px;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 6;
}

/* ****archive**** */

.archive .option{
	width: 300px;
}

.archive .option .optionpicture{
	width: 300px;
	height: 300px;
}

.archive .optionimg{
	width: 300px;
	height: 300px;
}

/* ****single**** */

.single{
	background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.5)), to(rgba(166, 166, 166,0.1))) , url(../images/egypt.jpg);
	background-image:-webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(166, 166, 166,0.1)) , url(../images/egypt.jpg);
	background-image:-o-linear-gradient(top, rgba(0,0,0,0.5), rgba(166, 166, 166,0.1)) , url(../images/egypt.jpg);
	background-image:linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(166, 166, 166,0.1)) , url(../images/egypt.jpg);
}

.singlesection{
	padding-top: 60px;
}

.singleslider{
	width: 450px;
	height: 250px;
	display: inline-block;
	margin: 15px;
	background-size: cover;
	background-position: center;
}

.singleslideroverlay{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
	line-height: 250px;
	font-size: 50px;
	color: rgb(0, 255, 255);
	cursor: pointer;
	display: none;
}

.singleslider:hover .singleslideroverlay{
	display: block;
}

.maindescription{
	display: inline-block;
	font-size: 18px;
	vertical-align: top;
	padding: 15px;
	font-weight: bold;
	color: rgb(38, 38, 38);
}

.fulltourdirection{
	margin-bottom: 10px;
}

.maindescription .hotelname{
	padding-top: 10px;
	padding-bottom: 10px;
}

.mealtipe{
	padding-top: 10px;
	padding-bottom: 10px;
}

.maindescription .dates{
	padding-top: 10px;
	padding-bottom: 10px;
}

.maindescription .price{
	padding-top: 10px;
}


.fulldescription{
	font-size: 16px;
	text-align: left;
	margin-bottom: 15px;
}

.note{
	font-size: 12px;
	text-align: left;
}

.similartourscontainer{
	width: 100%;
	height: auto;
	padding: 15px;
	font-size: 15px;
}

.similartourscontainer span{
	font-size: 20px;
}

/* ****tickets**** */

.ticketspage{
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.5)), to(rgba(166, 166, 166,0.1))) ,url(../images/tickets.jpg);
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(166, 166, 166,0.1)) ,url(../images/tickets.jpg);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0.5), rgba(166, 166, 166,0.1)) ,url(../images/tickets.jpg);
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(166, 166, 166,0.1)) ,url(../images/tickets.jpg);
}

 .outer{
	width: 50%;
	min-width: 350px;
	height: auto;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.left{
	left: -200px;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.right{
	right: -200px;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.ticketoption{
	margin: 15px;
	padding: 15px;
	width: calc(100% - 60px);
	min-width: 290px;
	max-width: 525px;	
	height: auto;
	min-height: 350px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.4)), to(rgba(0, 0, 0,0.4))), url(../images/nyc.jpg);
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.4), rgba(0, 0, 0,0.4)), url(../images/nyc.jpg);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0.4), rgba(0, 0, 0,0.4)), url(../images/nyc.jpg);
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0, 0, 0,0.4)), url(../images/nyc.jpg);
	background-size: cover;
	background-position: center;
        position: relative;
        text-shadow: 2px 2px 2px rgb(13, 13, 13);
        transition: 0.7s;
}

.ticketoption:hover{
        box-shadow: 0 0 3px 1px rgb(26, 26, 26);
        transform:scale(1.1, 1.1);
        transition: 0.7s;
        z-index: 30;
}

.ticketoptionoverlay{
        position: absolute;
        top: 0;
        left:0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.4);
   

}

.ticketoptionname{
	margin-top: 70px;
	text-align: center;
	height: auto;
	font-size: 25px;
	color: rgb(0, 255, 255);
	font-weight: bold;
        position: relative;
        z-index:4;
}

.ticketroute{
	margin-top: 40px;
	text-align: center;
	color: rgb(0, 255, 255);
	height: auto;
        position: relative;
        z-index:4;
}

.ticketroute h3{
	display: inline;
	margin-right: 20px;
}

.ticketroute .price{
	font-weight: bold;
	font-size: 20px;
	height: auto;
	color:rgb(255, 51, 51);
}

.saleperiod{
	margin-top: 30px;
	text-align: center;
	color: rgb(0, 255, 255);
	height: auto;
	font-weight: bold;
	font-size: 15px;
	color: rgb(204, 204, 204);
        position: relative;
        z-index:4;
}

.travelperiod{
	margin-top: 30px;
	text-align: center;
	color: rgb(0, 255, 255);
	height: auto;
	font-weight: bold;
	font-size: 15px;
	color: rgb(204, 204, 204);
	margin-bottom: 20px;
        position: relative;
        z-index:4;
}

.ticketpagecontainer .note{
	text-align: center;
	margin-top: 15px;
}

/* ****payment**** */

.paymentheadpicture{
	background-image: none;
	height: 450px;
	background-color: rgb(26, 0, 51);
}
.paymentheadpicture .headpicturetext{
	top:250px;
	color: rgb(230, 230, 230);
}

.paymentsection{
	background-color: rgb(242, 242, 242);
	color: rgb(26, 26, 26);

}

.paymentform{
	max-width: 800px;
	height: auto;
	margin: 0 auto;
	margin-top: 30px;
	text-align: center;
}

.paymentinfo{
	padding: 10px;
	font-size: 20px;
}

.paylink{
	cursor: pointer;
	text-align: center;
	margin-top: 30px;
	font-size: 30px;
	font-weight: bold;
}

.paylink a{
	color: rgb(26, 26, 26);
} 

.paylink a:hover i{
	color: rgb(0, 255, 255);
}

.paylink a:hover{
	border-bottom: 2px solid rgb(0, 255, 255);
}

/* ****privacy**** */

.privacyheadpicture{
	background-image: none;
	height: 450px;
	background-color: rgb(0, 51, 0);
}

.privacyheadpicture .headpicturetext{
	top:250px;
	color: rgb(230, 230, 230);
}

