:root {
    --accent: #2058a5;
    --accent_rgb: 32, 88, 165;
    --sub-accent: #89b22e;
    --sub-accent_rgb: 137, 178, 46;
    --color-1: #002D6B;
    --color-2: #4A0EBC;
    --color-3: #0097a7;
    --bg-color: #dfecf6;
    --bg-detail: rgba(255, 255, 255, 0.5);
}

html {
    font-size: 62.5%
}

body {
    color: #535353;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px
}

img {
    max-width: 100%;
    vertical-align: top
}

a {
    text-decoration: none;
    border: none;
    outline: none
}

a:focus,
a:hover,
a:active {
    outline: 0;
}

.outer {
    margin: 0 auto;
    height: 100vh;
    overflow: hidden;
    background-image: url(../img/cy_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.content {
    background-color: rgba(255, 255, 255, 0.8);
}

.content .logo_outer {
    display: block;
    text-align: center;
}

.content .logo {
    display: inline-block;
    margin: 0 auto;
    padding: 3px;
    margin-top: 3vh;
    margin-bottom: 24px;
}

.content .logo img {
    width: auto;
    height: 22vh;
}

.content .details a {
    font-weight: 500;
    text-align: left;
    display: block;
    border-radius: 30px;
}

.content .dtl a:hover,
.content .dtl a:active {
    background-color: var(--accent);
    color: #fff;
}

.content .dtl a i {
    color: var(--accent);
    font-size: 18px;
}

.header {
    width: 100%;
    height: 60vh;
    display: table;
}

.heading_div {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 4px;
    padding-bottom: 6px;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    line-height: 1.4em;
}

.header_img {
    padding: 8px 4px;
}

.header_img img {
    max-height: 120px;
}

.heading_title {
    margin-top: 8px;
}

.subhead {
    font-size: 14px;
}

.detail_outer {
    height: 40vh;
}

.details {
    width: 100%;
    overflow: auto;
    display: table;
    height: 100%;
}

.main {
    display: table-cell;
    vertical-align: top;
    padding-top: 3vh;
}

.info {
    width: 80vw;
    max-width: 500px;
    margin: 0px auto;
    background-color: rgb(255, 255, 255, 0.6);
}

.info.nbdr {
    border-bottom: none
}

.info .icon,
.info .dtl {
    display: inline-block;
    vertical-align: middle;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

.info .dtl {
    width: 74%;
    text-align: center;
    color: var(--accent);
    border-radius: 6px;
}

.info .dtl a {
    color: var(--accent);
    font-weight: 400;
    font-size: 13px;
}

.info .icon {
    text-align: center;
    font-size: 16px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    color: var(--sub-accent);
    vertical-align: middle;
    margin-right: 4px;
}

.dtl_social {
    display: flex;
    margin-top: 8px;
}

.dtl_social a {
    flex-grow: 1;
    border-top: 2px solid var(--sub-accent);
    padding: 12px;
}

.dtl_social i {
    font-size: 24px;
    color: var(--accent);
    margin-right: 6px;
}

.dtl_social a {
    color: var(--accent);
}

.dtl_social a:focus,
.dtl_social a:active {
    color: white;
    background-color: var(--accent);
}

.dtl_social a:focus i,
.dtl_social a:active i {
    color: white;
}

.details .onl_admsn {
    width: 100%;
    height: 30px;
    line-height: 30px;
}

.details .onl_admsn a {
    text-align: center;
    color: #f7fcfd;
    border-radius: 0;
}

.details .onl_admsn a span {
    color: var(--sub-accent);
    padding-bottom: 3px;
    border-bottom: 2px solid var(--color-3);
}

.menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding: 0px 12px 16px;
    max-width: 460px;
    margin: 0 auto;
}

.menu a.menu_item {
    padding: 6px 4px;
    color: var(--accent);
    background-color: rgba(var(--sub-accent_rgb), 0.3);
    box-shadow: 1px 1px 3px 0px #666;
    /* border: 2px solid var(--bg-color); */
}

.menu_item .menu_icon,
.menu_item .menu_title {
    text-align: center;
    font-size: 16px;
    padding: 2px;
}

.menu_item .menu_title {
    font-size: 12px;
}

.menu_item .menu_icon i {
    min-width: 20px;
    text-shadow: 1px 1px 1px #585858;
}

@-webkit-keyframes slide-in-fwd-bottom {
    0% {
        -webkit-transform: translateZ(-1400px) translateY(800px);
        transform: translateZ(-1400px) translateY(800px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0) translateY(0);
        transform: translateZ(0) translateY(0);
        opacity: 1;
    }
}

.menu a.menu_item:focus,
menu a.menu_item:hover,
.menu a.menu_item:active {
    transform: scale(1.1);
    background-color: var(--sub-accent);
    color: white;
}

a.back_link {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
}

.back_link i {
    margin-right: 4px;
    height: 32px;
}

@media (min-width:0px) {
    .email a {
        font-size: 14px !important;
    }
}

@media (min-width:641px) {
    .heading {
        font-size: 24px;
    }
    .email a {
        font-size: 17px !important;
    }
}

@media (min-width:961px) {}