*  {
	font-family: Calibri;
	text-decoration: none;
}
input:focus {
    outline: none;
}
textarea:focus {
    outline: none;
}
select:focus {
    outline: none;
}
button:focus {
    outline: none;
}
body {
	padding: 0;
	margin: 0;
	background-color: rgba(253,253,253,1);
}
nav#menu_nav {
	border-bottom: 1px solid rgba(197,145,70,1);
	height: 14vh;
	display: flex;
	background-image: linear-gradient(to top, rgba(207,166,103,1), rgba(197,145,70,1));
	padding: 10px;
}
#menu_nav #logo_div {
	width: 40%;
}
#menu_nav #logo_div img {
	height: 100%;
	cursor: pointer;
}
#menu_nav #menu_div {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
#menu_nav #menu_div #ul_menu {
	display: flex;
	list-style: none;
	height: 100%;
	width: 100%;
	justify-content: space-around;
	align-items: center;
}
#menu_nav #menu_div #ul_menu .menu_li {
	background-color: rgba(0,0,0,0);
	border: 1px solid #fff;
	color: #fff;
	border-radius: 1px;
	font-size: 1em;
	padding: 10px;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto 1em;
	transition: background .4s, border .4s, color .4s;
}
#menu_nav #menu_div #ul_menu .menu_li:hover {
	background-color: rgba(186,135,58,1);
	cursor: pointer;
	border: 1px solid rgba(214,177,124,1);
	color: rgba(226,202,165,1);
}
#section_index {
	min-height: 70vh;
	padding: 20px 0;
}
#section_index #container {
	width: 80%;
	margin: 2em auto;
	display: flex;
	flex-direction: column;
	padding: 10px 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 5px #eee;
}
#section_index #title {
	padding: 0 20px;
}
#section_index #title h1 {
	color: rgba(197,145,70,1);
	font-size: 2.6em;
}
#section_index #container_box {
	display: flex;
	flex: 1;
}
#section_index #container_box #img_div {
	width: 50%;
	display: flex;
	justify-content: center;
}
#section_index #container_box #img_div img {
	height: 300px;
	width: 300px;
}
#section_index #container_box #p_div {
	width: 50%;
	padding: 20px 0px 20px 20px;
}
#section_index #container_box #p_div p {
	font-size: 1.1em;
	text-align: justify;
}
#footer_main {
	height: 35vh;
	position: relative;
}
#footer_main img {
	width: 100%;
	height: 100%;
}
#footer_main #div_footer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#footer_main #div_footer div.sup {
	margin: 5em 4em 0 4em;
	width: 80%;
	display: flex;
	flex-direction: column;
	padding: 5px;
}
#footer_main #div_footer div.sup p {
	color: #fff;
}
#footer_main #div_footer div.sup button {
	background-color: rgba(37,179,60,1);
	border-radius: 1px;
	border: none;
	font-size: 1em;
	padding: 10px;
	color: #fff;
	cursor: pointer;
}
#footer_main #div_footer div.sup button:hover {
	background-color: rgba(27,129,41,1);
}
#footer_main #div_footer div.default_footer {
	margin: 8em 4em 0 4em;
	display: flex;
	width: 80%;
	justify-content: center;
}
.default_footer ul {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 0;
	padding: 0;
}
.default_footer li.primary_i {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 50%;
	color: #fff;
	font-size: 1.5em;
	width: 2em;
	margin: 10px;
	z-index: 1;
	background-color: transparent;
	cursor: pointer;
}
.default_footer li.primary_i::before {
	content: '';
	position: absolute;
	border-radius: 50%;
	z-index: -1;
	width: 2em;
	height: 2em;
	background: linear-gradient(45deg, rgba(207,166,103,1), rgba(197,145,70,1));
	transition: 0.3s ease-in;
}
.default_footer li.primary_i:hover::before {
	transform: scale(0);
}
.default_footer li.primary_i i {
	transition: 0.3s ease-in;
}
.default_footer li.primary_i:hover i#instagram {
	background: linear-gradient(45deg, rgba(252,215,83,1), rgba(189,50,175,1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: scale(1.5);
}
.default_footer li.primary_i:hover i#facebook {
	background-color: rgba(0,0,0,0);
	color: rgba(59,89,152,1);
	transform: scale(1.5);
}
.default_footer li.primary_i:hover i#linkedin {
	background-color: rgba(0,0,0,0);
	color: rgba(2,112,173,1);
	transform: scale(1.5);
}
.default_footer li.primary_i:hover i#maps {
	background-color: rgba(0,0,0,0);
	color: rgba(255,0,0,1);
	transform: scale(1.5);
}
.default_footer li.primary_i:hover i#whatsapp {
	background-color: rgba(0,0,0,0);
	color: rgba(37,179,60,1);
	transform: scale(1.5);
}
.default_footer li.primary_i:hover i#email {
	background-color: rgba(0,0,0,0);
	color: rgba(255,255,255,1);
	transform: scale(1.5);
}
.article {
	padding: 0 50px;
	margin: .2em auto;
	width: 80%;
}
.article .title {
	width: 100%;
}
.article .title h1 {
	color: rgba(197,145,70,1);
	font-size: 2.6em;
}
.article .content h2 {
	color: rgba(62,62,62,1);
	font-size: 1.3em;
}
.article .content {
	font-size: 1.1em;
	text-align: justify;
}
#container_sup {
	width: 80%;
	margin: 2em auto;
	display: flex;
	flex-direction: row;
	padding: 10px 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 5px #eee;
	justify-content: space-between;
}
#container_sup iframe {
	box-shadow: 1px 1px 5px #999;
}
#container_sup #contact {
	width: 35%;
	margin: 0 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#container_sup #contact form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#container_sup h1 {
	font-size: 1.2em;
	margin: 1em 0 0 0;
	text-indent: 15px;
}
#container_sup input,#container_sup textarea {
	border: 1px solid #999;
	border-radius: 3px;
	resize: none;
	margin: 0 1em;
	width: 100%;
}
#container_sup input {
	height: 20px;
}
#container_sup textarea {
	height: 150px;
}
#container_sup button {
	width: 100%;
	margin: 1em;
	border: none;
	background: rgba(197,145,70,1);
	color: #fff;
	border-radius: 3px;
	padding: 10px;
	cursor: pointer;
}
.img {
	width: 180px;
	height: 180px;
	margin: .5em;
	position: relative;
}
.img img {
	width: 100%;
}
.article_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: .5em;
	border-bottom: 1px solid rgba(197,145,70,1);
}
.img .black {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,.7);
	opacity: 0;
	transition: opacity .4s;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	color: #fff;
	box-sizing: border-box;
	box-shadow: none;
	cursor: pointer;
}
.img .black p {
	text-align: center;
	font-weight: bolder;
}
.img:hover .black {
	opacity: 1;
	box-shadow: 1px 1px 15px #999;
}