/* Title */
#title {
    padding-bottom: 1em;
}

#fi-brasil {
    background: 
        url("../images/fi_base1.svg"),
        url("../images/fi_brasil.svg"),
        url("../images/fi_base2.svg");
    background-size: 30%, 70%, 25%;
    background-position: 
        20% 70%, 
        center center, 
        80% 10%;
    background-repeat: no-repeat;
    height: 500px;
}

@media (max-width: 992px) {
    #title {
        text-align: center;
    }
    
    #fi-brasil {
        display: none;
    }
}
/* END Title */

/* Content */
/* Menu */
.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-item {
    display: block;
    width: 300px;
    color: #363636;
    text-decoration: none;
    text-align: center;
    padding: 1.5em;
    margin: 0.8em;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.menu-item:hover {
    background-color: #dfdede;
}

.menu-title {
    margin: 0 0 0.4em 0;
    font-size: 17pt;
}

.menu-text {
    padding: 0;
    margin: 0;
}

.menu-icon {
    height: 70px;
    margin: 0 0 0.4em 0;
}
/* END Menu */
/* END Content */