
.collapse{
    display: flex;
    justify-content: space-around;
    background-color: rgb(92, 180, 231);
    border-radius: 20px;
}
.navbar-nav{
    display: flex;
    align-items: center;
}
.navbar-nav a{
    margin: 0px 50px 0px 0px;
}
.bannerimg{
    padding: 0px 50px 10px 50px;
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 100px;
    width: 300px;  /* Ancho del elemento */
    height: 100px; /* Alto del elemento */
    border-radius: 0px 0px 100px 100px;  /* Bordes redondeados para formar un círculo en la parte superior */
}
.bannerimg img{
   width: 100px;
   height: 100px;
}

/*-------------------------------------Section1---------------------------------------------*/

.sec1{
   display: flex;
   justify-content: space-around;
   align-items: center;
   margin-top: 50px;
   background-image: url(../img/Fondo9.jpg);
   background-size: cover;
   height: 500px;
   box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2), /* sombra abajo */
            0 -12px 16px rgba(0, 0, 0, 0.2); /* sombra arriba */
    border-radius: 20px;
}
.sec1 .text1{
    width: 70%;
    text-align: end;
}
.text1 h1{
  font-family: "Luckiest Guy", cursive;
  font-size: 72px;
  font-weight: bold;
 -webkit-text-stroke: 2px black;
 text-shadow: 8px 8px 0px black;
 color: #007bff;
}
.text1 p{
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 500;
}
.sec1 img{
    width: 250px;
}

/*-------------------------------------------Section2-------------------------------------------*/

.sec2{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url(../img/Fondo10.jpg);
    background-size: cover;
    margin-top: 50px;
    height: 300px;
}
.sec2 h1{
    font-family: "Luckiest Guy", cursive;
  font-size: 72px;
  font-weight: bold;
 -webkit-text-stroke: 2px black;
 text-shadow: 8px 8px 0px black;
 color: #007bff;
}
.sec2 p{
    width: 50%;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 500;
}

/*----------------------------------------Section3--------------------------------------------*/

.sec3{
    display: flex;
    flex-direction: column;
    background-image: url(../img/Fondo11.jpg);
    background-size: cover;
    height: auto;
    align-items: center;
}
.sec3 h1{
    font-family: "Luckiest Guy", cursive;
  font-size: 72px;
  font-weight: bold;
 -webkit-text-stroke: 2px black;
 text-shadow: 8px 8px 0px black;
 color: #007bff;
 text-align: end;
 width: 90%;
}
.sec3 ul{
    margin-top: 30px;
}
.sec3 li{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    text-align: center;
    list-style: none;
}

/*---------------------------------------------Texto------------------------------------------------*/

.sec4{
   display: flex;
   justify-content: center;
}
.tpend{
     background: #ffff59;
background: linear-gradient(33deg, rgba(255, 255, 89, 1) 0%, rgba(105, 212, 95, 1) 25%, rgba(99, 255, 177, 1) 53%, rgba(237, 138, 221, 1) 78%, rgba(209, 67, 67, 1) 100%);
    margin-top: 50px;
    border-radius: 20px;
    width: 90%;
    padding: 20px 15px 20px 15px;
}
.sec4 p{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}


footer{
    background-color: #007bff;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
    font-family: "Montserrat", sans-serif;
}
.foot1, .foot2{
    margin: 20px 0px 50px 0px;
}
.foot1 h4, .foot2 h4{
    text-align: center;
    color: antiquewhite;
    font-weight: 700;
    font-size: 25px;
}
.foot1 li{
    list-style: none;
    text-align: center;
    color: antiquewhite;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 0px black;
}
.imgs img{
    height: 200px;
}