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;
}
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;
}
@font-face {
	font-family: 'Pilat Wide Regular';
	src: url('../fonts/PilatWide-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Pilat Wide Heavy';
	src: url('../fonts/PilatWide-Heavy.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
}
.montserrat-font {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.open-sans-font {
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:"wdth" 100;
}
body {
	height: 100vh;
	width: 100%;
	margin: 0;
}
.HomeLayout {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(6, 1fr);
	gap: 10px;
	height: 100vh;
}
.Header {
	grid-column: 2 / span 3;
	grid-row: 1;
	display: flex;
	justify-content: space-between;
	padding: 20px;
	font-family: 'Pilat Wide Regular', serif;
}

.LogoText {
	display: flex;
	gap: 20px;
}
.LogoTextColumn {
	display: flex;
	flex-direction: column;
	justify-items: center;
	justify-content: center;
	gap: 10px;
}
.HeaderButtons{
	display: flex;
	align-items: center;
	gap: 20px;
	cursor:pointer;
}
.MainContent {
	grid-column: 1 / span 5;
	grid-row: 2 / 6;
	display: grid;
	grid-template-columns: repeat(11, 1fr);
	grid-template-rows: repeat(4, 1fr);
	justify-items: center;
	align-items: center;
	background-image: url(../assets/image15.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.MainContentText{
	color: white;
	grid-column: 7 / span 2;
	grid-row: 2 / span 2;
	width: 87%;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	line-height: 25px;
}
.Footer {
	grid-column: 2 / span 3;
	grid-row: 6;
	display: flex;
	font-family: 'Pilat Wide Regular', serif;
	justify-content: space-between;
	align-items: center;
}
.LogoStyle {
	width: 20px;
}
.LogoTextColumnTitle {
	font-family: 'Pilat Wide Regular', serif;
	width: fit-content;
	font-size: xx-large;
}
.LogoTextColumnDescription{
	font-size: 13px;
}
.textDescription{
	font-size: 13px;
}
.TextBoldPilat {
	font-family: 'Pilat Wide Heavy', serif;
}
.HeaderButton {
	padding: 10px 0px 10px 0px;
	border: 1px solid black;
	font-size: 13px;
    text-align: center;
}
#HeaderButtonOK {
	padding: 10px 8px 10px 8px ;
	background-color: black;
	color: white;
	font-size: 12px;
}
.FooterLogo{
	display: flex;
	align-items: center;
	gap: 16px;
}
.LogoTextColumnFooter{
	gap: 5px;
	display: flex;
	flex-direction: column;
}
.LogoFooterTitle{
	font-size: 24px;
}
.LogoFooterDescription{
	font-size: 5px;
	font-family: 'Pilat Wide Heavy', serif;
	white-space: nowrap;
}
.LogoStyleFooter {
	width: 16px;
}
.FooterAddress{
	font-size: 13px;
	width: 24%;
}
.FooterAddressTitle{
	font-family: 'Pilat Wide Heavy', serif;
}
@media (max-width: 1280px) {
	.MainContentText{
		color: white;
		grid-column: 7 / span 2;
		grid-row: 2 / span 2;
		width: 100%;
		font-size: 14px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		line-height: 20px;
	}
}
@media (max-width: 1024px) {
	.HomeLayout {
		grid-template-columns: 1fr 2fr 1fr;
		grid-template-rows: repeat(6, auto);
	}
	.Header, .Footer {
		grid-column: 1 / span 3;
		padding: 15px;
	}
	.MainContent {
		grid-template-columns: repeat(8, 1fr);
	}
	.MainContentText{
		color: white;
		grid-column: 5 / span 2;
		grid-row: 1 / span 4;
		width: 100%;
		font-size: 14px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		line-height: 20px;
	}
	.HeaderButton {
		padding: 8px 40px;
	}
	#HeaderButtonOK {
		padding: 8px 6px;
	}
	.LogoTextColumnTitle {
		font-size: x-large;
	}
}
@media (max-width: 767px) {
	.HomeLayout{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(6, 1fr);
		gap: 0px;
	}
	.LogoText, .HeaderButtons {
		flex-direction: column;
		gap: 10px;
	}
	.FooterAddressTitle {
		margin-top: 10px;
	}
	.Header{
		flex-wrap: wrap;
		display: flex;
		justify-content: center;
	}
	.LogoText{
		flex-grow: 1;
		display: flex;
		flex-direction: row;
		justify-content: center;
		width: 100%;
		padding: 0 50px 0 50px;
	}
	.HeaderButtons{
		flex-grow: 1;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.MainContent {
		grid-template-columns: repeat(4, 1fr);
	}
	.MainContentText {
		grid-column: 3 / span 2;
		font-size: 14px;
		line-height: 20px;
		width: 100%;
	}
	.FooterLogo{
		display: none;
		visibility: hidden;
	}
	.Footer {
		flex-direction: column;
		text-align: center;
	}
	.FooterAddress {
		width: 100%;
	}
	.FooterLogo {
		gap: 8px;
	}
	.HeaderButton {
		padding: 8.5px 0px;
		font-size: 12px;
	}
	#HeaderButtonOK {
		padding: 8px 8px;
        cursor: pointer;
	}
	.LogoTextColumnTitle {
		font-size: large;
	}
	.LogoFooterTitle, .LogoFooterDescription {
		font-size: 12px;
	}
}
@media (max-width: 480px) {
	.HeaderButton {
		padding: 8.5px 0px;
		font-size: 11px;
	}
	.MainContentText {
		grid-column: 2 / span 2;
		font-size: 12px;
		line-height: 20px;
		width: 100%;
	}
	.HomeLayout{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(6, 1fr);
		gap: 0px;
	}
	.LogoTextColumnTitle{
		font-size: 20px;
	}
	.Header{
		flex-wrap: wrap;
		display: flex;
		justify-content: center;
	}
	.LogoText{
		flex-grow: 1;
		display: flex;
		flex-direction: row;
		justify-content: center;
		width: 100%;
		padding: 0 50px 0 50px;
	}
	.LogoStyle{
		width: 15px;
	}
	.textDescription{
		visibility: hidden;
		display: none;
	}
	.LogoTextColumn{
		width: fit-content;
	}
	.HeaderButtons{
		flex-grow: 1;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.FooterLogo{
		display: none;
		visibility: hidden;
	}
	.Footer {
		display: flex;
		font-family: 'Pilat Wide Regular', serif;
		justify-content: space-between;
		align-items: center;
	}
	.MainContentText {
		font-size: 14px;
	}
	.LogoFooterTitle {
		font-size: 18px;
	}
	.FooterAddressTitle, .FooterAddress {
		font-size: 12px;
	}
}

.EnviaForm
{
	grid-column: 1 / span 1;
	grid-row: 1;
	font-family: 'Pilat Wide Regular', serif;
	font-size:11px;	
}