:root {
  --color1: rgba(11, 57, 84, 1);
  --color2: rgb(32, 189, 253);
  --color3: rgba(255, 251, 250, 1);
  --color4: rgba(0, 189, 157, 1);
  --color5: rgba(139, 215, 210, 1);
  --color6: rgba(43, 42, 40, 1);
}

:root {
  --color1: rgba(11, 57, 84, 1);
  --color2: rgb(32, 189, 253);
  --color3: rgba(255, 251, 250, 1);
  --color4: rgba(0, 189, 157, 1);
  --color5: rgba(139, 215, 210, 1);
  --color6: rgba(43, 42, 40, 1);
}

.color1 {
  color: var(--color1);
}

.color2 {
  color: var(--color2);
}

.color3 {
  color: var(--color3);
}

.color4 {
  color: var(--color4);
}

.color5 {
  color: var(--color5);
}

.color6 {
  color: var(--color6);
}

.bg-color1 {
  background-color: var(--color1);
}

.bg-color2 {
  background-color: var(--color2);
}

.bg-color3 {
  background-color: var(--color3);
}

.bg-color4 {
  background-color: var(--color4);
}

.bg-color5 {
  background-color: var(--color5);
}

.bg-color6 {
  background-color: var(--color6);
}

.border-color1 {
  border-color: var(--color1);
}

.border-color2 {
  border-color: var(--color2);
}

.border-color3 {
  border-color: var(--color3);
}

.border-color4 {
  border-color: var(--color4);
}

.border-color5 {
  border-color: var(--color5);
}

.border-color6 {
  border-color: var(--color6);
}

*,
*:before,
*:after {
  box-sizing: border-box !important;
}

body,
html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  height: 100%;
  margin: 0;
  color: var(--color3);
  scroll-behavior: smooth;
}

h1,
h2 {
  margin: 0;
}

ul {
  list-style-type: none;
}

.bold-text {
  font-weight: bold;
}

a.link-block {
  text-decoration: none !important;
}
a.link-block .link-image {
  width: 32px;
  margin: 5px;
  vertical-align: middle !important;
}
a.link-block .link-text {
  text-decoration: underline !important;
}

footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  height: 10vh;
}
footer a.link-block {
  display: block;
}
@media screen and (max-width: 768px) {
  footer a.link-block span.link-text {
    display: none;
  }
}

.legal {
  position: relative;
  min-height: 100vh;
  text-align: center;
}
.legal .link_back_to {
  position: absolute;
  top: 0;
  left: 1px;
  text-decoration: none;
}

.legal__title {
  min-height: 10vh;
  margin: 0;
}

.legal__content {
  min-height: 90vh;
}

.theme {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 100%;
  min-height: 100vh;
}
.theme .link-left i,
.theme .link-right i {
  font-size: 4em;
}
.theme .link-left {
  position: absolute;
  top: 5px;
  left: 20px;
}
.theme .link-right {
  position: absolute;
  top: 5px;
  right: 20px;
}
.theme .link-right .overlap-icon {
  position: absolute;
  top: 10px;
  right: 1px;
}

.theme-header,
.theme-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.theme-header {
  font-size: 2em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 10vh;
}

.theme-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 90vh;
}
@media screen and (min-width: 1024px) {
  .theme-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.parallax {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}
.parallax header {
  width: 100%;
  min-height: 100vh;
}
.parallax .navbar {
  height: 100vh;
  margin: auto;
}

.parallax-second {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 80vh;
}

.parallax-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 100%;
  min-height: 80vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media screen and (min-width: 1024px) {
  .navbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.navbar__block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 100%;
  height: 50vh;
}
.navbar__block .name,
.navbar__block .entitled {
  font-size: 1.5em;
  font-weight: normal;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 2px;
}
.navbar__block .name {
  bottom: 0;
}
.navbar__block .entitled {
  top: 0;
}
@media screen and (min-width: 1024px) {
  .navbar__block {
    width: 50%;
    height: 100vh;
  }
  .navbar__block .name,
  .navbar__block .entitled {
    top: 0;
    bottom: 0;
  }
  .navbar__block .name {
    right: 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navbar__block .entitled {
    left: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.navbar__element {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 50%;
  height: 100px;
  padding: 1px;
  -webkit-transition: border 1.5s ease-in-out;
  transition: border 1.5s ease-in-out;
  text-decoration: none;
  border: 0 solid;
}
@media screen and (max-width: 1024px) {
  .navbar__element {
    width: 50%;
  }
}
.navbar__element:hover {
  padding: 10px;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  -webkit-transform: scale(1.8);
      -ms-transform: scale(1.8);
          transform: scale(1.8);
  border: 1px solid;
}
.navbar__element:hover .quick,
.navbar__element:hover .normal,
.navbar__element:hover .slow {
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.navbar__element:hover .normal {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
          transform: rotate(-360deg);
}
.navbar__element:hover .quick {
  top: -20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.navbar__element:hover .slow {
  top: 20px;
}

.quick,
.normal,
.slow {
  position: relative;
  top: 0;
  display: block;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.project__header {
  text-align: center;
}
.project__header .project__header__title {
  font-size: 5em;
  font-weight: 100;
}
.project__header .project__header__logo img {
  max-width: 10em;
}
.project__header .project__header__teaser {
  font-size: 2.5em;
  font-weight: 300;
}

.panel {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .panel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 30px 0;
  }
  .panel #project-description {
    position: relative;
    z-index: 9999;
    top: 70px;
    right: -70px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-animation-name: from_left;
            animation-name: from_left;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  .panel #project-stack {
    position: relative;
    left: -70px;
    -webkit-box-flex: 1.2;
    -webkit-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
    padding-left: 140px;
  }
}
.panel .panel__element {
  position: relative;
  min-height: 30vh;
  padding: 15px;
}
.panel .panel__element .panel__element__title {
  margin: 10px auto 40px auto;
}
.panel .panel__element .panel__element__text {
  font-size: 1.3em;
}
.panel .panel__element .panel__element__links {
  font-size: 1.3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin: 50px auto;
}
.panel .panel__element .panel__element__links .link {
  display: block;
}
.panel .panel__element-bordered {
  border-width: 1px;
  border-style: solid;
}

.text-center {
  text-align: center;
}

.stack {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.stack .tech {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-decoration: none;
}
.stack .tech img {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  -webkit-animation: jump 3s;
          animation: jump 3s;
  border-width: 1px;
  border-style: none;
  border-radius: 50%;
  background-color: var(--color3);
}
.stack .tech:hover {
  position: relative;
  -webkit-animation-name: jump;
          animation-name: jump;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes jump {
  0% {
    top: 0;
  }
  25% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  50% {
    top: -20px;
  }
  75% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  100% {
    top: 0;
  }
}

@keyframes jump {
  0% {
    top: 0;
  }
  25% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  50% {
    top: -20px;
  }
  75% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes from_left {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  60% {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  70% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  80% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  90% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  95% {
    -webkit-transform: translateX(-1%);
            transform: translateX(-1%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes from_left {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  60% {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  70% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  80% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  90% {
    -webkit-transform: translateX(-2%);
            transform: translateX(-2%);
  }
  95% {
    -webkit-transform: translateX(-1%);
            transform: translateX(-1%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.card--hide {
  overflow: hidden !important;
  width: 0 !important;
  height: 0 !important;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  -webkit-transform: scale(0) !important;
      -ms-transform: scale(0) !important;
          transform: scale(0) !important;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 25px;
}
@media screen and (min-width: 1025px) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.card .card__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100px;
  max-height: 100px;
  margin: 30px;
}
.card .card__logo img {
  width: 100%;
}
.card .card__content {
  position: relative;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin: 0 10px;
}
@media screen and (min-width: 1025px) {
  .card .card__content {
    min-height: 80%;
  }
}
.card .card__content ul {
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
}
.card .card__content .card__title {
  font-size: 1.7em;
}
.card .card__content .card__text {
  font-size: 1.2em;
}
.card .card__content .card__text p {
  padding-left: 25px;
}
.card .card__content .card__extra {
  padding-left: 25px;
}
.card .card__content .card__extra a {
  display: inline-block;
  padding: 0 2px;
}

.card__logo-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card__logo-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.skill-card {
  width: 100%;
  min-height: 30vh;
}
@media screen and (min-width: 1025px) {
  .skill-card {
    width: 50%;
    height: 45vh;
    min-height: 300px;
  }
}

.project-card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 30vh;
  padding: 2px;
}
@media screen and (min-width: 1025px) {
  .project-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 33%;
    height: 30vh;
    min-height: 200px;
  }
}
.project-card .card__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}
.project-card .card__content .card__title {
  font-size: 1.5em;
  -webkit-box-flex: 0.6;
  -webkit-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
  margin: 0 5px;
}
@media screen and (min-width: 1025px) {
  .project-card .card__content .card__title {
    font-size: 1.9em;
    margin: 0 15px;
  }
}
.project-card .card__content .card__text {
  font-size: 1.1em;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .project-card .card__content .card__text {
    font-size: 1.5em;
  }
}
.project-card .card__content .card__text p {
  margin: 0;
}
.project-card .card__content .card__extra {
  font-size: 1.3em;
  -webkit-box-flex: 0.3;
  -webkit-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .project-card.card__logo-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 1025px) {
  .project-card.card__logo-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.color1 img {
  border-color: var(--color1);
}

.color2 img {
  border-color: var(--color2);
}

.color3 img {
  border-color: var(--color3);
}

.color4 img {
  border-color: var(--color4);
}

.color5 img {
  border-color: var(--color5);
}

.color6 img {
  border-color: var(--color6);
}

.up-and-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 100%;
}

.up,
up:active,
up:visited,
up:focus,
up:hover,
.down,
down:active,
down:visited,
down:focus,
down:hover {
  display: block;
  width: 2rem;
  height: 2rem;
  content: "";
  text-align: center;
  border: solid 0.2rem;
}

#floating-arrow {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  display: none;
  width: 70px;
  height: 70px;
  text-align: center;
  border: solid 1px var(--color3);
  border-radius: 50%;
  background-color: var(--color3);
}
#floating-arrow i {
  font-size: 70px;
}