.tools-box {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    position: relative;
    top: 30px;
    z-index: 1;
}

.tools-box .tool {
    background-color: var(--primary-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 8px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
}

.tool:nth-of-type(even) {
    background-color: var(--primary-light);
    z-index: 1;
}

.tools-box .tool img {
    width: 100%;
    height: 33px;
    object-fit: contain;
}
