.mslider {
    /* background-color: red; */
    margin: 72px 0 0 0;
    text-align: center;
}

.mslider .mcontainer {
    /* background-color: blue; */
    height: 45vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* border-radius: 15px; */
    display: inline-block;
}

/*@media (max-width: 988px and min-width: 688px) {*/
/*  .mslider .mcontainer {*/
    /*transform: translateY(-20%);*/
/*    height: 60vh;*/
/*  }*/
/*}*/

@media (max-width: 688px) {
  .mslider .mcontainer {
    height: 30vh;
  }
}

@media (max-width: 328px) {
  .mslider .mcontainer {
    height: 17vh;
  }
}

.mslider .mcontainer .btn {
    position: absolute;
    top: 39%;
    display: inline-block;
    z-index: 1;
    width: 23px;
    height: 26px;
    border: 3px solid #ff0000;
    transform: scaleX(0.9) rotate(45deg);
    margin: 25px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.mslider .mcontainer .btn.next {
    left: 10px;
    float: left;
    border-right: 0;
    border-top: 0;
}

.mslider .mcontainer .btn.back {
    right: 10px;
    float: right;
    border-bottom: 0;
    border-left: 0;
}

.mslider .mcontainer .mdots {
    position: absolute;
    z-index: 1;
    bottom: 0;
    text-align: center;
    left: 0;
    right: 0;
    border-bottom: solid 1px black;
    background-color: #fbe9b2a8;
}

.mslider .mcontainer .mdots .mdot {
    /* margin: 5px; */
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: rgb(125, 230, 87);
    cursor: pointer;
    margin: 0 9px;
    border-radius: 0%;
    border: solid 1px white;
}


.mslider .mcontainer .mdots .mdot.active {
    transform: scale(1.2);
    background-color: rgb(24, 92, 0);
}



.mslider .mcontainer .mroller {
    /* background-color: green; */
    height: inherit;
    display: flex;
    width: 100%;
    position: absolute;
    transition: all 1s ease;
}

.mslider .mcontainer .mroller .mimg {
    /* background-color: grey; */
    height: inherit;
    width: 100%;
    flex-shrink: 0;
}