/* Import Google font - Poppins */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');*/

.carousel-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    max-width: 1200px;
    position: relative;
}

.carousel-wrapper i {
    top: 50%;
    height: 44px;
    width: 44px;
    z-index: 150;
    display: flex;
    color: var(--article-resalt-color);
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    flex-direction: row;
    align-items: center;
    transition: ease 0.5s;
    justify-content: center;
    transform: translateY(-50%);
}

.carousel-wrapper i:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-wrapper i:hover {
    background: #f2f2f2;
}

.carousel-wrapper i:first-child{
    left: -22px;
    display: none;
}

.carousel-wrapper i:last-child{
    right: -22px;
}

.carousel-wrapper .carousel{
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging > img {
    pointer-events: none;
}

.carousel > img {
    height: 400px;
    user-select: none;
    margin-left: 14px;
    object-fit: cover;
    width: calc(100% / 3);
}

.screen-shots-carousel .item {
    height: 520px;
    margin-left: 14px;
    user-select: none;
    object-fit: contain;
    border-radius: 20px;
    width: calc(100% / 5);
}

.testimonials-wrapper > i {
    color: white;
    background-color: var(--main-bg-color);
}

.testimonials-wrapper > i:hover {
    color: #252525;
    background: rgb(245,126,28);
    background: linear-gradient(306deg, rgba(245,126,28,1) 0%, rgba(236,154,39,0.9640231092436975) 51%, rgba(255,175,0,1) 100%);
}

.testimonials-carousel {
    padding: 30px 0;
}

.testimonials-carousel .item {
    width: 500px;
    height: 400px;
    margin-left: 26px;
    user-select: none;
    position: relative;
    border-radius: 20px;
    display: inline-block;
    width: calc((100% / 2) - 26px);
    box-shadow: 5px 5px 5px #aaaaaa;
}

.testimonials-carousel .item:first-child {
    margin-left: 0px;
}

.carousel img:first-child {
    margin-left: 0px;
}

.indicators {
    display: flex;
    margin-top: 60px;
    flex-direction: row;
    justify-content: center;
}

.indicators .item {
    width: 15px;
    height: 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 100%;
    transition: all ease 1s;
    border: 1px solid white;
}

.indicators .item.active {
    background-color: white;
}

.testimonials-indicators .item {
    border: 1px solid var(--main-bg-color);
}

.testimonials-indicators .item.active {
    background-color: var(--main-bg-color);
}

@media screen and (max-width: 900px) {
    .carousel img {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 550px) {

    .carousel-wrapper {
        width: 100%;
    }

    .carousel img, .carousel .item {
        width: 100%;
    }
}