/* CSS Document */

body {
    font-family: 'Lato', sans-serif;
}

a {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

.top-yellow-strip {
    background: #086db5;
    padding: 5px 0;
    position: relative;
    font-size: 16px;
}

.top-yellow-strip a {
    padding-right: 10px;
}

.top-yellow-strip a,
.top-yellow-strip i,
.top-yellow-strip span {
    color: #fff;
}

.top-yellow-strip span {
    padding-right: 15px;
}

.top-yellow-strip i,
.social-link i {
    width: 18px;
    display: inline-block;
    height: 18px;
    background: url(../img/icons.png) left repeat-x;
    margin-right: 6px;
}

.top-yellow-strip i.phone {
    background-position: 18px;
}

.top-yellow-strip i.facebook,
.social-link i.facebook {
    background-position: -22px;
}

.top-yellow-strip i.instagram,
.social-link i.instagram {
    background-position: -58px;
}

.navbar-default a.navbar-brand {
    color: #303030;
    font-size: 22px;
    font-weight: 800;
    line-height: 36px;
    padding-left: 0;
    height: auto;
    padding: 6px 0;
}

.navbar-default a.navbar-brand font {
    color: #ed2044;
}

.main-menu {
    background: #fff;
    border: none;
    margin-bottom: 0;
}

.navbar-default .navbar-nav {
    margin: 24px 0;
}

.navbar-default .navbar-nav>li>a {
    text-transform: capitalize;
    font-size: 15px;
    color: #1f1a17;
    padding: 10px 15px;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #bb6034;
}

.navbar-default .navbar-nav>.active>a {
    background: #bb6034;
    color: #fff;
}

.dropdown-menu>li>a {
    padding: 8px 10px;
    text-transform: capitalize;
    color: #fff;
}

.dropdown-menu:before {
    position: absolute;
    top: -7px;
    right: 5%;
    line-height: 0;
    font-size: 35px;
    color: #3F51B5;
}

.navbar-brand {
    display: inline-block;
    float: none;
    padding-top: 13px;
}

.navbar-toggle {
    border-radius: 0;
    margin-top: 18px;
}

.banner-section {
    margin-top: 120px;
}


/* Fix Menu */

@media(min-width:768px) {
    .navbar-default.affix {
        background-color: #fff;
        z-index: 9999;
    }
    .navbar-default.affix .navbar-header .navbar-brand {
        font-size: 21px;
        color: #303030;
        padding: 8px 0;
    }
    .navbar-default.affix .navbar-header .navbar-brand:hover,
    .navbar-default.affix .navbar-header .navbar-brand:focus {
        color: #FFF;
    }
    .navbar-default.affix .nav>li>a:hover,
    .navbar-default.affix .nav>li>a:focus:hover {
        color: #9c27b0;
    }
}

.navbar-default.affix .top-yellow-strip {
    display: none;
}

.navbar-default.affix .navbar-nav {
    margin-top: 12px;
}

.navbar-default.affix .navbar-brand>img {
    width: 70%;
}

.navbar-default.affix .nav>li>a {
    padding: 10px;
}

.carousel-inner>.item>img {
    width: 100%;
}

.carousel .carousel-inner .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.carousel .carousel-inner .active {
    opacity: 1;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.carousel .carousel-inner .active.left,
.carousel .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel .carousel-inner .next.left,
.carousel .carousel-inner .prev.right {
    opacity: 1;
}

.carousel .carousel-control {
    z-index: 9999;
}

.banner-intro {
    position: absolute;
    bottom: 10%;
    width: 38%;
    right: 0;
    color: #fff;
    z-index: 5;
    padding: 10px;
}

.banner-intro h1 {
    font-size: 26px;
    margin: 0;
    animation-name: fadeInUp;
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px;
}

.banner-intro p {
    font-size: 18px;
}

.carousel-control.left,
.carousel-control.right {
    background: none;
}


/********************
*****Slide effect
**********************/

.bs-slider {
    overflow: hidden;
    position: relative;
}

.bs-slider:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.bs-slider:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.bs-slider .bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
}

.bs-slider>.carousel-inner>.item>img,
.bs-slider>.carousel-inner>.item>a>img {
    margin: auto;
    width: 100%;
}

.fade {
    opacity: 1;
}

.fade .item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 0.8s;
    -moz-transition: opacity ease-in-out 0.8s;
    -ms-transition: opacity ease-in-out 0.8s;
    -o-transition: opacity ease-in-out 0.8s;
    transition: opacity ease-in-out 0.8s;
}

.fade .item:first-child {
    top: auto;
    position: relative;
}

.fade .item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 0.8s;
    -moz-transition: opacity ease-in-out 0.8s;
    -ms-transition: opacity ease-in-out 0.8s;
    -o-transition: opacity ease-in-out 0.8s;
    transition: opacity ease-in-out 0.8s;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    border: none;
    font-size: 32px;
}


/* inquery form style */

.banner-form {
    position: absolute;
    0: 17% left: -55px;
    right: 0;
    z-index: 999;
    left: 0;
    bottom: 15%;
    margin: auto;
}

.inquery-form {
    background: #ebe0c540 url(../img/form_bg.png) repeat-y;
    padding: 10px 15px 15px 15px;
    width: 310px;
    float: right;
}

.inquery-form h2 {
    font-size: 20px;
    color: #dc162d;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.inquery-form h2 img {
    margin: 0 7px -3px 0;
}

.inquery-form input[type=text],
.inquery-form input[type=email],
.inquery-form textarea {
    width: 100%;
    padding: 5px 15px;
    outline: none;
    border: none;
    font-size: 13px;
    color: #3a3939;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    transition: all ease-in-out 0.2s;
    border: 1px solid transparent;
}

.inquery-form input[type=text]:focus,
.inquery-form input[type=email]:focus,
.inquery-form textarea:focus {
    transition: all ease-in-out 0.2s;
    border-color: #1c78b8;
}

.inquery-form input[type=submit] {
    background: #dc162d;
    color: #e4f1fa;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    padding: 7px 32px;
    border: none;
    border-bottom: 2px solid #861422;
    outline: none;
    text-transform: uppercase;
    transition: all ease-in-out 0.2s;
}

.inquery-form input[type=submit]:hover {
    transition: all ease-in-out 0.2s;
    background: #1c78b8;
    border-bottom-color: #035692;
}


/* content style start */

.content-section h2.title {
    font-size: 24px;
    line-height: 34px;
    margin: 30px 0;
    position: relative;
    padding-bottom: 12px;
}

.content-section h2.title:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #f05044
}

.package {
    background: #f6f1ed;
    padding: 15px;
    border-bottom: 5px solid #ed2049;
    min-height: 308px;
}

.package h3 {
    font-size: 17px;
    margin: 0 0 20px 0;
    color: #ed2044;
    font-weight: 600;
}

.package h5 {
    font-size: 15px;
    color: #086db5;
    font-weight: 600;
}

.package ul li {
    line-height: 24px;
    font-size: 14px;
    color: #555;
    list-style: circle;
    list-style-position: inside;
}

.package ul strong {
    font-size: 15px;
    margin: 10px 0;
    display: block;
}

.about-txt p {
    font-size: 15px;
    line-height: 30px;
    color: #555;
}


/*footer start here */

footer {
    background: url(../img/footer-bg.png);
}

footer .overlay {
    padding: 20px 0 40px 0;
    margin-top: 40px;
}

footer .overlay .foot-link h3 {
    color: #ffffff;
    text-align: center;
    margin: 5px 0 20px 0;
}

footer .overlay .foot-link .follow {
    display: block;
    float: left;
    font-size: 16px;
    font-weight: 500;
    color: #bdbdbd;
}

footer .overlay .foot-link ul.social-link li {
    float: left;
}

footer .overlay .foot-link ul.social-link li a {
    font-size: 16px;
    color: #bdbdbd;
    width: 30px;
    height: 28px;
    border: 1px solid #bdbdbd;
    display: block;
    text-align: center;
    line-height: 30px;
    margin: 0 8px;
    transition: all 0.2s ease-in-out;
}

footer .overlay .foot-link ul.social-link li a i {
    margin-right: 0;
}

footer .overlay .foot-link ul.social-link li:nth-child(1) a:hover {
    transition: all 0.2s ease-in-out;
    border-color: #3b5997;
    background: #3b5997;
    color: #fff;
}

footer .overlay .foot-link ul.social-link li:nth-child(2) a:hover {
    transition: all 0.2s ease-in-out;
    border-color: #e3ccbc;
    background: #e3ccbc;
    color: #fff;
}

footer .overlay .foot-link ul.social-link li:nth-child(3) a:hover {
    transition: all 0.2s ease-in-out;
    border-color: #007bb6;
    background: #007bb6;
    color: #fff;
}

footer .overlay .foot-link.two ul li a:hover,
footer .overlay .foot-link.two ul li a:hover:after,
footer .overlay .foot-link.third ul li a:hover i,
footer .overlay .foot-link.third ul li a:hover {
    color: #72bb71;
    transition: all 0.2s ease-in-out;
}

footer .overlay .foot-link ul li span {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 26px;
    position: relative;
    transition: all 0.2s ease-in-out;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

footer .overlay .foot-link ul li span a {
    color: #bdbdbd;
}

.follow-us {
    width: 220px;
    margin: 18px auto 0 auto;
}

footer .overlay .foot-link ul li a i {
    margin-right: 9px;
}

.footer-bottom {
    background: rgb(237, 32, 68);
}

.footer-bottom p {
    color: #fff;
    margin-top: 10px;
}

.footer-bottom a {
    color: #272045;
    transition: all 0.2s ease-in-out;
}

.footer-bottom a:hover {
    color: #72bb71;
    transition: all 0.2s ease-in-out;
}

@media only screen and (min-width: 220px) and (max-width: 550px) {
    .top-yellow-strip abbr,
    .top-yellow-strip span,
    .top-yellow-strip i.fa-phone {
        display: none;
    }
    .top-yellow-strip {
        font-size: 14px;
    }
    .navbar-brand {
        padding: 15px 0;
        float: left;
    }
    .navbar-brand img {
        width: 60%;
    }
    .banner-intro {
        width: 100%;
        top: initial;
        bottom: 42px;
        left: 0;
        padding: 8px 5px;
        height: auto;
    }
    .banner-intro h1 {
        font-size: 16px;
        margin-left: 9%;
    }
}

@media only screen and (min-width: 551px) and (max-width: 767px) {
    .banner-intro {
        width: 100%;
        top: initial;
        bottom: 20px;
        left: 0;
        padding: 8px 5px;
        height: auto;
    }
    .banner-intro h1 {
        font-size: 25px;
    }
    .navbar-header {
        float: left;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .navbar-default .navbar-brand {
        /* width: 100%; */
    }
    .navbar-brand>img {
        margin: 0 auto;
    }
    .navbar-default .navbar-nav>li>a {
        font-size: 14px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .banner-intro h1 {
        font-size: 25px;
    }
    .banner-intro p {
        font-size: 15px;
        line-height: 22px;
    }
    .banner-section {
        margin-top: 122px;
    }
    .banner-form {
        top: 21%;
    }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .top-yellow-strip a {
        font-size: 14px;
    }
    .top-yellow-strip .text-right i {
        margin-top: 9px;
    }
    .banner-section {
        margin-top: 0;
    }
    .navbar-fixed-top {
        position: relative;
    }
    .navbar-default a.navbar-brand {
        padding-left: 10px;
    }
    .banner-form {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        margin-top: 30px;
    }
    .inquery-form {
        float: none;
        width: 100%;
        margin: 30px 0 0 0;
    }
    .package {
        min-height: auto;
        margin: 30px 0 0 0;
    }
    .content-section h2.title {
        font-size: 22px;
    }
    .footer-bottom p {
        text-align: center;
    }
    .tour-package {
        background: #333 !important;
        margin: 0;
    }
    .banner-section {
        margin-top: 0;
    }
}

.tour-package {
    padding: 3px 20px 20px 20px;
    background-image: linear-gradient( 45deg, #086db5db, #086db5b8);
    border-radius: 15px;
    border-top-left-radius: 20px;
    box-shadow: 0px -1px 1px 0px #fff;
}

.tour-package span {
    font-weight: 800;
    background-color: #fff;
    padding: 4px;
    display: flex;
    width: fit-content;
    margin-bottom: 12px;
}

.tour-package h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
}

.tour-package h5 {
    color: #FFF;
    font-size: 18px;
    text-transform: uppercase;
}

.tour-package strong {
    color: #ed2044;
    background: #f9ebde;
    font-size: 16px;
    padding: 3px 21px;
    line-height: 24px;
}

.tour-package ul span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #ed2044;
    padding: 5px;
    display: inline-block;
    margin-bottom: 10px;
}

.tour-package ul li {
    color: #FFF;
    font-size: 15px;
    line-height: 26px;
}

.tour-package ul li img {
    filter: brightness(100);
    margin-right: 5px;
}