.section-space-small {
    padding: 3rem 0;
    background-color: var(--primary);
}

.space-small-container {
}

.space-small-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--white);
} 

.space-small-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.space-small-wrapper .title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.header-menu-link:hover {
    scale: 1.1;
    font-weight: 700;
}

.space-small-wrapper .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

@media (max-width: 768px) {
   .space-small-box {
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    justify-content: center;
   }
}
