.row-carrousel {
    margin: 2rem 0;
}
/* .crl-img {
    min-height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

.crl-titre {
    font-size: 30px;
    line-height: 32px;
    max-width: 100%;
    margin-bottom: 1rem;
}

.crl-desc {
    font-size: 16px;
    line-height: 21px;
    max-width: 100%;
    white-space: break-spaces;
    margin-bottom: 3rem;
}
.crl-content {
    background: #0069C8;
    border-radius: 10px;
    padding: 20px 25px;
}

/* .item-carrousel.has-text .crl-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.3s;
    background: rgb(0 105 200 / 35%);
} */

.slick-slide.item-carrousel {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 50px;
}
.slick-slide.item-carrousel .row {
    background: #0069C8;
    border-radius: 10px;
}
.slick-slide.item-carrousel .row .col-md-7 {
    padding-right: 0;
}
.crl-img {
    height: 400px;
}
.crl-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.crl-content * {
    color: #fff;
}

.crl-btn a {
    display: inline-block;
}

.crl-btn a span {
    background: #FFFFFF;
    padding: 8px 16px;
    color: #0069C8;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom-right-radius: 8px;
    transition: 0.5s;
    position: relative;
}

.crl-btn a span svg {
    position: absolute;
    opacity: 0;
    transition: 0.5s;
    left: 25px;
}

.crl-btn a:hover span {
    padding-left: 55px;
}

.crl-btn a:hover span svg {
    opacity: 1;
    left: 15px;
}

.row-carrousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 30px;
    color: #000 !important;
    cursor: pointer;
    z-index: 2;
}

.row-carrousel .fa-angle-left.slick-arrow {
    left: 15px;
}

.row-carrousel .fa-angle-right.slick-arrow {
    right: 15px;
}

.row-carrousel .slick-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
}

.row-carrousel .slick-dots button {
    color: transparent !important;
    background: white !important;
    outline: none !important;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 2px solid #0069C8 !important;
    cursor: pointer;
}

.row-carrousel .slick-dots li:after {
    display: none;
}

.row-carrousel .slick-dots li {
    text-indent: 6px !important;
    margin-bottom: 0px !important;
    line-height: 1 !important;
}

.row-carrousel .slick-dots li.slick-active button {
    background: #0069C8 !important;
}