/*lista de cards */
.m-card-list {
    display: flex;
    margin-bottom: 80px;
    margin-top: 80px;
}

.m-card-list .slick-prev:before{
    display: block;
    content: "";
    width: 56px;
    height: 56px;
    background: #fff url("../../../assets/images/icons/arrow-big.svg") no-repeat 17px center;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 100%;
    transition: all 0.3s;
    transform: rotate(-180deg);
    opacity: unset;
}

.m-card-list  .slick-next:before {
    display: block;
    content: "";
    width: 56px;
    height: 56px;
    background: #fff url("../../../assets/images/icons/arrow-big.svg") no-repeat 17px center;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 100%;
    transition: all 0.3s;
    opacity: unset;
}

.m-card-list .slick-prev {
    left: -75px;
    z-index: 1;
}

 .m-card-list .slick-next {
    right: -40px;
}
 
.m-card-list .slick-prev:hover:before,
.m-card-list .slick-next:hover:before {
     background-color: #002a3f;
     background-position-x: -32px;
}

.m-card-list  .slick-dots li {
    width: 12px;
    height: 12px;
    background: #cccccc;
    /* border-color: #0bbbef; */
}

.m-card-list  .slick-dots .slick-active{
    background: #0bbbef;
}

.m-card-list .slick-dots li button:before{
    content: unset;
}

@media (max-width: 576px) {
    .m-card-list {
        flex-direction: column;
    }
    .m-card-list .owl-dots {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    .m-card-list .owl-dots .owl-dot span {
        display: block;
        width: 12px;
        height: 12px;
        border: solid 1px #fff;
        margin: 6px;
        background: #cccccc;
    }
    .m-card-list .owl-dots .owl-dot.active span {
        background: #0bbbef;
        border-color: #0bbbef;
    }
}

/*26. cards + informações*/
.m-card-info {
    position: relative;
    width: 384px;
    height: 384px;
    padding: 40px 30px;
    background-size: cover;
    background: linear-gradient(90deg, #0bbbef -16.78%, #005187 80.54%);
    margin-right: 30px;
    transition: all .3s;
    cursor: pointer;
}
.m-card-info--dark{
    background: #002A3F;
}
/*
.m-card-info:nth-child(1){
    background: url("../../images/bg-3.jpg");  
}
.m-card-info:nth-child(2){
    background: url("../../images/bg-4.jpg");  
}
.m-card-info:nth-child(3){
    background: url("../../images/bg-5.jpg");  
}*/
.m-card-info__title {
    font-size: 20px;
    color: #eff2f4;
    margin-bottom: 12px;
}
.m-card-info p {
    font-size: 14px;
    color: #ffffff;
}
.m-card-info .m-link {
    position: absolute;
    bottom: 40px;
    color: #ffffff;
}

.m-card-info .m-link:hover {
    color: #ffffff;
}

.m-card-info .m-link::before {
    background-color: white;
}

.m-card-info .m-link::after {
    background: url("../../../assets/images/icons/arrow-right.svg") no-repeat;
}

.m-card-info--dark .m-link::after {
    background: url("../../../assets/images/icons/arrow-white.svg") no-repeat;
}

.m-card-info:hover {
    transform: scale(1.05);
}
.m-card-info:hover a::after {
    transform: translateX(3px);
}
@media (max-width: 576px) {
    .m-card-info {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .m-card-info {
        width: 100%;
        height: auto;
        padding: 40px 25px;
        margin-bottom: 20px;
    }
    .m-card-info__title {
        font-size: 16px;
    }

    .m-card-info .m-link {
        position: unset;
        bottom: unset;
    }
}
