﻿body {
/*    background: url(images/bg-intro8.jpg) no-repeat top center #f6ece0;*/
    background-size: 100%;
    background-attachment: fixed;
}

.star {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #ff0000;
}

.heading {
    display: block;
    color: #e6aa63;
    font-size: 23px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer {
    position: relative;
    margin-top: 40px;
}

.form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: left;
}

.arial {
    width: 176px;
}

.arial {
    width: 9px;
}

table tr td {
    padding: 5px 0px;
}

.btn {
    background: #212121;
    color: #FFF;
}

.booking-text {
    line-height: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    color: #000;
}

.table, th, td {
    border: 0px solid #848484 !important;
    border-collapse: collapse;
    padding: 8px;
    text-align: justify !important;
    /* color: #000 !important;*/
    font-size: 15px;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #c20b10;
        border-top-color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #c20b10;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #991f1f;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }


#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0px 5px 0px;
}

    #header.header-scrolled {
        padding: 12px 0;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        font-size: 26px;
        margin: 0;
        padding: 5px 0px 5px 0px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        width: auto;
        height: auto;
    }

        #header .logo a {
            color: #0b2341;
        }

        #header .logo img {
            /*max-height: 40px;*/
            max-height: 100%
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        /*display: flex;*/
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
        display: inline-block;
    }

    .navbar a,
    .navbar a:focus {
        /*display: flex;*/
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 15px;
        font-size: 15px;
        color: #0b2341;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #c20b10;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: #c20b10;
        padding: 5px 16px;
        margin-left: 20px;
        border-radius: 4px;
        color: #fff;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: #991f1f;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
            padding: 6px 0px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            text-transform: none;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #c20b10;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: 100%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: 100%;
    }
}




/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #0b2341;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
        z-index: 9999;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

@media (max-width: 768px) {
    .hid-xs {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

        .navbar-mobile ul li {
            display: block;
            padding: 10px 0px;
        }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 0px 20px;
        font-size: 15px;
        color: #0b2341;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #c20b10;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #c20b10;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.mb-0 {
    margin-bottom: 0px !important;
}

.flx {
    display: flex;
    justify-content: end;
}

.cont_num {
    padding: 5px 16px;
}

    .cont_num li {
        list-style: none;
        font-weight: bold;
        display: inline-block;
    }

.botm {
    border-style: solid;
    border-width: 0px 0px 5px 0px;
    border-color: #c20b10;
    box-shadow: 0px 11px 35px 0px #e9d1cf;
    opacity: 1;
}

#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.p-0 {
    padding: 0 !important;
}

#footer .footer-top .footer-links {
    margin-bottom: 5px;
    margin-top: 20px;
}

    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer .footer-top .footer-links ul li:first-child {
            padding-top: 0;
        }

        #footer .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

.footer-links ul li {
    list-style: none;
    padding: 5px 0;
}

#footer .footer-top .footer-links ul a {
    color: #0b2341;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #0b2341;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0b2341;
    position: relative;
    padding-bottom: 12px;
}

.bg_bottom {
    background: #727272;
}

.border_top_grey {
    border-top: 1px solid grey;
}

.txt-color {
    color: #0b2341;
}

.underline {
    text-decoration: underline;
}

footer {
    margin: 0px 0 !important;
}


.p-0 {
    padding: 0 !important;
}

.copyright {
    color: #fff;
}

.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.booking-text {
    line-height: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    color: #000;
}
.section-bg {
    background-color: #fff;
    /*background-color: #f6f9fd;*/
}
.tile {
    /*position:absolute;
    left: 85px;*/
    padding: 28px 0px !important;
}
@media (max-width: 767px) {
    .heading{
        font-size:18px;
    }
    .mt-25{
        margin-top:25px;
    }
    .section-title h2{
        letter-spacing:normal;
    }
    .mb-5p {
        margin-bottom: 5px;
    }
}