@charset "utf-8";
/* CSS Document */

.card-product {
	transition: all 600ms ease;
	display: flex;
	position: relative;
	overflow: hidden;
	margin-top: 20px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 30px;
	border-radius: 10px;
	padding-bottom: 30px;
}

.card-product_insert {
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 130px; /* determines gap between info and bg left border */
  justify-content: space-around;
}
	
.card-product_insert img {
  transition: all 0.3s ease-in-out;
  width: 150px;
	min-width: 150px; /* needed - otherwise squisjes */
  height: 150px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
	transform-origin: center left;
}	

.card-product:hover .card-product_insert img {
  transform: scale(1.04);
}	

@media screen and (max-width: 700px) {
	.card-product {
		height: auto;
		width: auto;
		flex-direction: column;
		border-radius: 2px;
		/*margin: 25px 15px;*/
	}
	.card-product a {
		font-size: 1rem;
		color: #FFFA;
		background: #8855DD;
	}
	.card-product a:hover {
		color: #FFF;
	}
}

	
@media screen and (max-width: 700px) {
  .card-product_insert {
    width: 100%;
    height: 100px;
    justify-content: space-around;
    align-items: center;
  }
  .card-product_insert img {
    margin-top: 100px;
  }	
} /* END MQ */
	
	
@media screen and (max-width: 900px) { /* 700 - 900 */
  /*.card-product_insert img {
    min-width: 140px;
    min-height: 140px;
  }*/
} /* END MQ */
	
@media screen and (max-width: 700px) {

} /* END MQ */

.card-product_bg {
	transition: all 600ms ease;
	border-radius: 2px;
	height: 100%;
	/*width: calc(100% - 75px);*/
	width: 100%;
	position: absolute;
	z-index: 0;
	pointer-events: none;
	left: 75px;
	background-size: cover;
	background-position: right;
	
}
	.product_bg-1 {
	background-image: url(../images/products/bg-1.jpg);
	}
	.product_bg-2 {
	background-image: url(../images/products/bg-2.jpg);
	}
	.product_bg-3 {
	background-image: url(../images/products/bg-3.jpg);
	}



.card-product_info-wrapper {
	transition: all 600ms ease;
	border-radius: 10px;
	z-index: 0;
	position: relative;
	/* [disabled]display: flex; */
	flex-direction: column;
	box-shadow: 0 1px 1rem rgba(10, 10, 25, 0.3);
	border: 1px solid rgba(255,255,255,0.50);
	background-color: rgba(0,58,54,0.84);
}
.card-product:hover .card-product_info-wrapper {
	border: 1px solid rgba(255,255,255,1);
	background-color: rgba(0,58,54,1);
}

	.card-product_details {
	padding-bottom: 40px;
	}
	.card-product_details p {
	color: #fff;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1px!important;
	padding-bottom: 1px!important;
	}

	
@media screen and (max-width: 700px) {
  .card-product_info-wrapper {
	margin: 25px 15px 30px 15px;
	padding: 60px 25px 20px;
	width: auto;
	height: auto;
	flex: 1 0 auto;
	background-color: rgba(32,61,33,1.00);
  }
  .card-product_bg {
    left: 0;
    top: 0;
    height: 200px;
    width: 100%;
    border-radius: 0;
  }	
  .card-product_buttons {
    text-align: center;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-bottom: 10px;
  }

} /* END MQ */



.card-product_buttons a {
	color: rgba(0,0,0,1.00);
	display: inline-block;
	border-radius: 4px;
	padding-top: 8px;
	padding-right: 18px;
	padding-left: 18px;
	padding-bottom: 8px;
	line-height: 1;
	margin-right: 4px;
	margin-left: 4px;
	margin-bottom: 6px;
	font-size: 1rem;
	transition: .4s;
	/* [disabled]border: 1px solid #fff; */
	background-color: #BD8E06;
	text-transform: uppercase;
	font-weight: bolder;
}
.card-product_buttons a:hover {
	background-color: #6e5800;
	color: #fff;
}	


.card-product_title {
	margin-bottom: 4px;
	flex: 0 0 auto;
}
.card-product_title h3 {
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.2;
	margin-bottom: 16px!important;
}
.card-product_title h4 {
	color: #D5D5D5;
	font-size: 1.2rem;
	line-height: 1.5;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 14px;
	/* [disabled]font-style: italic; */
	/* [disabled]background-color: #ccc; */
	text-transform: none;
	letter-spacing: 0px;
}
	

	
	@media screen and (min-width: 700px) {	
		.card-product_info-wrapper {
	padding-bottom: 15px;
	padding-top: 30px;
	padding-left: 68px;
	padding-right: 30px;
	width: 650px;
	margin: 25px 200px 25px -25px;			
		}
		.card-product_title {
		  margin-bottom: 4px;
		}
		.card-product_title h3 {
	font-size: 1.7rem;
	line-height: 1.2;
		}
		.card-product_title h4 {
	font-size: 1.2rem;
	line-height: 1.2;
		}	
		.card-product_buttons {
			position: absolute;
			/* [disabled]bottom: -15px; */
			right: 10px;
			overflow: hidden;
			text-align: center;
		}		
		
	}
