@import url("https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

elements-of-type(html5-block) {
  display: block;
}

/**
 * Adds a mixin for browser prefixed keyframes
 * @param  {string} $animationName Name of the animation
 * @return {[type]}                Browser prefixed properties
 */
/**
 * Set the given px-based font sized as rem, with px as fallback
 * @param  {string} $size Pixel size
 */
@font-face {
  font-family: 'work-sans-regular';
  src: url("../fonts/WorkSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: 'work-sans-medium';
  src: url("../fonts/WorkSans-Medium.otf") format("opentype");
}

@font-face {
  font-family: 'work-sans-semibold';
  src: url("../fonts/WorkSans-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: 'work-sans-bold';
  src: url("../fonts/WorkSans-Bold.otf") format("opentype");
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

body.show-menu {
  position: relative;
  overflow: hidden !important;
}

.white {
  color: white;
  font-family: 'work-sans-semibold', sans-serif;
}

.darkblue {
  color: #242f6f;
}

.darkblue-background {
  background-color: #242f6f;
}

.lightblue-background {
  background-color: #f2fafe;
}

h1 {
  font-size: 48px;
  line-height: 56px;
  font-family: 'work-sans-semibold', sans-serif;
}

h2 {
  font-family: 'work-sans-semibold', sans-serif;
}

h3 {
  font-family: 'work-sans-semibold', sans-serif;
}

h4 {
  font-family: 'work-sans-semibold', sans-serif;
  line-height: 25px;
}

span, p, label, textarea, ul, ol {
  font-size: 16px;
  line-height: 24px;
  font-family: 'work-sans-regular', sans-serif;
}

strong {
  font-family: 'work-sans-bold', sans-serif;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  font-family: 'work-sans-semibold', sans-serif;
}

a:hover {
  text-decoration: none;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3f94f7;
  width: 125px;
  height: 40px;
  text-decoration: none;
  font-family: 'work-sans-bold', sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.button:hover {
  text-decoration: none;
  background: #242f6f;
  color: white;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button {
    padding: 7px 7px 0 7px;
  }
}

/* --sections-- */
#header {
  touch-action: auto;
  background-color: white;
  width: 100%;
  position: relative;
}

#header .background {
  height: 70px;
  align-items: center;
}

@media (max-width: 992px) {
  #header .background {
    height: 60px;
  }
}

#header .logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#header .logo-wrapper .left {
  width: 35%;
}

#header .logo-wrapper #skip-content {
  position: absolute;
  top: 35%;
  left: 45%;
  width: 150px;
  z-index: -100;
  opacity: 0;
}

#header .logo-wrapper #skip-content:focus {
  z-index: 100;
  opacity: 1;
}

#header .logo-wrapper .right img {
  width: 80px;
  margin: 20px 0px 20px 20px;
}

#header .menu-items-wrapper {
  display: flex;
  height: 60px;
  align-items: center;
}

@media (min-width: 768px) {
  #header .menu-items-wrapper {
    justify-content: space-between;
  }
}

#header .menu-items-wrapper .icons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#header .menu-items-wrapper .icons img {
  width: 45px;
}

#header .menu-items-wrapper .icons li {
  margin: 0 10px;
  font-size: 14px;
}

@media (max-width: 1200px) {
  #header .menu-items-wrapper .icons li {
    font-size: 12px;
    margin: 7px;
  }
}

@media (max-width: 992px) {
  #header .menu-items-wrapper .icons li {
    font-size: 10px;
  }
}

#header .menu-items-wrapper .icons li:first-child {
  margin-left: 0px;
}

#header .menu-items-wrapper .icons li:last-child {
  margin-right: 0px;
}

@media (min-width: 768px) {
  #header .menu-items-wrapper .icons li.hide-desktop {
    display: none;
  }
}

#header .menu-items-wrapper .icons li .social-icon {
  width: 45px;
}

#header .menu-items-wrapper .icons li a {
  font-family: 'work-sans-bold', sans-serif;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #header .menu-items-wrapper .icons li a {
    text-transform: none;
  }
}

#header .menu-items-wrapper .icons li a:hover {
  color: #9ecdff;
}

@media screen and (max-width: 992px) {
  #header .logo-wrapper .left {
    width: 40%;
  }
  #header .menu-items-wrapper li {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  #header .logo-wrapper {
    height: 80px;
  }
  #header .logo-wrapper img {
    width: 110px;
  }
  #header .logo-wrapper .right img {
    width: 40px;
  }
  #header .mobile {
    height: 50px;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    width: 100%;
  }
  #header .mobile .container {
    display: none;
    position: fixed;
    height: 100%;
    left: 0;
    right: 0;
    padding: 0px;
    margin: 0px;
    z-index: 4;
    width: 100%;
    max-width: 100% !important;
  }
  #header .mobile .container .menu-items-wrapper {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 50px 20px;
  }
  #header .mobile .container .menu-items-wrapper ul {
    width: 100%;
    overflow-y: scroll;
  }
  #header .mobile .container .menu-items-wrapper ul li {
    touch-action: none;
    margin: 0px;
    font-size: 24px;
    margin-top: 30px;
    width: 100%;
    display: list-item;
  }
  #header .mobile .container .menu-items-wrapper ul li a {
    font-family: 'work-sans-bold', sans-serif;
    text-transform: none;
  }
  #header .mobile .container .menu-items-wrapper ul li:first-child {
    margin-top: 10px;
  }
  #header .mobile .container .menu-items-wrapper ul::-webkit-scrollbar {
    width: 6px;
    background-color: #242f6f;
  }
  #header .mobile .icon-wrapper {
    display: flex;
    justify-content: space-between;
  }
  #header .mobile .icon-wrapper .hamburger {
    cursor: pointer;
    z-index: 10;
    transition: transform .3s ease-in-out;
    transform: rotate(0deg);
  }
  #header .mobile .icon-wrapper .hamburger i {
    color: white;
    font-size: 40px;
  }
  #header .mobile.show-menu .icon-wrapper .hamburger {
    transform: rotate(-90deg);
  }
  #header .mobile.show-menu .container {
    display: flex;
    position: fixed;
  }
}

#header.show-menu {
  touch-action: none;
  position: sticky;
  position: fixed;
  z-index: 50;
}

#footer .logo {
  width: 60%;
  margin: 0;
  margin-bottom: 25px;
}

#footer .contact {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .contact .contact-wrapper .group {
  margin: 20px 0px;
}

#footer .contact .contact-wrapper .group span {
  font-family: 'work-sans-semibold', sans-serif;
}

#footer .contact .contact-wrapper .group p {
  font-family: 'work-sans-regular', sans-serif;
}

#footer .contact .contact-wrapper .group a:hover span {
  color: #9ecdff;
}

#footer .contact .contact-wrapper .group.social-icon {
  display: flex;
  align-items: center;
}

#footer .contact .contact-wrapper .group.social-icon img {
  width: 40px;
  margin-left: 5px;
}

#footer .external-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

#footer .external-logos a {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .external-logos a.right {
  height: 60px;
}

#footer .external-logos a img {
  height: inherit;
  width: auto;
}

#footer #map {
  height: 100%;
}

#footer #pano {
  width: 45%;
  height: 30%;
  position: absolute;
  left: 25px;
  bottom: 25px;
}

@media screen and (max-width: 992px) {
  #footer .logo {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #footer .logo {
    width: 35%;
  }
  #footer .external-logos {
    height: 80px;
  }
  #footer .external-logos a {
    height: 40px;
  }
  #footer .external-logos a.right {
    height: 35px;
  }
  #footer #map {
    height: 250px;
  }
  #footer #pano {
    width: 150px;
    height: 75px;
    bottom: 10px;
  }
}

@media screen and (max-width: 400px) {
  #footer .logo {
    width: 50%;
  }
}

section.section-hero-image.frontpage .hero-large {
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}

section.section-hero-image.frontpage .hero-large .container {
  height: inherit;
}

section.section-hero-image.frontpage .hero-large .container .row {
  height: inherit;
}

section.section-hero-image.frontpage .hero-large .container .row .content-wrapper {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

section.section-hero-image.frontpage .hero-large .container .row .content-wrapper h1 {
  width: 560px;
  font-size: 50px;
}

section.section-hero-image.frontpage .hero-large .container .row .content-wrapper p {
  font-family: 'work-sans-regular', sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin: 20px 0px;
  max-width: 560px;
}

section.section-hero-image.frontpage .hero-large .container .row .content-wrapper a .white {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  section.section-hero-image.frontpage .hero-large {
    height: 440px;
    background-position: center;
  }
  section.section-hero-image.frontpage .hero-large .container .row .content-wrapper {
    text-align: center;
    align-items: center;
    width: 100%;
  }
  section.section-hero-image.frontpage .hero-large .container .row .content-wrapper h1 {
    font-size: 36px;
    line-height: 44px;
    width: 100%;
  }
  section.section-hero-image.frontpage .hero-large .container .row .content-wrapper p {
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0px;
  }
}

section.section-hero-image.subpage .hero-large {
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
}

section.section-hero-image.education .hero-large {
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  background-position: center;
}

section.section-search-bar .search-container {
  width: 100%;
  margin: 30px 0 20px 0;
}

section.section-search-bar .search-container #search-form {
  display: flex;
  width: 100%;
}

section.section-search-bar .search-container #search-form input {
  border: none;
  background-color: #f2fafe;
  width: 100%;
  padding: 0 20px;
  font-family: 'work-sans-regular', sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  section.section-search-bar .search-container #search-form input {
    padding: 8px 8px 0 8px;
  }
}

section.section-search-bar .search-container #search-form ::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

section.section-search-bar .search-container #search-form :-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}

section.section-search-bar .search-container #search-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

section.section-search-bar .search-container #search-form :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}

section.section-search-bar .search-container #search-form .ion-ios-search {
  color: white;
  font-size: 32px;
}

section.section-search-bar .search-container #search-form .button {
  width: 100px;
  height: 60px;
}

section.section-card-section .card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 20px 0px;
}

section.section-card-section .card-wrapper .card-image-text .text-wrapper .text {
  font-size: 24px;
  text-align: center;
}

@media (max-width: 1200px) and (min-width: 768px) {
  section.section-card-section .card-wrapper .card-image-text .text-wrapper .text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  section.section-card-section .card-wrapper {
    flex-direction: column;
  }
}

section.section-news-calendar-events {
  padding: 30px 30px 0 30px;
}

section.section-news-calendar-events .content-wrapper {
  padding: 20px 15px;
}

section.section-news-calendar-events .content-wrapper .title-border {
  border-bottom: 5px solid #242f6f;
  font-size: 24px;
  padding-bottom: 10px;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: 'work-sans-semibold', sans-serif;
}

section.section-news-calendar-events .content-wrapper .title {
  padding: 20px 0px;
}

section.section-news-calendar-events .content-wrapper .all-posts {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-family: 'work-sans-bold', sans-serif;
  font-size: 14px;
}

section.section-news-calendar-events .content-wrapper .all-posts i {
  font-size: 20px;
  margin-left: 5px;
}

section.section-news-calendar-events .content-wrapper.education-calendar {
  padding: 0;
  display: flex;
  flex-direction: column;
}

section.section-news-calendar-events .content-wrapper.education-calendar .events {
  margin-bottom: -19px;
}

section.section-news-calendar-events .content-wrapper.education-calendar .all-posts {
  margin-top: 38px;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  section.section-news-calendar-events {
    padding: 0px;
  }
  section.section-news-calendar-events .content-wrapper {
    padding: 20px 15px;
  }
  section.section-news-calendar-events .content-wrapper.education-calendar .all-posts {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  section.section-subpage-content {
    width: 100%;
  }
}

section.section-subpage-content .container {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  section.section-subpage-content .container {
    flex-direction: column;
    margin: 0;
    max-width: 100%;
  }
}

section.section-subpage-content .container .text-wrapper {
  width: 60%;
  padding: 0;
}

@media (max-width: 768px) {
  section.section-subpage-content .container .text-wrapper {
    padding: 20px;
  }
}

section.section-subpage-content .container .text-wrapper .date {
  margin-bottom: 5px;
}

section.section-subpage-content .container .text-wrapper .text {
  width: 100%;
  padding-bottom: 40px;
}

section.section-subpage-content .container .text-wrapper .text .alignright {
  float: right;
  margin: 10px 0 10px 10px;
}

section.section-subpage-content .container .text-wrapper .text .alignleft {
  float: left;
  margin: 10px 10px 10px 0;
}

section.section-subpage-content .container .text-wrapper .text .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

section.section-subpage-content .container .text-wrapper .text h1 {
  font-size: 50px;
  padding: 0;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  section.section-subpage-content .container .text-wrapper .text h1 {
    font-size: 35px;
  }
}

section.section-subpage-content .container .text-wrapper .text h2 {
  font-size: 35px;
  padding: 10px 0;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  section.section-subpage-content .container .text-wrapper .text h2 {
    font-size: 30px;
  }
}

section.section-subpage-content .container .text-wrapper .text h2.education-title {
  margin-bottom: 20px;
}

section.section-subpage-content .container .text-wrapper .text h3 {
  font-size: 20px;
  font-weight: 500;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 500;
}

section.section-subpage-content .container .text-wrapper .text h4 {
  font-size: 16px;
}

section.section-subpage-content .container .text-wrapper .text p {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
}

section.section-subpage-content .container .text-wrapper .text p em {
  font-style: italic;
}

section.section-subpage-content .container .text-wrapper .text ul {
  margin-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
}

section.section-subpage-content .container .text-wrapper .text ul li {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

section.section-subpage-content .container .text-wrapper .text ul li:before {
  content: '\2022';
  position: absolute;
  margin-left: -20px;
}

section.section-subpage-content .container .text-wrapper .text ol {
  margin-bottom: 15px;
}

section.section-subpage-content .container .text-wrapper .text ol li {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
}

section.section-subpage-content .container .text-wrapper .text a {
  word-wrap: break-word;
}

@media (max-width: 768px) {
  section.section-subpage-content .container .text-wrapper {
    width: 100%;
  }
}

section.section-subpage-content .container .linkbox-wrapper {
  width: 50%;
}

@media (max-width: 768px) {
  section.section-subpage-content .container .linkbox-wrapper {
    width: 100%;
  }
}

section.section-subpage-content .container .linkbox-wrapper .linkbox {
  margin-left: 10%;
  background-color: rgba(0, 147, 255, 0.05);
  padding: 30px 30px 1px 30px;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .title {
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  border-bottom: 5px solid #242f6f;
  padding-bottom: 10px;
}

@media (max-width: 992px) and (min-width: 767px) {
  section.section-subpage-content .container .linkbox-wrapper .linkbox .title {
    font-size: 20px;
  }
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-bottom: 20px;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a {
  margin-top: 5px;
  display: flex;
  align-items: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: black;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a:hover {
  color: #0093FF;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a:hover .black {
  display: none;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a:hover .blue {
  display: block;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a img {
  width: 8px;
  height: 8px;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a img.black {
  display: block;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a img.blue {
  display: none;
}

section.section-subpage-content .container .linkbox-wrapper .linkbox .links a p {
  padding-left: 7px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  section.section-subpage-content .container .linkbox-wrapper .linkbox .links a p {
    padding-top: 9px;
  }
}

@media (max-width: 768px) {
  section.section-subpage-content .container .linkbox-wrapper .linkbox {
    width: 100%;
    margin: 0;
  }
}

section.section-publications {
  margin: 10px 0 50px 0;
}

section.section-publications .container {
  padding: 0;
}

section.section-publications .container .wrapper {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

section.section-publications .container .wrapper .item .content {
  background-color: rgba(0, 147, 255, 0.05);
  padding: 25px;
}

section.section-publications .container .wrapper .item .content .title {
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  border-bottom: 5px solid #242f6f;
  padding-bottom: 10px;
}

section.section-publications .container .wrapper .item .content .text {
  margin: 20px 0;
}

section.section-publications .container .wrapper .item .content .button {
  width: 250px;
  margin-bottom: 5px;
}

section.section-publications .container .wrapper .item:nth-child(odd) {
  padding: 20px 25px 20px 0;
}

section.section-publications .container .wrapper .item:nth-child(even) {
  padding: 20px 0 20px 25px;
}

@media screen and (max-width: 992px) {
  section.section-publications .container .main-title {
    padding-left: 20px;
  }
  section.section-publications .container .wrapper .item .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.section-publications .container .wrapper .item:nth-child(odd), section.section-publications .container .wrapper .item:nth-child(even) {
    padding: 20px 0;
  }
  section.section-publications .container .wrapper .item:last-child {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  section.section-publications {
    margin-bottom: 0;
  }
  section.section-publications .container .wrapper .item:nth-child(odd), section.section-publications .container .wrapper .item:nth-child(even) {
    padding: 10px 0;
  }
  section.section-publications .container .wrapper .item:first-child {
    padding-top: 20px;
  }
  section.section-publications .container .wrapper .item:last-child {
    padding-bottom: 20px;
  }
}

section.section-archive {
  padding: 20px;
}

section.section-archive .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.section-archive .container .title {
  font-size: 48px;
  font-weight: 500;
  width: 78%;
  border-bottom: 5px solid #242f6f;
  padding-bottom: 10px;
}

section.section-archive .container .title.subtitle {
  font-size: 24px;
  margin-top: 50px;
}

section.section-archive .container .title.no-border {
  border-bottom: none;
}

section.section-archive .container .link {
  margin-top: 10px;
  width: 78%;
}

section.section-archive .container .preamble {
  width: 78%;
  margin-top: 20px;
  border-bottom: 2px solid #242f6f;
  padding-bottom: 20px;
}

section.section-archive .container .preamble .alignright {
  float: right;
  margin: 10px 0 10px 10px;
}

section.section-archive .container .preamble .alignleft {
  float: left;
  margin: 10px 10px 10px 0;
}

section.section-archive .container .preamble .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

section.section-archive .container .preamble h1 {
  font-size: 50px;
  padding: 0;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  section.section-archive .container .preamble h1 {
    font-size: 35px;
  }
}

section.section-archive .container .preamble h2 {
  font-size: 35px;
  padding: 0 0 10px 0;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  section.section-archive .container .preamble h2 {
    font-size: 30px;
  }
}

section.section-archive .container .preamble h2.education-title {
  margin-bottom: 20px;
}

section.section-archive .container .preamble h2:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

section.section-archive .container .preamble h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 500;
}

section.section-archive .container .preamble h3:last-child {
  margin-bottom: 0;
}

section.section-archive .container .preamble h4 {
  font-size: 16px;
}

section.section-archive .container .preamble p {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}

section.section-archive .container .preamble p em {
  font-style: italic;
}

section.section-archive .container .preamble p:last-child {
  margin-bottom: 0;
}

section.section-archive .container .preamble ul {
  margin-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
}

section.section-archive .container .preamble ul li {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

section.section-archive .container .preamble ul li:before {
  content: '\2022';
  position: absolute;
  margin-left: -20px;
}

section.section-archive .container .preamble ol {
  margin-bottom: 15px;
}

section.section-archive .container .preamble ol li {
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
}

section.section-archive .container .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

section.section-archive .container .wrapper .item {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
}

section.section-archive .container .wrapper .item .content-border {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 16px;
}

section.section-archive .container .wrapper .item .content-border .content {
  width: 80%;
  padding: 25px 0;
}

section.section-archive .container .wrapper .item .content-border .content .date {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

section.section-archive .container .wrapper .item .content-border .content .date em {
  padding: 0 0 0 8px;
  border-left: 2px solid #3f94f7;
  font-style: normal;
}

section.section-archive .container .wrapper .item .content-border .content .date.taxonomy em {
  padding: 0 0 0 8px;
  border-left: 2px solid #3f94f7;
}

section.section-archive .container .wrapper .item .content-border .content .post-title {
  font-family: 'work-sans-medium', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 32px;
}

section.section-archive .container .wrapper .item .content-border .content .post-text {
  margin-bottom: 15px;
}

section.section-archive .container .wrapper .item .content-border .content .button {
  margin: 20px 0 0px 0;
}

section.section-archive .container .wrapper .item .content-border:hover {
  background-color: rgba(0, 147, 255, 0.05);
}

section.section-archive .container .wrapper .item .item-border {
  width: 80%;
  height: 1px;
  background-color: #3f94f7;
  margin-top: 15px;
}

section.section-archive .container .wrapper .pagination-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 80px 0;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers {
  width: 42px;
  margin: 0 3px;
  background-color: #242f6f;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers:first-child {
  margin-left: 0;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.prev, section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.next {
  background-color: #3f94f7;
  width: 125px;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.prev .mobile, section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.next .mobile {
  display: none;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.prev .desktop, section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.next .desktop {
  display: block;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.current {
  background-color: #3f94f7;
}

section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.dots {
  color: #242f6f;
  background-color: white;
  padding-bottom: 4px;
}

@media (max-width: 992px) {
  section.section-archive .container {
    padding: 0;
  }
  section.section-archive .container .title, section.section-archive .container .preamble, section.section-archive .container .link {
    width: 100%;
  }
  section.section-archive .container .preamble p {
    max-width: 90%;
  }
  section.section-archive .container .wrapper .item .item-border {
    width: 95.5%;
  }
  section.section-archive .container .wrapper .item .content-border .content {
    width: 100%;
    padding: 0 20px;
  }
  section.section-archive .container .wrapper .item .content-border .content .date {
    margin-top: 10px;
  }
  section.section-archive .container .wrapper .item .content-border .content .button {
    margin-bottom: 15px;
  }
  section.section-archive .container .wrapper .pagination-wrapper {
    padding: 0 15px;
  }
  section.section-archive .container .wrapper .pagination-wrapper .pagination {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section.section-archive .container .wrapper .item .content-border .content {
    padding: 0;
  }
  section.section-archive .container .wrapper .item .item-border {
    width: 100%;
  }
  section.section-archive .container .wrapper .pagination-wrapper {
    padding: 0 15px;
  }
  section.section-archive .container .wrapper .pagination-wrapper .pagination {
    margin: 40px 0;
  }
  section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.prev, section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.next {
    width: 42px;
  }
  section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.prev .mobile, section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.next .mobile {
    display: block;
  }
  section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.prev .desktop, section.section-archive .container .wrapper .pagination-wrapper .pagination .page-numbers.next .desktop {
    display: none;
  }
}

section.section-staff {
  margin-bottom: 50px;
}

section.section-staff .container {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
}

section.section-staff .container .main-title {
  font-size: 50px;
}

@media (max-width: 768px) {
  section.section-staff .container .main-title {
    font-size: 40px;
    padding-left: 20px;
  }
}

section.section-staff .container p, section.section-staff .container a {
  text-align: center;
  color: black;
  line-height: 1;
  padding: 5px 0;
  font-family: 'work-sans-regular', sans-serif;
}

section.section-staff .container .text-wrapper {
  width: 75%;
  padding: 20px 0;
}

@media (max-width: 768px) {
  section.section-staff .container .text-wrapper {
    width: 100%;
    padding: 20px;
  }
}

section.section-staff .container .text-wrapper .text {
  width: 100%;
  padding-bottom: 40px;
}

section.section-staff .container .text-wrapper .text h2 {
  font-size: 50px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  section.section-staff .container .text-wrapper .text h2 {
    font-size: 40px;
  }
}

section.section-staff .container .text-wrapper .text h3 {
  font-size: 20px;
  font-family: 'work-sans-medium', sans-serif;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 500;
}

section.section-staff .container .text-wrapper .text h4 {
  font-size: 20px;
}

section.section-staff .container .text-wrapper .text p {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 15px;
}

section.section-staff .container .text-wrapper .text p em {
  font-style: italic;
}

@media (max-width: 768px) {
  section.section-staff .container .text-wrapper {
    width: 100%;
  }
}

section.section-staff .container .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  padding: 0;
  flex: 1 1 auto;
}

section.section-staff .container .wrapper .item {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-direction: column;
  padding: 20px;
  width: 25%;
}

section.section-staff .container .wrapper .item:nth-child(4n+1) {
  padding-left: 0;
}

section.section-staff .container .wrapper .item:nth-child(4n) {
  padding-right: 0;
}

section.section-staff .container .wrapper .item .image {
  width: 100%;
  height: 300px;
  background-color: #f2fafe;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.section-staff .container .wrapper .item .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 5px;
}

section.section-staff .container .wrapper .item .info .title {
  line-height: 1.5;
}

section.section-staff .container .wrapper .item .info .email {
  text-decoration: underline;
  font-family: 'work-sans-regular', sans-serif;
  font-size: 16px;
}

section.section-staff .container .wrapper .item .info .name {
  font-family: 'work-sans-bold', sans-serif;
}

section.section-staff .container .wrapper-list {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  flex: 1 1 auto;
}

section.section-staff .container .wrapper-list .subtitle {
  font-size: 35px;
  font-weight: 500;
  width: 100%;
  padding-bottom: 30px;
}

section.section-staff .container .wrapper-list .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}

section.section-staff .container .wrapper-list .item .info {
  display: flex;
  flex-direction: row;
}

section.section-staff .container .wrapper-list .item .info .half {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

section.section-staff .container .wrapper-list .item .info .half .email, section.section-staff .container .wrapper-list .item .info .half .phone {
  font-family: 'work-sans-medium', sans-serif;
}

section.section-staff .container .wrapper-list .item .info .half .email {
  display: flex;
}

section.section-staff .container .wrapper-list .item .info .half .email .wrapper {
  flex-direction: column;
  padding-left: 7px;
}

section.section-staff .container .wrapper-list .item .info .half .email .wrapper a {
  padding: 0;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 5px;
}

section.section-staff .container .wrapper-list .item .info .half .name {
  font-family: 'work-sans-medium', sans-serif;
  text-decoration: underline;
}

section.section-staff .container .wrapper-list .item .info .half .title {
  text-align: left;
}

@media (max-width: 1200px) {
  section.section-staff .container .wrapper .item {
    width: 33%;
  }
  section.section-staff .container .wrapper .item:nth-child(3n+1) {
    padding-left: 0px;
  }
  section.section-staff .container .wrapper .item:nth-child(3n) {
    padding-right: 0px;
  }
  section.section-staff .container .wrapper .item:nth-child(4n+5) {
    padding-left: 20px;
  }
  section.section-staff .container .wrapper .item:nth-child(4n) {
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  section.section-staff .container .wrapper .item {
    width: 50%;
    padding: 20px !important;
  }
  section.section-staff .container .wrapper .item:nth-child(2n+1) {
    padding-left: 0px;
  }
  section.section-staff .container .wrapper .item:nth-child(2n) {
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  section.section-staff .container .wrapper .item {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  section.section-staff .container .wrapper .item:nth-child(2n+1) {
    padding-left: 20px;
  }
  section.section-staff .container .wrapper .item:nth-child(2n) {
    padding-right: 20px;
  }
  section.section-staff .container .wrapper .item .image {
    width: 300px;
  }
}

section.section-colleague .container .text-wrapper .text p {
  margin-bottom: 30px;
}

section.section-colleague .container .text-wrapper .text .presentation-wrapper {
  display: flex;
  flex-direction: column;
}

section.section-colleague .container .text-wrapper .text .presentation-wrapper a {
  margin-bottom: 10px;
}

section.section-colleague .container .portrait-wrapper {
  width: 40%;
  margin-top: 0;
  padding-left: 20px;
}

section.section-colleague .container .portrait-wrapper .portrait {
  width: 100%;
}

@media (max-width: 768px) {
  section.section-colleague .container {
    flex-direction: column-reverse;
  }
  section.section-colleague .container .portrait-wrapper {
    padding: 50px 20px;
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
  section.section-colleague .container .portrait-wrapper .portrait {
    padding-left: 0;
    width: 60%;
  }
}

@media (max-width: 500px) {
  section.section-colleague .container .portrait-wrapper .portrait {
    width: 100%;
  }
}

/* --partials-- */
.card-image-text {
  width: 260px;
  height: 195px;
}

.card-image-text .image {
  background-repeat: no-repeat;
  background-size: cover;
  height: 80%;
  width: 100%;
}

.card-image-text .text-wrapper {
  background-color: #242f6f;
  width: 100%;
  height: 30%;
  justify-content: center;
  align-items: center;
}

.card-image-text .text-wrapper .text {
  display: flex;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 24px;
  justify-content: center;
  align-items: center;
  font-family: 'work-sans-semibold', sans-serif;
}

@media screen and (max-width: 1200px) {
  .card-image-text {
    width: 220px;
    height: 165px;
  }
  .card-image-text .text-wrapper .text {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .card-image-text {
    width: 180px;
    height: 135px;
  }
  .card-image-text .text-wrapper .text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .card-image-text {
    width: 100%;
    height: 180px;
    margin: 10px 0px;
  }
}

.news-container {
  display: flex;
  flex-direction: column;
}

.news-container .news-item {
  padding: 20px 0px;
  min-height: 240px;
  height: 100%;
  width: 100%;
  border-bottom: 1px solid #3f94f7;
}

.news-container .news-item .publish-date {
  color: #a4a4a4;
  font-size: 14px;
}

.news-container .news-item .title {
  font-size: 20px;
}

.news-container .news-item .text-image-wrapper {
  display: flex;
}

.news-container .news-item .text-image-wrapper .image {
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
  background-size: cover;
}

.news-container .news-item .text-image-wrapper .title {
  font-size: 24px;
}

.news-container .news-item .text-image-wrapper .text {
  padding-right: 5px;
}

.news-container .news-item .text {
  margin-bottom: 20px;
}

.educations-wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  margin-bottom: 17px;
}

.educations-wrapper .button {
  width: 250px;
  margin: 20px 0px;
}

.education-calendar .calendar-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 15px;
  margin-bottom: 17px;
}

.education-calendar .calendar-wrapper .calendar-item {
  display: flex;
  align-self: center;
  height: 110px;
  width: 100%;
  padding: 20px 0px;
  width: 100%;
  border-bottom: 1px solid #3f94f7;
}

.education-calendar .calendar-wrapper .calendar-item .title {
  display: flex;
  align-items: center;
  margin-left: 30px;
  color: #242f6f;
  padding: 0px;
  margin-bottom: 3px;
  font-size: 20px;
  font-family: 'work-sans-medium', sans-serif;
}

@media screen and (min-width: 1200px) {
  .education-calendar .calendar-wrapper .calendar-item .title {
    max-width: 450px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .education-calendar .calendar-wrapper .calendar-item .title {
    max-width: 350px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .education-calendar .calendar-wrapper .calendar-item .title {
    max-width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .education-calendar .calendar-wrapper .calendar-item .title {
    max-width: 250px;
  }
}

.calendar-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 50px;
}

.calendar-card .day {
  font-size: 30px;
  height: 40px;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'work-sans-semibold', sans-serif;
  font-size: 30px;
}

.calendar-card .month {
  height: 20px;
  width: 100%;
  background-color: #3f94f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .calendar-card .month {
    padding: 8px 8px 0 8px;
  }
}

/* --components-- */
.cookie-notice {
  position: fixed;
  z-index: 1;
  bottom: -100px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(235, 235, 235, 0.8);
  -webkit-transition: bottom 0.3s ease-in-out;
  -moz-transition: bottom 0.3s ease-in-out false;
  -o-transition: bottom 0.3s ease-in-out false;
  transition: bottom 0.3s ease-in-out;
}

.cookie-notice p, .cookie-notice .btn {
  display: inline-block;
  font-size: 13px;
  padding: 7px 10px;
  margin: 0;
  vertical-align: middle;
}

.cookie-notice p {
  margin-right: 10px;
  max-width: 540px;
  padding: 9px;
  text-align: left;
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .cookie-notice p {
    text-align: center;
  }
}

.contact-us-text {
  position: fixed;
  width: 150px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 25px;
  top: 20%;
  transform-origin: right;
  transform: rotate(-90deg);
  font-size: 24px;
  background-color: #3f94f7;
  z-index: 4;
  border: 1;
}

.contact-us-text:hover {
  color: white;
  background-color: #242f6f;
}

.contact-us-icon {
  color: #3f94f7;
  font-size: 40px;
  z-index: 10;
  cursor: pointer;
}

section.review-block {
  display: block;
}

section.review-block .hidden {
  display: none;
}

section.review-block .container {
  margin-top: 40px;
  margin-bottom: 40px;
}

section.review-block .container .review-form {
  margin: 10px 0;
}

section.review-block .container .review-form .form-wrapper, section.review-block .container .review-form .specifics-form-wrapper, section.review-block .container .review-form .specifics-form, section.review-block .container .review-form .row, section.review-block .container .review-form h2 {
  display: block;
}

section.review-block .container .review-form .form-wrapper button:focus, section.review-block .container .review-form .specifics-form-wrapper button:focus, section.review-block .container .review-form .specifics-form button:focus, section.review-block .container .review-form .row button:focus, section.review-block .container .review-form h2 button:focus {
  outline: none;
}

section.review-block .container .review-form .form-wrapper.hidden, section.review-block .container .review-form .specifics-form-wrapper.hidden, section.review-block .container .review-form .specifics-form.hidden, section.review-block .container .review-form .row.hidden, section.review-block .container .review-form h2.hidden {
  display: none;
}

section.review-block .container .review-form .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 10px 0;
  align-items: flex-start;
  justify-content: flex-start;
}

section.review-block .container .review-form .row.buttons input {
  margin-right: 10px;
}

section.review-block .container .review-form .row .review-init {
  -webkit-border-radius: 0px;
  border: none;
}

section.review-block .container .review-form .row input {
  margin-top: 4px;
  margin-right: 5px;
}

section.review-block .container .review-form .row label {
  margin-right: 7px;
}

@media (max-width: 768px) {
  section.review-block .container .review-form .row label {
    width: 92%;
  }
}

@media (max-width: 450px) {
  section.review-block .container .review-form .row label {
    width: 90%;
  }
}

section.review-block .container .review-form .row #comment {
  width: 50%;
  height: 140px;
}

section.review-block .container .review-form .row .hidden {
  display: none;
}

section.review-block .container .review-form .row #submit-review.invalid {
  cursor: not-allowed;
}

section.review-block .container .review-form .row.submit {
  display: flex;
  flex-direction: column;
}

section.review-block .container .review-form .row.submit .submit-review {
  border: none !important;
}

@media (max-width: 768px) {
  section.review-block .container .review-form {
    padding: 10px 20px;
  }
  section.review-block .container .review-form .row {
    justify-content: space-between;
  }
}

/*# sourceMappingURL=main.css.map */