* {
  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: Carnales;
  src: url(../fonts/Rumble\ Brave.otf);
}
@keyframes movimientologo {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-30px);
  }
  75% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes cotizaColor {
  0% {
    background: rgb(0, 49, 135);
  }
  50% {
    background: rgb(68, 130, 236);
  }
  100% {
    background: rgb(0, 49, 135);
  }
}
@keyframes cotizaColorText {
  0% {
    color: rgb(255, 255, 255);
  }
  50% {
    color: rgb(0, 0, 0);
  }
  100% {
    color: rgb(255, 255, 255);
  }
}
@keyframes shadowImg {
  0% {
    box-shadow: 2px 4px 10px rgb(0, 0, 0);
  }
  50% {
    box-shadow: 2px 4px 10px rgb(0, 49, 135);
  }
  100% {
    box-shadow: 2px 4px 10px rgb(0, 0, 0);
  }
}
header {
  position: relative;
  background: rgb(0, 49, 135);
  min-height: 75px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 5px 5px 20px rgb(0, 49, 135);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.288);
}
header .logo_empresa {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
header .logo_empresa img {
  height: 50px;
  margin: 10px;
  transition: 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgb(0, 49, 135), -5px -5px 10px rgb(0, 49, 135);
}
header .logo_empresa img:hover {
  transform: translateY(-3px);
}
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: Fuente;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  margin-right: 20px;
}
header .menu a {
  text-decoration: none;
  list-style-type: none;
}
header .menu a li {
  font-size: 18px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 5px rgb(255, 255, 255);
  font-family: "Bruno Ace";
}
header .menu a li:hover {
  cursor: pointer;
  transition: 0.5s;
  text-shadow: 0 0 10px rgb(255, 255, 255);
  border-bottom: 1px solid rgb(0, 49, 135);
}

.contacto2 {
  position: fixed;
  bottom: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.contacto2 .contenedor {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: rgb(0, 49, 135);
  box-shadow: 2px 2px 10px rgb(255, 255, 255), -2px -2px 10px rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.377);
  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, 255, 255);
  transition: 0.5s;
}
.contacto2 .contenedor .botones .btn:hover {
  color: rgb(255, 255, 255);
  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: rgb(0, 49, 135);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.75);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  width: 100%;
}
.contacto_footer .preferencia {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 100%;
  gap: 20px;
  padding: 25px;
}
.contacto_footer .preferencia .gracias {
  color: rgb(255, 255, 255);
  border-bottom: 2px solid rgb(255, 255, 255);
  text-shadow: 0 0 10px white;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-bottom: 1px;
  letter-spacing: 1px;
}
.contacto_footer .preferencia .gracias:hover {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 10px rgb(255, 255, 255);
}
.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;
  transition: 0.3s ease-in-out;
}
.contacto_footer .preferencia .cotiza_ahora2 a {
  text-decoration: none;
}
.contacto_footer .preferencia .cotiza_ahora2 a div {
  position: relative;
  animation: 7s cotizaColor linear infinite;
  padding: 10px 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.contacto_footer .preferencia .cotiza_ahora2 a div span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 2px;
}
.contacto_footer .preferencia .cotiza_ahora2 a div:hover {
  background-color: rgba(255, 255, 255, 0.884);
}
.contacto_footer .preferencia .cotiza_ahora2 img {
  width: 125px;
  rotate: 10deg;
}
.contacto_footer .preferencia .cotiza_ahora2:hover {
  transform: translateY(-3px);
}
.contacto_footer .preferencia .datoscontacto2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}
.contacto_footer .preferencia .datoscontacto2 ion-icon {
  font-size: 28px;
  color: rgb(45, 80, 250);
  background-color: rgb(255, 255, 255);
  padding: 7px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contacto_footer .preferencia .datoscontacto2 ion-icon:hover {
  transform: translateY(-3px);
  color: rgb(45, 80, 250);
  background-color: rgb(255, 255, 255);
}
.contacto_footer .preferencia .datoscontacto2 span {
  color: rgb(255, 255, 255);
  font-size: 25px;
  font-family: "Montserrat";
}
.contacto_footer .preferencia .telefonos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.contacto_footer .preferencia .telefonos a {
  text-decoration: none;
}
.contacto_footer .preferencia .telefonos a span {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  font-family: "Montserrat";
  transition: 0.3s ease-in-out;
}
.contacto_footer .preferencia .credito {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-family: "Montserrat";
}
.contacto_footer .ubicacion {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 100%;
  gap: 10px;
}
.contacto_footer .ubicacion iframe {
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgb(255, 255, 255), -4px -4px 10px rgb(255, 255, 255);
  border: 1px solid white;
  width: 550px;
  height: 300px;
}
.contacto_footer .ubicacion a {
  list-style-type: none;
  text-decoration: none;
}
.contacto_footer .ubicacion a span {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-family: "Montserrat";
}

.galeria {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}
.galeria span {
  font-size: 32px;
  font-family: "Bruno Ace";
}
.galeria .imagenes_conteiner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-top: 25px;
}
.galeria .imagenes_conteiner span {
  position: relative;
  font-size: 36px;
  font-family: Fuente;
  border: none;
  color: rgb(0, 49, 135);
  border-bottom: 4px solid black;
}
.galeria .imagenes_conteiner .galeria_conteiner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 30px;
}
.galeria .imagenes_conteiner .galeria_conteiner img {
  height: 400px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgb(0, 49, 135);
  transition: 0.3s ease-in-out;
  background-color: rgb(0, 49, 135);
}
.galeria .imagenes_conteiner .galeria_conteiner img:hover {
  box-shadow: 2px 2px 10px black;
  transform: scale(0.95);
  padding: 10px;
}

@media screen and (max-width: 960px) {
  header {
    min-height: 75px;
  }
  header .logo_empresa .nombre_empresa {
    font-size: 19px;
    letter-spacing: 0px;
  }
  header .menu {
    gap: 15px;
  }
  header .menu a li {
    font-size: 17px;
  }
  .conteiner1 {
    height: 425px;
  }
  .conteiner1 .contacto {
    height: 200px;
    width: 600px;
  }
  .conteiner1 .contacto img {
    height: 90px;
  }
  .conteiner1 .contacto .titulo {
    font-size: 25px;
  }
  .conteiner1 .contacto .eslogan {
    font-size: 18px;
  }
  .conteiner1 .contacto .propietario {
    font-size: 20px;
  }
  .conteiner1 .contacto .datoscontacto {
    gap: 5px;
  }
  .conteiner1 .contacto .datoscontacto a ion-icon {
    font-size: 25px;
  }
  .conteiner1 .contacto .datoscontacto a span {
    font-size: 22px;
  }
  .scene .nosotros {
    padding: 0px 75px;
  }
  .servicios {
    gap: 50px;
  }
  .servicios .textos {
    height: 375px;
    width: 45%;
    gap: 10px;
    box-shadow: 3px 3px 15px rgb(13, 45, 66);
  }
  .servicios .textos span {
    margin-top: 0px;
    font-size: 18px;
  }
  .servicios .textos ul {
    margin-top: 15px;
  }
  .servicios .textos ul li {
    font-size: 17px;
  }
  .servicios .image2 {
    height: 375px;
    width: 35%;
  }
  .servicios .image2 img {
    width: 100%;
    box-shadow: 3px 3px 15px rgb(13, 45, 66);
    transition: 0.3s ease-in-out;
  }
  .contacto_footer {
    height: 525px;
  }
  .contacto_footer .preferencia .telefonos {
    flex-direction: column;
  }
  .contacto_footer .ubicacion {
    margin-right: 20px;
  }
  .contacto_footer .ubicacion iframe {
    width: 300px;
    height: 435px;
  }
  .contacto_footer .ubicacion a span {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  header {
    min-height: 50px;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  header .logo_empresa {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  header .logo_empresa img {
    height: 50px;
    margin: 10px;
    transition: 0.3s ease-in-out;
    margin-top: 30px;
  }
  header .logo_empresa img:hover {
    transform: translateY(-3px);
  }
  header .menutoogle {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    visibility: visible;
    transition: 0.5s;
  }
  header .menutoogle.active {
    transition: 0.5s;
    top: 0;
    right: 0;
    height: 29vh;
    width: 100vw;
    background-color: rgb(0, 0, 0);
    z-index: 1000;
    border-bottom: 1px solid white;
  }
  header .menutoogle ion-icon {
    transition: 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
  }
  header .menutoogle ion-icon.active {
    transition: 0.5s;
    top: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
  }
  header .menu {
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
  }
  header .menu a li {
    font-size: 16px;
  }
  header .menu.active {
    transition: 0.5s;
    opacity: 1;
    flex-direction: column;
    visibility: visible;
    z-index: 1000;
    gap: 30px;
    margin-top: -80px;
    margin-left: 20px;
  }
  header .menu.active a li {
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 5px rgb(0, 49, 135);
  }
  header .menu.active a:nth-child(2) {
    border-top: 1px solid rgb(0, 49, 135);
    padding: 10px 50px;
    margin-top: -15px;
  }
  header .menu.active a:nth-child(3) {
    border-top: 1px solid rgb(0, 49, 135);
    padding: 10px 58px;
    margin-top: -20px;
  }
  header .menu.active a:nth-child(4) {
    border-top: 1px solid rgb(0, 49, 135);
    padding: 10px 58px;
    margin-top: -20px;
  }
  .conteiner1 {
    height: 800px;
  }
  .conteiner1 .contacto {
    height: 200px;
    width: 350px;
  }
  .conteiner1 .contacto img {
    height: 70px;
  }
  .conteiner1 .contacto .titulo {
    font-size: 22px;
  }
  .conteiner1 .contacto .eslogan {
    font-size: 16px;
  }
  .conteiner1 .contacto .propietario {
    font-size: 22px;
  }
  .conteiner1 .contacto .datoscontacto {
    gap: 10px;
  }
  .conteiner1 .contacto .datoscontacto a ion-icon {
    font-size: 24px;
  }
  .conteiner1 .contacto .datoscontacto a span {
    font-size: 18px;
  }
  .scene .nosotros {
    padding: 0px 20px;
  }
  .scene .nosotros .quienes_somos {
    font-size: 24px;
  }
  .scene .nosotros .somos {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 28px;
  }
  .cotiza_ahora a div {
    padding: 15px 70px;
  }
  .cotiza_ahora a div span {
    font-size: 16px;
  }
  .servicios {
    flex-direction: column;
    gap: 20px;
  }
  .servicios .textos {
    height: 375px;
    width: 95%;
    gap: 5px;
    box-shadow: 3px 3px 15px rgb(0, 0, 0);
  }
  .servicios .textos span {
    margin-top: 0px;
    font-size: 21px;
    border-bottom: 2px solid white;
  }
  .servicios .textos ul li {
    font-size: 17px;
    margin-top: 7px;
  }
  .servicios .image2 {
    height: 425px;
    width: 95%;
  }
  .contacto2 .contenedor.active2 {
    width: 385px;
  }
  .contacto_footer {
    justify-content: center;
    flex-direction: column;
    height: 1050px;
    width: 100%;
    margin-top: -10px;
    gap: 30px;
  }
  .contacto_footer .preferencia {
    flex-direction: column;
    width: 100%;
  }
  .contacto_footer .preferencia .gracias {
    font-size: 32px;
  }
  .contacto_footer .preferencia span {
    font-size: 17px;
  }
  .contacto_footer .preferencia .cotiza_ahora2 a div {
    padding: 10px 60px;
  }
  .contacto_footer .preferencia .datoscontacto2 ion-icon {
    font-size: 32px;
  }
  .contacto_footer .preferencia .credito {
    font-size: 17px;
  }
  .contacto_footer .ubicacion {
    width: 95%;
    margin-right: 0;
    margin-top: -40px;
  }
  .contacto_footer .ubicacion iframe {
    width: 100%;
    height: 400px;
  }
  .contacto_footer .ubicacion a span {
    font-size: 11px;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style2.css.map */