/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Oswald:wght@200;300;400;500;600;700&display=swap');




html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*Emd of css reset*/

html{
background-color: black;
}
.desktop{
    display: block;
    background:linear-gradient(180deg, #28190e, black);
}
.mobile{
    display: none;
}
.headerFix{
    display: flex;
	align-items: center;
    flex-wrap: nowrap;
}
h1{
    font-family: "oswald";
    color: rgb(237, 125, 58);
    font-size: 2.5em;
}
.logo {
	max-width:3em;
	padding: 7px 2px;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
ul{
	display:flex;
}
li a{
    text-decoration: none; 
    color:rgb(218, 218, 218);
    font-family: 'nunito';
    margin:0 15px;
    transition: color 0.5s;
	position: relative;
	font-size: 1.5em;
}
li a:hover{
    color:white;
	cursor: pointer;;
}
li a::before{
	content:'';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(237, 125, 58);
	height: 2px;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s ease;
}
li a:hover::before{
	transform: scaleX(1);
}


.hiddenL{
	opacity: 0;
	filter:blur(2px);
	transform: translateX(-25%);
}
.hiddenR{
	opacity: 0;
	filter:blur(2px);
	transform: translateX(25%);
}
.show{
	filter:blur(0px);
	transform: translateX(0);
	opacity: 1;
	transition:all 2s;
}

.hero{
	display: block;
    width: 80%;
	margin-left: auto;
    filter: saturate(1.5);
	object-fit: cover;
	height: 100%;
}
.heroText{
    font-size:5em;
    color: white;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    text-shadow: 0 0 18px black;
}
.centered{
	width: 30%; 
	position: absolute;
	top:30%;
	left:3%;
}
.button{
	border: solid 1px #453224;
	background-color: #453224;
	width: min-content;
	white-space: nowrap; /*THE ERROR MESSAGE HERE IS BECAUSE THE VALIDATOR IS WRONG!*/
	padding:7px;
	border-radius: 5px;
	margin-top: 20px;
	color: rgb(237, 125, 58);
}
.button a{
	text-decoration: none;
	font-family: "Oswald", Arial, Helvetica, sans-serif;
	font-size: 2.5em;
	color: white;
}
.button:hover{
	cursor: pointer;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.txt{
	font-family: "nunito", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.6em;
	color:white;
	padding: 10px;
	line-height: 1.7em;
}
.circle{
	border-radius: 100%;
	max-width: 250px;
}
.flex{
	display: flex;
	align-items: center;
	margin: 50px 300px;
}
h3{
	color: white;
	font-size: 2em;
	padding: 0 10px;
	font-family: 'oswald', Arial, Helvetica, sans-serif;
}
.h3{
	color: white;
	font-size: 2em;
	padding: 0 10px;
	font-family: 'oswald', Arial, Helvetica, sans-serif;
}
.footer{
	background-color: #252525;
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*Modal stuff and such*/
.myImg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	width:100%;
	max-width:300px;
	margin:auto;
}
.myImg2 {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	width:100%;
	max-width:150px;
	margin:auto;
}
.grid{
	display: grid;
	grid-template-columns: 2fr 1fr 2fr;
	grid-template-rows: 1fr 1fr 1fr;
	margin: 10px 150px;
	text-align: center;
}
/*Contact Form*/
.fullSize{
	background-color: #ffffff;
	border: 1px solid #d3d3d3;
	padding:2px;
	height:2em;
	font-size: 1em;
	line-height: 1em;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}
.textArea{
	background-color: #ffffff;
	border: 1px solid #d3d3d3;
	padding:2px;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	resize: none;
	font-size: 1em;
	line-height: 1em;
	height:125px;
	font-family: 'nunito', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.padding{
	padding:12px 25px;
}
.required{
	color:red;
}
#address{
	display: none;
}
.buttonCustom{
	border: 0cm;
	border-radius: 25px;
	background-color: #1c1c1c;
	color: whitesmoke;
	padding:17px;
	font-size: 1.75em;
	line-height: 1.75em;
	margin:25px;
	cursor: pointer;
}

.empty{
	display: none;
}

@media  screen and (max-width:1200px) {
	body{
		font-size:0.7em
	}
	.flex{
		margin: 50px 200px;
	}
	
}  
@media  screen and (max-width:735px) {
	body{
		font-size:0.6em
	}
	.flex{
		display: flex;
		align-items: center;
		margin: 50px 100px;
	}
	.myImg2{
		max-width: 200px;
	}
} 
@media screen and (max-width:641px){
	.flex{
		margin: 25px;
		flex-direction: column;
	}
	.circle{
		max-width: 250px;
	}
	body{
		font-size:1em
	}
    .desktop{
        display: none;
    }
    .mobile{
		display: block;
		background:linear-gradient(180deg, #28190e, black);
    }
	.hamburger{
		display: block;
		font-size: 3em;
		color: #ffffff;
		content: '';
	}
	.mainMenu {
		height: 100%;
		position: fixed;
		width: 0;
		top: 0;
		left: 0;
		background-color: rgba(0,0,0,0.7);
		backdrop-filter: blur(10px);
        white-space: nowrap;/*THE ERROR MESSAGE HERE IS BECAUSE THE VALIDATOR IS WRONG!*/
		display: flex;
		flex-direction: column;
		overflow-x: hidden;
		transition: 0.5s;
		font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
		z-index: 3;
	}

	.mainMenu a {
		text-decoration: none;
		font-size: 2em;
		color: #ffffff;
		display: block;
		width:min-content;
		padding: 10px;
	}
	.closer{
		font-size: 1000em;
	}
	.modal-content {
		width: 100%;
	}
	.hero{
		width: 100%;
	}
	.heroText{
		font-size:5em;
		color: white;
		font-family: "Oswald", Arial, Helvetica, sans-serif;
		text-shadow: 0 0 18px black;
		text-align: center;
	}
	li a::before{
		height:0;
	}
	.grid{
		margin:10px 50px;
	}
	.myImg2{
		max-width: 100px;
	}
}
@media screen and (max-width:400px){
	.circle{
		max-width: 100px;
		border-radius: 0;
	}
}