/*
 Nombre del Proyecto: Coophel
 Autor: Eduardo Carballo
 Descripción: Theme de la Página Wed de Coophel
 Versión: 1.0
 Fecha: 02/10/2024
*/

/*==================================
[Tabla de contenido]
====================================
1. Configuraciones Generales
2. Index
3. Sobre Nosotros
4. Créditos y Ahorros (Plantilla 3)
5. Descripción de Servicios (Plantilla 2)
6. Clientes
7. Empleo
8. Noticias (Plantilla 4)
9. Contacto
*/

/*------------------------------------------------------
/ 1. Cofiguraciones generales
/------------------------------------------------------*/

/*-- Menu --*/
.header03{
    position: absolute;
    font-family: 'Montserrat';
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: calc(100% - 200px);
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
    z-index: 3;
}
/*-- Menu del Index --*/
.header04{
    font-family: 'Montserrat';
    margin: auto;
    background: var(--Principal);
    border-bottom: 3px solid rgba(255, 255, 255, .1);
    z-index: 3;
}
/*-- Menu del Index --*/
.header03 .container-fluid,
.header04 .container-fluid{
    padding: 0;
}
.header03 .navbar01,
.header04 .navbar01{
    justify-content: flex-end;
    display: flex;
}
.header03 .logo,
.header04 .logo {
    line-height: 62px;
    margin: 0;
    padding: 10px 0;
    position: relative;
}
.logo img{
    height: 85px;
    text-align: center;
    max-width: 100%;
}
.mainMenu{
    position: relative;
    padding: 0 0 0 32px;
}
.mainMenu ul{
    margin: 0;
    padding: 0;
}
.mainMenu ul li{
    line-height: .8;
    margin: 0 28px 0 0;
    padding: 51px 0;
    display: inline-block;
    position: relative;
}
.mainMenu ul li:last-child{
    margin-right: 0;
}
.mainMenu ul li a{
    font-size: 18px;
    color: var(--Principal);
    display: block;
    font-weight: bolder;
    position: relative;
    z-index: 2;
    padding: 0;
    line-height: .8;
    text-transform: capitalize;
}
.mainMenu > ul > li:before{
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    height: 2px;
    content: '';
    margin: 0 auto;
    width: 0;
    background: var(--Principal);
    transition: width .5s cubic-bezier(.25,.8,.25,1) 0s;
    -moz-transition: width .5s cubic-bezier(.25,.8,.25,1) 0s;
    -webkit-transition: width .5s cubic-bezier(.25,.8,.25,1) 0s;
}
.mainMenu > ul > li:hover:before {
    width: 100%;
    left: 0;
    right: auto;
    background: var(--Secundario);
}
.mainMenu ul li.menu-item-has-children > a:after{
    content: "\f043";
    font-family: 'themewar' !important;
    display: inline-block;
    letter-spacing: 0;
    font-size: 14px;
    color: inherit;
    position: relative;
    top: 0;
    margin-left: 4px;
}
.mainMenu ul li:hover > a,
.mainMenu ul li.current-menu-item > a {
    color: #fff;
}
.mainMenu > ul > li > ul, .mainMenu > ul > li > ul > li > ul{
    padding: 15px 0;
    position: absolute;
    top: 100%;
    left: -20px;
    pointer-events: none;
    min-width: 220px;
    border-radius: 0;
    background: var(--Principal);
    border-bottom: 3px solid var(--Principal);
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 9px 52px -24px rgba(0, 0, 0, .17);
    z-index: 10;
    -webkit-transform: rotateX(-75deg);
    -moz-transform: rotateX(-75deg);
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -webkit-transition: .4s;
    transition: .4s;
}
.mainMenu > ul ul li {
    padding: 0;
    display: block;
    width: 100%;
    padding: 5px 15px 5px;
    margin: 0;
}
.mainMenu > ul ul li:first-child{
    border-top: none;
}
.mainMenu > ul ul li.menu-item-has-children > a:after{
    float: right;
    font-size: 12px;
}

.mainMenu > ul ul li a:before {
    content: '';
    width: 0;
    left: auto;
    right: 0;
    border-bottom: 1px solid transparent;
    position: absolute;
    bottom: 3px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.mainMenu > ul ul li:hover > a:before {
    left: 0;
    right: auto;
    border-bottom: 1px solid currentColor;
    width: 100%;
}
.mainMenu > ul > li > ul > li > ul {
    left: calc(100% + 1px);
    top: 0;
    margin: 0;
}
.mainMenu > ul li:hover > ul{
    pointer-events: inherit;
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotatex(0deg);
    -moz-transform: rotatex(0deg);
    transform: rotatex(0deg);
}
.header03 .mainMenu,
.header04 .mainMenu{
    margin-left: auto;
    padding: 0;
}
.header03 .mainMenu > ul > li,
.header04 .mainMenu > ul > li{
    padding: 55px 0;
}
.header03 .mainMenu ul li a,
.header04 .mainMenu ul li a{
    color: var(--Secundario);
}
.header03 .mainMenu > ul > li > ul,
.header04 .mainMenu > ul > li > ul{
    background: var(--Principal);
}
.header03 .mainMenu > ul > li > ul > li > a,
.header04 .mainMenu > ul > li > ul > li > a{
    color: var(--Secundario);
}
.header03 .mainMenu ul ul li a,
.header04 .mainMenu ul ul li a{
    font-size: 15px;
    letter-spacing: 0;
    line-height: 24px;
    padding: 0;
    position: relative;
    display: inline-block;
}
header .menuToggler{
    display: none;
}
/*-- Menu --*/

/*-- Menu Retraible --*/
.sidebarMenu {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
.sidebarMenuOverlay {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 99;
    transition: all .4s ease-in .8s;
}
.sidebarMenu.active .sidebarMenuOverlay {
    visibility: visible;
    left: 0;
    opacity: 1;
    transition: all .8s ease-out 0s;
}
.sidebarMenuOverlay:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
    height: 100%;
    content: '';
    background: var(--Principal);
    z-index: 999;
}
.SMArea {
    width: 360px;
    height: 100%;
    z-index: 99;
    background: transparent;
    padding: 0;
    overflow-y: auto;
    background: var(--Principal);
    position: fixed;
    left: 0;
    visibility: hidden;
    opacity: 0;
    top: 0;
    transition: all .3s ease-in .3s;
}
.sidebarMenu.active .SMArea {
    opacity: 1;
    visibility: visible;
    top: 0;
    transition: all .2s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.SMAHeader{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px 15px 30px;
    border-bottom: 1px solid var(--Principal);
}
.SMAHeader h3{
    display: flex;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--Secundario);
    border-color: var(--Secundario);
    margin: 0;
    line-height: 22px;
    text-transform: uppercase;
}
.SMAHeader h3 i{
    font-size: 16px;
    position: relative;
    top: -2px;
    margin-right: 6px;
}
.SMACloser {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 99;
    color: var(--Secundario);
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    margin-left: auto;
    border: 1px solid var(--Secundario);
}
.SMACloser:hover {
    color: #fff;
    border-color: #fff;
}
.SMABody{
    margin: 0;
    padding: 0;
}
.SMABody ul{
    margin: 0;
    padding: 0;
}
.SMABody ul li{
    display: block;
    list-style: none;
}
.SMABody ul li a{
    font-size: 18px;
    font-weight: 500;
    color: var(--Secundario);
    text-transform: capitalize;
    line-height: 1.1;
    display: block;
    padding: 14px 30px;
    border-bottom: 1px solid var(--Principal);
    position: relative;
}
.SMABody ul li.active > a, .SMABody ul li:hover > a, .SMABody ul li.current-menu-item > a{
    color: #FFF;
}
.SMABody ul li ul.sub-menu{
    display: none;
}
.SMABody > ul > li > ul li a{
    padding-left: 45px;
    text-transform: capitalize;
    font-size: 18px;
    letter-spacing: 0;
}
.SMABody > ul > li > ul > li > ul > li a{
    padding-left: 60px;
}
.SMABody ul li.menu-item-has-children > a:after{
    font-family: 'themewar' !important;
    content: "\f043";
    font-size: 15px;
    font-weight: 400;
    position: absolute;
    right: 29px;
    top: 13px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
/*-- Menu Retraible--*/

/*-- Baner --*/
.page_banner{
    position: relative;
    height: 400px;
    padding: 190px 0 90px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
.page_banner:after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #007f929f;
}
.page_banner .container{
    position: relative;
    z-index: 2;
}
.banner-title{
    font-size: 50px;
    color: #fff;
    line-height: 50px;
    margin: 0 0 20px;
}
.breadcrumbs {
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
}
.breadcrumbs a{
    color: inherit;
    display: inline-block;
}
.breadcrumbs a i{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    margin-right: 7px;
}
.breadcrumbs span{
    margin: 0 5px;
}
.breadcrumbs:hover a,
.breadcrumbs:hover a i{
    color: var(--Secundario);
}
/*-- Baner --*/

/*-- Copyright --*/
.fcopyright{
    position: static;
    background: var(--Principal);
    padding: 31px 0 32px;
    font-size: 17px;
    font-weight: 600;
    color: var(--Secundario);
}
.fcopyright p{
    margin: 0;
}
/*-- Copyright --*/

.colorgl{
    color: var(--Principal);
}

.colorgf{
    background-color: var(--Principal);
}
.colorbla{
    color: #010101;
}

/*------------------------------------------------------
/ 2. Index
/------------------------------------------------------*/

/*-- Carrusel --*/
.slider_02{
    position: relative;
    margin: 0;
    overflow: hidden;
    width: 100%;
}
.rev_slider_wrapper {
    width: 100%; /* Asegúrate de que el contenedor del wrapper ocupe el 100% */
    height: auto; /* Ajusta la altura automáticamente */
}

.rev-slidebg {
    width: 100%; /* Asegura que las imágenes se ajusten al ancho del contenedor */
    height: auto; /* Ajusta la altura según el ancho para mantener la proporción */
    object-fit: cover; /* Hace que la imagen cubra completamente el contenedor */
}
.rev_slider {
    max-width: 100%; /* Limita el ancho al tamaño del contenedor */
    margin: 0 auto; /* Centra el slider */
}
.slider_02 .tparrows.custom{
    color: var(--Principal);
}
.slider_02 .tparrows.custom:hover{
    color: #fff;
}
.ws_nowrap{
    white-space: normal !important;
}
.tparrows.custom{
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--Principal);
    line-height: 80px;
    border-radius: 50%;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    -o-transition: all ease 300ms;
    -ms-transition: all ease 300ms;
}
.tparrows.custom:before{
    color: inherit;
    content: "\f56a";
    line-height: 80px;
    font-size: 18px;
    font-family: 'themewar' !important;
}
.tp-rightarrow.tparrows.custom:before {
    content: "\f56b";
}
.tparrows.custom:hover{
    background: var(--Principal);
    color: #FFF;
}
.tp-bannertimer{
    display: none !important;
}
.ws_nowrap {
    white-space: normal !important;
}
.tp-caption .qu_btn{
    font-size: 16px !important;
    line-height: 60px !important;
    transition: all ease 400ms !important;
    -moz-transition: all ease 400ms !important;
    -webkit-transition: all ease 400ms !important;
}
.slider_03 .qu_btn:before{
    background: #fff;
}
.slider_03 .qu_btn:hover{
    color: var(--Secundario);
}
.slider_03{
    position: relative;
    margin: 0;
    overflow: hidden;
}
.tp-bullets .tp-bullet{
    background: transparent;
    width: 122px;
    height: 122px;
    text-align: center;
    border: 2px solid rgba(0, 128, 0, 0.100);
    border-radius: 50%;
    transition: all ease 400ms !important;
    -moz-transition: all ease 400ms !important;
    -webkit-transition: all ease 400ms !important;
}
/*-- Carrusel --*/

/*-- Servicios --*/
.folioSlider01.owl-carousel{
    position: relative;
    overflow: hidden;
}
.folioItem01{
    position: relative;
    overflow: hidden;
}
.folioItem01:after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/bg/folio.png);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.folioItem01:hover:after{
    visibility: hidden;
    opacity: 0;
}
.folioItem01:before{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, .55);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.folioItem01:hover:before{
    visibility: visible;
    opacity: 1;
}
.folioSlider01 .folioItem01 img{
    width: 100%;
    height: auto;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.folioItem01:hover img {
    transform: scale(1.1) rotate(-1deg);
    -moz-transform: scale(1.1) rotate(-1deg);
    -webkit-transform: scale(1.1) rotate(-1deg);
}
.folioContent{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 80px;
    z-index: 2;
    transform: translate3d(0,-47px, 0);
    -moz-transform: translate3d(0, -47px, 0);
    -webkit-transform: translate3d(0, -47px, 0);
}
.folioItem01:hover .folioContent{
    transform: translate3d(0, -137px, 0);
    -moz-transform: translate3d(0, -137px, 0);
    -webkit-transform: translate3d(0, -137px, 0);
}
.folioContent .cat{
    display: inline-block;
    position: relative;
    font-size: 18px;
    color: #fff;
    letter-spacing: .64px;
    margin: 0 0 4px;
}
.folioContent .cat:before{
    position: relative;
    display: inline-block;
    left: 0;
    top: -4px;
    content: '';
    width: 40px;
    height: 2px;
    margin-right: 11px;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.folioContent .cat:hover{
    color: var(--Principal);
}
.folioContent .cat:hover:before{
    background: var(--Principal);
}
.folioContent h3{
    font-size: 23px;
    color: #fff;
    line-height: 30px;
    margin: 0 0 23px;
}
.folioContent h3 a{
    color: inherit;
}
.folioContent h3 a:hover{
    color: var(--Secundario);
}
.folioItem01 .fm{
    position: absolute;
    left: 80px;
    bottom: 75px;
    z-index: 2;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    display: inline-block;
    letter-spacing: .64px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: transform 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms;
    -moz-transition: transform 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms;
    transition: transform 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms;
    transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -webkit-transform: translate3d(-60px, 0, 0);
}
.folioItem01 .fm i{
    display: inline-block;
    width: 60px;
    color: #fff;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
    background: linear-gradient(90deg, var(--Principal) 0%, var(--Secundario) 100%);
    margin-right: 20px;
}
.folioItem01 .fm:hover{
    color: var(--Secundario);
}
.folioItem01:hover .fm{
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}
/*-- Servicios --*/

/*-- Empresas Hermanas --*/
.client-slider2.owl-carousel{
    position: relative;
}
.client-slider2.owl-carousel .owl-item {
    text-align: center;
}
.client-slider2.owl-carousel img {
    display: inline-block;
    text-align: center;
}
/*-- Empresas Hermanas --*/

/*------------------------------------------------------
/ 3. Sobre Nosotros
/------------------------------------------------------*/

 /*-- Pilares de Gestión --*/
 .processSection03 .col-lg-2{
    padding-right: 2px;
    padding-left: 2px;
}
.icon_box_03{
    position: relative;
    padding: 10px 15px ;
    margin: 0;
}
.icon_box_03 .ib_box{
    position: relative;
    z-index: 3;
    width: 152px;
    height: 152px;
    text-align: center;
    border: 3px solid var(--Secundario);
    border-radius: 50%;
    font-size: 52px;
    line-height: 155px;
    display: inline-block;
    color: var(--Secundario);
    margin: 0 0 36px;
}
.icon_box_03:hover .ib_box{
    border-color: var(--Principal);
    color: #fff;
}
.icon_box_03 .clase_titu{
    color: var(--Secundario);
}
.icon_box_03:hover .clase_titu{
    color: var(--Principal);
}
.icon_box_03 .ib_box:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';

    border-radius: 50%;
    z-index: -2;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon_box_03 .ib_box:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background: var(--Principal);
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    transform: scale(.5);
    -moz-transform: scale(.5);
    -webkit-transform: scale(.5);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon_box_03:hover .ib_box:before {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}
.icon_box_03 h3{
    font-size: 25px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 14px;
}
.icon_box_03 p{
    font-size: 16px;
    font-weight: 500;
}
 /*-- Pilares de Gestión --*/

/*-- Sobre Coophel --*/
.quAccordion{
    position: relative;
}
.quAccordion .card {
    position: relative;
    z-index: 2;
    background: #FFF;
    border-radius: 50px;
    margin: 0 0 20px;
    padding: 12px 20px;
    border: none;
    -webkit-box-shadow: 0px 10px 34px 0px rgba(27, 35, 40, 0.02);
    -moz-box-shadow:    0px 10px 34px 0px rgba(27, 35, 40, 0.02);
    box-shadow:         0px 10px 34px 0px rgba(27, 35, 40, 0.02);
}
.accordion > .card:not(:first-of-type),
.accordion > .card:not(:last-of-type){
    border-radius: 50px;
}
.quAccordion .card .card-header {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}
.quAccordion .card .card-header h2 {
    margin: 0;
    padding: 0;
    border: none;
}
.quAccordion .card .card-header h2 button {
    border-radius: 0;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: var(--Principal);
    line-height: 36px;
    display: flex;
    padding: 0;
    width: 100%;
    text-align: left;
    border-radius: 0;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.quAccordion .card .card-header h2 button span {
    width: 35px;
    height: 35px;
    background: linear-gradient(90deg, var(--Principal) 0%, var(--Secundario) 100%);
    position: relative;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin: 0 15px 0 0;
}
.quAccordion .card .card-header h2 button span:before {
    content: '';
    width: 2px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.quAccordion .card .card-header h2 button span:after {
    content: '';
    width: 8px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.quAccordion .card .card-header h2 button:not(.collapsed) span:before{
    display: none;
}
.quAccordion .card .card-body {
    position: relative;
    padding: 15px 25px 25px 0;
    top: 0;
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
    border: none;
}
/*-- Sobre Coophel --*/



/*------------------------------------------------------
/ 9. Contacto
/------------------------------------------------------*/

/*-- Horarios --*/
.horarios h1{
    text-align: center;
    color: var(--Principal);
    font-size: 55px;
    padding-top: 10px;
}
.horarios h2{
    text-align: center;
    color: var(--Principal);
    font-size: 45px;
}
/*-- Horarios --*/

/*-- Ubicaciones de Agencias --*/
.icon_box_10{
    position: relative;
    padding-left: 130px;
    padding-top: 65px;
    margin: 0;
    line-height: 1.2;
}
.icon_box_10 .ib_box{
    position: absolute;
    z-index: 3;
    left: 0;
    top: 40px;
    width: 102px;
    height: 102px;
    text-align: center;
    color: #fff;
    line-height: 102px;
    font-size: 36px;
    border: 2px solid var(--Principal);
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon_box_10:hover .ib_box{
    border-color: var(--Secundario);
    color: #fff;
}
.icon_box_10:hover .colorgl,
.icon_box_10:hover p i{
    color: var(--Secundario);
}
.icon_box_10 .ib_box:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background: var(--Principal);
    border-radius: 50%;
    z-index: -2;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon_box_10 .ib_box:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background: var(--Secundario);
    border-radius: 50%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    transform: scale(.5);
    -moz-transform: scale(.5);
    -webkit-transform: scale(.5);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon_box_10:hover .ib_box:before {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}
.icon_box_10 h3{
    font-size: 27.5px;
    line-height: 37px;
    font-weight: 900;
    margin: 0 0 14px;
}

.icon_box_10 a:hover{
    font-weight: bold;
    color: var(--Secundario);
}
.icon_box_10 p{
    font-size: 18px;
}
iframe.map{
    height: 250px;
}
.icon_box_10 p i{
    color: var(--Principal);
}
i.rote{
    display: inline-block;
    transform: rotate(90deg);
}
/*-- Ubicaciones de Agencias --*/

/*-- Charlas --*/
.comHistorySec .secTitle{
    font-size: 60px;
    line-height: 65px;
    margin: 50px 0 30px;
}
.historyWrapper{
    position: relative;
}
.historyItem{
    position: relative;
    padding: 28px 0 32px;
}
.historyItem h2{
    font-size: 80px;
    line-height: 80px;
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    color: transparent;
    -webkit-text-stroke: 1px #bd03061a;
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    margin: auto 0;
}
.historyItem:hover h2{
    color: var(--Terciario);
    -webkit-text-stroke: 1px var(--Terciario);
}
.historyItem:last-child{
    padding-bottom: 0;
}
.historyItem img{
    width: 370px;
    height: 300px;
}
.historyContent{
    position: relative;
    z-index: 2;
    padding-left: 45px;
    margin: 0 0 0;
}
.historyContent:after{
    z-index: -1;
    position: absolute;
    left: -15px;
    top: 0;
    content: '';
    bottom: 0;
    margin: auto 0;
    width: 60px;
    height: 1px;
    background: #bd0306b8;
}
.hcinner{
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: auto;
    height: auto;
    background: var(--Principal);
    border-radius: 50px;
    padding: 32px 40px;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    -moz-box-shadow:    0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    box-shadow:         0px 16px 32px 0px rgba(0, 0, 0, 0.04);
}
.historyContent h3{
    color: var(--Secundario);
    font-size: 25px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 10px;
}
.historyContent p{
    margin: 0;
    color: #fff;
}
.bars{
    height: 100%;
    width: 1px;
    background: #bd0306b8;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    border-radius: 10px;
    margin: auto;
    text-align: center;
}
.reverse.historyItem h2{
    right: auto;
    left: 58px;
}
.reverse .historyContent{
    text-align: right;
    padding-left: 0;
    padding-right: 45px;
}
.reverse .historyContent:after{
    left: auto;
    right: -15px;
}
.reverse .hcinner{
    left: 0;
    right: auto;
    text-align: left;
}
.jornadasmedicas2{
    margin: 60px 0 0;
}
.jornadasmedicas2 .titulo{
    text-align: center;
    margin: 30px 0;
    font-size: 45px;
}
.jornadasmedicas2 span{
    color: var(--Principal);
}
.folioItem03{
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}
.folioSlider03 .folioItem03 img{
    width: 100%;
    border-top: solid 4px var(--Principal);
    border-bottom: solid 4px var(--Principal);
    border-right: solid 2px var(--Principal);
    border-left: solid 2px var(--Principal);
    height: auto;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/*-- Internos --*/
.abthumb2{
    position: absolute;
    bottom: -105px;
}
.abthumb2 img{
    max-height: 530px;
    margin-left: -60px;
}
.listEspace{
    margin-bottom: 0;
}

/*-- Especialistas --*/
.aboutSection01 .secTitle{
    font-size: 60px;
}
.abthumb{
    position: absolute;
    right: -230px;
    bottom: -105px;
}
.abthumb img{
    max-height: 680px;
}
.listItem {
    position: relative;
    margin: 0 0;
    padding: 0;
}
.listItem li {
    list-style: none;
    display: inline-flex;
    width: 100%;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    line-height: 34px;
    margin: 0 0 1px;
}
.listItem li i {
    position: relative;
    top: 4px;
    min-width: 25px;
    height: 25px;
    background: #edecec;
    color: var(--Principal);
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    display: inline-block;
    margin-right: 15px;
    -webkit-box-shadow: 0px 2px 46px 0px rgba(13, 30, 53, 0.22);
    -moz-box-shadow:    0px 2px 46px 0px rgba(13, 30, 53, 0.22);
    box-shadow:         0px 2px 46px 0px rgba(13, 30, 53, 0.22);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.listItem li:hover i{
    background: var(--Principal);
    color: var(--Secundario);
}

/*-- Jornadas Medicas --*/
.jornadasmedicas{
    margin: 0 0 50px;
}
.jornadasmedicas .titulo{
    text-align: center;
    margin: 30px 40px;
    font-size: 45px;
}
.jornadasmedicas span{
    color: var(--Principal);
}
.folioItem02{
    position: relative;
    overflow: hidden;
}
.folioSlider01 .folioItem02 img,
.folioSlider02 .folioItem02 img{
    width: 100%;
    border-top: solid 4px var(--Principal);
    border-bottom: solid 4px var(--Principal);
    border-right: solid 2px var(--Principal);
    border-left: solid 2px var(--Principal);
    height: auto;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--Secundario);
}
.image-thumbnail {
    cursor: pointer;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    cursor: pointer;
    color: var(--Principal);
}
