*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* body{
    background-color:rgb(188, 236, 166);
} */

.menusecc{
    color:black;
    height: 82px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 1;
}
.logo-header{
    width: 40%;
    display: flex;
    align-items: center;
}
.imagenhead1{
    height: 101%;
    width: 20%;
}
.imagenhead2{
    height: 60%;
    width: 50%;
}

.conteinermenu{
    width: 80%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-inline-end: 16px;
}

.botones{
    display: flex;
    gap: 30px;
    text-align: center;
    justify-content: center;
}

.botones li{
    list-style-type: none;
    border-radius: 5px;
    padding: 6px 4px;

}
.botones li a{
    color: black;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration: none;
    font-size: large;


}
.botones li:hover{
    background-color:goldenrod;
}

.encabezado img{
    width: 100%;
    height: 360px;
    position: absolute;
}

.encabezado-title{
    position: relative;
    height: 400px;
    padding-left: 20px;
    top: 200px;
    color: white;
}
.encabezado-title h1{
    font-size: 70px;
    font-weight: 600;

}
.encabezado-title p{
    font-size: 35px;
}
.section{
    padding-bottom: 70px;
}

.section-header{
    display: flex;
    justify-content: space-around;
    align-items: center;

}
.section-header h3{
    width: 40%;
    font-size: 30px;
    font-weight: 600;
    border: 5px solid goldenrod;
    border-radius: 4px;
    text-align: center;
    padding: 10px;
}
.section-header img{
    width: 200px;
}

.section-container{
    padding-inline: 25px;
    display: flex;
    gap: 50px;
    margin-top: 30px;
}
.item-container{
    text-align: center;
    transform: scale(1);
    transition: transform 2s;
    padding-left: 5%;
    padding-right: 5%;
    background-color: black;
    border-radius: 5px;
}
.item-container:hover{
    transform: scale(1.1);
}

/* .item-container:nth-child(3){
    background-color: red;
} */
.item-container h1{
    font-size: 60px;
    font-weight: bold;
    color: white;
}

.item-container h3{
    color: white;
    font-size: 30px;
    font-weight: 500;
}

.item-container p{
    font-size: 20px;
    color: white;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
}

.section-info{
    display: flex;
}
.section-info-item{
    width: 50%;
    padding: 40px;
}
.section-info-item img{
    width: 100%;
    margin-block-end: 20px;
}
.section-info-item h1{
    font-weight: 550;
    margin-block-end: 25px;
    text-align: center;
}
.section-info-item p{
    font-size: 18px;
    color: rgb(61, 61, 61);
    text-align: justify;
    margin:15px;
}
.section-info-item li{
    color: rgb(66, 65, 65);
    font-weight: bold;
    font-size:18px;
    margin: 15px;
}

.section-info-item h2{
    margin: 20px;
}
.section-info-item h3{
    text-align: justify;

}
.section-info-item li span{
    color: red;
}
.section-quote{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 850px;
}
.section-quote img{
    width: 90%;
    position: absolute;
    
}
.section-quote-text{
    position: relative;
    color: white;
    text-align:center;
    padding-top: 25%;
    font-size: larger;
    font-weight: 600;
}
footer{
    background-color: rgb(41, 143, 171);
    display: flex;
    justify-content: space-around;
    padding-block: 20px;
}
.footer-content img{
    width: 100px;
}
.footer-content p{
    color: white;
    font-size: 17px;
    padding-block: 3px;
}
.fotter-icon{
    color: white;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
}
.message{
    border: 1px solid rgb(241, 237, 237);
    border-radius: .3em;
    box-shadow: 1px 3px 3px rgb(206, 205, 205);
}
.message h1{
    color: gray;
}
.message li{
    color: rgb(89, 89, 89);
    font-weight: 400;
}
.message button{
    margin: 10px;
    padding: 8px 5px;
    border-radius: .5em;
    border: none;
    color: white;
    background-color: goldenrod;
    cursor: pointer;
}
.message button:hover{
    background-color: rgb(249, 202, 84);
}

@media (max-width: 800px) {
    .section-info{
        display: flex;
        flex-direction: column;
    }
    .section-info-item{
        width: 100%;
    }
    .section-quote{
        height: 400px;
    }
  }