/* Reset */
* {margin: 0; padding: 0;border: none; outline: none;}
a {text-decoration: none; cursor: pointer;}
ul {list-style: none;}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #1c2a35;
}

/* font-family: 'Oswald', sans-serif; */

.datepicker.dropdown-menu {
    background-color:#FFF;
}

h1 {
    font-size: 42px;
    line-height: 46px;
    width: 100%;
    margin: 0px;
    text-align: center;
}

.dropdown-menu-top {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 180px;
    padding: 5px 0;
    margin: 2px -96px 0;
    font-size: 12px;
    text-align: left;
    list-style: none;
    background-color: rgb(30, 41, 51);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bold {
    font-weight: bold;
}

.btn-primary {
    color: #fff;
    background-color: #1c2a35;
    border-color: #1c2a35;
}

.header-desktop-wrapper {
    display: none;
}

.header-mobile-wrapper {
    display: block;
}

.navbar-wrapper {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(28, 42, 53, 0.0);
    z-index: 1000;

    -webkit-transition: background-color 400ms linear;
    -ms-transition: background-color 400ms linear;
    transition: background-color 400ms linear;
}

#nav-icon4 {
    width: 60px;
    height: 60px;
    /* position: relative; */
    float: left;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon4 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 44%;
    margin: 0 28%;
    background: #fff;
    border-radius: 2px;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
    top: 22px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
    top: 30px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
    top: 38px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 20px;
    left: 5px;
}

#nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 38px;
    left: 4px;
}

.main-logo {
    height: 60px;
    width: 280px;
    margin: 0 auto;
    cursor: pointer;
    background-image: url(../images/main-logo.svg);
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.mobile-menu-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
    top: 60px;
    bottom: 0;
    padding-bottom: 60px;
    display: none;
}

.mobile-menu-content {
    padding:0;
    overflow: scroll;
    overflow-x: hidden;
    height: 100%
}

.list-group-item:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.list-group-item {
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    border-left: 0px;
    border-right: 0px;
}

.main-bg-image {
    background-image: url('../images/bg-001.jpg');
    padding: 220px 0 0 0;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.flash-wrapper {
    margin: 20px 0;
}

.flash-inner-wrapper {
    padding: 40px 10px;
    background-color: rgb(224, 224, 224);
    height: 286px;
}

.main-bg-image-about {
    background-image: url('../images/bg-002.jpg');
    padding: 280px 0 0 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.main-bg-image-tours {
    background-image: url('../images/bg-005.jpg');
    padding: 280px 0 0 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.main-bg-overlay {
    z-index: 2;
    position: absolute;
    float: left;
    background-color: rgba(28, 42, 53, 0.87);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.list-group-item-success {
    background-color: #ffffff;
}

a.list-group-item-success, button.list-group-item-success {
    color: #333;
    font-weight: 600;
}

.list-group-item {
    padding: 18px 15px;
}

a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover {
    color: #333;
    background-color: #e2e2e2;
}

.footer-wrapper {
    width: 100%;
    padding: 40px 0;
    background-color: #1c2a35;
    color: #fff;
}

.footer-wrapper a {
    color: #fff;
    text-decoration: none;
}

.social-icons-wrapper {
    height: 32px;
    line-height: 32px;
    float: left;
}

.social-icons {
    font-size: 18px;
    line-height: 22px;
    padding: 0 10px;
}

.social-icons:hover {
    color: #0071bc;
}

.footer-hr {
    width: 94%;
    margin: 32px 3%;
    opacity: 0.1;
    float: left;
}

.btt-arrow {
    animation: MoveUpDown 1.2s linear infinite;
    left: 0;
    bottom: 0;
}

.go-to-top {
    cursor: pointer;
}

@keyframes MoveUpDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}

.image-preview-input {
    position: relative;
    overflow: hidden;
    margin: 0px;    
    color: #333;
    background-color: #fff;
    border-color: #ccc;    
}

.image-preview-input input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.image-preview-input-title {
    margin-left:2px;
}

.tour-flash-wrapper {
    width: 100%;
}

.tour-flash-photo {
    width: 98%;
    margin: 1%;
    height: 244px;
    background-color: #bfbfbf;
    position: relative;
    background-position: 50%;
    background-size: cover;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 1s;
}

.tour-flash-photo:hover {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.tour-flash-name {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    color: #fff;
    bottom: 0;
    left: 0;
    font-weight: 600;
}

.tours-flash-photo-individual {
    width: 100%;
    height: 300px;
    background-color: lightgrey;
    background-size: cover;
    background-position: 50%;
}

.tours-title-individual {
    font-weight: bold;
    font-size: 28px;
}

.features-title {
    font-weight: bold;
    font-size: 28px;
    text-align: center;
}

.features-description {
    text-align: center;
}

/* ************************************************************************** */
@media screen and (min-width: 460px) {/* ************************************ */
/* ************************************************************************** */
    
    .tour-flash-wrapper {
        width: 48%;
        margin: 1%;
        float: left;
    }

/* ************************************************************************** */    
}/* ************************************************************************* */
/* ************************************************************************** */

/* ************************************************************************** */
@media screen and (min-width: 768px) {/* ************************************ */
/* ************************************************************************** */
    
    .swiper-container {
        width: 100%;
        height: 100%;
        z-index: 100;
    }

    .tour-flash-wrapper {
        width: 31.33%;
        margin: 1%;
        float: left;
    }

/* ************************************************************************** */    
}/* ************************************************************************* */
/* ************************************************************************** */

/* ************************************************************************** */
@media screen and (min-width: 980px) {/* ************************************ */
/* ************************************************************************** */

    .header-mobile-wrapper {
        display: none;
    }
    
    .header-desktop-wrapper {
        display: block;
    }
    
    .navbar-wrapper {
        /* height: 74px; */
        height: 106px;
    }
    
    .navbar {
        min-height: 74px;
        margin-bottom: 0px;
        border-radius: 0px;
    }
    
    .navbar-default {
        background-color: rgba(0,0,0,0.0);
        border: none;
    }
    
    .navbar-nav>li>a {
        padding: 27px 20px;
    }
    
    .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
        color: #fff;
        background-color: transparent;
    }
    
    .navbar-default .navbar-nav>li>a,
    .navbar-default .navbar-nav>.active>a {
        color: #fff;
        font-weight: bold;
        font-size: 13px;
    }
    
    .navbar-default .navbar-nav>.active>a {
        background-color: rgba(26, 39, 50, 0);
        box-shadow: inset 0 -5px 0 #de6800;
    }

    .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
        color: #fff;
        background-color: initial;
    }
    
    .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
        color: #fff;
        background-color: initial;
        box-shadow: inset 0 -5px 0 #e0e0e0;
    }
    
    .dropdown-menu>li>a {
        display: block;
        padding: 10px 20px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #fff;
        white-space: nowrap;
    }
    
    .dropdown-menu>li>a:hover {
        font-weight: bold;
        color: #fff;
        background-color: rgba(0,0,0,0.0);
    }
    
    .main-logo {
        margin: 7px 0 0 20px;
        float: left;
    }

/* ************************************************************************** */
}/* ************************************************************************* */
/* ************************************************************************** */

/* ************************************************************************** */
@media screen and (min-width: 992px) {/* ************************************ */
/* ************************************************************************** */
    
    .inner-wrapper {
        width: 920px;
        margin: 0 auto;
    }
    
    .container {
        width: 920px;
        margin: 0 auto;
    }

/* ************************************************************************** */
}/* ************************************************************************* */
/* ************************************************************************** */

/* ************************************************************************** */
@media screen and (min-width: 1200px) {/* *********************************** */
/* ************************************************************************** */    
    
    .inner-wrapper {
        width: 980px;
    }
    
    .container {
        width: 980px;
    }

/* ************************************************************************** */
}/* ************************************************************************* */
/* ************************************************************************** */

/* ************************************************************************** */
@media screen and (min-width: 1900px) { /* ********************************** */
/* ************************************************************************** */



/* ************************************************************************** */
} /* ************************************************************************ */
/* ************************************************************************** */