@import url(https://fonts.googleapis.com/css?family=Lato);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
* {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
@media screen and (max-width: 576px) {
    /*Mobile View Booking Form*/
    .footer{
        background-color: #00000099;
        padding:10px;
        border-radius: 20px;
        margin-top: 20px;
        border: 1px solid #fff;
        text-align: center;
    }
    .footer .text{
        font-size: 10px;
    }
    .booking-booker-form{
        background-color: #00000099;
        padding:10px 10px 20px 10px;
        border-radius: 20px;
    }
        .booking-booker-form .form-label {
            color: #FFFFFF;
            margin-top: 15px;
            font-size: 15px;
            font-weight: bolder;
        }
    .booking-booker-form .form-control{
        height: 30px;
        font-size: 11px;
    }
    .booking-booker-form .form-select{
        height: 30px;
        font-size: 11px;
    }
    .booking-booker-form .col-md-12{
        background: black;
        border-radius: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }


    .content-booker-box{
        background-color: rgb(0 0 0 / 66%);
        height: 100%;
        width: 100%;
        border-radius: 20px;
        border: 1px solid #fff;
        padding: 10px;
    }



    .content-nav-box{
        background-color: rgb(0 0 0 / 66%);
        height: 100%;
        width: 100%;
        border-radius: 20px;
        border: 1px solid #fff;
    }

}
@media screen and (min-width: 768px) {

    /*Laptop / PC View Booking Form*/
    .footer{
        background-color: #00000099;
        padding:10px;
        border-radius: 20px;
        margin-top: 20px;
        border: 1px solid #fff;
        text-align: center;
    }
    .footer .text{
        color: #FFFFFF;
        font-size: 10px;

    }


    .booking-booker-form{
        background-color: #00000099;
        padding:10px 10px 20px 10px;
        border-radius: 20px;
        border: 1px solid #fff;
    }
    .booking-booker-form .form-label{
        color: #FFFFFF;
        margin-top: 14px;
        font-size: 14px;
        font-weight:bolder;
    }
    .booking-booker-form .form-control{
        height: 30px;
        font-size: 13px;
    }
    .booking-booker-form .form-select{
        height: 30px;
        font-size: 13px;
    }
    .booking-booker-form .col-md-12{
        background: black;
        border-radius: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border: 1px solid #fff;

    }


    .content-booker-box{
        background-color: rgb(0 0 0 / 66%);
        height: 100%;
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid #fff;
    }

    .content-nav-box{
        background-color: rgb(0 0 0 / 66%);
        height: 100%;
        width: 100%;
        border-radius: 20px;
        border: 1px solid #fff;
        position: relative;
    }


}
main{
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 62%), rgb(6 6 6 / 82%)),url(../images/background/home-back-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}

.header-box{
    text-align: center;
    margin-bottom: 20px;
}
.header-box .logo img{
    height: 100px;
    width: auto;
}
.header-box .content-nav-box nav .navbar-toggler{
    text-align: center;
}
.header-box .content-nav-box nav #navbarTogglerDemo02 ul li a{
    color: #dead36;
    margin-left: 10px;
    font-size:13px;
}
.header-box .content-nav-box nav #navbarTogglerDemo02 ul li a:hover{
    color: #d7d7d7;
    border-bottom: 1px solid #fff;
}
.header-box .content-nav-box nav #navbarTogglerDemo02 ul li a.active{
    color: #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

/*Custom Css*/
.img-fit{
    object-fit: cover;
}
.rounded-10{
    border-radius: 10px;
}
/*Background Colors*/
.bg-color-1{
    background-color: #0a53be;
}
/*Text Colors*/
.txt-color-1{
    color: #dead36 !important;
}

/*Custom Button*/
.cus-btn-1{
    color: #ffffff;
    background-color:#dead36 ;
    border:2px solid #e5b639;
    font-size: 1em;
    padding-top:10px;
    padding-bottom:10px;
}
.cus-btn-1:hover{
    color: #fff;
    border:2px solid #fff;
    background-color: transparent;
}
.cus-btn-1:focus{
    color: #fff;
    border:2px solid #fff;
    background-color: transparent;
    box-shadow: none;
}




/*Animation*/
/*---1---*/
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/*---2---*/
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/*---3---*/
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*---4---*/
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.modal-backdrop {
    z-index: -1 !important;
}

.navbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}
.navbar-toggler {
    border: 1 solid #fff !important;
    --bs-emphasis-color-rgb: 255, 255, 255 !important;
}
.bread-sec {
    background-color: #000;
    border-radius: 10px;
    padding-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #dead36;
}
    .bread-sec .h3 {
        color: #dead36;
    }
    .bread-sec .breadcrumb-item a {
        color: #dead36;
        font-size:13px;
        font-weight:lighter;
    }
    .bread-sec .breadcrumb-item.active{
        color:#fff !important;
        font-size:14px;
        padding:0px;
    }
    .bread-sec .breadcrumb-item + .breadcrumb-item::before {

        padding: 0px;
    }

.content-booker-box ul {
    list-style: circle;
    padding-left:20px;
}

    .content-booker-box ul li {
        color: #ffffff;
    }