@charset "UTF-8";
.accordion-button {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  margin-top: 28px;
  margin-top: 1.75rem;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-weight: 700;
  padding: 1px;
  padding-left: 30px;
  padding-left: 1.875rem;
  background-image: url("/gfx/svg/arrow_down_blue.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 20px 12px;
  color: #0A46A4;
}
.accordion-button:hover {
  background-image: url("/gfx/svg/arrow_down_black.svg");
  cursor: pointer;
  color: #333;
}
.accordion-button + .accordion-content {
  display: none;
}
.accordion-button.expanded {
  background-image: url("/gfx/svg/arrow_up_blue.svg");
  margin-bottom: 0;
}
.accordion-button.expanded:hover {
  background-image: url("/gfx/svg/arrow_up_black.svg");
}
.accordion-button.expanded + .accordion-content {
  display: block;
}

.no-js .accordion-content {
  display: block;
}

html {
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
}

body {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  color: #202E45;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 700;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 600;
  margin-top: 28px;
  margin-top: 1.75rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
}

.fullpage-layout h1 {
  color: #859E96;
}
.fullpage-layout h2, .fullpage-layout h3, .fullpage-layout h4, .fullpage-layout h5, .fullpage-layout p {
  color: #FFFFFF;
}

main li {
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 46px;
    line-height: 2.875rem;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
  word-break: break-word;
  color: #0A46A4;
}
a:visited {
  color: #551A8B;
}
a:hover {
  color: #333;
}

p a, .cookie-alert a {
  border-bottom: 1px solid;
}

.fullpage-layout a {
  color: #FFFFFF;
}
.fullpage-layout a:hover {
  color: #FFDD00;
}

.download_document:not(.inline) {
  border: none;
  display: inline-block;
  margin-left: 24px;
}
.download_document:not(.inline)::before {
  content: " ";
  display: inline-block;
  width: 24px;
  margin-left: -24px;
  background-image: url("/gfx/svg/download.svg");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  background-size: 14px 21px;
  will-change: background-position-y, opacity;
}
.download_document:not(.inline):hover::before {
  background-image: url("/gfx/svg/download_hover.svg");
  background-position-y: -30px;
  animation: slide-in 0.26s forwards ease-out;
  opacity: 0;
}
@keyframes slide-in {
  100% {
    background-position-y: 3px;
    opacity: 1;
  }
}

#header {
  display: flex;
  justify-content: space-between;
}
#header .logotype {
  margin-top: 16px;
  margin-bottom: 16px;
  color: #FFDD00;
  width: 120px;
  min-height: 38px;
  background-image: url("/gfx/svg/uppsala_logo.svg");
  background-repeat: no-repeat;
}
#header .site-nav {
  display: none;
}
#header .menu-toggler {
  background-color: transparent;
  color: #FFDD00;
  border: none;
  min-width: 120px;
  padding: 0;
  cursor: pointer;
  height: 70px;
  overflow: hidden;
  margin: 0;
}
#header .menu-toggler span {
  background-repeat: no-repeat;
  background-position: center left 23px;
  background-size: 22.5px 17px;
  padding: 0 16px 0 64px;
  padding: 0 1rem 0 4rem;
  display: block;
  text-align: left;
  transition: transform 0.375s, opacity 0.375s;
  line-height: 70px;
}
#header .menu-toggler .open-text {
  background-image: url("/gfx/svg/menu.svg");
}
#header .menu-toggler .close-text {
  opacity: 0;
  background-image: url("/gfx/svg/close.svg");
  background-size: 17px 17px;
}
#header .menu-toggler:focus, #header .menu-toggler:active {
  outline: 0;
}
#header .menu-toggler.open span {
  transform: translateY(-70px);
}
#header .menu-toggler.open .close-text {
  opacity: 1;
}
#header .menu-toggler.open .open-text {
  opacity: 0;
}

@media (hover: hover) {
  #header .menu-toggler:hover {
    background-color: #FFDD00;
    color: #202E45;
  }
  #header .menu-toggler:hover .open-text {
    background-image: url("/gfx/svg/menu_hover.svg");
  }
  #header .menu-toggler:hover .close-text {
    background-image: url("/gfx/svg/close_hover.svg");
  }
}
@media (min-width: 992px) {
  #header .menu-toggler {
    display: none;
  }
  #header .site-nav {
    display: block;
    margin-bottom: 32px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
  }
  #header .site-nav .site-menu-toggler {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-weight: 700;
    background-image: url("/gfx/svg/options.svg");
    background-repeat: no-repeat;
    background-position: center right 2px;
    background-size: 20px 20px;
    line-height: 20px;
    line-height: 1.25rem;
    padding-right: 28px;
    padding-left: 6px;
  }
  #header .site-nav .site-menu-toggler:hover {
    color: #FFDD00;
    cursor: pointer;
  }
  #header .site-nav .site-menu-toggler:focus {
    outline: 0;
  }
  #header .logotype {
    margin-top: 32px;
    margin-left: 0;
    width: 140px;
    background-size: 140px 51px;
  }
}
.menu {
  margin: 0;
  list-style: none;
  padding: 0;
}
.menu li {
  margin: 0;
}
.menu ul {
  margin: 0;
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  visibility: hidden;
  transition: transform 0.26s ease;
}
.menu a {
  color: #ACBAD0;
  text-decoration: none;
  display: block;
  flex-grow: 1;
  font-weight: 400;
}
.menu .menu-item {
  display: flex;
}
.menu .menu-item a {
  padding: 8px 0;
  padding: 0.5rem 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.menu .menu-item:hover a {
  color: #FFFFFF;
}
.menu .current > .menu-item a, .menu .current-parent > .menu-item a {
  font-weight: 600;
  color: #FFFFFF;
}
.menu .level1, .menu .menu-root {
  border-bottom: 1px solid #32465A;
}
.menu .level1 > .menu-item a, .menu .menu-root > .menu-item a {
  padding: 22px 0;
  padding: 1.375rem 0;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
}
.menu .level2 .menu-item {
  border-left: 2px solid #32465A;
}
.menu .level2 .menu-item a {
  padding: 8px 0 8px 26px;
  padding: 0.5rem 0 0.5rem 1.625rem;
  line-height: 24px;
  line-height: 1.5rem;
}
.menu .level2.current > .menu-item, .menu .level2 .current > .menu-item, .menu .level2.current-parent > .menu-item, .menu .level2 .current-parent > .menu-item {
  border-color: #FFFFFF;
}
.menu .level2:last-child {
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}
.menu .level3 .menu-item a {
  padding-left: 52px;
  padding-left: 3.25rem;
}
.menu .level4 .menu-item a {
  padding-left: 65px;
  padding-left: 4.0625rem;
}
.menu .level5 .menu-item a {
  padding-left: 78px;
  padding-left: 4.875rem;
}
.menu button {
  display: none;
  cursor: pointer;
  width: 96px;
  width: 6rem;
  background: url("/gfx/svg/arrow_up.svg");
  background-repeat: no-repeat;
  background-position: center right 24.5px;
  background-size: 17.8px 9.7px;
  border: none;
  padding: 0;
  transform: rotateX(0.5turn);
  transition: transform 0.26s ease;
}
.menu button:focus, .menu button:active {
  outline: 0;
}
.menu a:not([href]) {
  cursor: default;
}
.menu .open > .menu-item > button {
  transform: rotateX(0);
}
.menu .open > ul {
  visibility: visible;
  max-height: none;
  overflow: inherit;
  transform: scaleY(1);
}
.menu .has-children > .menu-item > button {
  display: block;
}
.menu .btn-label {
  font-size: 0;
  height: 1px;
  overflow: hidden;
  display: block;
}

.no-js .menu ul {
  visibility: visible;
  transition: none;
  transform: none;
  animation: expand forwards;
  animation-delay: 2s;
  animation-duration: 0s;
}
@keyframes expand {
  from {
    max-height: 0;
  }
  to {
    max-height: 9999px;
  }
}

@media (min-width: 992px) {
  .menu .level1, .menu .menu-root {
    border-color: #586274;
  }
  .menu button {
    width: 64px;
    width: 4rem;
  }
}
.fullpage {
  min-height: 500px;
}
.fullpage h1 {
  font-size: 38px;
  font-size: 2.375rem;
  word-wrap: break-word;
  hyphens: auto;
}
.fullpage .substartpage-links {
  margin-top: 32px;
}
.fullpage .substartpage-link {
  display: block;
  border: 1px solid #9290B0;
  padding: 20px;
  margin-bottom: 16px;
}
.fullpage .substartpage-link:hover {
  border-color: #FFFFFF;
}
.fullpage .substartpage-link h2 {
  margin-top: 0;
  margin-bottom: 16px;
}
.fullpage .substartpage-link:hover h2 {
  color: #FFDD00;
}
.fullpage .substartpage-link p {
  margin-bottom: 0;
}
.fullpage .underline {
  padding-bottom: 14px;
  border-bottom: 1px solid #9290B0;
}
.fullpage #newslists .loadmore-fadein {
  opacity: 0;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-name: fade-in-1;
  animation-duration: 2s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  will-change: opacity;
}
@keyframes fade-in-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fullpage #newslists .news-list > .news-item > .news-date {
  color: #FFFFFF;
}
.fullpage #newslists .news-list > .news-item > a:hover h3 {
  color: #FFDD00;
}
.fullpage #newslists .news-list > .news-item > .news-tag > a:hover {
  background-image: url(/gfx/svg/tag_gul.svg);
  color: #FFDD00;
}
.fullpage #newslists .news-list > .news-item p {
  margin: 0px 0px 0px 0px;
  color: #FFFFFF;
}
.fullpage #loadmore {
  padding: 6px 20px 7px 20px;
  border: 1px solid #9290B0;
}
.fullpage #loadmore:hover {
  border-color: #FFFFFF;
}

@media (min-width: 768px) {
  .fullpage h1 {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 60px;
    line-height: 3.75rem;
    margin-top: 32px;
    margin-bottom: 0;
  }
  .fullpage .main-body {
    max-width: 680px;
  }
  .fullpage .main-body p {
    margin-top: 16px;
  }
  .fullpage .substartpage-links {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
  }
  .fullpage .substartpage-link {
    max-width: 31%;
    margin-right: 16px;
    padding: 30px 30px 48px 30px;
  }
  .fullpage p {
    margin-bottom: 16px;
  }
  .fullpage #news-section {
    max-width: 63%;
  }
}
@media (min-width: 992px) {
  .fullpage h1 {
    font-size: 80px;
    font-size: 5rem;
    line-height: 76px;
    line-height: 4.75rem;
  }
}
#startpagemenu-desktop {
  display: none;
}

#startpagemenu-mobile {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 20px 0;
  padding: 1.25rem 0;
}
#startpagemenu-mobile a {
  color: #FFFFFF;
  margin: 0 0 25px 0;
  display: block;
}
#startpagemenu-mobile h2 {
  color: #FFFFFF;
  margin: 0 0 8px 0;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 600;
}
#startpagemenu-mobile a:hover h2 {
  color: #FFDD00;
}
#startpagemenu-mobile p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  #site-menu #closelink-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 40px 25px 40px;
  }
  #substartpagemenu-close {
    padding: 10px;
    background: url(/gfx/svg/close_big.svg) no-repeat;
    background-position: center top;
  }
  #startpagemenu-mobile {
    display: none;
  }
  #startpagemenu-desktop {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
  #startpagemenu-desktop > div {
    width: 330px;
    margin: 40px;
    display: flex;
    flex-flow: column nowrap;
  }
  #startpagemenu-desktop > div > h2 {
    margin: 0px 0px 10px 0px;
    color: #202E45;
  }
  #startpagemenu-desktop > div > p {
    margin: 0px 0px 40px 0px;
  }
  #startpagemenu-desktop > div > a, #startpagemenu-desktop > div a:visited {
    text-transform: capitalize;
    border: 1px solid #0A46A4;
    color: #0A46A4;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 2px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.08), 0 3px 1px -2px rgba(0, 0, 0, 0.06), 0 1px 5px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-out;
  }
  #startpagemenu-desktop > div > a:hover, #startpagemenu-desktop > div a:visited:hover {
    background-color: #1857B2;
    border-color: #1857B2;
    color: #FFFFFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16), 0 1px 7px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -1px rgba(0, 0, 0, 0.4);
    transition: 0.3s ease-out;
  }
  #startpagemenu-desktop > div a, #startpagemenu-desktop > div .current {
    margin-top: auto;
  }
  #startpagemenu-desktop > div .current {
    border: 1px solid #8296AA;
    color: #8296AA;
    background-color: transparent;
    text-transform: none;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 2px;
    text-align: center;
  }
}
#pagetype-substartpage .hero-img {
  width: calc(100% + 38.4px);
  margin: -19.2px -19.2px 0 -19.2px;
  margin: -1.2rem -1.2rem 0 -1.2rem;
}

@media (min-width: 992px) {
  #pagetype-substartpage .hero-img {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  #pagetype-substartpage .hero-img {
    width: calc(100% + 64px);
    margin: 32px -32px 0 -32px;
    margin: 2rem -2rem 0 -2rem;
  }
}
#pagetype-standardpage .content-area > div:first-of-type .block-header {
  margin-top: 0;
}

#pagetype-errorpage .background-errorcode {
  color: #FFFFFF;
  opacity: 0.03;
  font-size: 200px;
  font-size: 12.5rem;
  font-weight: 700;
  z-index: -10;
  position: fixed;
  left: 50%;
  top: 15%;
  transform: translate(-50%, -15%);
}

@media (orientation: landscape) {
  #pagetype-errorpage .background-errorcode {
    top: 30%;
    transform: translate(-50%, -30%);
  }
}
@media (min-width: 768px) {
  #pagetype-errorpage .background-errorcode {
    top: 40%;
    transform: translate(-50%, -40%);
    font-size: 560px;
    font-size: 35rem;
  }
}
.footer-links {
  color: #FFFFFF;
  padding: 48px 4px;
  padding: 3rem 0.25rem;
  overflow-x: hidden;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 -20px;
}
.footer-links li {
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  margin: 0;
}
.footer-links a {
  color: #FFFFFF;
}
.footer-links a:hover {
  color: #FFDD00;
}
.footer-links a.partial-link {
  border-bottom: 1px solid;
}

@media (min-width: 576px) {
  .footer-links ul {
    display: flex;
    flex-flow: row wrap;
  }
  .footer-links li {
    flex-grow: 1;
    flex-basis: 50%;
  }
}
@media (min-width: 768px) {
  .footer-links li {
    flex-grow: 0;
    flex-basis: auto;
  }
}
@media (min-width: 992px) {
  .default-layout .footer-links ul {
    justify-content: flex-end;
  }
}
.cookie-alert {
  background-color: #FFDD00;
  color: #333;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 8rem;
  padding: 1rem 1rem;
  position: fixed;
  animation: slide-up 1s forwards;
  transform: translateY(100%);
  will-change: transform;
}
@keyframes slide-up {
  100% {
    transform: translateY(0%);
  }
}
.cookie-alert a, .cookie-alert a:visited {
  color: #333;
}
.cookie-alert .cookie-button {
  border-radius: 3px;
  border-width: 0;
  background-color: #202E45;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 1rem;
  padding: 12px 25px;
}
.cookie-alert .cookie-button:hover, .cookie-alert .cookie-button:active {
  background-image: url("/gfx/svg/tugga.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 15px 21px;
  cursor: pointer;
  border-bottom-left-radius: 0;
}

@media (min-width: 992px) {
  .cookie-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
  }
  .cookie-alert .cookie-text {
    width: 760px;
  }
  .cookie-alert .cookie-button {
    padding: 15px 28px;
    margin-top: 0;
  }
  .cookie-alert .cookie-button:hover, .cookie-alert .cookie-button:active {
    background-size: 23px 32px;
  }
}
.color-block {
  background-color: #FFFFFF;
}
.color-block__tones {
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-block__tone-text {
  color: #000000;
}
.color-block__main-content {
  padding: 1rem;
  padding-bottom: 2.5rem;
}
.color-block__main-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2rem;
}
.color-block__main-content h3, .color-block__main-content p {
  margin: 0;
}

@media (min-width: 992px) {
  .display-threequarters.collapse-adjacent + .type-editorial-block > .block-header,
  .display-full.collapse-adjacent + .type-editorial-block > .block-header,
  .display-twothirds.type-image-file-with-caption + .type-editorial-block > .block-header,
  .display-half.type-image-file-with-caption + .type-editorial-block > .block-header {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
  .display-threequarters.collapse-adjacent + .type-editorial-block > .accordion-button,
  .display-full.collapse-adjacent + .type-editorial-block > .accordion-button,
  .display-twothirds.type-image-file-with-caption + .type-editorial-block > .accordion-button,
  .display-half.type-image-file-with-caption + .type-editorial-block > .accordion-button {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
  .display-threequarters.collapse-adjacent + .type-font-block .font-block :first-child h3,
  .display-full.collapse-adjacent + .type-font-block .font-block :first-child h3,
  .display-twothirds.type-image-file-with-caption + .type-font-block .font-block :first-child h3,
  .display-half.type-image-file-with-caption + .type-font-block .font-block :first-child h3 {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
}
.font-block h3 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.font-block p {
  white-space: pre-line;
  word-break: break-all;
}
.font-block .font-light p, .font-block .font-light h3 {
  font-weight: 300;
}
.font-block .font-normal p, .font-block .font-normal h3 {
  font-weight: 400;
}
.font-block .font-semibold p, .font-block .font-semibold h3 {
  font-weight: 600;
}
.font-block .font-bold p, .font-block .font-bold h3 {
  font-weight: 700;
}

.news-list {
  margin-top: 24px;
}
.news-list .news-item {
  margin-bottom: 34px;
}
.news-list .news-item > .news-date {
  font-size: 16px;
  font-size: 1rem;
}
.news-list .news-item a h3 {
  margin: 6px 0px 6px 0px;
}
.news-list .news-item a > p {
  margin: 0px 0px 0px 0px;
}
.news-list .news-item a:hover p, .news-list .news-item a :visited p, .news-list .news-item a p {
  color: #333;
}
.news-list .news-item > .news-tag > a {
  background: url(/gfx/svg/tag.svg) no-repeat left center;
  background-size: 18px 18px;
  padding-left: 21px;
  color: #9290B0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
}
.news-list .news-item > .news-tag > a:hover {
  color: #333;
  background-image: url(/gfx/svg/tag_black.svg);
}
.news-list > a {
  padding: 10px 10px;
  border: 1px solid #1857B2;
}

.display-options-container {
  margin-bottom: -1rem;
}
.display-options-container > div {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .display-options-container {
    display: flex;
    flex-wrap: wrap;
    margin: -0.25rem;
  }
  .display-options-container > div {
    margin: 0.25rem 0;
    padding: 0 0.25rem;
  }
  .display-options-container .display-quarter {
    width: 50%;
  }
  .display-options-container .display-third {
    width: 50%;
  }
  .display-options-container .display-half {
    width: 50%;
  }
  .display-options-container .display-twothirds {
    width: 66.666667%;
  }
  .display-options-container .display-threequarters {
    width: 75%;
  }
  .display-options-container .display-full {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .display-options-container .display-quarter {
    width: 25%;
  }
  .display-options-container .display-third {
    width: 33.333333%;
  }
}
.image-wrapper img {
  max-width: 100%;
  display: block;
}
.image-wrapper p {
  margin-top: 2px;
  margin-top: 0.125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125rem;
  padding-right: 16;
}

.environment-info {
  position: fixed;
  width: 200px;
  right: 0;
  bottom: 0;
  color: #FFDD00;
  background-color: #0E1D2D;
  border: 1px solid #586274;
  padding: 4px;
  text-align: center;
  font-size: 16px;
}

@media (min-width: 768px) {
  .environment-info {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    margin-left: -100px;
  }
}
html {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

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

body {
  background: #202E45;
}

.fullpage-layout {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 16px 1fr 16px;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "left    header  right" "left    main    right" "footer  footer  footer";
}
.fullpage-layout #header {
  grid-area: header;
}
.fullpage-layout #main {
  grid-area: main;
}
.fullpage-layout #footer {
  grid-area: footer;
  background: rgba(0, 0, 0, 0.15);
  padding: 0 16px;
  margin-top: 48px;
}
.fullpage-layout .background-image {
  background-size: cover;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -10;
  animation-name: fade-in-0-03;
  animation-duration: 2s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  will-change: opacity;
}
@keyframes fade-in-0-03 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.03;
  }
}

.default-layout #header {
  padding-left: 16px;
}
.default-layout #footer {
  padding: 0 16px;
}
.default-layout #main {
  padding: 19.2px 19.2px 32px 19.2px;
  padding: 1.2rem 1.2rem 2rem 1.2rem;
  background: #FFFFFF;
}
.default-layout #main h1 {
  border-bottom: 1px solid #8296AA;
  padding: 0 0 24px 0;
  padding: 0 0 1.5rem 0;
  word-wrap: break-word;
}

#menu {
  background: #0E1D2D;
}

#menu,
#site-menu {
  max-height: 0;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  visibility: hidden;
  padding: 0 20px;
  padding: 0 1.25rem;
}

#site-menu .popdown {
  display: none;
}

.show-menu #site-menu {
  visibility: visible;
  max-height: none;
  overflow: inherit;
  transform: scaleY(1);
}
.show-menu #menu {
  visibility: visible;
  max-height: none;
  overflow: inherit;
  transform: scaleY(1);
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
.show-menu #main, .show-menu #footer {
  display: none;
}

.no-js .default-layout #menu,
.no-js .default-layout #site-menu {
  visibility: visible;
  transition: none;
  transform: none;
  animation: expand forwards;
  animation-delay: 2s;
  animation-duration: 0s;
}
@keyframes expand {
  from {
    max-height: 0;
  }
  to {
    max-height: 9999px;
  }
}
.no-js .default-layout #site-menu .popdown {
  transition: margin-top cubic-bezier(0.05, 0.59, 0.64, 0.99) 0.5s, opacity cubic-bezier(0.05, 0.59, 0.64, 0.99) 0.5s;
  margin-top: 0;
  opacity: 1;
}

@media (min-width: 576px) {
  .default-layout #main {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.6);
  }
  .default-layout #footer {
    margin-top: 16px;
  }
}
@media (min-width: 992px) {
  .fullpage-layout {
    grid-template-columns: 32px 1fr 32px;
    grid-template-rows: 120px auto 1fr;
  }
  .fullpage-layout #main {
    padding: 0;
  }
  .fullpage-layout #footer {
    padding: 0 32px;
  }
  .default-layout {
    display: grid;
    grid-template-columns: 32px 280px 1fr 32px;
    grid-template-rows: auto 120px auto auto;
    grid-template-areas: "popdown popdown popdown popdown" "left    header  header  right" "left    menu    main    right" "left    footer  footer  right";
  }
  .default-layout #main {
    grid-area: main;
    padding: 32px 32px 48px 32px;
    padding: 2rem 2rem 3rem 2rem;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.6);
    min-height: 992px;
  }
  .default-layout #main h1 {
    padding: 0 0 32px 0;
    padding: 0 0 2rem 0;
  }
  .default-layout #footer {
    grid-area: footer;
  }
  .default-layout #header {
    grid-area: header;
  }
  .default-layout #header, .default-layout #footer {
    padding: 0;
  }
  .default-layout #menu {
    grid-area: menu;
    padding: 0 40px 0 0;
    background: none;
    visibility: visible;
    max-height: none;
    overflow: inherit;
    transform: scaleY(1);
    transition: none;
  }
  .default-layout #menu .menu {
    position: sticky;
    top: 0;
  }
  .default-layout #site-menu {
    grid-area: popdown;
    padding: 0;
  }
  .default-layout #site-menu .popdown {
    display: block;
    will-change: margin-top, opacity;
    margin-top: -100%;
    opacity: 0;
    background: #F4F4F6;
  }
  .default-layout #site-menu.hide .popdown {
    transition: margin-top cubic-bezier(0.36, 0.01, 0.95, 0.41) 0.5s, opacity cubic-bezier(0.36, 0.01, 0.95, 0.41) 0.5s;
  }
  .default-layout #site-menu.show .popdown {
    transition: margin-top cubic-bezier(0.05, 0.59, 0.64, 0.99) 0.5s, opacity cubic-bezier(0.05, 0.59, 0.64, 0.99) 0.5s;
    margin-top: 0;
    opacity: 1;
  }
  body:not(.no-js) #site-menu {
    visibility: visible;
    max-height: none;
    overflow: inherit;
    transform: scaleY(1);
  }
  .show-menu #main, .show-menu #footer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .default-layout #main {
    padding: 48px 112px 112px 136px;
    padding: 3rem 7rem 7rem 8.5rem;
    min-height: 1150px;
  }
}
@media (min-width: 1350px) {
  body {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow: overlay;
  }
  .fullpage-layout {
    grid-template-columns: 1fr 1272px 1fr;
  }
  .fullpage-layout #footer {
    padding: 0;
  }
  .fullpage-layout #footer .footer-links {
    margin: 0 auto;
    width: 1272px;
  }
  .default-layout {
    grid-template-columns: 1fr 280px 992px 1fr;
  }
}
