/*
    code by Iatek LLC 2018 - CC 2.0 License - Attribution required
    code customized by Azmind.com
*/
@media (min-width: 768px) and (max-width: 991px) {
    /* Show 4th slide on md if col-md-4*/
    .carousel-inner:where(.suggestions) .active.col-md-4.carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -33.3333%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    /* Show 3rd slide on sm if col-sm-6*/
    .carousel-inner:where(.suggestions) .active.col-sm-6.carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -50%;  /*change this with javascript in the future*/
        z-index: -1;
        display: block;
        visibility: visible;
    }
}
@media (min-width: 576px) {
    :where(.suggestion).carousel-item {
        margin-right: 0;
    }
    /* show 2 items */
    :where(.suggestions).carousel-inner .active + .carousel-item {
        display: block;
    }
    :where(.suggestions).carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    :where(.suggestions).carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item {
        transition: none;
    }
    :where(.suggestions).carousel-inner .carousel-item-next {
        position: relative;
        transform: translate3d(0, 0, 0);
    }
    /* left or forward direction */
    :where(.suggestions) .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    :where(.suggestions) .carousel-item-next.carousel-item-left + .carousel-item,
    :where(.suggestions) .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* farthest right hidden item must be also positioned for animations */
    :where(.suggestions).carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    /* right or prev direction */
    :where(.suggestions) .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    :where(.suggestions) .carousel-item-prev.carousel-item-right + .carousel-item,
    :where(.suggestions) .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}
/* MD */
@media (min-width: 768px) {
    /* show 3rd of 3 item slide */
    .carousel-inner:where(.suggestions) .active + .carousel-item + .carousel-item {
        display: block;
    }
    .carousel-inner:where(.suggestions) .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item {
        transition: none;
    }
    .carousel-inner:where(.suggestions) .carousel-item-next {
        position: relative;
        transform: translate3d(0, 0, 0);
    }
    /* left or forward direction */
    .carousel-item-next.carousel-item-left + .carousel-item:where(.suggestion) + .carousel-item:where(.suggestion) + .carousel-item:where(.suggestion) {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    /* right or prev direction */
    .carousel-item-prev.carousel-item-right + .carousel-item:where(.suggestion) + .carousel-item:where(.suggestion) + .carousel-item:where(.suggestion) {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }
}

/**
    Wltd stuff
 */
.projectName {
    font-size: 1.2em;
}