/*

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

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

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

.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: 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: 300;
  color: color(display-p3 0.0588 0.5765 0.9922);
  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 {
  width: 100%;
  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 {
  height: 100%;
  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;
  min-height: 500px;
  background-color: none;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.main-des {
  margin: 5px;
}

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

#des-2 {
  font-size: 15px;
  max-width: 500px;
  font-weight: 500;
  margin: 0px 50px;
  margin-bottom: 25px;
}

.below {
  top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  height: 100vh;
}

.me-big {
  display: flex;
  justify-content: center;
  margin: 60px;
  width: 80%;
  position: relative;
  max-width: 500px;
  order: 1;
  flex-shrink: 1;
  flex-grow: 1;
}

.description {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #191919;
  order: 2;
  flex-shrink: 0;
  flex-grow: 0;
}

.img-container {
  display: none;
  max-width: 400px;
  max-height: 400px;
  position: absolute;
  border: 5px solid #191919;
  border-radius: 50%;
  background-image: url('../2-files/2-about-me/1-me/profilbild.jpg');
  background-size: cover;
  background-position: center;
}

.img-container-pseudos::before {
  width: 100%;
  height: 100%;
  content: "";
  border: none;
  position: absolute;
  background-color: color(display-p3 0.0588 0.5765 0.9922);
  margin: 0;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  animation: profileAnimationBefore 0.5s ease 300ms forwards;
}

.img-container-pseudos::after {
  width: 100%;
  height: 100%;
  content: "";
  border: none;
  position: absolute;
  background-color: color(display-p3 0.2667 0.4471 0.7686);
  margin: 0;
  top: 0px;
  right: 0px;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  animation: profileAnimationAfter 0.5s ease 300ms forwards;
}

@keyframes profileAnimationBefore {
  0% {
    opacity: 0;
    bottom: 0px;
    left: 0px;
  }

  100% {
    opacity: 1;
    bottom: -10px;
    left: -10px;
  }
}

@keyframes profileAnimationAfter {
  0% {
    opacity: 0;
    top: 0px;
    right: 0px;
  }

  100% {
    opacity: 1;
    top: -10px;
    right: -10px;
  }
}

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

.above {
  z-index: 2;
}


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

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


/* Desktops (992px+) */

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

  .description {
    position: relative;
    width: 60vw;
    max-width: 600px;
    height: 100%;
    padding: 0px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    order: 2;
    flex-shrink: 1;
  }

  .above {
    display: none;
  }

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

  #des-2 {
    font-size: 17px;
    max-width: 600px;
    line-height: 28px;
    margin: 0px 50px 30px 0px;
  }

  .me-big {
    position: relative;
    align-items: center;
    width: 40vw;
    max-width: 400px;
    max-height: 400px;
    height: 100%;
    order: 1;
    margin: 0px 58px;
    padding: 0;
    flex-shrink: 1;
  }

  .img-container {
    border: 8px solid #191919;
  }

  .img-container-pseudos::before {
    animation: largeProfileAnimationBefore 0.5s ease 300ms forwards;
  }

  .img-container-pseudos::after {
    animation: largeProfileAnimationAfter 0.5s ease 300ms forwards;
  }

  @keyframes largeProfileAnimationBefore {
    from {
      opacity: 0;
      bottom: 0px;
      left: 0px;
    }

    to {
      opacity: 1;
      bottom: -16px;
      left: -16px;
    }
  }

  @keyframes largeProfileAnimationAfter {
    from {
      opacity: 0;
      top: 0px;
      right: 0px;
    }

    to {
      opacity: 1;
      top: -16px;
      right: -16px;
    }
  }

  .below {
    display: flex;
    position: unset;
    margin: 0px auto;
    flex-direction: row;
    width: 100%;
    max-width: 1440px;
    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: 0;
    margin-top: 10px;
    margin-left: 10px;
  }

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

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

}

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


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

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


/* ---- Resume ---- */

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

.resume-container {
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
  margin: 0px 20px 25px 20px;
  border-radius: 10px;
  overflow: hidden;
}

.resume-date {
  width: 100%;
  background-color: #191919;
  margin-bottom: 20px;
}

.resume-date-text {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
  text-align: center;
}

.resume-headline {
  color: #191919;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin: 0px 25px 20px 25px;
}

.resume-text {
  color: #191919;
  font-weight: 300;
  font-size: 12px;
  text-align: left;
  margin: 0px 10px 20px 10px;
}


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

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


/* Desktops (992px+) */

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

  .resume {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .resume-container {
    margin: 0px 50px 25px 50px;
    max-width: 1340px;
  }

  .resume-head {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .resume-date {
    position: relative;
    width: 300px;
    border-radius: 0px 0px 0px 10px;
    background-color: #f2f2f2;
    order: 2;
  }

  .resume-date-text {
    padding: 20px;
    color: #191919;
  }

  .resume-headline {
    position: relative;
    top: 0;
    left: 0;
    order: 1;
    text-align: left;
    margin: 40px 20px 20px 20px;
    font-size: 20px;
    line-height: 22px;
  }

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

}

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


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

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