* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.header {
    position: fixed;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    z-index: 1;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 75%;
    margin-right: 10px;
}

.menu-icon {
    font-size: 1.5rem;
}
section{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10vh;
}
.nosotros-section-derecha .nosotros-header{
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    
}
.nosotros-section-derecha .nosotros-header img{
    width: 75%;
    object-fit: cover;
    object-position: center;
}

.nosotros-section-derecha .nosotros-info {
    text-align: left;
    margin: 0 1rem;
}
.nosotros-section-derecha .nosotros-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5a623;
}
.nosotros-section-derecha .nosotros-info p {
    margin-bottom: 1rem;
}

.nosotros-section-izquierda .nosotros-header{
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    
}
.nosotros-section-izquierda .nosotros-header img{
    width: 75%;
    object-fit: cover;
    object-position: center;
}

.nosotros-section-izquierda .nosotros-info {
    text-align: right;
    margin: 0 1rem;
}
.nosotros-section-izquierda .nosotros-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5a623;
}
.nosotros-section-izquierda .nosotros-info p {
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    section{
       
        
    }
    .nosotros-section-derecha{
        display: grid;
        grid-template-columns: 1fr 1fr; 
    
    }
    .nosotros-section-derecha .nosotros-header{
        grid-column: 2;
    }
    .nosotros-section-derecha .nosotros-info {
        grid-row: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
    }
    .nosotros-section-izquierda{
        display: grid;
        grid-template-columns: 1fr 1fr; 
    }
    .nosotros-section-izquierda .nosotros-header img{
        width: 100%;
    }
}