﻿.pricing {
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    justify-content: center;
}
    .pricing .section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding:2em;
    }
.card {
    width: 320px;
    padding: 35px;
    box-shadow: 0.5px 0.5px 12px 0px #80808042;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 15px auto;
}
    .card:hover {
        transform: translateX(-10px);
        box-shadow: 8px -8px 0px 0px #6347eb;
    }
    .card.card-supervisor {
        border-left: 10px solid hsl(180, 62%, 55%);
    }
    .card.card-team_builder {
        border-left: 10px solid hsl(210.23deg 67.54% 37.45%);
    }
    .card.card-karma {
        border-left: 10px solid hsl(120deg 100% 30%);
    }
     
    .card.card-calculator {
        border-left: 10px solid hsl(212, 86%, 64%);
    }
    .card .card-body {
    }
        .card .card-body .card-title {
            font-size: 17px;
        }
        .card .card-body .card-text {
            font-size: 12px;
            margin-top: 8px;
        }
    .card .card-footer {
        margin-top: 20px;
    }
        .card .card-footer .card-img {
            display: flex;
            flex-direction: row-reverse;
        }
/*
            .card .card-footer .card-img img {
                width: 50px;
                height: 50px;
            }*/
            .card .card-footer .card-img i {
                font-size: 2rem;
                color: #1f5fa0;
            }
.ewaves1, .ewaves2, .ewaves3, .ewaves4 {
    width: 100%;
    opacity: .7;
    background: #1f5fa0;
}
.ewaves1 {
    background: hsl(180, 62%, 55%);
}
.ewaves2 {
    background: hsl(210.23deg 67.54% 37.45%);
}
.ewaves3 {
    background: hsl(120deg 100% 30%);
}
.ewaves4 {
    background: hsl(212, 86%, 64%);
}
@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1000px) {
    header h3 {
        text-align: center;
        font-size: 22px;
    }

    .pricing {
        flex-direction: column;
    }
}
