/* card image*/
.fotos-icones .m-image-box {
    position: relative;
    margin-bottom: 50px;
}

.fotos-icones {
    margin-bottom: 80px;
    margin-top: 80px;
}

.fotos-icones-itens {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}

.fotos-icones .m-image-box__content {
    position: absolute;
    width: 592px;
    height: 244px;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: #002a3f;
}
.fotos-icones .m-image-box__content .m-link::before {
    background-color: white;
}

.fotos-icones .m-image-box__image img {
    width: 100%;
}

.fotos-icones .m-image-box__title {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}
.fotos-icones .m-image-box p {
    font-size: 14px;
    color: #fff;
}
.fotos-icones .m-image-box .m-link{
    color: #fff;
}

.fotos-icones .m-image-box .m-link::after {   
    background: url("../../../assets/images/icons/arrow-white.svg") no-repeat;
}

@media(max-width:992px) {
    .fotos-icones .m-features__list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
        padding: 0 15px;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .fotos-icones .m-image-box__image {
        width: 100%;
    }
    .fotos-icones .m-image-box__image img {
        max-width: 100%;
        height: unset;
    }
    .fotos-icones .m-image-box__content {
        position: relative;
        width: 100%;
        left: auto;
        bottom: auto;
        padding: 30px 25px;
        background: #002a3f;
        height: auto;
    }
}

/* lista com icones */
.m-features {
    margin-top: 20px;
}
.m-features h3 {
    margin-bottom: 40px;
}
.m-features__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.m-features__item {
    position: relative;
    min-height: 72px;
    margin-bottom: 32px;
    padding-left: 100px;
}
.m-features__item img {
    position: absolute;
    top: -10px;
    left: 0;
    width: 72px;
    height: 72px;
}
.m-features__item h4 {
    font-weight: bold;
    font-size: 20px;
    color: #002a3f;
    margin-bottom: 4px;
}

.m-features__item .m-features-link{
    color:#005187;
}

.m-features__item .m-features-link::after {   
    background: url("../../../assets/images/icons/arrow.svg") no-repeat;
    display: inline-block;
    content: "";
    vertical-align: middle;
    width: 16px;
    height: 12px;
    right: 20px;
    bottom: 20px;
    margin-left: 15px;
    transition: all .3s ease;
}

