html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    padding-top: 70px;
}

header > nav {
    padding: 1em 0 !important;
    background-color: black;
}

.row {
    --bs-gutter-x: none;
}

section.help {
    padding-top: 70px;
}

.section-title {
    text-align: center;
    padding: 4em 1em;
    color: white;
    background:url("/images/services_bg.jpg") center/cover no-repeat;
}

.help-entries {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    grid-template-rows: repeat(2, auto);  /* 2 filas */
    gap: 10px;
    padding: 2em 0 4em 0;
    position: relative;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.help-entries::before {
    content: "";
    position: absolute;
    top: 53px;
    bottom: 89px;
    left: 50%;
    width: 2px;
    background-color: #c7bfb6;
    transform: translateX(-50%);
}

.help-entries .entry {
    text-align: center;
    max-width: 32em;
    margin: 0 auto;
    min-height: 8em;
    padding: 0 2em 2em 2em;
}

.help-entries .entry .image {
    height: 150px;
    display: flex;
    align-content: center;
    justify-content: center;
    padding-bottom: 1em;
}

.help-entries .entry img {
    width: 105px;
}

.help-entries .entry img.buying {
    width: 150px;
}

.help-entries .entry img.consultation {
    width: 90px;
}

.help-entries .entry .name {
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 1205px) {
    html, body {
        padding-top: 58px;
    }
}

@media (max-width: 1024px) {
    section.help {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .help-entries {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }

    .help-entries::before {
        display: none;
    }
}

@media (max-width: 480px) {
    header #navbar.scrolled {
        height: 97px;
        background-color: #121212;
    }

    header > nav .navbar-brand {
        height: 65px;
        margin-left: 3px;
    }

    header .container-fluid {
        --bs-gutter-x: none;
    }

    header > nav .navbar-brand img {
        position: absolute;
        height: 65px;
        top: 17px;
        left: 24px;
    }

    header .navbar-collapse.show {
        background-color: #1212128a;
    }

    header button.navbar-toggler {
        margin-right: 0.6em;
    }

    header .language {
        right: 1.5em;
        top: 1em;
    }

    header nav {
        padding: 2em 0 !important;
    }
}