/*----------------------------------------------------------------
					Start Section Portfolio
----------------------------------------------------------------*/
.photorotate-one {
    position: relative;
    background: transparent;
    height:auto;
}
.photorotate-one .owl-carousel {
    position: relative;
}
.photorotate-one .owl-nav{
    position: absolute;
    top: 46%;
    width: 100%;
    z-index: 999;
    transform: translateY(-50%);
}
.photorotate-one .owl-nav div {
    width: 40px;
    height: 40px;
    color: #ffffff;
    text-align: center;
    line-height: 42px;
    font-size: 20px;
    background: rgba(129, 118, 118, 0.78);
    border-radius: 2px;
    z-index: 999;

}

.photorotate-one .owl-nav div:hover {
    background: #892f1d;
    color: #fff;
}
.photorotate-one .owl-nav div.owl-prev {
    left: 10px;
    position: absolute;
    transition: all 0.4s ease 0s;
}
.photorotate-one .owl-nav div.owl-next {
    right: 10px;
    position: absolute;
    transition: all 0.4s ease 0s;
}


.case-item {
    position: relative;
}
.img-case {
    position: relative;
    overflow: hidden;
}
.photorotate-one .owl-carousel .owl-item .img-case img {
    display: block;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 1000px !important;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
    
}
.img-case img {
    width: 1000px !important;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}
.photorotate-one .img-case:hover img {
    opacity: 0.9;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.case-item .img-case .overlay-case {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    top: 10px;
    z-index: 25;
    opacity: 0;
    display: block;
    background: rgba(51, 51, 51, 0.7);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
}
.case-item .img-case:hover .overlay-case {
     opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.case-item .img-case .overlay-case .inner-overlay {
    position: absolute;
    left: 0px;
    top: 30px;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 1;
    padding: 10px 10px;
    vertical-align: middle;
    opacity: 0;
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}
.case-item .img-case:hover .overlay-case .inner-overlay {
    opacity: 1;
    top: 0;
    transition-delay: 0.5s;
}
.case-item .img-case .overlay-case .inner-overlay .case-study-text {
    position: relative;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.case-study-text {
    
}
.case-study-text .tag-case {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}
.case-study-text h5 {
    color: #fff;
    font-size: 18px;
    text-transform: none;
    font-weight: 600;
}
.case-study-text .line-case {
    width: 50px;
    height: 3px;
    margin: 20px auto 25px;
    background: #892f1d;
}