.bg-green-mams {
    background-color: #037427;
}

main {
    margin-top: 55px;
}

#map {
    width: 100%;
    height: 400px;
    background: #d6d6d6;
}

.text-justify {
    text-align: justify;
}

@media (min-width: 800px) {
    .carousel-item > img {
        margin-top: -200px;
    }
}

@media (min-width: 0px) and (max-width: 799px) {
    .carousel-item {
        height: 20rem !important;
    }
}

.history-presentation {
    display: flex;
}

.menu-part {
    border: 2px solid #0a3622;
    border-radius: 5px;
}

.menu-part > h2, .menu-part > h3 {
    padding: 0 2em;
}

hr {
    display: block;
    margin: 50px 0 -15px !important;
    width: 100%;
    height: 1px;
    border: 0;
    background-color: rgba(0, 0, 0, 0.35);

}

hr + h2 {
    display: inline-block;
    position: relative;
    left: 50%;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid #453986;
/ / box-shadow: inset 0 0 0 1 px #453986;
    transform: translateX(-50%);
    color: #453986;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;

/ / Cancel out offset created by letterspacing &:: first-letter {
    margin-left: 0.32em;
}
}

/* Alternative transform: translate */
hr + h2 {
    border-width: 1px 0;

    &::before,
    &::after {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #453986;
        content: "";
    }

    &::before {
        left: 0;
    }

    &::after {
        right: 0;
    }
}