.mc-hide-scrolls{
    overflow:hidden;
}

#img-background div.mc-image{
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat:no-repeat;
    background-attachment:inherit;
    background-color: rgb(246 244 239) !important;
    position: relative;
}
.mc-old-browser .mc-image {
    overflow:hidden;
}

#img-background div.mc-image::after{
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(255,255,255,0) 53%);
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Set for Maximage */

#img-background{
    position:relative;
    width: calc(100%) !important;
    height:100%;
    overflow:hidden;
    background: #939598;
}
#img-background .mc-image{
    width: 100% !important;
}
.slide-prev-button,
.slide-next-button{
    width: 35px;
    height: 40px;
    position: fixed;;
    bottom: 15px;
    margin: 0;
    z-index: 950;
    opacity: 1;
    transition: all 0.3s;
    overflow: hidden;
    cursor: pointer;
    background: none;
    color: #fff !important;
    text-align: center;
    background-color: #88774e;
    border-radius: 5px;
}
.slide-prev-button svg,
.slide-next-button svg{
    width: 35px;
    height: 35px;
    position: relative;
    top: -2px;
}
.slide-prev-button{
    right: 367px;
}
.slide-next-button{
    right: 330px;
}
.slide-prev-button:hover,
.slide-next-button:hover{
    opacity: 1;
    background-color: #5e5236;
}
.header-overlay .slide-prev-button span:hover,
.header-overlay .slide-next-button span:hover{
    color: #fff !important;
}
.header-overlay .slide-prev-button span:active,
.header-overlay .slide-next-button span:active{
    color: #fff !important;
}

/*I want to style my pager*/
#cycle-nav {
    width: fit-content;
    height: 8px;
    padding: 0 0 0 30px;
    position: fixed;
    right: 405px;
    bottom: 50px;
    z-index: 920 !important;
}
#cycle-nav ul {
    list-style-type:none;
    width: fit-content;
}
#cycle-nav ul li {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #f6f4ef;
    margin: 0 7px 0 0;
    background: none;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}
#cycle-nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
    background: none;
}
#cycle-nav ul li.activeSlide {
    background: #dfddd5;
}

@media (max-width: 600px) {
    #cycle-nav {
        bottom: 10px;
        left: 10px;
    }
    .slide-prev-button,
    .slide-next-button{
        bottom: 5px;
    }
}