/*

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

*/








/* ---- 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;
}

*,
*: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;
}

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: 200;
  transition: all 1s ease;
}

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;
}

.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: 100;
  align-items: center;
  flex-direction: column;
  transition: top 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: 500;
  color: color(display-p3 0.0588 0.5765 0.9922);
  padding: 15px;
  border-radius: 5px;
  position: relative;
  z-index: 2;
}

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

.home:visited,
.home:active {
  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: 99;
  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;
}

.below {
  position: relative;
  z-index: 0;
}

.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;
}


/* Button Styling */

#main-button {
  display: none;
}

.cool-button {
  position: relative;
  display: inline-block;
  width: calc(100% - 60px);
  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;
  transform: translate(0, 0);
  z-index: -2;
}

.cool-button::after {
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  top: 10px;
  right: 10px;
  transform: translate(0, 0);
  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;
  background-color: none;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #191919;
}

.main-des {
  margin: 5px;
}

#profilepic {
  width: 90vw;
  max-width: 500px;
  margin: 20px;
  margin-top: auto;
}

#des-1 {
  margin-top: 50px;
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

#des-2 {
  font-size: 20px;
  font-weight: 700;
}

#des-3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

#des-4 {
  font-size: 15px;
  max-width: 336px;
  font-weight: 500;
}

#des-5 {
  display: none;
}

.me-big {
  margin-top: 20px;
}

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

.above {
  z-index: 2;
}

.below {
  z-index: 1;
}


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

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


/* Desktops (992px+) */

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

  .description {
    align-items: flex-start;
    text-align: left;
    position: relative;
    order: 2;
    margin-top: 25vh;
    margin-left: 50px;
    width: 50%;
    max-width: 670px;
    height: 100%;
    padding: 0px;
  }

  .above,
  #des-2,
  #des-3 {
    display: none;
  }

  #des-1 {
    font-size: 35px;
    margin-bottom: 30px;
    line-height: 28px;
  }

  #des-4 {
    font-size: 17px;
    max-width: 400px;
    line-height: 28px;
  }

  #des-5 {
    display: block;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .me-big {
    position: relative;
    width: 50vw;
    max-width: 670px;
    order: 1;
    height: 10px;
    margin-top: 120px;
    padding-left: 20px;
  }

  #profilepic {
    position: relative;
    width: 50vw;
    max-width: 670px;
    top: 0;
    margin: unset;
  }

  .below {
    display: flex;
    position: unset;
    margin: 0px auto;
    flex-direction: row;
    width: 100%;
    max-width: 1340px;
    height: 100%;
    z-index: 2;
  }

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

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

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

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

}

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


/* ---- MovieVoice-Popup ---- */

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

.mv-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 101;
  opacity: 1;
  animation: fade-in 1s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }

  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.popup-frame {
  position: relative;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  max-width: 500px;
  max-height: 1080px;
  margin: 25px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  animation: fade-up 1s ease;
  top: 0px;
  z-index: 1;
}

@keyframes fade-up {
  from {
    top: 50px;
  }

  to {
    top: 0px;
  }
}

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

.popup-headline {
  color: color(display-p3 0.0588 0.5765 0.9922);
  font-size: 25px;
  font-weight: 700;
}

.popup-close {
  width: 67px;
  height: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-close-big {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

.popup-close:hover {
  cursor: pointer;
}

.popup-close img {
  height: 27px;
  pointer-events: none;
  user-select: none;
}

.popup-img-container {
  position: absolute;
  width: calc(100% - 40px);
  overflow: hidden;
  margin: 0px 20px;
  z-index: 1;
  display: flex;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.popup-img {
  width: 100%;
}

.popup-text {
  margin: 10px 20px 30px 20px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #191919;
  text-align: center;
}

.popup-btn {
  position: absolute;
  bottom: 20px;
  border: none;
  margin: 0px 20px;
  width: calc(100% - 40px);
  height: 70px;
  padding: 30px;
  border-radius: 35px;
  background: linear-gradient(to bottom right, color(display-p3 0.0588 0.5765 0.9922), color(display-p3 0.2667 0.4471 0.7686));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px 5px rgba(31, 147, 253, 0.5);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Ofelia Text';
  z-index: 3;
}

.popup-btn:hover {
  cursor: pointer;
}

.popup-white-space {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 55px;
  background-color: #fff;
  z-index: 2;
}


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

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


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .mv-popup {
    display: none;
  }
}

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


/* ---- 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;
  }
}

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


/* ---- Image Film ---- */

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

.image-film {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  background-color: #fff;
  transition: background-color 0.8s ease;
}

.video-box {
  display: none;
}

.small-video-box {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 5;
  transition: opacity 0.3s ease;
}

#small-video {
  max-height: 100%;
  object-fit: cover;
  z-index: 6;
}

.video-information {
  position: absolute;
  z-index: 5;
  height: 25px;
  top: 25px;
  border-radius: 12.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);
  padding: 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-information p {
  font-size: 16px;
  color: #191919;
  line-height: 20px;
}

.preview {
  position: absolute;
  width: 100%;
  height: 100%;
}

.blur-preview {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  z-index: 4;
}

#preview-video-big,
#preview-video-small {
  height: 100%;
  max-width: 1340px;
  margin: 0px auto;
  object-fit: cover;
  z-index: 3;
}

.preview-play-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 5;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  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);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-play-icon img {
  width: 30px;
  height: 30px;
}

.video-box:hover {
  cursor: pointer;
}

#small-video {
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  z-index: 6;
  display: none;
}

.scroll-on {
  position: absolute;
  z-index: 4;
  width: 40px;
  bottom: 25px;
  border-radius: 20px;
  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);
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-on img {
  width: 100%;
}


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

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


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .video-box {
    position: relative;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    max-width: 1340px;
    max-height: 80%;
    max-height: 1080px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid color(display-p3 0.0588 0.5765 0.9922);
    box-shadow: 0px 0px 20px 5px rgba(31, 147, 253, 0.5);
    border-radius: 10px;
    overflow: hidden;
  }

  #large-video {
    position: absolute;
    width: 100%;
    max-width: 1340px;
    object-fit: cover;
    z-index: 6;
    display: none;
  }

  .small-video-box {
    display: none;
  }

  .video-information {
    left: 25px;
    height: 30px;
    border-radius: 15px;
  }

  .preview-play-icon {
    width: 100px;
    height: 100px;
    z-index: 5;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
  }

  .preview-play-icon img {
    width: 50px;
    height: 50px;
  }
}

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


/* ---- My Skills Summed Up ---- */

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

.my-skills {
  background-color: #f2f2f2;
  width: 100%;
  position: relative;
  z-index: 1;
}

.skills-container {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px 15px;
  margin: 0px;
}

.skill {
  padding: 0;
  width: 100%;
  max-width: 182px;
  margin: 0px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  z-index: 1;
  flex-basis: calc(50% - 10px);
}

.skill-icon {
  padding: 0;
  margin-top: 5px;
  width: 82px;
  height: 82px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 5px solid #191919;
  border-radius: 50%;
}

.skill-icon img {
  width: 60%;
}

.skill-icon::before {
  content: "";
  border: none;
  position: absolute;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  margin: 0;
  width: 82px;
  height: 82px;
  bottom: -10px;
  left: -10px;
  z-index: -1;
  border-radius: 50%;
}

.skill-icon::after {
  content: "";
  border: none;
  position: absolute;
  background-color: color(display-p3 0.2667 0.4471 0.7686);
  margin: 0;
  width: 82px;
  height: 82px;
  top: -10px;
  right: -10px;
  z-index: -1;
  border-radius: 50%;
}

.skill-title {
  font-size: 15px;
  font-weight: 700;
  color: #191919;
  margin-top: 25px;
  margin-bottom: 10px;
}

.skill-text {
  font-size: 10px;
  font-weight: 300;
  color: #191919;
  margin: 0px;
  margin-bottom: 50px;
  line-height: 14px;
  text-align: center;
}


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

@media screen and (min-width: 576px) {
  .skills-flex {
    display: flex;
    justify-content: center;
  }

  .skills-container {
    max-width: 606px;
  }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .skills-container {
    max-width: 1440px;
    padding: 0px 25px;
  }

  .skill {
    max-width: calc(400px + 40px / 3);
    margin: 0px 25px;
  }

  .skill-icon {
    width: 100px;
    height: 100px;
    margin: 0;
    margin-top: 8px;
    border: 8px solid #191919;
  }

  .skill-icon::before,
  .skill-icon::after {
    width: 100px;
    height: 100px;
  }

  .skill-icon::before {
    bottom: -16px;
    left: -16px;
  }

  .skill-icon::after {
    top: -16px;
    right: -16px;
  }

  .skill-title {
    font-size: 20px;
  }

  .skill-text {
    font-size: 15px;
    line-height: 22px;
  }
}

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


/* ---- What Drives Me On ---- */

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

.my-drive {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.drive-text {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  line-height: 16px;
  margin: 25px 20px 0px 20px;
}

#drive-vector {
  width: calc(100% - 100px);
  max-width: 650px;
  margin: 0px 50px;
}

.drive-vector-container {
  display: flex;
  justify-content: center;
}


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

@media screen and (min-width: 576px) {
  .drive-text {
    margin: 25px 30px 0px 30px;
  }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
  .drive-text {
    font-size: 15px;
    line-height: 25px;
    max-width: 1340px;
    margin: 25px 50px 0px 50px;
  }

  .text-container {
    display: flex;
    justify-content: center;
  }
}

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


/* ---- 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;
  }
}

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