<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&amp;family=Noto+Serif:ital,wght@0,100..900;1,100..900&amp;display=swap");

:root {
  --tipography-title: "Noto Serif", serif;
  --tipography-text: "Noto Sans", sans-serif;
  --weight-regular: 400;
  --weight-bold: 700;
}

.nav {
  width: 100%;
  padding: 0.5rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;

  animation: blur auto linear both;
  animation-timeline: scroll(root block);
  animation-range: 0 200px;
  z-index: 99;
}

.nav__logo {
  width: 80px;
  height: 80px;
  padding: 2px;
  background-image: url("../assets/logo_ligth.png");
  background-size: cover;

  animation: logo auto linear both;
  animation-timeline: scroll(root block);
  animation-range: 0 200px;
}

.nav__icon {
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.icon__line {
  display: block;
  background-color: #00b956;
  height: 3px;
  width: 32px;
  margin: 8px 0;
  transition: all 0.3s;
  transform-origin: left;
}

.nav__list {
  width: 100%;
  height: auto;
  list-style: none;
  position: fixed;
  top: 96px;
  right: -100%;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #020626ed;
  transition: 0.5s all ease-in-out;
}

.nav__list.visibility {
  right: 0;
}

.nav__link {
  width: 100%;
  border-bottom: 1px solid #66666620;
  color: #00b956;
  text-decoration: none;
  font-family: var(--tipography-title);
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  display: inline-block;
  padding: 1rem 0;
  transition: color 0.3s ease-in-out, scale 0.5s ease-in-out;
}

.nav__link:hover {
  color: #020626;
  background-color: #00b956;
}

/*  #### FIN HEADER ##### */

/* #### INICIO MAIN ##### */

.entrycontent {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(#02062660, #02062660);
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.entrycontent__video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  object-fit: cover;
}

.scroll {
  width: 150px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  z-index: 10;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.scroll__icon {
  width: 40px;
  height: 80px;
  border: 1px #fff solid;
  border-radius: 24px;
  position: relative;
}

.scroll__text {
  font-family: var(--tipography-text);
  font-size: larger;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 24px;
}

.scroll__icon::before {
  content: "";
  position: absolute;
  left: 37%;
  top: 12px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;

  animation: trans_point linear 1.2s infinite;
  animation-direction: alternate;
}

.scroll:hover .scroll__icon,
.scroll:hover .scroll__icon::before {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.scroll:hover .scroll__text {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);

  animation: trans_point linear 0.7s forwards;
}

@keyframes trans_point {
  to {
    transform: translateY(18px);
  }
}

.section {
  width: 100%;
  padding: 6rem 1rem;
}

.section--services {
  background-color: #020626;
  color: #fff;
}

.section--testimony {
  background-color: #effaf4;
  color: #111111;
}

.section__title {
  color: #00b956;
  font-size: 1.25rem;
  font-family: var(--tipography-title);
  font-weight: var(--weight-bold);

  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 30%;
}

.section__description {
  font-size: 2rem;
  margin: 0;
  font-family: var(--tipography-title);
  font-weight: 500;

  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 30%;
}

.ctnCards {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card__prueba {
  width: 100%;
  background-color: #172273ab;
}

.ctnCards__card {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;

  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 30%;
}

.ctnCards__card--services {
  height: 330px;
  background-color: #0f1331d9;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  border-radius: 0.5rem;
}

.ctnCards__card--testimony {
  height: 400px;
  background-color: #fff;
  text-align: center;
}

.ctnCards__card &gt; h2 {
  margin: 0;
  font-family: var(--tipography-title);
}

.ctnCards__card &gt; h3 {
  margin: 0;
  font-family: var(--tipography-title);
}

.ctnCards__card &gt; p {
  line-height: 1.8;
  font-family: var(--tipography-text);
}

/* #### START SECTION CONTACT ####*/

.contact {
  width: 100%;
  padding: 7rem 1rem 2rem 1rem;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("../assets/world.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contact__form {
  height: 440px;
  background: #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 0 20px -10px #000;
  padding: 20px 30px;
  font-family: "Montserrat", sans-serif;

  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 30%;
}
.contact__form__title {
  margin: 10px 0;
  padding-bottom: 10px;
  width: 200px;
  color: #78788c;
  border-bottom: 3px solid #78788c;
}
input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-bottom: 2px solid #bebed2;
}
input:focus {
  border-bottom: 2px solid #78788c;
}
.contact__form__input:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: 14px;
  color: #5a5a5a;
}
.contact__form__button {
  float: right;
  padding: 8px 12px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  border: 2px solid #78788c;
  background: 0;
  color: #5a5a6e;
  cursor: pointer;
  transition: all 0.3s;
}
.contact__form__button:hover {
  background: #78788c;
  color: #fff;
}

.map {
  width: 100%;
  height: 440px;
  box-shadow: 0 0 20px -10px #000;
  border-radius: 8px;
  overflow: hidden;

  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 30%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

/*  #### FINISH SECTION CONTACT #### */

/* ### START FOOTER #### */

footer {
  background-color: #020202;
  color: #f2f2f2;
}

.footer__start {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  width: 100px;
  height: 100px;

  background-image: url("../assets/logo_ligth.png");
  background-size: cover;
}

.footer__navigation {
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.footer_start__title {
  font-size: 1.25rem;
  margin: 1rem 0 0 0;
  font-family: var(--tipography-title);
}

.footer__start__list {
  list-style: none;
  padding: 0;
}

.footer__start__item {
  text-align: center;
  padding: 0.5rem 0;
}

.footer__start__link:link,
.footer__start__link:visited {
  color: #f2f2f2;
  text-decoration: none;
  font-family: var(--tipography-title);
}

.footer__start__link:hover {
  color: #00b956;
  scale: 1.1;
}

.footer__start__link:active {
  color: #fff;
}

.footer__start__info {
  text-align: center;
}

.footer__list {
  margin: 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer__link:link,
.footer__link:visited {
  font-size: 2rem;
  color: #fff;
  padding: 1rem;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.footer__link:active {
  transform: scale(1.6);
  color: #00b956;
}

.footer__end p {
  text-align: center;
  margin: 0;
  padding-bottom: 1rem;
}

/* #### FINISH FOOTER #### */

/*  ###### MEDIA QUERYS ##### */

@media screen and (min-width: 375px) {
  .ctnCards__card {
    width: 85%;
  }
}

@media screen and (min-width: 768px) {
  .nav {
    padding: 0.5rem 2rem;
  }

  .nav__logo {
    width: 100px;
    height: 100px;
  }

  .nav__list {
    top: 106px;
  }

  .section {
    padding: 6rem 5rem;
  }

  .ctnCards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .ctnCards__card {
    width: 45%;
  }

  .ctnCards__card--services {
    height: 490px;
  }

  .ctnCards__card--testimony {
    height: 580px;
  }

  .ctnCards__card &gt; h2 {
    font-size: 1.7rem;
  }

  .ctnCards__card &gt; p {
    font-size: 1.2rem;
  }

  .contact {
    padding: 8rem 5rem 3rem 5rem;
  }

  .footer__start {
    flex-direction: row;
    padding: 2rem 5rem;
    justify-content: space-between;
    align-items: center;
  }

  .footer__logo {
    width: 150px;
    height: 150px;
  }

  .footer__navigation {
    border: none;
  }

  .footer__start__info {
    text-align: start;
  }
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 6rem 10rem;
  }

  .nav {
    justify-content: left;
    align-items: end;
  }

  .nav__icon {
    display: none;
  }

  .nav__list {
    width: auto;
    margin: 0 0 0 6rem;
    position: static;
    background-color: transparent;
    display: flex;
  }

  .nav__link,
  .nav__link:link,
  .nav__link:visited {
    width: auto;
    padding: 0rem;
    margin-right: 2.5rem;
    margin-bottom: 0.6rem;
    border-bottom: none;
  }

  .nav__link:hover {
    color: #020626;
    background-color: transparent;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.35);
    scale: 1.1;
    border-bottom: 1px solid #00b956;
  }

  .nav__link:active {
    scale: 1;
  }

  .ctnCards__card--services {
    height: 430px;
  }

  .contact {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact__form {
    width: 40%;
  }

  .map {
    width: 55%;
  }

  .footer__link:hover {
    color: #00b956;
    transform: translateY(-15px);
  }

  .footer__end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }

  .footer__end &gt; p {
    padding: 0;
    margin-left: 2rem;
  }
}

@media screen and (min-width: 1360px) {
  .section {
    padding: 6rem 15rem;
  }

  .ctnCards__card--services {
    width: 32%;
    height: 420px;
  }

  .ctnCards__card--testimony {
    height: 400px;
  }

  .contact {
    padding: 8rem 15rem;
    background-position: top;
  }

  .contact__form {
    width: 35%;
  }

  .map {
    width: 60%;
  }

  .footer__start {
    justify-content: space-around;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    padding: 4rem 25rem;
  }

  .contact {
    padding: 3rem 25rem;
  }
}

/*  ### ANIMACIONES #### */

.icon__line:nth-child(1).close {
  transform: rotate(45deg);
}

.icon__line:nth-child(2).close {
  opacity: 0;
}

.icon__line:nth-child(3).close {
  transform: rotate(-45deg);
}

@keyframes reveal {
  from {
    opacity: 0;
    translate: 0 100px;
    scale: 0.5;
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes blur {
  to {
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
  }
}

@keyframes logo {
  to {
    background-image: url("../assets/logo_dark.png");
  }
}
</pre></body></html>