

footer .footerboxes {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 10px;
    
    border-top: 1px solid #f0f0f0;
} 

footer .footerboxes .box {
    width: 350px;
    height: fit-content;
    padding: 15px;
}

footer .footerboxes .box .title {
    width: fit-content;
    margin: 0px auto;

    font-size: 18px;
    font-weight: 600;

    text-transform: uppercase;
    
    padding-bottom: 15px;


    background: linear-gradient(to right, #2D9DE2 0%, #4A00E0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

footer .footerboxes .box .content {
    display: block;
}

footer .footerboxes .box .content .link {
    height: 39px;
    padding-bottom: 15px;
    color: black !important;
    background: none;

    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footerboxes .box .content .link a {
    color: black !important;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

footer .footerboxes .box .content .link a:hover {
    font-size: 20px;
}

footer .footerboxes .box .content .link a {
  background: unset !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  text-decoration: unset !important;
  cursor: pointer;
}