/*UBICACION*/
.container-ubi {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px 0;
}
.container-direction {
  flex-direction: column;
  text-align: center;
}
.container-ubi .container-max-1200 {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.container-direction h4 {
  font-size: 2em;
  color: black;
  font-weight: bold;
  background-color: linear-gradient(to right, #00b9cd, #6484c4);
}

.container-direction h3 {
  font-size: 2em;
  font-weight: 300;
}
.map iframe {
  width: 100%;
  min-height: 400px;
}
.container1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    45deg,
    rgba(7, 98, 202, 0.97) 46%,
    rgb(5, 44, 102) 100%
  );
}
.container-galery-grid {
  display: grid;
  padding: 0 1rem 40px 1rem;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1280px;

  place-content: center;
  place-items: center;
}
.container-review {
  display: flex;
  justify-content: center;
  align-items: self-start;
  flex-direction: column;
  width: 100%;
  height: max-content;
  border: 10px solid rgba(241, 241, 241, 0.834);
  padding: 10px;
}
.container-review > div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.container-review img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.container-review hr {
  border: 1px solid rgba(217, 217, 217, 0.753);
  width: 100%;
  margin-bottom: 10px;
}
.container-review p {
  font-size: 16px;
}
.container-galeria {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: 10rem;
  gap: 10px;
  width: 100%;
  place-content: center;
  padding: 0 1rem;
  max-width: 1280px;
  padding: 40px 0;
}
.container1 .container-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: all 0.2s linear;
  border-radius: 10px;
}
.container1 .container-galeria img:hover {
  transition: all 0.2s linear;
  box-shadow: 0px 0px 20px 6px rgba(255, 255, 255, 1);
}
.container1 .container-galeria img:nth-child(1) {
  grid-column: span 6 / span 6;
}
.container1 .container-galeria img:nth-child(4) {
  grid-column: span 6 / span 6;
}
.container1 .container-galeria img:nth-child(5) {
  grid-column: span 6 / span 6;
}
.container1 .container-galeria img:nth-child(2) {
  grid-column: span 4 / span 4;
}
.container1 .container-galeria img:nth-child(3) {
  grid-column: span 4 / span 4;
}
.container1 .container-galeria img:nth-child(6) {
  grid-column: span 4 / span 4;
}
.container-map {
  border-radius: 10px;
  padding: 30px 1rem;
  background: linear-gradient(
    45deg,
    rgba(7, 98, 202, 0.97) 46%,
    rgb(5, 44, 102) 100%
  );
  margin: 20px 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container-map h4 {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 500;
  color: white;
}
.container-map p:nth-child(2),
.container-map p:nth-child(4),
.container-map p:nth-last-child(2) {
  margin-bottom: 25px;
}
.container-map a {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: aliceblue;
  border-radius: 10px;
  transition: all 0.275s linear;
  text-decoration: none;
  color: #000;
  display: flex;
  justify-items: center;
  align-items: center;
}
.container-map a svg {
  width: 15px;
  margin-right: 5px;
}

/*SECCION WEB*/

@media (min-width: 768px) {
  /*UBICACION*/
  .container-galery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
    gap: 50px;
  }
  .container-map {
    height: 600px;
    max-width: 500px;
    padding: 30px;
    -webkit-box-shadow: -13px 0px 20px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -13px 0px 20px -7px rgba(0, 0, 0, 0.75);
    box-shadow: -13px 0px 20px -7px rgba(0, 0, 0, 0.75);
  }
  .map iframe {
    max-width: 650px;
  }
  .map {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .container-direction h3 {
    font-size: 3em;
  }

  .container-direction h4 {
    background: linear-gradient(to right, #00b9cd, #6484c4);
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    color: white;
    padding: 0.5rem;
  }
  .container-direction {
    margin: 60px 0;
  }
}
