@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

:root {
  --color-uno: #2f2f84;
  --color-dos: #f05127;
  --color-tres: #8b8f99;
  --color-cuatro: #71c8b4;
  --color-cinco: rgb(243, 243, 243);
}

html {
  scroll-behavior: smooth;
  background: var(--color-cinco);
}

body {
  font-family: "Quicksand", sans-serif;
}

/*---- Header ----*/

.header {
  display: flex;
  position: fixed;
  z-index: 2;
}

.laimagen {
  display: flex;
  height: 100px;
  width: 100vw;
  top: 0;
  background-color: #fff;
}

.logo-principal {
  width: 300px;
  margin: auto;
}

.logo-secundario {
  display: none;
}

.nav {
  position: fixed;
  display: grid;
  height: 60vh;
  grid-template-rows: repeat(3, 1fr);
  background-color: var(--color-cinco);
  box-shadow: 14px 14px 20px #d8d8d8, -14px -14px 20px #fff;
  margin: 20px;
  border-radius: 18px;
  left: 0px;
  bottom: 20px;
}

.navmenu1 {
  display: grid;
  grid-row: 1;
  transform: rotate(-90deg);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin: auto;
}

.navmenu2 {
  display: grid;
  grid-row: 2;
  transform: rotate(-90deg);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin: auto;
}

.navmenu3 {
  display: grid;
  grid-row: 3;
  transform: rotate(-90deg);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin: auto;
}

.social {
  position: fixed;
  text-align: center;
  margin-right: 20px;
  background-color: var(--color-cinco);
  box-shadow: 14px 14px 20px #d8d8d8, -14px -14px 20px #fff;
  border-radius: 18px;
  right: 0;
  bottom: 40%;
}

.social .fab {
  margin: 10px 10px;
  font-size: 22px;
  padding: 5px 5px;
}

.header a,
.header a:link,
.header a:visited,
.header a:active {
  text-decoration: none;
  color: var(--color-uno);
}

.social a:hover,
.header a:hover {
  color: var(--color-dos);
  text-decoration-line: underline;
  text-underline-offset: 1px;
  transition: transform 500ms ease;
}

.social .fab:hover {
  font-size: 28px;
}

.navmenu:hover {
  font-size: 16px;
}

.mobilenav {
  display: none;
}

@media only screen and (max-width: 600px) {
  .logo-principal {
    display: none;
  }

  .laimagen {
    display: flex;
    width: 100vw;
    height: 80px;
  }

  .logo-secundario {
    display: block;
    width: 200px;
    margin: auto;
  }

  .nav,
  .social {
    display: none;
  }

  .mobilenav {
    display: block;
    position: fixed;
    background-color: var(--color-dos);
    border-radius: 15px;
    z-index: 2;
    bottom: 0;
    left: 50%;
    width: 400px;
    transform: translateX(-50%);
    margin-bottom: 20px;
  }

  .mobilenavinside {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 30px;
  }

  .mobilenavinside a {
    color: var(--color-uno);
  }

  .mobilenavinside a:hover {
    color: var(--color-cuatro);
  }

  .ico1 {
    display: grid;
    grid-column: 1;
  }

  .ico2 {
    display: grid;
    grid-column: 2;
    border-left: 1px solid #fff;
  }

  .ico3 {
    display: grid;
    grid-column: 3;
    border-left: 1px solid #fff;
  }

  .ico4 {
    display: grid;
    grid-column: 4;
    border-left: 1px solid #fff;
  }
}

/*---- hero ----*/

.animation {
  background-color: var(--color-uno);
  background-image: url(/img/backs.svg);
  margin: 140px 120px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -14px -14px 20px #fff;
}

.erick-svg {
  display: flex;
  width: 200px;
  margin: auto;
  margin-bottom: -20px;
  z-index: 1;
}

.animationgif {
  display: flex;
  width: 600px;
  margin: auto;
}

.animationtext {
  text-align: center;
  color: var(--color-cinco);
  margin: 0 50px;
  padding: 60px 40px;
  font-size: 30px;
}

.linea-text {
  width: 45px;
  padding-top: 12px;
}

.ejemplos {
  background-color: var(--color-cinco);
  height: 200px;
}

.cuadroejemplo {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.cuadroejemplo-text {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Permanent Marker";
  font-size: 20px;
  padding: 0 15px;
  border-right: 1px solid var(--color-uno);
  margin: 20px 0;
}

.cuadroejemplo-button {
  text-align: center;
  font-weight: 600;
  margin: auto;
  font-size: 22px;
  padding: 20px;
  background-color: var(--color-cuatro);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1;
  box-shadow: 8px 8px 16px #c2c2c2, -8px -8px 16px #fff;
}


.cuadroejemplo-button a:link,
.cuadroejemplo-button a:visited,
.cuadroejemplo-button a:active {
  text-decoration: none;
}

.cuadroejemplo-button:hover {
  background-color: var(--color-tres);
}

.cuadroejemplo-button a {
  color: #354B45;
}

.cuadroejemplo-button a:hover {
  color: #fff;
}

.whacha {
  width: 45px;
}

@media only screen and (max-width: 1300px) {
  .animationgif {
    width: 300px;
  }

  .cuadroejemplo-button {
    margin: auto 20px;
    font-size: 18px;
    padding: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .animation {
    margin: 0;
    border-radius: 0;
    padding-top: 100px;
    box-shadow: none;
  }

  .animationtext {
    margin: 0 40px;
    padding: 40px 10px;
    font-size: 20px;
  }

  .ejemplos {
    padding: 0 20px;
    box-shadow: none;
  }

}

/*-- Servcios A--*/

#servicios {
  text-align: center;
  margin: 0 120px 120px 120px;
  padding: 60px 20px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
  background-color: var(--color-cinco);
}

#servicios:target:before {
  content: "";
  display: block;
  height: 60px;
}

.services {
  margin-bottom: 30px;
}

.services h2 {
  font-size: 30px;
  color: var(--color-uno);
}

.services1,
.services2 {
  text-align: justify;
}

.servicesone {
  font-family: "Permanent Marker";
  padding-top: 30px;
  font-size: 28px;
}

@media only screen and (max-width: 600px) {
  #servicios {
    border-radius: 0;
    margin: 0;
  }
}

/*-- Servcios b--*/

.losservicios {
  text-align: center;
  margin: 0 120px 120px 120px;
  padding: 60px 25px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
  background-color: var(--color-uno);
  color: #fff;
}

.ima2 {
  width: 200px;
  padding: 40px 0;
}

.services-box {
  margin: 10px 0;
}

.heading {
  margin: 10px;
  font-size: 22px;
}

.peque {
  font-size: 16px;
  margin: 10px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .losservicios {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .peque {
    text-align: justify;
  }
}

/*---- acerca de clientes ----*/

.areacliente {
  text-align: center;
  margin: 0 120px 120px 120px;
  padding: 60px 25px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
  background-color: var(--color-cuatro);
  color: #050505;
}

#acercade:target:before {
  content: "";
  display: block;
  height: 80px;
}

.ima1 {
  width: 200px;
  padding: 10px 0;
}

.clientestitulo {
  font-family: "Permanent Marker";
  font-size: 26px;
}

.areacliente p {
  padding-top: 15px;
  text-align: justify;
}

@media only screen and (max-width: 600px) {
  .areacliente {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/*-- logos cliente --*/

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

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--color-cinco);
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 90%;
  height: 100%;
  padding: 60px 0;
  object-fit: cover;
  margin: auto;
}


.swiper-button-pre, .swiper-button-next {
  color: #2f2f84;
}

.swiper-container::part(bullet-active) {
  background-color: #71c8b4;
}


.clientes-logo {
  text-align: center;
  margin: 0 120px 120px 120px;
  padding: 60px 25px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
}


@media only screen and (max-width: 600px) {
  .clientes-logo {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .swiper-slide img {
  width: 70%;
  margin: auto;
  }
}

/*-- Contacto --*/

.form-container {
  text-align: center;
  margin: 0 120px 120px 120px;
  padding: 60px 25px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
  background-color: var(--color-uno);
}

.form {
  position: relative;
  z-index: 1;
}

.form-info {
  color: #fff;
  padding-bottom: 40px;
}

.form-info h1 {
  padding-bottom: 10px;
}

.col input,
.form-control {
  width: 90%;
  padding: 14px;
  margin: 8px 0;
  border-style: none;
  border-radius: 5px;
  font-size: 18px;
}

.btn {
  background-color: var(--color-dos);
  width: 120px;
  height: 60px;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  border-style: none;
}

.btn:hover {
  background-color: var(--color-cuatro);
}

@media only screen and (max-width: 600px) {
  .form-container {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/**--- footer ---**/

#pageFooter {
  display: flex;
  text-align: center;
  background-color: var(--color-tres);
  justify-content: center;
  align-items: center;
  margin: 0 120px 120px 120px;
  padding: 60px 25px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
  color: #fff;
  z-index: 1;
}

.socialmedia {
  display: flex;
}

.socialmedia .fab {
  color: var(--color-cuatro);
  padding-right: 20px;
  font-size: 22px;
}

@media only screen and (max-width: 600px) {
  #pageFooter {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding-bottom: 120px;
  }
}


/*---- tarjeta servicios ----*/

.precios {
  text-align: center;
  margin: 0 120px 120px 120px;
  padding: 60px 20px;
  border-radius: 25px;
  box-shadow: 14px 14px 20px #d8d8d8, -8px 0px 8px #fff;
  background-color: var(--color-cinco);
}

#wrap.swiper.mySwiper2.swiper-coverflow.swiper-3d.swiper-initialized.swiper-horizontal.swiper-watch-progress{
  width: 40%;
  padding-bottom: 20px 0;
}

#wrap1.swiper-wrapper {
  padding: 60px;
}


#wrap2 {
  display: flex;
  width: 70px;
  height: 600px;
  margin: auto;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 4px 4px 15px #d8d8d8, -8px 0px 8px #fff;
  background-color: var(--color-cinco);
}


.swiper-pagination {
  --swiper-pagination-bullet-size: 15px;
}


.card-image {
  width: 10em;
  height: 10em;
  border-radius: 50%;
  border: 5px solid var(--color-cuatro);
  margin-bottom: 2em;
}

.card-image img{
  width: 100%; 
  height: 100%;
  object-fit: cover;
  padding: 0;
}

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

.card-content a,.card-content a:visited, .card-content a:link  {
  text-decoration: none;
}

.card-title {
  font-size: 1.5rem;
  color: var(--color-uno);
  font-weight: 800;
  position: relative;
  top: .2em;
  text-transform: uppercase;
}

.card-price {
  margin-top: 15px;
  color: var(--color-uno);
}

.card-text {
  text-align: center;
  font-size: 1.1rem;
  margin: 1em 0;
  color: var(--color-uno);
}

.card-btn {
  background-color: var(--color-uno);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  padding: .5em;
  border-radius: .5em;
  margin-top: .5em;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {

  .precios {
    border-radius: 0;
    margin: 0;
    box-shadow: 0;
  }

  .precios p {
    padding: 0 20px;
  }


  #wrap.swiper.mySwiper2.swiper-coverflow.swiper-3d.swiper-initialized.swiper-horizontal.swiper-watch-progress{
    width: 100%;
    height: 100%;
    margin: auto;
  }

  #wrap2 {
    width: 100%;
    height: 660px;
    margin: auto;
    padding: auto;
    box-shadow: 0;
  }

  .swiper-pagination {
    --swiper-pagination-bullet-size: 12px;
  }

  .card-image {
    width: 6em;
    height: 6em;
}

}