/********************
 * FEATURE CAROUSEL *
 ********************/
.carousel-container {
    position: relative;
}

#carousel {
    height: 420px;
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.carousel-image {
    width: 305px;
    height: 374px;
    background: #0E141B;
}
.carousel-image>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
}
.carousel-image p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    margin-top: 50px;
}
.carousel-feature {
    position: absolute;
    top: -1000px;
    left: -1000px;
    cursor: pointer;
    border-radius: 0px;
    opacity: 1 !important;
    box-shadow: 0px 0px 40px #225D5E;
/*    transition: all linear .1s*/
}
.carousel-feature.left {
    transform: rotate(-15deg)
}
.carousel-feature.right {
    transform: rotate(15deg)
}
.front, .back {
    -webkit-backface-visibility:hidden;
   -moz-backface-visibility:hidden;
    -ms-backface-visibility:hidden;
     -o-backface-visibility:hidden;
        backface-visibility:hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s;
    
}
.back {
    -webkit-transform:rotateY(180deg);
       -moz-transform:rotateY(180deg);
        -ms-transform:rotateY(180deg);
         -o-transform:rotateY(180deg);
            transform:rotateY(180deg);
    text-align: center;
    padding: 0 10%
}
.front-rotate {
    transform: rotateY(180deg);
}
.back-rotate {
    transform: rotateY(360deg);
}
#carousel-left {
    position: absolute;
    bottom: -5%;
    left: 40%;
    cursor: pointer;
    transform: rotate(180deg);
    z-index: 999;
    background: url(../img/icon/arr2.svg) center no-repeat;
    width: 11px;
    height: 19px;
}

#carousel-right {
    position: absolute;
    bottom: -5%;
    right: 40%;
    cursor: pointer;
    z-index: 999;
    background: url(../img/icon/arr2.svg) center no-repeat;
    width: 11px;
    height: 19px;
}
@media screen and (min-width:1400px) {
    
#carousel {
    height: 26em;
    margin-top: 1em;
}
.carousel-image {
    width: 20em;
    height: 25em;
}
.carousel-image p {
    font-size: .9em;
    margin-top: 4em;
}
#carousel-left {
    bottom: -9%;
    background: url(../img/icon/arr2.svg) center/cover no-repeat;
    width: .6em;
    height: 1.1em;
}

#carousel-right {
    bottom: -9%;
    background: url(../img/icon/arr2.svg) center/cover no-repeat;
    width: .6em;
    height: 1.1em;
}
    .front>img {
        width: 7em
    }
    .back {
        font-size: 1em
    }
}

@media screen and (max-width:768px) {
    .carousel-container {
    position: relative;
}

#carousel {
    height: 390px;
    width: 100%;
    position: relative;
    margin-top: 10px;
}
.carousel-feature {
    opacity: 1 !important;
    box-shadow: 0px 0px 20px #225D5E;
}

#carousel-left {
    bottom: 0%;
    background: url(../img/icon/arr2.svg) center/100% 100% no-repeat;
    width: 25px;
    height: 25px;
    left: 30%;
}
#carousel-right {
    bottom: 0%;
    background: url(../img/icon/arr2.svg) center/100% 100% no-repeat;
    width: 25px;
    height: 25px;
    right: 30%;
}
}