/* ------------------------------
company stack of pictures
------------------------------ */
.stack-wrapper {
	width: 40vw;
	margin: 0 auto;
}

.stack-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.stack-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

#myBtnStack {
    //display:block;
    width:30px;
    height:30px;
    border-radius: 50%;
	padding: 0;
	border: none;
	background: var(--orange);
	color: var(--grayverylight);
    text-align:center;
    text-decoration:none;
    cursor: pointer;
}

/* ------------------------------
devices
------------------------------ */
@media only screen and (max-width: 700px) { 
	.stack-wrapper {
		width: 70vw;
	}
}






