body {
    font-family: Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
}

/* Menu styles */
.custom-wrapper {
    background-color: #213a8a;
    margin-bottom: 1em;
    -webkit-font-smoothing: antialiased;
    height: 2.1em;
    overflow: hidden;
    -webkit-transition: height 0.5s;
    -moz-transition: height 0.5s;
    -ms-transition: height 0.5s;
    transition: height 0.5s;
}
.custom-wrapper {
    font-weight: 400;
}
.custom-wrapper.open {
    height: 14em;
}
.custom-toggle {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}
.custom-toggle .bar {
    background-color: #d5d5d5;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 100px;
    position: absolute;
    top: 18px;
    right: 7px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.custom-toggle .bar:first-child {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}
.custom-toggle.x .bar {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.custom-toggle.x .bar:first-child {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.custom-menu-link {
    color: #d5d5d5;
}
.custom-brand {
    color: #d5d5d5;
}
.custom-menu-link:hover {
    background-color: #3498db;
}
@media (max-width: 1024px) {
    .custom-toggle {
        display: block;
    }
}

/* Footer */
.footer {
    font-size: 0.8em;
    background-color: #d5d5d5;
    color: #888;
    text-align: center;
    padding: 0.1em 2em;
    margin-top: 1em;
}

/* Main content*/
.main {
    margin: 0 auto;
}
.main-align {
    max-width: 980px;
    margin: 0 auto;
}
.main-chunk {
    padding: 0.5em 2em;
}
.note-text {
    font-style: italic;
    font-weight: 400;
}
.with-padding {
    padding-top: 1.5em;
}
.phone {
    white-space: nowrap;
}
.notice {
    background-color: #3498db;
    font-weight: 500;
    padding: 0.1em 0.1em;
    text-align: center;
}
