*, ::before, ::after {
	box-sizing: inherit;
}
body{
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	margin: 0px;
	font-size: 1.1rem;
	background-color: #ecece4;
}
.main_content {
	max-width: 1200px;
	margin: auto;
}
.section {
	position: relative;
	width: calc(100% - 4rem);
	padding: 0px 2rem;
	background-color: #FFF;
}
.title {
	width: calc(100% - 4rem);
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-weight: 800;
	color: #888877;
	position: absolute;
}
.title_text {
	font-size: 2.7rem;
	z-index: 2;
	position: relative;
	top: 6rem;
	margin: auto;
}
.title_letter {
	z-index: 1;
	font-family: "Font Awesome 5 Free" !important;
}
.title.title_letter{
	font-size: 7rem;
	color: #d3d3c2;
}
/* ---------------------------- phone menu ---------------------------- */
.sidenav {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 11;
	top: 0;
	right: -100%;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	background: rgb(223,223,207);
	background: -moz-linear-gradient(0deg, rgb(211, 211, 194) 0%, rgb(176, 176, 146) 100%);
	background: -webkit-linear-gradient(0deg, rgb(211, 211, 194) 0%, rgb(176, 176, 146) 100%);
	background: linear-gradient(0deg, rgb(211, 211, 194) 0%, rgb(176, 176, 146) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d3d3c2",endColorstr="#b0b092",GradientType=1);
	z-index: 10;
	background-color: #dfdfcf;
}
.sidenav a {
	text-decoration: none;
	font-size: 1.5rem;
	color: #31310d;
	display: block;
	transition: 0.3s;
	text-align: center;
	margin: 0.3rem;
}
.sidenav hr {
	border: 0;
	height: 1px;
	width: 50%;
	color: #31310d;
	background: rgb(19,19,5);
	background: -moz-linear-gradient(90deg, rgba(19, 19, 5, 0) 0%, rgba(19, 19, 5, 1) 50%, rgba(19, 19, 5, 0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(19, 19, 5, 0) 0%, rgba(19, 19, 5, 1) 50%, rgba(19, 19, 5, 0) 100%);
	background: linear-gradient(90deg, rgba(19, 19, 5, 0) 0%, rgba(19, 19, 5, 1) 50%, rgba(19, 19, 5, 0) 100%);
	margin: 0rem auto;
}
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 1.5rem;
	font-size: 2.25rem;
	margin-left: 3.25rem;
}
.openbtn {margin-right:.5rem;cursor:pointer;font-size: 1.5rem;top:.3rem;position:relative;}
/* ------------------------------ footer ------------------------------ */
.footer{
	padding: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.footer .title{
	width: 100%;
}
.left{
	background-color: #4d4d49;
	color: #E8E8DB;
	text-align: center;
	padding: 1rem;
	position: relative;
	line-height: 1.6rem;
	font-size: 1.2rem;
	width: calc(100% - 2rem);
}
.left .title_text {
	color: #E8E8DB;
	font-size: 2rem;
	top: 4.5rem;
}
.left .title_letter {
	font-size: 3rem;
	line-height: 5rem;
	color: #c4c4c2;
	width: calc(100% - 2rem);
}
.left a{color: #E8E8DB;}
.left p {margin: 0.5rem auto}
.left p i{
	width: 2rem;
}
.right{
	background-color: #E8E8DB;
	color: #4d4d49;
	text-align: center;
	padding: 1rem;
	position: relative;
	line-height: 2.5rem;
	width: calc(100% - 2rem);
	display: none;
}
.right div{
	border: 1px #4d4d49 solid;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.right h2{
	font-size: 3rem;
}
.cr{text-align:center;margin:0;}
.legal{display: block;width:100%;text-align:center;font-size:1rem;}

@media only screen and (orientation: landscape) and (min-width: 1000px) {
	.left{width: calc(50% - 2rem);}
	.right{width: calc(50% - 2rem);display: inherit;}
}