*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    padding: 30px 10px 100px;
}

.logo {
    width: 100%;
    max-width: 300px;
    margin: 15px auto 50px;
}

.logo img {
    width: 100%;
}

h2.heading {
    font-size: 20px;
    padding: .5em .7em;
    border-left: 5px solid #00729a;
    background-color: #c5e3ec;
    color: #333333;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
}

p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 60px auto 40px;
}

.tbl {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.tbl tr {
    line-height: 30px;
}

.tbl th {
    width: 40%;
    background: #00729A;
    border: solid 1px #00729A;
    color: #fff;
    padding: 10px;
}

.tbl td {
    border: solid 1px #00729a;
    padding: 10px;
}

.tbl td a {
    color: #00729a;
    text-decoration: none;
}

button.btn_top {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 50px auto;
    padding: 0;
    background: #fff;
    border: 1px solid #00729a;
    border-radius: 6px;
    box-shadow: 0 6px 0 #005f80, 0 8px 12px rgba(0, 0, 0, 0.2);

    transition: all 0.2s ease;
}

button.btn_top a {
    display: block;
    text-decoration: none;
    color: #00729A;
    padding: 15px 10px;
}

button.btn_top:hover {
    background: #00729b;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #005f80, 0 12px 16px rgba(0, 0, 0, 0.25);
}

button.btn_top:hover a {
    color: #fff;
}

button.btn_top:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #005f80, 0 4px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .last td {
        border-bottom: solid 1px #00729a;
        width: 100%;
    }

    .tbl th,
    .tbl td {
        display: block;
        width: 100%;
        padding: 10px;
    }

}