.wrapper-type-insurance {
    display: flex;
    justify-content: space-evenly;
    padding-top: 24px;
    padding-bottom: 24px;
    color: var(--white);
    background-color: var(--dim-green);
    border-radius: 4px;
}





@media (max-width: 768px) {
    .wrapper-type-insurance {
        display: none;
    }
}

.wrapper-type-insurance a {
    color: var(--white);
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.wrapper-type-insurance a:hover {
    text-decoration: none;
    color: var(--black);
}