/*
.cb-slideshow,
.cb-slideshow:after {
   
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;

}*/
@media only screen and (min-width: 1025px) {
.home-page {
    height: 100%;
    overflow: hidden;
}
}

.home-page {
    height: 100%;
}

.content__item {
    background-color: #fff;
    display: block;
    height: 100%;
    left: /*0*/ 290px;
    opacity: 0;
	right:80px;
    perspective: 1000px;
    position: absolute;
    top: 0;
    transform: scale3d(0.3, 0.3, 1);
    transition-duration: 1s;
    transition-property: opacity, visibility, transform;
    transition-timing-function: ease;
    visibility: hidden;
    width: /*100%*/ calc(100% - 370px);
	z-index: -1;
}
.content__item.active {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    visibility: visible;
}
.home-carousel {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.home-carousel ul {
    left: 0;
    position: absolute;
    transition-duration: 1s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    width: 100%;
}
.home-carousel ul li {
    background-position: 50% 50%;
    background-size: cover;
    display: block;
    list-style: outside none none;
    position: relative;
}
.home-carousel ul li img {
    display: block;
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.home-carousel .left {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.home-carousel .left ul {
    top: 0;
}
.home-carousel .right {
    bottom: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: -50%;
    width: 100%;
    z-index: 2;
}
.home-carousel .right ul {
    bottom: 0;
    transform: translate3d(-50%, 0px, 0px);
}


@media only screen and (max-width: 1024px) {
	.content__item {
		left: /*0*/ 0px;
		right:0px;
		width: 100%;

	}
}

@media only screen and (max-width: 853px) {
	.content__item {
		top: /*0*/ 198px;
		bottom:0px;
		height:calc(100% - 198px) !important;
		width: 100%;

	}
	
	
}