


/*
=================================
    >>> TABLE OF CONTENTS:
=================================

01- Core & Typography
02- Common Classes
03- WordPress Core
04- Template CSS Styles
05- Main Menu
06- Header Banner
07- Tour Planner
08- Breadcrumbs
09- Main Page
10- Tour Plans
11- Single page
12- Blog
13- Comments
14- Contact
15- Gallery
16- Sidebar
17- Footer
18- Blank page & 404 Error page

===================================
*/

/* = Core & typography
-------------------------------------------------------------- */
body {
    font-family: "Karla", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #292c2f;
    background-color: #fff;
}
a {
    color: #686868;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #000;
    text-decoration: none;
    outline: 0;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 6px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.428571429;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Karla", Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: inherit;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small,
h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small,
.h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #999999;
}
h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small {
  font-size: 65%;
}
h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}
h4 small, h5 small, h6 small, h4 .small, h5 .small, h6 .small {
    font-size: 75%;
}
h1, .h1 {
    font-size: 36px;
}
h2, .h2 {
    font-size: 24px;
}
h3, .h3 {
    font-size: 22px;
}
h4, .h4 {
    font-size: 18px;
}
h5, .h5 {
    font-size: 14px;
}
h6, .h6 {
    font-size: 12px;
}

.btn,
.comment-form input[type="submit"]  {
    display: inline-block;
    margin-bottom: 0;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    padding: 4px 15px;
    font-size: 14px;
    line-height: 1.428571429;
    font-weight: 700;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.btn:hover,
.btn:focus {
    color: #333333;
    text-decoration: none;
}
.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-primary,
.comment-form input[type="submit"],
.widget_tag_cloud a {
  color: #292c2f;
  background-color: #ffe300;
  border-color: #e7ce03;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary,
.comment-form input[type="submit"] {
  color: #292c2f;
  background-color: #ffea41;
  border-color: #f4dc17;
}
.btn-blue,
.btn-blue:hover {
    background-color:#00aeef;
}
.btn-dark,
.btn-dark:hover {
    background-color:#252525;
}
.btn-red,
.btn-red:hover {
    background-color:#e03c31;
}
.btn-green,
.btn-green:hover {
    background-color:#65a108;
}
.btn-teal {
    background-color:#008080;
}
.btn-orange {
    background-color:#ff4f00;
}
.btn-purple {
    background-color:#7851a9;
}
.btn-gray {
    background-color:#3e4049;
}
.btn-smalt {
    background-color:#003399;
}
.btn-bittersweet {
    background-color:#fe6f5e;
}
.btn-pink {
    background-color:#ff007f;
}
.btn-blue-dark {
    background-color:#1b6a81;
}
.btn-pastel-brown {
    background-color:#836953;
}
.btn-maroon {
    background-color:#800000;
}

.btn-lg,
.comment-form input[type="submit"] {
  padding: 12px 20px;
  font-size: 18px;
  line-height: 1.3;
  border-radius: 4px;
}
.btn-md {
  padding: 9px 20px;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 4px;
}
.btn-sm,
.btn-xs,
.widget_tag_cloud a {
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1.3;
  border-radius: 3px;
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #f1f1f1;
    background-image: none;
    border: none;
    border-bottom: 1px solid #d6d6d6;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}
.form-control:focus {outline: 0;background:#f7f7f7; border-color: #d6d6d6;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control:-moz-placeholder {color: #999999;}
.form-control::-moz-placeholder {color: #999999;}
.form-control:-ms-input-placeholder {color: #999999;}
.form-control::-webkit-input-placeholder {color: #999999;}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {cursor: not-allowed; background-color: #eeeeee;}
textarea.form-control {height: 120px;}
.form-group {margin-bottom: 20px;}

/* =Common Classes
-------------------------------------------------------------- */
.alignleft {float:left;}
.alignright {float:right;}
img.alignleft {margin:10px 20px 10px 0}
img.alignright {margin:10px 0 10px 20px}
img.aligncenter {margin:10px auto}
.mart10 {margin-top:10px;}
.marb10 {margin-bottom:10px;}
.mart20 {margin-top:20px;}
.marb20 {margin-bottom:20px;}
.mart30 {margin-top:30px;}
.marb30 {margin-bottom:30px !important;}
.text-upper {text-transform:uppercase;}
.btn {transition:background-color .3s ease, border-color .3s ease; -moz-transition:background-color .3s ease, border-color .3s ease; -webkit-transition:background-color .3s ease, border-color .3s ease; -o-transition:background-color .3s ease, border-color .3s ease; -ms-transition:background-color .3s ease, border-color .3s ease;}
.headline { font-weight:700;}
.gray {background:#f1f1f1;}
.dark-gray {background:#e6e6e6;}
.box-shadow1 {box-shadow:0 1px rgba(0,0,0, .2); -moz-box-shadow:0 1px rgba(0,0,0, .2); -webkit-box-shadow:0 1px rgba(0,0,0, .2); -ms-box-shadow:0 1px rgba(0,0,0, .2);}
blockquote {border-bottom: 1px solid rgba(0, 0, 0, 0.1);border-left: 0; color:#292929; background:url(images/icons/blockquote.png) 0 0 no-repeat #f1f1f1;font-size: 14px; margin: 20px 0; padding: 25px 20px 25px 30px;}
blockquote strong {font-size:16px;}
blockquote p { font-weight: 300;line-height: 1.25; }
blockquote p:last-child { margin-bottom: 0;}

/* =WordPress Core
-------------------------------------------------------------- */
.entry-content:before, .entry-content:after {content: ""; display: table;}
.entry-content:after, .entry-content .aligncenter, .entry-content .alignnone {clear: both;}
.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption-text {padding-top: 10px;}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {
	background-color: #f1f1f1;
}
.sticky .entry-title, .sticky .entry-content {
	padding: 0 10px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}
.entry-content table {border: 1px solid #c6c9cd; width: 100%;}
.entry-content table > tbody > tr:nth-of-type(2n+1) {background-color: #e1e2e3;}
.entry-content table > tbody > tr:nth-of-type(2n) {background: #f1f1f1 none repeat scroll 0 0;}
.entry-content th, .entry-content td {
    border-left: 1px solid #c6c9cd;
    line-height: 1.42857;
    padding: 10px;
}
.entry-content table tr td {color: #040404;}
.entry-content table > thead > tr > th {
    background: #131516 none repeat scroll 0 0;
    color: #fff;
    vertical-align: bottom;
}

/* =Template CSS Styles
-------------------------------------------------------------- */
.container{padding: 0;}
#top-header {background:#ffe300;}
.top-row {padding:8px 0;}
.contact-email, .contact-phone {float:left; line-height:14px; margin-right:20px;}
.contact-email {padding-left:26px; background:url(images/icons/envelope.png) 0 center no-repeat;}
.contact-phone {padding-left:22px; background:url(images/icons/phone.png) 0 center no-repeat;}
.header-social {float:left; padding-left:15px; border-left:1px solid #292c2f;}
.social-media {margin:0; list-style:none;}
.social-media li {float:left; margin:0 5px;}
.social-media li a {display: block; height:14px; width:14px; line-height:14px;}
.header-social li a {color: #000000;}
.left-part:before, .left-part:after, .right-part:before, .right-part:after {content: ""; display: table;}
.left-part:after, .right-part:after {clear: both;}
.left-part {padding-top: 3px;}
.top-search {position: relative;}
.search-input {width:100%; font-size:12px; color:#292c2f; height:16px; line-height:16px; background:transparent; border:none; padding-right: 15px;}
.search-input:focus {border-bottom: 1px solid rgba(0,0,0,0.35);}
.search-submit {width:12px; height:14px; padding:0; margin:0; background:url(images/icons/search.png) 0 center no-repeat; border:none; position: absolute; right: 0; top: 4px;}

/* =Main menu
-------------------------------------------------------------- */
#main-header {background:#000;}
#main-menu {float:right; margin:0; padding:0; }
.main-nav span {display: none;}
#main-menu li {display: list-item; float: right; list-style: none outside none; margin-left: 20px; padding: 20px 10px; cursor: pointer; position: relative;}
#main-menu li a {color:#ccc; display:block; line-height:20px; padding:10px 0; font-size:16px; font-weight:700; text-transform:uppercase;}
#main-menu li:hover > a, #main-menu li.current-menu-item > a {color:#fff;}
#main-menu li ul, #main-menu li ul li ul {  background-color: rgba(0,0,0,0.92);
                                            border-top: 3px solid; left: 0; opacity: 0;
                                            visibility: hidden; padding: 10px; position: absolute;
                                            top: 100%; margin-top: -10px; width: 190px; z-index: 101;

                                            -webkit-transition: all 0.3s ease-in 0s;
                                            -moz-transition: all 0.3s ease-in 0s;
                                            -ms-transition: all 0.3s ease-in 0s;
                                            -o-transition: all 0.3s ease-in 0s;
                                            transition: all 0.3s ease-in 0s;
                                        }

#main-menu li ul li ul {top:0; left:100%;}
#main-menu li ul li, #main-menu li ul li ul li {float: left; margin: 0; padding: 0; width: 100%;}
#main-menu li ul li a, #main-menu li ul li ul li a {float: left; font-size: 13px; line-height: 20px;
                                                    padding: 10px 5px; width: 100%; overflow: hidden;

                                                    -webkit-transition: all 0.3s ease-in 0s;
                                                    -moz-transition: all 0.3s ease-in 0s;
                                                    -ms-transition: all 0.3s ease-in 0s;
                                                    -o-transition: all 0.3s ease-in 0s;
                                                    transition: all 0.3s ease-in 0s;
                                                }
#main-menu li ul li a:hover {padding-left: 15px; }
#main-menu li:hover > ul { left: 0; opacity: 1; visibility: visible; margin-top: 0;}
#main-menu li:last-child ul { left: auto; right: 0;}
#main-menu li:hover > ul li:hover ul {left: 100%;}
#main-menu ul li:hover {background-color: #000;}

/* =Header Banner
-------------------------------------------------------------- */
#main-slider {position:relative;}
#content-slider {position:relative; overflow:hidden;}
#content-slider ul {padding:0; list-style:none; position:relative;}
#content-slider ul li {width:100%; position:absolute; top:0; left:0;}
#slider-overlay {width:100%; height:500px; position:absolute; bottom:0; left:0; z-index:80; background:-moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); background:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); background:-o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); background:-ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); background:linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);}
.slider-heading {margin:0; padding:0;}
.caption-yellow, .caption-white, .caption-black {padding:5px 10px;}
.caption-yellow {background:#ffe300;}
.caption-white {background:#fff;}
.caption-black {color:#fff; background:#131516;}
.vc-banner-overlay {position: relative;}
.vc-banner-overlay:before {content: ""; background-color:rgba(0,0,0,0.8); position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: inline-block !important; z-index: 1;}
.main-contents .container > .vc_row.vc-banner-overlay:first-child {margin-top: -40px;}
.vc-banner-overlay .header-banner{padding:70px 0;}
.banner-overlay {padding:70px 0; background:rgba(0,0,0, .8);}
.header-banner {background-repeat: no-repeat; -webkit-background-size: cover; background-size: cover;}
.header-banner h1, .header-banner h2 {color:#ffe300; font-size: 36px; margin:0;}
.home-page {position:relative; z-index:92; margin-top:-330px;}
#page {margin-bottom:10px;}
.rev_slider .slotholder:after {
    width: 100%;
    height: 50%;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    background:-moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1)));
    background:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background:-o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background:-ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background:linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}

/* =Tour Planner
-------------------------------------------------------------- */
.plan-tour {    background: none repeat scroll 0 0 #FFFFFF; padding-left: 180px; position: relative;
                margin-bottom: 30px; min-height: 140px;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                -ms-border-radius: 5px;
                -o-border-radius: 5px;
                border-radius: 5px;
            }
.plan-banner {  background: none repeat scroll 0 0 #FFE300; padding: 17px 10px; text-align: right;
                width: 180px; position: absolute; left: 0; top: 0;

                -webkit-border-radius: 3px 0 0 3px;
                -moz-border-radius: 3px 0 0 3px;
                -ms-border-radius: 3px 0 0 3px;
                -o-border-radius: 3px 0 0 3px;
                border-radius: 3px 0 0 3px;
            }
.plan-banner > span {float: right; font-size: 22px; font-weight: 700; letter-spacing: -1px; padding-right: 30px;
                        -webkit-transform: rotate(-15deg);
                        -moz-transform: rotate(-15deg);
                        -ms-transform: rotate(-15deg);
                        -o-transform: rotate(-15deg);
                        transform: rotate(-15deg);
                    }
.plan-banner > h4   {font-size: 44px; line-height: 33px; letter-spacing: -2.5px; padding-right: 17px;

                    -webkit-transform: rotate(-15deg);
                    -moz-transform: rotate(-15deg);
                    -ms-transform: rotate(-15deg);
                    -o-transform: rotate(-15deg);
                    transform: rotate(-15deg);
                    }
.input-field { padding: 10px;}
.input-field > input, .input-field > select {width: 100%;color: #C6C6C6;border: 0;height: 30px;padding: 5px 10px;border-bottom: 1px solid #D6D6D6; text-align: left;}
.top-fields:before, .bottom-fields:before, .top-fields:after, .bottom-fields:after {content: ""; display: table;}
.top-fields:after, .bottom-fields:after {clear: both;}

.top-fields, .bottom-fields {background-color: #ECECEC;padding: 10px;

                            -webkit-border-radius: 0 3px 0 0;
                            -moz-border-radius: 0 3px 0 0;
                            -ms-border-radius: 0 3px 0 0;
                            -o-border-radius: 0 3px 0 0;
                            border-radius: 0 3px 0 0;
                            }
.bottom-fields {background: none;}
.input-field.schedule > input {width: 46%;float: left;}
.calendar-icon {background: url("images/icons/calendar-dp.png") no-repeat scroll center center rgba(0, 0, 0, 0);
                float: left;height: 30px;padding: 0 5px;width: 8%;
                }
.input-field label {
    color: #94969B;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    padding-right: 10px;
}
.input-field.select label{
    float: left;
    width: 45%;
}
.input-field.select select, .input-field.select .minict_wrapper {
    float: left;
    height: 30px;
    line-height: 30px;
    padding: 6px 10px;
    width: 55%;
    background: none repeat scroll 0 0 #ECECEC;
    border: 0;
}
.input-daterange input:first-child,
.input-daterange input:last-child {
    border-radius: 0;
}
.list-tour-types:before, .list-tour-types:after {content: ""; display: table;}
.list-tour-types:after {clear: both;}
.list-tour-types {list-style: none; padding: 15px 0; margin: 0; text-transform: uppercase;}
.list-tour-types li:before {content: "|"; color: #686868; line-height: 1; position: absolute; right: 0; top: 3px;}
.list-tour-types li:first-child:before,
.list-tour-types li:last-child:before {content: "";}
.list-tour-types li {display:inline-block; padding: 0 16px 0 12px; position: relative;}
.list-tour-types li:first-child {padding: 0;}
.list-tour-types li:nth-child(2) {padding-left: 5px;}
.list-tour-types li a {display: block;}

.submit-btn{padding: 10px;}
.submit-btn input {
    background: none repeat scroll 0 0 #FFE401;
    border: 0 none;
    color: #292C2F;
    float: left;
    font-weight: 600;
    height: 30px;
    padding: 5px 10px;
    text-transform: uppercase;
    width: 100%;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

/*Bootstrap Datepicker*/
.datepicker td.selected {
    border-radius: 0 4px 4px 0;
}
.datepicker td.active{
    border-radius: 4px 0 0 4px;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused,
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover:hover {
    background-color: #ECECEC;
    background-image: none;
}
.datepicker table tr td.range {
    background-color: rgba(255, 226, 0, 0.3);
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
    background-color: #FFE200;
    background-image: none;
    color: #000;
}

/* =Breadcrumbs
-------------------------------------------------------------- */
.breadcrumb { background-color: transparent; float:right; margin:0; padding:10px 0 0; list-style: none; }
.breadcrumb > li { display: inline-block;}
.breadcrumb > li + li:before {content: ""; padding: 0}
.breadcrumb a, .breadcrumb > .active {color: #fff;}
.breadcrumb li {padding-left:30px; background:url(images/icons/bc-arrow.png) 10px center no-repeat;}
.breadcrumb li:first-child {padding-left:16px; background:url(images/icons/bc-home.png) 0 5px no-repeat;}

/* =Pagination
-------------------------------------------------------------- */
.pagination {display: inline-block; list-style: none; margin: 0 0 30px; padding-left: 0;}
.pagination > li {display: inline;}
.pagination > li > a, .pagination > li > span {
    background-color: #f1f1f1;
    border-bottom: 1px solid #d6d6d6;
    color: #292c2f;
    float: left;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42857;
    margin-left: 1px;
    padding: 8px 18px;
    position: relative;
    text-decoration: none;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    background-color: #f6f6f6;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #b0afaf;
    border-color: #a7a6a6;
    color: #ffffff;
    cursor: default;
    z-index: 2;
}

/*WordPress Pagination*/
.wp-pagination {display: inline-block; margin: 0 0 30px; padding-left: 0;}
.wp-pagination .page-numbers {
    background-color: #f1f1f1;
    border-bottom: 1px solid #d6d6d6;
    color: #292c2f;
    float: left;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42857;
    margin-left: 1px;
    padding: 8px 18px;
    position: relative;
    text-decoration: none;
}
.wp-pagination .page-numbers:hover, .wp-pagination .page-numbers:focus {background-color: #f6f6f6;}
.wp-pagination .page-numbers.current {background-color: #b0afaf;
    border-color: #a7a6a6;
    color: #ffffff;
    cursor: default;
    z-index: 2;
}

/*WordPress Post Pagination*/
.pagination > li,
.pagination > a {
	background-color: #f1f1f1;
    border-bottom: 1px solid #d6d6d6;
    color: #292c2f;
    float: left;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.42857;
    margin-left: 1px;
    padding: 8px 18px;
    position: relative;
    text-decoration: none;
}
.pagination > li {background-color: #b0afaf; border-color: #a7a6a6; color: #ffffff;}
.pagination > a:hover {background-color: #f6f6f6;}
.entry-content .pagination {margin-bottom: 0;}

/* =WordPress Post Navigation
-------------------------------------------------------------- */
.post-navigation {margin: 30px 0;}
.nav-links {background-color: #f1f1f1; border-bottom: 1px solid #d6d6d6; display: table; width: 100%;}
.nav-links .nav-previous, .nav-links .nav-next {display: table-cell; vertical-align: middle; width: 50%;}
.nav-links .nav-next {border-left: 1px solid #ffffff; text-align: right;}
.nav-links a {background-color: #f1f1f1; color: #292c2f; display: block; font-weight: 700; padding: 20px 40px; position: relative;}
.nav-links a:after {
    content: "";
    border-left: 1px solid #292c2f;;
    border-bottom: 1px solid #292c2f;;
    position: absolute;
    height: 20px;
    width: 20px;
    left: 15px;
    top: 50%;
    margin-top: -10px;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-links .nav-next a:after {
    left: auto;
    right: 15px;
    -webkit-transform: rotate(-130deg);
    -moz-transform: rotate(-130deg);
    -ms-transform: rotate(-130deg);
    -o-transform: rotate(-130deg);
    transform: rotate(-130deg);
}
.nav-previous:hover, .nav-next:hover, .nav-previous:hover a, .nav-next:hover a {background-color: #f6f6f6;}

/* =Navbar
-------------------------------------------------------------- */
.nav-tabs {background-color: #ffe300; border-bottom: 1px solid rgba(0, 0, 0, 0.1); margin-top: 30px;}
.nav-tabs > li > a {border-radius: 0; color: #000; font-size: 15px; font-weight: 700; line-height: 2; margin-right: 2px;}
.nav-tabs > li > a:hover, .nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {border-color: transparent; background-color: #000; color: #fff;}

/* =Mian Page
-------------------------------------------------------------- */
.main-contents {padding-top: 40px;}
.main-contents .container > .vc_row:first-child .wpb_revslider_element {margin-top: -40px;}
.ft-data:before, .ft-data:after, .ft-foot:before, .ft-foot:after,
.ft-foot-ex:before, .ft-foot-ex:after {
    content: ""; display: table;
}
.ft-data:after, .ft-foot:after, .ft-foot-ex:after {
    clear: both;
}
.exc-media-content {position: relative; z-index: 20; text-align:right}
.ft-heading {margin-bottom:20px;}
#ft-scroller {position:relative; margin-bottom:10px;}
.content-scroll {padding:0; width:2000em; list-style:none; position:absolute;}
.content-scroll li {float:left; width:292px; padding:0 15px;}
.ft-nav {width:60px; height:24px; position:absolute; top:-40px; right:10px;}
#ft-next, #ft-prev {float:left; width:24px; height:24px; text-indent:-9999px; font-size:0; line-height:0; transition:background .6s ease; -moz-transition:background .6s ease; -webkit-transition:background .6s ease; -o-transition:background .6s ease; -ms-transition:background .6s ease;}
#ft-prev {background:url(images/icons/left-arrow-light.png) 0 center no-repeat;}
#ft-prev:hover {background:url(images/icons/left-arrow.png) 0 center no-repeat;}
#ft-next {margin-left:5px; background:url(images/icons/right-arrow-light.png) 0 center no-repeat;}
#ft-next:hover {background:url(images/icons/right-arrow.png) 0 center no-repeat;}
.ft-item {margin-bottom:30px;}
.ft-image {display:block;}
.ft-image img {}
.ft-data {padding:10px; background:#ffe300;}
.ft-data > a, .featured-btm > a {float:left; color:#292c2f; font-size:12px; line-height:16px;}
.ft-data > a + a, .featured-btm > a + a {margin-left: 10px;}
.ft-data > a > i, .featured-btm > a > i {margin-right: 5px;}
.ft-foot {padding:3px 10px; background:#000; color: #fff;}
.ft-title {float:left; font-size:14px;}
.ft-title a {color:#fff;}
.ft-offer {float:right; color:#fff; font-size:11px; font-weight:700; margin-top:10px;}
.ft-data a:hover {color:#000;}
.ft-foot-ex {padding:6px 0 0;}
.ft-date, .ft-temp {color:#94969b; font-size:13px;}
.ft-date {padding-left:16px; background:url(images/icons/calendar.png) 0 center no-repeat;}
.ft-temp {padding-right:16px; background:url(images/icons/temp.png) right center no-repeat;}

.bom-contents {padding:20px 0; background:#f1f1f1;}
.fd-column {padding-top:100px; padding-bottom:20px;}
.featured-dest {padding:80px 20px 20px; position:relative; background:#fff; border-bottom:1px solid #cacaca;}
.fd-image {width:150px; height:150px; position:absolute; top:-75px; left:50%; margin-left:-75px;}
.btn-center {display:block; text-align:center;}

.flex-direction-nav {position: absolute; right: 0; top: -25px;}
.flex-direction-nav li {float: left; margin: 0 !important; margin-right: 0;}
.flex-direction-nav li a {
    background: rgba(0, 0, 0, 0) url("images/icons/left-arrow-light.png") no-repeat scroll 0 0;
    color: transparent;
    float: left;
    height: 24px;
    margin-left: 10px;
    width: 24px;
    position: static;
    opacity: 1;
    filter: alpha(opacity=100);
}
.flex-direction-nav li a.flex-next {
    background: rgba(0, 0, 0, 0) url("images/icons/right-arrow-light.png") no-repeat scroll 0 0;
}
.flex-direction-nav li a:hover {
    background: rgba(0, 0, 0, 0) url("images/icons/left-arrow.png") no-repeat scroll 0 0;
}
.flex-direction-nav li a.flex-next:hover {
    background: rgba(0, 0, 0, 0) url("images/icons/right-arrow.png") no-repeat scroll 0 0;
}

/* =Tour Plans
-------------------------------------------------------------- */
.tour-plans {margin-bottom:30px;}
.plan-image {position:relative;overflow: hidden;}
.post-data { margin-bottom: 30px;}
#page .post-data {margin-bottom: 0;}
.plan-image:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.plan-image img {
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.featured-btm:before, .featured-btm:after {content: ""; display: table;}
.featured-btm:after {clear: both;}
.offer-box {position:absolute; left:20px; bottom:20px;}
.offer-top {width:100%; padding:10px 15px; background:#000;}
.offer-top .ft-temp {color:#fff; margin:-5px -10px 0 0;}
.offer-bottom {width:100%; padding:10px 15px; background:#ffe300;}
.featured-cr, .featured-cr a {color:#ffe300; font-size:20px; font-weight:700;}
.featured-cy, .featured-cy a {color:#fff; line-height:1; font-size:32px; margin:0;}
.featured-spe {font-size:32px; font-weight:700; line-height:1;}
.featured-btm {padding:13px 10px; background:#ffe300;}
.featured-btm a:hover {color:#000;}
.plans-list {padding:30px 30px 0; margin:0;}
.plan-detail {margin-bottom: 30px;}
.plan-info {padding:10px 20px; background:#fff; border-bottom:1px solid rgba(0,0,0, .2);}
.inside-pane {padding:30px 30px 20px;}
#flightSchedule .table {margin-bottom: 0;}

/* =Single Page
-------------------------------------------------------------- */
.single-ft-btm {padding-left:104px; position:relative; margin-bottom:20px;}
.single-ft-btm li {float:left; margin-right:20px; padding-left:18px; line-height:1.2;}
.single-ft-btm li.author-img {height: 64px; width: 64px; padding:0; margin:0; position:absolute; bottom:10px; left:20px;}
.img-wt-border {border:2px solid rgba(255,255,255, .7);}
.single-ft-btm li a {color:#292c2f; font-size:12px; font-weight:700; margin:0;}
.single-ft-btm li a:hover {color:#000;}
.single-ft-btm li.post-author {background:url(images/icons/author.png) 0 center no-repeat;}
.single-ft-btm li.post-date {background:url(images/icons/date.png) 0 center no-repeat;}
.single-ft-btm li.post-category {background:url(images/icons/category.png) 0 center no-repeat;}
.single-ft-btm li.post-tags {background:url(images/icons/tags.png) 0 center no-repeat;}
.about-author {padding:20px 20px 20px 120px; margin:30px 0; min-height: 130px; position:relative;}
.author-image {position:absolute; top:30px; left:30px;}

/* =Blog
-------------------------------------------------------------- */
.blog,
.list-view {list-style:none; padding:0;}
.list-view .social-media {border:none;}
.post-data .entry-content {border-bottom:1px solid #d6d6d6; padding-bottom: 15px;}
.entry-title {font-size: 18px; margin-top: 10px; margin-bottom: 10px;    text-align: right;}
.entry-title a {color: #292C2F; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%;}
.detail-plans-list li { width:20%;}
.post-data .entry-content .btn {margin-top: 5px;}

/* =Comments
-------------------------------------------------------------- */
.comments {padding:10px 30px;}
.comments h3 {margin-bottom:30px;}
.comment-body {padding-left:90px; position:relative;}
.commenter-image {position:absolute; top:0; left:0; border:1px solid #b0b0b0;}
.comment-date, .comment-reply-link {font-size:12px; color:#929292; padding-left:15px;}
.comment-date {margin:0 15px; background:url(images/icons/calendar.png) 0 center no-repeat;}
.comment-reply-link {padding-left:18px; background:url(images/icons/reply.png) 0 center no-repeat;}
.comment-text {padding:10px 0; margin-bottom:20px; font-size:13px; border-bottom:1px solid #d8d8d8;}
.comments-list li ul.children {list-style:none; padding:0 0 0 30px; margin:0;}
.last-comment .comment-text {border:none; margin:0;}
.comments-disabled { margin-top: 15px;}

/* =Contact
-------------------------------------------------------------- */
#contactMap, #contactForm {float:left; width:100%; margin-bottom:20px;}
#contactMap {height:360px;}
#contactMap iframe {height: 100%; width: 100%;}
.formFields {padding:0;}
.formFields li, .comment-form > p {margin-bottom:20px;}
.comment-respond h3 {font-size: 24px; margin-top: 20px; margin-bottom: 20px;}
.comment-form-author, .comment-form-email {float: left; width: 50%;}
.comment-form-author {padding-right: 15px;}
.comment-form-email {padding-left: 15px;}
.required {color:#b8b8b8;}

.comment-form input,
.comment-form textarea,
.comment-form select,
.searchform input[type="text"] {
    display: block; width: 100%; height: 40px; padding: 6px 12px; font-size: 14px;
    line-height: 1.428571429; color: #555555; vertical-align: middle; background-color: #f1f1f1;
    background-image: none; border: none;border-bottom: 1px solid #d6d6d6;
}
.comment-form input[type="submit"] { display: inline-block; width: auto; height: auto;margin-right: 20px; padding: 6px 15px;}
.comment-form input:focus,.comment-form textarea:focus,.comment-form select:focus, .searchform input[type="text"]:focus {outline: 0;background:#f7f7f7;}
.comment-form input:-moz-placeholder,.comment-form textarea:-moz-placeholder {color: #999999;}
.comment-form input::-moz-placeholder,.comment-form textarea::-moz-placeholder {color: #999999;}
.comment-form input:-ms-input-placeholder,.comment-form textarea:-ms-input-placeholder {color: #999999;}
.comment-form input::-webkit-input-placeholder,.comment-form textarea::-webkit-input-placeholder{color: #999999;}

.comment-content a {word-wrap: break-word;}
.bypostauthor {display: block;}

.comments table {border: 1px solid #c6c9cd; width: 100%;}
.comments table tbody tr th,
.comments table tbody tr td {border-left: 1px solid #c6c9cd; padding: 10px; color: #040404;}
.comments table tbody tr th {background-color: #131516; color: #ffffff;}
.comments table tbody .odd {background-color: #e1e2e3;}
.comments table tbody .even {background-color: #f1f1f1;}

/* WordPress Gallery
------------------------------------------ */
.gallery:before, .gallery:after {display: table; content: "";}
.gallery:after {clear: both;}
.gallery {margin-left: -15px; margin-right: -15px;}
.gallery-item {margin: 0 0 30px; float: right; padding: 0 15px; position: relative; overflow:hidden;}

.gallery-columns-1 .gallery-item {width: 100%;float: none;}
.gallery-columns-2 .gallery-item {width: 50%}
.gallery-columns-3 .gallery-item {width: 33.3333%}
.gallery-columns-4 .gallery-item {width: 25%}
.gallery-columns-5 .gallery-item {width: 20%}
.gallery-columns-6 .gallery-item {width: 16.6667%}
.gallery-columns-7 .gallery-item {width: 14.2857%}
.gallery-columns-8 .gallery-item {width: 12.5%}
.gallery-columns-9 .gallery-item {width: 11.1111%}
.gallery-item .gallery-icon{border:1px solid #dddddd;}
.gallery-item img {width: 100%;}
.gallery-caption {
    background-color: rgba(0,0,0,0.6);
    padding: 15px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 0;
    bottom: 0;
    opacity: 0;
    filter: alpha(opacity=0);

    -webkit-transform:scale(0.8);
    -moz-transform:scale(0.8);
    -ms-transform:scale(0.8);
    -o-transform:scale(0.8);
    transform:scale(0.8);

    -webkit-transition:all 0.4s linear;
    -moz-transition:all 0.4s linear;
    -ms-transition:all 0.4s linear;
    -o-transition:all 0.4s linear;
    transition:all 0.4s linear;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    filter: alpha(opacity=100);

    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);
    transform:scale(1);
}

.gallery-caption > a {display: block; position: absolute; height: 100%; width: 100%; left: 0; top: 0;}
.gallery-caption > a:after {
    content: "";
    background-image: url(images/icons/gal-zoom-icon.png);
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    opacity: 0;
    filter: alpha(opacity=0);

    -webkit-transition:all 0.4s linear;
    -moz-transition:all 0.4s linear;
    -ms-transition:all 0.4s linear;
    -o-transition:all 0.4s linear;
    transition:all 0.4s linear;

    -webkit-transform: perspective(20px) rotateY(50deg);
    -moz-transform: perspective(20px) rotateY(50deg);
    -ms-transform: perspective(20px) rotateY(50deg);
    -o-transform: perspective(20px) rotateY(50deg);
    transform: perspective(20px) rotateY(50deg);
}
.gallery-item:hover .gallery-caption a:after {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.gallery-caption > a p {
    color: #ffffff;
    position: absolute;
    text-align: center;
    bottom: 0;
    padding: 3% 20px;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* =Sidebar
-------------------------------------------------------------- */
.side-bar {position: relative; z-index: 100;}
.sidebar-widget {float:left; width:100%; margin-bottom:30px;}
.sidebar-widget h3 {margin-bottom:20px; margin-top:0;}
.sidebar-widget .tab-content {margin:0;}
.sidebar-social {float:left; width:100%; padding:0; margin:0;}
.sidebar-social li {float:left; width:33%; padding:0; margin-right:.5%;}
.sidebar-social li a {float:left; width:100%; height:110px; padding:65px 0 0;}
.sidebar-social li.facebook a {background:url(images/icons/facebook-sb.png) center 20px no-repeat #4c6da9;}
.sidebar-social li.twitter a {background:url(images/icons/twitter-sb.png) center 20px no-repeat #1c9ddf;}
.sidebar-social li.rss {margin:0;}
.sidebar-social li.rss a {background:url(images/icons/rss-sb.png) center 20px no-repeat #ff8d00;}
.sidebar-social li a span {color:#fff; display:block; line-height:1;}
.sidebar-social li a span.sc-count {font-size:20px; font-weight:700;}
.sidebar-social li a span.sc-text {font-size:13px;}
.styled-box {float:left; width:100%; padding:20px 20px 0; border-bottom:1px solid #d6d6d6;}
.contact-info {margin:20px 0;}
.contact-info li {padding:3px 0 3px 30px;}
.contact-info li.ct-phone {background:url(images/icons/ct-phone.png) 0 center no-repeat;}
.contact-info li.ct-email {background:url(images/icons/ct-email.png) 0 center no-repeat;}
.contact-info li.ct-facebook {background:url(images/icons/ct-facebook.png) 0 center no-repeat;}
.contact-info li.ct-twitter {background:url(images/icons/ct-twitter.png) 0 center no-repeat;}
.input-style1 {background:#fff; border:1px solid #d6d6d6;}
.input-style1:focus {background:#fff; border:1px solid #c6c6c6;}
.tweets-list li {padding-bottom:10px; margin-bottom:20px; border-bottom:1px dotted #999;}
.twitter-follow {display:block; margin-bottom:20px; padding-left:24px; background:url(images/icons/twitter-bird.png) 0 center no-repeat;}
.tweet-link {display:block; margin-bottom:5px;}
.cats-list li {padding:7px 10px 7px 24px; margin-bottom:3px; border-bottom:1px solid rgba(0,0,0, .1); background:url(images/icons/cat-arrow.png) 10px center no-repeat #f1f1f1;}
.cats-list li span {float:right; color:#929292; font-size:12px;}
.tab-pane .rc-posts-list {float:left; padding:20px 20px 0;}
.tab-pane .rc-posts-list li.last-rc-post {border:none; margin:0;}
.post-tags li {display:inline-block; margin:0 10px 6px 0;}
.flickr-gal {float:left; margin:-5px; padding:0;}
.flickr-gal li {float:left; width:25%; padding:5px;}
.panel-default .panel-title {cursor:pointer; background:url(images/icons/not-collapsed.png) right center no-repeat;}
.panel-default .panel-title.collapsed {background:url(images/icons/collapsed.png) right center no-repeat;}
.social-tabs {border:none;}
.social-tabs li {width:33.3334%;}
.social-tabs li, .social-tabs li a {margin:0;}
.social-tabs li a {color:#fff; font-size:14px; padding-left:35px; padding-right:5px; letter-spacing:-1px;}
.social-tabs li.active a {padding-top:12px; padding-bottom:12px; margin-top:-4px;}
.social-tabs li a.facebook-tab, .social-tabs li a.facebook-tab:hover, .social-tabs li.active a.facebook-tab {background:url(images/icons/facebook-tab.png) 12px center no-repeat #7085b8;}
.social-tabs li a.twitter-tab, .social-tabs li a.twitter-tab:hover, .social-tabs li.active a.twitter-tab {background:url(images/icons/twitter-tab.png) 10px center no-repeat #00a7d4;}
.social-tabs li a.share-tab, .social-tabs li a.share-tab:hover, .social-tabs li.active a.share-tab {background:url(images/icons/share-tab.png) 10px center no-repeat #116515;}
.widget-ads { list-style:none; padding:0; margin:0; margin-left:-10px; }
.widget-ads li { width:50%; float:left; }
.widget-ads li a { margin-left:10px; }

/*Advanced Post Widget*/
.widget_exc_advanced_posts_widget {background-color: #f1f1f1; border-bottom: 1px solid #d6d6d6; padding: 20px;}
.widget_exc_advanced_posts_widget ul {list-style: none; margin:0px; padding:0px;}
.widget_exc_advanced_posts_widget ul li {border-bottom: 1px dotted #999; margin-bottom: 10px; padding-bottom: 10px;}
.widget_exc_advanced_posts_widget ul li:last-child {border-bottom: none; margin: 0; padding: 0;}
.adv-recent-post:before, .adv-recent-post:after {content: ""; display: table;}
.adv-recent-post:after {clear: both;}
.recent-post-img {float:left; width:80px; height:65px; margin-right:15px;}
.recent-post-img img {height: 65px; width: 80px;}
.recent-post-date {float:left; color:#686868;}
.adv-recent-post h5 {margin-top: 0;}

/* WordPress Default Widgets
================================================== */
.widget {margin-bottom: 30px;}
.widget h3 {margin-top: 0; margin-bottom: 20px;}
.widget h3 a {color: #292c2f;}
.widget ul li:before,.widget ul li:after {content: ""; display: table;}
.widget ul li:after{clear: both;}
.widget-gray {background-color: #f1f1f1; border-bottom: 1px solid #d6d6d6; padding: 20px;}

/*Categories Widget*/
.widget_categories {}
.widget_categories ul {list-style:none; margin:0px; padding:0px;}
.widget_categories > ul > li {background:url(images/icons/cat-arrow.png) 10px 14px no-repeat #f1f1f1; margin-bottom:3px; border-bottom:1px solid rgba(0,0,0, .1); padding:7px 10px 7px 24px;}
.widget_categories ul li { font-size: 12px; color: #929292; position:relative; text-align:right; display:block;}
.widget_categories ul li a {float:left; font-size: 14px; text-align:left; display:inline-block;}
.widget_categories ul li ul {clear: both; padding:0px 20px 0px 20px;}
.widget_categories ul li ul li {padding: 5px 0;}
.widget_categories select {margin-top: 0;}

/*Pages Widget*/
.widget_pages {}
.widget_pages ul {list-style: none; margin:0px; padding:0px;}
.widget_pages > ul > li {background:url(images/icons/cat-arrow.png) 10px 14px no-repeat #f1f1f1; margin-bottom:3px; border-bottom:1px solid rgba(0,0,0, .1); padding:7px 10px 7px 24px;}
.widget_pages ul li {color: #929292; position:relative; display:block;}
.widget_pages ul li a {display:inline-block; }
.widget_pages ul li ul {padding:0px 20px 0px 20px;}
.widget_pages ul li ul li {padding:5px 0px;}

/*Archive Widget*/
.widget_archive {}
.widget_archive ul {list-style:none; margin:0px; padding:0px;}
.widget_archive ul li {border-bottom:1px solid rgba(0,0,0, .1); background:url(images/icons/cat-arrow.png) 10px center no-repeat #f1f1f1;
    font-size: 12px; color: #929292; position:relative; text-align:right; display:block; padding:7px 10px 7px 24px; margin-bottom:3px;}
.widget_archive ul li a {float:left; font-size: 14px; text-align:left; display:inline-block;}

/*Calendar Widget*/
.widget_calendar {}
#wp-calendar {width:100%;}
#wp-calendar caption{ color:#292c2f; padding:10px 5px; text-align: center;}
#wp-calendar thead {background:#000;}
#wp-calendar thead th {color:#ffffff; padding:3px 0px; text-align: center;}
#wp-calendar tbody{background-color:#f1f1f1; text-align:center; width:100%;}
#wp-calendar tbody td {padding:0px; line-height:30px; vertical-align:middle; font-size:11px; border:1px solid #f9f9f9;}
#wp-calendar tbody td a{display:block; font-weight:bold; background-color: #000; color: #fff;}
#wp-calendar tbody td a:hover { background-color:#252525;}
#wp-calendar tfoot a{display:inline-block; color:#fff; float:left; font-size:12px; padding:3px 5px 3px 5px;background-color:#000;}
#wp-calendar tfoot a:hover { background-color:#252525;}
#wp-calendar tfoot #next a {float:right;}

/*Nav Menu Widget*/
.widget_nav_menu .menu-main-menu-container {}
.widget_nav_menu ul {list-style: none; margin:0px; padding:0px;}
.menu-main-menu-container > ul > li {border-bottom: 1px dotted #999;}
.widget_nav_menu ul li {padding: 7px 0 }
.widget_nav_menu ul li a {display:inline-block;}
.widget_nav_menu ul li ul {padding:5px 20px 0px 20px;}
.widget_nav_menu ul li ul li {padding:5px 0px;}

/*Meta Widget*/
.widget_meta ul { list-style: none; padding: 0; margin: 0}
.widget_meta ul li {border-bottom: 1px dotted #999; padding: 10px 0;}
.widget_meta ul li a {display:inline-block;}

/*Widget Recent Coments*/

.widget_recent_comments {}
.widget_recent_comments ul {list-style: none; margin:0px; padding:0px;}
.widget_recent_comments ul li {border-bottom: 1px dotted #999; padding: 10px 0;}
.widget_recent_comments ul li a {display:inline-block;}

/*Widget Recent Entries*/
.widget_recent_entries {}
.widget_recent_entries ul {list-style: none; margin:0px; padding:0px;}
.widget_recent_entries ul li {border-bottom: 1px dotted #999; padding: 10px 0;}
.widget_recent_entries ul li a {display: inline-block;}

/*Widget Search*/
.widget_search {}
.widget_search form {margin-bottom:0;}
.widget_search label{}
.widget_search input[type="text"] {margin-bottom: 20px;}
.widget input[type="text"], .widget input[type="password"],.widget input[type="email"],
.widget textarea,.widget select {border:1px solid #d6d6d6; width:100%; height:40px;padding: 6px 12px;}
.searchform input[type="submit"]{border: none; border-radius: 4px; font-size: 14px; font-weight: 700; padding: 6px 15px; text-transform: uppercase;}

/*Widget Tag Cloud*/
.widget_tag_cloud {}
.widget_tag_cloud a {display:inline-block; float:left; margin:0px 5px 5px 0px;}
.tagcloud:before, .tagcloud:after {content: ""; display: table;}
.tagcloud:after {clear: both;}

/*Widgets Text*/
.widget_text {}
.widget_text strong {display: inline-block; margin: 5px 0;}
.widget_text .wp-caption {max-width: 100%;}
.widget_text .wp-caption.alignnone {margin: 0;}
.widget_text .wp-caption p.wp-caption-text {padding-top: 5px;}

/*Widgets RSS*/
.widget_rss {}
.widget_rss ul {list-style: none; padding: 0; margin: 0;}
.widget_rss ul li {border-bottom: 1px dotted #999; padding: 10px 0;}
.widget_rss ul li a {display:inline-block;}


/* =404 Page
-------------------------------------------------------------- */
.error-page {max-width:464px; margin:0px auto 60px; text-align:center;}
.error-page .error-text {text-transform:uppercase; border:1px solid #eaeaea; padding:8px 0 6px; margin-bottom:10px;}
.error-page .error-text .back-home {margin-left: 10px;}
.error-page figure { margin-bottom:20px; }
.error-page .error-text span {display:block; font-size:24px; font-weight:bold; text-align:center; line-height:35px;}
.error-page .error-text span.large-text {font-size:30px; font-weight:bold;}
.error-page .back-home {font-size:16px; color:#000; display:inline-block; }
.error-page .back-home:before {content:""; background:url(images/icons/icon-home.png) no-repeat; display:inline-block; width:19px; height:19px; margin-right:10px;}
.error-page .search {position: relative;}
.error-page .search input[type="submit"] {border-radius: 0; height: 40px; position: absolute; right: 0; top: 0;}
/* =Signup
-------------------------------------------------------------- */
.strength-container {display: block; top: 0; width: 100%; height:11px; }
.strength-plain {background-color: #F6F6F6; float: left; height: 9px; width: 20%;}
.strength-plain.fill { background-color: #75C03D;}

/* =User Profile
-------------------------------------------------------------- */
.booking {padding:25px;}
.selected-deal {width:45%; border-right:1px dotted #999999; padding-right:25px;}
.booking-status {width:55%; padding-left:25px; border-left:1px dotted #999999; margin-left:-1px;}
.selected-deal,.booking-status {float:left;}
.selected-deal .ft-item {margin-bottom:0;}
.selected-deal h2, .booking-status h2 {margin-top:0;}
.booking-status ul li label {font-weight:normal;}
.booking-status ul li input {margin-right:5px;}

/* =Booking Form
-------------------------------------------------------------- */
.checkbox-container {float: left;}
.checkbox, .radio {background: url("images/icons/checkbox.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); clear: left; display: block; float: left; height: 25px; padding: 0 10px 0 0; width: 27px; }
.radio {background: url(images/icons/radio.png) no-repeat;}
.checkbox-container > label {cursor: pointer; float: left; line-height: 20px; margin-bottom: 10px; width: 100%;}
.checkbox-container > label .radio,.checkbox-container > label .checkbox{height: 20px; margin: 0;}

/* =Footer
-------------------------------------------------------------- */
.tl-author:before, .tl-author:after {content: ""; display: table;}
.tl-author:after {clear: both;}
#ft-footer {color:#d4d5d5; background:url(images/footer-banner.html) center 0 no-repeat;}
.ft-footer {color:#d4d5d5; position: relative; padding-top: 30px; padding-bottom: 30px;}
.ft-footer:after {display: inline-block !important; content:""; background-color: rgba(42,46,47, 0.9); position: absolute; top: 0; left: 0; height: 100%; width: 100%;}
.footer-overlay {padding:30px 0; background:rgba(42,46,47, .9);}
#ft-footer p, .ft-footer p {font-size:12px; margin-bottom:20px;}
#ft-footer a, .ft-footer a {color:#ffe300;}
#ft-footer a:hover, .ft-footer a:hover {color:#fff;}
#ft-footer h3, .ft-footer h3, #ft-footer h2, .ft-footer h2 {color:#fff; font-size:28px; margin:10px 0 20px;}

.footer-overlay .col-md-6 { overflow: hidden;}
.tl-author {margin:10px 0;}
.tl-author-img {float:left; width:70px; height:70px; margin-right:20px;}
.tl-author-img img {border-radius: 50%;}
.tl-author-title {float:left; width:70%; color:#ffe300; font-size:16px; font-weight:700; margin-top:15px;}
.tl-author-desc {float:left; font-size:12px;}

.footer-menu {float:left; width:100%; padding:20px 0 10px; text-align:center; list-style:none;}
.footer-menu li {display:inline-block;}
.footer-menu li + li a {border-left:1px solid #7c7c7c;}
.footer-menu li a {color:#686868; padding:0 8px 0 6px; font-size:12px; line-height:1;}
.footer-menu li a:hover {color:#292c2f;}
.footer-menu li.last-item a {border:none;}
.tw-feeds {background:url(images/icons/tw-feeds-icon.png) right center no-repeat;}
.foot-boxs {float:left; width:100%; margin-bottom:30px; border:1px solid #d5d5d5;}
.foot-boxs .foot-box + .foot-box {border-left:1px solid #d5d5d5;}
.foot-box {color:#686868; font-size:12px; line-height:20px; padding-top:10px; padding-bottom:10px; text-align: center;}
.footer-social {padding-left:15px; margin:0 0 0 15px; border-left:1px solid #686868; display: inline-block; vertical-align: middle;}
.foot-box span {line-height:20px;}
.foot-box-md span {float:none; display:inline-block;}

.featured-btm .footer-social {float: left;}
.featured-btm .footer-social li a {color: #000000;}

/* =Shorcodes
-------------------------------------------------------------- */
.act-date {background:#fff; position:absolute; text-align:center; right:-61px; bottom:0; width:61px; height:52px;}
.act-date span { display:block; font-size:16px; line-height: 8px; }
.act-date span.bold {font-size:24px; font-weight:bold; line-height:34px;}
.image {position:relative;}
.image > img {width: 100%;}
.image .hover-caption {background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5); bottom: 0; color: rgb(255, 255, 255); font-weight: bold; left: 0; padding: 6px 15px; position: absolute; width: 100%;}
iframe {border:none;}
.dropcap p:first-child:first-letter, .highlight {background:#ffe300;}
.dropcap p:first-of-type:first-letter, .dropcap p:first-child:first-letter {color: rgb(0, 0, 0);float: left;font-size: 42px;font-weight: bold;line-height: 52px;margin-right: 20px;padding: 10px 20px;text-transform: uppercase;margin-top:5px;}
.shortcode-buttons .btn {margin:0 20px 20px 0; color:#fff; text-transform:uppercase;}
.list-shortcode h4 {font-size:16px;}
.list-style {list-style:none; padding:0; font-size:13px; color:#000; margin-bottom:40px;}
.list-style li { padding:7px 0;}
.list-style-box { background:#f1f1f1; padding:20px 30px !important;}
.list-style3 li:before,
.list-style4 li:before {
    content:"";
    height:15px;
    width:15px;
    background-color:#ffe300;
    background-image:url(images/icons/style-arrow.png);
    background-repeat:no-repeat;
    background-position:center center;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
    position:absolute;
    top:9px;
    left:-25px;
}
.list-style3 li, .list-style4 li {margin-left:25px; position:relative;}
.list-style4 li {border-bottom:1px solid #d9d9d9; padding:15px 0;}
.list-style4 li:before { content:""; top:16px; }
.order-list { list-style:decimal-leading-zero inside; padding:0; }


.minict_wrapper {
float: left;
padding: 0 20px !important;
position: relative;
width: 100%;
cursor: pointer;

-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.minict_wrapper:after {
content: "\25BC";
display: block;
font-size: 9px;
height: 100%;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 20px;
}
.minict_wrapper.active:after {
content: "\25B2"; }
.minict_wrapper input {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border: 0 none;
font-family: karla;
width: 100%;
cursor: pointer;
}
.minict_wrapper ul {
display: none;
left: 0;
list-style: none outside none;
margin: 0;
overflow-y: auto;
padding: 0;
position: absolute;
top: 2rem;
width: 100%;
z-index: 999999;

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
.minict_wrapper ul li {
    background: none repeat scroll 0 0 #FFFFFF;
    cursor: pointer;
    font-size: 12px;
    list-style: none outside none;
    padding: 0 20px;
    border-top: 1px dashed #f2f2f2 ;
}
.minict_wrapper ul li:hover {
background: #fcfcfc;
color: #111; }
.minict_wrapper ul li.minict_group {
color: #444;
background: #f6f6f6;
font-weight: bold;
cursor: default; }
.minict_wrapper ul li.minict_empty {
display: none;
background: #fff !important;
color: #bbb;
text-align: center;
font-size: 0.9rem;
height: 3.5rem;
line-height: 3.3rem; }
.minict_wrapper ul li.selected {
color: #819a9a;
background: #f9fcff; }
.minict_wrapper ul li.highlighted {
color: #fff;
background: #819a9a; }
.minict_wrapper ul li.hidden {
display: none; }

.minict_wrapper.bubble:hover {
border-color: #dcdcdc; }
.minict_wrapper.bubble ul {
    overflow: visible;
    top: 100%;
}

/* =Visual Composer Custom
-------------------------------------------------------------- */
.wpb_content_element h2 {margin-top: 0; text-align: right;}
.vc_map_responsive{margin-bottom: 30px !important;}
.float_right{float:right}
/* =Blank page
-------------------------------------------------------------- */
.blank-page {
    padding: 100px 0;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.blank-page:after {
    content: "";
    display: table;
    clear: both;
}
.box-left {
    float: left;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #1b1b1b;
    color: #ffffff;
    text-align: center;
    line-height: 200px;
    font-size: 125px;
    letter-spacing: -5px;
}
.box-right {
    float: left;
    margin-top: 82px;
    padding-left: 20px;
    max-width: 423px;
}
.content-exp .box-right {
    margin-top: 0;

}
.box-right .text-big {
    display: inline-block;
    font-size: 60px;
    color: #1b1b1b;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: capitalize;
}
.box-right p {
    font-size: 18px;
}