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

body .contenedor {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "cab cab cab" "nav nav nav" "pri pri pri" "pie pie pie";
}
body .contenedor .header {
  background-color: white;
  height: 100px;
  grid-area: cab;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .contenedor .header img {
  max-height: 500px;
  max-width: 300px;
  justify-content: center;
}
body .contenedor .nav {
  height: 70px;
  grid-area: nav;
  background-color: #002451;
}
body .contenedor .nav .ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  height: 100%;
}
body .contenedor .nav .ul a {
  font-family: Arial;
  font-size: 25px;
  color: white;
  text-decoration: none;
}
body .contenedor .main {
  grid-area: pri;
  height: auto;
}
body .contenedor .main .container-slider {
  width: 100%;
  height: 40vw;
  max-width: 80vw;
  max-height: 60vw;
  margin: auto;
  margin: 50px auto 50px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 0 0px, 0 15px 50px;
  position: relative;
}
body .contenedor .main .container-slider .slider {
  display: flex;
  width: 600%;
  margin-left: -100%;
}
body .contenedor .main .container-slider .slider .slider-section {
  width: 100%;
}
body .contenedor .main .container-slider .slider .slider-section .slider-img {
  display: block;
  width: 100%;
}
body .contenedor .main .container-slider .slider-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  top: 50%;
  transform: rotateY(-50%);
  font-size: 30px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
body .contenedor .main .container-slider .slider-btn:hover {
  background-color: white;
}
body .contenedor .main .container-slider .slider-btn-left {
  left: 10px;
}
body .contenedor .main .container-slider .slider-btn-right {
  right: 10px;
}
body .contenedor .main .video-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  max-height: 75vw;
}
body .contenedor .main .video-box video {
  width: 60%;
  height: auto;
  border: solid 2px;
  border-radius: 15px;
}
body .contenedor .main .boxT {
  display: flex;
  justify-items: center;
  background-color: #002451;
  margin-top: 30px;
  width: 100%;
  height: auto;
}
body .contenedor .main .boxT .texto {
  margin: auto;
  color: white;
  text-align: justify;
  font-size: 30px;
  font-family: Arial;
  padding-right: 10%;
  padding-left: 10%;
  height: auto;
  width: 50%;
}
body .contenedor .main .boxT .boxTimg {
  height: auto;
  width: auto;
  max-width: 50%;
  overflow: hidden;
}
body .contenedor .main .box-contacto {
  background-image: url(../img/Fondo-engrane.webp);
  width: 100%;
  height: auto;
  justify-items: center;
}
body .contenedor .main .box-contacto .contacto-titulo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 100px;
  font-size: 50px;
  font-family: Arial;
}
body .contenedor .main .box-contacto .contacto-info {
  width: 100%;
  height: 200px;
  font-family: Arial;
}
body .contenedor .main .box-contacto .contacto-info .telefono {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}
body .contenedor .main .box-contacto .contacto-info .telefono img {
  width: 40px;
  height: 40px;
}
body .contenedor .main .box-contacto .contacto-info .telefono h3 {
  font-size: 40px;
  margin-left: 30px;
}
body .contenedor .main .box-contacto .contacto-info .correo {
  display: flex;
  justify-content: center;
  width: 100%;
}
body .contenedor .main .box-contacto .contacto-info .correo img {
  width: 40px;
  height: 40px;
}
body .contenedor .main .box-contacto .contacto-info .correo h3 {
  font-size: 40px;
  margin-left: 30px;
}
body .contenedor .main .box-contacto .btn {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 30px;
  padding: 20px;
  pointer-events: fill;
  background-color: white;
  border-color: #002451;
}
body .contenedor .main .box-contacto .btn a {
  text-decoration: none;
  font-size: 25px;
  height: 100%;
  color: #002451;
}
body .contenedor footer {
  grid-area: pie;
  width: 100%;
}
body .contenedor footer .footer {
  display: flex;
  background-color: #002451;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 150px;
}
body .contenedor footer .footer img {
  height: 50px;
  border-radius: 10px;
}
body .contenedor footer .foot-text {
  width: 100%;
  height: 100px;
  text-align: center;
  background-color: #002451;
  font-size: 25px;
  color: white;
  font-family: Arial;
}
body .contenedor footer .foot-text a {
  text-decoration: none;
  color: white;
}/*# sourceMappingURL=index.css.map */