.notification-head h2{
    color: #001433;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0rem;
    text-align: center;
}
.notification-wrapper{
    display: flex;
    justify-content: center;
}
.notification-card{
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, .2);
    width: 35%;
}
.notification-card:nth-child(1){
    margin-right: 2rem;
}
.notification-btn{
    margin: 0 auto;
    display: flex;
    width: 40%;
    justify-content: center;
    font-weight: 600;
}

@media (min-width: 2000px) and (max-width: 2400px) {
    .notification-card {
        padding: 4rem 3rem;
    }
    .notification-btn{
        font-size: 120%;
    }
}

@media (min-width: 1601px) and (max-width: 2000px) {
    .notification-card {
        padding: 4rem 3rem;
    }
    .notification-btn{
        font-size: 120%;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .notification-head h2{
        font-size: 200%;
    }
    .notification-card {
        padding: 2rem 0rem;
        width: 100%;
    }
    .notification-btn {
        width: 35%;
    }
}

@media (min-width: 820px) and (max-width: 1023px) {
    .notification-head h2{
        font-size: 180%;
    }
    .notification-card {
        padding: 2rem 0rem;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 819px) {
    .notification-head h2{
        font-size: 180%;
    }
    .notification-card {
        padding: 2rem 0rem;
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .notification-head h2{
        font-size: 170%;
    }
    .notification-wrapper{
        flex-wrap: wrap;
    }
    .notification-card{
        width: 100%;
    }
    .notification-btn {
        width: 48%;
    }
    .notification-card:nth-child(1){
        margin-right: 0;
        margin-bottom: 2rem;
    }
}