

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body { font-family: sans-serif; }

.gallery {
  background: #fff;
}

.gallery-cell {
	border: 3px solid #fff;
    border-radius: 15px;
    width: 60%;
    height: 540px;
    counter-increment: gallery-cell;
    background: linear-gradient(to bottom, #ffffff 0%,#ffffff 42%,#ffffff 100%);
    box-shadow: 0px 9px 18px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 9px 18px rgb(0 0 0 / 15%);
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

.product_shot{
	
	height:240px;
	
}

.product_shot2{
	
	height:360px;
	
}

.product_name{
	
	font-size: 21px;
    color: #fff;
	
}
.product_button {
	box-shadow: 0px 10px 14px -7px #21312c;
    background: linear-gradient(to bottom, #226f57 5%, #134c3a 100%);
    background-color: #599bb3;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
    padding: 13px 32px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #616161;
}
.product_button:hover {
	color: #ffffff96;
	background: linear-gradient(to bottom, #226f57 5%, #1c5d48 100%);
    background-color: #226f57;
}
}
.product_button:active {
	position:relative;
	top:1px;
}


.share_text{
	
	color: #00563b;
	font-size: 24px;
    font-weight: 500;
	padding:6%;
	
}


@media (max-width: 480px) {
	
	.gallery-cell {
		height: 420px;
	}
	

}

