
.reminders__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
}

.reminder {
    width: calc((100% - 64px)/3);
    background: #f2f2f2;
    border-radius: 16px;
}

.reminder__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
    padding: 16px;
}

.reminder__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #002E6D;
}

.reminder__bottom {
    padding: 20px;
    border-top: 2px solid #fff;
    font-size: 15px;
    line-height: 16px;
}

.reminder__btn {
    width: 200px;
    height: 40px;
    margin: auto;
    font-size: 15px;
    line-height: 16px;
}

.reminder__icon {
    width: 88px;
    height: 88px;
}


@media screen and (max-width: 1279px){

}

@media screen and (max-width: 1032px){

}

@media screen and (max-width: 767px){
    .reminders__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .reminder {
        max-width: 390px;
        width: 100%;
    }


}
