@keyframes moreInfoOpenedAnimation {
	0% { bottom:-2vw; }
	40% { bottom:-1.3vw; }
	100% { bottom:-2vw; }
	
}
.carusel {
    position: relative;
    display: block;
    width: 100%;
    height: 14.6525vw;
    background-color: transparent;
	z-index: 11;
}
.carusel h2 {
    position: absolute;
    color: #fff;
    font-size: 1.640vw;
    font-weight: bolder;
    margin: 0 4.425vw 0 0;
    padding: 0;
	top:-1vw;
}
.carusel .row {
    overflow: hidden;
    width: 100%;
    transition: 450ms all;
    
}
.carusel .spacer {
    position: relative;
    display: inline-block;
    width: 4.425vw;
}
.carusel .row__inner {
    transition: 450ms -webkit-transform;
    transition: 450ms transform;
    transition: 450ms transform, 450ms -webkit-transform;
    font-size: 0;
    white-space: nowrap;
    margin: 2.4vw 0;
    transition-delay: 350ms;
}
.carusel .tile {
    position: relative;
    display: inline-block;
    width: 16.927vw;
    height: 9.635vw;
    margin-right: 0.52vw;
    font-size: 20px;
    cursor: pointer;
    transition: 450ms all;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    border:0.1vw #000 solid;
    transition-delay: 350ms;
}


.carusel .tile__img {
	position: absolute;
    width: 16.927vw;
    height: 9.635vw;
    -o-object-fit: cover;
    object-fit: cover;
	display: none;
}
@media only screen and (max-width: 600px){
    .carusel {
        height: 33vw;
    }
    .carusel .tile {
        width:33vw;
        height: 33vw;
    }
    .carusel .tile__img{
        width:33vw;
        height: 33vw;
    }
    .carusel .spacer{
        width: 0vw !important; 
    }
    .subProject .projectInformation {
        width: 60vw;
    }
    .subProject .projectInformation p {
        font-size: 2.7vw;
        line-height: 2.8vw;
        margin-top: 0vw;
    }
    .carusel h2 {
        font-size: 5vw;    line-height: 0vw;
    }



}
.carusel .tile__img:first-child{
	display: block;
}
.carusel .niceShadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    transition: 350ms opacity;
    transition-delay: 350ms;
    opacity: 0.01;
    z-index: 2;
}
.niceShadowHover{
	opacity: 1;
}
.row__innerHover{
	-webkit-transform: translate3d(4.2315vw, 0, 0);
    transform: translate3d(4.2315vw, 0, 0);
}
.row_innertileHover{
	transition: 450ms all;
	-webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
}
.tileHoverButTile{
	transition: 450ms all;
	-webkit-transform: translate3d(-8.463vw, 0, 0);
    transform: translate3d(-8.463vw, 0, 0);
}
.tileHoverBorder{
	border-color: #fff !important;
}

.carusel .nextRow,.carusel .prevRow {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 100;
    width: 4vw;
    height: 9.65vw;
    margin: 0;
    margin-top: 2.4vw;
    opacity: 0.5;
    transition: 350ms opacity;
    cursor: pointer;
    display: none;
}
.carusel .prevRow {
    left: none;
    right: 0;
}
.carusel .nextRow:hover,.carusel .prevRow:hover {
    opacity: 1;
}
.carusel .nextRow img,.carusel .prevRow img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.carusel .moreInfo {
    position: absolute;
    width: 100%;
    height: 0vw;
    bottom: 5vw;
    text-align: center;
    z-index: 5;
    opacity: 0.01;
    transition: 450ms all;
    /*transition-delay: 350ms;*/
	
}
.carusel .moreInfo img {
    height: 100%;
    transition: 450ms all;
}
.moreInfoWithMoreInfoClosed{
	opacity: 1 !important;
    height: 1vw !important;
    bottom: 0.3vw !important;
	transition: 450ms all;
}
.carusel .moreInfoOpened {
	transition: 450ms all;
    opacity: 1;
	height: 1vw;
    bottom: -2vw;
    transform: rotate(180deg);
	cursor: default;
	animation: moreInfoOpenedAnimation 1s infinite;
	animation-delay: 2s;
}

.carusel .tileBorderEffect{
	
	border-color:#ff3300 !important;
}

.carusel .openedTile{
	position: relative;
    display: inline-block;
    width: 16.927vw;
    height: 9.635vw;
    font-size: 20px;
    cursor: pointer;
    transition: 450ms all;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    transition-delay: 350ms;
	/*border: 0.2vw solid #ff3300;*/
  box-shadow:0px 0px 0px 10px #ff3300 inset;
    opacity: 1;
}