@charset "UTF-8";
/* CSS Document */
@import url("class.css");
@import url("reset.css");

@keyframes mouse_scroll {
	0% {
		bottom: 20px;
	}
	50% {
		bottom: 10px;
	}
	60% {
		bottom: 10px;
	}
	100% {
		bottom: 20px;
	}
}

body {
	font-size: 62.5%;
	font-family: Arial, verdana, sans-serif;
}


.title {
	width: 100%;
	position: relative;
	float: left;
	font-size: 2.4em;
}
.title_sub {
	width: 100%;
	position: relative;
	float: left;
	font-size: 2.0em;
}
.title_main {
	width: 100%;
	position: relative;
	float: left;
	font-size: 3.0em;
	font-weight: bold;
	text-align: center;
	color: #0F1B27;
}
.text {
	width: 100%;
	position: relative;
	float: left;
	font-size: 1.4em;
}

.menu_false {
	width: 100%;
	height: 53px;
	position: relative;
	float: left;
	margin-top: -53px;
}






#header_main {
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	border-top: 3px solid #DE9915;
	background-color: rgba(0,0,0,.7);
	z-index: 100;
}

#header_main #logo {
	height: 50px;
	position: relative;
	float: left;
	margin: 10px 10px 0 20px;
	padding-right: 10px;
	border-right: 1px solid #CCC;
	cursor: pointer;
}

#header_main #menu_main {
	position: relative;
	float: left;
	margin-top: 10px;
}
	#header_main #menu_main ul .menu_small {
		width: 30px;
		height: 30px;
		position: relative;
		float: left;
		margin-top: 7px;
		background: url(../images/menu_small.png) no-repeat;
		cursor: pointer;
		display: none;
	}
	#header_main #menu_main ul .link {
		position: relative;
		float: left;
		margin-left: 1px;
	}
		#header_main #menu_main ul .link a {
			height: 50px;
			line-height: 50px;
			position: relative;
			float: left;
			color: #FFF;
			font-size: 1.4em;
			padding: 0 20px;
			text-decoration: none;
		}
		#header_main #menu_main ul .link a:hover {
			background-color: #DE9915;
		}

		.active{
			background-color: #DE9915;
		}

		#header_main #menu_main ul .link .hover {
			background-color: #DE9915;
		}

#header_main #social_main {
	position: relative;
	float: right;
	margin: 10px 40px 0 0;
    display: flex;
    flex-direction: row;
}
    #header_main #social_main > a {
        height: 50px;
    }
    #header_main #social_main > a img {
        height: 50px;
    }
    #header_main #social_main ul {
        display: none;
    }
    #header_main #social_main ul li {
        width: 30px;
        height: 30px;
        position: relative;
        float: left;
    }
    #header_main #social_main ul li img {
        height: 30px;
    }



#block_home {
	width: 100%;
	position: relative;
	float: left;
}

#block_home .block_banner {
	width: 100%;
	height: 100vh;
	max-height: 700px;
	position: relative;
	float: left;
	background-color: #FFF;
	overflow: hidden;
	z-index: 10;
}
	#block_home .block_banner .images {
		width: 100%;
		height: 100%;
		position: relative;
		float: left;
		z-index: 1;
	}
		#block_home .block_banner .images ul li {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			background-size: cover;
			background-position: top center;
			opacity: 0;
		}
		#block_home .block_banner .images ul li:first-child {
			opacity: 1;
		}
		#block_home .block_banner .images ul li a {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			z-index: 10;
		}
		#block_home .block_banner .images ul li .shadow {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			background: rgba(0,0,0,.7) url(../images/banner_shadow.png) repeat;
			opacity: .5;
			z-index: 1;
		}

		#block_home .block_banner .images ul li .block {
			width: calc(100% - 120px);
			position: absolute;
			left: 60px;
			top: calc((100% - 200px) / 2);
			z-index: 2;
		}

		#block_home .block_banner .images ul li .block .banner_title {
			width: 100%;
			position: relative;
			float: left;
			font-size: 4.0em;
			color: #FFF;
			font-weight: bold;
			text-align: center;
			text-shadow: 1px 1px #000;
			cursor: default;
		}
		#block_home .block_banner .images ul li .block .banner_text {
			width: 100%;
			max-width: 500px;
			position: relative;
			margin: 0 auto;
			top: 10px;
			font-size: 2.0em;
			color: #FFF;
			text-align: center;
			text-shadow: 1px 1px #000;
			cursor: default;
		}

	#block_home .block_banner .prev {
		width: 30px;
		height: 60px;
		position: absolute;
		margin: auto;
		top: 0;
		bottom: 0;
		left: 10px;
		background: url(../images/arrow_prev.png) no-repeat center center;
		cursor: pointer;
		z-index: 2;
	}
	#block_home .block_banner .next {
		width: 30px;
		height: 60px;
		position: absolute;
		margin: auto;
		top: 0;
		bottom: 0;
		right: 10px;
		background: url(../images/arrow_next.png) no-repeat center center;
		cursor: pointer;
		z-index: 2;
	}

	#block_home .block_banner .mouse {
		width: 80px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 20px;
		margin: auto;
		animation: mouse_scroll 3s ease-out 0s infinite;
		cursor: pointer;
		z-index: 3;
	}




#block_home .block_insurance {
	width: 100%;
	position: relative;
	float: left;
	padding-bottom: 50px;
	overflow: hidden;
	background-color: #FFF;
	z-index: 10;
}
	#block_home .block_insurance .menu_false {
		margin-top: 20px;
	}
	#block_home .block_insurance ul {
		width: calc(100% - 60px);
		max-width: 1100px;
		position: relative;
		margin: 0 auto;
		display: table;
	}
	#block_home .block_insurance ul li {
		height: 400px;
		position: relative;
		float: left;
		margin: 10px;
		background-color: #EEE;
		overflow: hidden;
	}
	#block_home .block_insurance ul li:nth-child(3){
		margin-right: 0;
	}
	#block_home .block_insurance ul .small {
		width: calc((100% / 3) - 20px);

	}
	#block_home .block_insurance ul .middle {
		width: calc(((100% / 3) * 2) - 20px);
	}
		#block_home .block_insurance ul li a {
			width: 100%;
			height: 100%;
			position: relative;
			float: left;
			overflow: hidden;
		}
		#block_home .block_insurance ul li a .image {
			width: 100%;
			height: 100%;
			position: relative;
			float: left;
			margin: 0;
			background-size: cover;
			background-position: center center;
			transition: width .4s ease-out, height .4s ease-out, margin .4s ease-out;
			z-index: 1;
		}
		#block_home .block_insurance ul li:hover a .image {
			width: calc(100% + 20px);
			height: calc(100% + 20px);
			margin: -10px 0 0 -10px;
			trasition: all .4s ease-out;
		}
		#block_home .block_insurance ul li a .shadow {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			background: rgba(0,0,0,.7) url(../images/search.png) no-repeat center center;
			opacity: 0;
			transition: opacity .4s ease-out;
			z-index: 2;
		}
		#block_home .block_insurance ul li:hover a .shadow {
			opacity: 1;
			transition: all .4s ease-out;
		}

		#block_home .block_insurance ul li .insurance_title {
			max-width: 140px;
			position: absolute;
			margin: auto;
			left: 0;
			bottom: 0;
			padding: 15px 20px;
			/*display: table;*/
			background-color: #DE9915;
			color: #FFF;
			font-size: 1.5em;
			z-index: 3;
		}





#block_home .block_partner {
	width: 100%;
	position: relative;
	float: left;
	padding: 60px 0;
	overflow: hidden;
	background-color: #FFF;
	z-index: 10;
}
	#block_home .block_partner .menu_false {
		margin-top: -73px;
	}
	#block_home .block_partner .content {
		width: calc(100% - 40px);
		max-width: 880px;
		position: relative;
		margin: 0 auto;
	}
	#block_home .block_partner .content ul li {
		width: 200px;
		height: 140px;
		position: relative;
		float: left;
		margin: 10px;
		overflow: hidden;
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
		opacity: .9;
		transition: opacity 1s ease-out, filter 1s ease-out;
	}
	#block_home .block_partner .content ul li:hover {
		filter: grayscale(0%);
		-webkit-filter: grayscale(0%);
		opacity: 1;
		transition: opacity 1s ease-out;
	}



#block_home .block_about {
	width: 100%;
	position: relative;
	float: left;
	padding: 40px 0;
	overflow: hidden;
}

	#block_home .block_about .menu_false {
		margin-top: -94px;
	}

	#block_home .block_about .bg {
		width: 100%;
		height: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		background: url(../images/bg_about.jpg) no-repeat center center;
		background-size: cover;
		z-index: 1;
	}

	#block_home .block_about .shadow {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(0,0,0,.8) url(../images/banner_shadow.png) repeat;
		z-index: 2;
	}
	#block_home .block_about .title_main {
		color: #FFF;
		text-shadow: 1px 1px #000;
		margin-bottom: 10px;
		z-index: 3;
	}
	#block_home .block_about .content {
		width: calc(100% - 20px);
		max-width: 900px;
		line-height: 1.7em;
		position: relative;
		margin: 0 auto;
		font-size: 1.5em;
		text-align: left;
		text-shadow: 1px 1px #000;
		color: #FFF;
		z-index: 3;
	}


#block_home .block_contact {
	width: calc(100% - 80px);
	position: relative;
	float: left;
	padding: 40px;
	background: #FFF;
	overflow: hidden;
	z-index: 10;
}
	#block_home .block_contact .menu_false {
		margin-top: -92px;
	}
	#block_home .block_contact .map {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
        background: url(../images/mapa.png) no-repeat center center;
	}

	#block_home .block_contact .shadow {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}

	#block_home .block_contact .button {
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 4;
	}
		#block_home .block_contact .button a {
			width: 200px;
			height: 60px;
			line-height: 60px;
			position: relative;
			float: left;
			font-size: 1.4em;
			border-radius: 3px;
			background-color: #DE9915;
			text-align: center;
			color: #FFF;
		}

	#block_home .block_contact .contact {
		width: calc(100% - 40px);
		max-width: 450px;
		position: relative;
		float: left;
		padding: 20px;
		border-radius: 3px;
		background: rgba(255,255,255,1);
        box-shadow: 0 2px 5px rgba(0,0,0,.2);
		z-index: 3;
	}

		#block_home .block_contact .contact .title {
			color: #0F1B27;
		}

		#block_home .block_contact .contact .text {
			line-height: 24px;
			margin-top: 10px;
			color: #999;
		}

		#block_home .block_contact .contact form {
			width: 100%;
			position: relative;
			float: left;
			margin-top: 15px;
		}
		#block_home .block_contact .contact form input {
			width: calc(100% - 22px);
			height: 40px;
			position: relative;
			float: left;
			padding: 0 10px;
			font-size: 1.4em;
			color: #000;
			border: 1px solid #DDD;
			background-color: #FFF;
			margin-top: 10px;
		}
		#block_home .block_contact .contact form .small {
			width: calc(50% - 27px);
		}
		#block_home .block_contact .contact form .small:nth-child(odd) {
			float: right;
		}

		#block_home .block_contact .contact form textarea {
			width: calc(100% - 22px);
			height: 4.8em;
			line-height: 1.6em;
			position: relative;
			float: left;
			font-size: 1.4em;
			padding: 10px;
			color: #000;
			border: 1px solid #DDD;
			background-color: none;
			margin-top: 10px;
			resize: none;
		}

		#block_home .block_contact .contact form button {
			width: 120px;
			height: 40px;
			position: relative;
			float: right;
			color: #FFF;
			font-size: 1.4em;
			margin-top: 10px;
			border-radius: 3px;
			background-color: #0F1B27;
			cursor: pointer;
		}



#footer_main {
	width: calc(100% - 40px);
	position: relative;
	float: left;
	padding: 30px 20px;
	border-top: 4px solid #DE9915;
	background: #333 url(../images/bg_footer.jpg) repeat center center;
	z-index: 10;
}
#footer_main .left {
	position: relative;
	float: left;
}
	#footer_main .left .logo {
		position: relative;
		float: left;
	}
	#footer_main .left .copy {
		position: relative;
		float: left;
		margin-top: 15px;
		padding-top: 5px;
		font-size: 11px;
		border-top: 1px solid rgba(255,255,255,.2);
		color: #FFF;
		clear: both;
	}

#footer_main .right {
	position: relative;
	float: right;
}
	#footer_main .right .menu {
		position: relative;
		float: left;
		padding-bottom: 10px;
		border-bottom: 1px solid rgba(255,255,255,.2);
		clear: both;
	}
		#footer_main .right .menu ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}
		#footer_main .right .menu ul li {
			position: relative;
			float: left;
		}
		#footer_main .right .menu ul li a {
			position: relative;
			float: left;
			padding: 0 10px;
			font-size: 1.4em;
			text-decoration: none;
			color: #FFF;
		}
		#footer_main .right .menu ul li a:hover {
			text-decoration: underline;
		}

	#footer_main .right .address {
		position: relative;
		float: left;
		margin-left: 5px;
		clear: both;
	}
		#footer_main .right .address ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}
		#footer_main .right .address ul li {
			max-width: 300px;
			min-height: 20px;
			position: relative;
			float: left;
			padding: 7px 0 0 35px;
			margin-top: 10px;
			color: #FFF;
			font-size: 1.2em;
			background-position: left top;
			background-size: 30px 30px;
			background-repeat: no-repeat;
			clear: both;
		}




#block_mask {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.7);
	z-index: 99999999990;
	display: none;
}

#block_ajax {
	width: calc(100% - 120px);
	max-width: 600px;
	max-height: calc(100vh - 120px);
	position: fixed;
	margin: auto;
	padding: 20px;
	top: 40px;
	left: 0;
	right: 0;
	background-color: #FFF;
	border-radius: 3px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 99999999991;
	display: none;
}

#block_close {
	width: 20px;
	height: 20px;
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 10px;
	background-color: #FFF;
	border-radius: 100%;
	z-index: 99999999993;
	cursor: pointer;
	opacity: 0;
	display: none;
}
#loading {
	width: 100%;
	position: fixed;
	top: 40px;
	left: 0;
	text-align: center;
	z-index: 99999999992;
	display: none;
}
	#loading img {
		background-color: #FFF;
		padding: 5px;
		border-radius: 100px;
		box-shadow: 2px 2px 2px rgba(0,0,0,.3);
	}
	#loading span {
		width: 100%;
		position: relative;
		float: left;
		margin-top: 10px;
		text-shadow: 2px 2px #666;
		color: #FFF;
	}

#block_insurance {
	width: 100%;
	position: relative;
	float: left;
}
#block_insurance .image {
	width: calc(100% + 40px);
	height: 250px;
	position: relative;
	float: left;
	margin: 10px 0 10px -20px;
	background-position: center center;
	background-size: cover;
}

#block_insurance form {
	width: 100%;
	max-width: 450px;
	position: relative;
	margin: 0 auto;
}
	#block_insurance form label {
		width: 100%;
		position: relative;
		float: left;
		font-size: 1.4em;
		margin: 10px 0 3px 0;
		text-align: center;
	}

	#block_insurance form input {
		width: calc(100% - 22px);
		height: 40px;
		position: relative;
		float: left;
		padding: 0 10px;
		font-size: 1.4em;
		border: 1px solid #CCC;
		border-radius: 2px;
		text-align: center;
	}

	#block_insurance form .select {
		width: 100%;
		height: 40px;
		position: relative;
		float: left;
	}
		#block_insurance form .select select {
			width: 100%;
			height: 40px;
			position: relative;
			float: left;
			font-size: 1.4em;
			padding: 0 10px;
			text-align: center;
			border: 1px solid #CCC;
			background-color: #FFF;
		}

	#block_insurance form textarea {
		width: calc(100% - 22px);
		height: 4.8em;
		line-height: 1.6em;
		position: relative;
		float: left;
		padding: 10px;
		font-size: 1.4em;
		border: 1px solid #CCC;
		border-radius: 2px;
		text-align: center;
	}

	#block_insurance form button {
		width: 200px;
		height: 50px;
		position: relative;
		float: left;
		margin-left: calc((100% - 200px) / 2);
		margin-top: 10px;
		margin-bottom: 40px;
		border-radius: 3px;
		font-size: 1.4em;
		color: #FFF;
		background-color: #DE9915;
		cursor: pointer;
	}

#block_insurance .button_select {
	width: 100%;
	position: relative;
	float: left;
}
	#block_insurance .button_select ul li {
		width: calc((100% / 3) - 13px);
		position: relative;
		float: left;
		border: 4px solid #CCC;
		margin-right: 7.5px;
		cursor: pointer;
	}
	#block_insurance .button_select ul li:hover {
		border-color: #DE9915;
	}
	#block_insurance .button_select ul .hover {
		border-color: #DE9915;
	}
	#block_insurance .button_select ul li:nth-child(3){
		margin-right: 0;
	}
	#block_insurance .button_select ul li img {
		position: relative;
		float: left;
	}