.dual-section .general-margin {
    gap: calc(var(--section-padding));
    position: relative;
}
.dual-section .general-margin::before {
    content: "";
    background-color: var(--darkgray-color);
    height: calc(100% - var(--section-padding) - var(--section-padding));
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
}
.dual-section article {
    width: calc(50% - var(--section-padding) / 2 );
}
.dual-section hgroup h3 {
    font-size: var(--fze-big);
}
.dual-section ul li {
    list-style: none;
}
.dual-section ul li:not(:last-child),
.dual-section p:not(:last-child),
section p:not(:last-child) {
    margin-bottom: 15px;
}


/* HISTORY SECTION */

.history {

}
.history img {
    display: inline;
    float: left;
    height: 200px;
}
.history .image-wrapper {
    align-items: center;
    background-color: var(--gray-color);
    border: 2px solid transparent;
    border-radius: 50%;
    justify-content: center;
    height: 72px;
    margin: 0 auto;
    width: 72px;
    transition: all var(--g-time) ease;
}
.history .image-wrapper img {
    width: 55%;
}


/* MISION & VISION SECTION*/

.mission-vission {
    background-color: var(--gray-color);
}


/* VALUES & OBJECTIVES SECTION*/

.values-objectives ul {
    max-width: 398px;
    margin: 0 auto;
}
.values-objectives li {
    color: var(--p-color);
    font-weight: 600;
}
.values-objectives .objetivos li {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}
.values-objectives .valores li {
    text-align: center;
}
.values-objectives li i {
    width: 20px;
    margin-right: 10px;
    padding-top: 4px;
}
.values-objectives li span {
    display: inline-block;
    width: calc(100% - 20px - 10px);
}

@media (max-width: 800px) {
    .dual-section article {
        width: 100%;
    }
    .dual-section .general-margin {
        gap: 0;
    }
    .dual-section .general-margin::before {
        display: none;
    }
    .dual-section article:first-child {
        padding-bottom: var(--section-padding);
        margin-bottom: var(--section-padding);
        position: relative;
    }
    .dual-section article:first-child::after {
        content: "";
        width: 100%;
        background-color: var(--darkgray-color);
        height: 1px;
        position: absolute;
        bottom: -1px;
    }
}