.SliderContainer {
    position: relative;
    box-sizing: border-box;
    display: block;

    width: 100%;
    /*height: 100%;*/
    height: 125px!important;


    /*border:1px solid red;*/

    /*min-width: 1400px;*/
    /*height: 350px;*/


    /*border-top: 1px solid black;*/
    /*border-bottom: 1px solid black;*/

    /*overflow: hidden;*/
}

.SliderFrame {
    position: absolute;
    opacity: 0;
    font-family: "Poppins";
    top: 50%;
    left:0px;
    margin-top: -50px;
    color: #01628d;
    font-weight: 700;
    font-size: 38px;
    width: 100%;
    text-align: center;
    /*text-shadow: 1px 1px 3px #fff;*/
}

.SliderCurrentBar {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0px;

    width: 0%;
    height: 4px;
    background-color: rgba(231, 227, 228, 0.44);
}

.SliderViewArea {
    /*border-top: 1px solid black;*/
    position: relative;
    box-sizing: border-box;
    display: block;

    width: auto;
    height: 100%;

    white-space: nowrap;

    /*border: 1px dotted black;*/
}

.SliderFrameContainer {
    position: relative;
    box-sizing: border-box;
    display: inline-block;

    width: auto;
    height: 100%;

    float: left;

    /*border: 1px solid greenyellow;*/
}

.SliderFrameContainerClearer {
    clear: both;
}

.SliderFrameImage {
    position: absolute;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;

    /*border:1px solid red;*/
}

.SliderFrameText {
    position: absolute;
    box-sizing: border-box;
    display: block;

    left: 20%;
    bottom: 20%;

    width: auto;
    height: auto;

    /*border:1px solid black;*/
}






@media (min-width: 890px) and (max-width: 1199px) {
    .SliderFrame {
        font-size: 34px;
    }
}

@media (min-width: 768px) and (max-width: 890px) {
    .SliderFrame {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .SliderFrame {
        font-size: 24px;
    }
}