/* ================= VARIABLES ================= */
:root {
  --header-height: 3rem;
  /* ======= COLORES ======= */
  /* chage favorite color */
  --hue-color-1: 259;
  --hue-color-2: 235;
  /* Purple 250 - green 142 - Blue 230 - Pink 340 */
  /* HSL color mode */
  --first-color-1: hsl(var(--hue-color-1), 50%, 34%);
  --first-color-2: hsl(var(--hue-color-2), 48%, 36%);
  --first-color-1-lighter: hsl(0, 0%, 100%);
  /* --first-color-2-lighter: hsla(235, 100%, 80%, 0.7); */
  --first-color-1-alt: hsl(var(--hue-color-1), 35%, 50%);
  --title-color: hsl(var(--hue-color-1), 8%, 15%);
  --text-color: hsl(var(--hue-color-1), 8%, 45%);
  --text-color-light: hsl(var(--hue-color-1), 8%, 65%);
  --input-color: hsl(var(--hue-color-1), 70%, 96%);
  --body-color: hsl(var(--hue-color-1), 60%, 99%);
  --container-color: #fff;
  /* Font and Typography */
  --body-font: "poppins", sans-serif;
  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px, ... */
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /* Font weight */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  /* Margenes bottom */
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px, ... */
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  /* z index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  /* Font size for large device */
}
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/* ================= BASE ================= */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: rgba(153, 162, 255, 0.4);
}

html::-webkit-scrollbar-thumb {
  background: var(--first-color-2-lighter);
  border-radius: 1rem;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  position: relative;
  background-color: var(--body-color);
  color: var(--text-color);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 2.5rem 0;
}

/* ================= REUTILIZABLE ================= */
.section {
  padding-top: 2.5rem;
}
.section__title, .section__titulo, .section__title-center {
  padding-top: 1.5rem;
  font-weight: var(--font-medium);
  font-size: var(--h3-font-size);
  color: var(--title-color);
}
.section__title-center {
  text-align: center;
}
.section__title {
  font-size: var(--small-font-size);
}
.section__subtitle, .section__subtitle-center {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-2-5);
  line-height: 140%;
  color: var(--first-color-1);
}
.section__subtitle-center {
  text-align: center;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.main {
  overflow: hidden;
}

/* ================= BOTONES ================= */
.button {
  display: inline-block;
  background-color: var(--first-color-1-alt);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}
.button:hover {
  background-color: var(--first-color-1);
}

@media screen and (max-width: 320px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.change-theme {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 4.5rem;
  left: 1rem;
  font-size: 1.6rem;
  background: var(--first-color-2);
  color: var(--container-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.5s;
  box-shadow: 0 0 15px var(--text-color);
}
.change-theme:hover {
  opacity: 1;
  background: var(--first-color-2);
}
@media screen and (min-width: 1200px) {
  .change-theme {
    left: 5rem;
  }
}

.scrolltop {
  position: fixed;
  background: var(--first-color-1-alt);
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: 0.6rem;
  opacity: 0.8;
  color: #fff;
  border-radius: 0.3rem;
  z-index: 1000;
  transition: 0.4s;
}
.scrolltop:hover {
  background: var(--first-color-2);
  opacity: 0.9;
  transform: translate(25deg);
}
.scrolltop__icon {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .scrolltop {
    right: 5rem;
  }
}

.show-scroll {
  bottom: 4.5rem;
}

.padding-botom {
  padding-bottom: 3rem;
}

.hover {
  color: red;
}

.header {
  height: 100%;
  background: var(--container-color);
  z-index: var(--z-fixed);
  position: relative;
}
.header .header-1 {
  position: fixed;
  height: 4rem;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: var(--container-color);
  transition: 0.3s;
  z-index: var(--z-fixed);
}
.header .header-1 .logo {
  width: 9rem;
  display: flex;
  align-items: center;
}
.header .header-1 .information {
  display: flex;
}
.header .header-1 .information .content {
  left: 0;
  align-items: center;
  justify-content: center;
  display: none;
}
.header .header-1 .information .content .info {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-left: 2rem;
}
.header .header-1 .information .content .info__icon {
  font-size: 1.5rem;
  border: 1px solid var(--first-color-1);
  color: var(--first-color-1);
  padding: 0.15rem 0.4rem;
}
.header .header-1 .information .content .info__title {
  justify-items: flex-end;
  padding-left: 0.8rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 17px;
}
.header .header-1 .information .content .info__title span {
  padding-top: 0.3rem;
  display: block;
  font-size: var(--small-font-size);
  font-weight: 700;
  color: var(--first-color-1);
}
.header .header-1 .icon__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .header-1 .icon__toggle .open {
  font-size: 1.3rem;
  color: var(--text-color);
}
.header .header-1 .icon__toggle .open:hover {
  color: var(--first-color-1);
}
.header .header-2 {
  position: relative;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--container-color);
  z-index: 10;
}
.header .header-2 .nav {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .header-2 .nav .nav__menu {
    position: fixed;
    background-color: var(--container-color);
    width: 90%;
    height: 100%;
    top: 4rem;
    right: -100%;
    box-shadow: -1px 0 5px hsla(var(--hue-color-1), 50%, 34%, 0.1);
    padding: 2rem 0 0 0;
    transition: 0.3s;
    z-index: 10;
  }
}
.header .header-2 .nav__list {
  display: flex;
  flex-direction: column;
}
.header .header-2 .nav__item {
  display: block;
}
.header .header-2 .nav__link {
  width: 100%;
  height: 103%;
  padding: 1rem 1.5rem;
  color: var(--first-color-2);
  font-weight: var(--font-semi-bold);
  transition: all 0.3s;
  display: block;
  transition: 0.3s;
}
.header .header-2 .nav__link:hover {
  background: var(--first-color-2-lighter);
  border-radius: 5px 5px 0 0;
}
.header .header-2 .nav .active-link {
  color: var(--first-color-2);
  background: var(--first-color-2-lighter);
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 767px) {
  .header .header-2 .nav .active-link {
    border-radius: 0;
  }
  .header .header-2 .nav__link {
    background: transparent;
  }
  .header .header-2 .nav__link:hover {
    border-radius: 0;
  }
}
.header .header-2 .nav .show-menu {
  right: 0;
}
.header .header-2 .icons {
  display: none;
}

.scroll-header {
  box-shadow: 0 3px 4px hsla(var(--hue-color-1), 4%, 15%, 0.1);
}

@media screen and (max-width: 320px) {
  .header .header-1 {
    padding: 0.5rem 1rem;
  }
  .header .header-1 .logo {
    width: 6rem;
  }
  .header .header-1 .icon__toggle .open {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .header .header-1 {
    background: transparent;
    height: 6rem;
    position: initial;
  }
  .header .header-1 .logo {
    width: 12rem;
  }
  .header .header-1 .information .content {
    display: flex;
  }
  .header .header-1 .information .btn {
    width: 2.4rem;
    height: 2.4rem;
    background: var(--first-color-1);
    border-radius: 50%;
  }
  .header .header-1 .information .change-theme {
    color: #fff;
    transition: 0.3s;
  }
  .header .header-1 .icon__toggle {
    display: none;
  }
  .header .header-2 {
    height: 3.1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--container-color);
  }
  .header .header-2 .nav__list {
    flex-direction: row;
  }
  .header .header-2 .nav__link {
    padding: 0.7rem 1.5rem;
  }
  .header .header-2 .icons {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .header .header-2 {
    justify-content: space-between;
  }
  .header .header-2 .icons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header-2 .icons p {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--first-color-2);
  }
  .header .header-2 .icons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .header .header-2 .icons .icon__link {
    width: 2rem;
    height: 2rem;
    background: transparent;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3rem;
    transition: 0.3s;
  }
  .header .header-2 .icons .icon__link:hover {
    transform: translateY(-5px);
  }
  .header .header-2 .icons i {
    color: var(--first-color-2);
    font-size: 1.2rem;
  }
}
.dark-theme .btn .change-theme:hover {
  color: var(--first-color-1-lighter);
}
.dark-theme .header {
  background: #142850;
}
.dark-theme .header-1 .information .content .info__icon {
  border: 1px solid var(--container-color);
  color: var(--container-color);
}
.dark-theme .header-1 .information .content .info__title span {
  color: var(--container-color);
}
.dark-theme .header-1 .icon__toggle .open:hover {
  color: var(--first-color-1-lighter);
}
.dark-theme .header-2 .nav__link {
  color: var(--text-color);
}
.dark-theme .header-2 .nav__link:hover {
  color: var(--text-color);
  background: var(--bg-button-hover);
}
.dark-theme .header-2 .nav .show-menu {
  right: 0;
}
.dark-theme .header-2 .icons p {
  color: var(--text-color);
}
.dark-theme .header-2 .icons .icon i {
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  .dark-theme .header .header-1 .information .btn {
    background: #fff;
  }
  .dark-theme .header .header-1 .information .btn:hover {
    background: #fff;
  }
}

.home {
  display: grid;
  background: var(--first-color-2-lighter);
  height: 100%;
  grid-template-rows: 1fr auto;
  transition: 0.3s;
}
.home__container {
  height: 57rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home img {
  padding-top: 0;
  justify-self: center;
  align-self: center;
  width: 80%;
  animation: homeHorizontal 4s linear infinite;
}
.home__data {
  padding-top: 3rem;
}
.home__title {
  font-weight: var(--font-bold);
  font-size: var(--big-font-size);
  line-height: 2.6rem;
  color: var(--first-color-2);
  margin-bottom: var(--mb-2);
}
.home__description {
  color: var(--first-color-2);
  margin-bottom: var(--mb-2-5);
  font-size: var(--normal-font-size);
}
.home__button {
  display: inline-block;
  background: var(--first-color-2);
}
.fondo_azul {
  
  background: var(--first-color-2);
}
.fondo_blanco {
  
  background: white;
}

.ventajas {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: var(--first-color-2);
}
.ventajas .ventaja {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ventajas .ventaja__titulo {
  text-align: center;
  line-height: 1.6rem;
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
  color: #eee;
  padding-bottom: 1rem;
}
.ventajas .ventaja__titulo-gris {
  color: var(--title-color);
}
.ventajas .ventaja__description {
  text-align: center;
  font-size: var(--normal-font-size);
  color: #eee;
}

.dark-theme .home {
  background: #142850;
}
.dark-theme .home__title {
  color: #fff;
}
.dark-theme .home__description {
  color: var(--text-color);
}
.dark-theme .home__button {
  background: var(--bg-button);
}
.dark-theme .home__button:hover {
  background: var(--bg-button-hover);
}
.dark-theme .ventajas {
  background: var(--first-color-2);
}
.dark-theme .ventajas .ventaja__titulo {
  color: var(--text-color);
}
.dark-theme .ventajas .ventaja__description {
  color: var(--text-color);
}

@media screen and (min-width: 600px) {
  .home__container {
    height: 57rem;
  }
  .home img {
    width: 90%;
    animation: none;
    animation: homeHorizontal 4s linear infinite;
  }
  .home__data {
    padding-top: 3em;
  }
  .home__title {
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .home {
    width: 100%;
    height: 52rem;
    grid-template-rows: 1fr auto;
  }
  .home__container {
    height: 100%;
    flex-direction: row-reverse;
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
    justify-content: center;
    align-items: center;
  }
  .home__data {
    padding-top: 0;
  }
  .home__title {
    line-height: 2.5rem;
    margin-bottom: var(--mb-2);
  }
  .home img {
    justify-content: center;
    align-items: center;
    width: 50%;
    animation: homeVertical 4s linear infinite;
  }
  .home .ventajas {
    padding: 1.5rem 0;
  }
  .home .ventajas .ventaja__description {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (min-width: 968px) {
  .home__title {
    line-height: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home__title {
    line-height: 3.5rem;
  }
  .home .ventajas .ventaja__description {
    width: 80%;
  }
}
.sobre-nosotros {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  display: grid;
}
.sobre-nosotros__container {
  row-gap: 2rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
.sobre-nosotros img {
  width: 100%;
  position: relative;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(238, 238, 238, 0.25);
}
.sobre-nosotros__data {
  padding-top: 1rem;
  text-align: center;
}
.sobre-nosotros__title {
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size);
  color: var(--first-color-1);
}
.sobre-nosotros__subtitle {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-2-5);
  line-height: 140%;
}
.sobre-nosotros__description {
  margin-bottom: var(--mb-2);
  color: var(--text-color);
}
.sobre-nosotros__button {
  margin-bottom: 1.5rem;
}

.dark-theme .sobre-nosotros__title {
  color: var(--first-color-2-lighter);
}
.dark-theme .sobre-nosotros__description {
  color: var(--text-color);
}

@media screen and (min-width: 600px) {
  .sobre-nosotros__container img {
    width: 55rem;
  }
}
@media screen and (max-width: 320px) {
  .sobre-nosotros__container {
    row-gap: 2rem;
  }
  .sobre-nosotros__description {
    font-size: var(--small-font-size);
  }
  .sobre-nosotros img::after {
    height: 188.66px;
  }
}
@media screen and (min-width: 576px) {
  .sobre-nosotros img {
    width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .sobre-nosotros__container {
    flex-direction: row-reverse;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .sobre-nosotros img {
    width: 45%;
  }
  .sobre-nosotros__data {
    text-align: initial;
  }
}
@media screen and (min-width: 1024px) {
  .sobre-nosotros {
    padding-top: 7rem;
    padding-bottom: 0;
  }
}
.servicios {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.servicios__container {
  gap: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.servicios__container .servicio {
  padding-bottom: 3rem;
  width: 100%;
  height: 100%;
  background: var(--container-color);
  box-shadow: 0 0 10px hsla(var(--hue-color-1), 4%, 15%, 0.1);
  cursor: pointer;
  text-align: center;
  background-image: linear-gradient(var(--container-color) 50%, var(--first-color-2) 50%);
  background-size: 100% 200%;
  background-position: 0% 5%;
  transition: 0.3s;
}
.servicios__container .servicio:hover {
  background-position: 0% 100%;
}
.servicios__container .servicio:hover .icon {
  padding-left: 0.5rem;
  color: #fff;
}
.servicios__container .servicio:hover, .servicios__container .servicio:hover .servicio__title, .servicios__container .servicio:hover .servicio__description, .servicios__container .servicio:hover .servicio__flecha, .servicios__container .servicio:hover .servicio__flecha-left {
  color: var(--input-color);
}
.servicios__container .servicio__link {
  display: grid;
  row-gap: 1.5rem;
}
.servicios__container .servicio__img {
  padding-top: 1rem;
  width: 60%;
  height: 130px;
  margin: 0 auto;
}
.servicios__container .servicio__title {
  font-size: var(--h2-font-size);
  transition: 0.3s;
  color: var(--first-color-2);
}
.servicios__container .servicio__description {
  padding-top: 0;
  color: var(--text-color);
  transition: 0.3s;
  padding-bottom: 2rem;
}

.dark-theme .servicios__container .servicio {
  background-image: linear-gradient(var(--first-color-2) 50%, var(--container-color) 50%);
}
.dark-theme .servicios__container .servicio:hover {
  background-position: 0% 100%;
}
.dark-theme .servicios__container .servicio:hover .icon {
  color: #fff;
}
.dark-theme .servicios__container .servicio:hover, .dark-theme .servicios__container .servicio:hover .servicio__title, .dark-theme .servicios__container .servicio:hover .servicio__description, .dark-theme .servicios__container .servicio:hover .servicio__flecha, .dark-theme .servicios__container .servicio:hover .servicio__flecha-left {
  color: var(--text-color);
}
.dark-theme .servicios__container .servicio__title {
  color: var(--text-color);
}
.dark-theme .servicios__container .servicio__description {
  color: var(--text-color);
}
.dark-theme .servicios__container .servicio__flecha {
  color: var(--text-color);
}
.dark-theme .servicios__container .servicio__flecha .icon {
  color: var(--text-color);
}

@media screen and (min-width: 320px) {
  .servicios__container .servicio {
    padding: 2rem 1.2rem;
  }
}
@media screen and (min-width: 576px) {
  .servicios__container {
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .servicios__container .servicio {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .servicios__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .servicios {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.clientes {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
.clientes__container {
  row-gap: 5rem;
}
.clientes__container .cliente {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clientes__container .cliente__data {
  padding: 2.5rem 0;
  text-align: center;
}
.clientes__container .cliente__title {
  color: var(--title-color);
  padding-bottom: 1.5rem;
  font-size: var(--h2-font-size);
}
.clientes__container .cliente__description {
  margin-bottom: 3rem;
  font-size: var(--normal-font-size);
}
.clientes__container .cliente__img {
  width: 280px;
}

.dark-theme .cliente__title {
  color: var(--title-color);
}
.dark-theme .cliente__description {
  color: var(--title-color);
}

@media screen and (max-width: 320px) {
  .clientes__container .cliente__description {
    font-size: var(--small-font-size);
  }
}
@media screen and (max-width: 576px) {
  .clientes__container .cliente__title {
    font-size: var(--h2-font-size);
  }
  .clientes__container .cliente__description {
    font-size: var(--normal-font-size);
  }
}
@media screen and (min-width: 768px) {
  .clientes__container {
    padding-bottom: 2.5rem;
  }
  .clientes__container .cliente {
    width: 100%;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .clientes__container .cliente__data {
    padding: 0;
    width: 55%;
    text-align: initial;
  }
  .clientes__container .cliente__title {
    font-size: var(--h2-font-size);
  }
  .clientes__container .cliente__description {
    font-size: var(--normal-font-size);
  }
  .clientes__container .cliente .primero {
    order: -1;
  }
  .clientes__container .cliente__img {
    width: 360px;
  }
}
@media screen and (min-width: 1024px) {
  .clientes {
    padding-top: 7rem;
  }
  .clientes__container {
    padding-bottom: 0;
  }
}
.funcionamiento {
  width: 100%;
  padding: 5rem 0;
}
.funcionamiento__content {
  gap: 2.5rem;
}
.funcionamiento__data {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--first-color-2-lighter);
  border-radius: 0.5rem;
  position: relative;
}
.funcionamiento__img {
  width: 50%;
}
.funcionamiento__img img {
  position: relative;
}
.funcionamiento__circulo {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%);
  width: 7rem;
  height: 7rem;
  background: var(--first-color-1);
  border-radius: 50%;
  opacity: 0.3;
}
.funcionamiento__title {
  padding: 1rem 0;
  font-size: var(--h2-font-size);
  color: var(--first-color-2);
  font-weight: var(--font-semi-bold);
}
.funcionamiento__description {
  font-size: var(--normal-font-size);
  text-align: center;
  color: var(--first-color-2);
}

.dark-theme .funcionamiento__data {
  background: var(--container-color);
}
.dark-theme .funcionamiento__circulo {
  background: rgba(164, 179, 255, 0.65);
}
.dark-theme .funcionamiento__title {
  color: #fff;
}
.dark-theme .funcionamiento__description {
  color: var(--text-color);
}

@media screen and (max-width: 320px) {
  .funcionamiento__data {
    padding-bottom: 2rem;
    width: 100%;
  }
  .funcionamiento__circulo {
    width: 5rem;
    height: 5rem;
    background: #6f78dd;
  }
  .funcionamiento__title {
    font-size: var(--normal-font-size);
  }
  .funcionamiento__description {
    font-size: var(--smaller-font-size);
  }
}
@media screen and (min-width: 576px) {
  .funcionamiento__content {
    gap: 1.5rem;
  }
  .funcionamiento__data {
    width: 100%;
    padding: 3.5rem 1rem 2.5rem 1rem;
    display: grid;
    grid-template-rows: 6.5rem 4rem 1fr;
    text-align: center;
  }
  .funcionamiento__img {
    justify-self: center;
    width: 150px;
  }
  .funcionamiento__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .funcionamiento__content {
    gap: 2.5rem;
  }
  .funcionamiento__data {
    width: 100%;
  }
  .funcionamiento__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .funcionamiento {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.testimonios {
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/img/testimonios/fondo-azul2.png") center no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 0;
}
.testimonios::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--first-color-2);
  opacity: 0.5;
  z-index: -1;
}
.testimonios__container {
  overflow: hidden;
  position: relative;
}
.testimonios .testimonio__content {
  padding: 1rem 1rem 1.5rem;
}
.testimonios .testimonio__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: var(--first-color-2-lighter);
  border-radius: 50%;
  justify-self: center;
}
.testimonios .testimonio__img {
  width: 60px;
}
.testimonios .testimonio__description {
  padding-top: 0.5rem;
  font-weight: normal;
  text-align: center;
  color: rgb(236, 236, 236);
}
.testimonios .testimonio__name {
  font-size: var(--h2-font-size);
  text-align: center;
  color: var(--first-color-2-lighter);
}

.swiper-pagination {
  position: initial;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color-2-lighter);
}

.swiper-pagination-bullet {
  outline: none;
}

@media screen and (min-width: 768px) {
  .testimonios .testimonio__description {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .testimonios {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.dark-theme .testimonios::after {
  background: var(--body-color);
  opacity: 0.8;
}
.dark-theme .testimonios .testimonio__avatar {
  background: var(--first-color-2-lighter);
}
.dark-theme .testimonios .testimonio__description {
  color: var(--text-color);
}
.dark-theme .testimonios .testimonio__name {
  color: var(--first-color-2-lighter);
}
.dark-theme .swiper-pagination-bullet-active {
  background-color: var(--first-color-2-lighter);
}

.blog {
  padding-top: 5rem;
  padding-bottom: 7rem;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog__container {
  width: 90%;
  padding: 0;
}
.blog__content {
  padding-top: 2rem;
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog__data {
  width: 100%;
  padding-bottom: 2rem;
  background: --container-color;
  display: grid;
  border-radius: 1rem;
  border-bottom: 0.4rem solid var(--first-color-2-lighter);
  box-shadow: 0 0 10px hsla(var(--hue-color-1), 4%, 15%, 0.1);
}
.blog .img {
  width: 100%;
  height: 100%;
  border-bottom: 0.4rem solid var(--first-color-2-lighter);
}
.blog .izquierda {
  border-radius: 0.5rem 0.5rem 0 50%;
}
.blog .centro {
  border-radius: 0.5rem 0.5rem 0 0;
}
.blog .derecha {
  border-radius: 0.5rem 0.5rem 50% 0;
}
.blog__ubication {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}
.blog__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--small-font-size);
}
.blog__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  z-index: 111;
  transition: 0.3s;
}
.blog span {
  padding: 0 0.7rem;
}
.blog__information {
  padding: 0 1.5rem;
  display: grid;
  row-gap: 1.5rem;
}
.blog__title {
  color: none;
  font-size: var(--h3-font-size);
  text-align: center;
  line-height: 1.7rem;
}
.blog__link {
  color: var(--title-color);
}
.blog__link:hover {
  color: var(--first-color-2);
}
.blog__description {
  text-align: justify;
}
.blog__button {
  display: flex;
  align-items: center;
  color: var(--first-color-2);
}
.blog__button:hover .icon {
  padding-left: 0.5rem;
}
.blog .icon {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--first-color-2);
  padding-left: 0.2rem;
  transition: 0.3s;
}

.azul {
  color: #99a1ff;
}

.blanco {
  color: #fff;
}

.padding {
  padding-left: 1rem;
  padding-right: 1rem;
}

.dark-theme .blog .azul {
  color: #99a1ff;
}
.dark-theme .blog__data {
  background: var(--box-color);
  background-color: white;
}
.dark-theme .blog__icon {
  color: var(--first-color-2-lighter);
}
.dark-theme .blog__title {
  color: #fff;
}
.dark-theme .blog__button,
.dark-theme .blog .icon {
  color: var(--text-color);
}

@media screen and (max-width: 320px) {
  .blog__data {
    width: 100%;
  }
  .blog__ubication {
    padding: 0 1rem;
    font-size: var(--small-font-size);
  }
  .blog span {
    padding: 0 0.5rem;
  }
  .blog__information {
    padding: 0 1rem;
  }
  .blog__title {
    font-size: var(--normal-font-size);
  }
  .blog__description {
    font-size: var(--smaller-font-size);
  }
  .blog__button {
    font-size: --smaller-font-size;
  }
  .blog .icon {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 576px) {
  .blog__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog__data {
    width: 100%;
  }
  .blog__ubication {
    padding: 0 1.5rem;
  }
  .blog span {
    padding: 0 0.5rem;
  }
  .blog__information {
    padding: 0 1.5rem;
  }
  .blog__title {
    font-size: var(--h2-font-size);
  }
  .blog__description {
    font-size: var(--normal-font-size);
  }
}
@media screen and (min-width: 1024px) {
  .blog {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .blog__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.suscribete {
  background: var(--first-color-2-lighter);
  padding-bottom: 5rem;
  z-index: 1;
}
.suscribete__content {
  width: 100%;
  margin: 0 auto;
  gap: 1.5rem;
}
.suscribete__img {
  margin-top: 2.5rem;
  width: 250px;
  justify-self: center;
}
.suscribete__data {
  padding-top: 1rem;
  display: grid;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.suscribete__text {
  color: var(--first-color-2);
  padding-bottom: 1rem;
}
.suscribete__form {
  width: 100%;
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}
.suscribete input[type=email] {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding: 1rem 1.5rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}
.suscribete input[type=submit] {
  padding: 0 2rem;
  font-size: var(--normal-font-size);
  color: #fff;
  background: var(--first-color-2);
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.3s;
}
.suscribete input[type=submit]:hover {
  background: var(--first-color-1);
}

.padding-top {
  padding-top: 7rem;
}

.dark-theme .suscribete {
  background: #142850;
}
.dark-theme .suscribete .azul {
  padding-top: 4rem;
}
.dark-theme .suscribete .color {
  color: #fff;
}
.dark-theme .suscribete__text {
  color: var(--text-color);
}
.dark-theme .suscribete .button {
  background-color: var(--bg-button);
}
.dark-theme .suscribete .button:hover {
  background-color: var(--bg-button-hover);
}
.dark-theme .suscribete__form {
  width: 100%;
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}
.dark-theme .suscribete input[type=email] {
  background: var(--body-color);
  color: var(--text-color);
}
.dark-theme .suscribete input[type=submit] {
  background: var(--bg-button);
}
.dark-theme .suscribete input[type=submit]:hover {
  background: var(--bg-button-hover);
}

@media screen and (min-width: 576px) {
  .suscribete__content {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .suscribete {
    padding-bottom: 7rem;
  }
  .suscribete__content {
    width: 100%;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .suscribete__img {
    padding: 0;
    margin: 0;
    width: 24rem;
  }
  .suscribete__data {
    padding: 0;
    margin: 0;
    margin-left: 3.5rem;
  }
  .suscribete__text {
    width: 70%;
    text-align: left;
  }
  .padding-top {
    padding-top: 7rem;
  }
}
.conectado {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/img/conectado/conectado.jpg") center no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 0;
}
.conectado::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--first-color-1);
  opacity: 0.95;
  z-index: -1;
}
.conectado__data {
  display: grid;
  row-gap: 3.5rem;
}
.conectado__title {
  color: #fff;
  text-align: center;
}
.conectado__social {
  display: flex;
  justify-content: center;
}
.conectado__link {
  width: 3rem;
  height: 3rem;
  text-align: center;
  background: #fff;
  color: var(--first-color-1);
  border-radius: 50%;
  margin: 0 0.6rem;
  transition: 0.3s;
}
.conectado__link:hover {
  transform: translateY(-10px);
}
.conectado__icon {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 3rem;
}

.dark-theme .conectado::after {
  background: var(--box-color);
}
.dark-theme .conectado__link {
  background: var(--bg-button);
  color: #fff;
}

@media screen and (max-width: 320px) {
  .conectado__social {
    width: 100%;
  }
  .conectado__link {
    width: 2rem;
    height: 2rem;
    margin: 0 0.4rem;
  }
  .conectado__icon {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .conectado__data {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .conectado__title {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .conectado {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .conectado__title {
    font-size: 2rem;
  }
}
.footer {
  padding-top: 5rem;
  background: var(--container-color);
}
.footer__container .footer-preguntas {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__container .footer-preguntas__img {
  align-self: center;
  width: 220px;
  padding-bottom: 2rem;
}
.footer__container .footer-preguntas .preguntas {
  padding-top: 2rem;
}
.footer__container .footer-preguntas .preguntas__title {
  font-size: var(--h3-font-size);
  color: var(--first-color-1);
  margin-bottom: 1.5rem;
}
.footer__container .footer-preguntas .preguntas__data {
  display: grid;
  row-gap: 0.75rem;
}
.footer__container .footer-preguntas .preguntas__item {
  font-size: var(--small-font-size);
  color: var(--text-color);
}
.footer__container .footer-enlaces {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
}
.footer__container .footer-enlaces .enlace {
  gap: 0.8rem;
  padding-bottom: 2.5rem;
}
.footer__container .footer-enlaces .enlace__title {
  font-size: var(--h3-font-size);
  color: var(--first-color-1);
  margin-bottom: 0.5rem;
}
.footer__container .footer-enlaces .enlace__item {
  font-size: var(--small-font-size);
  padding: 0.4rem 0;
  transition: 0.3s;
}
.footer__container .footer-enlaces .enlace__item:hover {
  transform: translateX(10px);
}
.footer__container .footer-enlaces .enlace__link {
  color: var(--text-color);
}
.footer__container .footer-enlaces .contacto {
  display: grid;
  row-gap: 0.75rem;
}
.footer__container .footer-enlaces .contacto__info {
  display: flex;
  align-items: center;
}
.footer__container .footer-enlaces .contacto__icon {
  color: var(--first-color-1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}
.footer__container .footer-enlaces .contacto__name {
  font-size: var(--small-font-size);
  padding-left: 0.5rem;
  color: var(--text-color);
}
.footer__container .footer-copy {
  background: var(--first-color-1);
  text-align: center;
  font-size: var(--small-font-size);
  color: #fff;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.dark-theme .footer {
  background: var(--body-color);
}
.dark-theme .footer__container .footer-preguntas .preguntas__title {
  color: var(--first-color-2-lighter);
}
.dark-theme .footer__container .footer-enlaces .enlace__title {
  color: var(--first-color-2-lighter);
}
.dark-theme .footer__container .footer-enlaces .contacto__icon {
  color: var(--first-color-2-lighter);
}
.dark-theme .footer__container .footer-copy {
  background: var(--box-color);
  color: var(--text-color);
}

@media screen and (max-width: 320px) {
  .footer .footer-preguntas__img {
    width: 160px;
  }
  .footer .footer-preguntas .preguntas__data {
    row-gap: 0.3rem;
  }
  .footer .footer-enlaces .enlace__data {
    row-gap: 0.3rem;
  }
  .footer .footer-enlaces .contacto__icon {
    font-size: 1rem;
  }
  .footer .footer-copy {
    padding: 1.5rem 1rem;
  }
}
@media screen and (min-width: 576px) {
  .footer .footer-enlaces {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-enlaces .enlace {
    align-self: flex-start;
  }
  .footer .footer-enlaces .contacto__icon {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5rem;
  }
  .footer__container .footer-preguntas {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__container .footer-preguntas .preguntas {
    text-align: right;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding-top: 7rem;
  }
  .footer__container .footer-preguntas {
    flex-direction: row;
    align-items: center;
    padding-bottom: 5rem;
  }
  .footer__container .footer-preguntas__img {
    padding: 0;
    width: 190px;
  }
  .footer__container .footer-preguntas .preguntas {
    padding: 0;
    text-align: right;
  }
  .footer__container .footer-preguntas .preguntas__item {
    font-size: var(--normal-font-size);
  }
  .footer__container .footer-enlaces {
    padding-bottom: 3rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__container .footer-enlaces .enlace {
    display: grid;
    row-gap: 1rem;
  }
  .footer__container .footer-enlaces .enlace__data {
    row-gap: 1rem;
  }
  .footer__container .footer-enlaces .enlace__item {
    font-size: var(--normal-font-size);
  }
  .footer__container .footer-enlaces .contacto {
    row-gap: 1rem;
  }
  .footer__container .footer-enlaces .contacto__name {
    color: var(--text-color);
  }
  .footer__container .footer-copy {
    margin: 0;
    font-size: var(--normal-font-size);
  }
}
@keyframes homeHorizontal {
  0%, 100% {
    transform: translateX(-1rem);
  }
  50% {
    transform: translateX(1rem);
  }
}
@keyframes homeVertical {
  0%, 100% {
    transform: translateY(-1rem);
  }
  50% {
    transform: translateY(1rem);
  }
}
@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
.home-contac {
  height: 100%;
  max-height: 320px;
}
.home-contac__contacto {
  background: var(--first-color-1);
  height: 100%;
  max-height: 320px;
  display: flex;
  align-items: left;
}
.home-contac__contacto .ventaja__titulo {
  font-weight: 700;
  font-size: 4rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.home-contac__contacto .ventaja .padding-boton {
  padding-bottom: 1rem;
}
.home-contac__contacto .ventaja__description {
  font-size: 1.5rem;
}
.home-contac__contacto .ventaja__subtitulo {
  font-size: 1rem;
  text-align: center;
  color: var(--container-color);
}

.color-gris {
  color: var(--title-color);
}

.direccion {
  display: flex;
  flex-direction: column;
}
.direccion__content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .direccion__content {
    flex-direction: row;
  }
}
.direccion__item {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  color: var(--first-color-2);
  padding: 2rem 1rem;
}
.direccion__icon {
  font-size: 3.5rem;
  color: var(--first-color-2);
}
.direccion__title {
  font-size: var(--h3-font-size);
  padding-bottom: 0;
  font-weight: normal;
}
.direccion__text {
  font-weight: var(--font-semi-bold);
  text-align: center;
}
.direccion__text span {
  padding-left: 0.5rem;
}

.contactanos {
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/img/testimonios/fondo-azul2.png") center no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 0;
}
.contactanos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--first-color-2);
  opacity: 0.5;
  z-index: -1;
}
.contactanos__header {
  margin-bottom: 5rem;
}

.contactos {
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
}

.contact {
  width: 100%;
}
.contact .form {
  margin: 35px 30px;
}
.contact .form .dbl-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact .form .dbl-field {
    flex-direction: row;
    margin-bottom: 25px;
  }
}
.contact .form .dbl-field .field {
  height: 50px;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .contact .form .dbl-field .field {
    width: calc(50% - 13px);
    margin-bottom: 0;
  }
}
.contact .form .dbl-field .field input {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 20px 0 20px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
}
.contact .form .dbl-field .field input::-moz-placeholder {
  color: #bfbfbf;
}
.contact .form .dbl-field .field input::placeholder {
  color: #bfbfbf;
}
.contact .form .dbl-field .field input:focus {
  border: 2px solid var(--first-color-2);
}
.contact .form .dbl-field .field input:focus ~ i {
  color: var(--first-color-2);
}
.contact .form .message {
  position: relative;
}
.contact .form .message i {
  top: 20px;
  font-size: 20px;
}
.contact .form .message textarea {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 10px 20px 0 20px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
  max-height: 300px;
}
.contact .form .message textarea::-moz-placeholder {
  color: #bfbfbf;
}
.contact .form .message textarea::placeholder {
  color: #bfbfbf;
}
.contact .form .message textarea:focus {
  border: 2px solid var(--first-color-2);
}
.contact .form .message textarea:focus ~ i {
  color: var(--first-color-2);
}
.contact .form i {
  position: absolute;
  left: 18px;
  top: 50%;
  font-size: 17px;
  color: #bfbfbf;
  pointer-events: none;
  transform: translateY(-50%);
}
.contact .form .button-area {
  margin: 25px 0;
}
.contact .form .button-area button {
  font-size: 18px;
  border: none;
  color: #fff;
  border-radius: 5px;
  background-color: var(--first-color-2);
  padding: 13px 25px;
  cursor: pointer;
  transition: all 0.3s;
}
.contact .form .button-area button:hover {
  background-color: var(--first-color-1);
}
.contact .form .button-area span {
  color: #0d6efd;
  margin-left: 30px;
  display: none;
}

@media screen and (max-width: 768px) {
  .contacto header {
    text-align: center;
  }
  .contacto .dbl-field {
    flex-direction: column;
    margin: 0 !important;
  }
  .contacto .dbl-field .field {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .contacto .form .message textarea {
    resize: none;
  }
  .contacto .form .button-area {
    margin: 25px 0;
    text-align: center;
  }
  .contacto .form .button-area button {
    width: 100%;
    margin-bottom: 20px;
  }
  .contacto .form .button-area span {
    margin: 0;
  }
}
.designe-process.service-page {
  padding: 145px 0px 90px 0px;
}

.designe-process.service-page .image-layer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 950px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

/** designe-process **/
.designe-process {
  position: relative;
  padding: 80px 0px 90px 0px;
}

.designe-process .sec-title h2 {
  line-height: 60px;
  margin-bottom: 62px;
}

.designe-process .single-item {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.designe-process .single-item .inner-box {
  position: relative;
  display: block;
  background-color: var(--first-color-2-lighter);
  height: 100%;
  padding: 70px 30px 65px 30px;
  box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
}

.designe-process .single-item .inner-box .icon-box {
  position: relative;
  display: inline-block;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  margin-bottom: 46px;
  z-index: 1;
}

.designe-process .single-item .inner-box .icon-box:before {
  position: absolute;
  content: "";
  background: #4527a4;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  transform: rotate(45deg);
  transition: all 500ms ease;
}

.designe-process .single-item:hover .inner-box .icon-box:before {
  transform: rotate(0deg);
}

.designe-process .single-item .inner-box .icon-box:after {
  position: absolute;
  content: "";
  border: 1px dashed #4527a4;
  width: 80px;
  height: 80px;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  z-index: -1;
}

.designe-process .single-column:nth-child(2) .single-item .inner-box .icon-box:before {
  background: #34c700;
}

.designe-process .single-column:nth-child(2) .single-item .inner-box .icon-box:after {
  border-color: #34c700;
}

.designe-process .single-column:nth-child(3) .single-item .inner-box .icon-box:before {
  background: #ff0000;
}

.designe-process .single-column:nth-child(3) .single-item .inner-box .icon-box:after {
  border-color: #ff0000;
}

.designe-process .single-column:nth-child(4) .single-item .inner-box .icon-box:before {
  background: #ff8500;
}

.designe-process .single-column:nth-child(4) .single-item .inner-box .icon-box:after {
  border-color: #ff8500;
}

.designe-process .single-column:nth-child(5) .single-item .inner-box .icon-box:before {
  background: #ff00ff;
}

.designe-process .single-column:nth-child(5) .single-item .inner-box .icon-box:after {
  border-color: #ff00ff;
}

.designe-process .single-column:last-child .single-item .inner-box .icon-box:before {
  background: #00aeef;
}

.designe-process .single-column:last-child .single-item .inner-box .icon-box:after {
  border-color: #00aeef;
}

.designe-process .single-item .inner-box .icon-box i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  border: 1px dotted #fff;
  font-weight: 700;
}

.designe-process .single-item .inner-box h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #222;
  margin-bottom: 19px;
}

.designe-process .single-item .inner-box h4 a {
  display: inline-block;
  color: #222;
}

.designe-process .single-item .inner-box h4 a:hover {
  color: #4527a4;
}

.designe-process .single-item .inner-box .text {
  position: relative;
  display: block;
  font-size: var(--normal-font-size);
}

.designe-process .single-item .inner-box .left-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  display: block;
}

.designe-process .single-item .inner-box .right-layer {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  display: block;
}

.designe-process .single-item .inner-box .left-layer:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 50%;
  height: 0%;
  display: block;
  background-color: #fff;
  transition: all 600ms ease;
}

.designe-process .single-item .inner-box .left-layer:after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 50%;
  height: 0%;
  display: block;
  background-color: #fff;
  transition: all 600ms ease;
}

.designe-process .single-item .inner-box .right-layer:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 50%;
  height: 0%;
  display: block;
  background-color: #fff;
  transition: all 600ms ease;
}

.designe-process .single-item .inner-box .right-layer:after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 50%;
  height: 0%;
  display: block;
  background-color: #fff;
  transition: all 600ms ease;
}

.designe-process .single-item:hover .inner-box .left-layer:before,
.designe-process .single-item:hover .inner-box .left-layer:after {
  height: 100%;
}

.designe-process .single-item:hover .inner-box .right-layer:before,
.designe-process .single-item:hover .inner-box .right-layer:after {
  height: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.color1 {
  color: var(--first-color-1);
}

.padding-botom {
  padding-bottom: 3rem;
}

/*  Responsivo */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}/*# sourceMappingURL=menu.css.map */