main {
    margin-top: 5.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.chy {
    width: 100%;
    text-align: center;
    font-weight: 900;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 0;
}
.container {
    padding: 1.4rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.item-sm {
    flex: 1 1 24.55%;
    width: 100%;
    min-width: 20rem;
}
.item-md {
    flex: 1 1 49.55%;
    width: 100%;
}
.item-lg {
    flex: 1 1 74.55%;
    width: 100%;
}
.item {
    flex: 1 1 99.55%;
    width: 100%;
}
.center {
    text-align: center;
}
.m-0 {
    margin: 0;
}
.row img {
    width: 100%;
}
.about-us p {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.925rem;
    font-weight: 300;
}
.about-us h4 {
    margin: 0;
    font-size: 0.995rem;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--text);
}
p.main-text {
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    margin-bottom: .8rem;
}
.about-us li {
    font-size: .925rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    margin-bottom: .4rem;
}
.about-us ul {
    margin-top: .4rem;
}
.about-us .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.mission p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    margin: .4rem 0 .4rem 0;
}
.mission b {
    font-weight: 600;
    color: var(--primary);
}
.mission u {
    font-weight: 500;
    text-underline-offset: .25rem;
}

/* |> History */
.history-item {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
}
.history-item:has(img)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 47, 0, 0.7);
    z-index: 2;
    width: 100%;
    height: 100%;
}
.history-item span {
    position: absolute;
    z-index: 5;
    font-weight: 900;
    font-size: 4rem;
    color: var(--background);
}
.history-item p {
    margin: .4rem;
    text-align: center;
}
.history-item h1 {
    margin: 0;
    font-weight: 800;
}

@media screen and (max-width: 700px) {
    .oposite {
        flex-direction: column-reverse !important; 
    }
}
@media screen and (min-width: 1920px) {
    .container {
        width: 60%;
    }
}