.termsbox{
    margin-top: 200px;
    margin-bottom: 200px;
    width: 100%;
}

.supportboxout{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    grid-gap: 20px;
    margin-inline: auto;
    flex-wrap: wrap;
}

.supportbox{
    display: flex;
    width: 300px;
    height: 200px;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: .5s ease;
    
}


.supportbox:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.supportbox:hover h8{
    color: #5a58e9;
    text-decoration:underline;
}

h8{
    font-size: 24px;
    font-weight: 600;
    color: #28282f;
    transition: .5s ease;
}