@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&amp;display=swap');
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    font-size: 14px;
}
/******* GRID ********
@media (min-width: 1200px){
    .container {
        max-width: 1200px;
    }   
}

@media (min-width: 1600px){
    .container {
        max-width: 1570px;
    }
}*/
/*************************************** TOP HEADER ***************************************/
.sect_top_header{
	background: #014c9d;
}
.list_info_top{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.list_info_top>li{
	display: inline-block;
	margin-right: 10px;
}
.list_info_top>li>a{
	color: #fff;
	text-decoration: none;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.list_info_top>li>a:hover{
	color: #f00;
	text-decoration: none;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.grid_btn{
	text-align: right;
}
.grid_btn .btn_certificado{
	display: block;
    text-align: center;
    padding: 10px;
    background: #014c9d;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.grid_btn .btn_certificado:hover{
	background: #f6b431;
}
/**/
@media(max-width: 767px){
    .list_info_top{
        display: none;
    }
    .grid_btn .btn_certificado{
        margin: 0 auto;
    }
}
/************************************* END TOP HEADER *************************************/

/************************************* MENU ESCRITORIO *************************************/
.nav_main{
	position: absolute;
    z-index: 10;
    width: 100%;
	-webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.nav_main .content_menu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
    position: relative;
}

/**/
.logo_main{
	width: 300px;
	position: relative;
}
.logo_main img{
	max-width: 200px;
	position: relative;
	z-index: 1;
}
.pentagono{
	position: absolute;
    width: 220px;
    height: 103px;
    background: #ec680a;
    top: 0;
    left: -10px;
}
.pentagono:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 110px solid transparent;
    border-right: 110px solid transparent;
    border-top: 50px solid #ec680a;
}
/**/
.menu_main{
	width: calc( 100% - 300px);
}
.menu_main .list_menu{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	text-align: right;
}
.menu_main .list_menu>li{
	display: inline-block;
	position: relative;
}
.menu_main .list_menu>li>a{
	display: block;
	position: relative;
	padding: 42px 15px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.menu_main .list_menu>li:before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #ec680a;
	z-index: -1;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.menu_main .list_menu>li:hover:before,
.menu_main .list_menu>li.active:before{
	width: 100%;
	left: 0;
	right: auto;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
/*DESPLEGABLE MENU */
.li_dropdown > ul {
    border-top: 2px solid #fbb908;
    position: absolute;
    width: 200px;
    top: 120%;
    /* left: 0; */
    /* right: 0; */
    margin: 0 auto;
    padding-left: 0;
    z-index: -9;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background: #ffffff none repeat scroll 0 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    overflow: hidden;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
    opacity: 0;
}
.li_dropdown:hover ul {
    visibility: visible;
    z-index: 9;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: 100%;
}
.li_dropdown>ul>li>a{
    display: block;
    text-align: left;
    padding: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    z-index: 11;
    text-decoration: none;
    position: relative;
    letter-spacing: .6px;
}
.li_dropdown ul>li:before{
    content: "";
    position: absolute;
    top: 55%;
    left: -19%;
    width: 0%;
    height: 0%;
    background-color: #fff;
    z-index: -1;
    transition: all ease 500ms;
}
.li_dropdown ul>li:hover a {
    color: #c62828;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*MENNU FIXED*/
.head-navfixed{
	position: fixed;
    top: 0;
    z-index: 99;
    background: #074c96;
    box-shadow: 0px 7px 4px 0px rgba(0, 0, 0, 0.1607843137254902);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.menu_toggle{
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.menu_toggle a{
    display: block;
    font-size: 35px;
    color: #fff;
}
/**/
#brochure{
    position: fixed;
    top: 50%;
    right: 0;
    width: 153px;
    display: flex;
    height: 50px;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    background: #046675;
    align-items: center;
    font-weight: 800;
    z-index: 200;
    text-decoration: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    /* line-height: 50px; */
    text-align: center;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%);
}
#brochure svg{
    margin-right: 5px;
}
/*ASIDE MENU*/
.side_menu{
    position: fixed;
    overflow-y: auto;
    top: 0;
    width: 250px;
    background: #000;
    height: 100%;
    display: block;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    border-left: solid 1px #efefef;
    -webkit-transition: all .5s ease-in-out;
    -khtml-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 200;
}
.side_menu.open{
     -webkit-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    -o-transform: translate(00%, 0);
    transform: translate(0%, 0);
}
/**/
.side_menu .side_head {
    padding: 25px;
}
.side_menu .side_body h5 {
    color: #fff;
    background: #c62828;
    font-size: 13px;
    padding: 10px;
}
.side_menu .side_body .list_menu_celular {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.side_menu .side_body .list_menu_celular>li {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.side_menu .side_body .list_menu_celular>li>a {
    color: #fff;
    padding: 10px;
    display: block;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.submenu{
    padding-bottom: 10px;
}
.submenu>li>a{
    display: block;
    color: #fff;
    text-decoration: none;
}
/**/
@media(max-width: 991px){
    .list_menu{
        display: none;
    }
    .menu_toggle{
        display: block;
    }
    .logo_main img {
        max-width: 170px;
    }
    .pentagono {
        width: 190px;
        height: 90px;
    }
    .pentagono:after {
        border-left: 95px solid transparent;
        border-right: 95px solid transparent;
    }
}
@media(max-width: 767px){
    .pentagono {
        height: 75px;
    }
    .pentagono:after {
        bottom: -37px;
        border-top: 37px solid #ec680a;
    }
}
/*********************************** END MENU ESCRITORIO ***********************************/

/****************************************** SECTION TITLE GENERAL **************************************/
.sect_title_general{
	padding-top: 100px;
}
.sect_title_general h2{
	text-align: center;
	font-weight: 800;
	font-size: 40px;
	color: #000;
}
.sect_title_general h2.white{
	color: #000;
}
.sect_title_general h6{
	text-align: center;
	color: #a5a5a5;
	font-size: 20px;
}
.sect_title_general h6.white{
	color: #fff;
}
/**/
@media(max-width: 991px){
    .sect_title_general h2 {
        font-size: 30px;
    }
    .sect_title_general {
        padding-top: 50px;
    }
}
@media(max-width: 767px){
    .sect_title_general h2 {
        font-size: 25px;
    }
}
/**************************************** END SECTION TITLE GENERAL ************************************/

/*************************************** INTER FOOTER ***************************************/
.sect_foot .sect_main{
	background: #c62828;
	padding: 50px 0;
}
.sect_sign{
	background: #b71c1c;
	padding: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.sect_sign p{
	margin-bottom: 0;
	color: #fff;
}

/**/
.box_footer .box_head h4{
	color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
/**/
.box_footer .box_body ul{
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
}
.box_footer .box_body ul>li>a{
	text-decoration: none;
	color: #fff;
}
.box_footer .box_body .list_contacto_footer{
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
}
.box_footer .box_body .list_contacto_footer>li{
	position: relative;
	margin-bottom: 20px;
}
.box_footer .box_body .list_contacto_footer>li svg{
	position: absolute;
    top: 5px;
    left: 0;
    text-align: center;
    width: 20px;
}
.box_footer .box_body .list_contacto_footer>li svg .fa-secondary{
	color: #fff;
	opacity: .6;
}
.box_footer .box_body .list_contacto_footer>li svg .fa-primary{
	color: #000;
}
/**/
.box_footer .box_body .list_contacto_footer>li>.content_contacto{
	padding-left: 30px;
}
.box_footer .box_body .list_contacto_footer>li>.content_contacto a{
	color: #fff;
	text-decoration: none;
}

/**/
.box_footer_nosotros .box_body{
	background: rgba(255, 255, 255, 0.28);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    margin-bottom: 20px;
}
.box_footer_nosotros .box_body p{
	color: #fff;
	margin-bottom: 0;
	text-align: justify;
}
.box_footer_nosotros .box_foot .list_redes_foot{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.box_footer_nosotros .box_foot .list_redes_foot>li{
	margin-right: 10px;
	display: inline-block;
}
.box_footer_nosotros .box_foot .list_redes_foot>li>a{
	display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    position: relative;	
}
.box_footer_nosotros .box_foot .list_redes_foot .facebook a{
	background: #3b5998;
}
.box_footer_nosotros .box_foot .list_redes_foot .instagram a{
	background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.box_footer_nosotros .box_foot .list_redes_foot .twitter a{
	background: #1da1f2;
}
.box_footer_nosotros .box_foot .list_redes_foot .linkedin a{
    background: #007bb6;
}
.box_footer_nosotros .box_foot .list_redes_foot .youtube a{
    background: #ff000a;
}
.box_footer_nosotros .box_foot .list_redes_foot .whatsapp a{
    background: #1bd741;
}
.box_footer_nosotros .box_foot .list_redes_foot>li>a:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 10px);
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 10px);
    -webkit-border-radius: 100%;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 1;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.25s;
}
.box_footer_nosotros .box_foot .list_redes_foot>li>a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.box_footer_nosotros .box_foot .list_redes_foot>li>a:active:before {
    -webkit-transform: scale(60);
    -ms-transform: scale(60);
    transform: scale(60);
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}

.uppage{
	position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
    background: #000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-radius: 3px;
    z-index: 300;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.uppage:hover{
    color: #c62828;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
@media(max-width: 991px){
    .box_footer_nosotros{
        margin-top: 20px;
    }
}
@media(max-width: 767px){
    .box_footer{
        margin-bottom: 20px;
    }
}
/************************************* END INTER FOOTER *************************************/
/**/
@media(max-width: 991px){
    .order1{
        order: 1;
    }
    .order2{
        order: 2;
    }
}

/**/