* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Sunny Spells";
  src: url("../tipografias/SunnySpellsBasicRegular.ttf") format("truetype");
}

@font-face {
  font-family: "PP Pangram Sans Rounded";
  src: url("../tipografias/PPPangramSansRounded-Medium.otf") format("truetype");
}

body {
  font-family: "PP Pangram Sans Rounded";
  overflow-x: hidden;
}

h1 {
  font-family: "Sunny Spells";
  letter-spacing: 10px;
  margin: 50px 0px -60px 0px;
  text-align: center;
  color: #ffde39;
  font-size: 10rem;
  font-weight: 800;
  z-index: 1900;
}

h2 {
  font-family: "Sunny Spells";
  letter-spacing: 7px;
  text-align: center;
  color: #ffde39;
  font-size: 5rem;
  font-weight: 900;
  padding-top: 30px;
  padding-bottom: 20px;
  z-index: 1001;
}

h3 {
  font-size: 2rem;
  font-weight: 900;
  padding: 1rem;
}

p {
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.fade-in.fade-in-visible {
  opacity: 1;
  z-index: 500;
}
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ------------------------ NAV ------------------------------ */
.container-nav {
  width: 100%;
  height: 16vh;
  position: fixed;
  top: 0;
  padding: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.container-nav a img {
  height: 85px;
  padding: 10px;
}

.navbar {
  padding: 15px;
  margin: 10px;
}

#navbar {
  transition: top 0.3s;
}

.menu-btn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn i {
  font-size: 5rem;
  color: #ffde39;
}

.menu-btn i:hover {
  font-size: 4.6rem;
  transition: 0.3s ease;
  color: #ffde39;
}

.btn-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: #ffc89c;
  transition: right 0.3s ease;
  z-index: 2000;
}
.menu.show li:first-child {
  text-align: right;
}
.menu.show {
  right: 0;
  z-index: 2000;
}

.menu li {
  padding: 15px;
  font-size: 1.7rem;
  font-weight: 600;
}

.menu li:hover {
  font-size: 1.6rem;
  transition: 0.3s ease;
}

.menu li a,
.menu i {
  color: #fff;
  text-decoration: none;
}

.menu li a:hover {
  color: #fe7101;
}

#close-btn {
  background-color: transparent;
  font-size: 1.5rem;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

#close-btn:hover {
  font-size: 1.438rem;
  transition: 0.3s ease;
  color: #fe7101;
}
/* ------------------------ NAV ------------------------------ */

/* ------------------------ HEADER ------------------------------ */

.arrow-button {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.arrow-button a {
  font-style: none;
}
.arrow-button i {
  color: #ffde39;
  font-size: 5rem;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.arrow-button i:hover {
  color: #f8eba7;
}

.separador {
  width: auto;
  height: 25%;
}

header {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.titulo img{
  height: 8rem;
}

.video-background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-cont {
  width: 100%;
  overflow: hidden;
}

#video-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  background: #000000a9;
}

.h1Animacion {
  display: flex;
  width: 80%;
  height: 4rem;
  color: #fff;
  font-size: 4rem;
  line-height: 4rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  flex-direction: row;
  justify-content: center;
}

.h1Animacion ul {
  list-style: none;

  animation: cambiar 7s infinite;
}

.h1Animacion ul li {
  font-size: 3rem;
  list-style: none;
}

.h1Animacion h2 {
  padding: 0;
  font-size: 4rem;
}

.h1Animacion ul,
.h1Animacion h2 {
  font-family: "PP Pangram Sans Rounded";
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
}

@keyframes cambiar {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: 0;
  }

  25% {
    margin-top: -4rem;
  }
  50% {
    margin-top: -4rem;
  }

  55% {
    margin-top: -8rem;
  }
  80% {
    margin-top: -8rem;
  }

  85% {
    margin-top: -4rem;
  }
  95% {
    margin-top: -4rem;
  }

  100% {
    margin-top: 0;
  }
}
/* ------------------------ HEADER ------------------------------ */

/* ------------------------ SOMOS ------------------------------ */

.containerSomos {
  background-color: #d82b7a;
  width: 100%;
  padding: 55px 0px 55px 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.somos {
  margin: auto;
  max-width: 900px;
  padding: 10px;
  font-weight: 300;
  color: #fff;
  font-size: 1.5rem;
}

.somos span {
  font-size: 2rem;
  font-weight: 600;
  color: #ffde39;
}
/* ------------------------ SOMOS ------------------------------ */

/* ------------------------ SERVICIOS ------------------------------ */
.containerServicios {
  width: 100%;
  height: 100%;
  background-image: url(/img/payton-butler-dupe.jpeg);
  background-size: cover;
  background-position: center;
}

.divContainer {
  padding: 3rem 0rem 4rem 0rem;
  background-color: #000000a9;
}

.parent {
  display: flex;
  flex-direction: column;
  align-items: center;
}

article {
  margin: auto;
  padding: 20px 0px 20px 0px;
}

.div1,
.div2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.a {
  width: 100%;
  max-width: 1000px;
  background-color: #d82b7a;
  color: #fff;
  padding: 30px 50px 30px 50px;
  border-radius: 20px;
  z-index: 1;
    text-decoration: none;
    cursor: pointer;
}

.b {
  width: 100%;
  max-width: 1000px;
  background-color: #d9aac0;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 300;
  z-index: 2;
}
.b li {
  padding-bottom: 20px;
}

/* ------------------------ SERVICIOS ------------------------------ */

/* ------------------------ MODELO DE TRABAJO ------------------------------ */
.containerModelo {
  width: 100%;
  min-height: 75vh;
  background-color: #ffc89c;
  text-align: center;
  margin: auto;
  padding: 4rem 0rem;
}
.containerModelo h2 {
  color: #fe7101;
  padding: 0px 20px 20px 20px;
}

.containerModelo p {
  max-width: 70%;
  margin: auto;
  padding-bottom: 80px;
  color: #fe7101;
}

.containerModelo h3 {
  color: #fe7101;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  display: flex;
  top: 25%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px 3px 3px 3px;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 3px 3px 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #fe7101;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* ------------------------ MODELO DE TRABAJO ------------------------------ */

/* ------------------------ NUESTRA CONSULTORA ------------------------------ */

.containerConsultora {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.containerConsultora div {
  width: 50%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(157, 193, 240, 0.98);
}

.consultoraVideo video {
  width: 100%;
  height: 100vh;
}

.consultoraVideo {
  background-image: url(../img/consultora.JPG);
  background-size: cover;
  background-position: center;
}

.consultoraCont {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.consultoraText {
  width: 100% !important;
  height: 60% !important;
}

.containerConsultora div h2 {
  color: #d82b7a;
  text-align: left;
  width: 70%;
  margin: auto;
}

.containerConsultora div p {
  color: #d82b7a;
  max-width: 70%;
  margin: auto;
}

/* ------------------------ NUESTRA CONSULTORA ------------------------------ */

/* ------------------------ NUESTRO EQUIPO------------------------------ */

.containerEquipo {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.containerEquipo div {
  width: 50%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(157, 193, 240, 0.98);
}

.equipoVideo {
  background-image: url(../img/equipo.JPG);
  background-size: cover;
  background-position: center;
}

.containerEquipo div h2 {
  color: #d82b7a;
  text-align: left;
  width: 70%;
  margin: auto;
}

.containerEquipo div p {
  max-width: 70%;
  color: #d82b7a;
  margin: auto;
}

/* ------------------------ NUESTRO EQUIPO------------------------------ */

/* ------------------------  BLOG DE NOTICIAS------------------------------ */

.containerNoticias {
  width: 100%;
  height: 100%;
  background-image: url(/img/bg-servicios.jpg);
  background-size: cover;
  background-position: center;
}

.bg-noticias {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(6, 5, 0, 0.5998774509803921) 48%,
    rgba(6, 5, 0, 1) 100%
  );
  width: 100%;
  height: 100%;
  padding: 15px 0px 15px 0px;
  margin: auto;
}

.card {
  overflow: hidden;
  width: 100%;
}

.cardsContainer {
  width: 80%;
  height: fit-content;
  margin: auto;
  transition: transform 0.5s ease-in-out;
  display: flex;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  width: 80%;
  height: fit-content;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
}

.imgCard {
  max-height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.imgCard img {
  max-width: 100%;
  max-height: 100%;
}

.cardTextos {
  width: 90%;
  height: 55%;
  margin: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.limite-palabras {
  max-height: 260px;
  overflow: hidden;
}

.card h3 a {
  padding: 10px;
}

.card h3 a {
  text-decoration: none;
  color: #181818;
}

.card h3 a:hover {
  color: #ff9f51;
}

.card p {
  padding: 13px;
}

.card button {
  background-color: #fe7101;
  color: #fff;
  border: none;
  font-size: 1rem;
  width: 100%;
  height: 20%;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.card button:hover {
  background-color: #ff9f51;
}

/* ------------------------  BLOG DE NOTICIAS------------------------------ */

/* ------------------------ CLIENTES ------------------------------ */

.bg-clientes {
  background-color: #d9aac0;
  width: 100%;
  height: 100%;
  padding: 2rem 0rem;
}

.bg-clientes h2 {
  color: #ffde39;
}
.cardClientes {
  width: 90%;
  height: 450px;
  border-radius: 10px;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.imgClientes {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.imgClientes img {
  max-width: 90%;
  max-height: 100%;
}

.clientesTextos {
  font-size: 2rem;
  width: 90%;
  margin: auto;
}

.clientesTextos span {
  font-size: 3rem;
}

.slider-container > * {
  height: fit-content !important;
}
/* ------------------------ CLIENTES ------------------------------ */

/* ------------------------ CONTACTO ------------------------------ */

.containerContacto {
  width: 100%;
  background-image: url(/img/contacto.jpg);
  background-size: cover;
  background-position: center;
}

.contactoBG {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(7, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
}

.containerContacto h2 {
  color: #fe7101;
  grid-area: 1 / 3 / 3 / 5;
}

.containerContacto .contactoInfo {
  grid-area: 6 / 2 / 7 / 6;
  color: #fe7101;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.containerContacto span p {
  margin-left: 10px;
  font-weight: 400;
  color: #fff;
}

.formGrid {
  grid-area: 2 / 2 / 6 / 6;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.F1 {
  grid-area: 1 / 1 / 2 / 3;
  margin: 10px;
}

.F2 {
  grid-area: 1 / 3 / 2 / 5;
  margin: 10px;
}

.F3 {
  grid-area: 2 / 1 / 4 / 5;
  margin: 10px;
}

.F4 {
  grid-area: 4 / 3 / 5 / 5;
  margin: 10px;
}

h4,
h5,
h6 {
  margin-bottom: 1rem;
}
/* ------------------------ CONTACTO ------------------------------ */

/* ------------------------ FORM ------------------------------ */

label {
  font-weight: bold;
  color: #fe7101;
}

input[type="text"],
input[type="email"] {
  width: 95%;
  font-size: 1.5rem;
  padding: 10px;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  object-fit: cover;
}

textarea {
  width: 98%;
  height: 50%;
  max-width: 100%;
  max-height: 90%;
  font-size: 1.5rem;
  margin-top: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  object-fit: cover;
}

input[type="submit"] {
  background-color: #fe7101;
  font-family: "PP Pangram Sans Rounded";
  color: #fff;
  border: none;
  font-size: 1rem;
  width: 100%;
  height: 50%;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #ff9f51;
  transition: 0.3s ease !important;
}

/* ------------------------ FOOTER ------------------------------ */

footer {
  width: 100%;
  padding: 4rem 0rem;
  height: fit-content;
  background-color: #ffc89c;
  list-style: none;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

footer div p,
footer div span {
  color: #fe7101 !important;
  text-align: center;
}

footer img {
  width: 7rem;
}

.redes {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 1rem;
  color: #fe7101;
}
.redes li a {
  color: #fe7101;
  text-decoration: none;
}
.redes i {
  font-size: 4rem;
  padding: 1rem;
}

.redes i:hover {
  color: #ff9f51;
  transition: 0.3s ease !important;
}

/* ------------------------ FOOTER ------------------------------ */

.wpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.wpp img {
  max-width: 60px;
}

/* ------------------------ MEDIA QUERYS ------------------------------ */

@media screen and (max-width: 800px) {
  .container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .video-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  #video-bg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: auto;
    height: auto;
    z-index: -1;
  }

  .container-nav {
    width: 95%;
    height: 12vh;
  }

  .menu li {
    font-size: 1.5rem;
  }

  h1 {
    margin: 50px 0px -30px 0px;
    font-size: 6.75rem;
  }

  .titulo img {
    height: 12rem;
}

  .h1Animacion {
    width: 90%;
  }

  h2 {
    font-size: 3rem;
  }

  .container-nav a img {
    height: 60px;
    padding: 10px;
  }

  .menu-btn i {
    font-size: 4rem;
  }

  .somos {
    text-align: center;
    font-size: 1.5rem;
  }

  .div1,
  .div2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .a,
  .b {
    width: 80%;
  }

  .b li {
    font-size: 1.2rem;
  }

  .containerConsultora {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .containerEquipo {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    align-items: center;
  }

  .containerConsultora div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(187 221 225 / 98%);
  }

  .consultoraVideo video,
  .equipoVideo video {
    height: 50vh;
  }

  .containerConsultora div h2,
  .containerEquipo div h2 {
    padding: 22px;
    text-align: center;
  }

  .containerConsultora div p,
  .containerEquipo div p {
    font-size: 1.5rem;
    padding-bottom: 50px;
  }

  .containerEquipo div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(187 221 225 / 98%);
  }

  .swiffy-slider:hover .slider-nav {
    visibility: hidden !important;
  }

  .cardsContainer {
    width: 99%;
    padding: 0;
  }

  .card button {
    height: 15%;
    margin-bottom: 10px;
  }

  p {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .cardClientes {
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .imgClientes img {
    max-width: 75%;
    max-height: 100%;
  }

  .clientesTextos {
    text-align: center;
    padding: 30px;
  }

  .clientesTextos span {
    font-size: 2rem;
  }

  .contactoBG {
    background-color: #000000a9;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .containerContacto h2 {
    grid-area: 1 / 2 / 2 / 4;
  }

  .formGrid {
    grid-area: 2 / 1 / 5 / 5;
    padding: 10px;
  }

  .containerContacto p {
    grid-area: 6 / 2 / 7 / 4;
    font-size: 1.5rem;
  }

  .containerContacto span {
    grid-area: 7 / 2 / 7 / 4;
    font-size: 1.5rem;
  }

  .containerContacto span p {
    font-size: 1.5rem;
  }

  .containerContacto .contactoInfo {
    grid-area: 5 / 1 / 5 / 5;
    padding: 1rem;
  }

  input[type="text"],
  input[type="email"] {
    width: 100%;
    height: 50%;
    font-size: 1.5rem;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    object-fit: cover;
  }

  label {
    font-size: 1.2rem;
  }

  footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px 0px;
  }
}

@media screen and (max-width: 400px) {

  p,
  li{
    font-size: 1rem !important;
  }
  .container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .video-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  #video-bg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: auto;
    height: auto;
    z-index: -1;
  }

  .container-nav {
    width: 95%;
    height: 12vh;
  }

  .menu li {
    font-size: 1.5rem;
  }

  h1 {
    margin: 50px 0px -30px 0px;
    font-size: 3.75rem;
    line-height: 70px;
  }

  .titulo{
    padding-bottom: 2rem;
  }
  .titulo img {
    height: 6rem;
}

  .h1Animacion {
    width: 90%;
  }

  .h1Animacion h2 {
    display: none;
  }

  .h1Animacion ul li {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
    font-weight: 900;
    padding-bottom: 10px;
  }

  .container-nav a img {
    height: 60px;
    padding: 10px;
  }

  .menu-btn i {
    font-size: 3rem;
  }

  .somos {
    text-align: center;
    font-size: 1rem;
  }

  .div1,
  .div2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .a,
  .b {
    width: 65%;
  }

  .card p {
    font-size: 0.7rem;
  }

  .limite-palabras {
    max-height: 200px;
    overflow: hidden;
  }

  .containerConsultora {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .containerEquipo {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    align-items: center;
  }

  .containerConsultora div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(187 221 225 / 98%);
  }

  .consultoraVideo,
  .equipoVideo {
    height: 30vh !important;
  }

  .consultoraText {
    padding: 1rem;
  }
  .containerConsultora div h2,
  .containerEquipo div h2 {
    padding: 22px;
    text-align: center;
  }

  .containerConsultora div p,
  .containerEquipo div p {
    font-size: 1rem;
    padding-bottom: 15px;
  }

  .containerEquipo div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(187 221 225 / 98%);
  }

  .swiffy-slider:hover .slider-nav {
    visibility: hidden !important;
  }

  .cardsContainer {
    width: 99%;
    padding: 0;
  }

  p {
    font-size: 1rem;
    font-weight: 400;
  }

  .cardClientes {
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .clientesTextos {
    text-align: center;
    padding: 15px;
  }

  .clientesTextos span {
    font-size: 2rem;
  }

  .contactoBG {
    background-color: #000000a9;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .containerContacto h2 {
    grid-area: 1 / 4 / 2 / 3;
  }

  .formGrid {
    grid-area: 2 / 1 / 5 / 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .containerContacto p {
    grid-area: 6 / 1 / 7 / 4;
    font-size: 1.5rem;
    padding: 10px;
  }

  .containerContacto span {
    grid-area: 7 / 1 / 7 / 6;
    font-size: 1.5rem;
    padding: 10px;
  }

  .containerContacto span p {
    font-size: 1.5rem;
  }

  .containerContacto .contactoInfo {
    grid-area: 5 / 1 / 5 / 7;
    color: #fe7101;
    padding: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  input[type="text"],
  input[type="email"] {
    width: 100%;
    height: 50%;
    font-size: 1.5rem;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    object-fit: cover;
  }

  label {
    font-size: 0.7rem;
  }

  footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px 0px;
  }
  footer img {
    padding-top: 1rem;
    width: 7rem;
  }
  

}
