a:focus-visible, a:focus {
	outline: none !important;
}

.productcard {
	width: 300px;
	height: 390px;
	background: white;
	margin: auto;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0;
	transform: scale(0.95);
	transition: box-shadow 0.5s, transform 0.5s;
}

.productcard:hover {
	transform: scale(1);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.productcard .productcontainer {
	width: 100%;
	height: 100%;
}

.productcard .productcontainer .petacaimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/004.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .ocoleimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/001.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .hondoimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/002.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .secoimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/seco.png") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .bright_fieldsimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/bright_fields.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .high_canyonimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/high_canyon.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .flat_ironimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/flat_iron.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .marsh_oakimage {
	height: 75%;
	width: 100%;
	background: url("../images/products/marsh_oak.jpg") no-repeat top center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}

.productcard .productcontainer .bottom {
	width: 100%;
	height: 25%;
	transition: transform 0.5s;
}

.productcard .productcontainer .bottom.clicked {
	transform: translateX(-50%);
}

.productcard .productcontainer .bottom h1 {
    font-family: Lato;
	color: #ffffff;
	font-size: 180%;
	text-align: left;
	margin: 0;
	padding: 0;
}

.productcard .productcontainer .bottom p {
    font-family: Lato;
	color: #ffffff;
	font-size: 80%;
	text-align: left;
	margin: 0;
	padding: 0;
}

.productcard .productcontainer .bottom .productinfo {
	height: 100%;
	width: 100%;
	background: #143a5b;
	position: relative;
	float: left;
}

.productcard .productcontainer .bottom .productinfo .details {
	padding: 23px 0 20px 20px;
	float: left;
	width: calc(70% - 40px);
}

.productcard .productcontainer .bottom .productinfo .buy {
	float: right;
	width: calc(30% - 2px);
	height: 100%;
	background: #143a5b;
	transition: background 0.5s;
	border-left: solid thin rgba(255, 255, 255, 0.25);
}

.productcard .productcontainer .bottom .productinfo .buy i {
	font-size: 200%;
	padding: 35px 30px 30px 30px;
	color: #ffffff;
	transition: transform 0.5s;
	cursor: pointer;
}

.productcard .productcontainer .bottom .productinfo .buy .shopicon {
	font-size: 200%;
	margin-top: 25px;
	color: #ffffff;
	transition: transform 0.5s;
	cursor: pointer;
}

.productcard .productcontainer .bottom .productinfo .buy:hover {
	background: #4683a8;
}

.productcard .productcontainer .bottom .productinfo .buy:focus-visible  {
	outline: none;
}

.productcard .productcontainer .bottom .productinfo .buy:hover i {
	transform: translateY(-5px);
	color: #ffffff;
}

.productcard .productcontainer .bottom .productinfo .buy:hover .shopicon {
	transform: translateY(-5px);
	color: #ffffff;
}

.productcard .inside {
	z-index: 9;
	background-color: rgba(0,0,0,0.5);
	width: 140px;
	height: 140px;
	position: absolute;
	top: -70px;
	right: -70px;
	border-radius: 0px 0px 200px 200px;
	transition: all 0.5s, border-radius 2s, top 1s;
	overflow: hidden;
}

.productcard .inside .icon {
	position: absolute;
	right: 85px;
	top: 85px;
	color: white;
	opacity: 1;
}

.productcard .inside:hover {
	width: 100%;
	right: 0;
	top: 0;
	border-radius: 0;
	height: 75%;
	display: flex;
	align-items: center;
}

.productcard .inside:hover .icon {
	opacity: 0;
	right: 15px;
	top: 15px;
}

.productcard .inside:hover .contents {
	opacity: 1;
	transform: scale(1);
	transform: translateY(0);
}

.productcard .inside .contents {
	padding: 0 10%;
	text-align: center;
	opacity: 0;
	transform: scale(0.5);
	transform: translateY(-200%);
	transition: opacity 0.2s, transform 0.8s;
}

.productcard .inside .contents h1 {
	color: #ffffff;
}

.productcard .inside .contents p {
	font-size: 90%;
	color: #ffffff;
}


@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px) {

.productcard .productcontainer .bottom h1 {
	font-size: 230%;
}

.productcard .productcontainer .bottom p {
	font-size: 90% !important;
}

}