@charset "UTF-8";
/*
  base-scss Variables

    - variables only set if undefined
*/
.border-box {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

.no-select,
.unselectable {
  user-select: none;
  -webkit-user-select: none; }

.no-interact {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; }

.hide-scrollbar::-webkit-scrollbar {
  display: none; }

html {
  font-size: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  background-color: #ffffff;
  margin: 0; }

* {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit; }
  *:focus {
    outline: 0; }

@media (max-width: 767px) {
  .hide-xs {
    display: none; } }

@media (max-width: 1024px) {
  .hide-s {
    display: none; } }

@media (max-width: 767px) {
  .show-s {
    display: none; } }

@media (max-width: 1024px) {
  .show-m {
    display: none; } }

* {
  -webkit-tap-highlight-color: transparent; }

h1, hr::after, h2, h3, h4, h5, h6, p {
  margin-top: 0; }

h1.no-margin, hr.no-margin::after,
h2.no-margin,
h3.no-margin,
h4.no-margin,
h5.no-margin,
h6.no-margin,
p.no-margin,
span.no-margin {
  margin: 0; }

a, .link {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none; }

button {
  font-family: inherit; }

.uppercase {
  text-transform: uppercase; }

.capitalize {
  text-transform: capitalize; }

.lowercase {
  text-transform: lowercase; }

.no-bold {
  font-weight: normal; }

.bold {
  font-weight: bold; }

.tab-num {
  -webkit-font-feature-settings: "tnum" 1;
  -moz-font-feature-settings: "tnum" 1;
  -ms-font-feature-settings: "tnum" 1;
  -o-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1; }

@media (min-width: 1025px) {
  a:hover,
  .link:hover {
    color: #666666; }
  a:hover.no-hover,
  .link:hover.no-hover {
    color: inherit; } }

ul, ul.no-bullet {
  margin-top: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

ul.no-bullet {
  padding-left: 0;
  list-style: none; }

/*
  base-scss Grid

    - .row clearfix class
    - generates col-1 to col-12 for each screen size
*/
.row, .form-group {
  width: 100%; }

.row::after, .form-group::after {
  display: block;
  content: '';
  clear: both; }

.row.feed > *, .feed.form-group > * {
  float: left; }

@media (min-width: 0) {
  .col-xxs-1 {
    float: left;
    width: 8.33333% !important;
    width: calc(100% / 12 * 1) !important; }
  .col-xxs-2 {
    float: left;
    width: 16.66667% !important;
    width: calc(100% / 12 * 2) !important; }
  .col-xxs-3 {
    float: left;
    width: 25% !important;
    width: calc(100% / 12 * 3) !important; }
  .col-xxs-4 {
    float: left;
    width: 33.33333% !important;
    width: calc(100% / 12 * 4) !important; }
  .col-xxs-5 {
    float: left;
    width: 41.66667% !important;
    width: calc(100% / 12 * 5) !important; }
  .col-xxs-6 {
    float: left;
    width: 50% !important;
    width: calc(100% / 12 * 6) !important; }
  .col-xxs-7 {
    float: left;
    width: 58.33333% !important;
    width: calc(100% / 12 * 7) !important; }
  .col-xxs-8 {
    float: left;
    width: 66.66667% !important;
    width: calc(100% / 12 * 8) !important; }
  .col-xxs-9 {
    float: left;
    width: 75% !important;
    width: calc(100% / 12 * 9) !important; }
  .col-xxs-10 {
    float: left;
    width: 83.33333% !important;
    width: calc(100% / 12 * 10) !important; }
  .col-xxs-11 {
    float: left;
    width: 91.66667% !important;
    width: calc(100% / 12 * 11) !important; }
  .col-xxs-12 {
    float: left;
    width: 100% !important;
    width: calc(100% / 12 * 12) !important; } }

@media (min-width: 320px) {
  .col-xs-1 {
    float: left;
    width: 8.33333% !important;
    width: calc(100% / 12 * 1) !important; }
  .col-xs-2 {
    float: left;
    width: 16.66667% !important;
    width: calc(100% / 12 * 2) !important; }
  .col-xs-3 {
    float: left;
    width: 25% !important;
    width: calc(100% / 12 * 3) !important; }
  .col-xs-4 {
    float: left;
    width: 33.33333% !important;
    width: calc(100% / 12 * 4) !important; }
  .col-xs-5 {
    float: left;
    width: 41.66667% !important;
    width: calc(100% / 12 * 5) !important; }
  .col-xs-6 {
    float: left;
    width: 50% !important;
    width: calc(100% / 12 * 6) !important; }
  .col-xs-7 {
    float: left;
    width: 58.33333% !important;
    width: calc(100% / 12 * 7) !important; }
  .col-xs-8 {
    float: left;
    width: 66.66667% !important;
    width: calc(100% / 12 * 8) !important; }
  .col-xs-9 {
    float: left;
    width: 75% !important;
    width: calc(100% / 12 * 9) !important; }
  .col-xs-10 {
    float: left;
    width: 83.33333% !important;
    width: calc(100% / 12 * 10) !important; }
  .col-xs-11 {
    float: left;
    width: 91.66667% !important;
    width: calc(100% / 12 * 11) !important; }
  .col-xs-12 {
    float: left;
    width: 100% !important;
    width: calc(100% / 12 * 12) !important; } }

@media (min-width: 768px) {
  .col-s-1 {
    float: left;
    width: 8.33333% !important;
    width: calc(100% / 12 * 1) !important; }
  .col-s-2 {
    float: left;
    width: 16.66667% !important;
    width: calc(100% / 12 * 2) !important; }
  .col-s-3 {
    float: left;
    width: 25% !important;
    width: calc(100% / 12 * 3) !important; }
  .col-s-4 {
    float: left;
    width: 33.33333% !important;
    width: calc(100% / 12 * 4) !important; }
  .col-s-5 {
    float: left;
    width: 41.66667% !important;
    width: calc(100% / 12 * 5) !important; }
  .col-s-6 {
    float: left;
    width: 50% !important;
    width: calc(100% / 12 * 6) !important; }
  .col-s-7 {
    float: left;
    width: 58.33333% !important;
    width: calc(100% / 12 * 7) !important; }
  .col-s-8 {
    float: left;
    width: 66.66667% !important;
    width: calc(100% / 12 * 8) !important; }
  .col-s-9 {
    float: left;
    width: 75% !important;
    width: calc(100% / 12 * 9) !important; }
  .col-s-10 {
    float: left;
    width: 83.33333% !important;
    width: calc(100% / 12 * 10) !important; }
  .col-s-11 {
    float: left;
    width: 91.66667% !important;
    width: calc(100% / 12 * 11) !important; }
  .col-s-12 {
    float: left;
    width: 100% !important;
    width: calc(100% / 12 * 12) !important; } }

@media (min-width: 1280px) {
  .col-m-1 {
    float: left;
    width: 8.33333% !important;
    width: calc(100% / 12 * 1) !important; }
  .col-m-2 {
    float: left;
    width: 16.66667% !important;
    width: calc(100% / 12 * 2) !important; }
  .col-m-3 {
    float: left;
    width: 25% !important;
    width: calc(100% / 12 * 3) !important; }
  .col-m-4 {
    float: left;
    width: 33.33333% !important;
    width: calc(100% / 12 * 4) !important; }
  .col-m-5 {
    float: left;
    width: 41.66667% !important;
    width: calc(100% / 12 * 5) !important; }
  .col-m-6 {
    float: left;
    width: 50% !important;
    width: calc(100% / 12 * 6) !important; }
  .col-m-7 {
    float: left;
    width: 58.33333% !important;
    width: calc(100% / 12 * 7) !important; }
  .col-m-8 {
    float: left;
    width: 66.66667% !important;
    width: calc(100% / 12 * 8) !important; }
  .col-m-9 {
    float: left;
    width: 75% !important;
    width: calc(100% / 12 * 9) !important; }
  .col-m-10 {
    float: left;
    width: 83.33333% !important;
    width: calc(100% / 12 * 10) !important; }
  .col-m-11 {
    float: left;
    width: 91.66667% !important;
    width: calc(100% / 12 * 11) !important; }
  .col-m-12 {
    float: left;
    width: 100% !important;
    width: calc(100% / 12 * 12) !important; } }

@media (min-width: 1920px) {
  .col-b-1 {
    float: left;
    width: 8.33333% !important;
    width: calc(100% / 12 * 1) !important; }
  .col-b-2 {
    float: left;
    width: 16.66667% !important;
    width: calc(100% / 12 * 2) !important; }
  .col-b-3 {
    float: left;
    width: 25% !important;
    width: calc(100% / 12 * 3) !important; }
  .col-b-4 {
    float: left;
    width: 33.33333% !important;
    width: calc(100% / 12 * 4) !important; }
  .col-b-5 {
    float: left;
    width: 41.66667% !important;
    width: calc(100% / 12 * 5) !important; }
  .col-b-6 {
    float: left;
    width: 50% !important;
    width: calc(100% / 12 * 6) !important; }
  .col-b-7 {
    float: left;
    width: 58.33333% !important;
    width: calc(100% / 12 * 7) !important; }
  .col-b-8 {
    float: left;
    width: 66.66667% !important;
    width: calc(100% / 12 * 8) !important; }
  .col-b-9 {
    float: left;
    width: 75% !important;
    width: calc(100% / 12 * 9) !important; }
  .col-b-10 {
    float: left;
    width: 83.33333% !important;
    width: calc(100% / 12 * 10) !important; }
  .col-b-11 {
    float: left;
    width: 91.66667% !important;
    width: calc(100% / 12 * 11) !important; }
  .col-b-12 {
    float: left;
    width: 100% !important;
    width: calc(100% / 12 * 12) !important; } }

@media (min-width: 2300px) {
  .col-xb-1 {
    float: left;
    width: 8.33333% !important;
    width: calc(100% / 12 * 1) !important; }
  .col-xb-2 {
    float: left;
    width: 16.66667% !important;
    width: calc(100% / 12 * 2) !important; }
  .col-xb-3 {
    float: left;
    width: 25% !important;
    width: calc(100% / 12 * 3) !important; }
  .col-xb-4 {
    float: left;
    width: 33.33333% !important;
    width: calc(100% / 12 * 4) !important; }
  .col-xb-5 {
    float: left;
    width: 41.66667% !important;
    width: calc(100% / 12 * 5) !important; }
  .col-xb-6 {
    float: left;
    width: 50% !important;
    width: calc(100% / 12 * 6) !important; }
  .col-xb-7 {
    float: left;
    width: 58.33333% !important;
    width: calc(100% / 12 * 7) !important; }
  .col-xb-8 {
    float: left;
    width: 66.66667% !important;
    width: calc(100% / 12 * 8) !important; }
  .col-xb-9 {
    float: left;
    width: 75% !important;
    width: calc(100% / 12 * 9) !important; }
  .col-xb-10 {
    float: left;
    width: 83.33333% !important;
    width: calc(100% / 12 * 10) !important; }
  .col-xb-11 {
    float: left;
    width: 91.66667% !important;
    width: calc(100% / 12 * 11) !important; }
  .col-xb-12 {
    float: left;
    width: 100% !important;
    width: calc(100% / 12 * 12) !important; } }

/*
  base-scss

    - .container for all padding
    - 5 different padding amounts
    - .container.feed for a feed of items with a right margin/padding
*/
.container, .container.xs, .container.s, .container.b, .container.xb {
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

.xs.container {
  padding: 0.35714rem 0.35714rem 0.35714rem 0.35714rem; }

.s.container {
  padding: 0.55556rem 0.55556rem 0.55556rem 0.55556rem; }

.b.container {
  padding: 1.8rem 1.8rem 1.8rem 1.8rem; }

.xb.container {
  padding: 2.8rem 2.8rem 2.8rem 2.8rem; }

.container.feed {
  padding-right: 0; }

.container.vertical {
  padding-left: 0;
  padding-right: 0; }

.container.horizontal {
  padding-top: 0;
  padding-bottom: 0; }

.container.top {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0; }

.container.right {
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0; }

.container.bottom {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; }

.container.right {
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0; }

.form-group {
  width: 100%;
  margin-bottom: 1rem; }

.form-group > * {
  float: left;
  margin-right: 12px; }

input, select {
  font-size: 1rem; }

figure {
  width: 100%;
  margin: 0; }

iframe, img, video {
  width: 100%; }

html {
  font-size: 100%; }
  @media (max-width: 768px) {
    html {
      font-size: 80%; } }

body {
  font-family: "AC1", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

/*
  Text styles
  Mixin defined in addition to core style
*/
h1, hr::after, h2, h3, h4, h5, h6 {
  font-weight: normal; }

h1, hr::after {
  letter-spacing: -0.016rem;
  font-size: 27px;
  line-height: 36px;
  margin-bottom: 6px; }
  @media (max-width: 768px) {
    h1, hr::after {
      font-size: 18px;
      line-height: 24px; } }

p, h4, .p, li {
  font-size: 1.14rem;
  line-height: 1.4;
  margin-bottom: 26px; }

p + ul:not(.no-bullet) {
  margin-top: -24px; }

ul:not(.no-bullet) {
  padding-left: 1.3rem;
  margin-top: 0;
  margin-bottom: 26px; }

li {
  margin: 0; }

h4 {
  margin-bottom: 12px; }

h5 {
  font-size: 0.84rem;
  line-height: 1.5; }

a, .link {
  text-decoration: none;
  cursor: pointer;
  font-weight: normal; }

/*
  Link styles
*/
p a {
  word-break: break-all; }

p a,
li a {
  color: #0101DF; }

a.link {
  color: #000000; }

a:hover, .link:hover {
  color: inherit; }

strong, b {
  font-weight: normal; }

@media (min-width: 769px) {
  .page.document {
    width: 100%;
    min-height: 100vh; }
  .main-inner.document {
    height: 100%;
    padding-right: 0;
    width: 75%;
    overflow: hidden; } }

.articles .article {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative; }
  .articles .article h1.bullet, .articles .article hr.bullet::after {
    position: absolute;
    top: 0;
    left: -1.2rem; }
  .articles .article div.details {
    flex-grow: 1; }
  .articles .article div.thumb {
    flex-grow: 0;
    flex-shrink: 0;
    width: 153px;
    height: 162px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
    @media (max-width: 768px) {
      .articles .article div.thumb {
        width: 78px;
        height: 80px; } }

body {
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #ffffff; }

body.loading {
  cursor: progress !important; }
  body.loading * {
    cursor: progress !important; }

@media (max-width: 768px) {
  .desktop {
    display: none !important; } }

@media (min-width: 1025px) {
  .tablet {
    display: none !important; } }

@media (min-width: 768px) {
  .mobile {
    display: none !important; } }

@media (min-width: 769px) {
  body {
    overflow-x: hidden;
    min-height: 100vh; } }

figure {
  padding-bottom: 24px; }
  figure figcaption {
    padding: 6px 0 0 0; }
    figure figcaption h1, figure figcaption hr::after, figure figcaption h2, figure figcaption h3, figure figcaption h4, figure figcaption h5, figure figcaption h6, figure figcaption p {
      font-size: 0.84rem;
      line-height: 1.5; }
    figure figcaption * {
      margin: 0; }

@font-face {
  font-family: "AC1";
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  src: url("/assets/fonts/AllCon-Regular.woff2") format("woff2"), url("/assets/fonts/AllCon-Regular.woff") format("woff"); }

@font-face {
  font-family: "AC1-Dots";
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  src: url("/assets/fonts/AC1Dots-Bold.woff2") format("woff2"), url("/assets/fonts/AC1Dots-Bold.woff") format("woff"); }

form .form-group {
  margin: 0; }

form button, form input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  padding: 0; }

form input[type="email"] {
  width: 100%;
  max-width: 230px; }

form input {
  font-size: 1.14rem;
  line-height: 1.4;
  margin-bottom: 26px;
  border-bottom: 1.5px solid #000000;
  background-color: transparent; }

form button {
  font-size: 1.14rem;
  line-height: 1.4;
  margin-bottom: 26px; }

hr {
  width: 100%;
  position: relative;
  overflow: visible;
  height: 24px;
  border: none;
  margin: 0; }

hr::after {
  position: absolute;
  color: #000000;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  word-break: break-all;
  content: "••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••";
  height: 100%;
  overflow: hidden;
  margin-left: -0.076em; }

@media (min-width: 769px) {
  hr {
    width: 100%;
    position: relative;
    overflow: visible;
    height: 36px;
    border: none;
    margin: 0; } }

input {
  font-family: "AC1", Arial, Helvetica, sans-serif;
  border: none;
  border-bottom: 2px solid #000000; }

.library-list .hidden {
  display: none; }

.document__image {
  max-width: 60%;
  padding: 12px 0 22px 0;
  margin: 0 auto;
  display: block; }
  .document__image img {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px; }

@media (min-width: 700px) and (max-width: 768px) {
  .document__image {
    max-width: 280px;
    padding: 12px 0 22px 0;
    margin: 0; } }

@media (min-width: 1025px) {
  .document {
    padding: 0; }
  .pdf-viewer {
    height: 100vh; } }

main .about img {
  max-width: 207px; }

.main-inner {
  width: 100%;
  min-height: 100vh;
  margin-left: 0;
  padding-right: 0;
  padding-top: 40px; }
  .main-inner .main-container {
    padding-left: 2rem; }

@media (min-width: 769px) {
  main {
    width: 100%;
    height: 100%;
    min-height: 100vh; }
  .main-inner {
    width: 100%;
    padding-left: 260px;
    padding-right: 0;
    padding-top: 0;
    height: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
    .main-inner .main-container {
      padding-left: 2rem; } }

@media (min-width: 969px) {
  .main-inner {
    padding-right: 12%; } }

@media (min-width: 1025px) {
  .main-inner {
    width: 50%;
    padding-left: 0;
    margin-left: 25%;
    padding-right: 25%;
    box-sizing: content-box;
    -moz-box-sizing: content-box; } }

#menu-main {
  position: fixed;
  width: 260px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 7;
  border-right: 8px solid #000000;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  overflow: auto; }
  #menu-main::-webkit-scrollbar {
    display: none; }
  #menu-main a span.not-current {
    display: block; }
  #menu-main a span.current {
    display: none; }
  #menu-main a.current span.not-current {
    display: none; }
  #menu-main a.current span.current {
    display: block; }

#menu-button {
  position: fixed;
  right: 0;
  top: 0;
  padding: 24px;
  position: fixed;
  z-index: 6; }
  @media (min-width: 769px) {
    #menu-button {
      display: none; } }

#menu-header {
  position: fixed;
  left: 0;
  top: 0;
  padding: 24px;
  position: fixed;
  z-index: 5; }
  @media (min-width: 769px) {
    #menu-header {
      display: none; } }

#menu-button .menu-button__open {
  display: none; }

@media (max-width: 768px) {
  body.menu-open #menu-main {
    transform: translateX(0%); }
  body.menu-open #menu-button .menu-button__open {
    display: block; }
  body.menu-open #menu-button .menu-button__closed {
    display: none; }
  #menu-main {
    position: fixed;
    width: 60%;
    height: 100%;
    left: 0;
    top: 0;
    border-right: 3px solid #000000;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    overflow: auto;
    background-color: #ffffff;
    z-index: 8;
    transform: translateX(-100%);
    transition: transform 0.3s ease; }
    #menu-main::-webkit-scrollbar {
      display: none; }
    #menu-main.menu-open {
      transform: translateX(0%); } }

@media (min-width: 700px) and (max-width: 768px) {
  #menu-main {
    width: 35%; } }

@media (min-width: 769px) {
  body.home #menu-main {
    display: none; }
  body.home-menu #menu-main {
    border: none; }
  .menu__library__search {
    margin-right: 28px; } }

@media (min-width: 1024px) {
  #menu-main {
    width: 25%; } }

.news__item {
  padding-bottom: 30px; }
  .news__item .inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start; }
    .news__item .inner div.details {
      flex-grow: 1; }
  .news__item__attachments__attachment {
    display: inline-block;
    background-color: #eeeeee;
    padding: 0.55rem 0.8rem;
    margin-right: 0.4rem;
    margin-bottom: 0.6rem; }
    .news__item__attachments__attachment p {
      margin-bottom: 0; }
  .news__item__images {
    margin-top: 10px; }

@media (min-width: 600px) {
  .news__item__details {
    display: flex;
    flex-direction: row;
    justify-content: space-between; } }

#overlay-title {
  position: fixed;
  width: 75%;
  top: 50%;
  left: 25%;
  transform: translateX(0%) translateY(-50%);
  font-family: 'AC1-Dots';
  font-size: 72px;
  text-align: center;
  z-index: 5;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; }
  @media (max-width: 768px) {
    #overlay-title {
      display: none; } }

#title-card,
.title-card {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  background-color: #ffffff;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer; }
  #title-card .title-card__text,
  .title-card .title-card__text {
    position: absolute;
    padding: 2px 26px;
    font-size: calc(100vw * 0.1);
    font-size: -mox-calc(100vw * 0.1);
    font-size: -webkit-calc(100vw * 0.1); }
    #title-card .title-card__text--all,
    .title-card .title-card__text--all {
      top: 0;
      left: 0; }
    #title-card .title-card__text--con,
    .title-card .title-card__text--con {
      top: 0;
      left: 50%; }
    #title-card .title-card__text--fer,
    .title-card .title-card__text--fer {
      top: 50%;
      left: 0; }
    #title-card .title-card__text--ence,
    .title-card .title-card__text--ence {
      top: 50%;
      left: 50%; }
  #title-card .title-card__line,
  .title-card .title-card__line {
    position: absolute;
    background-color: #000000; }
    #title-card .title-card__line--vertical,
    .title-card .title-card__line--vertical {
      height: 100%;
      width: 8px;
      left: 50%;
      transform: translateX(-50%);
      transition: left 0.4s; }
    #title-card .title-card__line--horizontal,
    .title-card .title-card__line--horizontal {
      height: 8px;
      width: 100%;
      top: 50%;
      transform: translateY(-50%); }
  #title-card .title-card__svg,
  .title-card .title-card__svg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    #title-card .title-card__svg circle,
    .title-card .title-card__svg circle {
      background-color: #000000; }

#title-card.menu,
.title-card.menu {
  cursor: default; }
  #title-card.menu .title-card__text,
  .title-card.menu .title-card__text {
    opacity: 0; }
  #title-card.menu .title-card__line--horizontal,
  .title-card.menu .title-card__line--horizontal {
    display: none; }
  #title-card.menu circle,
  .title-card.menu circle {
    display: none; }
  #title-card.menu .title-card__dot--most-right,
  .title-card.menu .title-card__dot--most-right {
    display: block; }

@media (max-width: 768px) {
  #title-card .title-card__text,
  .title-card .title-card__text {
    padding: 12px 12px; }
  #title-card .title-card__line--vertical,
  .title-card .title-card__line--vertical {
    width: 3px; }
  #title-card .title-card__line--horizontal,
  .title-card .title-card__line--horizontal {
    height: 3px; } }

.pdf-viewer {
  display: none; }

@media (min-width: 768px) {
  .pdf-viewer {
    display: block;
    min-height: 100%; }
    .pdf-viewer iframe {
      height: 100%;
      width: 100%;
      border: none; } }

svg.static-dot {
  position: fixed;
  width: 25%;
  height: 100%;
  top: 0;
  right: 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
  background-color: transparent; }
  @media (max-width: 768px) {
    svg.static-dot {
      display: none; } }

.rotating-images {
  position: fixed;
  width: 75%;
  height: 100%;
  left: 30%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; }
  .rotating-images__image {
    display: none;
    position: absolute;
    max-width: 40%; }

@media (max-width: 700px) {
  .rotating-images {
    display: none; } }

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