/*

color(display-p3 0.2667 0.4471 0.7686) dunkelblau #4472C4
color(display-p3 0.0588 0.5765 0.9922) hellblau #0F93FD
dunkelgrau #191919

*/


/* ---- Titel ---- */

/* Phone (0px - 575px) */


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {}

/* --------- */





/* ---- General Stuff ---- */

/* Phone (0px - 575px) */

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts//OfeliaText-Light.woff2') format('woff2'),
    url('../3-fonts//OfeliaText-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts//OfeliaText-Regular.woff2') format('woff2'),
    url('../3-fonts//OfeliaText-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts//OfeliaText-Medium.woff2') format('woff2'),
    url('../3-fonts//OfeliaText-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts//OfeliaText-Semibold.woff2') format('woff2'),
    url('../3-fonts//OfeliaText-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ofelia Text';
  src: url('../3-fonts//OfeliaText-Bold.woff2') format('woff2'),
    url('../3-fonts//OfeliaText-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: color(display-p3 0.0588 0.5765 0.9922) #f2f2f2;
  transition: scrollbar-color 0.8s ease;
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Ofelia Text', sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

img {
  pointer-events: none;
  user-select: none;
}

.page-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 1s ease;
}

.loader {
  width: 100%;
  max-width: 500px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 1s ease;
}

.loader-text {
  font-size: 24px;
  color: #191919;
  margin-bottom: 20px;
  align-self: center;
}

.loader-bar {
  width: 30%;
  height: 10px;
  border-radius: 5px;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  animation: loader-bar-animation 2s ease-in-out infinite;
}

@keyframes loader-bar-animation {
  0% {
    /* transform: translateX(-100%) rotate(270deg); */
    transform: translateX(-100%);
  }

  50% {
    /* transform: translateX(100%) rotate(-90deg); */
    transform: translateX(100%);
  }

  100% {
    /* transform: translateX(-100%) rotate(270deg); */
    transform: translateX(-100%);
  }
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

body::-webkit-scrollbar-thumb {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
}

.scrollbar-color-changed::-webkit-scrollbar-track {
  background-color: #191919;
}

/* --------- */


/* ----- Common Stuff ----- */

/* Phone (0px - 575px) */

.headline {
  font-size: 20px;
  font-weight: 700;
  color: color(display-p3 0.0588 0.5765 0.9922);
  text-align: center;
  line-height: 29px;
  padding: 50px 0px;
}

p {
  margin: 0;
  padding: 0;
  line-height: 22px;
}

a {
  text-decoration: none;
}

span {
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-weight: 500;
}

.large-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .headline {
    font-size: 25px;
  }

  .large-button {
    display: inline-block;
    max-width: 970px;
    margin: 0px 60px;
  }

  .large-button::before,
  .large-button::after {
    width: 100%;
    max-width: 970px;
  }

}

/* --------- */


/* ---- Navbar ---- */

/* Phone (0px - 575px) */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #f2f2f2;
  display: flex;
  z-index: 999;
  align-items: center;
  flex-direction: column;
  transition: all 0.8s ease;
}

.nav-background {
  width: 100%;
  height: 67px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.light-up {
  width: 100%;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  box-shadow: 0px 0px 10px 0px rgba(15, 147, 253, 0.5);
  height: 3px;
}

.home {
  margin-left: 5px;
  font-size: 20px;
  font-weight: 300;
  padding: 15px;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  color: #191919;
}

.home:hover {
  background-color: #fff;
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-weight: 500;
  cursor: pointer;
}

#small-active-link {
  font-weight: 500;
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.burger-menu {
  width: 0vw;
  height: 100vh;
  background-color: #f2f2f2;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 998;
  transition: width 0.5s ease;
}

.burger-menu ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0px;
  margin-top: 70px;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.burger-menu ul li {
  padding: 40px 20px;
  width: 100%;
  border-bottom: 1px solid #ababab;
  cursor: pointer;
}

.burger-menu ul li a {
  font-size: 18px;
  font-weight: 300;
  color: #707070;
  white-space: nowrap;
}

.burger-menu ul li:hover a {
  font-weight: 500;
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.burger-menu ul li:hover {
  background-color: #fff;
}

#movie-burger {
  border: none;
  margin: 40px 10vw;
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(to bottom right, color(display-p3 0.0588 0.5765 0.9922), color(display-p3 0.2667 0.4471 0.7686));
  align-self: left;
  width: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px 5px rgba(31, 147, 253, 0.5);
  transition: scale 0.3s ease;
}

#movie-burger img {
  height: 25px;
}

#movie-burger a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#movie-burger:hover {
  scale: 1.05;
}

.small-size-nav {
  width: 100%;
  height: 67px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.full-size-nav {
  display: none;
}

/* Burger Animation */

.burger {
  display: flex;
  width: 57px;
  height: 57px;
  margin: 5px;
  padding: 15px 10px 15px 10px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  border-radius: 5px;
}

.burger:hover {
  background-color: #fff;
}

.burger:hover .line {
  stroke: color(display-p3 0.0588 0.5765 0.9922);
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}

.line {
  fill: none;
  stroke: #191919;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .navbar {
    height: 70px;
  }

  .nav-background {
    height: 67px;
  }

  .small-size-nav {
    display: none;
  }

  .full-size-nav {
    width: 100%;
    max-width: 1440px;
    /* 1340px = 70% der Seite bei einer Auflösung von 1920px Breite */
    height: 67px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
  }

  .full-size-nav-links {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin-left: 25px;
  }

  .full-size-link {
    padding: 15px 20px;
    margin: 5px;
    text-decoration: none;
    box-shadow: none;
    border: none;
    font-size: 16px;
    color: #191919;
    line-height: 20px;
  }

  .full-size-link:hover {
    color: color(display-p3 0.0588 0.5765 0.9922);
    background-color: #fff;
    border-radius: 10px;
  }

  #active-link {
    font-size: 20px;
    color: color(display-p3 0.0588 0.5765 0.9922);
    font-weight: 500;
    line-height: 20px;
  }

  .full-size-movie-voice {
    margin-right: 50px;
    padding: 15px 50px;
    background: linear-gradient(to bottom right, color(display-p3 0.2667 0.4471 0.7686), color(display-p3 0.0588 0.5765 0.9922));
    border-radius: 5px;
    box-shadow: 0px 0px 20px 5px rgba(31, 147, 253, 0.5);
    transition: box-shadow 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .full-size-movie-voice:hover {
    box-shadow: 0px 0px 30px 5px rgba(31, 147, 253, 0.8);
  }

  .full-size-movie-voice img {
    height: 18px;

  }
}

/* --------- */


/* ---- Button  ---- */

/* Button Background */

.button-container {
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  margin-top: auto;
}

.button-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}


/* Button Styling */

#main-button {
  display: none;
}

.cool-button {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 60px;
  margin: 50px 20px;
  border: none;
  padding: 0;
  background-color: #191919;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.cool-button::before,
.cool-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  transition: right 0.3s ease,
    top 0.3s ease;
}

.cool-button::before {
  background-color: color(display-p3 0.2667 0.4471 0.7686);
  top: -10px;
  right: -10px;
  z-index: -2;
}

.cool-button::after {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  top: 10px;
  right: 10px;
  z-index: -1;
}


/* Button Hover */

.cool-button:hover {
  cursor: pointer;
}

.cool-button:hover::before {
  right: 0px;
  top: 0px;
}

.cool-button:hover::after {
  right: 0px;
  top: 0px;
}

/* --------- */


/* ---- Main ---- */

/* Phone (0px - 575px) */

#main-page {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-color: none;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.above .below {
  position: absolute;
  bottom: 0;
}

.above {
  z-index: 2;
}

.below {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.flex-item-below {
  position: absolute;
  z-index: 1;
  height: fit-content;
  width: 100%;
}

.flex-item-above {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.flex-item-below {
  position: absolute;
  z-index: 1;
}

.background-shape {
  background-color: #F2F2F2;
  width: 100%;
  height: 120px;
}

#wave-small {
  position: relative;
  bottom: 80px;
}

.main-center {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-headline {
  width: calc(100% - 40px);
  margin: 120px 20px;
  margin-bottom: 25px;
  text-align: center;
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}

.main-img-container {
  width: calc(100% - 40px);
  max-width: 400px;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-img-top {
  width: 100%;
  height: fit-content;
  position: relative;
  z-index: 3;
  line-height: 0;
  border-radius: 10px;
  border: 1px solid #d8dde1;
  overflow: hidden;
}

.main-img-top img {
  width: 100%;
}

.main-img-2 {
  width: 85%;
  height: fit-content;
  position: absolute;
  bottom: -20px;
  z-index: 2;
  line-height: 0;
}

.main-img-2 img {
  width: 100%;
  border-radius: 10px;
}

.main-img-blur {
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #d8dde1;
  border-radius: 10px;
}

.main-img-3 {
  width: 70%;
  height: fit-content;
  position: absolute;
  bottom: -40px;
  z-index: 1;
  line-height: 0;
}

.main-img-3 img {
  width: 100%;
  border: 1px solid #d8dde1;
  border-radius: 10px;
}

.main-img-blur-soft {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
}

.main-img-blur-hard {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.3);
}

.main-tool-used {
  position: relative;
  top: 30px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid #d8dde1;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.main-info {
  width: calc(100% - 40px);
  font-size: 12px;
  max-width: 500px;
  font-weight: 300;
  margin: 0px 20px;
  text-align: center;
  position: relative;
  top: 50px;
}

.main-desk {
  display: none;
}

.main-img-block {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-button {
  width: calc(100% - 60px);
}

.img-comp-img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-comp-overlay {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.img-comp-overlay img {
  border-radius: 0;
  border: none;
  border-right: 1px solid #d8dde1;
}

.img-comp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  border: 1px solid #d8dde1;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  border-radius: 50%;
}


@media screen and (max-height: 850px) and (max-width: 992px) {
  .main-info {
    display: none;
  }
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

  .main-center {
    width: 100%;
    height: calc(100% - 70px);
    max-width: 1440px;
    padding-left: 50px;
    padding-right: 50px;
    margin: 0px auto;
    margin-top: 70px;
  }

  .main-headline-desk {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    color: color(display-p3 0.0588 0.5765 0.9922);
    font-size: 35px;
    line-height: 28px;
  }

  .main-subheadline-desk {
    font-size: 18px;
    font-weight: 700;
    color: #191919;
    line-height: 18px;
    margin: 0;
    margin-bottom: 20px;
  }

  .above {
    display: none;
  }

  .below {
    width: 100%;
    height: 100%;
    position: unset;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 2;
  }

  .further-below {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
  }

  #main-button {
    display: unset;
    width: 300px;
    margin: 0;
    margin-top: 10px;
    margin-left: 10px;
  }

  #main-button::before,
  #main-button::after {
    width: 300px;
  }

  #wave-big {
    position: absolute;
    width: 100vw;
    bottom: 0;
  }

  .main-center {
    flex-direction: row;
  }

  .main-headline,
  .main-info,
  .main-btn {
    display: none;
  }

  .main-info-desk {
    width: 100%;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 500;
  }

  .main-img-container {
    width: 100%;
    max-width: unset;
  }

  .main-img-block {
    width: calc(100% - 50px);
    margin-right: 50px;
  }

  .main-desk {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------- */



/* ---- Skills ---- */

/* Phone (0px - 575px) */

.skills {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  animation: fade-in 0.5s ease;
  opacity: 1;
  display: none;
  justify-content: center;
  align-items: center;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.skills-container {
  width: calc(100% - 50px);
  height: fit-content;
  max-height: calc(100% - 50px);
  margin: 50px 25px;
  background-color: #fff;
  border-radius: 10px;
  animation: fade-up 0.5s ease;
  position: relative;
  top: 0;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: color(display-p3 0.0588 0.5765 0.9922) #f2f2f2;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.2);
}

@keyframes fade-up {
  0% {
    opacity: 0;
    top: 50px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

.skills-top-row {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills-main-title {
  text-align: left;
  color: #191919;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  margin: 0;
  margin-left: 20px;
}

.skills-close {
  width: 60px;
  height: 50px;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skills-close img {
  width: 20px;
  height: 20px;
}

.skills-section {
  width: calc(100% - 40px);
  height: fit-content;
  margin: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skills-block {
  width: 100%;
  height: fit-content;
  display: flex;
  margin-bottom: 20px;
}

.skills-block:last-child {
  margin-bottom: 0;
}

.skills-title {
  width: fit-content;
  height: fit-content;
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 5px;
  margin: 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.skills-skill-container {
  margin-left: 20px;
  flex: 1;
}

.skills-skill {
  width: 100%;
  height: fit-content;
}

.skills-name {
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  color: #191919;
  margin: 0;
}

.skills-rating {
  width: 100%;
  height: 10px;
  margin: 5px 0px 10px 0px;
  display: flex;
  justify-content: space-between;
}

.skills-rating-default {
  width: calc((100% - 20px) / 5);
  height: 10px;
  background-color: #ababab;
}

.skills-rating-active {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
  .skills-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .skills-block {
    width: calc((100% - 20px) / 2);
    margin-bottom: 0;
  }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

  .skills-section {
    width: calc(100% - 100px);
    margin: 20px 50px;
  }

  .skills-container {
    width: calc(100% - 100px);
    max-width: 1060px;
    margin: 50px;
  }

  .skills-block {
    width: calc((100% - 50px) / 2);
    margin-bottom: 20px;
  }

  .skills-top-row {
    height: fit-content;
    padding: 30px;
    padding-bottom: 0px;
  }

  .skills-title {
    font-size: 22px;
  }

  .skills-name {
    font-size: 15px;
  }

  .skills-rating {
    height: 12px;
  }

  .skills-rating-default {
    height: 12px;
  }
}

/* --------- */



/* ---- Quote ---- */

/* Phone (0px - 575px) */

.quote {
  width: 100%;
  padding: 50px;
  background-color: #191919;
  text-align: center;
}

.quote p {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .quote p {
    font-size: 25px;
  }
}

/* --------- */


/* ---- Quicklinks ---- */

/* Phone (0px - 575px) */

.quicklinks {
  width: 100%;
  height: 35px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quicklinks-container {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0px 20px;
  height: 35px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  transition: all 0.3s ease;
}

.quicklinks-link {
  position: relative;
  z-index: 2;
  padding: 5px 15px;
  border-radius: 10px;
  margin: 0px 2.5px;
  display: inline-block;
}

#link-11 {
  margin-right: 0px;
}

.quicklinks-link:hover {
  cursor: pointer;
}

.quicklinks-link:hover p {
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.quicklinks-text {
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  z-index: 1;
  transition: color 0.3s ease;
}

.quicklink-active .quicklinks-text {
  color: #fff;
}

.quicklink-active:hover {
  background-color: unset;
}

.quicklink-active:hover .quicklinks-text {
  color: #fff;
}

.quicklinks-bg {
  position: absolute;
  top: calc((100% - 30px)/2);
  z-index: 0;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  height: 30px;
  width: 5px;
  border-radius: 10px;
  transition: left 0.3s ease,
    width 0.3s ease;
}

.placeholder {
  width: 100%;
  height: 85px;
  display: none;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .quicklinks-container {
    margin: 0px 50px;
  }
}

/* --------- */


/* ---- Portfolio ---- */

/* Phone (0px - 575px) */

.code {
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin-top: 0px;
  margin-bottom: 50px;
}

.code-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  flex-basis: 1;
}

.code-headline {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
  color: #191919;
  margin: 40px 20px 10px 20px;
}

.code-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  color: #191919;
  margin: 0px 20px 20px 20px;
}

.code-img-small {
  display: block;
  padding-top: 20px;
  width: 100%;
}

.code-img {
  width: 100%;
  height: min-content;
}

.code-img-big {
  display: none;
}


.videos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.video-row {
  width: 100%;
  height: 100%;
  max-width: 1160px;
  padding: 0px 20px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  animation: extendIn 3s ease;
  transition: height 0.3s ease;
}

@keyframes extendIn {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

.video-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-bottom: 10px;
  transition: opacity 0.4s ease;
}

.video-footage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-footage video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
}

.video-pause-container {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  opacity: 1;
  z-index: 4;
  right: calc(50% - (75px / 2));
  bottom: calc(50% - (75px / 2));
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-pause-icon {
  display: none;
  height: 40px;
}

.video-play-icon {
  display: block;
  height: 40px;
}

.video-thumbnail {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.video-subtext {
  position: absolute;
  z-index: 2;
  bottom: -37px;
  left: 5px;
  width: calc(100% - 10px - 41px);
  padding: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.video-subtext p {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  color: #191919;
}


.images,
.ed {
  width: 100%;
  max-width: 1160px;
  padding: 0px 20px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
}

.short-row {
  flex-basis: calc(100% - 5px);
  width: calc(100% - 5px);
  max-width: calc(580px - 12.5);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 1;
  margin-bottom: 10px;
}

.img-container {
  position: relative;
  flex-basis: calc(50% - 5px);
  width: calc(50% - 5px);
  border-radius: 10px;
  transition: opacity 0.4s ease;
}

.img-resize {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
  display: block;
  object-fit: cover;
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.img-resize img {
  transition: all 0.3s ease;
}

.bottom-image {
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.section-end-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.section-end {
  width: 100%;
  max-width: 1340px;
  margin: 0 20px;
  border: 1px solid #191919;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {

  .code-box {
    flex-direction: row;
    height: fit-content;
  }

  .code-img-small {
    display: none;
  }

  .code-img {
    flex-basis: calc(33%);
    max-width: 250px;
    max-height: 255px;
  }

  .code-text-block {
    flex-basis: calc(67%);
    flex-grow: 1;
  }

  .code-img-big {
    display: block;
    width: 100%;
    padding: 20px;
    max-width: 250px;
  }

  .code-headline {
    font-size: 20px;
    line-height: 28px;
    margin: 40px 0px 20px 20px;
  }

  .code-text {
    font-size: 15px;
    line-height: 22px;
    margin: 0px 0px 40px 20px;
  }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

  .code {
    padding: 0px 50px;
  }

  .videos {
    margin-bottom: 25px;
  }

  .video-row {
    padding: 0px 50px;
    flex-direction: row;
    margin-bottom: 25px;
  }

  .video-box {
    margin-bottom: 0px;
    width: calc(33% - (50px / 3));
  }

  .images,
  .ed {
    padding: 0px 50px;
    margin-bottom: 25px;
  }

  .img-container {
    flex-basis: calc(50% - 12.5px);
    width: calc(50% - 12.5px);
  }

  .img-container:hover .top-image {
    opacity: 0;
  }

  .img-container:hover img {
    scale: 1.1;
  }

  .row {
    flex-direction: row;
  }

  .short-row {
    flex-basis: calc(50% - 12.5px);
    width: calc(50% - 12.5px);
    margin-bottom: 25px;
  }

  .section-end {
    margin: 0px 50px;
  }

}

/* --------- */


/* ---- Portfolio Full Size ---- */

/* Phone (0px - 575px) */

.loading-container {
  width: 100%;
  height: 0px;
  /* 90px */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.loading-animation {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #0f93fd 94%, #0000) top/6.4px 6.4px no-repeat,
    conic-gradient(#0000 30%, #0f93fd);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 6.4px), #000 0);
  mask: radial-gradient(farthest-side, #0000 calc(100% - 6.4px), #000 0);
  animation: loading 1s infinite linear;
  opacity: 0;
  transition: all 0.3s ease;
}

@keyframes loading {
  100% {
    transform: rotate(1turn);
  }
}

.portfolio-full-size {
  position: fixed;
  width: 100%;
  height: 1%;
  background-color: #fff;
  z-index: 10;
  top: -1%;
  left: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio {
  scroll-behavior: smooth;
}

.portfolio-container {
  height: fit-content;
}

.pfs-background-small {
  background: rgba(255, 255, 255, 1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  transition: all 1s ease;
}

.pfs-background-img-small {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.pfs-des-close-bg-small {
  position: absolute;
  z-index: 13;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.pfs-background-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pfs-top-row-small {
  position: absolute;
  top: calc(68px + (100% / 101));
  width: 100%;
  flex-direction: row;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 14;
  opacity: 1;
  animation: slideIn 0.5s ease;
}

.pfs-navigation-small,
.pfs-close-resize-small {
  height: 67px;
  width: 144px;
  margin-left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pfs-close-resize-small {
  margin-left: 0;
  margin-right: 20px;
  justify-content: flex-end;
}

.pfs-more-video-tools-small {
  opacity: 0;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.pfs-navigation-dropdown-small {
  position: absolute;
  height: 144px;
  width: 144px;
  top: calc(145px + (100% / 101));
  right: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  flex-wrap: wrap;
  z-index: 14;
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.pfs-previous-small,
.pfs-next-small,
.pfs-close-small,
.pfs-more-video-tools-small,
.pfs-navigator-small,
.des-button-big {
  width: 67px;
  height: 67px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.pfs-previous-small img,
.pfs-next-small img,
.pfs-close-small img,
.pfs-navigator-small img,
.des-button-big img {
  height: 27px;
  user-select: none;
}

.pfs-more-video-tools-small img {
  width: 27px;
  user-select: none;
  transition: opacity 0.3s ease;
}

.pfs-content-small {
  display: none;
  position: absolute;
  z-index: 13;
  top: calc(155px + (100% / 101));
  left: 20px;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 2 * (100% / 101) - 262px);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 1;
  animation: slideIn2 0.5s ease;
}

@keyframes slideIn2 {
  0% {
    top: 260px;
    opacity: 0;
  }

  100% {
    top: calc(155px + (100% / 101));
    opacity: 1;
  }
}

.pfs-content-small img,
.pfs-content-small video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.pfs-left-content-small {
  left: calc(-1 * (100% + 20px));
  opacity: 0;
  animation: left-1 0.3s ease;
  user-select: none;
}

@keyframes left-1 {
  0% {
    left: 0;
    opacity: 1;
  }

  100% {
    left: calc(-1 * (100% + 20px));
    opacity: 0;
  }
}

.pfs-right-content-small {
  right: 0;
  opacity: 1;
  animation: right-1 0.3s ease;
}

@keyframes right-1 {
  0% {
    right: calc(-1 * (100% + 20px));
    opacity: 0;
  }

  100% {
    right: 0;
    opacity: 1;
  }
}

.pfs-left-2-content-small {
  left: 0;
  opacity: 1;
  animation: left-2 0.3s ease;
}

@keyframes left-2 {
  0% {
    left: calc(-1 * (100% + 20px));
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

.pfs-right-2-content-small {
  right: calc(-1 * (100% + 20px));
  opacity: 0;
  animation: right-2 0.3s ease;
}

@keyframes right-2 {
  0% {
    right: 0;
    opacity: 1;
  }

  100% {
    right: calc(-1 * (100% + 20px));
    opacity: 0;
  }
}

.pfs-description-small {
  position: absolute;
  z-index: 14;
  background-color: #fff;
  width: 100%;
  border-radius: 25px 25px 0px 0px;
  top: calc(100% - (100% / 101) - 87px);
  height: 100%;
  padding-bottom: 200px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease,
    top 0.5s cubic-bezier(0.2, 1.8, 0.41, 1);
}

.pfs-touchbar {
  position: relative;
  width: 100px;
  height: 5px;
  background-color: #191919;
  left: calc(50% - 50px);
  border-radius: 5px;
  top: 20px;
}

.pfs-des-swipe {
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 16;
  top: calc(100% - 100px);
}

.pfs-description-headline-small {
  position: relative;
  border-radius: 5px;
  top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  color: #191919;
  z-index: 15;
  transition: all 0.3s ease;
}

.pfs-des-fadeout-small,
.pfs-des-fadeout-small-2 {
  position: absolute;
  width: calc(100% - 40px);
  height: 50px;
  margin: 0px 20px;
  z-index: 14;
}

.pfs-des-fadeout-small {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  top: 45px;
}

.pfs-des-fadeout-small-2 {
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  bottom: 200px;
}

.pfs-des-content {
  box-sizing: border-box;
  position: absolute;
  background-color: #fff;
  width: calc(100% - 40px);
  height: calc(100% - 245px);
  margin: 0px 20px;
  top: 45px;
  z-index: 13;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  overflow: -moz-scrollbars-none;
}

.pfs-des-content::-webkit-scrollbar {
  display: none;
}

.pfs-free-space-small {
  width: 100%;
  height: 50px;
}

.pfs-free-space-small-2 {
  width: 100%;
  height: 40px;
}

.pfs-date-small,
.pfs-link-small,
.pfs-tools-small {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #f2f2f2;
  margin-bottom: 10px;
}

.pfs-date-small,
.pfs-link-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pfs-des-text-small {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #f2f2f2;
  margin-bottom: 10px;
}

.pfs-des-text-block-small,
.pfs-date-text-small,
.pfs-link-text-small p {
  font-size: 12px;
  line-height: 22px;
  font-weight: 300;
  margin: 10px;
  color: #191919;
}

.pfs-des-text-headline-small,
.pfs-date-text-headline-small,
.pfs-link-text-headline-small,
.pfs-tools-text-headline-small {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 10px;
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.pfs-date-text-small,
.pfs-link-text-small a {
  font-size: 14px;
}

.pfs-link-text-small {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.pfs-link-text-small img {
  height: 15px;
}

.pfs-tools-used-small {
  width: calc(100% - 10px);
  margin: 10px 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.pfs-tools-used-img {
  width: fit-content;
  height: 30px;
  padding: 5px;
  margin: 5px;
  border-radius: 10px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pfs-tools-used-img p {
  font-size: 12px;
  line-height: 22px;
  font-weight: 300;
  margin: 10px;
  color: #191919;
}

.pfs-tools-used-img img {
  height: 100%;
  border-radius: 5px;
}

#des-big {
  display: none;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

  .pfs-top-row-small {
    height: calc(100% - (100% / 101) - 48px);
    top: calc(48px + (100% / 101));
  }

  .pfs-navigation-small {
    width: calc(100% - 100px);
    margin: 0px 50px;
    position: absolute;
    top: calc(50% - 35px);
    z-index: 2;
  }

  .pfs-previous-small,
  .pfs-next-small {
    border-radius: 50%;
  }

  .pfs-close-resize-small {
    width: 67px;
    height: 100%;
    position: absolute;
    padding: 20px 0px;
    right: 0px;
    margin: 0;
    margin-right: 50px;
    flex-direction: column;
    justify-content: space-between;
  }

  .pfs-close-small {
    order: 1;
  }

  .pfs-more-video-tools-small {
    order: 2;
  }

  .pfs-content-small {
    height: 100%;
    width: 100%;
    max-width: calc(100% - 334px);
    max-height: calc(100% - (100% / 101) - 88px);
    top: calc(68px + (100% / 101));
    left: 167px;
    animation: slideInBig 0.5s ease;
  }

  @keyframes slideInBig {
    0% {
      top: 168px;
      opacity: 0;
    }

    100% {
      top: calc(68px + (100% / 101));
      opacity: 1;
    }
  }

  .pfs-more-video-tools-small {
    margin: 0;
  }

  .pfs-navigation-dropdown-small {
    height: 268px;
    width: 67px;
    top: unset;
    bottom: 107px;
    right: 50px;
    flex-direction: row;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
  }

  .pfs-navigator-small {
    background: none;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    border: none;
  }

  #des-small {
    display: none;
  }

  .pfs-des-swipe {
    display: none;
  }

  #des-big {
    display: block;
  }

  .des-button-big {
    position: absolute;
    justify-content: flex-start;
    left: 50px;
    bottom: 20px;
    z-index: 15;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .pfs-content-big {
    width: 100%;
    height: unset;
    max-width: 400px;
    max-height: calc(100% - (100% / 101) - 175px);
    position: absolute;
    left: 50px;
    top: 100%;
    z-index: 30;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .pfs-des-content-big {
    width: calc(100% - 40px);
    height: 100%;
    max-height: calc(100vh - 175px);
    box-sizing: border-box;
    position: absolute;
    background-color: #fff;
    margin: 0px 20px;
    position: unset;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
  }

  .pfs-des-content-big::-webkit-scrollbar {
    display: none;
  }

  .pfs-description-headline-big {
    height: 67;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
    z-index: 15;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .pfs-des-fadeout-small {
    top: 0;
  }

  .pfs-des-fadeout-small-2 {
    bottom: 0;
  }

  .pfs-des-close-big {
    opacity: 0;
    transition: all 0.3s ease;
  }

  .pfs-des-show-big {
    opacity: 1;
    transition: all 0.3s ease;
  }

  .pfs-des-icon-big {
    width: 67px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .des-button-extended-big {
    min-width: 400px;
    height: 67px;
    display: flex;
    justify-content: space-between;
  }

  .pfs-des-close-bg-big {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 29;
    display: none;
  }
}

/* --------- */


/* ---- Call to action ---- */

/* Phone (0px - 575px) */

.cta {
  width: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f2f2f2;
  /* border-top: 1px solid #d8dde1; */
}

.cta-switch {
  width: calc(100% - 40px);
  max-width: 1340px;
  margin: 0px 20px;
  display: flex;
  justify-content: flex-start;
}

.cta-switch-container {
  width: 100%;
  height: 50px;
  margin: 50px 0px 20px 0px;
  border: 1px solid #d8dde1;
  border-radius: 25px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-switch-btn {
  width: 50%;
  height: 100%;
  padding: 1px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-switch-btn p {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  transition: color 0.3s ease;
}

.cta-switch-btn:hover {
  cursor: pointer;
}

.cta-switch-btn:hover p {
  color: #191919;
}

.cta-switch-btn-active p {
  color: #fff;
}

.cta-switch-btn-active:hover p {
  color: #fff;
}

.cta-switch-indicator {
  width: 50%;
  height: 100%;
  background: linear-gradient(315deg, #4472c4 0%, #0f93fd 100%);
  border-radius: 25px;
  position: absolute;
  left: 0%;
  z-index: 1;
  transition: left 0.3s ease;
}

.cta-container {
  width: calc(100% - 40px);
  max-width: 1340px;
  height: fit-content;
  /* 450px */
  margin: 0px 20px 50px 20px;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  display: none;
  flex-direction: column;
  /* row */
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
  overflow: hidden;
  animation: fade-up 0.5s ease;
}

.cta-container-active {
  display: flex;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    top: 100px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

.cta-content {
  width: calc(100% - 80px);
  max-width: 400px;
  height: fit-content;
  margin: 0px 40px;
}

.cta-container .headline {
  color: #191919;
  text-align: left;
  padding: 40px 0px 25px 0px;
}

.cta-content-bullet-point {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.cta-content-bullet-point img {
  height: 30px;
  object-fit: contain;
  margin-right: 10px;
}

.cta-content-bullet-point p {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #191919;
}

.cta-link-mobile {
  width: calc(100% - 40px);
  max-width: 360px;
  margin: 30px 20px;
  padding: 15px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #191919;
  transition: color 0.3s ease;
}

.cta-link-mobile:hover {
  cursor: pointer;
  color: #0f93fd;
}

.cta-img-mobile {
  width: 100%;
  max-width: 400px;
}

.cta-img-tablet {
  display: none;
}

.cta-img-desktop {
  display: none;
}

.cta-link-desktop {
  display: none;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
  .cta-switch-container {
    width: fit-content;
  }

  .cta-switch-btn {
    width: 140px;
  }

  .cta-container {
    width: calc(100% - 40px);
    height: 450px;
    margin: 0px 20px 50px 20px;
    flex-direction: row;
  }

  .cta-img-mobile {
    display: none;
  }

  .cta-img-tablet {
    height: 100%;
    object-fit: cover;
    display: block;
    flex-shrink: 1;
  }

  .cta-img-desktop {
    display: none;
  }

  .cta-content {
    width: fit-content;
    max-width: unset;
    flex-shrink: 0;
  }

  .cta-link-mobile {
    display: none;
  }

  .cta-link-desktop {
    width: 100%;
    max-width: 300px;
    margin: 30px 0px;
    padding: 15px;
    background: linear-gradient(315deg, #4472c4 0%, #0f93fd 100%);
    box-shadow: 0px 0px 10px 0px color(display-p3 0.0588 0.5765 0.9922);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    transition: box-shadow 0.3s ease;
  }

  .cta-link-desktop:hover {
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px color(display-p3 0.0588 0.5765 0.9922);
  }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

  .cta-container {
    width: calc(100% - 100px);
    margin: 0px 50px 50px 50px;
  }

  .cta-switch {
    width: calc(100% - 100px);
    margin: 0px 50px;
  }

  .cta-img-desktop {
    height: 100%;
    object-fit: cover;
    display: block;
    flex-shrink: 1;
  }

  .cta-content {
    flex-grow: 1;
    margin-left: 100px;
  }
}

/* --------- */


/* ---- Footer ---- */

/* Phone (0px - 575px) */

.footer {
  position: relative;
  z-index: 2;
}

.footer-links {
  background-color: #191919;
  padding: 50px;
  text-align: center;
}

.quick-links,
.misc-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.quick-links a {
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  position: relative;
  text-decoration: none;
}

.quick-links a:visited,
.quick-links a:active {
  color: color(display-p3 0.0588 0.5765 0.9922);
}

.quick-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.quick-links a:hover::before {
  width: 100%;
  left: 50%;
}

.misc-links {
  padding-top: 20px;
}

.misc-links a {
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  position: relative;
  text-decoration: none;
}

.misc-links a:visited,
.misc-links a:active {
  color: #f2f2f2;
}

.misc-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #f2f2f2;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.misc-links a:hover::before {
  width: 100%;
  left: 50%;
}

.footer-links p a {
  transition: scale 0.3s ease;
}

.footer-links p a:hover {
  text-decoration: dashed;
}

.footer-info {
  background-color: #f2f2f2;
  padding: 25px 0px;
}

.footer-info p {
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  line-height: 14px;
}

.footer-info-container {
  width: 100%;
  max-width: 1440px;
  padding: 0px 50px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#footer-love {
  margin-bottom: 10px;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .footer-info-container {
    justify-content: space-between;
    flex-direction: row;
  }

  #footer-love {
    margin-bottom: 0;
  }
}

/* --------- */