

.slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slItems {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.slItem {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
    backface-visibility: hidden;
}


.slText {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1127px;
    min-width: auto;
    margin: 0 auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: none;
}

.slText h1 {
   font-family: "Poppins", sans-serif;
   font-weight: 300;
    font-size: 65px;
    font-weight: normal;
    line-height: 62px;
    color: #0475c2;
}
.slText h1 span {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
	color: #55ab26;
}
.slText h2 {
   font-family: "Poppins", sans-serif;
  font-weight: 500;
    font-size: 65px;
    line-height: 65px;
    color: #55ab26;
}

.slText p {
   font-family: "Poppins", sans-serif;
  font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    margin-top: 17px;
    margin-bottom: 26px;
}

.slItem.active .slText {
    display: block;
}

.slider [class*="ctrl"] {
    position: absolute;
    top: 50%;
    color: transparent;
    width: 42px;
    height: 63px;
    margin-top: -42.5px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.slideInLeft{position:relative;-webkit-animation:animateleft 0.4s;animation:animateleft 0.4s}
@-webkit-keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.slideInRight{position:relative;-webkit-animation:animateright 0.4s;animation:animateright 0.4s}
@-webkit-keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}

.ctrlNext {
    right: 0px;
    background: url(../images/Arrow_Right.png) no-repeat;
}

.ctrlNext:hover {
    background: url(../images/Arrow_Righth.png) no-repeat;
}

.ctrlPrev {
    left: 0px;
    background: url(../images/Arrow_Left.png) no-repeat;
}

.ctrlPrev:hover {
    background: url(../images/Arrow_Lefth.png) no-repeat;
}

.slItem.active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    background-attachment: fixed;
}

.next, .prev {
    transition: transform 0.7s ease-in-out;
    -webkit-transition: -webkit-transform 0.7s ease-in-out;
    -moz-transition: -moz-transform 0.7s ease-in-out;
    -o-transition: -o-transform 0.7s ease-in-out;
    -ms-transition: -ms-transform 0.7s ease-in-out;
}

.slItem.nextItem {
    opacity: 1;
    visibility: visible;
    transform: translate3d(100%,0, 0);
    -webkit-transform: translate3d(100%,0,0);
    -moz-transform: translate3d(100%,0,0);
    -o-transform: translate3d(100%,0,0);
    -ms-transform: translate3d(100%,0,0);
}

.slItem.nextItem.next, .slItem.prevItem.prev {
    transform: translate3d(0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
}

.slItem.active.next {
    transform: translate3d(-100%,0,0);
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    -o-transform: translate3d(-100%,0,0);
    -ms-transform: translate3d(-100%,0,0);
}

.slItem.prevItem {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-100%,0,0);
    -webkit-transform: translate3d(-100%,0,0);
    -moz-transform: translate3d(-100%,0,0);
    -o-transform: translate3d(-100%,0,0);
    -ms-transform: translate3d(-100%,0,0);
}

.slItem.active.prev {
    transform: translate3d(100%,0,0);
    -webkit-transform: translate3d(100%,0,0);
    -moz-transform: translate3d(100%,0,0);
    -o-transform: translate3d(100%,0,0);
    -ms-transform: translate3d(100%,0,0);
}

.slDots {
    position: absolute;
    bottom: 97px;
    left: 0;
    width: 100%;
    font-size: 0;
    text-align: center;
    z-index: 2;
}

.slDotsSingle {
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: #0475c2;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slDotsSingle:hover,
.slDotsSingle.active {
    background: #55ab26;
}

@media only screen and (min-width: 1001px) and (max-width: 1199px) {
    .slText {
        padding-left: 60px;
    }
}

@media (max-width: 1024px) {
}

@media (max-width: 1000px) {

    .slItem {
        background-position: right center;
    }
	.slText {
		padding: 0 25px;
	}
    .slItem.active {
        background-attachment: inherit;
    }
}

@media only screen and (max-width: 1000px) {
    .slText {
        text-align: center;
    }

    .slText h1 {
        font-size: 35px;
        line-height: 37px;
    }

    .slText h2 {
        font-size: 35px;
        line-height: 37px;
    }

    .slText p {
        font-size: 16px;
        line-height: 23px;
        margin-top: 6px;
        margin-bottom: 20px;
    }

    .slider [class*="ctrl"] {
        width: 22px;
        height: 43px;
    }

    .ctrlNext,
    .ctrlPrev {
        background-size: 100%!important;
    }

    .slItem {
        background-position-x: 84%; 
    }

    .slDots {
        bottom: 50px;
    }
}

