.galleryCarousel-imageSlide-container {
    position: relative;
    margin: auto;
}

.galleryCarousel-imageSlide-previous, .galleryCarousel-imageSlide-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.galleryCarousel-imageSlide-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.galleryCarousel-imageSlide-previous:hover, .galleryCarousel-imageSlide-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.galleryCarousel-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #CFCEC9;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.galleryCarousel-dot:hover, .active {
    background-color: #3e3e3b;
}

.galleryCarousel-imageSlide {
    display: none;
}

.galleryCarousel-imageSlide-text {
    color: #ebeced;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
}

.galleryCarousel-imageSlide-number {
    color: #ebeced;
    padding: 8px 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 15px;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.feature-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    padding: 20px;
    width: 100%;
    flex: 0 0 100%;
}

@media (min-width: 500px) {
    .feature {
        flex: 0 0 50%;
    }
}

@media (min-width: 750px) {
    .feature {
        flex: 0 0 33%;
    }
}

.feature-image {
    position: relative;
    cursor: pointer;
}

.feature-text {
    text-align: center;
    cursor: pointer;
}

.eCommerceLearnHow-image {
    position: relative;
    margin: auto;
}

.eCommerceLearnHow-text {
    position: absolute;
    bottom: 2.5vw;
    left: 0;
    right: 2.5vw;
    color: #ebeced;
    text-shadow: #3e3e3b 1px 1px;
    text-align: right;
}

.eCommerceLearnHow-text button {
    color: #ebeced;
    background-color: #4c586f;
    padding: 1vw 3vw;
    margin: auto;
    border: 1px solid #3e3e3b;
    cursor: pointer;
}

.eCommerceLearnHow-text button:hover {
    color: #4c586f;
    background-color: #ebeced;
}

.galleryTabular-imageTab-container {
    position: relative;
    margin: auto;
    display: flex;
    padding: 2.5vw 2.5vw;
}

.galleryTabular-check {
    cursor: default;
    height: 5vw;
    padding-top: 1.4vw;
    padding-left: 4.5vw;
    background-image: url(../img/unchecked.png);
    background-size: 4vw;
    background-repeat: no-repeat;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.galleryTabular-check:hover, .checked {
    background-image: url("../img/checked.png");
}

.galleryTabular-imageTab {
    display: none;
}

.galleryTabular-imageTab img {
    width: 100%;
}

.galleryTabular-imageTab-text {
    padding: 1vw 1vw;
    bottom: 1vw;
    width: 100%;
    text-align: center;
}

.testimonial-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: auto;
}

.testimonial {
    border: 2px solid #4c586f;
    background-color: #ebeced;
    border-radius: 5px;
    padding: 16px;
    margin: 16px;
    width: 200px;
    flex: 1;
}

.testimonial-image {
    position: relative;
    margin: auto;
}

.testimonial-credit {
    position: absolute;
    top: 0;
    right: 0;
    color: #ebeced;
    text-align: right;
    font-size: 75%;
}

.testimonial-text {
    position: absolute;
    top: 0;
    color: #ebeced;
    text-shadow: #3e3e3b 1px 1px;
    text-align: center;
    margin: 3vw;
    font-size: 200%;
}