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

body{
    display: flex;
    flex-flow: column;
}

header{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

header a{
    text-decoration: none;
    color: #fff;
}

div.logo{
    height: 15vh;
    max-height: 100px;
}

div.logo > img{
    height: 100%;
    width: auto;
}

div.header-menu{
    min-height: 40px;
    height: 5vh;
    width: 100%;
}

div.header-menu > ul{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    list-style: none;
    background-color: #41befd;
}

div.header-menu > ul > li{
    width: 100%;
    padding-left: 0;
    text-align: center;
}

div.header-menu > ul > li > a{
    line-height: 5vh;    
}

ul.menu-item{
    max-height: 0;
    z-index: 999;
    overflow: hidden;
    transition: max-height 0.3s;
    border: #41befd 1px solid;
    background-color: #fff;
}

ul.menu-item.open{
    border: #41befd 1px solid;
    transition: max-height 0.3s;
    max-height: 500px;
}

ul.menu-item > p{
    padding: 3px 0;
}

ul.menu-item p a{
    color: #41befd;
}

main{
    position: relative;
    height: 100%;
    margin-bottom: 40px;
    margin-top: 30px;
}

div.holding{
    text-align: center;
}

div.holding table{
    margin: 0 auto;
    border-collapse: collapse;
    min-width: 25vw;
    border: #41befd 2px solid;
}

div.holding table td{
    padding: 5px;
}

div.holding table th{
    padding: 5px;
}

div.map{
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
    max-width: 100vw;
    text-align: center;
}

@media screen and (max-width:600px){
    div.map{
        flex-flow: column;
    }
    .holder{
        display: none;
        width: 0%;
    }
}

div.map > div > img{
    width: 100%;
}

div.all-show{
    text-align: center;
}

div.all-show table{
    margin: 0 auto;
    border-collapse: collapse;
}

div.all-show table th{
    padding: 5px;
}

div.all-show table td{
    padding: 5px;
}

footer{
    display: block;
    width: 100%;
    height: 30px;
    position: relative;
    bottom: 0;
    background-color: #41befd;
    color: #fff;
    text-align: center;
}

footer p{
    line-height: 30px;
}