
/*css reset*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0; 
}

.container{
    max-width: 1200px;/*max-width 1200px*/
    margin: 0 auto;
}

/* header style .....................*/
.header{
    background-color: #004225;
    box-shadow: 1px 1px 5px 0px #004225;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 3;
    height: 80px;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
    margin-top: 20px;
    margin-right: 20px;
}


.logo{
    width: 30%;
    margin-left: 10px;
    margin-top: 30px;
}

/* nav...................... */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: transparent;
    overflow: hidden;
    
}


.menu a{
    display: block;
    padding: 20px;
    color: white;
    margin-top: 2px;
    margin-right: 10px;
    margin-left: 20px;
}


.book-button {
    background-color: #FDA403 ;
    color: #004225 !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    width: 240px;
    transition: background-color 0.3s ease;
    text-align: center;
}


.nav{
    max-height: 10px;
 
 
}

/*hamburger........... */

.hamburger{
    cursor: pointer;
    float: right;
    padding: 15px 0;
    margin-top: 20px;
    margin-right: 20px;
}


.hamburger-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamburger-line::before,
.hamburger-line::after{
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamburger-line::before{
    top: 5px;
}

.hamburger-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* toggle transform*/

.side-menu:checked ~ nav{
    max-height: 100%;
    background-color: #004225;
}

.side-menu:checked ~ .hamburger .hamburger-line {
    background: transparent;
}

.side-menu:checked ~ .hamburger .hamburger-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamburger .hamburger-line::after {
    transform: rotate(45deg);
    top:0;
}


@media (min-width: 992px) {
    .nav{
        max-height: none;
        top: 2px;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }

    .logo{
        margin-top: 25px;
        width: 25%;
    }
    .menu li{
        float: left;
    }

    .menu a:hover{
        background-color: transparent;
        color: #FDA403; 
    }

    .book-button{
        background-color: #FDA403;
        color: #004225;
        font-size: 1em;
        width: 190px;
        text-align: center;    
    }

    .book-button:hover{
        background-color: white !important;
    }
   
    .menu a{
        padding: 7px;
    }
    
    .hamburger{
        display: none;
    }

    .active{
        color: #FDA403 !important;
    }

}


/* footer style */
.footer1{
    display: none;
}

.footer2{
    display: block;
    background-color: #004225;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 40px 20px 0px;
    margin-top: 20px;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
   
    .footer2{
        display: none;
    }
    .footer1 {
        display:flex;
        background-color: #004225;
        color: #fff;
        padding: 15px;
        font-size: 12px;
        display: flex;
        justify-content: space-between;
        text-align: left;
        margin-top: 20px;
    }
   
    .footer-info {
        text-align: right;
    }
    
    .footer-section h3 {
        margin-top: 0;
    }

  
}



/* cols preset */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.col-xs-1 {
    width: 8.33%;
}
.col-xs-2 {
    width: 16.66%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-4 {
    width: 33.33%;
}
.col-xs-5 {
    width: 41.66%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-7 {
    width: 58.33%;
}
.col-xs-8 {
    width: 66.66%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-10 {
    width: 83.33%;
}
.col-xs-11 {
    width: 91.66%;
}
.col-xs-12 {
    width: 100%;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.col-sm-1 {
    width: 8.33%;
}
.col-sm-2 {
    width: 16.66%;
}
.col-sm-3 {
    width: 25%;
}
.col-sm-4 {
    width: 33.33%;
}
.col-sm-5 {
    width: 41.66%;
}
.col-sm-6 {
    width: 50%;
}
.col-sm-7 {
    width: 58.33%;
}
.col-sm-8 {
    width: 66.66%;
}
.col-sm-9 {
    width: 75%;
}
.col-sm-10 {
    width: 83.33%;
}
.col-sm-11 {
    width: 91.66%;
}
.col-sm-12 {
    width: 100%;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.col-md-1 {
    width: 8.33%;
}
.col-md-2 {
    width: 16.66%;
}
.col-md-3 {
    width: 25%;
}
.col-md-4 {
    width: 33.33%;
}
.col-md-5 {
    width: 41.66%;
}
.col-md-6 {
    width: 50%;
}
.col-md-7 {
    width: 58.33%;
}
.col-md-8 {
    width: 66.66%;
}
.col-md-9 {
    width: 75%;
}
.col-md-10 {
    width: 83.33%;
}
.col-md-11 {
    width: 91.66%;
}
.col-md-12 {
    width: 100%;
}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.col-lg-1 {
    width: 8.33%;
}
.col-lg-2 {
    width: 16.66%;
}
.col-lg-3 {
    width: 25%;
}
.col-lg-4 {
    width: 33.33%;
}
.col-lg-5 {
    width: 41.66%;
}
.col-lg-6 {
    width: 50%;
}
.col-lg-7 {
    width: 58.33%;
}
.col-lg-8 {
    width: 66.66%;
}
.col-lg-9 {
    width: 75%;
}
.col-lg-10 {
    width: 83.33%;
}
.col-lg-11 {
    width: 91.66%;
}
.col-lg-12 {
    width: 100%;
}
}