﻿* {
    box-sizing: border-box
}

.bannerSlide-container {
    width:auto;
    margin: auto;
    margin-top:70px;
}

.bannerSlide {
    display: none;
}

.fade-banner {
    -webkit-animation-name: fade-banner;
    -webkit-animation-duration: 2.5s;
    animation-name: fade-banner;
    animation-duration: 2.5s;
}

@-webkit-keyframes fade-banner {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade-banner {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width: 960px){
    .bannerSlide-container{
        margin-top:60px;
    }
}

@media screen and (max-width: 640px) {
    .bannerSlide-container {
        margin-top: 39px;
    }
    #responsiveBanner .btn-more {
        margin: 0em 0em 0em -2.255em;
        width: 4.563em;
    }
}

@media screen and (max-width: 370px) {
    .bannerSlide-container{
        margin-top:39px;
    }
}
