.consultation {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    background: #5579D2;
    width: calc(50% - 5px);
}

.consultation:hover {
    background: #7495D7;
}

.transition {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.white {
    color: #FFFFFF !important;
}

.w-440 {
    max-width: 440px;
}

.h-32 {
    height: 32px;
}

@media (max-width: 839px){
    .consultation {
        width: 100%;
    }
}