
.swiper-container {
    height: 400px;
    width: 100%;
    padding-bottom: 125px;
    padding-top: 20px;
    padding-left:10px; padding-right:10px;
    background-color:#000;
}


    /*.swiper-wrapper {
    width: 100.0%;
    will-change: transform;
}*/
    /*@media (min-width: 630px) {
  .swiper-wrapper {
    width: 100%;
    padding:30px;
  }
}*/
    .swiper-slide {
    width: 100%;
    background-color: white;
    overflow: hidden;
    height: 400px;
}

    .swiper-slide.swiper-slide-active .slide-image, .swiper-slide.swiper-slide-duplicate-active .slide-image {
        transform: scale3d(1, 1, 1);
    }

@media (min-width: 630px) {
    /*.swiper-slide {
    width: 50%;
  }*/
}

@media (min-width: 768px) {
    /*.swiper-slide {
    width: 33.333333%;
  }*/
    .swiper-slide.swiper-slide-next .slide-image, .swiper-slide.swiper-slide-prev .slide-image, .swiper-slide.swiper-slide-duplicate-next .slide-image, .swiper-slide.swiper-slide-duplicate-prev .slide-image {
        transform: scale3d(1, 1, 1);
    }
}

@media (min-width: 1024px) {
    /*.swiper-slide {
    width: 25%;
  }*/
}

.swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
}

    .swiper-pagination.swiper-pagination {
        bottom: 0;
    }

.swiper-pagination-bullet {
    background: tomato;
    width: 22px;
    height: 4px;
    border-radius: 0;
    transition: opacity 1s ease;
}

    .swiper-pagination-bullet.swiper-pagination-bullet.swiper-pagination-bullet {
        margin: 0;
    }

@media (min-width: 768px) {
    .swiper-pagination-bullet {
        width: 40px;
    }
}
.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.slide-image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale3d(1.3, 1.3, 1);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 1400ms ease;
}

.slide-content {
    padding: 0 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color:#000;
}

    .slide-content h4 {
        font-size: 25px;
        font-weight: 400;
        margin: 0 0 1rem;
        padding-top: 2.8rem;
        flex-grow: 0;
    }

    .slide-content p {
        display: flex;
        line-height: 1.8;
        margin-top: 0;
        font-size: 14px;
        flex-grow: 1;
    }

    .slide-content footer {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 2.8rem;
        font-size: 14px;
        color: #c2c0e0;
    }

    .slide-content a {
        color: tomato;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 3px solid currentColor;
        padding-bottom: 3px;
    }

    /*buttons not used but style (remmed out in form and script file)*/
    .slide-btns {
        width: 54px;
        height: 54px;
        /*background: 0 0;*/
        /*opacity was 40 before*/
        background: rgba(241, 235, 235, 0.80);
        border: 1px solid rgba(255, 255, 255, .2);
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
        border-radius: 50%;
        font-size: 16px;
        font-weight: 900;
    }

    .slide-btns.swiper-button-next:after, .slide-btns.swiper-button-prev:after {
        font-size: 16px;
        font-weight: 900;
        /*color: #fff;*/
        color: #000; /*Added*/
    }

    .slide-btns:hover {
        border: 1px solid #fff;
        background: #fff;
    }

    .slide-btns:hover:after {
        color: #232323;
    } 
