@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Frank+Ruhl+Libre:wght@300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap");
html {
  background-color: #000000;
  background: rgb(0, 0, 0);
}

/* Grid*/
.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*=col-] {
  float: left;
  padding: 15px;
}

/* For mobile phones: */
[class*=col-] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
/*Grid End*/
h2 {
  font-family: "Montserrat";
}

.section__title {
  font-family: Frank Ruhl Libre;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0rem;
}

.logo-wrapper {
  display: block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 7rem;
  top: 2em;
  z-index: 3;
  visibility: hidden;
}
.logo-wrapper .logo {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  opacity: 50%;
}
.logo-wrapper .logo:hover {
  transform: translate3d(0, 0, 0) scale(1.1);
  transition: transform 300ms ease-out 0ms, opacity 300ms ease-out 0ms;
  opacity: 100%;
}
@media all and (min-width: 700px) {
  .logo-wrapper {
    visibility: visible;
  }
}

.language-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 3rem;
  position: absolute;
  right: 7%;
  top: 2em;
  z-index: 3;
  text-decoration: none;
  overflow: hidden;
}
@media all and (min-width: 700px) {
  .language-wrapper {
    right: 7rem;
  }
}

.language {
  font-family: "Montserrat";
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: inline-block;
  padding: 0.2em 0;
  position: relative;
  overflow: hidden;
  opacity: 50%;
}
.language:hover {
  transform: translate3d(0, 0, 0) scale(1.1);
  transition: transform 300ms ease-out 0ms, opacity 300ms ease-out 0ms;
  opacity: 100%;
}
@media all and (min-width: 700px) {
  .language {
    visibility: visible;
  }
}

.language:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2em;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
  transform: translate3d(-100%, 0, 0);
  overflow: hidden;
}

.language:hover::after,
.language:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
  transform: translate3d(0, 0, 0);
}

.language-alternative {
  width: fit-content;
  margin-left: 1em;
  margin-right: 1em;
  color: #ffffff;
  font-family: "Montserrat";
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  opacity: 50%;
}
.language-alternative:hover {
  opacity: 100%;
  transition: opacity 300ms, transform 300ms;
}

#toggle {
  display: none;
}

/**
  Hamburger
**/
.hamburger {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 2em;
  left: 7%;
  width: 2em;
  height: 3rem;
  visibility: visible;
  opacity: 50%;
  z-index: 5;
}
@media all and (min-width: 700px) {
  .hamburger {
    visibility: hidden;
  }
}

.hamburger div {
  position: relative;
  width: 2em;
  height: 3px;
  background-color: #ffffff;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}

/**
Nav Styles
**/
.nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000000;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
  z-index: 3;
}

.nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
}

.burger-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.burger-nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: Frank Ruhl Libre;
  font-weight: 400;
  font-size: 2rem;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #6ecddd;
  font-size: 2em;
  display: inline-block;
  margin-top: 1.25em;
  transition: color 0.2s ease-in-out;
  letter-spacing: 1px;
}

nav a:before {
  content: "";
  height: 0;
  position: absolute;
  width: 0.25em;
  background-color: white;
  left: -0.5em;
  transition: all 0.2s ease-in-out;
}

nav a:hover {
  color: white;
}

nav a:hover:before {
  height: 100%;
}

/**
Animations
**/
#toggle:checked + .hamburger .top-bun {
  transform: rotate(-45deg);
}

#toggle:checked + .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}

#toggle:checked + .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -3px;
}

#toggle:checked + .hamburger + .nav {
  top: 0;
  transform: scale(1);
}

/*side-nav start*/
.sidenav {
  width: 5rem;
  height: 15rem;
  position: absolute;
  right: 2em;
  top: 50vh;
  overflow: hidden;
  visibility: hidden;
  z-index: 100;
  transform: translateY(-50%);
  scroll-behavior: smooth;
}
@media all and (max-width: 700px) {
  .sidenav {
    visibility: hidden;
  }
}

.side-nav__link {
  width: 3px;
  margin-top: 10px;
  display: block;
  transition: 0.3s;
  scroll-behavior: smooth;
}

.nav-item.active {
  background-color: #ffffff;
  scroll-behavior: smooth;
}

.side-nav__bullet {
  width: 3px;
  height: 28px;
  display: block;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  scroll-behavior: smooth;
}

.side-nav__bullet.active {
  background-color: #ffffff;
}

/*side-nav end*/
#Title {
  font-family: "Frank Ruhl Libre";
  font-size: calc(50px + 5vw);
  margin-bottom: 0%;
}
@media all and (min-width: 1000px) {
  #Title {
    font-size: 6rem;
    margin-bottom: 0px;
  }
}

#sub {
  font-weight: 100;
  font-size: 1.5em;
  position: relative;
  top: -2%;
  margin: 0;
  text-align: center;
}
.preloader {
  display: flex;
  background-color: rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 140%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  transition: opacity 0.5s linear;
}
@media all and (min-width: 1000px) {
  .preloader {
    background-size: 50%;
  }
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  color: #ffffff;
  background-position: center;
  background-size: 300vw;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media all and (min-width: 1000px) {
  body {
    background-size: 80%;
  }
}
body .header-nav-wrapper {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: fit-content;
  position: absolute;
  top: 3em;
  z-index: 2;
  visibility: hidden;
}
body .header-nav-wrapper .nav-link {
  width: fit-content;
  margin-left: 1em;
  margin-right: 1em;
  color: #ffffff;
  font-family: "Montserrat";
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  opacity: 50%;
}
body .header-nav-wrapper .nav-link:hover {
  opacity: 100%;
  transition: opacity 300ms, transform 300ms;
}
@media all and (min-width: 700px) {
  body .header-nav-wrapper {
    visibility: visible;
  }
}
body .home-video {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
body .home-img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}
body .container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.01) -8.33%, rgba(255, 255, 255, 0.01) 100%);
  background-blend-mode: overlay;
  backdrop-filter: blur(0px);
  background-color: rgba(0, 0, 0, 0.631372549);
}
@media all and (min-width: 1000px) {
  body .container {
    scroll-snap-type: y mandatory;
    backdrop-filter: blur(60px);
    backdrop-filter: blur(0px);
  }
}
body .container section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  scroll-snap-align: start;
}
@media all and (min-width: 1000px) {
  body .container section {
    height: 100vh;
  }
}
body .container section:nth-of-type(1) {
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
}
body .container section:nth-of-type(1) #home {
  width: 80vw;
  height: fit-content;
  display: flex;
  grid-area: 2/3/5/11;
  justify-content: center;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(1) #home {
    margin-top: 10%;
    width: 50vw;
    height: 50vh;
  }
}
body .container section:nth-of-type(1) .home__inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
body .container section:nth-of-type(1) .wrapper__contact {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(1) .wrapper__contact {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
body .container section:nth-of-type(1) #myVideo {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body .container section:nth-of-type(1) #video {
  position: relative;
  top: 0;
  left: 0;
  width: 50vw;
  height: 50vh;
}
body .container section:nth-of-type(1) .gradient {
  width: 100vw;
  height: 10rem;
  position: sticky;
  top: 90%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%);
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(1) .gradient {
    height: 25%;
  }
}
body .container section:nth-of-type(1) .blur {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(1) .blur {
    height: 100%;
  }
}
body .container section:nth-of-type(2) {
  background-color: #000000;
  color: green;
}
body .container section:nth-of-type(2) .content {
  width: 80vw;
  height: fit-content;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 75%;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(2) .content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 60vw;
    background-size: 30%;
    background-position: 95% 30%;
  }
}
body .container section:nth-of-type(2) .content .wrapper-about {
  /* Scroller styling */
}
body .container section:nth-of-type(2) .content .wrapper-about .section__title {
  margin-bottom: 1em;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(2) .content .wrapper-about .section__title {
    margin-bottom: 0rem;
  }
}
body .container section:nth-of-type(2) .content .wrapper-about .lead {
  color: #ffffff;
  font-weight: 100;
  font-size: 3rem;
  margin: 0%;
  text-transform: uppercase;
  line-height: 1em;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(2) .content .wrapper-about .lead {
    font-size: 5.3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
body .container section:nth-of-type(2) .content .wrapper-about .scroller {
  height: 6em;
  line-height: 1em;
  position: relative;
  overflow: hidden;
  width: 40em;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(2) .content .wrapper-about .scroller {
    height: 14em;
    line-height: 6rem;
    width: 100%;
  }
}
body .container section:nth-of-type(2) .content .wrapper-about .scroller > h2 {
  position: absolute;
  top: 0;
  animation: slide 20s infinite;
  font-weight: 800;
}
@keyframes slide {
  0% {
    top: 0em;
  }
  20% {
    top: -3em;
  }
  40% {
    top: -6em;
  }
  60% {
    top: -9em;
  }
  80% {
    top: -12em;
  }
}
@media all and (min-width: 1000px) {
  @keyframes slide {
    0% {
      top: 0;
    }
    20% {
      top: -3em;
    }
    40% {
      top: -6em;
    }
    60% {
      top: -9em;
    }
    80% {
      top: -12em;
    }
  }
}
body .container section:nth-of-type(2) .content .wrapper-about .about-me__text {
  color: #ffffff;
  font-family: inter;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  opacity: 50%;
  margin-top: 1em;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(2) .content .wrapper-about .about-me__text {
    width: 32rem;
    text-align: justify;
    hyphens: auto;
  }
}
body .container section:nth-of-type(2) .content .wrapper-elia {
  width: 40rem;
  height: 40rem;
  right: -54%;
  top: -70%;
  position: relative;
  background-position: 80% 50%;
  background-size: 40%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
body .container section:nth-of-type(2) .about__img {
  max-width: 100%;
  margin-bottom: 3rem;
  margin-top: 2rem;
  justify-content: center;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(2) .about__img {
    max-width: 22rem;
    margin-right: 3rem;
    margin-bottom: 2rem;
  }
}
body .container section:nth-of-type(3) {
  background-color: #000000;
  color: green;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .container section:nth-of-type(3) .content {
  width: 80vw;
  height: fit-content;
  overflow: hidden;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  /*.wrapper-elia {
            width: 40rem;
            height: 40rem;
            right: -54%;
            top: -70%;
            position: relative;
            background-position: 80% 50%;
            background-size: 40%;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }*/
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(3) .content {
    width: 60vw;
    height: 80vh;
    justify-content: center;
    background-size: 110%;
    background-position: -140% 40%;
    flex-direction: column-reverse;
  }
}
body .container section:nth-of-type(3) .content .wrapper-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  margin-bottom: 1rem;
}
body .container section:nth-of-type(3) .content .wrapper-about .section__title {
  margin-top: 0;
  text-align: center;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(3) .content .wrapper-about .section__title {
    text-align: left;
    flex-direction: column;
    margin-top: 25rem;
  }
}
body .container section:nth-of-type(3) .content .wrapper-about .lead {
  color: #ffffff;
  font-weight: 100;
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
  line-height: 1em;
  opacity: 70%;
  text-align: center;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(3) .content .wrapper-about .lead {
    font-size: 3rem;
    text-align: center;
  }
}
body .container section:nth-of-type(3) .content .wrapper-about .video-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
body .container section:nth-of-type(3) .content .wrapper-about .video-laptop {
  position: relative;
  left: -100%;
  top: -15%;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg); /* Safari and Chrome */
  -moz-transform: rotateY(180deg); /* Firefox */
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(3) .content .wrapper-about .video-laptop {
    top: 0%;
  }
}
body .container section:nth-of-type(3) .content .laptop__img {
  max-width: 16rem;
  margin-top: 14rem;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(3) .content .laptop__img {
    max-width: 35rem;
    margin-top: 0;
  }
}
body .container section:nth-of-type(4) {
  display: flex;
  justify-content: center;
  color: green;
  height: fit-content;
  width: fit-content;
  min-width: 100vw;
  background-color: #000000;
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(4) {
    min-height: 100vh;
  }
}
body .container section:nth-of-type(4) .content {
  width: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .container section:nth-of-type(4) .content .card-wrapper {
  width: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media (max-width: 1000px) {
  body .container section:nth-of-type(4) .content .card-wrapper {
    flex-direction: column;
  }
}
body .container section:nth-of-type(5) {
  display: flex;
  justify-content: center;
  align-items: center;
  color: green;
  height: fit-content;
  width: fit-content;
  min-width: 100vw;
  background-color: #000000;
  /*Card Start*/
}
@media all and (min-width: 1000px) {
  body .container section:nth-of-type(5) {
    min-height: 100vh;
  }
}
body .container section:nth-of-type(5) .content {
  width: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body .container section:nth-of-type(5) .content .card-wrapper {
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 1000px) {
  body .container section:nth-of-type(5) .content .card-wrapper {
    flex-direction: column;
    justify-content: center;
    width: auto;
  }
}
body .container section:nth-of-type(5) .reference-card {
  width: 21rem;
  height: 30rem;
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  margin: 0.5em;
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__overlay {
  opacity: 1;
  z-index: 1;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__no-hover {
  opacity: 0;
  z-index: 10;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__hover {
  opacity: 1;
  z-index: 10;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__hover .reference-card__title {
  opacity: 1;
  transform: translateY(0);
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__hover .reference-card__bar {
  transform: translateY(0);
  opacity: 1;
  height: 4px;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__hover .reference-card__subtitle {
  opacity: 1;
  transform: translateY(0);
}
body .container section:nth-of-type(5) .reference-card:hover .reference-card__bg_black,
body .container section:nth-of-type(5) .reference-card:hover .reference-card__bg {
  transform: translate3d(0, 0, 0) scale(1.05);
  transition: transform 300ms ease-out 0ms, opacity 300ms ease-out 0ms;
  opacity: 1;
  z-index: 9;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: 0.5s opacity;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__no-hover {
  transition: opacity 300ms ease-out;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__hover {
  opacity: 0;
  transition: opacity 300ms ease-out;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__title {
  bottom: 20%;
  left: -15%;
  opacity: 0;
  font-family: "Montserrat";
  transform: translateY(10%);
  transition: opacity 300ms ease-out 0ms, transform 500ms ease-out 0ms;
}
body .container section:nth-of-type(5) .reference-card .reference-card__bar {
  background-color: #ffffff;
  height: 4px;
  bottom: 10%;
  width: 80%;
  left: 5%;
  transform: translateY(10%);
  transition: opacity 900ms ease-out 100ms, transform 900ms ease-out 100ms;
  color: #000000;
  font-family: Montserrat;
  font-weight: 900;
}
body .container section:nth-of-type(5) .reference-card .reference-card__subtitle {
  top: 40%;
  left: -15%;
  opacity: 0;
  font-family: "Montserrat";
  transform: translateY(10%);
  transition: opacity 300ms ease-out 0ms, transform 500ms ease-out 0ms;
}
body .container section:nth-of-type(5) .reference-card .reference-card__hover,
body .container section:nth-of-type(5) .reference-card .reference-card__no-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__bg_black,
body .container section:nth-of-type(5) .reference-card .reference-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 300ms ease-out 0ms, opacity 300ms ease-out 300ms;
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__bg_black {
  opacity: 1;
  mix-blend-mode: luminosity;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__title {
  position: absolute;
  bottom: 15%;
  left: 5%;
  font-family: "Montserrat";
  font-size: 3rem;
  color: #000000;
  pointer-events: none;
}
body .container section:nth-of-type(5) .reference-card .reference-card__bar {
  position: absolute;
  left: 5%;
  width: 50%;
  height: 4px;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  margin-top: 1em;
  border-radius: 20px;
}
body .container section:nth-of-type(5) .reference-card .reference-card__subtitle {
  position: absolute;
  bottom: 8%;
  left: 5%;
  width: 18rem;
  font-family: "Montserrat";
  font-size: 1em;
  color: #000000;
  pointer-events: none;
  visibility: hidden;
}
body .container .wrapper {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 1000px) {
  body .container .wrapper {
    justify-content: left;
  }
}
body .container .contact__link {
  display: block;
  width: 10rem;
  height: 40px;
  margin-top: 1rem;
  margin-bottom: 5rem;
  line-height: 40px;
  font-size: 18px;
  font-family: "Montserrat";
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4rem;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
  overflow: hidden;
}
@media all and (min-width: 1000px) {
  body .container .contact__link {
    width: 10rem;
    margin-bottom: 0;
  }
}
body .container .contact__link span {
  position: relative;
  z-index: 2;
}
body .container .contact__link:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: all 0.35s;
  border-radius: 4rem;
}
body .container .contact__link:hover {
  color: #000000;
  cursor: pointer;
}
body .container .contact__link:hover:after {
  width: 100%;
}
body .container .goal-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media all and (min-width: 1000px) {
  body .container .goal-wrapper {
    flex-direction: row;
  }
}
body .container .goal {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .container .goal-number-1 {
  font-size: 5rem;
  font-family: "Montserrat";
  font-weight: 900;
  background: linear-gradient(180deg, rgb(47, 141, 149) 0%, rgb(9, 22, 28) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media all and (min-width: 1000px) {
  body .container .goal-number-1 {
    font-size: 8rem;
  }
}
body .container .goal-number-2 {
  font-size: 5rem;
  font-family: "Montserrat";
  font-weight: 900;
  background: linear-gradient(180deg, rgb(47, 141, 149) 0%, rgb(9, 22, 28) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media all and (min-width: 1000px) {
  body .container .goal-number-2 {
    font-size: 8rem;
  }
}
body .container .goal-number-3 {
  font-size: 5rem;
  font-family: "Montserrat";
  font-weight: 900;
  background: linear-gradient(180deg, rgb(47, 141, 149) 0%, rgb(9, 22, 28) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media all and (min-width: 1000px) {
  body .container .goal-number-3 {
    font-size: 8rem;
  }
}
body .container .goal-text {
  font-family: Frank Ruhl Libre;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0rem;
  font-size: 1.5em;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: fit-content;
  position: absolute;
  bottom: 2em;
  z-index: 2;
}
.contact-wrapper .contact {
  width: fit-content;
  margin-left: 1em;
  margin-right: 1em;
  color: #ffffff;
  font-family: "Montserrat";
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  opacity: 50%;
}
.contact-wrapper .contact:hover {
  opacity: 100%;
  transition: opacity 300ms, transform 300ms;
}/*# sourceMappingURL=style.css.map */