@import url('https://fonts.googleapis.com/css2?family=Signika:wght@200;300;400;500;600;700&display=swap');
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Signika', sans-serif;
    overflow-x: hidden;
    font-size: 14px;
}
body.overlay{
	position: relative;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
body.overlay:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 25;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*LOADER*/
#loadPage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    background: #fff;
}
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  animation-name: loading;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.circle:first-child {
  background-color: #000232;
  animation-delay: 0s;
}
.circle:nth-child(2) {
  background-color: #cf070f;
  animation-delay: 0.2s;
}
.circle:nth-child(3) {
  background-color: #faa613;
  animation-delay: 0.4s;
  margin-right: 0px;
}
@keyframes loading {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0px);
  }
}
/***/
#designTop{
    position: absolute;
    width: 100%;
    height: 39px;
    left: 0;
    top: 0;
    transform: rotate(180deg);
    z-index: 4;
}
#designBottom{
    position: absolute;
    width: 100%;
    height: 39px;
    left: 0;
    bottom: 0;
    z-index: 4;
}
/***/
/***************************************************************************** INTER HEADER *********************************************************************************/
.content_menu{
    position: absolute;
    width: 100%;
    z-index: 30;
}
.content_menu.head-navfixed{
    position: fixed;
    top: 0;
    z-index: 30;
}
/****/
.conten_nav{
    position: relative;
    z-index: 10;
    background: #fff;
    /*overflow: hidden;*/
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.content_menu.head-navfixed .conten_nav{
    background: #fff;
    box-shadow: -1px 6px 5px rgb(204 204 204 / .2);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.conten_nav.head-navfixed{
    position: fixed;
    width: 100%;
    z-index: 20;
    top: 0;
}
/**/
.flex_menu_b .flex_logo{
    width: 300px;
}
/*.flex_menu_b .flex_logo:before{
    content: '';
    left: 0;
    top: 0;
    background-color: #f5f5f5;
    width: 316px;
    height: 100%;
    position: absolute;
    -webkit-clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
}*/
.flex_menu_b .flex_logo img{
    position: relative;
    z-index: 2;
    width: 100%;
    /*max-width: 230px;*/
    margin: 0 auto;
    display: block;
}
/**/
.flex_menu_b .flex_menu_main{
    width: calc(100% - 601px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.flex_menu_b .flex_menu_main>ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.flex_menu_b .flex_menu_main>ul>li{
    display: inline-block;
    position: relative;
}
.flex_menu_b .flex_menu_main>ul>li>a{
    display: block;
    color: #000232;
    padding: 39px 15px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.content_menu.head-navfixed .flex_menu_b .flex_menu_main>ul>li>a{
    color: #000232;
}
.flex_menu_b .flex_menu_main>ul>li>a:hover,
.flex_menu_b .flex_menu_main>ul>li>a.active{
    color: #d81b35!important;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.flex_menu_b .flex_contact{
    width: 301px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    position: relative;
    padding: 25px 0;
        align-items: center;
    z-index: 1;
    justify-content: center;
}
.flex_menu_b .flex_contact .flex_email>a{
    display: block;
    position: relative;
    background-color: rgb(207 7 15);
    padding: 17px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.4px;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b .flex_contact .flex_email>a:before{
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #ecb041;
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.flex_menu_b .flex_contact .flex_email>a:hover:before{
    width: 500px;
    height: 500px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b .flex_contact .flex_email>a:hover{
    color: #fff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.list_redes_header{
    list-style: none;
    padding-left: 15px;
    margin-bottom: 0;
}
.list_redes_header>li{
    display: inline-block;
    margin-left: 5px;
}
.list_redes_header>li>a{
    display: block;
    color: #00033f;
    padding: 10px 5px;
    font-size: 16px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_redes_header>li>a:hover{
    color: rgb(207 7 15);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/******/
#btn_wsp{
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    text-align: center;
    background: #3dcd30;
    z-index: 30;
    font-size: 35px;
    overflow: visible;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
#btn_wsp::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}
#btn_wsp:hover{
    background: rgb(0 2 50);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
@keyframes pulse-animation{
    0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}
    50%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}
    100%{opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}
}
/*****/
/*DESPLEGABLE MENU */
.li_dropdown > ul {
    position: absolute;
    width: 200px;
    left: 0;
    top: 90%;
    right: 0;
    margin: 0 auto;
    transform: translate(-20%, 0px);
    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;
    list-style: none;
}
.li_dropdown:hover ul {
    visibility: visible;
    z-index: 9;
    opacity: 1;
    top: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.li_dropdown>ul>li>a{
    padding: 10px;
    text-decoration: none;
    color: #000232;
    font-size: 15px;
    z-index: 11;
    text-decoration: none;
    position: relative;
    display: block;
    text-align: center;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.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 {
    background: #cf070f;
    color: #fff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}

/*****/
/************** MENU CELULAR **************/
#toggle_cel{
    display: none;
    color: #000232;
    font-size: 30px;
}
#close_menu_cel{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    color: #cf070f;
}
/**/
.menu_celular{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform: translate(-100%,0);
    -ms-transform: translate(-100%,0);
    -o-transform: translate(-100%,0);
    transform: translate(-100%,0);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.menu_celular.open{
    width: 300px;
    box-shadow: 5px 1px 5px rgb(0 0 0 / 22%);
    -webkit-transform: translate(0%,0);
    -ms-transform: translate(0%,0);
    -o-transform: translate(0%,0);
    transform: translate(0%,0);
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.menu_celular_head{
    position: relative;
}
.menu_celular_head img{
    width: 100%;
    max-width: 300px;
    padding: 20px;
}
/**/
.menu_celular_body h5{
    background: #223a66;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    margin-bottom: 0;
}
.menu_celular_body ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.menu_celular_body>ul>li>a{
    display: block;
    padding: 15px;
    color: #000;
    font-weight: 700;
    border-bottom: 1px solid rgb(204 204 204 / 53%);
    text-decoration: none;
}
/**/
.menu_celular_body .submenu{
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.menu_celular_body .submenu>li>a{
    display: block;
    background: #efefef;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 8px;
    border-bottom: 1px dashed #ccc;
}
/**/
.menu_celular_body .submenu .sub_sub_categoria>li>a{
    display: block;
    padding: 5px 10px;
    color: #000;
}
/******/
@media(max-width: 1420px){
    .flex_menu_b .flex_menu_main>ul>li>a {
        padding: 39px 10px;
        font-size: 16px
    }
}
@media(max-width: 1299px){
    .flex_menu_b .flex_logo {
        width: 200px;
    }
    .flex_menu_b .flex_menu_main {
        width: calc(100% - 496px);
    }
    .flex_menu_b .flex_contact {
        width: 290px;
    }
    .flex_menu_b .flex_logo:before {
        width: 235px;
    }
}
@media(max-width: 1050px){
    .flex_menu_b .flex_menu_main>ul>li>a {
        padding: 39px 7px;
        font-size: 14px;
    }
}
@media(max-width: 991px){
    #toggle_cel{
        display: block;
    }
    .flex_menu_b .flex_menu_main>ul{
        display: none;
    }
    .flex_menu_b .flex_menu_main {
        padding-right: 20px;
        justify-content: flex-end;
    }
}
@media(max-width: 767px){
    .content_menu {
        position: relative;
        width: 100%;
    }
}
@media(max-width: 600px){
    .flex_menu_b .flex_contact{
        display: none;
    }
    .flex_menu_b .flex_logo {   
        padding: 13px 0px;
    }
    .flex_menu_b .flex_menu_main {
        width: calc(100% - 200px);
        padding-right: 0;
    }
}
/*************************************************************************** END INTER HEADER *******************************************************************************/


/***************************************************************************** TITLE GENERAL ********************************************************************************/
.sect_title_general{
	padding: 100px 0;
	padding-bottom: 50px;
}
/****/
.content_title_general{
	text-align: center;
}
.content_title_general h2{
	font-size: 60px;
    font-weight: 700;
    color: #000232;
}
.content_title_general h2.white{
    color: #fff;
}
.content_title_general h5, .content_title_general p{
    color: #e7151d;
    font-size: 22px;
}
/*****/
@media(max-width: 991px){
    .content_title_general h2 {
        font-size: 50px;
    }
    .sect_title_general {   
        padding-top: 50px;
    }
}
@media(max-width: 767px){
    .content_title_general h2 {
        font-size: 40px;
    }
}
/*************************************************************************** END TITLE GENERAL ******************************************************************************/


/***************************************************************************** INTER FOOTER *********************************************************************************/
.sect_main{
    position: relative;
    padding: 50px 0;
}
#bigHalfCircle{
    position: absolute;
    width: 100%;
    height: 39px;
    left: 0;
    top: -39px;
    z-index: 1;
}
#bigHalfCircle path{
    fill: #fff;
}
/******/
.box_footer .box_head h5{
    color: #00033f;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}
.box_footer .list_enlaces{
    list-style: none;
    padding-left: 10px;
}
.box_footer .list_enlaces>li{
    margin-bottom: 15px;
    display: inline-block;
    width: 50%;
}
.box_footer .list_enlaces>li>a{
    display: block;
    color: #00033f;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .list_enlaces>li>a:hover{
    color: #cf070f;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .list_enlaces>li>a span{
    font-size: 10px;
}
/*****/
.list_contacto{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.list_contacto li.item_location{
    margin-bottom: 25px;
}
.list_contacto li.item_phone{
    margin-bottom: 25px;
}
.list_contacto li.item_location,
.list_contacto li.item_phone,
.list_contacto li.item_email{
    position: relative;
}
.list_contacto li.item_location svg,
.list_contacto li.item_phone svg{
    color: #cf070f;
    font-size: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.list_contacto li.item_email svg{
    color: #cf070f;
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 0;
}
.list_contacto li.item_location a, .list_contacto li.item_phone a, .list_contacto li.item_email a{
    display: block;
    padding-left: 60px;
    text-decoration: none;
}
.list_contacto li.item_location a h6,
.list_contacto li.item_phone a h6,
.list_contacto li.item_email a h6{
    color: #00033f;
    font-weight: 700;
}
.list_contacto li.item_location a p,
.list_contacto li.item_phone a p,
.list_contacto li.item_email a p{
    color: #533931;
    margin-bottom: 5px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_contacto li.item_location a:hover p,
.list_contacto li.item_phone a:hover p,
.list_contacto li.item_email a:hover p{
    color: #cf070f;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/******/
.list_destacados{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.list_destacados>li{
    position: relative;
    padding-left: 120px;
    margin-bottom: 30px;
}
.list_destacados>li>a>img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    border-radius: 10px;
}
.list_destacados>li>a{
    text-decoration: none;
}
.list_destacados>li>a .content_destacados h6{
    color: #533931;
}
.list_destacados>li>a .content_destacados span{
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    background: #cf070f;
    border-radius: 3px;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.list_destacados>li>a:hover .content_destacados span{
    background: #00033f;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*** SECT SIGN***/
.sect_sign{
    background: #f5f5f5;
    position: relative;
    border-top: 1px solid #dddddd;
}
/*****/
.box_sign{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
}
/**/
.box_redes_foot{
    width: 320px;
}
.box_redes_foot .list_redes_foot{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.box_redes_foot .list_redes_foot>li{
    display: inline-block;
    width: 80px;
    height: 80px;
    border-left: 1px solid #dddddd;
}
.border_lateral{
    border-right: 1px solid #dddddd;
}
/******/
.derechos{
    width: calc(100% - 320px);
    line-height: 80px;
}
.p_rights{
    margin-bottom: 0;
    text-align: center;
}


/**/
.box_redes_foot .list_redes_foot>li:last-child{
    border-right: 1px solid #dddddd;
}
.box_redes_foot .list_redes_foot>li>a{
    display: block;
    line-height: 80px;
    text-align: center;
    color: #000;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_redes_foot .list_redes_foot>li>a:hover{
    background: #cf070f;
    color: #fff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/*****/
@media(max-width: 991px){
    .order1{
        -webkit-order: 1;
        -moz-order: 1;
        -ms-order: 1;
        -o-order: 1;
        order: 1;
    }
    .order2{
        -webkit-order: 2;
        -moz-order: 2;
        -ms-order: 2;
        -o-order: 2;
        order: 2;
    }
    .order3{
        -webkit-order: 3;
        -moz-order: 3;
        -ms-order: 3;
        -o-order: 3;
        order: 3;
    }
    .box_redes_foot {
        width: 200px;
    }
    .box_footer{
        margin-bottom: 50px;
    }
    .box_redes_foot .list_redes_foot>li {
        width: 50px;
        height: 50px;
    }
    .box_redes_foot .list_redes_foot>li>a {
        line-height: 50px;
    }
    .derechos {
        width: calc(100% - 200px);
        line-height: 50px;
    }
}
@media(max-width: 767px){
    .logo_footer{
        text-align: center;
        margin-bottom: 20px;
    }
    .go_top a {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 30;
    }
    .p_rights {
        padding: 0;
    }
    .box_redes_foot {
        width: 100%;
    }
    .list_redes_foot{
        text-align: center;
    }
    .derechos{
        width: 100%;
        border: 0;
    }
    .box_redes_foot .list_redes_foot>li {
        border: 0;
    }
    .box_redes_foot .list_redes_foot>li:last-child {
        border-right: 0;
    }
}


/*************************************************************************** END INTER FOOTER *******************************************************************************/

/**************************************************************************** SECTION MARCAS ********************************************************************************/
.sect_marcas{
    background: #000232;
    padding: 130px 0;
    position: relative;
}
/*************************************************************************** END SECTION MARCAS *****************************************************************************/
