@font-face {
    font-family: 'Akrobat';
    src: url('../fonts/Akrobat-Regular.woff2') format('woff2'),
         url('../fonts/Akrobat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
*, :after, :before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased!important;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  /*scroll-behavior: smooth;*/
}
body {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Metropolis', sans-serif;
  background-color: #1B1D1F;
  color: #FFFFFF;
}
.container,
.content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.smooth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.shadow {
  -moz-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.39);
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.39);
}
.wrapper {
  width: 100%;
  padding: 0 60px;
}
@media screen and (max-width: 900px) {
  .wrapper {
    padding: 0 20px;
  }
}
.list {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
.link {
  position: relative;
  color: #206BFF;
  text-decoration: none;
}
.link:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #206BFF;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.link:hover:after {
  width: 100%;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  z-index: 555;
}
.header-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;

}
.header a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 22px;
}
.header .nav-list {

}

.logo img {
  height: 20px;
  width: 108px;

}
.logo .breadcrumb li {
  margin: 0;
  padding: 0;
}
.logo .breadcrumb span {
  font-size: 28px;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .logo img {
    height: 20px;
    width: 120px;
  }
  .header a {
    font-size: 20px;
  }
}
/* Nav */
.nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nav li {
  padding: 0;
  margin: 0;
}
/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 70px;
  font-size: 14px;
}
.footer-container,
.footer-content {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.footer .list li {
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .footer {
    font-size: 14px;
  }
}
/* Aligns */
.align-horizontal-ceter .article-content {
  -webkit-justify-content: center;
  justify-content: center;
}
.align-horizontal-center .article-content {
  -webkit-justify-content: center;
  justify-content: center;
}
.align-horizontal-left .article-content {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.align-horizontal-right .article-content {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.align-vertical-ceter .article-content {
  -webkit-jalign-items: center;
  align-items: center;
}
.align-vertical-top .article-content {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.align-vertical-bottom .article-content {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/* Width */

.width-33 {
  width: 33vw;
}
.width-50 {
  width: 50vw;
}
.width-66 {
  width: 66vw;
}
.width-100 {
  width: 100vw;
}
@media screen and (max-width: 900px) {
  .width-33,
  .width-50,
  .width-66,
  .width-100 {
    width: 100%;
  }
}
/* Main */
.main {
  position: relative;
  display: block;
  width: 100vw;
  background-color: #1B1D1F;
  color: #FFFFFF;
  overflow: hidden;
}

.main .header-wrapper {
  display: block;
  max-width: 800px;
  padding: 160px 0 20px;
  margin: 0 auto;
  position: relative;
}
.main-container {
  background-color: #1B1D1F;
  color: #FFFFFF;
}
.main-container.empty {
  height:100vh;
}
.main-overlay {
  background: #000;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 900px){
  .main {
    height: 100vh;
    overflow: auto;
  }
}

/* Section */
.section {
  position: relative;
  display: block;
  overflow: hidden;
}
.section-container {
  margin: 0 auto;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.section-content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-header {
  max-width: 900px;
  margin: 0 auto;
  margin: 0 auto;
  padding: 40px;
}
.section-footer {
  position: relative;
  display: block;
}
/* Article */
.article {
  position: relative;
}
.article .article-content, .article .article-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;

}
@media screen and (max-width: 900px){
  .article-list {

    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;

  }
}
/* Images */
.image-element {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cover .image-element img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image-align-center .image-element img {
  top: 50%;
  left: 50%;
  -webkit-ransform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.image-align-top .image-element img {
  top: 0;
  left: 50%;
  -webkit-ransform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.image-align-bottom .image-element img {
  top: 100%;
  left: 50%;
  -webkit-ransform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
/* Text */
.title-element h1,
.title-element h2 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 20px;
  font-weight: normal;
}
.text-default .text-element p {
  font-size: 18px;
}
.text-default .title-element h3 {
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: -0.8px;
  margin-bottom: 40px;
}
.text-default .description-element h6 {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
}
.text-small .text-element p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.text-small .title-element h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.text-small .title-element h2 {

}
.text-large .text-element p {
  font-size: 22px;
  line-height: 1.6;
}
.text-large .title-element h3 {
  font-size: 48px;
  margin-bottom: 40px;
}
.text-large .title-element h2 {

}
@media screen and (max-width: 500px){
  .title-element h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .text-default .text-element p {
    font-size: 16px;
  }
  .text-default .title-element h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .text-default .description-element h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .text-default .article-image,
  .text-large .article-image,
  .text-small .article-image {
    margin-bottom: 10px;
  }
}
/* Rows */
.row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -20px;
}
.col {
  padding: 20px;
}
.row .col-1 {
  width: 100%;
}
.row .col-2 {
  width: 50%;
}
.row .col-3 {
  width: 33.33333%;
}
.row .col-4 {
  width: 25%;
}
.row .col-5 {
  width: 20%;
}
/* Column */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-1 .row {
  width: 100%;
}
.col-2 .row {
  width: 50%;
}
.col-3 .row {
  width: 33.33333%;
}
.col-4 .row {
  width: 25%;
}
.col-5 .row {
  width: 20%;
}
@media only screen and (min-width: 0px) and (max-width: 600px) {
  .col-2 .row,
  .col-3 .row,
  .col-4 .row,
  .col-5 .row {
    width: 100%;
  }
}
/* Error */
.error {
  position: relative;
  display: block;
  padding: 160px 0 120px;
}
.error-container {
  width: 100%;
  max-width: 50vw;
  padding: 0;
  margin: 0 auto;
  -webkit-align-items: stretch;
  align-items: stretch;

}
.error-content {
  width: 66.6666%;
}
.error-content h1 {
  font-size: 15vw;
  line-height: 1.3;
  font-weight: normal;
}
.error-content h3 {
  font-size: 4vw;
  line-height: 1;
  font-weight: normal;
}
.error-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  width: 33.3333%;
}
/* Animations */
.page-enter-active,
.page-leave-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
}
.page-enter-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.page-enter {

  -webkit-transform: translateX(0%) translateY(100vh);
          transform: translateX(0%) translateY(100vh);
}
.page-leave-to {
  -webkit-transform: translateX(0%) translateY(-50vh);
          transform: translateX(0%) translateY(-50vh);
}
.page-leave-active .main-overlay,
.page-leave-active .item,
.page-enter-active .item  {
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
}
.page-leave-to .main-overlay {
  opacity: 0.8;
  visibility: visible;
}
.page-enter .item,
.page-leave-to .item {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  opacity: 0.5;
}
/* cookies */
.Cookie.Cookie--default {
  position: fixed;
  display: block;
  bottom: calc(4.16666667vw - 30px);
  right: 8.33333333vw;
  left: auto;
  width: 206px;
  background: #FFFFFF;
  color: #000;
  z-index: 400;
  text-align: center;
  font-size: 16px;
  padding: 35px 27px 25px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}
.Cookie.Cookie--default .Cookie__content {
  margin-bottom: 15px;
}
.Cookie a {
  color: #000000;
}

/* Auth */
.auth {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  color: #000000;
}
.auth-container {

}
.auth-content {
  position: absolute;
  top: 50%;
  right: 15vw;
  width: 100%;
  max-width: 500px;
  -webkit-transform: translateX(0%) translateY(-50%);
          transform: translateX(0%) translateY(-50%);
}
.auth-overlay img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.auth-form {
  padding: 50px;
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

}
.cursor {
  pointer-events: none;
  touch-action: none;
  z-index: 1000;
  opacity: 1;
  transition: opacity .3s ease;

}
.cursor__circle {
  position: fixed;
  cursor: none;
  top: 0;
  left: 0;
  transform: translate(-100%, -100%);
  transition: width .6s ease, height .6s ease, opacity .3s ease;
  z-index: 5555555555;
}
.c__circle {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  background: #000000;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all .6s ease;
}
.c__icons i {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
}
.c__icons i.prev {
  left: -15px;
}
.c__icons i.next {
  left: 15px;
}
.cursor-enter-active,
.cursor-leave-active {
  transition: opacity .5s;
  transition: opacity .5s;
}
.cursor-enter ,
.cursor-leave-to {
  opacity: 0;
}
.content-move {
  cursor: -webkit-grab;
  cursor: grab;
}

.cookies-alert {
  position: fixed;
  display: block;
  bottom: calc(4.16666667vw - 30px);
  right: 8.33333333vw;
  left: auto;
  width: 220px;
  background: #FFFFFF;
  color: #000;
  z-index: 400;
  text-align: center;
  font-size: 16px;
  padding: 35px 27px 25px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}
.cookies-alert p {
  margin-bottom: 15px;
}
.cookies-alert-close {
  position: absolute;
  right: 0;
  top: 0px;
  width: 32px;
  height: 32px;
  opacity: 0.5;
  cursor: pointer;
}
.cookies-alert-close:hover {
  opacity: 1;
}
.cookies-alert-close:before, .cookies-alert-close:after {
  position: absolute;
  left: 15px;
  top: 8px;
  content: ' ';
  height: 15px;
  width: 2px;
  background-color: #333;
}
.cookies-alert-close:before {
  transform: rotate(45deg);
}
.cookies-alert-close:after {
  transform: rotate(-45deg);
}
