
/* Global */
*{
    margin: 0;
    padding:0;
}
body{
   
}
.container{
    max-width: 1080px;
    margin: 8px;    
}
/* Header */
.header,.footer{
   
    display: flex;
    justify-content: center;
    
    width: 100%;
    color: white;
    
}
.header{
    
    @media screen and (max-width:500px){
        max-height: 86px;
    }
}
.header-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        max-width: 100%;
    }
}


.header-menu{
    display: flex;
    justify-content: space-between;    
    width: 100%;    
}
.header-menu img{
    margin: 10px;
}
.header-menu__left img{
    max-height: 80px;
    @media screen and (max-width:500px){
        max-height: 60px;
    }
}
.header-menu__right img{
    max-height: 110px;
    @media screen and (max-width:500px){
        max-height: 70px;
    }
}
/* Hero */
.hero,.reservation{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-images{
    display: flex;
    justify-content: space-between;    
    width: 80%;
    @media screen and (max-width:500px){
       flex-direction: column;
       width: 100%;
       align-items: center;
    }
    
}
.hero-images img{
    max-width: 100%;
}
.hero-title{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    hr {       
        background: #1a4d9c;
       height: 1px;
        width: 100%;
    }
    
    h1 {
        font-size: 34px;
        margin: 20px 0;
         color: rgb(35, 53, 120);
    }
    
    p {
        font-size: 12px;
        margin: 0;
        color: #1a4d9c;
    }
    .hero-title__content{
        min-width: 290px;
        text-align: center;
    }
}
.reservation{
    button{
        background: rgb(35, 53, 120) !important;
    }
    .bookero-plugin-header{
        display: none;
    }  
}
.upcoming{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.upcoming .container{
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        max-width: 80%;
    }
}
.footer{
    background: rgb(35, 53, 120);
    height: 40px;
    @media screen and (max-width:500px){
        height: 40px;
    }
    .footer-content{
        display: flex;
        justify-content: flex-start;
    }
    .footer-content__left{
        margin-top: 10px;
        border-right: 1px white solid;
        p{
            font-size: 28px;
            padding: 8px;
        }
    }
    .footer-content__right{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        padding-left: 12px;
    }
}