.m-courses {
    display: flex;
    align-items: center;
    height: 352px;
    background-color: #005187;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}
.m-courses__title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 12px;
}
.m-courses p {
    color: #fff;
}
.m-courses__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.m-courses__item {
    position: relative;
    margin-bottom: 32px;
    margin-right: 32px;
    transition: all .3s;
}
.m-courses__item:nth-child(4) {
    margin-right: 0;
}
.m-courses__item:after {
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 11px;
    right: 12px;
    bottom: 12px;
    background: url("../../images/icons/arrow-white.svg") no-repeat;
    transition: all .3s;
}
.m-courses__item:hover::after {
    transform: translateX(3px);
}
.m-courses__item a {
    display: flex;
    width: 176px;
    height: 80px;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    padding: 12px 42px 16px 12px;
    border: 1px solid #eff2f4;
}
.m-courses__item a {
    text-decoration: none;
}
.m-courses__item:hover {
    transform: scale(1.05);
}
@media (max-width: 1200px) {
    .m-courses {
        height: auto;
        padding: 40px 0px;
        margin-bottom: 30px;
    }
    .m-courses__item:nth-child(4) {
        margin-right: 32px;
    }
}
@media (max-width: 576px) {
    .m-courses {
        height: auto;
        background-size: cover;
        background-position: left bottom;
    }
    .m-courses__title {
        font-size: 32px;
    }

    .m-courses__item,
    .m-courses__item:nth-child(4) {
        margin-bottom: 10px;
        margin-right: 10px;
    }
    .m-courses__item:nth-child(2n) {
        margin-right: 0;
    }

    .m-courses__item a {
        width: 160px;
    }

}
