/* menu-h5.html */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal
}

ul {
    list-style: none
}

button,
input,
select,
textarea {
    margin: 0
}

html {
    box-sizing: border-box
}

* {
    box-sizing: inherit
}

*:before,
*:after {
    box-sizing: inherit
}

img,
embed,
object,
audio,
video {
    height: auto;
    max-width: 100%
}

iframe {
    border: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0;
    text-align: left
}


/* menu.css */

body {
    background-color: rgba(245, 245, 245, 1);
  }
  header {
    background-color: rgba(48, 87, 181, 1);
    height: 50px;
    position: relative;
  }
  .logo {
    margin: 2px 0 0 15px;
  }
  #close {
    position: absolute;
    right: 14px;
    top: 13px;
  }
  .div-height {
    box-sizing: content-box;
    height: 70px;
    border-bottom: 1px solid #ccc;
  }
  a {
    text-decoration: none;
    color: rgba(102, 102, 102, 1);
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 100%;
  }
  a .url-text {
    position: absolute;
    padding: 0 0 0 20px;
    line-height: 70px;
  }
  a .button-text {
    position: absolute;
    line-height: 50px;
    transform: translateX(-50%);
  }
  .button-pramary,
  .button-space {
    box-sizing: content-box;
    text-align: center;
    border-radius: 8px;
    height: 50px;
  }
  .button-pramary {
    background-color: rgba(32, 121, 230, 1);
    border: 1px solid rgba(32, 121, 230, 1);
    margin: 24px 16px 15px 16px;
  }
  .button-pramary a {
    color: #fff;
  }
  .button-space {
    background-color: #fff;
    margin: 0 16px 0 16px;
    color: rgba(102, 102, 102, 1);
  }