:root{
	--main-color: #b38a4b !important;
	--creme: #e2d8c3 !important;
	--gold: #a1853e !important;
	--white: white;
	--shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.2);
	--font: 'Open Sans Condensed', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	box-sizing: border-box;
}

html, body {
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-y: auto;
}

button{
	outline: none;
	background: none;
	border: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

li, ul {
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0px;
}

hr {
	border-top: #929292 solid 1px;
	border-bottom: none;
	margin: 0px;
}

@-moz-document url-prefix() {
	hr {
		float: left;
		width: 100%;
	}
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

/* general styling used everywhere */

h1 {
	width: 100%;
	font-weight: bold;
	font-size: 35px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 25px;
	font-family: var(--font);
}

h2 {
	float: left;
	width: 100%;
	font-weight: bold;
	text-transform: uppercase;
	color: #070707;
	line-height: 60px;
	font-size: 50px;
	font-family: var(--font);
}

h3 {
	float: left;
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #070707;
	text-transform: uppercase;
	font-size: 24px;
	font-family: var(--font);
}

h4 {
	float: left;
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #070707;
	text-transform: uppercase;
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 45px;
	font-family: var(--font);
}

em{
	font-style: italic !important;
}

strong{
	font-family: sans-serif !important;
	font-weight: bold !important;
}

/* General styling */
.web_page_content{
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 50px;
}

.web_page_title{
	width: 100%;
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 20px;
}

.web_page_content > p{
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 16px;
	text-align: left;
}

article{
	width: 100%;
	margin-top: 75px;
	margin-bottom: 0;
}

@media screen and (max-width: 768px){
	article{
		width: 100%;
		margin-top: 50px;
	}
}

.grid_3{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.grid_4{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .grid_3 {
		grid-template-columns: 1fr;
  }
  
  .grid_4 {
  		grid-template-columns: repeat(2, 1fr);	
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid_3 {
		grid-template-columns: repeat(2, 1fr);
  }
  
  .grid_4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* reset for all containers with navigation padding */
@media screen and (max-width: 768px){
	.services_container, .products, .custom_grid_content{
		padding-top: 0 !important;
	}
}