/* 46. mapa */
.m-map {
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
}
.m-map__content {
    position: absolute;
    width: 488px;
    top: 0;
    left: 0;
    padding: 40px 30px;
    background: #002a3f;
    z-index: 2;
}
.m-map__title {
    font-weight: 400;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.m-map p {
    font-size: 16px;
    color: #fff;
}
.m-map .m-link{
    color: #fff;
}
.m-map .m-link::after{
    background: url("../../../assets/images/icons/arrow-white.svg") no-repeat;
}
@media (max-width: 576px) {
    .m-map {
        min-height: none;
        margin-bottom: 40px;
    }
    .m-map__title {
        font-size: 32px;
    }
    .m-map__content {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        padding: 30px;
    }
    .m-map img{
        max-width: 100%;
    }
}