
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,900;1,400&display=swap');



/* ┌──────────────────┐
   │      Portada     │
   └──────────────────┘ */

#logo {
	width: 200px;
}
#portada .row {
  align-items: stretch;
  padding: 0;
}
#portada .col-md-8 {
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#portada h1 {
	color: #C3002C;
	font-size: 55px;
	font-family: Montserrat;
	font-weight: 400;
}
#portada h1>strong {
	text-transform: uppercase;
	font-weight: 900;
}

#portada {
	position: relative;
}
#portada::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	filter: grayscale(100%) blur(3px) opacity(.75);
}





/* ┌──────────────────┐
   │    FORMULARI     │
   └──────────────────┘ */

.form-container {
	padding: 20px 30px;
	color: #fff;
	background-color: #c3002c;
}

.form-container * {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

.form-container p {
	font-size: 14pt;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.form-container form label {
	font-size: 10pt;
	margin-bottom: 10px;
	display: contents;
}

.form-container form input[type=checkbox] label {
	font-size: 8pt;
}

.form-container input, .form-container select {
	color: #444;
	font-size: 9pt;
	height: 32px !important;
	border-radius: 2px;
	width: 100%;
	border: none;
}

.form-container input[type=checkbox], .form-container input[type=radio] {
    width: 15px;
    margin-right: 5px;
	height: 15px !important;
}

.form-container input[type=checkbox] + label, .form-container input[type=radio] + label {
    display: contents;
}

.form-container a {
	text-decoration: underline;
}

.form-container input[type=submit] {
	margin-top: 25px;
	width: 100%;
	height: 35px !important;
	background: #fff;
	font-weight: 600;
	text-transform: uppercase;
	border-style: none;
}

.form-container input[type=checkbox] {
	width: 15px;
	height: 15px !important;
	margin-right: 5px;
}

option {
	color: #444 !important;
}





/* ┌──────────────────┐
   │      Cartes      │
   └──────────────────┘ */

#productes {
	margin-top: 50px;
}
#productes .container {
	display: grid;
	grid-template-columns: auto auto auto;
	column-gap: 40px;
	row-gap: 15px;
}
div.product-card h3 {
	font-weight: 700;
	font-style: normal;
	font-family: Montserrat;
	font-size: 16px;
	color: #c3002c;
	margin: 10px 0;
}
div.product-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}
div.product-card hr {
	margin: 0;
	border-color: black;
	border-style: dashed !important;
}
div.product-card p {
	margin: 5px 0;
	font-size: 10pt;
}





/* ┌──────────────────┐
   │        ...       │
   └──────────────────┘ */

#prefooter .container {
	margin-top: 50px;
	border-top: 1px solid #CCC;
	color: #444341;
}
#footer ul {
	list-style: none
}
#footer p, #footer li {
	text-align: center;
}
#footer li {
	font-size: 8pt;
	list-style: none
}





/* ┌──────────────────┐
   │    Responsive    │
   └──────────────────┘ */

@media (max-width: 990px) {
	#productes .container {
		grid-template-columns: auto auto;
	}
}
@media (max-width: 720px) {
	#productes .container {
		grid-template-columns: auto;
	}
}
