
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	/*background-color: #cccccc;*/
}

body {
	background-image: url("../assets/bkg.png");
	background-size: 80px 80px;
	height: 100%;
	font-family: Montserrat-Regular, sans-serif;
	font-weight: 400;
}


/* [ GENERAL ] */

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}

.allcaps {
	text-transform: uppercase;
}

.crop.soft {
	border-radius: 20px;
}

.crop {
	overflow: hidden;
}

hr.bottom {
	height: 60px;
	background-image: url("../assets/hr.png") ;
    background-position: 50% -50%;
	background-repeat: no-repeat;
	background-size: 30px;
	border:none;
    border-top: 2px dashed #666;
	margin: 5px;
}

hr.top {
	height: 60px;
	background-image: url("../assets/hr.png") ;
    background-position: 50% 150%;
	background-repeat: no-repeat;
	background-size: 30px;
	border:none;
    border-bottom: 2px dashed #666;
	margin: 5px;
}


/* [ INPUTS ] */

input  {
	outline: none;
	border: none;
}

input[type=text] {
	display: block;
	background-color: #eee;

	padding: 5px;
	width: 95%;
	margin: auto;
	border-radius: 8px;
}


/* [ BUTTONS] */

.btn {
	text-align: center;
	color: #fff;
	display: block;
	background-color: #ff7b00;
	padding: 10px 20px 10px 20px;
	font-weight: 700;
	margin: auto;
	transition: 0.5s;
}

.btn.flat {
	transform: scale(0.9,0.9);
}

.btn.flat:hover {
	transform: scale(1,1);
}

.btn.pressable {
	margin-top: 10px;
	border-radius: 10px;
	border-bottom: 4px solid #d0671c;
}

.btn.pressable:hover {
	background-color: #ff8f26;
	border-bottom: 6px solid #ff7b00;
	transform: translate(0px, -2px);
	-webkit-transform: translate(0px, -2px);
}

.btn.pressable:active {
	transform: translate(0px, 4px);
	-webkit-transform: translate(0px, 4px);
	background-color: #ffa34d;
	border-bottom: 0px;
}



/* [ LINKS ] */

a {
	color: #ff7b00;
	text-decoration: none;
	outline: none !important;
	transition: 0.3s;
}

a:hover {
	color: #e65540;
	font-weight: 900;
}

/* [ SECTIONS ] */

.section {
	width: 100%;
	padding-top: 20px;
	margin-bottom: 50px;
}

.white_bg {
	background-color: white;
}

.section .vertical_line {
	display: inline-block;
	height: 50%;
	width: 1px;
	background-color: #aaa;
	margin-top: 1%;
}

.section .third, .section .fourth, .section .half, .section .fourthx3 {
	margin: 10px;
	display: inline-block;
	vertical-align: top;
	text-align: center;

}

.section .half {
	width: 46%;
}

.section .third {
	width: 31%;
}

.section .fourthx3 {
	width: 73%;
}

.section .fourth {
	width: 23%;
}

.section .third *, .section .fourth * {
	width: 100%;
}

/* [ GALLERY ] */

.gallery .pic {
	margin: 10px;
}

.gallery img {
	transition: 0.5s;
}

.gallery img:hover {
	transform: scale(1.3,1.3);
}

.gallery .btn.inner {
	width: 50%;
	margin:auto;
	border-radius: 20px;
	padding-bottom: 80px;
	transform: translate(0%, -50%);
}

.gallery .btn.inner:hover {
	transform: translate(0%, -55%);
	font-size: 20px;
}

/* [ PRODUCT CARD ] */

.card {
	margin: 10px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	width: 23%;
	border: 1px dashed;
	padding: 5px;
	background-color: white;
	overflow: hidden;
}

.card .img {
	margin-bottom: 10px;
	overflow: hidden;
}

.card img {

	transform: translate(-35%,-50%) scale(0.6,0.6);
}

.card .details {
	height: 100px;
	overflow:hidden;
	margin-bottom: 10px;
}
.card .btn {
    bottom: 30px;
}
