.title {
    font-size: 36px;
    margin-top: 54px;
}

.courses-card {
    border-radius: 16px;
    border: 2px solid #E3E3E3;
}

.courses-content {
    padding: 6px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.courses-content .description {
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #E3E3E3;
}

.courses-content .price {
    width: 100%;
    height: 100%;
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.courses-price-title {
    margin-bottom: 0;
}

.courses-price-with-disc {
    margin: 0;
}

.courses-price {
    font-size: 16px;
    font-weight: 300;
    color: #737373;
    text-decoration: line-through;
    margin: 0;
}

.disc-per {
    padding: 2px 8px;
    background-color: #B91C1C;
    color: #FFF;
    border-radius: 4px;
    margin-left: 15px;
}

@media(max-width:991px) {
    .courses-image {
        border-radius: 14px 14px 0 0;
    }

    .courses-card {
        margin: 8px;
    }

    .courses-content .description h3 {
        font-size: 20px;
        padding-bottom: 24px;
    }

    .courses-content .description p {
        font-size: 14px;
    }

    .courses-price-title {
        font-size: 18px;
        font-weight: 400;
    }

    .courses-price-with-disc {
        font-size: 20px;
        font-weight: 400;
    }

    .courses-price {
        font-size: 14px;
    }
}

@media(min-width:992px) {
    .courses-image {
        border-radius: 0 14px 14px 0;
    }

    .courses-content .description h3 {
        font-size: 28px;
        padding-bottom: 6px;
    }

    .courses-content .description p {
        font-size: 18px;
    }

    .courses-price-title {
        font-size: 26px;
        font-weight: 400;
    }

    .courses-price-with-disc {
        font-size: 22px;
        font-weight: 400;
    }

    .courses-price {
        font-size: 16px;
    }
}