.vtc-wrapper{
display:flex;
gap:20px;
max-width:1600px;
margin:auto;
/* align-items:center; */
flex-wrap:wrap;
}

.vtc-left{ flex:1; min-width:280px; }

.vtc-right{
flex:1;
min-width:280px;
height:420px;
overflow:hidden;
}

.vtc-track{
transition:transform 0.6s ease;
}

.vtc-card{
position:relative;
margin-bottom:35px;
overflow:visible;
}

.vtc-top{
position:relative;
padding-left:90px;
}


/* ICON */

.vtc-card{
    position:relative;
}

.vtc-icon{
    position:absolute;
    left:-40px;
    top:-40px;
    z-index:2; /* only above card content */
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:12px;
}

/* .vtc-icon{
position:absolute;
left:-40px;
top:-40px;
z-index:9999;

} */


/* QUOTE */

.vtc-quote{
position:absolute;
bottom:15px;
right:20px;
opacity:0.2;
}


/* ARROWS */

.vtc-buttons{
display:flex;
gap:10px;
margin-top:20px;
flex-wrap:wrap;
}

.vtc-buttons button{
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
border:none;
outline:none;
padding:0;
margin:0;
}


.vtc-buttons button i,
.vtc-buttons button svg{
display:block;
}


/* MOBILE */

@media(max-width:768px){

.vtc-wrapper{
flex-direction:column;
}

.vtc-right{
height:auto;
}

}