.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;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../img/Fondo7.jpg);
    background-size: cover;
    height: auto;
    margin-top: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2), /* sombra abajo */
            0 -12px 16px rgba(0, 0, 0, 0.2); /* sombra arriba */
}
.sec1 h1{
    margin-top: 50px;
    font-family: "Luckiest Guy", cursive;
    font-weight: 900;
    color: #007bff;
    word-spacing: 20px;
    -webkit-text-stroke: 2px black;
}
.sec1 ol{
    margin-bottom: 50px;
}
.sec1 li{
    border: #007bff groove;
    border-radius: 20px;
    padding: 20px 20px 20px 20px;
    list-style: none;
    margin-top: 20px;
     font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 800;
    counter-increment: custom-counter;
    background-color: white;
}
.custom-list li::before {
      content: counter(custom-counter) ". ";
      color: red; /* Cambia el color del número */
      font-weight: 900;
      font-family: "Montserrat", sans-serif;
      margin-right: 5px;
}

/*----------------------------------------------------------Section2-------------------------------------------------------------------*/

.sec2{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.sec2 p{
    width: 80%;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 900;
    color: #007bff;
    text-align: center;
}

/*------------------------------------------------------------Section3---------------------------------------------------------*/

.sec3{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/Fondo16.jpg);
    background-size: auto;
    height: 1300px;
}
.sec3 .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec3 .row{
    width: 1300px;
    margin-top: 30px;
}
.sec3 img{
    width: 100px;
}
.sec3 .col-8{
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

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;
}