.optionCircle-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 70px 0;
}

.optionCircle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    position: relative;
    border: none;
    transition: all 0.5s ease-in-out;
}

.optionCircle:hover {
    transform: scale(1.5);
    margin: 0 100px;
}


.optionCircle i {
    font-size: 40px;
    margin-bottom: 10px;
}

.creative {
    background: #90841c;
}

.events {
    background: #c3dbe1;
}

.impact {
    background: #a79bb5;
}

.marketing {
    background: #000000;
}

.africa {
    background: #0e6c7f;
}

.circle img {
    width: 40px;
    height: auto;
    margin-bottom: 10px;
}