﻿
#BodySection {
    background-color: #40444a;
    padding-bottom: 30px;
}

.Section-title {
    font-size: 30px;
    color: #fff;
    font-family: 'system-ui';
    font-weight: 600;
    padding-top: 30px;
}

.test-card {
    background-color: #2c3034;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

    .test-card:hover {
        background-color: #212b36;
        border-radius: 20px;
        margin-bottom: 30px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    }

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 0px solid rgba(0, 0, 0, .125);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 0px solid rgba(0, 0, 0, .125);
}

.card-title {
    font-size: 25px;
    font-family: 'system-ui';
    color: #fff;
    margin-bottom: .0rem;
}

.card-header p {
    font-size: 20px;
    font-family: 'system-ui';
    color: #fff;
    font-weight: 400;
}

.card-footer > span {
    font-size: 25px;
    color: #1fa1d7;
    font-family: math;
    font-weight: 600;
}
    /*.card-footer:nth-child(2) {
        width:150px;
        }*/
    .card-footer > span i {
        font-size: 20px;
        color: #fff;
    }

svg#arrowright {
    width: 28px;
    left: 105px;
    top: 5px;
    fill: #fff;
    transition-duration: .5s;
    -moz-transition-duration: .5s;
    -o-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    -ms-transition-duration: .5s;
    animation: mymove .5s infinite;
}

    svg#arrowright:hover {
        width: 28px;
        fill: #fff;
        transform: translateX(10px);
        transition-duration: .5s;
        -moz-transition-duration: .5s;
        -o-transition-duration: .5s;
        -webkit-transition-duration: .5s;
        -ms-transition-duration: .5s;
        animation: mymove .5s;
    }

@keyframes mymove {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(;
    }
}

