/* - CSS Stylesheet for Paris Magical Tours - */

/*===== Table of Contents =====

CH01 - Common Styles
CH02 - Languages
CH03 - Header
CH04 - Navigation
CH05 - Bottom
CH06 - Footer
CH07 - Index
CH08 - Tours
CH09 - Indiv. Tour
CH10 - FAQ's
CH11 - City Guide
CH12 - About
CH13 - Customer Comments
CH14 - Online Booking
CH15 - Contact
CH16 - Media Queries

=============================*/


/* -- CH01 - Common Styles -- */

html {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1px;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: #9B9B9B;
}

* {
  margin: 0;
  padding: 0;
  @include box-sizing(border-box);
}

#wrapper {
    max-width: 1280px;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

/* Headings */

h1 {
    font-size: 2em;
    font-weight: 500;
    text-transform: uppercase;
}

h2 {
    font-size: 1.8em;
    font-weight: 500;
    text-transform: uppercase;
}

h3 {
    text-align: center;
}

#large-header {
    width: 100%;
    margin: 15px 0 1px;
    border-top: 1px solid #1B2234;
    position: relative;
    font-size: 0;


}

#large-header img {
    max-width: 100%;
}

.header-text-container {
    position: absolute;
    width: 100%;
    top: 50%;
    font-size: 14px;
    opacity: 0;

    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    overflow: hidden;
}

#large-header h1 {
    padding: 0;
    color: #fff;
    font-size: 3.8em;
}

#large-header h1 span {

    font-size: .5em;
    display: block;
    text-transform: none;
    font-style: italic;
    color: #E0BB6D;
}


/* Youtube Video Responsive Fix */

.embed-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
    height: 0;
}  

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}









/* -- CH02 - Languages -- */


#languages {
    position: relative;
}

#languages ul {
    position: absolute;
    top: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 95px;
    text-align: right;
}

#languages ul a {
    display: block;
    color: #828282;
    text-decoration: none;
    
    font-size: .8em;
    font-weight: 500;
    line-height: 32px;
    padding: 0 20px 0 0;
}

#languages ul li { 
    background-position: 15px 11px;
    background-size: 10px; 
    background-repeat: no-repeat;
}

#languages ul li:hover {
    background-color: #1B2234;
}

#languages .active {
    background-image: url(../img/arrow_down_blue.png);

    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#languages .active:hover {
    background-image: url(../img/arrow_up_gold.png);
}


#languages ul ul {
    top: 100%;
    display: inline-block;
    visibility: hidden;
    opacity: 0;
}

#languages ul li:hover > ul {
   visibility: visible;
   opacity: 1;
}










/* -- CH03 - Header -- */


header {
    text-align: center;
}

.logo {
    width: 90%;
    max-width: 450px;
    padding-top: 10px;
}

#local {
    margin: 0 0 0 -15px;
    padding: 0;
}

#local li {
    display: inline-block;
}

#local li a {
    color: #828282;
    font-size: .9em;
}

#local li a:hover {
    color: #828282;
    text-decoration: underline;
}

#local .active {
    text-decoration: underline;
}

.split {
    padding: 0 6px 2px;
    max-width: 8px;
}









/* -- CH04 - Navigation -- */


#nav-main {
    width: 100%;
    margin: 0;
    background-color: #1B2234;
    border-bottom: 2px solid #191D23;
}

#nav-main ul {
    margin: 0;
    padding: 8px 0 6px;
    text-align: center;
}

#nav-main li {
    display: inline-block;
    text-align: center;
    border-right: 1px solid #D9CB9E;
    padding: 0 1.3% 0 1%;
}

#nav-main li:last-child {
    border: none;
}

#nav-main li a {
    text-transform: uppercase;
    font-weight: 500;
    color: #CFAC5C;
}

#nav-main li a:hover {
    color: #ECBE60;
}











/* -- CH05 - Bottom -- */


.bottom {
    background: #1B2234;
    border-top: 4px solid #191D23;
    border-bottom: 2px solid #191D23;
    text-align: center;
    margin: 0 0 15px;
    padding: 0;
}

#faqs,
#blog,
#contact {
    width: 300px;
    display: inline-block;
    vertical-align: top;
    color: #D7DADD;
    margin: 0 10px 0;
    padding: 12px 0 10px;
    text-align: left;
}

.bottom h3 {
    padding-bottom: 20px;
    text-align: center;
}

#faqs li {
    margin-left: 26px;
    padding: 0 8px 8px 0;
}

#faqs a,
#blog a {
    color: #D7DADD;
}

#faqs a:hover,
#blog a:hover{
    color: #E0BB6D;
}

#contact {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;

    border-left: 2px solid #191D23;
    border-right: 2px solid #191D23;

    text-align: center;
}

#contact ul {
    list-style: none;
    display: inline-block;
}

#contact li {
    padding: 0 0 20px 10px;
    display: block;
    text-align: left;
}

#contact li small {
    position: relative;
    padding-left: 40px;
    top: -6px;
}

.phone,
.email,
.address {
    line-height: 30px;
    padding-left: 40px;
    background-image: url(../img/phone.png);
    background-position: 0 0;
    background-size: 25px;
    background-repeat: no-repeat;
}

.email {
    background-image: url(../img/email.png);
    background-position: 0 6px;
}

.email a {
    color: #E0BB6D; 
}

#email a:hover {
    color: #ECBE60;
    text-decoration: underline;
}

.address {
    line-height: 24px!important;
    background-image: url(../img/address.png);
}

#blog ul {
    list-style: none;
    padding-left: 5px;
}

#blog li {
    margin-right: 15px;
    padding: 24px 0 10px;
    border-bottom: solid 1px #828282;
}

#blog li:first-child {
    padding-top: 0!important;
}

#blog li:last-child {
    border: none;
}










/* -- CH06 - Footer -- */


footer{
    background: #FFF;
}

#nav-secondary {
    margin: 0 auto 25px;
    text-align: center;
}

#nav-secondary ul {
    padding: 15px 0;
}

#nav-secondary li {
    display: inline-block;
    text-align: center;
    border-right: 1px solid #828282;
    line-height: .75em;
    padding: 0 7px;
}

#nav-secondary li:last-child {
    border: none;
}

#nav-secondary li a {
    color: #828282;
}

#nav-secondary li a:hover {
    color: #525252;
    font-weight: 400;
}

.copyright {
    padding: 0 25px 10px;
    color: #828282;
    font-size: 12px;
}

.copyright img {
    display: block;
    max-width: 250px;
    padding-bottom: 10px;
}

.pay-icons {
    display: block;
    width: 240px;
    height: 45px;
    background: #ccc;
}

.logo-bottom {
    max-width: 300px;
    padding: 0 0 15px;
    position: absolute;
    bottom: 0;
    right: 25px;
}










/* -- CH07 - Index -- */


/* GALLERY */
#gallery {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    border-top: 1px solid #1B2234;
    position: relative;
    text-align: left;
    font-size: 0;
    letter-spacing: -4px;

    background-image: url(../img/preload2.gif);
    background-position: center;
    background-size: 64px;
    background-repeat: no-repeat;
}

#gallery ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gal-left,
.gal-center {
    width: 25%;
    display: inline-block;
    vertical-align: top;
    opacity: 0;
}

.gal-center {
    width: 50%;
}

#gallery li img {
   width: 100%;
  
}

.gal-left li,
.gal-right li {
    width: 50%;
    float: left;
    vertical-align: top;
    margin: 0;
    padding: 0;
    background: #76879d url(../img/plus.png);
    background-position: center;
    background-size: 30%;
    background-repeat: no-repeat;

    letter-spacing: normal;
}

#gallery .video{ background-image: url(../img/video.png); }

.gal-left img,
.gal-right img {
    -webkit-transition: all .15s linear 15s;
    -o-transition: all .15s linear .15s;
    transition: all .15s linear .15s;
}

.gal-left img:hover,
.gal-right img:hover {
    opacity: .5;
}

.gal-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
}

.gal-center-over {
    position: absolute;
    width: 100%;
    top: 0%;
    left: 0;
    z-index: 0;
    cursor: pointer;

    -webkit-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease; 
}



/* Main Sections */

.featured,
.private,
.group {
    width: 100%;
    margin: 0;
    font-size: 0;

    /*background: rgba(27,34,52,1);*/
    
}

.featured {
    background-image: url(../img/large_featured.jpg);
    background-position: 0 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.private {
    background-image: url(../img/large_private.jpg);
    background-position: 0 25%;
    background-size: 70%;
    background-repeat: no-repeat;
    padding: 100px 0;

    -webkit-transition: all .7s ease 1s;
    -o-transition: all .7s ease .1s;
    transition: all .7s ease .1s;
}

.group {
    background-image: url(../img/large_group.jpg);
    background-position: 100% 0;
    background-size: 70%;
    background-repeat: no-repeat;
    padding: 100px 0;

    -webkit-transition: all .7s ease 1s;
    -o-transition: all .7s ease .1s;
    transition: all .7s ease .1s;
}


.headings-container {
    width: 30%;
    margin-left: 5%;
}

.private .headings-container {
    width: 25%;
    position: relative;
    left: 100%; 
    margin: 0px 0px 0 -2%;

    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.group .headings-container {
    width: 25%;
    margin-left: 2%;
}

.heading {
    width: 100%;
    background: rgba(25,29,35,.9);
    font-size: 1rem;
    text-align: justify;
}

.private .heading,
.group .heading {
    background: #fff;
}

.heading h2 {
    padding: 10px 0;
    margin: 0; 
    text-align: center;
    color: #CFAC5C;
}

.heading p {
    display: block;
    padding: 0 25px 5px;
    margin: 0;
    text-align: justify;
    color: #CFAC5C;
}

.private .heading h2,
.private .heading p {
    color: rgba(179,16,16,1);
}

.group .heading h2,
.group .heading p{
    color: rgba(27,34,52,1);
}

.more-button {
    width: 100%;
    text-align: center;  
    margin: 0;
    padding: 15px 0;  
}

.more-button span {
    color: #E0BB6D;
    font-size: .7em;
    text-transform: uppercase;
    font-weight: 500;
    background: #1B2234;
    padding: .4em 1em;
    margin: 0;
    vertical-align: top;
    border: 2px solid #1A1D24;
    
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.more-button span:hover {
    cursor: pointer;
    color: #ECBE60;
    background: #1A1D24;
}








/* -- CH08 - Tours -- */


.featured-tours,
.private-tours,
.group-tours {
    margin-bottom: 40px;
    text-align: center;
    display: block;
}

.featured-tours {
    margin-top: 30px;
}

.tour-thumb {
    width: 300px;
    height: 200px;
    margin: 10px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    border: solid 1px #777;
    
    -webkit-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

.tour-thumb img {
    display: block;
    position: relative;
    max-width: 100%;

    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */

    -webkit-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}

.tour-thumb .content {
    overflow: hidden;
}

.tour-thumb .mask { 
    background-color: rgba(27,34,52,.8);
    background-image: url(../img/arrow_up_gold.png);
    background-position: 95% 9px;
    background-size: 10px;
    background-repeat: no-repeat;

    -ms-transform: translateY(86%); /* IE 9 */
    -webkit-transform: translateY(86%); /* Chrome, Safari, Opera */
    transform: translateY(86%);

    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out .1s;
    transition: all 0.3s ease-in-out .1s; 
}

.tour-thumb .mask, 
.tour-thumb .content {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mask h2 {
    text-transform: none;
    color: #D7DADD;
    font-weight: 400;
    text-align: left;
    padding: 2% 4%;
    font-size: 1em;
}

.tour-thumb p {
    color: #E0BB6D;
    text-align: left;
    position: absolute;
    width: 260px;
    padding: 10px 30px 10px 10px;
    margin: 0;
    font-size: .96em;

    background-color: rgba(27,34,52,.9);
    background-image: url(../img/arrow_down_gold.png);
    background-position: 96% 12px;
    background-size: 12px;
    background-repeat: no-repeat;

    bottom: 0;
    -webkit-transition: all 0.4s ease-in-out 1s;
    transition: all 0.4s ease-in-out .1s;
}

.tour-thumb p span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 16px;     /* fallback */
    max-height: 32px;      /* fallback */
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.tour-thumb img:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}

.tour-thumb:hover .mask { 
    -ms-transform: translateY(100%); /* IE 9 */
    -webkit-transform: translateY(100%); /* Chrome, Safari, Opera */
    transform: translateY(100%);

    background-color: rgba(27,34,52,0);
    background-position: 95% 100%;
}       

.tour-thumb:hover p{
    bottom: 100%;
}


.featured-tours h1,
.featured-tours h2 a {
    color: #be9849;
}

.featured-tours .tour-thumb:hover {
    border-color: #E0BB6D!important;
}

.private-tours .tour-thumb .mask {
    background-color: rgba(179,16,16,.6);
}

.private-tours h1,
.private-tours h2 a {
    color: #b31010;
}

.private-tours p {
    background-color: rgba(179,16,16,.9);
    color: #e3e6e9;
}

.group-tours h1,
.group-tours h2 a {
    color: #263248;
}

.group-tours p {
    color: #D7DADD;
}










/* -- CH09 - Indiv. Tour -- */


.text-container {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    color: #9B9B9B;
}

.container {
    opacity: 0;
}

.text-container h2 {
    font-size: 1.5em;
    display: inline-block;
    letter-spacing: 3px;
    color: #be9849;
    border-bottom: 1px solid #be9849;
    padding-bottom: 5px;
    margin: 0 0 5px;
}

.text-container p {
    line-height: 1.6em;
    color: #9B9B9B;
    text-align: justify;
    letter-spacing: 0px;

    margin: 25px 0;
}

.text-container p .big {
    font-size: 3em;
    font-weight: 400;
    padding: 0 2px 0 0;
    font-style: normal;
}

.text-container h4 {
    
    font-size: 1.4em;
    font-style: italic;
    color: #be9849;
    text-align: justify;
    text-transform: none;
    font-weight: 500;

    margin: 35px 0;
}

.text-container h4 a{
    color: #be9849;
    text-decoration: underline;
}

.text-container h4 a:hover{
    color: #E0BB6D;
}

.text-container span,
.text-container a {
    font-style: italic;
    color: #be9849;
    font-weight: 500;
}

.highlights {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 20px 0 50px;
    position: relative;
}

#tour-highlights {
    padding: 0;
}

.container1 {
    display: inline-block;
    vertical-align: top;
    width: 60%;
}

.container2 {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    height: 100%;
      width: 44%;
}

#tour-highlights li {
    padding: 0 0 0 25px;
    margin: 25px 0;
    text-align: justify;
    background-image: url(../img/star_b.png);
    background-position: 0 center;
    background-size: 12px;
    background-repeat: no-repeat;
    list-style: none;
}

#tour-highlights li:first-child {
    padding: 0 20px 0 0;
    border-bottom: 1px solid #be9849;
    padding-bottom: 5px;
    width: 22%;
    margin: 0 auto;
    font-size: 1.5em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #be9849;
    background: none;
    text-align: center;

}

#highlights-slider {
    position: absolute;
    width: 60%;
    right: 27px;
    top: 50%;

    -ms-transform: translateY(-40%); /* IE 9 */
    -webkit-transform: tran-40slateY(-40%); /* Chrome, Safari, Opera */
    transform: translateY(-40%);
}

.bx-pager-dots {
    text-align: center;
    margin-top: 10px;
}

.bx-pager-dots li{
    list-style: none;
    display: inline-block;
    text-align: center;
    background-image: url(../img/dot.png) ;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 8px 6px!important;
    margin: 0px 13px 0;
}

.bx-pager-dots li:hover,
.bx-pager-dots .show {
    background-image: url(../img/dot_hover.png);
}

.bx-pager-dots .active li {
    background-image: url(../img/dot_hover.png);
}

.nobg {
    background: none!important;
    cursor: pointer;
    color: #E0BB6D;
    font-size: 27px;
}

.tour-itinerary {
    margin-top: 25px;
    text-align: center;
}

.tour-itinerary-2 {
    margin-top: 60px;
    text-align: center;
}

.tour-extras,
.tour-prices {
    margin: 80px 0 60px; 
    text-align: center;
}



.tour-extras li {
    list-style: none;
    display: inline-block;
    width: 33%;
    text-align: center;
    vertical-align: top;
}

.tour-extras ul {
    margin: 0;
    padding: 30px 0 0;
}

.tour-extras li img {
    max-width: 70%;
}

.tour-extras p {
    padding: 0 20px;
    margin: 10px auto;
    max-width: 80%;
}

.tour-extras p span {
    display: block;
    text-decoration: underline;
}

.tour-extras h3 {
    margin: 5px 0 0;
    font-weight: 400;
    font-size: 1.5em;
    color: #be9849;
}

.tour-prices {
    text-align: center;
}

#tour-prices-table {
    margin: 7px auto 20px;
    width: 80%;
    text-align: center;
}

.book-button,
.comment-button {
    margin: 30px 15px;
}

.book-button span,
.more-button span,
.comment-button span {
    font-size: .9em;
    text-transform: uppercase;
    font-style: initial;
    font-weight: 500;
    background: #1B2234;
    padding: .4em 1em;
    border: 2px solid #1A1D24;
    cursor: pointer;
    

    -webkit-transition: all .3s; /* For Safari 3.1 to 6.0 */
    transition: all .3s;
}

.book-button span:hover,
.more-button span:hover,
.comment-button span:hover {
    background: #1A1D24;
    border-color: #1B2234;
}

.tpt-col,
.tpt-col-c {
    width: 33%;
    display: inline-block;
    
}

.tpt-col-c {
    border-left: 1px solid #828282;
    border-right: 1px solid #828282;
}

.tpt-col ul,
.tpt-col-c ul{
    padding: 0;
}

.lt {
    text-decoration: line-through;
}

.bold {
    font-weight: 500;
}

#tour-prices-table li {
    list-style: none;
    font-size: 1.2em;
    padding: .5em 0;
    color: #828282;
}

#tour-prices-table li:first-child {
    border-bottom: 1px solid #828282;
    letter-spacing: 1px;
    font-weight: 500;
}

#tour-prices-table li span {
    font-size: .7em;
}

.tour-comments {
    margin: 50px 0;
    text-align: center;
}

.tour-comments li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    width: 49%;
}

.divider {
    height: 2px;
    border-bottom: 2px solid #1B2234;
    margin: 0 auto 3em;
    width: 100%;
}

.quote {
    padding: 0 0 1.5em 1em;
}

.quote span {
    display: block;
    padding-top: .4em;
    font-size: .9em;
    font-weight: 500;
}

#comment-box {
    width: 100%;
    background: #fff;
    margin-bottom: 20px;
}

#comment-box span {
    font-weight: 300;
}

.cb-small,
.cb-wide {
    width: 344px;
    margin: 25px 25px 0 0;
    height: 294px;
    background: #1B2234 url(../img/quote.png) center 30px / 50px no-repeat;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.cb-small span,
.cb-wide span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 95%;

    color: #D7DADD;
    
    letter-spacing: 0.7px;
    font-size: 1.5em;
    padding: 0 2.5%;

    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cb-small small,
.cb-wide small {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;

    color: #be9849;
    font-size: 1.1em;
}

.cb-video {
    width: 58%;
    margin-top: 25px;
    display: inline-block;
}

.cb-wide {
    width: 100%;
    height: 180px;
    background: #191D23;
}

.cb-wide span {
    top: 40%;
    font-size: 1.2em;
    width: 90%;
    padding: 0 5%;
}

.cb-wide small {
    bottom: 30%;
}

.comment-button span {
    padding-right: 30px;
    background: #1B2234 url(../img/arrow_s.png) 95% center / 11px no-repeat;
}

.comment-button span:hover {
    background: #1A1D24 url(../img/arrow_s.png) 95% center / 11px no-repeat;
}

.tour-ideas {
    margin-bottom: 5em;
    text-align: center;
}

.tour-ideas li {
    list-style: none;
    display: inline-block;
    width: 32%;
    text-align: center;
    vertical-align: top;
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);

    -webkit-transition: all .5s; /* For Safari 3.1 to 6.0 */
    transition: all .5s;
}

.tour-ideas li:hover {
    -webkit-filter: grayscale(0%); 
    filter: grayscale(0%);
}

.tour-ideas ul {
    margin: 0;
    padding: 3em 0 0;
}

.tour-ideas li img {
    max-width: 70%;
}

.tour-ideas li h3 {
    padding: 0;
    font-size: 1em;
}










/* -- CH10 - FAQ's -- */


#questions,
#answers {
    margin: 1em 0;
    position: relative;
}

#faq-list {
    margin-top: 115px;
    padding-bottom: 2em;
    min-height: 225px;
}

#faq-list li {
    list-style: none;
    padding: 1em 0;  
} 

#faq-slider {
    width: 31%;
    position: absolute;
    top: 20px;
    right: 10px;
}

#faq-slider .bx-viewport {
    min-height: 290px;
}

#faq-slider .bx-viewport li {
    width: 100%!important;
}

.full {
    min-width: 100%!important;
}

.full li {
    background: url(../img/star_b.png) 0 4px / 12px no-repeat;
    padding: 0 0 0 2em!important;
    margin: 20px 0;
}

#answers li {
    list-style: none;
    padding: 1em 0;
}

#landmarks li {
    list-style: none;
    margin: 150px 0;
}

.land li:first-child {
    margin-top: 0!important;
}


.c-answer p {
    margin: 0!important;
} 

.c-answer img {

    max-width: 100%;
}   

.category {
    font-size: 2em;
    color: #E0BB6D;
    font-weight: 500;
} 

.category2 {
    font-size: 1.5em;
    text-transform: uppercase;
    color: #E0BB6D;
    font-weight: 500;
}

#faq-list li a {
    color: #828282;
    text-align: justify;
}

#faq-list li a:hover {
    color: #E0BB6D;
}

.bxslider #faq-list li{
    width: 46.5%;
}

.bx-pager-cats {
    position: absolute;
    z-index: 2;
    margin: 2em 0;
    text-align: left;
}

.bx-pager-cats li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    border-bottom: 1px solid #E0BB6D;
    margin: 0 20px;
    padding: 5px 0;
    font-weight: 500;
}

.bx-pager-cats li:first-child {
    margin-left: 0!important;
}

.bx-pager-cats .active li {
    border-bottom: 6px solid #E0BB6D;
}

.cat-image {
      width: 230px;
      background: #444;
      position: absolute;
      top: 0;
      margin-top: 105px;
      right: 14%;
      border: 2px solid #fff;
      border-radius: 50%;
}


#answers h3 {
    text-align: left;
    text-transform: none;
    color: #E0BB6D;
    font-size: 2em;
    padding: 0 0 10px 0;
    border-bottom: 3px solid #E0BB6D;

    float: left;
    width: 18%;
}

#answers p,
#landmarks p {
    margin: 0 0 0 20%;
    padding-top: 15px;
}

#answers p a {
    font-style: italic;
    color: #be9849;
    font-weight: 500;
}

#answers p a:hover {
    
}

#landmarks img {
    max-width: 18%;
    float: left;
}

.q-right {
    float: right!important;
}

.a-right {
    text-align: right!important;
    margin: 0 20% 0 0!important;
}

.align-left {
    margin-bottom: 40px;
}
.align-right {
    margin-bottom: 40px;
}

.column-faq {
    margin: 0 0 20px;
    padding: 0;
}

.column-faq li {
    width: 30%;
    margin: 0 4%;
    display: inline-block;
    vertical-align: top;
}

.column-faq li:first-child,
.column-faq li:last-child {
    margin: 0 0!important;
}

.c-question {
    margin: 50px 0 10px;
    height: 80px;
    position: relative;
}

.c-question h4 {
    position: absolute;
    bottom: 0;
    text-transform: none;
    color: #E0BB6D;
    font-size: 1.2em;
    padding: 0 0 10px 5px;
    border-bottom: 2px solid #E0BB6D;
    margin-bottom: 10px;
    width: 100%;
}

.simple-faq {
    margin-top: 60px;
    width: 520px;
}



.simple-faq li p,
.expand-faq li p {
    margin: 0!important;
}

.s-question h4,
.expander h4{
    display: inline-block;
    text-align: left;
    text-transform: none;
    color: #E0BB6D;
    font-size: 1.2em;
    padding: 0 10px 5px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #E0BB6D;
}

.expand-faq {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    padding: 0 9% 0 0;
}

.expander h4 {
    font-size: 1.1em;
    padding: 0 10px 5px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #E0BB6D;
}

.expander:hover {
    cursor: pointer;
}

.expand-faq li p{
    padding-top: 15px;
}










/* -- CH11 - City Guide -- */


.guide {
    margin: 30px 0 0;
}

#guide-slider {
    position: relative;
    min-height: 470px;
    margin-bottom: 50px;
    background: #1A1D24;
    opacity: 0;
}

#guide-slider img{
    margin-left: 20%;
    max-width: 80%;
}

.guide-selector {
    position: absolute;
    width: 20%;  
    z-index: 2;
}

.guide-selector li {
    list-style: none;
    background: #1B2234;
    padding: 9px 1em;
    border: 1px solid #1A1D24;
    text-align: center;
}

.guide-selector li span {
    font-size: .9em;
    
    font-style: initial;
    font-weight: 400;
    -webkit-transition: all .3s; /* For Safari 3.1 to 6.0 */
    transition: all .3s;
}

.guide-selector li:hover {
    background: #1A1D24;
}

.guide-selector .active li {
    background: #1A1D24;
}

.guide-image {
    width: 100%;
    float: right;
}

.landmark-descrip {
   background: #1A1D24;
}

.landmark-descrip p{
    margin: 0;
    color: #D7DADD; 
    line-height: 1.4em;
    padding: 1% 3%;
}

.landmark-descrip h1 {
    font-weight: normal;
    float: left;
    padding: 2%;
    display: inline-block;
    width: 16%;
    color: #E0BB6D;
    text-align: center;
    margin: 0;
    font-size: 1.5em;
}



.textonly {
    font-size: .9em;
    margin: 40px 0 60px;
}

.terms {
   font-size: 1em; 
   margin: 40px 0 60px;
}

.terms li {
    padding: 20px 0;
}












/* -- CH12 - About -- */


.about {
    margin: 40px 0 40px;
    
}

#about-slider {
    position: relative;
}

.as-selector {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 575px;
}

.as-image {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.as-image img {
   max-width: 100%;
}

.as-image-container {
    position: relative;
    float:  left;
    max-width: 32%;
    padding-top: 30px;
}

.about-image-caption {
    position: absolute;
    top: 81%;
    width: 295px;
    margin: 0;
}

.about-image-caption p {
    text-align: center;
    font-size: .9em;
    margin: 0;
}

.about-image-caption p span {
    font-style: italic;
    display: block;
    font-size: .8em;
    line-height: 1em;
}

.as-text {  
    right: 0;
    margin-bottom: 50px;
    margin-left: 35%;
}

.as-text strong {
    color: #E0BB6D;
    font-size: 2em;
    padding: 0 0 4px 0;
    border-bottom: 3px solid #E0BB6D;
}

#about-slider .bx-viewport {
    overflow: visible!important;
}

#about-slider .bx-next,
#about-slider .bx-prev{
    top: 116%;
    font-size: 30px;;
}

#about-slider .bx-prev{
    right: 220px;
    left: auto;
}











/* -- CH13 - Customer Comments -- */


/****** Pre-Loader ********/

.preloader {
    position: absolute;
    width: 100%;
    height: 100%;

    background-image: url(../img/preload2.gif);
    background-position: center 20px;
    background-size: 45px;
    background-repeat: no-repeat;
}


#custcoms-slider {
    position: relative;
    width: 100%;
    margin: 20px 0 15px; 
    opacity: 0; 
}

.custcoms-cats {
    text-align: center;
    margin: 20px 0;
}

.custcoms-cats li{
    list-style: none;
    display: inline-block;
    vertical-align: top;
    border-bottom: 1px solid #E0BB6D;
    margin: 0 20px;
    padding: 5px 0;
}

.custcoms-cats li a{
    color: #E0BB6D;
    font-size: 1.6em;
}

.custcoms-cats .active {
    border-bottom: 4px solid #E0BB6D;
}

.upload {
    font-size: 1em;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 30px;
    color: #191D23;
}

.upload a {
    font-weight: 500;
    color: #ECBE60;
}

.upload a:hover{
    text-decoration: underline;
}


#bx-pager-comms {
    margin: 40px 0;
    text-align: center;
}

#bx-pager-comms li {
    list-style: none;
    color: #E0BB6D;
    display: inline-block;
    padding: 0 1em;
    font-size: 1.5em;
}

#bx-pager-comms .active li {
    text-decoration: underline;
}


.coms-big,
.coms-med,
.coms-long,
.coms-small {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.coms-big {
    width: 56%;
    height: 284px;
}

.coms-long {
    width: 98.5%;
    height: 150px;
    margin: 4px 0;
}

.coms-med {
    width: 42%;
    height: 284px;

    background: #1B2234;
}

.coms-small {
    width: 32.5%;
    height: 200px;
}

.coms-small img {
    max-width: 100%;

    -webkit-transition: all .2s; /* For Safari 3.1 to 6.0 */
    transition: all .2s;
}

.comment {
    background-image: url(../img/quote.png); 
    background-position: center 15%;
    background-size: 25px; 
    background-repeat: no-repeat;
    text-align: center;
}

.comment span {
    color: #D7DADD;
    font-size: 1.1em;
    position: absolute;
    top: 50%;
    left: 0;
    width: 94%;
    padding: 0 2%;
    font-weight: 400;

    -webkit-transform: translateY(-50%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.comment small {
    position: absolute;
    bottom: 15%;
    width: 100%;
    left: 0;
    font-size: .9em;
    color: #E0BB6D;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    opacity: 0;

    background-color: rgba(25,29,35,.9);
    background-image: url(../img/plus2.png);
    background-position: center;
    background-size: 35px;
    background-repeat: no-repeat;

    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    border: 12px solid rgba(0,0,0,0);

    -webkit-transition: all .4s ease .1s; /* For Safari 3.1 to 6.0 */
    transition: all .4s ease .1s;
}

.youtube {
    background-image: url(../img/youtube.png);
    background-size: 45px;
    background-color: rgba(25,29,35,0);
}

.overlay:hover {
    border-color: rgba(27,34,52,1);
    opacity: 1;
}

.youtube:hover {
    background-color: rgba(25,29,35,.9);
}

#custcoms-slider .bx-next,
#custcoms-slider .bx-prev {
    width: 50px;
    top: 50%;
    opacity: .7;
    z-index: 1;

    -webkit-transition: all .4s ease .1s; /* For Safari 3.1 to 6.0 */
    transition: all .4s ease .1s;
}

#custcoms-slider .bx-next:hover,
#custcoms-slider .bx-prev:hover {
    opacity: 1;
}


#custcoms-slider .bx-next {    
    right: -50px;
}

#custcoms-slider .bx-prev {
    left: -65px;
}

.custcoms-selector {
    margin: 0 0 30px;
}

.custcoms-selector li {
    padding: 10px 8px!important;
}




/*-----Fancy Box ---*/


.col-a {
    display: inline-block;
    vertical-align:top;
    width: 50%;
}

.col-b {
    display: inline-block;
    width: 44%;
    margin: 2% 0% 2% 2%;
    background: url(../img/quote.png) 90% 10px / 45px no-repeat;
}

.col-b h3 {
    text-align: left;
    text-transform: none;
    color: #E0BB6D;
    font-size: 2em;
    padding: 0 0 10px 0;
    border-bottom: 3px solid #E0BB6D;
    width: 55%;
    margin: 5px 20px 30px 0;
}

.col-b p {
    color: #1B2234;
    font-size: 1em;
    top: 40px;
    left: 0;
    width: 96%;
    padding: 0 2%;
    font-style: italic;
}











/* -- CH14 - Online Booking -- */

#pmtform .hidden {
    display: none;
}

.parsley-required,
.parsley-type { 
    list-style: none;
    color: #1B2234;
    font-size: .9em;
}

.parsley-errors-list {
    position: relative;
}

.parsley-error {
    border: 2px solid #2D3957!important;
}

#custNames span,
#custNames input{
    float: left;
}

#custNames span {
    line-height: 31px;
    padding-right: 10px;
}

#pickupOptions input,
#returnOptions input {
    display: inline-block;
    margin-bottom: 10px;
}

.book-button {
    text-align: center;
}





.form-container {
    width: 100%;
    margin: 0;
}

.form-progress {
    margin: 0 0 30px;
}

.form-img-container {
    width: 100%;
    text-align: center;
}

.pmt-form {
    margin-left:auto;
    margin-right:auto;
    padding: 25px 15px 25px 10px;
    text-align: left;
    height: 100%;
}

.form-header {
    width: 100%;
    text-align: center;
}

.pmt-form h1 {
    font-size: 1.5em;
    display: inline-block;
    border-bottom: 1px solid #E0BB6D;
    margin: 5px 0 25px;
    color: #E0BB6D;
}

.pmt-form label {
    display: block;
    vertical-align: top;
    margin: 0px;
    text-align: left;
    margin: 0;
}

.pmt-form small {
    display: block;
    line-height: 101%;
    margin: -6px 0 9px 0;
    text-transform: none;
    font-style: italic;
    color: #6c6c6c;
}

.pmt-form small a{
    text-decoration: underline;
    font-weight: 500;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background: none;
}

.pmt-form p {
    display: inline-block;
    margin: 5px 0;
}

.pay-icons2 {
    margin: 0 auto;
    max-width: 350px!important;
    padding: 15px 0 30px;
}

#selectedTour {
    min-width: 50%;
}

.datepicker {
    width: 130px;
    background-image: url(../img/calendar.png);
    background-position: 95% center;
    background-size: 13px;
    background-repeat: no-repeat;
}

.pickup-info {
    margin-right: 20px!important;
}

.pmt-form label>span,
.dob {
    display: inline-block;
    padding-right: 45px;
    text-transform: uppercase;
    font-size: 1.1em;
    font-style: normal;
    line-height: 35px;
}

.customerNames {
    margin-right: 15px!important;
    height: 30px!important;
    font-size: .9em!important;
}

.dob {
    font-size: 1em!important;
    display: block;
    width: 100%;
    text-align: left;
}

.dot {
    text-transform: uppercase;
    text-align: left;
    font-size: 14px!important;
    float: left;
    padding: 12px 6px 0 0;
}

.dot-sels {
    display: inline-block;
    float: left;
    padding-left: 5px;
}

.dob-sels select {
    width: 20%!important;
    float: left;
    margin-right: 5px!important;
}

.dot-sels select {
    display: inline-block;
    width: auto!important;
}

.personal-info input {
    margin-bottom: 10px;
}

.pmt-form input[type="text"], 
.pmt-form input[type="number"],
.pmt-form select {
    height: 35px;
    margin: 0;
    outline: 0 none;
    padding: 0 20px 0 5px;
    font-size: 1em;
    line-height: 1.4em;
    border: 1px solid rgba(130,130,130,.3);
    vertical-align: top;
    color: #6c6c6c;
    background: none;
}

.pmt-form input[type="number"] 
{
    padding-right: 0;
}

.pmt-form select {
    background: #FFF url('../img/arrow_down_gold.png');
    background-position: 95% center;
    background-size: 10px;
    background-repeat: no-repeat;
    appearance:none;
    -webkit-appearance:none; 
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    vertical-align: top;
}

.pmt-form select option {
    margin-right: 20px;
}

.passengers {
    width: 50px!important;
}

.send {
    text-align: center!important;
}

.pmt-form .button {
    font-size: 1.5em;
    text-transform: uppercase;
    color: #E0BB6D;
    background: #1B2234;
    padding: .4em 1em;
    border: 2px solid #1A1D24;

    -webkit-transition: all .3s; /* For Safari 3.1 to 6.0 */
    transition: all .3s;
}
.pmt-form .button:hover {
    background: #1A1D24;
    border-color: #1B2234;
}

.passenger-info,
.personal-info {
    display: inline-block;
    width: 50%;
    vertical-align:  top;
    margin: 0 0 20px;
}

.personal-info {
    width: 40%;
}

.personal-info {
    width: 43%;
}

.pmt-form label .personal-info  {
    margin-left: 55px;
}

.pmt-form-title {
    width: 20%!important;
    display: block;
    margin-bottom: 16px!important;
}

.frmaddress {
    margin-bottom: 2px!important;
}

.country {
    margin-top: 15px!important;
}

.tour-options {
    margin: 30px 0;
}

.te-price {
    position: relative;
}

.tour-options li {
    margin: 0 0 80px;
    display: block;
    vertical-align: top;
    list-style: none;
}

.tour-options li img {
    border-radius: 50%;
    margin: 0 20px 0 0;
    max-width: 150px;
    float: left;
}

.pmt-form input[type="checkbox"] {
    margin: 0 5px 0 0;
    height: 15px;
    width: 15px;
}

.tour-options li h1 {
    margin: 10px 0 0;
    text-align: center;
    border: none;
}

.tour-options h1 small {
    font-weight: 400;
    font-size: .6em;
    padding-top: 5px;
}

.extra-tour-options li {
    margin: 5px 0 50px;
    width: 100%;
    position: relative;
}

.extra-tour-options span {
    display: block;
    font-style: normal;
}

.extra-tour-options select {
      height: 25px;
      width: 49px;
      margin: -2px 5px 0 0;
      padding: 0 3px 0;
      background-position: 90% center;
}

.extra-tour-options p {
    text-align: left!important;
    padding-right: 135px!important;
}

.extra-tour-options img {
    max-width: 120px!important;
    position: absolute;
    top: 0;
    right: 0;
}

.tour-options .expander {
    color: #be9849;
}

.tour-options .expandable{
    text-align: justify;
}

.tour-options p {
    text-transform: none;
    margin: 0;
    color: #9B9B9B;
    padding: 5px 15px 0 0;
    display: inline;
}

.te-price span {
    color: #6c6c6c;
    font-style: normal;
}

.te-price small {
    display: inline-block;
}

.te-price select {
    padding: 0 17px 0 3px;
    background-position: 85% center;
}

#optionsQuant {
    height: 25px;
    width: 35px;
}

.cust-names-container {
    height: 250px;
    overflow-y: scroll;
}

.tour-extras-container {
    height: 350px;
    border-top: 1px solid #ccc;
    margin-top: 50px;
    overflow-y: scroll;
}










/* -- CH15 - Contact -- */


.contact-form,
.upload-form {
    margin: 0 auto 40px;
    padding: 25px 15px 25px 10px;
    text-align: center;
}

.contact-form h1,
.upload-form h1 {
    font-size: 2.6em;
    font-weight: 400;
    display: inline-block;
    border-bottom: 1px solid #E0BB6D;
    margin: 5px 0 0;
    color: #E0BB6D;
}

.contact-form h2,
.upload-form h2 {
    font-size: 1em;
    font-weight: 400;
    display: block;
    border-bottom: none;
    margin: 5px 35px;
    color: #E0BB6D;
}

.contact-form h2 span {
    font-size: .9em;
    font-weight: 500;
    display: block;
    border-bottom: none;
    text-transform: none;
    font-style: initial;
    margin: 0;
    color: #828282;
}

.thankyou {
    text-align: center;
}

.thankyou h2 {
    padding: 30px 0;
    border: none;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
}

.con-form label {
    display: block;
    margin: 0px;
    text-align: left;
}

.con-form input[type="text"] {
    height: 30px;
    margin-bottom: 16px;
    margin-right: 6px;
    margin-top: 2px;
    outline: 0 none;
    padding: 3px 3px 3px 5px;
    width: 100%;
    font-size: 12px;
    line-height: 1.4em;
    border: 1px solid rgba(130,130,130,.3);
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder  {
   color: #828282;
}

.con-forms-cols {
    width: 45%;
    display:  inline-block;
    vertical-align: top;
    margin: 2%;
}

.con-form textarea {
    width: 100%;
    height: 78px;
    border: none;
    border: 1px solid rgba(130,130,130,.3);
    padding: 6px;
}

.upload-comment {
    width: 93%!important;
}

.con-form input[type="submit"],
.pmt-form input[type="submit"] {
    font-size: .9em;
    text-transform: uppercase;
    font-style: initial;
    font-weight: 500;
    background: #1B2234;
    padding: .4em 1em;
    border: 2px solid #1A1D24;
    cursor: pointer;
    color: #be9849;
    

    -webkit-transition: all .3s; /* For Safari 3.1 to 6.0 */
    transition: all .3s;
}

.con-form input[type="submit"]:hover,
.pmt-form input[type="submit"]:hover {
    background: #1A1D24;
    border-color: #1B2234;
}

.con-form label {
    font-weight: 500;
    color: #828282;
}

.con-form label span{
    font-size: .9em;
    font-weight: 400;
    display: block;
    border-bottom: none;
    text-transform: none;
    font-style: initial;
    margin: 0;
    color: #828282;
}

.con-form .tour-info {
    text-align: left;
    margin: 10px 0 20px;
}

.con-form input[type="checkbox"] {
    margin: 8px 5px 8px 12px;
    display: inline-block;
    line-height: 30px;
}

.con-form-address {
    margin: 20px 0 0;
}

.tour-info {
    color: #828282;
    font-size: .9em;
}

.con-form select {
    height: 38px;
    margin-bottom: 16px;
    margin-right: 6px;
    margin-top: 2px;
    outline: 0 none;
    padding: 5px 3px 3px 5px;
    width: 100%;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid rgba(130,130,130,.3);
}

.con-form select option {
    padding: 5px 0;
}

.image-upload {
    text-align: left;
}

.image-upload input[type="submit"] {
    font-size: 12px;
}



#totalPrice h1 {
    border: none;
    font-style: normal;
    font-size: 1.4em;
    color: #9B9B9B;
    text-transform: none;
    line-height: 1.6em;
}

#totalPrice h2 {
    margin: 25px 0 10px;
    letter-spacing: 1px;
    padding-bottom: 3px;
}

#totalPrice span {
    font-style: normal;
    padding-right: 5px;
    font-size: .9em;
    text-transform: uppercase;
}




































/* -- Extras -- */


.the-difference {
    margin: 10px 0 100px;
}

.difference-cats {
    margin-bottom: 80px;
}

.difference-cats li {
    padding: 0;
    list-style: none;
    margin: 25px 0;
    font-size: 1.4em;
    display: inline-block;
    vertical-align: top;
    width: 19%;

    /*background-image: url(../img/star_b.png);
    background-position: 0 center;
    background-size: 12px;
    background-repeat: no-repeat;*/
}

.difference-sections {
    position: relative;
}

.difference-sections li {
    list-style: none;
    padding: 0 0 50px;
    position: relative;
}

.difference-sections li p {
    max-width: 70%;
}

.special {
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 25%;
    border-radius: 50%;


    -ms-transform: translateY(-55%); /* IE 9 */
    -webkit-transform: translateY(-55%); /* Chrome, Safari, Opera */
    transform: translateY(-55%);
}

.difference-sections small{
    font-size: 1em;
    font-style: italic;
    display: block;
    padding: 7px 0 0;
}


.right p,
.right h2{
    max-width: 100%!important;
    margin-left: 30%;
}

.right img {
    position: absolute;
    top: 50%;
    left: 0;
    max-width: 25%;
    border-radius: 50%;
    
}

.full,
.full p {
    max-width: 100%!important;
}

.full img {
    max-width: 100%;
}

.back-to-top {
    margin: 0;
    position: fixed;
    padding: 7px;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 100;
    display: none;
    color: #ffffff;
    background-color: #1B2234;
    opacity: .9;

    -webkit-transition: all .3s; /* For Safari 3.1 to 6.0 */
    transition: all .3s;
}

.back-to-top:hover {
    opacity: 1;
}

.back-to-top img{
    max-width: 100%;
}




.colum {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 1.3em;
}

.colum span {
    font-style: normal;
    padding-right: 5px;
}
































































/* -- CH16 - Media Queries -- */


/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {

/*----------------------------------------------------------------
------ Tours Section ---------------------------------------------
------------------------------------------------------------------*/

    .tour-thumb {
        width: 380px;
        height: 253px;
    }

    .tour-thumb p {
    width: 345px;
    font-size: 1em;
    padding: 10px 25px 10px 10px;

    background-position: 95% 12px;
    background-size: 15px;
    }

    .tour-thumb .mask {
    background-position: 95% 11px;
    background-size: 12px;
    }


    /*----------------------------------------------------------------
------ Bottom ----------------------------------------------------
------------------------------------------------------------------*/

    #faqs,
    #blog,
    #contact {
        width: 380px;
    }

    #contact ul {
        margin-left: -30px;
    }

    #contact li {
        padding-right: 6px;
    }

    .phone,
    .email,
    .address {
        line-height: 25px;
    }
}














/* Smaller screens ----------- */
@media only screen 
and (min-width : 1024px) 
and (max-width : 1240px) {

/*----------------------------------------------------------------
------ Tours Section ---------------------------------------------
------------------------------------------------------------------*/

    .tour-thumb {
        width: 240px;
        height: 160px;
    }

    .tour-thumb .mask { 
    background-position: 95% 4px;
    background-size: 8px;
    }

    .tour-thumb p {
    width: 208px;
    font-size: .7em;
    padding: 5px 25px 5px 7px;

    background-position: 96% 6px;
    }

    h1 {
        font-size: 1.7em;
    }

/*----------------------------------------------------------------
------ Bottom ----------------------------------------------------
------------------------------------------------------------------*/

    #faqs,
    #blog,
    #contact {
        width: 240px;
        font-size: .8em;
    }

    #faqs li {
        padding-bottom: 5px;
        margin-left: 14px;
    }

    #contact li {
        padding-bottom: 5px;
    }

    .phone,
    .email,
    .address {
        line-height: 24px;
        background-size: 20px;
    }

    .address {
        line-height: 17px!important;
    }

    #blog li {
        padding: 15px 0 5px;
        margin-right: 0;
    }


/*----------------------------------------------------------------
------ Footer ----------------------------------------------------
------------------------------------------------------------------*/

    #nav-secondary {
        margin: 0 auto 20px;
    }

    #nav-secondary ul {
        padding: 5px 0 10px;
    }

    #nav-secondary li {
        line-height: .7em;
        padding: 0 5px;
    }

    #nav-secondary li a {
        font-size: .7em;
    }

    .copyright {
        font-size: .7em;
    }

    .logo-bottom {
        padding: 0;
        right: 0;
    }


    /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
-- Indiv. Tour ---
----------------*/


    #tour-highlights {
        width: 49%;
    }

    #tour-highlights li:first-child {
        width: 34%;
    }

    #highlights-slider {
        width: 40%;
        
        position: relative;
        float: right;

        
        }

    .cb-small,
    .cb-wide {
        width: 290px;
        margin: 15px 15px 0 0;
        background-size: 40px;
    }

    .cb-small span,
    .cb-wide span {
        width: 96%;
        
        font-size: 1.4em;
        padding: 0 2%;
    }

    .cb-small small,
    .cb-wide small {
        bottom: 40px;
        font-size: 1em;
    }

    .cb-video {
        width: 60%;
        margin-top: 15px;
    }

    .cb-wide {
        width: 100%;
        height: 160px;
    }

    .cb-wide span {
        font-size: 1em;
    }

    .cb-wide small {
        bottom: 20%;
    }



    /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
----- City Guide -----
----------------*/

    .guide-selector li {
        padding: .5em 1em;
    }

}

















 
/* iPads (landscape) ----------- */
@media only screen 
and (min-width : 768px) 
and (max-width : 1024px)  {


    #wrapper {
        width: 90%;
    }

    .split-cols small {
        display: none;
    }

    .featured, 
    .private, 
    .group {
        height: 300px;
    }

    /*----------------------------------------------------------------
    ------ Navigation ------------------------------------------------
    ------------------------------------------------------------------*/

    #nav-main {
        margin-top: 3px;
    }

    #nav-main ul {
        padding: 6px 0;
    }

    #nav-main li {
        padding: 0 11px 0 6px;
    }

    #nav-main li a {
        font-size: .7em;
    }


    /*----------------------------------------------------------------
    ------ Tours Section ---------------------------------------------
    ------------------------------------------------------------------*/

    .tour-thumb {
        width: 200px;
        height: 133px;
    }

    .tour-thumb .mask { 
    background-position: 95% 6px;
    background-size: 8px;

    -ms-transform: translateY(86%); /* IE 9 */
    -webkit-transform: translateY(86%); /* Chrome, Safari, Opera */
    transform: translateY(86%);
    }

    .tour-thumb p {
    width: 168px;
    font-size: .6em;
    padding: 5px 25px 5px 7px;

    background-position: 96% 5px;
    background-size: 8px;
    }

    h1 {
        font-size: 1.5em;
    }

/*----------------------------------------------------------------
------ Bottom ----------------------------------------------------
------------------------------------------------------------------*/

    #faqs,
    #blog,
    #contact {
        width: 200px;
        font-size: .8em;
    }

    #faqs li {
        padding-bottom: 5px;
        margin-left: 14px;
    }

    #contact li {
        padding-bottom: 5px;
    }

    .phone,
    .email,
    .address {
        line-height: 24px;
        background-size: 20px;
    }

    .address {
        line-height: 17px!important;
    }

    #blog li {
        padding: 15px 0 5px;
        margin-right: 0;
    }


/*----------------------------------------------------------------
------ Footer ----------------------------------------------------
------------------------------------------------------------------*/

    #nav-secondary {
        margin: 0 auto 20px;
    }

    #nav-secondary ul {
        padding: 5px 0 10px;
    }

    #nav-secondary li {
        line-height: .7em;
        padding: 0 5px;
    }

    #nav-secondary li a {
        font-size: .7em;
    }

    .copyright {
        font-size: .7em;
    }

    .logo-bottom {
        padding: 0;
        right: 0;
    }


/*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
-- Indiv. Tour ---
----------------*/


    #tour-highlights {
        width: 50%;
    }

    #tour-highlights li:first-child {
        width: 34%;
    }

    #highlights-slider {
        width: 40%;
        position: relative;
        float: right;
        }

    .cb-small,
    .cb-wide {
        width: 290px;
        margin: 15px 15px 0 0;
        background-size: 40px;
    }

    .cb-small span,
    .cb-wide span {
        width: 96%;
        
        font-size: 1.4em;
        padding: 0 2%;
    }

    .cb-small small,
    .cb-wide small {
        bottom: 40px;
        font-size: 1em;
    }

    .cb-video {
        width: 65%;
        margin-top: 15px;
    }

    .cb-wide {
        width: 100%;
        height: 160px;
    }

    .cb-wide span {
        font-size: 1em;
    }

    .cb-wide small {
        bottom: 20%;
    }


/*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
---- FAQ's ---
----------------*/


    #category-slider {
        margin: 0 auto;
        width: 525px;
    }

    

    #answers h3 {
        font-size: 1.8em;
    }

    .simple-faq {
        width: 380px;
    }

    #faq-slider {
        width: 35%;
    }

    .bxslider #faq-list li {
        width: 100%;
    }

    .cat-image {
        height: 300px;
        position: static;
        margin: 0 auto 30px;
    }

    .expand-faq {
        text-align: center;
    }




    /*----------------------------------------------------------------------------------
------------------------------------------------------------------------------------
----- About ----
----------------*/

.about {
        height: auto;
        margin: 0 auto 50px;
    }

.as-text {
        position: static;
        float: left;
        max-width: 100%;
        margin-bottom: 0;
    }

#about-slider .bx-next, 
#about-slider .bx-prev {
        top: 0px;
    }

#about-slider .bx-prev {
        left: 232px;
        right: auto;
    }

#about-slider .bx-next {
    right: 217px;
    left: auto;
}

.as-image img {
        float: none;
        margin: 0 auto;
    }

.as-selector {
        position: static;
        margin: 20px 0;
        width: 100%;
    }




     /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
----- City Guide -----
----------------*/

    .guide-selector li {
        padding: .5em 1em;
    }


}







































 
/* iPads (portrait) ----------- */
@media only screen 
and (min-width : 480px) 
and (max-width : 768px) {

    #wrapper {
        width: 90%;
    }

    .split-cols small {
        display: none;
    }

    .featured, 
    .private, 
    .group {
        height: 200px;
    }

    /*----------------------------------------------------------------
    ------ Navigation ------------------------------------------------
    ------------------------------------------------------------------*/

    #nav-main {
        margin-top: 3px;
    }

    #nav-main ul {
        padding: 6px 0;
        margin: 0 auto;
    }

    #nav-main li {
        padding: 0;
        border: none;
        border-radius: 2px;
        margin: 10px 5px;
    }

    #nav-main li a {
        font-size: .7em;
        padding: 5px;
        line-height: 15px;
        text-decoration: underline;
    }


    /*----------------------------------------------------------------
    ------ Tours Section ---------------------------------------------
    ------------------------------------------------------------------*/

    .tour-thumb {
        width: 130px;
        height: 87px;
        margin: 1px;
    }

    .tour-thumb .mask { 
    background-position: 95% 3px;
    background-size: 8px;

    -ms-transform: translateY(86%); /* IE 9 */
    -webkit-transform: translateY(86%); /* Chrome, Safari, Opera */
    transform: translateY(86%);
    }

    .tour-thumb p {
    width: 115px;
    font-size: .3em;
    padding: 5px 10px 5px 5px;

    background-position: 96% 5px;
    background-size: 8px;
    }

    h1 {
        font-size: 1.3em;
    }

/*----------------------------------------------------------------
------ Bottom ----------------------------------------------------
------------------------------------------------------------------*/

    #faqs,
    #blog,
    #contact {
        width: 100%;
        font-size: .8em;
        display: block;
        margin-bottom: 15px;
    }

    #faqs li {
        padding-bottom: 5px;
        margin-left: 14px;
    }

    #contact {
        border-left: none;
        border-right: none;
        border-top: 2px solid #191D23;
        border-bottom: 2px solid #191D23;
        text-align: left;
    }

    #contact li {
        padding-bottom: 5px;
        display: inline-block;
    }

    .phone,
    .email,
    .address {
        line-height: 24px;
        background-size: 20px;
    }

    .address {
        line-height: 17px!important;
    }

    #blog li {
        padding: 15px 0 5px;
        margin-right: 0;
    }


/*----------------------------------------------------------------
------ Footer ----------------------------------------------------
------------------------------------------------------------------*/

    #nav-secondary {
        margin: 0 auto 20px;
    }

    #nav-secondary ul {
        padding: 5px 0 10px;
    }

    #nav-secondary li {
        line-height: .7em;
        padding: 0 5px;
    }

    #nav-secondary li a {
        font-size: .7em;
    }

    .copyright {
        font-size: .7em;
        padding: 20px 0;
    }

    .logo-bottom {
        max-width: 250px;
        padding: 0;
        right: -25px;
        bottom: 25px;
    }

    #large-header h1 {
        font-size: 2.3em;
    }


    /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
-- Indiv. Tour ---
----------------*/

    #tour-highlights {
        width: 100%;
    }

    #tour-highlights li:first-child {
        width: 34%;
    }

    #highlights-slider {
        width: 60%;
    left: 50%;
    position: relative;
    float: none;

    -ms-transform: translateX(-50%); /* IE 9 */
    -webkit-transform: translateX(-50%); /* Chrome, Safari, Opera */
    transform: translateX(-50%);
    }

    .tour-extras {
        margin: 80px 0 50px;
    }

    .tour-extras li,
    .tour-ideas li {
        width: auto;
    }

    .tour-extras li img {
        max-width: 90%;
        padding: 0 5%;
    }

    #tour-prices-table {
        width: 100%;
    }

    .book-button,
    .comment-button {
        margin: 30px 0 20px;
        display: block;
    }

    .tour-comments h2 {
        margin-bottom: 20px;
    }

    .cb-small,
    .cb-wide {
        width: 90%;
        margin: 0;
        background-size: 40px;
        height: 241px;
    }

    .cb-small span,
    .cb-wide span {
        width: 96%;
        
        font-size: 1.4em;
        padding: 0 2%;
    }

    .cb-small small,
    .cb-wide small {
        bottom: 40px;
        font-size: 1em;
    }

    .cb-wide {
        margin-top: -4px;
    }

    .cb-video {
        margin: 0;
        width: 90%;
    }

    .cb-wide span {
        font-size: 1em;
        width: 90%;
        padding: 0 5%;
    }

    .cb-wide small {
        bottom: 20%;
    }

    .tour-ideas h3 {
        margin: 5px 0 35px;
    }




    /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
---- FAQ's ---
----------------*/


    #category-slider {
        margin: 0 auto;
        width: 100%;
    }

    .category2 {
        font-size: 1.2em;
    }

    #answers h3 {
        font-size: 1.8em;
         width: 30%;
        margin-right: 10px;
    }

    .simple-faq {
        width: 380px;
    }

    #faq-slider {
        width: 62%;
        margin: 0 auto;
        position: initial;
    }

    #answers p,
    #landmarks p {
        margin: 0;
    }

    .q-right {
        margin-right: 0!important;
        margin-left: 10px;
    }

    .expander h4 {
        font-size: .9em;
    }

    .expandable {
        width: 90%;
    }

    .column-faq li {
        width: 100%;
        height: auto;
    }

    .bxslider #faq-list li {
        width: 100%;
    }

    .cat-image {
        height: 300px;
        position: static;
        margin: 0 auto 30px;
    }

    .expand-faq {
        width: 100%;
    }


    /*----------------------------------------------------------------------------------
------------------------------------------------------------------------------------
----- City Guide ----
----------------*/

    .guide {
        margin: 40px 0 150px;
    }

    .guide-selector {
        position: initial;
        width: 100%;
        font-size: 0;
    }

    #guide-slider img {
        margin-left: 0;
        max-width: 100%;
    }

    .guide-selector li {
        display: inline-block;
        font-size: 14px;
        padding: 8px 0;
        border: none;
        width: 50%;
    }

    .guide-selector li span {
        text-decoration: underline;
    }

    .landmark-descrip h1 {
        font-size: 1.2em;
        width: 20%;
    }




        /*----------------------------------------------------------------------------------
------------------------------------------------------------------------------------
----- About ----
----------------*/

.about {
        height: auto;
    }

.as-text {
        position: static;
        float: left;
        max-width: 100%;
        margin-bottom: 0;
    }

#about-slider .bx-prev {
        left: 10%;
        right: auto;
        top: 0;
    }

#about-slider .bx-next {
        right: 2%;
        left: auto;
        top: 0;
    }


.as-image img {
        float: none;
        margin: 0 auto;
    }

.as-selector {
        position: static;
        margin: 5px 0;
        width: 100%;
    }


}









































/* Smartphones ----------- */
@media only screen 
and (min-width : 320px) 
and (max-width : 480px) {

    #wrapper {
        width: 100%;
    }

    .headings-container,
    .private .headings-container,
    .group .headings-container {
        width: 100%;
		height:auto;
        margin: 0 auto;
        left: 0;

        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }



    .private,
    .group {
		background-image:none;
		width:100%;
		height:auto;
        background-position: 0 25%;
    }

    .featured, 
    .private, 
    .group {
		width:100%;
		height:auto;
        padding: 1px 0;
        background-size: auto;
		background-image:none;
    }
h2 {
    font-size: 1.0em;
    font-weight: 500;
    text-transform: uppercase;
}

    .logo {
        max-width: 100%;
    }

    .split-cols {
        width: 30%;
    }

    .split-cols small {
        display: none;
    }

    #faqs li {
        padding-right: 10px;
    }

    .split-cols h1 {
        font-size: 20px;
        padding: 0 2%;
    }

    .featured .split-cols h1 {
        padding: 3% 4% 8%;
    }

    .heading p {
        padding: 0 10px 5px;
    }

    #contact li {
          vertical-align: top;
    }

    #faqs,
    #contact,
    #blog {
     margin: 0;
    }

    #blog ul {
        padding: 0 5px;
    }


#large-header {
    display:none;
	}
#gallery {
	display:none;

}

   
	

    /*----------------------------------------------------------------
    ------ Languages ------------------------------------------------
    ------------------------------------------------------------------*/

    #languages ul{
        width: 70px;
    }

    #languages ul a {
        color: #828282;

        text-decoration: underline;
        font-weight: 400;
        font-size: .6em;
        padding: 0 10px 0 0;
        line-height: 25px;
    }

    #languages ul li { 
        background-position: 8px 9px;
        background-size: 8px; 
    }

    #languages ul ul li {
        background-color: #1B2234;
    }

    #local li a {
        font-size: .8em;
    }

    /*----------------------------------------------------------------
    ------ Navigation ------------------------------------------------
    ------------------------------------------------------------------*/

    #nav-main {
		width:100%;
		height:auto;
        margin-top: 1px;
    }

    #nav-main ul {
		
		
        padding: 2px 0;
        margin: 0 auto;
    }

    #nav-main li {
		display:block;
		float:none;
        padding: 0;
        border: none;
        border-radius: 2px;
        margin: 1px .5px;
    }

    #nav-main li a {
		
		float:none;
        font-size: 1.0em;
        padding: 1px;
        line-height: 15px;
        text-decoration: none;
    }
#nav-main li:hover {
    background: #1A1D24;
}

    /*----------------------------------------------------------------
    ------ Tours Section ---------------------------------------------
    ------------------------------------------------------------------*/

    .tour-thumb {
        width: 100%;
        height: auto;
        margin: 1px;
    }

    .tour-thumb .mask { 
    background-position: 90% 10px;
    background-size: 12px;

    -ms-transform: translateY(85%); /* IE 9 */
    -webkit-transform: translateY(85%); /* Chrome, Safari, Opera */
    transform: translateY(85%);
    }

    .tour-thumb p {
    width: 100%;
    font-size: .8em;
    padding: 8px 25px 8px 8px;

    background-position: 94% 10px;
    background-size: 12px;
    }

    h1 {
        font-size: 1.3em;
    }

    .book-button {
        width: 100%;
    }
	
   

/*----------------------------------------------------------------
------ Bottom ----------------------------------------------------
------------------------------------------------------------------*/

    #faqs,
    #blog,
    #contact {
        width: 100%;
        font-size: 1.1em;
        display: block;
        margin-bottom: 15px;
		margin-top:5px;
	}

    #faqs ul {
        margin-left: 10px;
    }

    #faqs li {
        padding-bottom: 5px;
        margin-left: 14px;
    }

    #contact {
		
        border-left: none;
        border-right: none;
        border-top: 2px solid #191D23;
        border-bottom: 2px solid #191D23;
        text-align: left;
    }

    #contact li {
        padding-bottom: 5px;
        display: inline-block;
    }

    .phone,
    .email,
    .address {
        line-height: 24px;
        background-size: 20px;
    }

    .address {
        line-height: 17px!important;
    }

    #blog li {
        padding: 15px 0 5px;
        margin-right: 0;
    }


/*----------------------------------------------------------------
------ Footer ----------------------------------------------------
------------------------------------------------------------------*/

    #nav-secondary {
        margin: 0 auto 20px;
    }

    #nav-secondary ul {
        padding: 5px 0 10px;
    }

    #nav-secondary li {
        line-height: 1.0em;
        padding: 0 5px;
    }

    #nav-secondary li a {
        font-size: .7em;
    }

    .copyright {
        font-size: .7em;
        padding: 20px 0 20px 10px;
    }

    .copyright img {
        max-width: 220px;
    }

    .logo-bottom {
        max-width: 200px;
        padding: 0;
        right: -25px;
        bottom: 35px;
    }



    .as-image-container {
        max-width: 100%!important;
    }

    .as-text {
        margin: 0;
        text-align: center;
    }


    /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
-- Indiv. Tour ---
----------------*/

    #large-header h1 {
    font-size: 1.1em;
    }

    .text-container {
        margin: 0 15px;
    }

    #tour-highlights {
        width: 100%;
    }

    #tour-highlights li:first-child {
        width: 34%;
    }

    #highlights-slider {
        width: 60%;
        left: 50%;
        position: relative;
        float: none;

        -ms-transform: translateX(-50%); /* IE 9 */
        -webkit-transform: translateX(-50%); /* Chrome, Safari, Opera */
        transform: translateX(-50%);
    }

    .tour-extras {
        margin: 80px 0 50px;
    }

    .tour-extras li,
    .tour-ideas li {
        width: auto;
    }

    .tour-extras li img {
        max-width: 90%;
        padding: 0 5%;
    }

    #tour-prices-table {
        width: 100%;
    }

    #tour-prices-table li {
        font-size: 1em;
    }

    .book-button,
    .comment-button {
        margin: 30px 0 20px;
        display: block;
    }

    .tour-comments h2 {
        margin-bottom: 20px;
    }

    .cb-small,
    .cb-wide {
        width: 90%;
        margin: 0;
        background-size: 40px;
        height: 241px;
    }

    .cb-small span,
    .cb-wide span {
        width: 96%;
        
        font-size: 1.4em;
        padding: 0 2%;
    }

    .cb-small small,
    .cb-wide small {
        bottom: 40px;
        font-size: 1em;
    }

    .cb-wide {
        margin-top: -4px;
    }

    .cb-video {
        margin: 0;
        width: 90%;
    }

    .cb-wide span {
        font-size: 1em;
        width: 90%;
        padding: 0 5%;
    }

    .cb-wide small {
        bottom: 20%;
    }

    .tour-ideas h3 {
        margin: 5px 0 5px;
    }




    /*------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------
---- FAQ's ---
----------------*/


    #category-slider {
        margin: 0 auto;
        width: 100%;
    }

    .category2 {
        font-size: 1.2em;
    }

    .bx-pager-cats {
        position: initial;
        margin: 0 auto;
    }
	.bx-pager-cats li {
    list-style: none;
    display: block;
	text-align:center;
    vertical-align: top;
    border-bottom: 1px solid #E0BB6D;
  
    padding: 5px 0;
    font-weight: 500;
}

    

    .bxslider #faq-list li {
        width: auto;
    }

    #answers h3 {
        font-size: 1.8em;
        width: 43%;
        margin-right: 10px;
    }

    .simple-faq {
        width: 380px;
    }

    #faq-list {
        margin-top: 15px;
    }


    #faq-slider {
        width: 100%;
        margin: 0 auto;
        position: initial;
    }

    #answers p,
    #landmarks p {
        margin: 0;
    }

    .q-right {
        margin-right: 0!important;
        margin-left: 10px;
    }

    .expand-faq {
        width: 100%;
    }

    .expander h4 {
        font-size: 1.2em;
    }

    .expandable {
        width: 90%;
    }

    .column-faq li {
        width: 100%;
        height: auto;
    }

    .bx-pager-cats .active li {
        border-bottom: 4px solid #E0BB6D;
    }

    .cat-image {
        height: 250px;
        position: static;
        margin: 0 auto;
    }

    .expand-faq {
        width: 100%;
    }




    /*----------------------------------------------------------------------------------
------------------------------------------------------------------------------------
----- City Guide ----
----------------*/
.guide {
        margin: 1px 0 200px;
    }

    .guide-selector {
        position: initial;
        width: 100%;
        font-size: 0;
    }

    #guide-slider img {
        margin-left: 0;
        max-width: 100%;
    }

    .guide-selector li {
        display: block;
        font-size: 18px;
        padding: 2px 0;
        border: none;
        width: 100%;
    }
    
	.guide-selector li span {
        text-decoration: none;
    }

    .landmark-descrip h1 {
        font-size: 1.0em;
        width: 27%;
    }

        /*----------------------------------------------------------------------------------
------------------------------------------------------------------------------------
----- About ----
----------------*/

.about {
        height: auto;
    }

.as-text {
        position: static;
        float: left;
        max-width: 100%;
        margin-bottom: 0;
    }

#about-slider .bx-next, 
#about-slider .bx-prev {
        top: 0px;
    }

#about-slider .bx-prev {
        left: 10%;
        right: auto;
    }

#about-slider .bx-next {
    right: 2%;
    left: auto;
}

.as-image img {
        float: none;
        margin: 0 auto;
    }

.as-selector {
        width: 100%;
        position: static;
        margin: 20px 0;
    }


.coms-big,
.coms-long,
.coms-small {
    height: auto;
}

.comment span {
    font-size: .7em;
    top: 40%;
}

.comment small {
    font-size: .8em;
}

.coms-med {
  height: 90px;
}

.guide-selector li span {
    font-size: .8em;
}


.pmt-form label {
    display: block;
    width: 100%;
    margin: 0;
}

.tour-options li {
  width: 100%;
}

.personal-info {
  width: 100%;
}

.dob-sels select {
  width: 26%!important;
}

.con-forms-cols {
  width: 100%;
  margin: 5px 0 0;
}



    
}