*{
  box-sizing: border-box;
  font-family: 'Lato', sans-serif !important;
}

body {
  font-family: 'Lato', sans-serif !important;
  margin: 0;
  padding: 0;
  background: linear-gradient(115deg, #22225f 10%, #2eb2a7 90%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 40px;
}

.new-logo {
  width: 5cm;
  height: 0,7cm;
}

.logo-button:hover {
  cursor: pointer;
}






.navbar-top {
  background: linear-gradient(to right, #22225f, #2eb2a7);
  color: white;
  display: flex;
  justify-content: flex-end; /* Alinea todos los elementos hacia la derecha */
  align-items: center;       /* Alinea verticalmente los elementos en el centro */
  padding: 10px 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-top .flags {
  display: flex;
  gap: 10px;
  align-items: center; 
  margin-right: 5px;
  margin-top: -5px;
}

.navbar-top .flags img {
  width: 25px;
  height: 15px;
  object-fit: cover;

}

.btn-contacto {
  background: linear-gradient(90deg, #262c5e, #28a694);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -9px;
  display: inline-block;
  text-decoration: none;
  transition: background-position 0.4s;
  background-size: 200%;
}

.btn-contacto:hover {
  background-position: right;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .btn-contacto {
    margin-top: 10px; /* Ajuste para dispositivos móviles */
  }
}

.btn-contacto:hover {
  background: linear-gradient(to right, #1f244c, #299c87);
  text-decoration: none;
}

.navbar-top .links {
  display: flex;
  gap: 20px;     
  margin-left: auto;         
}

.large-bar {
  font-size: 20px; 
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin-top: -3px;
}

.navbar-top .links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.navbar-top .links a:hover {
  text-decoration: underline;
}

/* Estilos responsivos */
  @media (max-width: 768px) {
    .navbar-top {
      flex-direction: column; 
      align-items: center; 
      background: linear-gradient(to bottom, #22225f, #2eb2a7);
    }
  
    .navbar-top .links {
      flex-direction: column; 
      gap: 3px; 
      text-align: center; 
      margin: 0; 
      font-size: 10px; 
      align-items: center;
    }
  
    .navbar-top .flags {
      margin-bottom: 10px; 
    }
  }


@media (max-width: 992px) { /* Para tablets */
  .navbar-top {
    padding: 8px; 
    left: 0;
  }

  .navbar-top .flags img {
    width: 30px; 
    height: 20px;
    margin-top: 2px;
  }

  .navbar-top .links a {
    font-size: 14px; 
    text-align: center;
    margin-top: 2px;
  }
}


/* Estilos para el contenedor principal */
.container {
  max-width: 800px;
  background: #fff;
  width: 100%;
  padding: 25px 40px 10px 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 50px;
}
.container .text {
  text-align: center;
  font-size: 41px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: -webkit-linear-gradient(right, #262c5e, #28a694, #262c5e, #28a694);
  -webkit-background-clip: text;
  background-clip: text;
  color: #000000;
}

label[for="cv"]{
  padding-left: 20px;
}


.container form {
  padding: 30px 0 0 0;
}
.container form .form-row {
  display: flex;
  margin: 32px 0;
}
form .form-row .input-data {
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}
form .form-row .textarea {
  height: 70px;
}
.input-data input,
.textarea textarea {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  margin: 0;
  padding: 0;
  outline: none;
}


.input-data input:focus ~ label, 
.textarea textarea:focus ~ label,
.input-data input:valid ~ label, 
.textarea textarea:valid ~ label {
  transform: translateY(-20px);
  font-size: 14px;
  color: #3498db;
}
.textarea textarea {
  resize: none;
  padding-top: 10px;
}
.input-data label {
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.textarea label {
  width: 100%;
  bottom: 40px;
  background: #fff;
}
.input-data .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}
.input-data .underline:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #3498db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before {
  transform: scale(1);
}
.submit-btn .input-data {
  overflow: hidden;
  height: 45px!important;
  width: 25%!important;
  margin: 0 auto; 
}
.submit-btn .input-data .inner {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right, #262c5e, #28a694, #262c5e, #28a694);
  transition: all 0.4s;
}
.submit-btn .input-data:hover .inner {
  left: 0;
}
.submit-btn .input-data input {
  background: none;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .container .text {
    font-size: 30px;
  }
  .container form {
    padding: 150px 0 0 0;
  }
  .container form .form-row {
    display: block;
  }
  form .form-row .input-data {
    margin: 35px 0!important;
  }
  .submit-btn .input-data {
    width: 40%!important;
  }
  .message-label {
    margin-left: 0px; 
  }
}
.aviso-tratamiento-datos {
  text-align: center; /* Centra el contenido */
  margin-bottom: 10px; /* Ajusta el margen inferior según necesites */
}

.aviso-tratamiento-datos .tratamiento-datos-label {
  font-size: 16px; /* Tamaño de fuente */
  color: #000000; /* Color del texto */
}


@media (max-width: 700px) {
  .message-label {
    margin-left: 0; 
  }
}

  .form-row label {
    display: block;
    margin-bottom: 10px;
    width: 100%; /* Asegura que el label ocupe todo el ancho disponible */
    max-width: 100%; /* Limita el ancho máximo al 100% del contenedor padre */
    overflow: hidden; /* Oculta cualquier contenido que se desborde */
    text-overflow: ellipsis; /* Añade puntos suspensivos si el texto es demasiado largo */
    white-space: nowrap; /* Evita que el texto se divida en múltiples líneas */
  }

.chat-container-whats {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1d3557;
  color: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px; 
  z-index: 1000; 
}

.chat-container-whats p {
  margin: 0;
  display: none; 
  background-color: #1d3557; 
  padding: 10px; 
  border-radius: 10px; 
}

.chat-container-whats:hover p {
  display: block;
}

.whatsapp-button {
  background-color: #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 1001; 
}

.whatsapp-button img {
  width: 70px; 
  height: 36px; 
}

.d-block, h2{
  color: #fff;
  font-size: 2.5rem;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 20px;
}

/* ============= Vacantes ============ */
#flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
  height: 180vh;
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

#left-zone {
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow-y: scroll;
}

#left-zone .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.item input {
  display: none;
}

label {
  display: block;
  opacity: 0.5;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: relative;
}

label:hover {
  opacity: 0.75;
  cursor: pointer;
}

.content-test {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  height: 50%;
  width: 100%;
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: none;
}

.content-test p {
  max-width: 50%;
  text-align: center;
}



#right-zone {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: 50%;
}

input:checked ~ .content-test {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  opacity: 1;
}

@media (min-width: 480px) {
  #flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    min-height: 100%;
    height: 400px;
    /* position: absolute; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  #left-zone .list {
    border-right: 2px solid #cccccc;
  }

  .content-test {
    width: 65%;
    height: 100%;
    pointer-events: auto;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  

  #left-zone {
    width: 35%;
  }

  #right-zone {
    width: 65%;
  }
}
@media (max-width: 480px) {
  #left-zone{
    height: auto;
  }
  
   
.content-test.content_testimonial-1 {
    top: 280px;
    height: auto;
    text-align: center;
}

.content-test.content_testimonial-2 {
  top: 280px; 
  height: auto;
  text-align: center;
}

.content-test.content_testimonial-3 {
  top: 280px; 
  height: auto;
  text-align: center;
}

.content-test.content_testimonial-4 {
  top: 280px; 
  height: auto;
  text-align: center;
}

.content-test.content_testimonial-5 {
  top: 280px; 
  height: auto;
  text-align: center;
}

.content-test.content_testimonial-6 {
  top: 280px; 
  height: auto;
  text-align: center;
}

.content-test.content_testimonial-7 {
  top: 280px; 
  height: auto;
  text-align: center;
}

.content-test.content_testimonial-8 {
  top: 280px; 
  height: auto;
  text-align: center;
}
  .content_testimonial-1 .picto {
    padding-top: 100px;
  }
  .content_testimonial-2 .picto {
    padding-top: 100px;
  }
  .content_testimonial-3 .picto {
    padding-top: 100px;
  }
  .content_testimonial-4 .picto {
    padding-top: 100px;
  }
  .content_testimonial-5 .picto {
    padding-top: 100px;
  }
  .content_testimonial-6 .picto {
    padding-top: 100px;
  }
  .content_testimonial-7 .picto {
    padding-top: 100px;
  }
  .content_testimonial-8 .picto {
    padding-top: 100px;
  }
  .item > label {
    font-size: 1.3rem;
  }
}






.content_testimonial-1 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-1 h1 {
  color: #d64541;
  text-align: center;
}

.content_testimonial-2 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/10871/10871884.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-2 h1 {
  color: #f5d76e;
}

.content_testimonial-3 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/zV7sq04z/mod-Movers-Logo.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-3 h1 {
  color: #00b16a;
}

.content_testimonial-4 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/4Y3rypTz/ak-Pest-Control-Logo.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-4 h1 {
  color: #f27935;
}

.content_testimonial-5 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-5 h1 {
  color: #00b16a;
  text-align: center;
}

.content_testimonial-6 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-6 h1 {
  color: #33475c;
  text-align: center;
}

.content_testimonial-7 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-7 h1 {
  color: #da1e17;
  text-align: center;
}

.content_testimonial-8 .picto {
  height: 100px;
  width: 100px;
  background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_testimonial-8 h1 {
  color: #000000;
  text-align: center;
}


.content-test h1:first-letter {
  text-transform: uppercase;
}

input:checked ~ label {
  opacity: 1;
  -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

input:checked ~ label.label_testimonial-1 {
  color: #d64541;
  border-right: solid 4px #d64541;
}

input:checked ~ label.label_testimonial-2 {
  color: #f5d76e;
  border-right: solid 4px #f5d76e;
}

input:checked ~ label.label_testimonial-3 {
  color: #00b16a;
  border-right: solid 4px #00b16a;
}

input:checked ~ label.label_testimonial-4 {
  color: #f27935;
  border-right: solid 4px #f27935;
}

input:checked ~ label.label_testimonial-5 {
  color: #00b16a;
  border-right: solid 4px #00b16a;
}

input:checked ~ label.label_testimonial-6 {
  color: #33475c;
  border-right: solid 4px #33475c;
}

input:checked ~ label.label_testimonial-7 {
  color: #da1e17;
  border-right: solid 4px #da1e17;
}

input:checked ~ label.label_testimonial-8 {
  color: #000000;
  border-right: solid 4px #000000;
}

label.label_testimonial-1:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/10871/10871884.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label.label_testimonial-2:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/675/675523.png");
  background-position: center;
  background-size: 75% 75%;
  border-radius: 50%;
  background-repeat: no-repeat;
  margin-left: 10px;
}

label.label_testimonial-3:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://w7.pngwing.com/pngs/335/238/png-transparent-computer-setting-illustration-software-web-development-icon-software-s-miscellaneous-web-design-software-engineering-thumbnail.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label.label_testimonial-4:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/2006/2006633.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label.label_testimonial-5:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://st2.depositphotos.com/47577860/46937/v/450/depositphotos_469376762-stock-illustration-developer-full-stack-developer-tools.jpg");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label.label_testimonial-6:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://cdn.icon-icons.com/icons2/3176/PNG/512/digital_marketing_mobile_phone_bullhorn_icon_193863.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label.label_testimonial-7:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://static.vecteezy.com/system/resources/previews/014/809/566/original/data-analyst-line-icon-vector.jpg");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label.label_testimonial-8:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("https://cdn-icons-png.flaticon.com/128/2721/2721957.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;
}

label:first-letter {
  text-transform: uppercase;
}

.label_testimonial-1:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#d64541a3)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #d64541a3);
  background-image: -o-linear-gradient(left, #ffffff, #d64541a3);
  background-image: linear-gradient(to right, #ffffff, #d64541a3);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-2:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#f5d76e59)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #f5d76e59);
  background-image: -o-linear-gradient(left, #ffffff, #f5d76e59);
  background-image: linear-gradient(to right, #ffffff, #f5d76e59);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-3:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#00b16aa3)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #00b16aa3);
  background-image: -o-linear-gradient(left, #ffffff, #00b16aa3);
  background-image: linear-gradient(to right, #ffffff, #00b16aa3);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-4:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#f27935a3)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #f27935a3);
  background-image: -o-linear-gradient(left, #ffffff, #f27935a3);
  background-image: linear-gradient(to right, #ffffff, #f27935a3);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-5:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#00b16a)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #00b16a);
  background-image: -o-linear-gradient(left, #ffffff, #00b16a);
  background-image: linear-gradient(to right, #ffffff, #00b16a);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-6:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#33475c)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #33475c);
  background-image: -o-linear-gradient(left, #ffffff, #33475c);
  background-image: linear-gradient(to right, #ffffff, #33475c);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-7:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#da1e17)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #da1e17);
  background-image: -o-linear-gradient(left, #ffffff, #da1e17);
  background-image: linear-gradient(to right, #ffffff, #da1e17);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.label_testimonial-8:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ffffff),
    to(#00b16a)
  );
  background-image: -webkit-linear-gradient(left, #ffffff, #00b16a);
  background-image: -o-linear-gradient(left, #ffffff, #00b16a);
  background-image: linear-gradient(to right, #ffffff, #00b16a);
  font-size: 1.2rem;
  -webkit-transition: font-size 0.5s;
  -o-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

p.testimonialState {
  margin-top: -5px;
  font-size: 0.8rem;
  font-style: italic;
  color: #808080d4;
}

p.testimonialFrom {
  margin-top: 5px;
  font-weight: bold;
  color: #33475c;
}

.list .item img {
  max-width: 200px; /* Ajusta el ancho máximo al contenedor */
  height: 100px; /* Permite que la altura se ajuste automáticamente */
  display: block; /* Asegura que la imagen se muestre como un bloque */
}
/* ============== Fin vacantes ============= */


