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

body {
  min-height: 100vh;
  width: 100%;
}

@font-face {
  font-family: Fuente;
  src: url(../fonts/tt1212m_.ttf);
}
@font-face {
  font-family: Gresmar;
  src: url(../fonts/OPTIFuturaDemiBold.otf);
}
@keyframes movimientologo {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-30px);
  }
  75% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes changeColor {
  0% {
    background-color: rgb(255, 234, 119);
  }
  50% {
    background-color: rgb(0, 0, 0);
  }
  100% {
    background-color: rgb(255, 234, 119);
  }
}
header {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  height: 75px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 234, 119, 0.75);
}
header .logo_empresa {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-decoration: none;
}
header .logo_empresa img {
  width: 200px;
  margin: 10px;
  transition: 0.3s ease-in-out;
}
header .logo_empresa img:hover {
  transform: translateY(-3px);
}
header .logo_empresa .nombre_empresa {
  font-size: 20px;
  margin-left: 0px;
  font-family: "Bruno Ace";
  text-decoration: none;
  color: rgb(255, 255, 255);
  text-shadow: 3px 3px 10px white;
}
header .logo_empresa .nombre_empresa:hover {
  color: rgb(255, 255, 255);
  transition: 0.5s;
}
header .menutoogle {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 30px;
  width: 30px;
  visibility: hidden;
}
header .menutoogle ion-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  color: rgb(255, 255, 255);
}
header .menu {
  position: relative;
  color: white;
  font-family: "Bruno Ace";
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}
header .menu a {
  text-decoration: none;
  list-style-type: none;
}
header .menu a li {
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: 0.3s ease-in-out;
  border-right: 1px solid rgba(255, 234, 119, 0.75);
  border-left: 1px solid rgba(255, 234, 119, 0.75);
  padding: 0px 10px;
}
header .menu a li:hover {
  cursor: pointer;
  transition: 0.5s;
  color: rgb(255, 234, 119);
}

.conteiner_black {
  width: 100%;
  height: 75px;
  position: relative;
  background-color: black;
}

.conteiner1 {
  width: 100%;
  height: 710px;
  position: relative;
  gap: 10px;
  background-image: url(../images/fondo.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.75);
}
.conteiner1 .contacto {
  position: absolute;
  left: 50px;
  height: 350px;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 5px 5px 25px rgba(255, 234, 119, 0.75), -5px -5px 25px rgba(0, 0, 0, 0.75);
  background: rgba(0, 0, 0, 0.692);
  gap: 0px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  margin-top: 180px;
  animation: 5s movimientologo linear infinite;
}
.conteiner1 .contacto img {
  height: 75px;
  transition: 0.3s ease-in-out;
}
.conteiner1 .contacto .titulo {
  color: rgb(255, 255, 255);
  text-shadow: 3px 3px 10px white;
  font-family: "Bruno Ace";
  font-size: 16px;
  transition: 0.3s ease-in-out;
  letter-spacing: 1px;
  margin-top: 0px;
}
.conteiner1 .contacto .propietario {
  color: rgb(29, 29, 29);
  font-size: 12px;
  font-family: "Bruno Ace";
  font-weight: 500;
  transition: 0.3s ease-in-out;
  text-align: center;
}
.conteiner1 .contacto .titulo_servicios {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  background-color: rgb(0, 0, 0);
  flex-direction: column;
  margin-top: 20px;
}
.conteiner1 .contacto .titulo_servicios .eslogan {
  position: relative;
  width: 100%;
  color: rgb(255, 255, 255);
  font-family: "Montserrat";
  font-size: 14px;
  font-size: 300;
  text-align: center;
  background-color: rgb(0, 0, 0);
  padding: 2px 0px;
  border: none;
}
.conteiner1 .contacto .datoscontacto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}
.conteiner1 .contacto .datoscontacto a {
  text-decoration: none;
  list-style-type: none;
}
.conteiner1 .contacto .datoscontacto a ion-icon {
  font-size: 25px;
  color: rgb(255, 234, 119);
  background-color: rgb(0, 0, 0);
  padding: 7px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.conteiner1 .contacto .datoscontacto a span {
  color: rgb(0, 0, 0);
  text-shadow: 3px 3px 10px white;
  font-size: 20px;
  font-family: "Bruno Ace";
  transition: 0.3s ease-in-out;
}
.conteiner1 .contacto:hover {
  transform: scale(0.95);
}

.info_empresa {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 800px;
}
.info_empresa .quienes {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.info_empresa .quienes .quienes_somos {
  text-align: center;
  position: relative;
  width: 95%;
  font-size: 28px;
  font-weight: 600;
  font-family: "Bruno Ace";
  color: rgb(0, 0, 0);
}
.info_empresa .quienes .quienes_somos .anexo {
  color: rgb(0, 0, 0);
}
.info_empresa .quienes .somos {
  position: relative;
  width: 95%;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: 20px;
  letter-spacing: 1px;
  line-height: 30px;
}
.info_empresa .quienes img {
  margin-top: 20px;
  height: 150px;
  transition: 0.3s ease-in-out;
}
.info_empresa .quienes img:hover {
  transform: translateY(-3px);
}
.info_empresa .scenes {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.info_empresa .scenes .scene {
  position: relative;
  height: 50%;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
.info_empresa .scenes .scene .nosotros {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.info_empresa .scenes .scene .nosotros .quienes_somos {
  font-size: 28px;
  font-weight: 600;
  font-family: "Bruno Ace";
  color: rgb(0, 0, 0);
}
.info_empresa .scenes .scene .nosotros .quienes_somos .anexo {
  color: rgb(0, 0, 0);
}
.info_empresa .scenes .scene .nosotros .somos {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  margin-top: 15px;
  letter-spacing: 1px;
  line-height: 30px;
}

.cotiza_ahora {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  gap: 10px;
}
.cotiza_ahora a {
  text-decoration: none;
}
.cotiza_ahora a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 60px;
  background-color: rgb(0, 0, 0);
  border-radius: 25px;
  text-align: center;
  border: 2px solid rgba(255, 234, 119, 0.75);
  gap: 10px;
}
.cotiza_ahora a div img {
  height: 40px;
}
.cotiza_ahora a div span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  letter-spacing: 3px;
}
.cotiza_ahora a div:hover {
  background-color: rgba(0, 0, 0, 0.781);
}

.servicios {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  position: relative;
  height: 500px;
  width: 100%;
  margin-bottom: 60px;
  gap: 40px;
}
.servicios .textos {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 40%;
  border-radius: 20px;
  gap: 25px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.75), -5px -5px 15px rgba(0, 0, 0, 0.75);
}
.servicios .textos span {
  color: rgb(0, 0, 0);
  font-family: "Montserrat";
  font-size: 28px;
  z-index: 1000;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  border-bottom: 3px solid rgb(0, 0, 0);
}
.servicios .textos span:hover {
  transform: scale(1.1);
}
.servicios .textos ul {
  list-style-type: none;
  color: rgb(0, 0, 0);
  z-index: 1000;
  text-align: center;
}
.servicios .textos ul li {
  font-family: "Montserrat";
  font-size: 22px;
  margin-top: 7px;
  transition: 0.3s ease-in-out;
  height: 50px;
  background-color: rgb(0, 0, 0);
  box-shadow: 3px 3px 15px white;
  color: rgb(255, 234, 119);
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 10px 50px;
  border-radius: 10px;
}
.servicios .textos ul li:hover {
  background-color: rgb(255, 234, 119);
  color: rgb(0, 0, 0);
}
.servicios .textos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-clip-path: polygon(0% 15%, 0% 100%, 100% 100%);
          clip-path: polygon(0% 15%, 0% 100%, 100% 100%);
  animation: 10s changeColor linear infinite;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.servicios .textos a {
  z-index: 1000;
  text-decoration: none;
}
.servicios .textos a .vergaleria {
  background-color: rgb(0, 0, 0);
  box-shadow: 3px 3px 15px white;
  border-radius: 10px;
  padding: 7px 50px;
}
.servicios .textos a .vergaleria .button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  letter-spacing: 1px;
  border: none;
  padding: 0px 25px;
}
.servicios .textos a .vergaleria:hover {
  background-color: rgba(54, 54, 54, 0.753);
}
.servicios .image2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 30%;
  height: 100%;
  border-radius: 20px;
  background-color: rgb(255, 234, 119);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.75), -5px -5px 15px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}
.servicios .image2 .circle1 {
  border: 1px solid rgba(54, 54, 54, 0.4);
  position: absolute;
  border-radius: 15px;
  top: 10px;
  left: 10px;
  height: 325px;
  width: 325px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
  transition: 0.3s ease-in-out;
}
.servicios .image2 .circle1 .c1 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicios .image2 .circle1:hover {
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 2px 2px 15px rgb(104, 8, 148);
  height: 100%;
  width: 100%;
}
.servicios .image2 .circle2 {
  border: 1px solid rgba(54, 54, 54, 0.4);
  position: absolute;
  border-radius: 15px;
  top: 10px;
  right: 10px;
  height: 125px;
  width: 125px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
  transition: 0.3s ease-in-out;
}
.servicios .image2 .circle2 .c2 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicios .image2 .circle2:hover {
  top: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 2px 2px 15px rgb(104, 8, 148);
  height: 100%;
  width: 100%;
}
.servicios .image2 .circle3 {
  border: 1px solid rgba(54, 54, 54, 0.4);
  position: absolute;
  border-radius: 15px;
  bottom: 10px;
  right: 10px;
  height: 150px;
  width: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
  transition: 0.3s ease-in-out;
}
.servicios .image2 .circle3 .c3 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicios .image2 .circle3:hover {
  bottom: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 2px 2px 15px rgb(104, 8, 148);
  height: 100%;
  width: 100%;
}
.servicios .image2 .circle4 {
  border: 1px solid rgba(54, 54, 54, 0.4);
  position: absolute;
  border-radius: 15px;
  bottom: 10px;
  left: 10px;
  height: 150px;
  width: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
  transition: 0.3s ease-in-out;
}
.servicios .image2 .circle4 .c4 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicios .image2 .circle4:hover {
  bottom: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 2px 2px 15px rgb(104, 8, 148);
  height: 100%;
  width: 100%;
}
.servicios .image2 .circle5 {
  border: 1px solid rgba(54, 54, 54, 0.4);
  position: absolute;
  border-radius: 15px;
  top: 140px;
  right: 10px;
  height: 195px;
  width: 125px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
  transition: 0.3s ease-in-out;
}
.servicios .image2 .circle5 .c5 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicios .image2 .circle5:hover {
  top: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 2px 2px 15px rgb(104, 8, 148);
  height: 100%;
  width: 100%;
}

.carga_conteiner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 50px;
}
.carga_conteiner .texto_carga {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px 25px;
}
.carga_conteiner .texto_carga h1 {
  font-family: "Bruno Ace";
  font-size: 24px;
}
.carga_conteiner .texto_carga h2 {
  font-family: "Montserrat";
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
.carga_conteiner .texto_carga h3 {
  font-family: "Montserrat";
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  border-bottom: 1px solid black;
}
.carga_conteiner .texto_carga ul {
  border: 1px solid black;
  padding: 20px 50px;
  border-radius: 20px;
  margin-top: 20px;
  background-color: black;
  list-style-type: none;
  box-shadow: 3px 3px 15px black;
}
.carga_conteiner .texto_carga ul li {
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: 300;
  color: rgb(255, 234, 119);
  text-align: center;
  margin-top: 2px;
}
.carga_conteiner .texto_carga p {
  margin-top: 20px;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 1px;
}
.carga_conteiner .imagen_carga {
  position: relative;
  height: 700px;
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 10px solid rgb(255, 234, 119);
  border-radius: 25px;
  box-shadow: 3px 3px 15px black;
}
.carga_conteiner .imagen_carga img {
  height: 700px;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  transition: 0.3s ease-in-out;
}
.carga_conteiner .imagen_carga img:hover {
  transform: scale(1.1);
}

.clientes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.clientes h2 {
  font-family: "Bruno Ace";
  font-size: 24px;
  letter-spacing: 1px;
  margin-top: 5px;
}
.clientes .conteiner_clientes {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.clientes .conteiner_clientes img {
  height: 85px;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
}
.clientes .conteiner_clientes img:hover {
  transform: translateY(-3px);
}

.contacto2 {
  position: fixed;
  bottom: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacto2 .contenedor {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 234, 119, 0.45);
  height: 300px;
  width: 50px;
  transition: 0.5s;
  border-radius: 30px;
}
.contacto2 .contenedor.active {
  transition: 0.5s;
  height: 130px;
  width: 50px;
}
.contacto2 .contenedor.active2 {
  transition: 0.5s;
  flex-direction: row;
  width: 320px;
  justify-content: center;
  gap: 50px;
}
.contacto2 .contenedor .qr2 img {
  transition: 0.5s;
  width: 0px;
  visibility: hidden;
  opacity: 0;
}
.contacto2 .contenedor .qr2.active2 img {
  transition: 0.5s;
  width: 200px;
  visibility: visible;
  opacity: 1;
}
.contacto2 .contenedor .botones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: -10px;
  gap: 28px;
}
.contacto2 .contenedor .botones a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.contacto2 .contenedor .botones a span {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  transform: rotate(0deg);
}
.contacto2 .contenedor .botones .btn {
  position: relative;
  font-size: 25px;
  color: rgb(255, 234, 119);
  transition: 0.5s;
}
.contacto2 .contenedor .botones .btn:hover {
  transform: translateY(-3px);
}
.contacto2 .contenedor .botones.active {
  transition: 0.5s;
}
.contacto2 .contenedor .botones.active :nth-child(3) {
  opacity: 0;
  visibility: hidden;
}
.contacto2 .contenedor .botones.active :nth-child(4) {
  opacity: 0;
  visibility: hidden;
}
.contacto2 .contenedor .botones.active :nth-child(5) {
  opacity: 0;
  visibility: hidden;
}
.contacto2 .contenedor .botones.active :nth-child(6) {
  opacity: 0;
  visibility: hidden;
}

.contacto_footer {
  position: relative;
  background-color: rgb(0, 0, 0);
  border-top: 1px solid rgba(255, 234, 119, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 425px;
  width: 100%;
  z-index: 1000;
}
.contacto_footer .preferencia {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 10px;
  padding: 25px;
  border-right: 1px solid rgba(255, 234, 119, 0.5);
}
.contacto_footer .preferencia .gracias {
  color: rgb(255, 234, 119);
  border-bottom: 2px solid rgb(255, 234, 119);
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-bottom: 1px;
  letter-spacing: 1px;
}
.contacto_footer .preferencia span {
  color: rgb(255, 234, 119);
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.contacto_footer .preferencia .cotiza_ahora2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 15px;
  gap: 10px;
}
.contacto_footer .preferencia .cotiza_ahora2 a {
  text-decoration: none;
}
.contacto_footer .preferencia .cotiza_ahora2 a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 40px;
  background-color: rgb(0, 0, 0);
  border: 2px solid rgba(255, 234, 119, 0.5);
  border-radius: 10px;
  text-align: center;
  gap: 10px;
  box-shadow: 3px 1px 15px rgb(255, 255, 255);
}
.contacto_footer .preferencia .cotiza_ahora2 a div img {
  height: 30px;
}
.contacto_footer .preferencia .cotiza_ahora2 a div span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  letter-spacing: 2px;
}
.contacto_footer .preferencia .numeros_telefono {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
}
.contacto_footer .preferencia .numeros_telefono .datoscontacto2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contacto_footer .preferencia .numeros_telefono .datoscontacto2 a {
  text-decoration: none;
}
.contacto_footer .preferencia .numeros_telefono .datoscontacto2 a ion-icon {
  font-size: 20px;
  color: rgb(255, 234, 119);
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(255, 255, 255);
  padding: 7px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.contacto_footer .preferencia .numeros_telefono .datoscontacto2 a ion-icon:hover {
  transform: translateY(-3px);
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
.contacto_footer .preferencia .numeros_telefono .datoscontacto2 a span {
  color: white;
  font-size: 18px;
  font-family: "Montserrat";
}
.contacto_footer .preferencia .numeros_telefono .datoscontacto2 a span:hover {
  color: rgb(255, 234, 119);
}
.contacto_footer .preferencia .credito {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-family: "Montserrat";
  margin-top: 20px;
}
.contacto_footer .preferencia .republica {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-family: "Montserrat";
  margin-top: -10px;
}
.contacto_footer .preferencia a {
  text-decoration: none;
}
.contacto_footer .preferencia a .edson {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-family: "Montserrat";
  margin-top: 0px;
}

@media screen and (max-width: 960px) {
  header .logo_empresa img {
    width: 100px;
  }
  header .logo_empresa .nombre_empresa {
    font-size: 18px;
  }
  header .menu {
    gap: 15px;
  }
  header .menu a li {
    font-size: 14px;
  }
  .conteiner1 {
    height: 500px;
  }
  .conteiner1 .contacto {
    margin-top: 50px;
  }
  .info_empresa {
    position: relative;
    flex-direction: column;
    height: 1200px;
    margin-top: 75px;
  }
  .info_empresa .quienes {
    position: relative;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: none;
  }
  .info_empresa .quienes .quienes_somos {
    text-align: center;
    position: relative;
    width: 95%;
    font-size: 28px;
    font-weight: 600;
    font-family: "Bruno Ace";
  }
  .info_empresa .quienes .somos {
    position: relative;
    width: 95%;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  .info_empresa .quienes img {
    margin-top: 20px;
    height: 150px;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .info_empresa .quienes img:hover {
    transform: translateY(-3px);
  }
  .info_empresa .scenes {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }
  .info_empresa .scenes .scene {
    position: relative;
    height: 50%;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
  }
  .info_empresa .scenes .scene .nosotros {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
  }
  .info_empresa .scenes .scene .nosotros .quienes_somos {
    font-size: 28px;
    font-weight: 600;
    font-family: "Bruno Ace";
  }
  .info_empresa .scenes .scene .nosotros .somos {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  .cotiza_ahora {
    margin-top: 140px;
  }
  .servicios {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    position: relative;
    height: 400px;
    width: 100vw;
    margin-bottom: 60px;
    gap: 10px;
    z-index: 1000;
    background-color: black;
    padding: 50px 0px;
  }
  .servicios .textos {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 47%;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), -5px -5px 15px rgba(0, 0, 0, 0.5);
  }
  .servicios .textos span {
    color: rgb(0, 0, 0);
    font-family: "Montserrat";
    font-size: 18px;
    z-index: 1000;
    transition: 0.3s ease-in-out;
    border-bottom: 3px solid rgb(0, 0, 0);
  }
  .servicios .textos span:hover {
    transform: scale(1.1);
    color: rgb(0, 0, 0);
  }
  .servicios .textos ul {
    list-style-type: none;
    color: rgb(0, 0, 0);
    z-index: 1000;
    text-align: center;
  }
  .servicios .textos ul li {
    font-family: "Montserrat";
    font-size: 15px;
    transition: 0.3s ease-in-out;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding: 5px 50px;
    border-radius: 10px;
  }
  .servicios .textos::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: rgb(255, 234, 119);
    animation: none;
  }
  .servicios .textos a {
    z-index: 1000;
    text-decoration: none;
  }
  .servicios .textos a .vergaleria {
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 7px 30px;
  }
  .servicios .textos a .vergaleria .button {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    padding: 0px 25px;
  }
  .servicios .image2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 47%;
    height: 100%;
    border-radius: 20px;
    background-color: rgb(255, 234, 119);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.75), -5px -5px 15px rgba(0, 0, 0, 0.75);
    overflow: hidden;
  }
  .servicios .image2 .circle1 {
    border: 1px solid rgba(54, 54, 54, 0.4);
    position: absolute;
    border-radius: 15px;
    top: 10px;
    left: 10px;
    height: 185px;
    width: 255px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
    transition: 0.3s ease-in-out;
  }
  .servicios .image2 .circle1 .c1 {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .servicios .image2 .circle1:hover {
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgb(104, 8, 148);
    height: 100%;
    width: 100%;
  }
  .servicios .image2 .circle2 {
    border: 1px solid rgba(54, 54, 54, 0.4);
    position: absolute;
    border-radius: 15px;
    top: 10px;
    right: 10px;
    height: 105px;
    width: 90px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
    transition: 0.3s ease-in-out;
  }
  .servicios .image2 .circle2 .c2 {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .servicios .image2 .circle2:hover {
    top: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgb(104, 8, 148);
    height: 100%;
    width: 100%;
  }
  .servicios .image2 .circle3 {
    border: 1px solid rgba(54, 54, 54, 0.4);
    position: absolute;
    border-radius: 15px;
    bottom: 10px;
    right: 10px;
    height: 90px;
    width: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
    transition: 0.3s ease-in-out;
  }
  .servicios .image2 .circle3 .c3 {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .servicios .image2 .circle3:hover {
    bottom: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgb(104, 8, 148);
    height: 100%;
    width: 100%;
  }
  .servicios .image2 .circle4 {
    border: 1px solid rgba(54, 54, 54, 0.4);
    position: absolute;
    border-radius: 15px;
    bottom: 10px;
    left: 10px;
    height: 90px;
    width: 145px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
    transition: 0.3s ease-in-out;
  }
  .servicios .image2 .circle4 .c4 {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .servicios .image2 .circle4:hover {
    bottom: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgb(104, 8, 148);
    height: 100%;
    width: 100%;
  }
  .servicios .image2 .circle5 {
    border: 1px solid rgba(54, 54, 54, 0.4);
    position: absolute;
    border-radius: 15px;
    top: 120px;
    right: 10px;
    height: 75px;
    width: 90px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.562);
    transition: 0.3s ease-in-out;
  }
  .servicios .image2 .circle5 .c5 {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .servicios .image2 .circle5:hover {
    top: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgb(104, 8, 148);
    height: 100%;
    width: 100%;
  }
  .carga_conteiner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    gap: 50px;
    margin-top: -50px;
    text-align: center;
  }
  .carga_conteiner .texto_carga {
    position: relative;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 25px;
  }
  .carga_conteiner .texto_carga h1 {
    font-family: "Bruno Ace";
    font-size: 24px;
  }
  .carga_conteiner .texto_carga h2 {
    font-family: "Montserrat";
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .carga_conteiner .texto_carga h3 {
    font-family: "Montserrat";
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    border-bottom: 1px solid black;
  }
  .carga_conteiner .texto_carga ul {
    border: 1px solid black;
    padding: 20px 50px;
    border-radius: 20px;
    margin-top: 20px;
    background-color: black;
    list-style-type: none;
    box-shadow: 3px 3px 15px black;
  }
  .carga_conteiner .texto_carga ul li {
    font-family: "Montserrat";
    font-size: 17px;
    font-weight: 400;
    text-shadow: 3px 3px 15px rgb(255, 234, 119);
    color: rgb(255, 234, 119);
    text-align: center;
    margin-top: 2px;
  }
  .carga_conteiner .texto_carga p {
    margin-top: 20px;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
  }
  .carga_conteiner .imagen_carga {
    position: relative;
    height: 400px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 10px solid rgb(255, 234, 119);
    border-radius: 25px;
    box-shadow: 3px 3px 15px black;
  }
  .carga_conteiner .imagen_carga img {
    height: 700px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
  }
  .carga_conteiner .imagen_carga img:hover {
    transform: scale(1.1);
  }
  .clientes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin-top: -50px;
  }
  .clientes h2 {
    font-family: "Bruno Ace";
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .clientes .conteiner_clientes {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
  }
  .clientes .conteiner_clientes img {
    height: 60px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
  }
  .clientes .conteiner_clientes img:hover {
    transform: translateY(-3px);
  }
  .contacto2 {
    position: fixed;
    bottom: 5px;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
  }
  .contacto_footer {
    height: 475px;
  }
  .contacto_footer .preferencia {
    gap: 15px;
    padding: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  header {
    height: 125px;
    width: 100vw;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  header .logo_empresa {
    margin-left: 0px;
    text-align: center;
    flex-direction: column;
    gap: 0px;
  }
  header .menutoogle {
    visibility: visible;
    transition: 0.5s;
  }
  header .menutoogle.active {
    transition: 0.5s;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    border-bottom: 1px solid white;
  }
  header .menutoogle ion-icon {
    transition: 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    color: rgb(255, 255, 255);
  }
  header .menutoogle ion-icon.active {
    transition: 0.5s;
    top: 10px;
    right: 10px;
  }
  header .menu {
    transition: 0.5s;
    gap: 25px;
    margin-left: 10px;
  }
  header .menu a li {
    font-size: 14px;
  }
  header .menu.active {
    transition: 0.5s;
    opacity: 1;
    flex-direction: column;
    visibility: visible;
    z-index: 1000;
    gap: 40px;
    margin-top: 50vh;
    margin-left: 28px;
  }
  header .menu.active a li {
    font-size: 23px;
  }
  header .menu.active a:nth-child(2) {
    padding: 20px 50px;
    margin-top: -5px;
  }
  header .menu.active a:nth-child(3) {
    padding: 15px 58px;
    margin-top: -20px;
  }
  .conteiner_black {
    width: 100%;
    height: 125px;
    position: relative;
    background-color: black;
  }
  .conteiner1 {
    height: 200px;
    box-shadow: none;
    margin-bottom: 0;
    box-shadow: 5px 5px 15px black;
  }
  .conteiner1 .contacto {
    margin-top: 200px;
    margin-left: -27px;
    height: 350px;
    width: 350px;
    background-image: url(../images/burbuja.svg);
  }
  .conteiner1 .contacto img {
    height: 70px;
    margin-top: -30px;
  }
  .conteiner1 .contacto .titulo {
    margin-top: 0px;
    font-size: 14px;
  }
  .conteiner1 .contacto .propietario {
    font-size: 33px;
    margin-top: -10px;
  }
  .conteiner1 .contacto .titulo_servicios {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: rgb(255, 234, 119);
    flex-direction: column;
    margin-top: 20px;
  }
  .conteiner1 .contacto .titulo_servicios .eslogan {
    position: relative;
    width: 100%;
    color: rgb(0, 0, 0);
    font-family: "Montserrat";
    font-size: 14px;
    font-size: 300;
    text-align: center;
    background-color: rgb(255, 234, 119);
    padding: 2px 0px;
    border: none;
  }
  .conteiner1 .contacto .datoscontacto {
    gap: 10px;
  }
  .conteiner1 .contacto .datoscontacto a ion-icon {
    font-size: 25px;
  }
  .conteiner1 .contacto .datoscontacto a span {
    font-size: 21px;
  }
  .info_empresa {
    position: relative;
    flex-direction: column;
    height: 1900px;
    margin-top: 500px;
  }
  .info_empresa .quienes {
    position: relative;
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: none;
  }
  .info_empresa .quienes .quienes_somos {
    text-align: center;
    position: relative;
    width: 95%;
    font-size: 28px;
    font-weight: 600;
    font-family: "Bruno Ace";
  }
  .info_empresa .quienes .somos {
    position: relative;
    width: 95%;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  .info_empresa .quienes img {
    margin-top: 20px;
    height: 100px;
    transition: 0.3s ease-in-out;
    box-shadow: 5px 5px 15px black;
  }
  .info_empresa .quienes img:hover {
    transform: translateY(-3px);
  }
  .info_empresa .scenes {
    position: relative;
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin-top: -30px;
  }
  .info_empresa .scenes .scene {
    position: relative;
    height: 50%;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 55px;
  }
  .info_empresa .scenes .scene .nosotros {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
  }
  .info_empresa .scenes .scene .nosotros .quienes_somos {
    font-size: 28px;
    font-weight: 600;
    font-family: "Bruno Ace";
  }
  .info_empresa .scenes .scene .nosotros .somos {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 30px;
  }
  .cotiza_ahora {
    margin-top: 150px;
  }
  .cotiza_ahora a div {
    padding: 5px 60px;
  }
  .cotiza_ahora a div span {
    font-size: 16px;
  }
  .servicios {
    height: 100vh;
    gap: 30px;
    flex-direction: column;
    box-shadow: 5px 5px 15px black;
  }
  .servicios .textos {
    width: 100%;
    height: 65%;
    gap: 20px;
    border-radius: 0;
  }
  .servicios .textos span {
    font-size: 19px;
    color: white;
    border-bottom: 2px solid rgb(255, 255, 255);
  }
  .servicios .textos span:hover {
    color: white;
    transform: scale(1.1);
  }
  .servicios .textos ul li {
    font-size: 18px;
  }
  .servicios .textos::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-clip-path: polygon(0% 15%, 0% 100%, 100% 100%);
            clip-path: polygon(0% 15%, 0% 100%, 100% 100%);
    animation: 10s changeColor linear infinite;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  .servicios .textos a {
    margin-top: 25px;
  }
  .servicios .textos a .vergaleria {
    padding: 7px 60px;
  }
  .servicios .image2 {
    border-radius: 0;
    width: 100%;
    z-index: 1000;
  }
  .servicios .image2 .circle1 {
    top: 5px;
    left: 5px;
    height: 260px;
    width: 275px;
    border-radius: 0;
  }
  .servicios .image2 .circle2 {
    top: 5px;
    right: 5px;
    height: 120px;
    width: 100px;
    border-radius: 0;
  }
  .servicios .image2 .circle3 {
    height: 125px;
    width: 175px;
    right: 5px;
    bottom: 5px;
    border-radius: 0;
  }
  .servicios .image2 .circle4 {
    left: 5px;
    bottom: 5px;
    height: 125px;
    width: 200px;
    border-radius: 0;
  }
  .servicios .image2 .circle5 {
    top: 130px;
    right: 5px;
    height: 135px;
    width: 100px;
    border-radius: 0;
  }
  .carga_conteiner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    gap: 50px;
    margin-top: -50px;
    text-align: center;
  }
  .carga_conteiner .texto_carga {
    position: relative;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px 25px;
  }
  .carga_conteiner .texto_carga h1 {
    font-family: "Bruno Ace";
    font-size: 24px;
  }
  .carga_conteiner .texto_carga h2 {
    font-family: "Montserrat";
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
  }
  .carga_conteiner .texto_carga h3 {
    font-family: "Montserrat";
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    border-bottom: none;
  }
  .carga_conteiner .texto_carga ul {
    border: 1px solid black;
    padding: 20px 50px;
    border-radius: 20px;
    margin-top: 30px;
    background-color: black;
    list-style-type: none;
    box-shadow: 3px 3px 15px black;
  }
  .carga_conteiner .texto_carga ul li {
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 400;
    text-shadow: 3px 3px 15px rgb(255, 234, 119);
    color: rgb(255, 234, 119);
    text-align: center;
    margin-top: 2px;
  }
  .carga_conteiner .texto_carga p {
    margin-top: 20px;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
  }
  .carga_conteiner .imagen_carga {
    position: relative;
    height: 450;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 10px solid rgb(255, 234, 119);
    border-radius: 25px;
    box-shadow: 3px 3px 15px black;
  }
  .carga_conteiner .imagen_carga img {
    height: 700px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
  }
  .carga_conteiner .imagen_carga img:hover {
    transform: scale(1.1);
  }
  .clientes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
  }
  .clientes h2 {
    font-family: "Bruno Ace";
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .clientes .conteiner_clientes {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }
  .clientes .conteiner_clientes img {
    height: 65px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
  }
  .clientes .conteiner_clientes img:hover {
    transform: translateY(-3px);
  }
  .contacto2 {
    bottom: 5px;
    z-index: 100;
  }
  .contacto2 .contenedor.active2 {
    width: 385px;
  }
  .contacto_footer {
    position: relative;
    background-color: rgb(0, 0, 0);
    border-top: 1px solid rgba(157, 168, 9, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 600px;
    width: 100%;
    z-index: 1000;
    box-shadow: -5px -5px 15px black;
  }
  .contacto_footer .preferencia {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 20px;
    padding: 25px;
    border-right: none;
  }
  .contacto_footer .preferencia .gracias {
    color: rgb(255, 255, 255);
    border-bottom: 2px solid rgb(255, 234, 119);
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding-bottom: 1px;
    letter-spacing: 1px;
  }
  .contacto_footer .preferencia span {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    text-align: center;
  }
  .contacto_footer .preferencia .cotiza_ahora2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
    gap: 10px;
  }
  .contacto_footer .preferencia .cotiza_ahora2 a {
    text-decoration: none;
  }
  .contacto_footer .preferencia .cotiza_ahora2 a div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 40px;
    background-color: rgb(54, 54, 54);
    border: 1px solid rgb(255, 234, 119);
    border-radius: 10px;
    text-align: center;
    gap: 10px;
    box-shadow: 3px 1px 15px rgb(255, 255, 255);
  }
  .contacto_footer .preferencia .cotiza_ahora2 a div img {
    height: 30px;
  }
  .contacto_footer .preferencia .cotiza_ahora2 a div span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    letter-spacing: 2px;
  }
  .contacto_footer .preferencia .numeros_telefono {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    margin-top: 20px;
  }
  .contacto_footer .preferencia .numeros_telefono .datoscontacto2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .contacto_footer .preferencia .numeros_telefono .datoscontacto2 a {
    text-decoration: none;
  }
  .contacto_footer .preferencia .numeros_telefono .datoscontacto2 a ion-icon {
    font-size: 20px;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 234, 119);
    padding: 7px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    border: none;
  }
  .contacto_footer .preferencia .numeros_telefono .datoscontacto2 a ion-icon:hover {
    transform: translateY(-3px);
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
  }
  .contacto_footer .preferencia .numeros_telefono .datoscontacto2 a span {
    color: white;
    font-size: 18px;
    font-family: "Montserrat";
  }
  .contacto_footer .preferencia .numeros_telefono .datoscontacto2 a span:hover {
    color: rgb(168, 23, 9);
  }
  .contacto_footer .preferencia .credito {
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-family: "Montserrat";
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */