@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-family: "futura", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

.feed {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feed_section {
  width: 100vw;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed_section:first-child {
  background-image: url(../../assets/background.webp);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.feed_section:nth-child(2) {
  background-color: #f2f2f2;
  min-height: 300px;
}
.feed_section:nth-child(4) {
  background-color: #201c3d;
}
.feed_section:nth-child(5) {
  background-color: #f2f2f2;
}
.feed_section:nth-child(6) {
  background-image: url(../../assets/hombreDatos.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  min-height: 500px;
}

.info {
  width: 80%;
  max-width: 1100px;
  height: 100%;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .info {
    padding: 7rem 0;
  }
}
.info_text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aside {
  width: 100vw;
  height: auto;
  opacity: 0.6;
}
.aside .Product_img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .aside .Product_img {
    height: 700px;
    object-fit: cover;
  }
}

.icon {
  width: 38px;
  height: 38px;
}
@media (min-width: 1200px) {
  .icon {
    width: 60px;
    height: 60px;
  }
}

/*
    Mobile version with close menu
*/
.header {
  width: 100vw;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 50000;
}
.header_section {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}
.header_section_logo {
  width: 120px;
}
.header_section_logo a {
  width: 100%;
  height: 100%;
}
.header_section_logo a img {
  width: 100%;
  height: 100%;
}
@media (min-width: 987px) {
  .header_section_img {
    display: none;
  }
}

.header_section_menu {
  width: 30px;
  height: 25px;
  margin-bottom: 0.8rem;
}
@media (min-width: 987px) {
  .header_section_menu {
    width: 100%;
    max-width: 450px;
    display: flex;
  }
  .header_section_menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_section_menu-item a {
    margin: 0 0 1.3rem;
    text-align: center;
    font-size: 0.9rem;
    font-family: "aileron", sans-serif;
    color: #3ed2c6;
    color: #3ed2c6;
    text-decoration: none;
  }
}
@media (min-width: 987px) and (min-width: 1200px) {
  .header_section_menu-item a {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .header_section_menu .header_section_menu_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .header_section_menu .header_section_menu_list a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1.3em;
  }
}
.header_section_menu .header_section_menu_item {
  display: none;
}
@media (min-width: 987px) {
  .header_section_menu .header_section_menu_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
  }
}
.header_section_menu .open-burger {
  width: 30px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
}
@media (min-width: 987px) {
  .header_section_menu .open-burger {
    display: none;
  }
}
.header_section_menu .open-burger .line-one {
  width: 30px;
  height: 3px;
  background-color: #5754c9;
  transform-origin: 5px 0px;
  transition: all 0.4s linear;
}
.header_section_menu .open-burger .line-two {
  width: 30px;
  height: 3px;
  background-color: #5754c9;
}
.header_section_menu .open-burger .line-three {
  width: 30px;
  height: 3px;
  background-color: #5754c9;
  transform-origin: -4.5px 0px;
  transition: all 0.4s linear;
}

.header .close-burger .line-one {
  transform: rotate(45deg) translate(0px, 1px);
}
.header .close-burger .line-two {
  display: none;
}
.header .close-burger .line-three {
  transform: rotate(-45deg) translate(0px, 1px);
}
.header .close-burger .header_section_menu_item {
  position: absolute;
  top: 5rem;
  right: 0;
  background-color: #201c3d;
  width: 150px;
  height: 16.5em;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.2rem;
  box-sizing: border-box;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 5px;
  border-top: none;
  border-right: none;
}
.header .close-burger .header_section_img {
  width: 40px;
  height: 40px;
}
.header .close-burger .header_section_img img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.header .close-burger .header_section_img img:hover {
  width: 43px;
  height: 43px;
}
.header .close-burger .header_section_menu_list {
  list-style: none;
  font-family: "futura", sans-serif;
  font-size: 1.3rem;
  line-height: 3rem;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.header .close-burger .header_section_menu_list a {
  color: #3ed2c6;
  text-decoration: none;
}
.header .close-burger .header_section_menu_list a:hover {
  font-size: 1.4rem;
  text-decoration: none;
}

.cover {
  width: 80vw;
  height: 100svh;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  flex-wrap: wrap;
  padding: 6em 0 0em;
}
@media (min-width: 1200px) {
  .cover {
    padding-top: 10rem;
    flex-direction: row;
  }
}
.cover_text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
@media (min-width: 1200px) {
  .cover_text {
    max-width: 50%;
  }
}
.cover_text_title {
  font-family: "futura", sans-serif;
  font-size: 1.5rem;
  color: #3ed2c6;
  line-height: 2rem;
  text-align: center;
  margin: 0;
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .cover_text_title {
    font-size: 2.8rem;
    text-align: center;
    line-height: 4rem;
  }
}
.cover_text_subtitle {
  line-height: 1.5rem;
  color: #f2f2f2;
  font-family: "aileron", sans-serif;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .cover_text_subtitle {
    display: none;
  }
}
.cover_img {
  min-width: 300px;
  width: 100%;
  max-width: 7000px;
  height: 60%;
}
@media (min-width: 1200px) {
  .cover_img {
    max-width: 50%;
  }
}
.cover_img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cover_text_subtitle-ind {
  display: none;
}
@media (min-width: 1200px) {
  .cover_text_subtitle-ind {
    margin: 0 0 1.3rem;
    text-align: center;
    font-size: 0.9rem;
    font-family: "aileron", sans-serif;
    color: #f2f2f2;
    font-size: 1.5rem !important;
    display: block;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .cover_text_subtitle-ind {
    font-size: 1.2rem;
  }
}

.about {
  width: 90vw;
  height: 100%;
}

.about_div {
  background: #f2f2f2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 6em 3.5em 3rem;
  width: 90svh;
  height: auto;
}
.about_div h4 {
  margin: 0 0 1.3em;
  letter-spacing: 0.1em;
  font-family: "futura", sans-serif;
  color: #5754c9;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .about_div h4 {
    font-size: 2.5rem;
  }
}
.about_div p {
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: "aileron", sans-serif;
  color: #404040;
  margin-bottom: 2.5em;
}
@media (min-width: 1200px) {
  .about_div p {
    font-size: 1.2rem;
  }
}
.about_div-list {
  width: 100%;
  margin: 0;
  padding: 0;
}
.about_div-list li {
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: "aileron", sans-serif;
  color: #404040;
  list-style: none;
  text-align: center;
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .about_div-list li {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .about_div-list {
    max-width: 1100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .about_div-list li {
    width: 45%;
    max-width: 450px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    transition: all 0.4s ease;
    border-radius: 15px;
  }
  .about_div-list li:hover {
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.13);
  }
}
@media (min-width: 1200px) {
  .about_div h4 {
    max-width: 900px;
    margin-bottom: 2.5rem;
  }
  .about_div p {
    max-width: 900px;
  }
}
.about_div aside {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 1em;
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: "aileron", sans-serif;
  color: #404040;
}
@media (min-width: 1200px) {
  .about_div aside {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .about_div aside {
    max-width: 900px;
    flex-direction: row;
  }
  .about_div aside div {
    width: 250px;
    max-width: 380px;
    height: 7rem;
    border-radius: 15px;
    justify-content: space-evenly;
    transition: all 0.4s ease;
  }
  .about_div aside div:hover {
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.13);
  }
  .about_div aside div span {
    color: #404040;
  }
}
.about_div aside div {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about_div aside .icon {
  min-width: 2em;
  width: 75%;
  max-width: 3.5rem;
  min-height: auto;
}

.vision div {
  margin-bottom: 0.5rem;
}
.vision .solucions_div-text {
  margin-bottom: 0.4rem;
}
.vision .about_div-paragraph {
  margin-bottom: 0.8rem;
}
.vision .icon {
  min-width: 2em;
  width: 10%;
  max-width: 3.5rem;
  min-height: auto;
}
@media (min-width: 1200px) {
  .vision {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .vision div {
    width: 30%;
    max-width: 500px;
    padding: 1rem;
    transition: all 0.4s ease;
    border-radius: 15px;
  }
  .vision div:hover {
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.13);
  }
  .vision div h4 {
    color: #5754c9;
    margin-bottom: 0.9rem;
  }
  .vision div p {
    margin-bottom: 0;
    color: #404040;
  }
}

.product .info {
  padding-bottom: 0;
}
.product .info_text_title {
  margin: 0 0 1.3em;
  letter-spacing: 0.1em;
  font-family: "futura", sans-serif;
  color: #3ed2c6;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .product .info_text_title {
    font-size: 2.5rem;
  }
}
.product .info_text_paragraph {
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: "aileron", sans-serif;
  color: #f2f2f2;
  display: block;
}
@media (min-width: 1200px) {
  .product .info_text_paragraph {
    font-size: 1.2rem;
  }
}
.product .product_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
.product .product_container_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 3em 0;
  width: 100%;
}
.product .product_container_list_item {
  min-width: 300px;
  width: 33%;
  max-width: 430px;
  height: 30svh;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.product .product_container .product_container_list_item img {
  min-width: 4em;
  width: 80%;
  max-width: 7rem;
  min-height: 50%;
  margin-bottom: 1rem;
}
.product .product_container .product_container_list_item .nube:hover::after {
  transform: translateY(0);
}
.product .product_container .product_container_list_item .nube::after {
  content: "Producto en la nube";
  background-color: #f2f2f2;
  color: #5754c9;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product .product_container .product_container_list_item .multiplataforma:hover::after {
  transform: translateY(0);
}
.product .product_container .product_container_list_item .multiplataforma::after {
  content: "Acceso e integración multiplataforma";
  background-color: #f2f2f2;
  color: #5754c9;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product .product_container .product_container_list_item .personalizacion:hover::after {
  transform: translateY(0);
}
.product .product_container .product_container_list_item .personalizacion::after {
  content: "Cuadros de mando personalizados";
  background-color: #f2f2f2;
  color: #5754c9;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product .product_container .product_container_list_item .actualización:hover::after {
  transform: translateY(0);
}
.product .product_container .product_container_list_item .actualización::after {
  content: "Informes actualizados en tiempo real";
  background-color: #f2f2f2;
  color: #5754c9;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product .product_container .product_container_list_item .agiles:hover::after {
  transform: translateY(0);
}
.product .product_container .product_container_list_item .agiles::after {
  content: "Utilización de marcos de trabajos agiles";
  background-color: #f2f2f2;
  color: #5754c9;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product .product_container .product_container_list_item .seguridad:hover::after {
  transform: translateY(0);
}
.product .product_container .product_container_list_item .seguridad::after {
  content: "Seguridad avanzada";
  background-color: #f2f2f2;
  color: #5754c9;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product .product_container_list_item-text {
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: "aileron", sans-serif;
  color: #3ed2c6;
  text-align: center;
  list-style: none;
  width: 260px;
  min-height: 4rem;
  text-align: center;
  background-color: #5754c9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 15px;
  color: #f2f2f2;
  font-size: 1.3rem;
  margin-bottom: 50px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .product .product_container_list_item-text {
    font-size: 1.2rem;
  }
}
.product .info_text_title-img {
  width: 100vw;
  height: auto;
  opacity: 0.6;
}
.product .info_text_title-img .Product_img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .product .info_text_title-img .Product_img {
    height: 700px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .service div {
    width: 100%;
    height: 50%;
    max-height: 1100px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
  }
  .service div .acordeon {
    width: 30%;
    max-width: 550px;
    height: 18.5rem;
    margin-bottom: 0;
    padding: 1rem 2rem;
    border-radius: 15px;
    align-items: start;
  }
  .service div .acordeon:hover {
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.13);
  }
  .service div .acordeon img {
    display: block;
    width: 5rem;
    height: 5rem;
    object-fit: cover;
  }
  .service div .acordeon label {
    width: 100%;
    height: 3rem;
    font-size: 1.2rem;
    text-align: left;
    color: #5754c9;
    background-color: #f2f2f2;
    margin-bottom: 0.5rem;
    padding-left: 0;
  }
  .service div .acordeon-conteiner {
    width: 100%;
  }
  .service div .acordeon-conteiner p {
    text-align: center;
    line-height: 1.3rem;
    margin: 0 0 1rem;
  }
  .service div .acordeon .acordeon_btn ~ .acordeon-conteiner {
    max-height: 230px;
    width: 100%;
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .service div .acordeon .acordeon_btn ~ .acordeon-conteiner p {
    font-size: 1rem;
    font-family: "aileron", sans-serif;
    font-weight: 400;
    color: #404040;
    text-align: left;
  }
}
.service .info_text_title {
  margin: 0 0 1.3em;
  letter-spacing: 0.1em;
  font-family: "futura", sans-serif;
  color: #5754c9;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .service .info_text_title {
    font-size: 2.5rem;
  }
}
.service .acordeon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  margin-bottom: 1.5rem;
}
.service .acordeon .icon {
  min-width: 2em;
  width: 30%;
  max-width: 6rem;
  min-height: 80px;
  margin-bottom: 0.5rem;
}
.service .acordeon label {
  display: block;
  width: 100%;
  padding: 1rem;
  margin: auto;
  font-size: 1rem;
  border-radius: 15px;
  background-color: #5754c9;
  color: #f2f2f2;
  text-align: center;
  transition: all 0.4s ease;
  font-family: "aileron", sans-serif;
}
.service .acordeon label:hover {
  background-color: #f2f2f2;
  color: #5754c9;
}
.service .acordeon .acordeon-conteiner {
  padding: 0;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #f2f2f2;
  font-size: 1rem;
  transition: all 1s cubic-bezier(1, 0, 0, 1);
}
.service .acordeon_btn:checked ~ .acordeon-conteiner {
  max-height: 360px;
  width: 100%;
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
}
.service .acordeon_btn:checked ~ .acordeon-conteiner p {
  height: 100%;
  font-size: 0.9rem;
  font-family: "aileron", sans-serif;
  font-weight: 400;
  color: #f2f2f2;
  background-color: #5754c9;
  text-align: justify;
  padding: 0 1rem 1rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  margin: 0;
}
@media (min-width: 1200px) {
  .service .acordeon_btn:checked ~ .acordeon-conteiner p {
    color: #404040;
    background-color: #f2f2f2;
    padding: 0;
  }
}
.service .acordeon_btn:checked ~ label {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #3ed2c6;
  background-color: #5754c9;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .service .acordeon_btn:checked ~ label {
    color: #5754c9;
    background-color: #f2f2f2;
    font-weight: 500;
  }
}
.service .acordeon_btn {
  display: none;
}

@media (min-width: 1200px) {
  .contact .info {
    padding: 8rem 0 4rem;
  }
}
.contact-text {
  width: 100%;
  align-self: center;
  padding: 15px;
  background-color: rgba(31, 27, 59, 0.6);
  border-radius: 15px;
}
.contact-text .info_text_title {
  margin: 0 0 1.3em;
  letter-spacing: 0.1em;
  font-family: "futura", sans-serif;
  color: #3ed2c6;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  .contact-text .info_text_title {
    font-size: 2.5rem;
  }
}
.contact-text .contact_form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  font-family: "aileron", sans-serif;
  margin: 1.5em 0;
}
@media (min-width: 1200px) {
  .contact-text .contact_form {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 10rem;
    row-gap: 0;
  }
}
.contact-text .contact_form .contact_input {
  width: 90%;
  max-width: 350px;
  color: #404040;
  border: none;
  border-radius: 15px;
  line-height: 2rem;
  padding-left: 0.8rem;
  padding-bottom: 0.125rem;
}
@media (min-width: 1200px) {
  .contact-text .contact_form .contact_input {
    width: 45%;
    max-width: 400px;
    height: 3rem;
    margin-bottom: 1.5rem;
  }
}
.contact-text .contact_form .contact_input:focus {
  border: none;
  outline: none;
}
.contact-text .contact_form .contact_input:nth-child(5) {
  height: 5em;
  line-height: 1.2em;
  padding-top: 0.5em;
  resize: none;
}
@media (min-width: 1200px) {
  .contact-text .contact_form .contact_input:nth-child(5) {
    min-width: 100%;
    height: 5rem;
  }
}
.contact-text .contact_form_btn {
  width: 50%;
  max-width: 150px;
  border: none;
  border-radius: 15px;
  font-weight: 500;
  letter-spacing: 0.04rem;
  background-color: #5754c9;
  color: #f2f2f2;
  text-align: center;
  font-family: "aileron", sans-serif;
  font-size: 1.2rem;
  line-height: 2.4rem;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.2s;
  margin-top: 0.5em;
}
@media (min-width: 1200px) {
  .contact-text .contact_form_btn {
    height: 3.5rem;
    margin: 0 auto;
    font-size: 1.5rem;
  }
}
.contact-text .contact_form_btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}
.contact-text .contact_form_btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}
.contact-text .contact_form_btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}
.contact-text .contact_form_btn:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
.contact-text .contact_form_btn:hover span {
  transform: translateX(5em);
}
.contact-text .contact_form_btn:active {
  transform: scale(0.95);
}
.contact_img {
  width: 60vw;
  height: 100svh;
}
.contact_img img {
  width: 100%;
  height: 100%;
}

.footer {
  width: 100vw;
  min-height: 25svh;
  background-color: #201c3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.footer_text {
  margin: 50px auto 0;
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media (min-width: 1200px) {
  .footer_text {
    flex-direction: row;
  }
}
.footer_text section {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .footer_text_agiliza {
    max-width: 350px;
    margin-right: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer_text_agiliza img {
  width: 200px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .footer_text_agiliza img {
    margin: 0;
  }
}
.footer_text_agiliza p {
  text-align: center;
  color: #f2f2f2;
}
@media (min-width: 1200px) {
  .footer_text_agiliza p {
    text-align: left;
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .footer_text_contact {
    width: 30%;
    max-width: 280px;
  }
}
.footer_text_contact h3 {
  margin: 0 0 1.3em;
  letter-spacing: 0.1em;
  font-family: "futura", sans-serif;
  color: #3ed2c6;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .footer_text_contact h3 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .footer_text_contact h3 {
    margin-top: 0;
    text-align: left;
    font-size: 1.7rem;
  }
}
.footer_text_contact a {
  text-align: center;
  color: #f2f2f2;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}
.footer_text_contact a box-icon {
  margin-right: 1rem;
  width: 1.2rem;
  height: 1.2rem;
}
@media (min-width: 1200px) {
  .footer_text_contact a {
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-align: left;
  }
  .footer_text_contact a box-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .footer_text_menu {
    width: 20%;
    max-width: 100px;
  }
}
.footer_text_menu a {
  text-decoration: none;
}
.footer_text_menu h2 {
  margin: 0 0 1.3em;
  letter-spacing: 0.1em;
  font-family: "futura", sans-serif;
  color: #3ed2c6;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .footer_text_menu h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .footer_text_menu h2 {
    text-align: right;
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1rem;
  }
}
.footer .footer-CR {
  display: block;
  width: 100%;
  line-height: 1rem;
  font-family: "futura", sans-serif;
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem 0;
  color: #5754c9;
  background-color: #f2f2f2;
  margin: 0;
  font-weight: lighter;
}

/*# sourceMappingURL=style.css.map */
