/* ===================================
    global
====================================== */

section{
  position: relative;
  overflow-x: clip;
}

.img1{
  width: 100%;
  height: 100%;
}


.img1 img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.inf-sec .img{
  width: 100%;
  height: 80%;

}

.inf-sec .img img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-top-right-radius: 50px;
}

.inf-sec .description{
  background: #2B50AA;
  padding: 25px 10px 15px 10px;
  display: flex;
  align-items: center;

}

/*-------*/

#galery-proyectos .swiper {
      width: 100%;
      height: 100%;
    }

#galery-proyectos .swiper-slide {
      width: 100%;
      height: 550px;
      border-radius: 20px;
      position: relative;
    }

#galery-proyectos .swiper-slide .info{
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left: 0px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(1, 5, 14, 0) 0%, rgba(2, 25, 81, 0.5) 100%)!important;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 30px;
  border-radius: 20px;
}

#galery-proyectos .swiper-slide .cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


#mapa{
   scroll-margin-top: 80px;
}


/* ===================================
    grids
====================================== */

/*----Grid seccion 1 imagenes----*/
.inf-sec{grid-area: inf;}
.img1{grid-area: img1;}
.btn-content{grid-area: btn;}

.grid-sec-one{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  grid-template-areas:
  "img1 img1"
  "inf inf"
  "btn btn";
  grid-template-rows: 200px auto auto;
}



/* ===================================
    responsive
====================================== */

/* xxs */ @media (max-width: 430px) {}
/* xs  */ @media (min-width: 431px) {} /* @media (max-width: 575px) {} */
/* sm  */ @media (min-width: 576px) {}
/* md  */ @media (min-width: 768px) {

.grid-sec-one{gap:20px;
  grid-template-areas:
    "img1 inf"
    "img1 inf"
    "btn inf";
}

} /* ipad Portrait */
/* lg  */ @media (min-width: 992px) {

.grid-sec-one{gap:20px;
  grid-template-areas:
    "img1 img1"
    "inf inf"
    "btn btn";
}

} /* ipad Landscape */
/* xl  */ @media (min-width: 1200px) {

.grid-sec-one{gap:20px;
  grid-template-areas:
    "img1 inf"
    "img1 inf"
    "btn inf";
}



}
/* xxl */ @media (min-width: 1400px) {}
