.cpt-carrousel-img {
    display: flex;
    width: 100%;
    padding: 80px 100px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.carrousel-img-title {
    font-size: 48px;
    line-height: 54px;
    color: #43435E;
    margin-bottom: 40px;
    max-width: 80%;
}

.carrousel-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.carrousel-img-slider {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.carrousel-img-previous,
.carrousel-img-next {
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #000;
    position: absolute;
    top: calc(50% - 25px);
    border: 1px solid black;
    cursor: pointer;
    transition: all 400ms ease-in-out;
    z-index: 2;
}
.carrousel-img-previous {
    left: 25px;
}
.carrousel-img-next {
    right: 25px;
    transform: rotate(180deg);
}
.carrousel-img-previous svg,
.carrousel-img-next svg {
    fill: white;
    transition: all 400ms ease-in-out;
}
.carrousel-img-previous:hover ,
.carrousel-img-next:hover {
    background-color: transparent;
}

.carrousel-img-previous:hover svg,
.carrousel-img-next:hover svg {
    fill: black;
}

.carrousel-img-pagination {
    position: absolute;
    bottom: 70px !important;
    z-index: 3;
}
.carrousel-img-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    transition: all 400ms ease-in-out;
    opacity: 0.2;
    margin: 0 7px!important;
    background-color: white;
    vertical-align: middle;
}

.carrousel-img-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    opacity: 1;
}

.carrousel-img-container {
  height: 0;
  overflow: hidden;
  padding-top: 58%;
  position: relative;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.carrousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carrousel-img-legend {
    margin-top: 25px;
}

.cpt-carrousel-img .cta-container {
    margin-top: 35px;
}

@media screen and (max-width: 767px) {
    .cpt-carrousel-img {
        padding: 40px 5%;
    }
    .carrousel-img-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 30px;
        align-self: flex-start;
    }
    .carrousel-img-previous,
    .carrousel-img-next {
        width: 20px;
        height: 20px;
        top: calc(50% - 25px);
    }
    .carrousel-img-previous svg,
    .carrousel-img-next svg {
        width: 3px;
    }
    .carrousel-img-container {
      border-radius: 20px;
    }
    .carrousel-img-pagination {
        bottom: 45px !important;
    }
    .carrousel-img-legend {
        margin-top: 15px;
    }
}

