#section-areas {
    margin: 0;    
    background: linear-gradient(to top,  var(--bg-dark) 50%,  var(--bg-light) 50%);   
    padding-bottom: 50px;
}
 
.area-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.area-modal {
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-radius: 50px;
    flex-direction: column;
    align-items: center;   
    padding: 20px;
    box-shadow:
        0 1px 1px hsl(0deg 0% 0% / 0.075),
        0 2px 2px hsl(0deg 0% 0% / 0.075),
        0 4px 4px hsl(0deg 0% 0% / 0.075),
        0 8px 8px hsl(0deg 0% 0% / 0.075),
        0 16px 16px hsl(0deg 0% 0% / 0.075);
}

.area-modal h1 {
    text-align: center;
}

.area-modal-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.area-modal-items .area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin: 20px;
}

.area-item-circle {
    background-color: #EFEFEF;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.area-item img {
    height: 50px;
}

@media (max-width: 767px) {
    .area-modal-items  {
        display: flex;
        flex-direction: column;
    }    
}