h1, h2, h3, h4 {
	padding:0px;
	margin:0px;
	font-size:inherit;
	font-weight:inherit;
}

a {
	text-decoration: none;
	color:inherit;
}

body {
	margin:0px;
	padding:0px;
	font-family: Arial, Helvetica, sans-serif;
	color:#313131;
	background-color:#ebeae6;
}

.def_container {
	position: relative;
	float: left;
	width: 100%;
	display: flex;
	justify-content: center;
}
.def_center {
	position: relative;
	float: left;
	width: 80%;
}
.def_justifycenter {
	display:flex;
	justify-content: center;
}
.def_justifyspace {
	display:flex;
	justify-content: space-between;
}

.defaulttext {
	font-size:16px;
	line-height:26px;
}

.def_title {
	position: relative;
	float:left;
	width:100%;
}
.def_title span:nth-child(1) {
	position:relative;
	float:left;
	width:100%;
	font-size:66px;
	font-weight:bold;
	color:#556362;
}
.def_title span:nth-child(2) {
	position:relative;
	float:left;
	width:100%;
	font-size:28px;
	color:#556362;
	text-transform: uppercase;
}
.def_text {
	position:relative;
	float:left;
	width:100%;
	margin-top:30px;
	font-size:22px;
	line-height:32px;
	color:#697675;
}

.contencontainer {
	position:relative;
	float:left;
	width:100%;
	overflow:hidden;
}

.button {
	position: relative;
	float:left;
	margin-top:35px;
	text-transform: uppercase;
	background-color:rgba(0, 0, 0, 0.3);
	color:#FFFFFF;
	overflow:hidden;
	font-weight: bold;
	cursor: pointer;
}
.button span {
	padding:15px 55px;
	padding-left: 20px;
}
.button span:nth-child(1) {
	position:relative;
	float:left;
	top:0px;
	transition-duration: 0.3s;
}
.button span:nth-child(2) {
	position:absolute;
	left:0px;
	width:100%;
	height:100%;
	top:100%;
	transition-duration: 0.3s;
	transition-delay: 0.1s;
}
.button:hover {
	background-color:#374443;
}
.button:hover span:nth-child(1) {
	top:-100%;
}
.button:hover span:nth-child(2) {
	top:0%;
}

.hdr {
	position:relative;
	float:left;
	width:80%;
	padding:18px 10%;
	z-index: 25;
}
.hdr_logo {
	position:relative;
	float:left;
}
.hdr_logo img {
	position:relative;
	float:left;
	width:240px;
	margin-top:6px;
}
.hdr_mnubtn {
	position:relative;
	float:right;
	width:45px;
	height: 35px;
	margin-top:6px;
	padding:10px 10px;
	z-index: 10;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0);
	z-index: 50;
}
.hdr_mnubtn_line {
	position:absolute;
	top:10px;
	left:0px;
	width:0px;
	height:4px;
	border-radius:5px;
	overflow:hidden;
	background-color: #3a4546;
}
.hdr_mnubtn_line_1, .hdr_mnubtn_line_2, .hdr_mnubtn_line_3 {
	transition-duration: 0.5s;
}
.hdr_mnubtn_line_2 {
	top:25px;
}
.hdr_mnubtn_line_3 {
	top:40px;
}
.hdr_mnubtn_show .hdr_mnubtn_line_1 {
	width:100%;
	transition-delay: 0.2s;
}
.hdr_mnubtn_show .hdr_mnubtn_line_2 {
	width:100%;
	transition-delay: 0.4s;
}
.hdr_mnubtn_show .hdr_mnubtn_line_3 {
	width:100%;
	transition-delay: 0.6s;
}

@keyframes shrinkExpand {
  0% { width: 100%; }
  50% { width: 60%; }
  100% { width: 100%; }
}
.hdr_mnubtn:hover .hdr_mnubtn_line_1 {
  animation: shrinkExpand 0.4s ease-in-out;
  animation-delay: 0s;
}
.hdr_mnubtn:hover .hdr_mnubtn_line_2 {
  animation: shrinkExpand 0.4s ease-in-out;
  animation-delay: 0.1s;
}
.hdr_mnubtn:hover .hdr_mnubtn_line_3 {
  animation: shrinkExpand 0.4s ease-in-out;
  animation-delay: 0.2s;
}

.mnu {
	position: fixed;
	top: 0px;
	right: -110%;
	padding: 50px 150px;
	width: 400px;
	height: calc(100% - 100px);
	background-color: rgba(255, 255, 255, 1);
	z-index: 100;
	filter: drop-shadow(5px 5px 10px #000000);
	transition-duration: 0.8s;
	display: flex;
	justify-content: left;
	align-items: center;
	align-content: center;
}
.mnu_close {
	position: absolute;
	top: 50px;
	right: 50px;
	width: 100px;
	height: 100px;
	cursor: pointer;
	opacity: 0.3;
}
.mnu_close:hover {
	opacity: 1;
}
.mnu_close img {
	width: 30px;
}
.mnu_center {
	position: relative;
	float: left;
	width: 100%;
}
.mnu_show {
	right: 0px;
}
.mnu_title {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 35px;
	font-size: 32px;
	margin-left: -20px;
}
.mnu_title_margin {
	margin-top: 15%;
}
.mnu_cat {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 16px;
	padding: 2px 0px;
}
.mnu_cat:nth-child(0) {
	margin-bottom:6px;
}
.mnu_cat_title {
	position: relative;
	float: left;
	width: 80%;
	font-size: 18px;
	cursor: pointer;
}
.mnu_cat_title:hover {
	text-decoration: underline;
}
.mnu_cat_selected .mnu_cat_title{
	font-weight: bold;
}
.mnu_cat_expand {
	position: relative;
	float: right;
	width: 10%;
	height: 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
}
.mnu_cat_expand img {
	width: 14px;
}
.mnu_cat_expand div {
	position: relative;
	float: left;
	height: 8px;
	opacity: 0.7;
}
.mnu_subcats {
	position: relative;
	float: left;
	width: 95%;
	margin-left: 5%;
	max-height: 0px;
	overflow: hidden;
	transition: 0.5s ease;
	padding-bottom: 0px;
}
.mnu_subcats_show {
	max-height: 200px;
	padding-bottom: 25px;
}
.mnu_subcat {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 3px;
	padding: 2px 0px;
	transition-duration: 0.3s;
	cursor: pointer;
}
.mnu_subcat:hover {
	margin-left: 10px;
}
.mnu_info_col {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 15px;
}
.mnu_info {
	position: relative;
	float: left;
	width: 100%;
}

.ftr {
	position:relative;
	float:left;
	width:80%;
	padding:50px 10%;
	margin-top:100px;
	background-color:#374443;
	display:flex;
	justify-content: space-between;
	background-image: url('../images/footer-bg.jpg');
	background-size:cover;
	background-position: bottom center;
}
.ftr_logo {
	position: relative;
	float: left;
	clear: both;
	margin-bottom: 25px;
}
.ftr_logo img {
	width: 200px;
}
.ftr_col {
	position:relative;
	float:left;
	max-width:20%;
}
.ftr_line {
	position:relative;
	float:left;
	clear:both;
	color:#FFFFFF;
	margin-bottom:8px;
}
.ftr_line:hover {
	text-decoration: underline;
	cursor: pointer;
}
.ftr_line_header {
	font-weight:bold;
	font-size:20px;
}
.ftr_line_header:hover {
	text-decoration: none;
}


.hm_vb1 {
	background-image:url('../images/home/header.jpg');
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
	height:0px;
	padding-bottom:30%;
}

.hm_vb2 {
	margin-top:7%;
}
.hm_vb2_content {
	position:relative;
	float:left;
	width:30%;
	padding:12% 0px;
	margin-right:10%;
}
.hm_vb2_photo {
	position:relative;
	float:left;
	width:45%;
	background-image:url('../images/home/intro.jpg');
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.hm_vb3 {
	margin-top:7%;
}
.hm_vb3_i {
	position:relative;
	float:left;
	width:15%;
}
.hm_vb3_i img {
	position:relative;
	float:left;
	width:100%;
}

.hm_vb4 {
	margin-top:7%;
}
.hm_vb4 .hm_vb2_content {
	margin-right:0px;
	margin-left:10%;
}
.hm_vb4 .hm_vb2_photo {
	background-image:url('../images/home/outro.jpg');
}


@media screen and (max-width: 1000px) {
	.mnu {
		right: -200%;
		width:100%;
		padding:50px 0px;
		text-align:center;
	}
	.mnu_show {
		right:0px;
	}
	.mnu_title {
		margin-left:0px;
	}
	.mnu_cat_title {
		width:100%;	
	}
}
@media screen and (max-width: 1600px) {
	.hm_vb2_content {
		padding:5% 0px;
		width:35%;
	}
}
@media screen and (max-width: 1400px) {
	.def_title span:nth-child(1) {
		font-size:42px;
	}
	.def_title span:nth-child(2) {
		font-size:18px;
	}

	.def_text {
		font-size:18px;
		line-height:26px;
	}

}

@media screen and (max-width: 1200px) {
	.ftr {
		flex-wrap:wrap;
	}
	.ftr_col {
		min-width:250px;
		margin-top:40px;
	}
}

@media screen and (max-width: 800px) {
	.hdr_logo img {
		width:180px;
		margin-top:12px;
	}

	.def_justifycenter {
		flex-wrap:wrap;
	}
	.hm_vb2_content {
		margin:0px;
		width:100%;
	}
	.hm_vb2_photo {
		height:0px;
		width:100%;
		padding-bottom:70%;
		margin-top:30px;
		background-image:url('../images/home/intro-X2.jpg');
	}
	.hm_vb3 {
		flex-wrap: wrap;
	}
	.hm_vb3_i {
		width:31%;
		margin-top:25px;
	}
	.hm_vb4 .def_justifycenter{
		flex-direction: column-reverse;
	}
	.hm_vb4 .hm_vb2_content {
		margin-left:0px;
	}
	.hm_vb4 .hm_vb2_photo {
		background-image: url('../images/home/outro-X2.jpg');
	}
}



























