@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Roboto Slab', sans-serif;
    overflow-x: hidden;
    font-size: 14px;
}
/****************************************************** INTER HEADER ******************************************************/
/**/
.navbar_main{
	position: relative;
}
/**/
.conten_nav{
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.2);
    box-shadow: 0 0 5px rgba(0,0,0,.2);
   	background: #223a66;
    position: relative;
    z-index: 10;
}
.conten_nav:before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #fff;
    z-index: -1;
}
/**/
.flex_menu_b{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	background: #223a66;
	position: relative;
}
.flex_menu_b:after {
    position: absolute;
    right: -50px;
    top: 0;
    background: #223a66;
    width: 130px;
    height: 100%;
    content: '';
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
    z-index: -1;
}
.conten_nav.head-navfixed{
	position: fixed;
	width: 100%;
	z-index: 10;
	top: 0;
}
/**/
.flex_menu_b .flex_logo{
	width: 250px;
	margin-top: 5px;
	position: relative;
}
.flex_menu_b .flex_logo:before{
	content: "";
    position: absolute;
    bottom: 15px;
    left: -25px;
    width: 300px;
    height: 130px;
    background: #223a66;
    -webkit-transform: translate(0,100%);
    -ms-transform: translate(0,100%);
    -o-transform: translate(0,100%);
    transform: translate(0,49%);
    z-index: -1;
    /* border-bottom-left-radius: 100%; */
    /* border-bottom-right-radius: 100%; */
    border-radius: 50%;
    -webkit-box-shadow: 9px 4px 5px 3px rgb(0 0 0 / 8%);
    -moz-box-shadow: 9px 4px 5px 3px rgb(0 0 0 / 8%);
    box-shadow: 9px 4px 5px 3px rgb(0 0 0 / 8%);
}
.flex_menu_b .flex_logo img{
	width: 100%;
	max-width: 300px;
	margin-bottom: 0px;
}
/**/
.flex_menu_b .flex_menu_main{
	width: calc(100% - 300px);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
}
.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;
}
.flex_menu_b .flex_menu_main>ul>li>a{
	display: block;
    color: #fff;
    padding: 39px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b .flex_menu_main>ul>li>a:hover,
.flex_menu_b .flex_menu_main>ul>li>a.active{
    color: #39c7ff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.flex_menu_b .flex_contact{
	width: 50px;

}
.flex_menu_b .flex_contact a{
	display: block;
    padding: 15px 15px;
    color: #fff;
    background: #39c7ff;
    border-radius: 25px;
    text-decoration: none;
    -webkit-transform: translate(50px, 0px);
    -ms-transform: translate(50px, 0px);
    -o-transform: translate(50px, 0px);
    transform: translate(50px, 0px);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.flex_menu_b .flex_contact a:hover{
    color: #fff;
    background: #8ec038;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
/************** MENU CELULAR **************/
#toggle_cel{
}
#close_menu_cel{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    color: #39c7ff;
}
/**/
.menu_celular{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 100%;
    background: #223a66;
    -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: #ffffff;
    color: #223a66;
    font-weight: 600;
    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: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgb(204 204 204 / 53%);
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.menu_celular_body>ul>li>a:hover{
    color: #39c7ff;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.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: 991px){
    .flex_menu_b .flex_menu_main>ul{
        display: none;
    }
    .order1{
        order: 1;
    }
    .order2{
        order: 2;
    }
    .flex_menu_b:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 0;
        height: 0;
        border-right: 50px solid transparent;
        background: transparent;
        border-top: 25px solid transparent;
        border-left: 25px solid #223a66;
        border-bottom: 50px solid #223a66;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        clip-path: none;
        z-index: 1;
    }
    .flex_menu_b .flex_contact a {
        position: relative;
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
        transform: translate(0,0);
        z-index: 2;
    }
    
}
@media(max-width: 500px){
    .flex_menu_b .flex_logo:before {
        width: 240px;
    }
    .flex_menu_b .flex_logo {
        width: 190px;
    }
    .flex_menu_b .flex_menu_main {
        width: calc(100% - 240px);
        padding: 35px 0;
    }
    .flex_menu_b:after {
        border-right: 50px solid transparent;
        border-top: 20px solid transparent;
        border-left: 20px solid #223a66;
        border-bottom: 50px solid #223a66;
    }
}
/**************************************************** END INTER HEADER ****************************************************/

/************************************************* SECTION TITLE GENERAL **************************************************/
.sect_title_general{
	padding: 100px 0;
	padding-bottom: 50px;
}
.title_general{
	text-align: center;
}
.title_general h4{
    color: #42b0d1;
    font-size: 19px;
    font-weight: 400;
}
.title_general h2{
    color: #272F4C;
    font-size: 50px;
    font-weight: 400;
    line-height: 0.9;
}
.title_general h2 span{
	display: block;
	color: #42b0d1;
}
/**/
@media(max-width: 991px){
    .title_general h2 {
        font-size: 40px;
    }
    .sect_title_general {
        padding: 50px 0;
        padding-bottom: 50px;
    }
    .sect_equipo{
        padding-bottom: 100px;
    }
}
@media(max-width: 767px){
    .title_general h2 {
        font-size: 30px;
    }
    .title_general h4 {
        font-size: 17px;
    }
}
/***************************************************** INTER FOOTER *******************************************************/
.sect_foot{
	background-image: url(../../../../public/img/fondo/fondo-footer.jpg);
	background-position: center bottom;
	background-size: cover;
	position: relative;
}
.sect_main{
    position: relative;
}
.sect_main:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #223a66;
    opacity: .9;
}
/**/
.box_contacto_footer{
	background: #fff;
	margin-bottom: 50px;
	margin-top: -174px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	border-radius: 10px;
	box-shadow: 0px 25px 50px 0px rgb(0 0 0 / 25%);
}
.box_contacto_footer .item{
	width: 33.3%;
	padding: 50px 0;
}
.box_contacto_footer .item .content_item{
	width: max-content;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}
.box_contacto_footer .item:nth-child(1) .content_item svg{
    background: #d1f799;
}
.box_contacto_footer .item:nth-child(2) .content_item svg{
    background: #92caf9;
}
.box_contacto_footer .item:nth-child(3) .content_item svg{
    background: #ffb2ad;
}
.box_contacto_footer .item .content_item svg{
	position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #0d286a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.box_contacto_footer .item .content_item span{
	display: block;
    color: #1cba9f;
    font-weight: 600;
}
.box_contacto_footer .item .content_item a{
	display: block;
    color: #062070;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_contacto_footer .item .content_item a:hover{
    color: #062070;
    text-decoration: none;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
/**/
.sect_main{
	padding: 100px 0;
}
.box_footer .box_head img{
	max-width: 230px;
    margin-bottom: 5px;
}
.box_footer .box_head h5{
	color: #fff;
	margin-bottom: 20px;
}
/**/
.box_footer .box_body ul{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.box_footer .box_body ul>li{
	margin-bottom: 10px;
}
.box_footer .box_body ul>li>a{
	color: #a8b2cb;
	text-decoration: none;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.box_footer .box_body ul>li>a:hover{
	color: #8ec038;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
.box_footer .box_body ul>li svg{
	color: #19b197;
	font-size: 13px;
}
.box_footer .box_body p{
	color: #a8b2cb;
	margin-bottom: 20px;
    text-align: justify;
}
/**/
.box_footer .box_foot>ul{
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.box_footer .box_foot>ul>li{
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.box_footer .box_foot>ul>li>a{
	display: block;
    background: rgba(255,255,255,0.17);
    color: #fff;
    height: 100%;
    line-height: 39px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all ease 500ms;
    -o-transition: all ease 500ms;
    transition: all ease 500ms;
}
.box_footer .box_foot>ul>li>a:hover{
	background: #8ec038;
	color: #fff;
	-webkit-transition: all ease 500ms;
	-o-transition: all ease 500ms;
	transition: all ease 500ms;
}
/**/
.box_horario{
	background: #fff;
	padding: 20px;
	border-radius: 10px;
}
.box_horario .box_head h4{
	color: #062070;
	font-weight: 700;
}
.box_horario .box_body>ul>li{
	padding: 5px 0;
	text-align: right;
	border-bottom: 1px dashed #ccc;
	color: #062070;
}
.box_horario .box_body>ul>li b{
	float: left;
}
.box_horario .box_body>ul>li.free{
	color: #91b956;
}
.box_horario .box_body>ul>li.closed{
	color: #fa2d2d;
}
/**/
.sect_sign{
	background: #223a66;
	padding: 30px 0;
}
/**/
.sect_sign p{
	vertical-align: middle;
	margin-bottom: 0;
	color: #fff;
}
.sect_sign p b{
	color: #39c7ff;
}
.design_by{
	text-align: right;
}
/**/
@media(max-width: 1199px){
    .box_contacto_footer .item .content_item a {
        font-size: 16px;
    }
    .box_contacto_footer .item .content_item span {
        font-size: 13px;
    }
}
@media(max-width: 991px){
    .box_contacto_footer .item {
        width: 100%;
        border-bottom: 1px solid rgb(204 204 204 / 41%);
    }
    .box_contacto_footer .item .content_item {
        margin-left: 30px;
        width: auto;
    }
    .sect_foot .row .col-lg-3:nth-child(2) .box_footer{
        text-align: center;
        margin-bottom: 30px;
    }
    .sect_foot .row .col-md-6:nth-child(3) .box_footer,
    .sect_foot .row .col-md-6:nth-child(4) .box_footer{
        width: max-content;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}
@media(max-width: 580px){
    .sect_foot .row .col-lg-3:nth-child(2) .box_footer {
        text-align: left;
    }
        .sect_foot .row .col-md-6:nth-child(3) .box_footer,
    .sect_foot .row .col-md-6:nth-child(4) .box_footer{
        width: 100%;
    }
}
@media(max-width: 360px){
    .box_contacto_footer .item .content_item {
        margin-left: 15px;
    }
    .box_contacto_footer .item .content_item a {
        font-size: 15px;
    }
    .box_contacto_footer .item .content_item svg {
        width: 35px;
        height: 35px;
    }
    .box_contacto_footer .item .content_item {
        padding-left: 45px;
    }
}
/********************************************* END INTER FOOTER **********************************************/