@keyframes bodyslide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-20vw, 0);
  }
}
@keyframes menuopen {
  0% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 80% 10%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 80% 10%, 0% 0%);
  }
  /*50%
  *  clip-path: polygon(0% 0%, 97% 0%, 80% 40%, 20% 30%)
  *  //background: orange */
  /*75%
  *  clip-path: polygon(0% 0%, 97% 0%, 80% 90%, 20% 80%)
  *  //background: cornflowerblue */
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes fadein {
  0% {
    background-color: red;
  }
  30% {
    background-color: lime;
  }
  100% {
    background-color: navy;
  }
}
@keyframes slideoutandin {
  0% {
    transform-origin: right;
    transform: scaleX(0%);
  }
  40% {
    transform: scaleX(0%);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform: scaleX(100%);
  }
}
.boxed-block, .text-details p, .full-block p, .half-block__text p, ul, table td, table th {
  font-size: 1.16rem;
  line-height: 1.55em;
  letter-spacing: 0.01em;
}

/*------------------------------*/
/*           BASIC CSS          */
/*------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

body, html {
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #030b18;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 0.7em;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.25);
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.35);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 1320px) {
  body, html {
    font-size: 0.7rem;
  }
}
@media only screen and (min-width: 1700px) {
  body, html {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 1319px) {
  body, html {
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 1199px) {
  body, html {
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 767px) {
  body, html {
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 575px) {
  body, html {
    font-size: 0.63rem;
  }
}

@-moz-document url-prefix() {}
main {
  transition: transform 1s ease;
  trasform: translate(0, 0);
}

main.is-menu-open {
  transform: translate(-20rem, 0);
}

h1, h2, h3, h4, h5 {
  font-family: "Scada", sans-serif;
  font-weight: 700;
  line-height: 1.3em;
}

h2 {
  font-size: 2.05rem;
}

.container-fluid, .container {
  width: 100%;
  padding: 1rem 2rem;
}

.container {
  width: calc(90vw + 2rem);
  max-width: calc(1445px + 2rem);
  margin: 0 auto;
}
.container--grid {
  display: grid;
}

.btn {
  display: inline-block;
  background-color: transparent;
  padding: 1rem 1.7rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn--primary {
  background-color: #000;
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.35);
  color: #fff !important;
  border-bottom: 0.25rem solid #000;
}
.btn--primary:hover {
  background-color: #fff;
  color: #000 !important;
  transform: scale(1.05);
}
.btn--secondary {
  border: none;
  position: relative;
  padding: 0.5rem;
}
.btn--secondary:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.1rem;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  bottom: -0.2rem;
  left: 0;
  background-color: #fff;
  transform: scaleX(1);
}
.btn--secondary:hover:after, .btn--secondary.active:after {
  transform: scaleX(0.7);
}

.clearfix {
  clear: both;
}

.svg-hidden {
  display: none;
}

img {
  max-width: 100%;
}

a {
  color: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: auto;
}
table td, table th {
  padding: 0.8rem;
}
table td a, table th a {
  font-weight: 600;
}
table td {
  border: 0.3rem solid #fff;
  margin: 0;
}
table td.no-border {
  border: none;
}
@media only screen and (max-width: 575px) {
  table {
    display: block;
  }
}

.img-progressive-holder {
  position: relative;
  width: 100%;
  height: 100%;
}
.img-progressive-holder--absolute {
  position: absolute;
}
.img-progressive-holder img.thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: url(#sharpBlur);
}

.row {
  display: flex;
  align-items: center;
  justify-items: center;
  width: 100%;
}
.row__col {
  flex: 1;
  text-align: left;
}
.row__col--40 {
  width: 40%;
}
.row__col--50 {
  width: 50%;
}
.row__col--60 {
  width: 60%;
}
.row--6-cols {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.8rem;
}
.row--text-left .row__col {
  text-align: left !important;
}
@media only screen and (max-width: 767px) {
  .row--6-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .row {
    flex-direction: column;
  }
  .row__col {
    width: 100%;
    text-align: center;
  }
  .row--6-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 476px) {
  .row--6-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.window-size {
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  color: black;
  font-weight: bold;
  z-index: 100;
}
.window-size span {
  display: none;
}
@media only screen and (min-width: 1700px) {
  .window-size .xxxl {
    display: block;
  }
}
@media only screen and (max-width: 1319px) {
  .window-size .xxl {
    display: block;
  }
}
@media only screen and (max-width: 1199px) {
  .window-size .xl {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .window-size .md {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .window-size .sm {
    display: block;
  }
}

ul {
  list-style-type: none;
  padding: 0.7em 0 0 0;
}
ul li {
  margin-bottom: 0.6em;
}

.mt-0 {
  margin-top: 0 !important;
}

.site-header {
  position: relative;
  z-index: 10;
  background-color: #030b18;
}
.site-header:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  background-color: #fff;
  height: 1rem;
}
.site-header .container {
  margin-bottom: 0;
  padding-bottom: 0;
}
.site-header__row-1 {
  margin: 1.1rem 0 1rem 0;
  display: grid;
  grid-template-columns: 2fr 10fr;
}
.site-header__row-2 {
  margin: 1.65rem 0 0 0;
  padding-bottom: 2.1rem;
  position: relative;
  display: grid;
  grid-template-columns: 4fr 8fr;
  border-bottom: 0.2rem solid #fff;
}
.site-header__axio {
  color: #fff;
  font-size: 1rem;
  align-self: flex-start;
}
.site-header__axio a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.site-header__axio a:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  bottom: -0.1rem;
  background-color: #fff;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(1);
  transform-origin: center;
}
.site-header__axio a:hover:after, .site-header__axio a.active:after {
  transform: scaleX(0.5);
}
.site-header__logo {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  font-size: 1.44rem;
  color: #fff;
  text-decoration: none;
  align-self: center;
}
.site-header__nav {
  display: flex;
  justify-content: flex-end;
}
.site-header__nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.site-header__nav ul li {
  display: inline-block;
  margin-left: 3.21rem;
  margin-bottom: 0;
}
.site-header__nav ul li:first-child {
  margin: 0;
}
.site-header__nav ul li.separator {
  border-left: 1px solid #8c8c8c;
  padding-left: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  max-width: 8.2rem;
  line-height: 1.1em;
  color: #8c8c8c !important;
}
.site-header__nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  position: relative;
}
.site-header__nav ul li a:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  bottom: -0.2rem;
  background-color: #fff;
  transform: scaleX(0);
  height: 0.1rem;
}
.site-header__nav ul li a:hover:after, .site-header__nav ul li a.active:after {
  transform: scaleX(1);
}
.site-header__nav ul li.lessimportant a {
  color: #8c8c8c;
}
.site-header__nav--primary {
  font-weight: 700;
}
.site-header__nav--primary ul li a {
  font-weight: 700;
  font-size: 1.26rem;
}
.site-header__nav--secondary {
  font-size: 1.05rem;
}
.site-header__nav--secondary ul li a {
  font-size: 1.05rem;
}
.site-header__nav--secondary ul li {
  margin-left: 3.92rem;
}
.site-header .menu-btn {
  cursor: pointer;
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  align-items: center;
  max-width: 5.5rem;
  z-index: 1000;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  top: 0;
  left: 0;
}
.site-header .menu-btn .menu-btn__text {
  color: #fff;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.site-header .menu-btn .menu-btn__lines span {
  display: block;
  width: 2.3rem;
  height: 0.27rem;
  margin-bottom: 0.405rem;
  background-color: #F7FFF7;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: rotate(0deg);
}
.site-header .menu-btn .menu-btn__lines span:nth-child(1) {
  transform: scaleX(0.75);
  transform-origin: left center;
}
.site-header .menu-btn .menu-btn__lines span:nth-child(2) {
  position: relative;
}
.site-header .menu-btn .menu-btn__lines span:nth-child(2)::after {
  position: absolute;
  top: -1.015rem;
  left: 1.015rem;
  display: block;
  content: "";
  width: 0.27rem;
  height: 2.3rem;
  background-color: #fff;
  transform: scaleY(0);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.site-header .menu-btn .menu-btn__lines span:nth-child(3) {
  transform-origin: left center;
  transform: scaleX(0.5);
  margin-bottom: 0;
}
.site-header .menu-btn:hover .menu-btn__lines span {
  transition-delay: 0;
  transform: scaleX(1);
}
.site-header .menu-btn.menu--open {
  z-index: 999;
  position: fixed;
  top: 1rem;
  left: 5vw;
}
.site-header .menu-btn.menu--open .menu-btn__text {
  color: #030b18 !important;
}
.site-header .menu-btn.menu--open .menu-btn__lines span {
  background-color: #030b18 !important;
  transition-delay: 0.1s;
}
.site-header .menu-btn.menu--open .menu-btn__lines span:first-child {
  transform: scaleX(0);
  transition-delay: 0.1s;
}
.site-header .menu-btn.menu--open .menu-btn__lines span:nth-child(2) {
  transform: rotate(-45deg);
  transition-delay: 0.4s;
}
.site-header .menu-btn.menu--open .menu-btn__lines span:nth-child(2)::after {
  transform: scaleY(1);
  background-color: #030b18;
}
.site-header .menu-btn.menu--open .menu-btn__lines span:last-child {
  transform: scaleX(0);
  transition-delay: 0.1s;
}
@media only screen and (max-width: 1199px) {
  .site-header__nav ul li {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 909px) {
  .site-header .site-header__row-1 {
    margin: 0;
  }
  .site-header .site-header__row-2 {
    grid-template-columns: auto;
    margin-top: 1rem;
  }
  .site-header .site-header__nav {
    display: none;
  }
  .site-header .site-header__axio {
    display: none;
  }
  .site-header .site-header__logo {
    text-align: right;
    max-width: 14rem;
    justify-self: flex-end;
  }
  .site-header .menu-btn {
    margin-top: 2.3rem;
    display: grid;
    float: left;
  }
}
.site-header .mobile-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0);
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background-color: #fff;
  z-index: 900;
  text-align: center;
}
.site-header .mobile-menu--open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.site-header .mobile-menu hr {
  max-width: 8rem;
  margin: 2rem auto;
  display: block;
  color: #113f89;
  border-bottom: none;
}
.site-header .mobile-menu nav {
  display: block;
  width: 100vw;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.site-header .mobile-menu nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  overflow-y: auto;
}
.site-header .mobile-menu nav ul li {
  color: #030b18;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.site-header .mobile-menu nav ul li small {
  display: block;
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 1.4rem;
}
.site-header .mobile-menu nav ul li a {
  color: #030b18;
  text-decoration: none;
  display: inline-block;
  position: relative;
  min-height: 2.5rem;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
}
.site-header .mobile-menu nav ul li a:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  bottom: 0;
  background-color: #030b18;
  width: 100%;
  transform: scaleX(0);
  height: 0.1rem;
}
.site-header .mobile-menu nav ul li a:hover:after, .site-header .mobile-menu nav ul li a.active:after {
  transform: scaleX(1);
}

.bg-block {
  position: relative;
  z-index: 1;
}
.bg-block__holder:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.bg-block__holder img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: url("#sharpBlur");
}
.bg-block--light .bg-block__holder:after {
  background-color: rgba(255, 255, 255, 0.15);
}
.bg-block--extra-light .bg-block__holder:after {
  background-color: rgba(255, 255, 255, 0.25);
}

.hero {
  color: #fff;
  padding-bottom: 2rem;
  padding-top: 5.6rem;
  margin-bottom: 3rem;
  z-index: 2;
  position: relative;
  background-size: cover;
  background-position: top;
}
.hero.participace {
  background-image: url(../img/bg/participace.jpg);
}
.hero.eia {
  background-image: url(../img/bg/eia.jpg);
}
.hero.projekt {
  background-image: url(../img/bg/projekt.jpg);
}
.hero.analyza {
  background-image: url(../img/bg/analyza.jpg);
}
.hero.strategie {
  background-image: url(../img/bg/strategie.jpg);
}
.hero.vize {
  background-image: url(../img/bg/vize.jpg);
}
.hero h1 {
  font-size: 7rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.85rem;
  line-height: 1.3em;
  text-align: left;
  margin-top: 0.8rem;
  max-width: 42rem;
}
.hero h2 a {
  background-image: linear-gradient(to right, #030b18 0, #030b18 100%);
  background-position: 0 100%;
  background-size: 100% 0.1em;
  background-position: bottom center;
  background-repeat: no-repeat;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.hero h2 a:hover {
  background-size: 90% 0.1em;
}
@media only screen and (max-width: 767px) {
  .hero {
    margin-bottom: 5rem;
  }
  .hero h1 {
    font-size: 5rem;
    margin-top: 0;
  }
  .hero h2 {
    font-size: 1.5rem;
    text-align: left;
  }
}

.half-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: left;
  overflow: hidden;
}
.half-block__photo, .half-block__text {
  flex: 1;
  align-self: flex-start;
}
.half-block__photo--v-center, .half-block__text--v-center {
  align-self: center;
}
.half-block__photo {
  max-width: 41%;
  margin-right: 3%;
}
.half-block__photo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.half-block__text {
  max-width: 55%;
}
.half-block__text:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  background-color: #fff;
}
.half-block__text h2 {
  font-size: 2.2rem;
}
.half-block__text h3 {
  font-size: 1.9rem;
  margin: 0.68em 0;
}
.half-block--inverse {
  flex-direction: row-reverse;
}
.half-block--inverse .half-block__photo {
  float: right;
  margin-left: 3%;
}
.half-block--inverse .half-block__text {
  float: left;
}
.half-block--no-line .half-block__text:before {
  display: none;
}
.half-block--space-around {
  margin: 2.5rem 0;
}
.half-block .clearfix {
  margin-top: 0.2rem;
}
@media only screen and (max-width: 575px) {
  .half-block {
    display: block;
  }
  .half-block__photo, .half-block__text {
    display: block;
    max-width: 100%;
    clear: both;
  }
  .half-block__photo {
    margin: 0 auto !important;
  }
  .half-block__text {
    padding-top: 2rem;
  }
}

.full-block {
  display: block;
  width: 100%;
  margin-bottom: 9.2rem;
}
.full-block:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  background-color: #fff;
}
.full-block h2 {
  font-size: 3.1rem;
  margin-top: 9.2rem;
  margin-bottom: 4.5rem;
}
.full-block h3 {
  font-size: 1.8rem;
  margin: 0.68em 0;
}
.full-block h4 {
  font-size: 1.5rem;
}
.full-block p {
  margin: 2rem 0;
}
.full-block--margin-sm {
  margin-bottom: 2.2rem;
}

.text-details {
  text-align: center;
}
.text-details p {
  text-align: left;
  transform-origin: top;
  overflow: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.text-details--hidden p {
  opacity: 0.4;
  max-height: 0;
  transform: scaleY(0);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  margin: 0;
}
.text-details--visible p {
  opacity: 1;
  height: auto;
  max-height: 1000vh;
  transform: scaleY(1);
}
.text-details--centered {
  text-align: center;
}
.text-details--centered p {
  text-align: center;
}
.text-details--space-after {
  margin-bottom: 9.2rem;
}
.half-block ~ .text-details .btn {
  margin-top: 1rem;
}
.half-block--inverse ~ .text-details .btn {
  margin-top: 1rem;
}

.boxed-block {
  border: 0.3rem solid #fff;
  padding: 3%;
}

.site-footer {
  text-align: right;
  font-size: 0.9rem;
  color: #e6e6e6;
}
.site-footer a {
  color: #e6e6e6;
  text-decoration: none;
  position: relative;
}
.site-footer a:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  background-color: #e6e6e6;
  transform: scaleX(0);
  height: 0.07em;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.site-footer a:hover:before {
  transform: scaleX(1);
}
.site-footer .madeby {
  padding-top: 1rem;
}
.site-footer:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 0.3rem;
  height: 1rem;
  background-color: #fff;
}

body.theme-vize {
  background-color: #220114;
}

body.theme-projekt {
  background-color: #e8e8e8;
  color: #000;
  min-height: 100vh;
}
body.theme-projekt::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.25);
}
body.theme-projekt::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.35);
}
body.theme-projekt .site-header {
  background-color: #e8e8e8;
}
body.theme-projekt .site-header--light {
  background-color: #fff;
}
body.theme-projekt .site-header:before {
  background-color: #000;
}
body.theme-projekt .site-header__row-2 {
  border-color: #000;
}
body.theme-projekt .site-header__axio, body.theme-projekt .site-header__logo, body.theme-projekt .site-header__nav ul li {
  color: #000;
}
body.theme-projekt .site-header__axio.separator, body.theme-projekt .site-header__logo.separator, body.theme-projekt .site-header__nav ul li.separator {
  border-color: #4d4d4d;
  color: #4d4d4d !important;
}
body.theme-projekt .site-header__axio a, body.theme-projekt .site-header__logo a, body.theme-projekt .site-header__nav ul li a {
  color: #000;
}
body.theme-projekt .site-header__axio a:after, body.theme-projekt .site-header__logo a:after, body.theme-projekt .site-header__nav ul li a:after {
  background-color: #000;
}
body.theme-projekt .site-header__axio.lessimportant a, body.theme-projekt .site-header__logo.lessimportant a, body.theme-projekt .site-header__nav ul li.lessimportant a {
  color: #4d4d4d;
}
body.theme-projekt .site-header__row-2:after {
  background-color: #000;
}
body.theme-projekt .menu-btn__text {
  color: #000 !important;
}
body.theme-projekt .menu-btn__lines span {
  background-color: #000 !important;
}
body.theme-projekt .hero {
  color: #000;
}
body.theme-projekt .half-block__text:before, body.theme-projekt .full-block:before {
  background-color: #000;
}
body.theme-projekt .full-block h2 {
  margin: 3rem 0 -0.5rem 0;
}
body.theme-projekt .full-block h3 {
  margin: 5rem 0 1rem 0;
}
body.theme-projekt .boxed-block {
  border-color: #000;
}
body.theme-projekt .btn--secondary {
  color: #000;
}
body.theme-projekt .btn--secondary:after {
  background-color: #000;
}
body.theme-projekt .site-footer:before {
  background-color: #000;
}
body.theme-projekt table td {
  border-color: #000;
}
body.theme-projekt table td, body.theme-projekt table th {
  color: #000;
}
body.theme-projekt table td a, body.theme-projekt table th a {
  color: #000;
}
body.theme-projekt a {
  color: #000;
  color: #000;
}
body.theme-projekt .site-footer {
  color: black;
}
body.theme-projekt .site-footer a {
  color: black;
}
body.theme-projekt .site-footer a:before {
  background-color: black;
}

@media only screen and (max-width: 575px) {
  body.theme-homepage .hero h1 {
    font-size: 3.8rem;
  }
}

/* ----------------------------------------------------------- */
/* == tingle v0.13.2 */
/* ----------------------------------------------------------- */
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.tingle-modal * {
  box-sizing: border-box;
}

/* confirm and alerts
 * *-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
 * *-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 1000;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: none;
  background-color: transparent;
  color: #f0f0f0;
  font-size: 6rem;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.8);
}

.tingle-modal-box__content {
  padding: 3rem 3rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}
.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

/* state
 * *-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}
.tingle-modal--visible .tingle-modal-box {
  transform: scale(1);
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
 * *-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
 * *-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }

  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }

  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
    line-height: 55px;
  }

  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    font-size: 4rem;
  }
}
@supports (backdrop-filter: blur(12px)) {
  .tingle-modal {
    backdrop-filter: blur(20px);
  }

  @media (max-width: 540px) {
    .tingle-modal {
      backdrop-filter: blur(8px);
    }
  }
  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}

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