@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

} */

body {
  font-family: 'Poppins', sans-serif;
}

.navbar {
  padding-top: 0px;
  padding-bottom: 20px;
  display: inline-grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.navbar .logo1 {
  grid-column: 2/3;
}

.navbar .logo2 {
  grid-column: 3/3;
}

.menu-principal {
  grid-column: 6/12;
  display: flex;
  justify-content: space-around;
}

.menu-bar {
  margin-right: 200px;
}

.navbar .menu-principal li {
  list-style: none;
}

.bg-celeste {
  background-color: aqua;
  height: 40px;
}

.menu-principal>li {
  float: left;
}

.menu-principal li ul {
  display: none;
  position: absolute;
}

.menu-principal li:hover>ul {
  display: block;
}

@media only screen and (max-width: 600px) {
  .navbar {
    position: relative;
  }

  .navbar .logo1 {
    display: none;
  }

  .navbar .logo2 {
    display: none;
  }

  .navbar .menu-principal {
    width: 100%;
    height: 70vh;
    display: grid;
    align-items: center;
    transform: translateX(200%);
    background-color: aquamarine;
  }
}

/* * {
	margin: 0;
	font-family: 'Raleway', sans-serif;
	box-sizing: border-box;
} */

.titulo-home {
	width: 100%;
	font-size: 26px !important;
	font-weight: 900 !important;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.label-lorem {
  font-size: 18px;
  /* display: inline-block;
    width: 100%; */
  max-width: 1200px;
  /* margin: 20px 0px 20px 150px;
    padding: 0px 150px 0px 0px; */
}

.tileLayout {
  /* background-color: #00aeef; */
  background-color: #FFF;
  min-width: 250px;
  margin-bottom: 50px;

}

.label-tile {
  font-size: 18px;
  color: #215a9a;
  font-weight: bold;

}

.label-tile:active {
  color: #FFF !important;
}

.tileLayout:active {
  background-color: #00aeef !important;
}


.sapMTileCntContent {
  display: flex;
  justify-content: center;
}

section.sliderNoticias {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: #f2f2f2; */
}

section.sliderNoticias .tituloNoticias {
  background-color: #205A9A;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

section.sliderNoticias .tituloNoticias>span {
  color: #fff;
  font-weight: bold;
  margin: .3rem;
  font-size: 1.5rem;
}

section .sliderNoticias-card .image {
  height: 350px;
  /* object-fit: cover; */
}

section .sliderNoticias-card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.swiper {
  width: 950px;
}

.swiper-button-next,
.swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 100) !important;
}

.sliderNoticias .swiper-pagination {
  display: none;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -617px) !important;
  top: var(--swiper-pagination-top) !important;
}


.sliderNoticias-description {
  position: absolute;
  bottom: 0;
  /* height: 40%; */
  /* width: 280px; */
  padding: 1rem;
  background: rgb(27, 27, 27, .5);
}

.sliderNoticias-description h1 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.container-1 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.container-lorem {

  width: 30%;
  display: flex;
  justify-content: center;
}

.lorem-text {
  font-size: 18px;

  max-width: 300px;

}

.container_footer {
  max-width: 1200px;
  margin: 0 auto;
}

.footer {
  background-color: #205a9a;
  padding: 0px 0;
}

.footer-row {
  /* display: flex;
    flex-wrap: wrap; */
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  padding: 45px 0px;
}

.footer-links {
  width: 100%;
  padding: 0 15px;
}

.footer-links h4 {
  font-size: 20px;
  color: #e7f1f6;
  margin-bottom: 25px;
  font-weight: 500;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-links ul {
  padding-left: .3rem;
}

.footer-links ul li {
  list-style: none;
}

.footer-links ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #e7f1f6;
  display: block;
  margin-bottom: 15px;
  transition: all .3s ease;
}

.footer-links ul li a i {
  margin-right: 7px;
  font-size: 1.2rem;
  color: #66A9F4;
}

.footer-links ul li a:hover {
  color: #FFFF;
  /* padding-left: 3px; */
}

.social-links a {
  display: inline-block;
  min-height: 40px;
  /* width: 40px; */
  text-decoration: none;
  margin: 0 10px 10px 0;
  text-align: center;
  /* line-height: 40px; */
  color: #e7f1f6;
  transition: all .5s ease;
}

.social-links a:hover {
  color: #FFFF;
}


@media screen and (max-width:800px) {
  .footer-row {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    padding: 35px 0px;
  }
}

