:root {
    --blue: #002e60;
    --blue-darker: #002348;
    --red: #970830;
    --white: white;

    --sans: 'calibri', sans-serif;
    --serif: 'Palatino Linotype', 'Palatino', serif;
}

body {
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--sans);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--serif);
}

.school-switch {
    background-color: var(--white);
    color: var(--blue);
    padding: 9px 15px;
}
.school-switch:hover,
.school-switch:active,
.school-switch:focus {
    background-color: var(--blue);
    color: var(--white);
}

/* .logo {
	position: static;
    display: inline-block;
    width: 100%;
    margin: 70px auto 10px;
    text-align: center;
}
.logo img {
    width: 117px;
}
 */
.site-header .logo {
    display: none;
}

#content-wrap {
    overflow-x: hidden; /* The screen loader would cover the menu */
}
main.main {
    padding: 90px 35px 30px 35px;
}

/* HEADER */
header.main-header {
    text-align: center;
}

header.main-header p {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 25px;
}
header.main-header .button {
    background-color: var(--red);
    color: var(--white);
    border: 0;
    padding: 11px 30px;
    margin: 0 auto 50px;
}

h1 {
    font-size: 32px;
    line-height: 20px;
    letter-spacing: 0.93px;
    margin-bottom: 15px;
    text-transform: none;
}

/* MENU PANELS */
.menu-panel .content a {
    display: flex;
    width: 100%;
    align-items: center;
}

.menu-panel__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.menu-panel__item:last-child {
    border-bottom: none;
}
.menu-panel__item > div {
    display: flex;
    align-items: center;
    width: 100%;
}
.menu-panel__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    background: var(--blue-darker);
    border-radius: 50%;
    margin-right: 20px;
}
.menu-panel__item-icon svg {
    min-width: 30px !important;
    min-height: 40px !important;
}

.menu-panel__item-title {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.59px;
    color: var(--white);
    text-transform: uppercase;
    width: 100%;
    padding-right: 30px;
}
.menu-panel__item-arrow {
    transform: rotate(-90deg);
}

.menu-panel--secondary {
    left: 100%;
}
.menu-panel--secondary .content {
    min-height: 52vh;
}
.menu-panel--secondary {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--blue);
    padding: 15px 35px;
    transition: all 0.4s ease;
}
.menu-panel--secondary.open {
    left: 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 35px;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.breadcrumbs .arrow {
    transform: rotate(-90deg);
    width: 10px;
    margin: 5px 5px 5px 6px;
}
.breadcrumbs .home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    background-color: var(--blue-darker);
    border-radius: 50%;
}
.breadcrumbs .home svg {
    min-width: 31px;
    min-height: 12px;
}
.breadcrumbs span:not(.active) {
    opacity: 0.5;
}

div.back-link {
    cursor: pointer;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px 0 50px;
    margin-top: 50px;
}
div.back-link .back-link--arrow {
    transform: rotate(90deg);
    width: 8px;
    margin-right: 12px;
}

/* FOOTER */
footer.main-footer {
    margin: 30px auto;
}
footer.main-footer p {
    font-size: 15px;
    line-height: 22px;
}
footer.main-footer .button {
    position: static;
    padding: 9px 15px;
}
