.slider {
  height: 100vh;
  margin-top: -50px;
  position: relative;
  margin-bottom: 20rem;
}

.slider .list .item {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: .5s;
}

.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .list .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, #041010 1%, transparent);
}

.slider .list .item .content {
  position: absolute;
  left: 10%;
  top: 30%;
  width: 580px;
  max-width: 80%;
  z-index: 1;
}

.slider .list .item .content p:nth-child(1) {
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 15px;
  color: #fff;

}

.slider .list .item .content p:nth-child(3) {
  color: #fff;

  line-height: 20px;
  letter-spacing: 1.3px;
}

.slider .list .item .content h2 {
  font-size: 50px;
  margin: 0;
  color: #fff;
  margin-bottom: 15px;

}

.slider .list .item.active {
  opacity: 1;
  z-index: 10;
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}


.slider .list .item .content p:nth-child(1),
.slider .list .item .content h2,
.slider .list .item .content p:nth-child(3) {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 2.4s ease-in-out 1 forwards;
}

.slider .list .item .content h2 {
  animation-delay: 2.4s;

}

.slider .list .item .content p:nth-child(3) {
  animation-duration: 1.3s;
  margin-bottom: 20px;
}

.arrows {
  position: absolute;
  top: 30%;
  right: 50px;
  z-index: 100;
}

.arrows button {
  background: #eee5;
  border: none;
  font-family: monospace;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: x-large;
  color: #eee;
  transition: .5s;
}

.arrows button:hover {
  background: #eee;
  color: black;
}

.thumbnail {
  position: absolute;
  bottom: -33.8px;
  z-index: 11;
  display: flex;
  gap: 10px;
  width: 100%;
  height: 250px;
  padding: 0 50px;
  overflow-x: auto;
  box-sizing: border-box;
  justify-content: center;
}

.thumbnail::-webkit-scrollbar {
  width: 0;
}

.thumbnail .item {
  width: 150px;
  height: 220px;
  filter: brightness(.75);
  transition: .5s;
  flex-shrink: 0;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.thumbnail .item.active {
  filter: brightness(1.3);
}

.thumbnail .item.active .content{
  color: #D8AB81;
  font-weight: 600;
  padding: 10px;
  text-shadow: rgb(0, 0, 0) 1px 1px 1px;
}

.thumbnail .item .content {
  position: absolute;
  inset: auto 10px 10px 10px;
  color: white;
  font-weight: 600;
  z-index: 0;
  background: #071a1a;
  border-radius: 15px;
  padding: 10px;
}

/* Buttons */

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 15px 25px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-primary);
  border-radius: 10px;
}

.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}

.blob-btn:hover {
  color: #fff;
}

.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
  font-weight: bolder;
}

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45px;
  border-radius: 8px;
  background: #ffffff;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}

.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 35%;
  height: 100%;
  background: #092022;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

#services {
  position: absolute;
  right: 0;
  top: 0;
}

#sevices-button {
  margin-top: 25px;
}

@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}



/* Section Sobre Nos */


.sobreNos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 0;
  padding: 0 10%;
  padding-bottom: 20rem;
}

.imgBoss img {
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 1px 1px 10px 3px rgba(216, 171, 129, 0.48);
  transition: all .5s ease-in-out;
}


.imgBoss img:hover {
  transform: translateY(-5px);
}

.sobreNos .descriptionBranding {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: 70%;
  margin-left: 120px;
}

.target-frase {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.target-frase p {
  font-weight: 700;
  color: #D8AB81 !important;

  width: 229px;
}

#target {
  font-size: 17px;
  color: #B5B4B4;
  margin-bottom: 0;
  margin-right: 0;
}

.sobreNos h1 {
  color: #fff;

  font-size: 40px;
}

.sobreNos p {
  color: #fff;

  line-height: 20px;
  letter-spacing: 1.3px;
}

.branding-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.branding-item #Innovation {
  margin: 0 auto auto auto;
}

.branding-item #flashlight {
  margin: 0 auto auto auto;
}

.branding-item .brandingImage {
  background: rgb(183, 148, 114);
  padding: 9px 10px 9px 10px;
  border-radius: 100%;
}

.branding-item .brandingImage img {
  height: auto;
  width: 35px;
  filter: contrast(150%);
}

.branding-item h3 {
  color: #fff;
  padding-bottom: 15px;

}

.sobre-companhia {
  max-width: 1000px;
  margin: auto;
  padding: 60px 0 0 140px;
  color: #eee;
  font-family: 'Roboto', sans-serif;
}

.section-title {
  margin-bottom: 0.5em;
  /* 16px */
  color: #fff;
  font-size: 40px;
}



.lead {
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.6;
  /* ~28.8px */
  margin-bottom: 2em;
  /* 32px */
}

.valores {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  /* 32px entre itens */
}

.valor {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  /* 16px entre ícone e texto */
}

.valor .icon {
  font-size: 1.5rem;
  /* 24px */
  line-height: 1;
}

.valor h3 {
  margin: 0 0 0.25em;
  /* 4px abaixo do título */
  font-size: 1.25rem;
  /* 20px */
  color: #fff;
}

.valor p {
  margin: 0;
  font-size: 1rem;
  /* 16px */
  line-height: 1.5;
  /* 24px */
}



/* Pilares */

.pilares {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 0 10%;
  padding-bottom: 10rem;
  gap: 150px;
}

.pilares h1 {
  color: #fff;
  font-size: 40px;
  line-height: 30px;
}

.descriptionPillars {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  border-radius: 20px;
  background: rgb(6, 31, 31);
}

.descriptionPillars h4 {
  color: #fff;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
}

.descriptionPillars div {
  position: relative;
  width: 380px;
  margin: 0 auto;
  /* background: rgb(6, 31, 31); */
  padding: 5px 35px;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

/* .descriptionPillars div::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: white;
  opacity: 0.03;
  /* super transparente */
/* border-radius: 50%; */
/* filter: blur(30px); */
/* suaviza a borda */
/* pointer-events: none; */
/* não interfere no clique */
/* z-index: 0; */
/* }  */

.descriptionPillars div * {
  position: relative;
  z-index: 1;
}

.descriptionPillars div p {
  color: white;
  line-height: 20px;
  letter-spacing: 1.3px;
  font-size: 1.125rem;
}

#missao {
  padding-top: 30px;
}

#valores {
  padding-bottom: 30px;
}


/* Video Container */

.video-container {
  max-width: 354px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.09), rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

/* social medias */
.navbar-medias {
  position: fixed;
  left: -16px;
  top: 40vh;
  z-index: 9998;
}

.box {
  width: 65px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 5px;
  margin: 0.6rem;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s ease;
}

.box:hover {
  width: 200px;
  color: #fff;
  border-radius: 10px;
  background: #25d366;
  box-shadow: 0 0 50px #25d3657e;
}


.box:hover .icon {
  background-color: transparent;
  color: #fff;
}

.box:nth-child(1):hover .icon a i {
  background-color: transparent;
  color: #fff !important;
}

.box:nth-child(1):hover p a {
  color: #fff !important;
}

.box:nth-child(2):hover {
  background-color: #c32aa3;
  box-shadow: 0 0 50px #b315917c;
}

.box:nth-child(2):hover .icon {
  background-color: transparent;
  color: #fff;
}

.box:nth-child(2):hover .icon a i {
  background-color: transparent;
  color: #fff !important;
}

.box:nth-child(2):hover p a {
  color: #fff !important;
}

.navbar-medias p {
  transform: translate(60px);
}

.navbar-medias p>a {
  text-decoration: none;
  color: #041010;
}

.navbar-medias a {
  text-decoration: none;
  color: black;
}



.box .icon {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  margin-right: 10px;
  transition: all .4s ease;
}

.instagram {
  background: #c32aa3;
}

.whatsapp {
  background: #25d366;
}

/* ELysium Introduction */

.introduction {
  position: relative;
  width: 100%;
  margin-bottom: 20rem;
}

.imgIntro {
  position: relative;
  width: 76%;
  right: 0;
  left: 20%;
  z-index: 1;
}

.imgIntro>img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.descriptionIntro {
  position: absolute;
  background: rgba(6, 31, 31, 0.899);
  z-index: 3;
  top: 220px;
  left: 200px;
  border-radius: 15px;
  backdrop-filter: blur(1px);
  width: 700px;
  padding: 40px;
}

.descriptionIntro h4 {
  color: #fff;
  padding: 10px 10px 0px;
}

.descriptionIntro h1 {
  color: #fff;
  padding: 0px 10px 10px 8px;

  font-size: 40px;
  line-height: 40px;
}

.descriptionIntro p {
  color: #fff;
  padding: 10px;
  font-size: 1.125rem;
}

/* Section Elysium Slider Information*/

.elysium h1 {
  color: #fff;
  margin-bottom: 40px;
}

/* Fim do Container Slider */

#elysiumTitle {
  text-align: center;
  font-size: 40px;
  line-height: 60px;
}

.pin_container {
  width: 93vw;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--card_width));
  grid-auto-rows: var(--row_increment);
  justify-content: center;
  margin: 0 50%;
}


.card {
  padding: 0px;
  margin: 15px 10px;
  border-radius: var(--card_border_radius);
  overflow: hidden;
  cursor: pointer;
}

.card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.card img:hover {
  transform: scale(1.3);
}

#cardSmall {
  opacity: 1 !important;
  transform: none !important;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay img {
  max-width: 70%;
  max-height: 70%;
}

.overlay.active {
  display: flex;
}

.card_small {
  grid-row-end: span var(--card_small);
}

.card_medium {
  grid-row-end: span var(--card_medium);
}

.card_large {
  grid-row-end: span var(--card_large);
}

/* CTA */

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  top: 250px;
  width: 75%;
  background-color: rgb(6, 31, 31);
  overflow: hidden;
  margin: 0 auto;
  margin: 0 200px 0;
  padding: 30px 30px 30px;
  border-radius: 25px;
}

.cta::before {
  content: '';
  position: absolute;
  top: -146px;
  left: 237px;
  width: 676px;
  height: 648px;
  background: white;
  opacity: 0.03;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.cta h1 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
}

.cta p {
  color: #fff;
  font-size: 1.125rem;
}

.ctaButton {
  text-decoration: none;
}

.cssbuttons-io-button {
  background: #fff;
  color: black;
  font-family: inherit;
  padding: 0.35em;
  padding-right: 0.35em;
  padding-left: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  justify-content: center;
  width: 100%;
}

.cssbuttons-io-button p {
  color: black;
  font-weight: 600;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: black;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

@media (max-width: 815px) {
  main {
    height: 674vh !important;
  }

  .lines {
    height: 673vh !important;
  }
}

@media (max-width: 768px) {

  main {
    height: 1363vh !important;
    overflow: hidden;
  }

  .lines {
    height: 1363vh !important;
  }

  .video-container {
    width: 305px;
  }

  .sobreNos {
    flex-direction: column;
    gap: 20px;
  }

  .sobre-companhia {
    padding: 60px 0 0 30px;
  }

  /* 
  .pilares {
    gap: 100px;
    padding-bottom: 20rem;
  }

  .pilares h1 {
    line-height: 47px;
  } */
  /* 
  .imgIntro {
    position: relative;
    width: 100%;
    right: 0;
    left: 0%;
    z-index: 1;
  } */

  .cta {
    top: 3499px;
    width: 90%;
    margin: 0 auto;
    margin-left: 30px !important;
  }

  /* 
  .introduction {
    margin-bottom: 10rem;
  }

  .descriptionIntro {
    top: 244px;
    left: 4%;
  } */

}

@media (max-width: 678px) {
  .thumbnail {
    justify-content: start;
    height: 238px;
  }

  .slider .list .item .content h2 {
    font-size: 60px;
  }

  .arrows {
    top: 22%;
  }
}

@media (max-width: 480px) {

  /* Section de Slider */
  .slider .list .item .content h2 {
    font-size: 41px;
  }

  .slider .list .item .content {
    left: 13%;
  }

  .thumbnail {
    bottom: -148.8px;
  }

  .arrows {
    top: 20%;
  }

  /* section do sobre nos */
  .sobreNos {
    flex-direction: column;
    padding-bottom: 20rem;
  }

  .sobre-companhia {
    padding: 60px 10px 0 10px;
  }

  /* .pilares {
    flex-direction: column;
    padding-bottom: 20rem;
  }
    */

  .pilares {
    padding: 0 13%;
  }

  /* .imgIntro {
    position: relative;
    width: 100%;
    right: 0;
    left: 0%;
    z-index: 1;
    margin: 21px;
  } */

  .elysium h1 {
    padding: 50px;
  }

  /* .imgIntro>img {
    width: 90%;
  } */

  /* .descriptionIntro {
    position: relative;
    background: rgba(6, 31, 31, 0.899);
    z-index: 3;
    top: 0;
    left: 0;
    border-radius: 15px;
    backdrop-filter: blur(1px);
    width: 90%;
    padding: 40px;
    margin: 20px;
  } */

  #nav-menu {
    padding-top: 84px;
  }

  .pilares h1 {
    line-height: 45px;
    width: 105%;
    padding-left: 2px;
  }

  .overlay img {
    max-width: 100%;
  }

  main {
    height: 1235vh !important;
  }

  .lines {
    height: 1230vh !important;
  }

  .cta {
    margin: 0;
    margin-left: 0px;
    top: 316px !important;
    width: 71%;
    left: 15%;
    margin-left: 0px !important;
  }

  .cta p {
    text-align: center;
    font-size: 1rem;
  }

  .cta h1 {
    text-align: center;
  }
}

/* Tablets e laptops pequenos */
@media (max-width: 1024px) {
  .pilares {
    flex-direction: column;
    gap: 80px;
    text-align: center;
  }

  .pilares h1 {
    font-size: 40px;
    line-height: 36px;
  }

  .descriptionPillars div {
    width: 80%;
    padding: 5px 25px;
  }
}

/* Telemóveis grandes */
@media (max-width: 768px) {
  .pilares {
    padding-bottom: 10rem;
    gap: 60px;
  }

  .pilares h1 {
    font-size: 40px;
    line-height: 32px;
  }

  .descriptionPillars h4 {
    font-size: 18px;
  }

  .descriptionPillars div {
    width: 90%;
    padding: 5px 20px;
  }

  .descriptionPillars div p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* Telemóveis pequenos */
@media (max-width: 480px) {
  .pilares {
    padding-bottom: 20rem;
  }

  .pilares h1 {
    font-size: 35px;
  }

  .descriptionPillars div {
    width: 95%;
  }

  .descriptionPillars div p {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }
}


/* Tablets e laptops pequenos */
@media (max-width: 1024px) {
  .imgIntro {
    width: 90%;
    left: 5%;
  }

  .descriptionIntro {
    width: 80%;
    left: 10%;
    top: 180px;
    padding: 30px;
  }

  .descriptionIntro h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .descriptionIntro p {
    font-size: 1rem;
  }
}

/* Telemóveis grandes e tablets verticais */
@media (max-width: 768px) {
  .imgIntro {
    width: 95%;
    left: 2.5%;
  }

  .descriptionIntro {
    position: static;
    width: 100%;
    margin-top: 2rem;
    padding: 25px;
    border-radius: 12px;
    margin-left: 68px;
    margin-right: 62px;
    width: 70%;
  }

  .descriptionIntro h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .descriptionIntro p {
    font-size: 0.95rem;
  }
}

/* Telemóveis pequenos */
@media (max-width: 480px) {
  .descriptionIntro {
    padding: 20px;
  }

  .descriptionIntro h1 {
    font-size: 35px;
    line-height: 40px;
    padding-top: 5px;
  }

  .descriptionIntro p {
    font-size: 0.9rem;
  }

  .imgIntro>img {
    width: 74%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    margin-left: 56px;
  }
}

@media (max-width: 1500px) {
  main {
    height: 856vh;
  }
}

/* Telas grandes (ajuste fino) */
@media (max-width: 1130px) {
  .pin_container {
    margin: 0 51%;
  }

  .cta {
    top: 160px;
    margin-left: 100px;
  }

  main {
    height: 951vh;
  }

  .lines {
    height: 949vh;
  }

  .video-container {
    width: 888px;
    height: 535px;
    margin-top: 100px;
  }

  .sobre-companhia {
    padding: 60px 0 0 60px;
  }

}

/* Tablets */
@media (max-width: 768px) {
  .pin_container {
    margin: 0 50%;
  }
}

/* Telemóveis grandes */
@media (max-width: 480px) {
  .pin_container {
    margin: 0 50%;
  }

  #elysiumTitle {
    text-align: center;
    font-size: 35px;
    padding-left: 50px;
    padding-bottom: 10px;
  }

  .section-title {
    font-size: 35px;
  }

  .video-container video {
    width: 103%;
    height: 100%;
    display: block;
    border: none;
  }

  .video-container {
    width: 295px;
    height: 535px;
    margin-top: 100px;
  }

  .sobre-companhia {
    padding: 60px 0 0 20px;
  }

  .card {
    margin: 15px 40px;
  }

}


@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {

  /* CSS específico para iPhone SE 2nd Gen */
  main {
    height: 1570vh !important;
  }
}

@media screen and (min-width: 374px) and (max-width: 376px) and (min-height: 811px) and (max-height: 813px) and (-webkit-device-pixel-ratio: 3) {
  main {
    height: 1290vh !important;
  }
}

@media screen and (min-width: 426px) and (max-width: 430px) and (min-height: 924px) and (max-height: 928px) and (-webkit-device-pixel-ratio: 3) {
  main {
    height: 1146vh !important;
  }

  .lines {
    height: 1144vh !important;
  }
}






/* Telemóveis pequenos */
@media (max-width: 360px) {

  .slider .list .item .content h2 {
    font-size: 42px;
  }

  .pin_container {
    margin: 0 50%;
  }

  #nav-menu {
    left: -143%;
  }

  .cta h1 {
    font-size: 35px;
  }

  .cssbuttons-io-button>p {
    width: 150px;
  }

  main {
    height: 1500vh !important;
  }

  .lines {
    height: 1400vh !important;
  }

}

@media (max-width: 396px) {
  #nav-menu {
    left: -143%;
  }

  main {
    height: 1253vh;
  }

  .lines {
    height: 1252vh;
  }

  .cta {
    top: 140px !important;
  }
}