* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.header{
    width: 100%;
    text-align: center;
    font-size: medium;
    
}

body {
    background-color: #f5f5f5;
}

.navbar {
    width: 100%;
    height: 10vh;
    background-color: #e84137;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.navbar li {
    list-style: none;
}

.navbar img {
height: 40px;

}


.image-wrap {
    height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-wrap img {
    height:130px;
   
    object-fit: cover;
}

.container {
    width: 75%;
    height: auto;
    margin: 0 auto;
    padding: 2%;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap:2rem
}


.container h2 {
    font-weight: 500;
    font-size: 20px;
}

.container .responsabilidadesCom{
    text-align: center;
    font-weight: 600;
}

.container div p,li {
    padding: 0.5% 2%;
}


p span {
    font-weight: 800;
    font-size: 15px;
}

footer {
    padding: 2%;
    margin-top: 3%;
    height: auto;
    padding-top: 40px;
    
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    
}

.socials{
    display: flex;
    align-items: center;
    flex-direction: row;
    list-style: none;
    margin: 0 10px;
}

.socials li{
    margin: 0 10px;
}

.socials a :hover{
   transform: scale(1.1);
   transition: transform 0.3s;
}

.socials img{
    width: 30px;
    height: 30px;
}

@media only screen and (max-width: 768px) {
    .image-wrap  {
        text-align: center;
        font-size: 12px;
    }

    .container {
        width: 90%;
        height: auto;
        margin: 0 auto;
        padding: 2%;
        background-color: white;
        display: flex;
        flex-direction: column;
        gap:2rem
    }

    .container div{

       display: flex;
       flex-direction: column;
       gap: 0.5rem;
    }
    

  }