/*
Theme Name: Tema Agencia Böll
Author: Rodrigo Berroeta (Agencia Böll)
Author URI: https://www.agenciaboll.com
Description: Plantilla desarrollada para proyecto web Böll. Agencia Böll
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
:root {
    --color-principal: #ff4438;
    --color-secundario: #000;
    --color-verde-neon: #42ef43;
    --font-tits: 'Bebas Neue', sans-serif;
    --font-textos: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    background-color: #000 !important;
    font-family: var(--font-textos);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background: #ffffffab;
    /* 00f5ff */
    border-radius: 50%;
    opacity: 0.7;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/** Fin particulas **/

/** Botón NEON **/
.ue_neon_btn {
    padding: 15px 30px 15px 30px;
    background-color: var(--color-principal);
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 40px;
    overflow: visible;
    transition: 0.5s;
    text-decoration: none;
    font-family: var(--font-textos);
    box-shadow: 0 6px 16px rgba(255, 68, 56, .6) !important;
}

.ue_neon_btn:hover {
    background-color: var(--color-secundario);
    color: #fff;
}

.ue_neon_btn:hover::before,
.ue_neon_btn:hover::after {
    transition: all 0.5s;
    animation-play-state: paused;
    background: conic-gradient(from var(--angle), var(--color-verde-neon) 0deg, var(--color-verde-neon) 360deg);
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@property --hueuc_neon_glowing_button_effect_elementor_227f38b0 {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateuc_neon_glowing_button_effect_elementor_227f38b0 {
    0% {
        --angle: 0deg;
    }

    50% {}

    100% {
        --angle: 360deg;
    }
}

/** Fin Botón NEON **/

.ue_neon_btn.btnHeader {
    padding: 7px 20px;
    box-shadow: 0 6px 16px rgba(255, 68, 56, .4) !important;
}

.color_ppal {
    color: var(--color-principal) !important;
}

.flex_btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn.btnAdv,
.btnAdv {
    /* background: -webkit-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: -moz-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c); */
    background: transparent;
    padding: 10px 25px;
    color: #fff;
    border-radius: 50px;
    border: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 13px;
    min-width: 150px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.btnAdv::before {
    content: '';
    background: linear-gradient(to top, var(--color-principal), var(--color-secundario), var(--color-verde-neon), var(--color-secundario));
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: 4s linear infinite rotar;
}

@keyframes rotar {
    from {
        transform: rotate(0deg);
    }

    To {
        transform: rotate(360deg);
    }
}

.btn.btnAdv:hover {
    /* background: -webkit-linear-gradient(286deg, #808080, #808080);
    background: linear-gradient(286deg, #808080, #808080);
    background: -moz-linear-gradient(286deg, #808080, #808080); */
    background: #111;
    color: #fff;
}

.btn.btnAdv:hover::before {
    animation-play-state: paused;
}

.btn.btnVerde,
.btn.btnOutlineVerde {
    background: #74bc1e;
    border: 0;
    color: #fff;
    padding: 10px 20px;
    min-width: 200px;
    transition: all .4s ease;
}

.btnVerde:hover {
    color: #fff;
    background: #fd8204;
}

.btn.btnOutlineVerde {
    background: transparent;
    box-shadow: inset 0 0 0 2px #74bc1e;
}

.btn.btnOutlineVerde:hover {
    background: #74bc1e;
    color: #fff;
}

/** HEADER ***/

.cabecera_ppal {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #0c0c0c, transparent);
    padding: 10px 0 20px;
    transition: all .3s ease;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo_ppal {
    /* filter: contrast(0) brightness(1800); */
    width: 130px;
    transition: all .3s ease;
}

.menu_principal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.menu_principal .menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    font-size: 12px;
}

.menu_principal .menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
}

.menu_principal .btnVerde,
.menu_principal .btnNaranja,
.menu_principal .btn.btnOutlineVerde {
    min-width: 120px;
}

.btnes_head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.rrss_head {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.rrss_head a {
    color: #fff;
    font-size: 20px;
}

.rrss_head.rrss_movil {
    margin-top: 25px;
}

.rrss_head.rrss_movil a {
    background: #111;
    padding: 9px 10px;
    border-radius: 50%;
    line-height: 1;
}

/** on scroll **/
.cabecera_ppal.scrolling {
    position: fixed;
    top: 0;
    background: #000;
    box-shadow: 0 0 7px rgba(0, 0, 0, .2);
    padding: 5px 0;
}

.scrolling .logo_ppal {
    /* filter: contrast(0) brightness(0); */
    width: 150px;
}

.scrolling .menu_principal .menu li a,
.scrolling .rrss_head a {
    color: #fff;
}

.scrolling .btn.btnOutlineVerde {
    color: #74bc1e;
}

.scrolling .mobile_head .rrss_head.rrss_movil a {
    color: #fff;
}

/** fin on scroll **/

/*** BODY ***/
.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Para que los círculos no interfieran con las interacciones del usuario */
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Ajusta el nivel de difuminado */
    opacity: 0.3;
    /* Ajusta la opacidad para un efecto sutil */
    animation: pulse 10s infinite alternate;
    /* Animación opcional para un movimiento suave */
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 0, 0, 0.7);
    /* Rojo para el efecto de luz */
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.5);
    /* Blanco para el efecto de luz */
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 0, 0, 0.6);
    bottom: -80px;
    left: 20%;
    animation-delay: 4s;
}

.circle-4 {
    width: 350px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.4);
    top: 10%;
    right: 15%;
    animation-delay: 6s;
}

/* Animación opcional para un efecto de "respiración" */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.sombras_logos {
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
}

.logos_sombra .premium-adv-carousel-no-lightbox .premium-adv-carousel__inner-container::before,
.logos_sombra .premium-adv-carousel-no-lightbox .premium-adv-carousel__inner-container::after {
    content: '';
    width: 20%;
    height: 100%;
    position: absolute;
    lefT: 0;
    top: 0;
    background: linear-gradient(to right, #000 10%, transparent);
    z-index: 2;
}

.logos_sombra .premium-adv-carousel-no-lightbox .premium-adv-carousel__inner-container::after {
    left: unset;
    right: 0;
    background: linear-gradient(to left, #000 10%, transparent);
}

.boll_box {
    padding: 40px;
    border: 1px solid #ff443838;

    border-radius: 25px;
    font-family: 'Manrope', sans-serif;
    display: flex;
    gap: 20px;
    flex-direction: column;
    transition: all .35s ease-in-out;
}

.boll_box.box_centro {
    transition: all .35s ease-in-out;
    background: linear-gradient(135deg, #ff443826, #000 80%);
    box-shadow: 0 6px 26px rgba(255, 68, 56, .25) !important;
}

.content_boll p {
    color: #ffffff7d;
    font-size: 16px;
}

.borde_glass {
    padding: 12px;
    border-radius: 20px;
    background: linear-gradient(72deg, rgb(126 203 248 / 7%) 10%, #a1dafb87, rgb(126 203 248 / 7%) 90%);
    backdrop-filter: blur(10px);
    outline: 1px solid #a1dafb2b;
}

.box_caso_exito {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.ce_video video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.ce_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(to top, #000000e0, #00000087 50%);
    color: #fff;
}

.ce_head {
    text-align: center;
}

.ce_head .num {
    font-size: 60px;
    font-weight: 800;
}

.ce_head .texto_ce {
    font-size: 20px;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-principal);
    text-shadow: 0 6px 16px rgba(255, 68, 56, .35);
}

.ce_body {
    font-family: var(--font-textos);
    font-size: 16px;
    color: #ffffffcf;
    padding-bottom: 20px;
}

.ce_body img {
    width: 110px;
    opacity: .8;
    margin-bottom: 10px;
    /* filter: contrast(0) brightness(1500); */
}

.ce_body a i {
    margin-left: 10px;
    transform: rotate(-45deg);
}

.carrusel_ce::after {
    content: '';
    width: 15%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to left, #000000 10%, transparent);
    z-index: 2;
}

.icono_servicio .elementor-image-box-img {
    background: linear-gradient(to right, rgba(255, 68, 56, .25), rgb(254 94 84 / 25%));
    padding: 15px;
    border-radius: 10px;
}


.boxes_agenda .elementor-icon-box-title {
    position: relative;
    margin-bottom: 30px;
}

.boxes_agenda .elementor-icon-box-title .numero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 0;
    font-size: 100px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff40;
}









/* VVV Everything you need VVV */
.scroll-down {
    position: relative;
}

/* #scroll-down-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  } */

#scroll-down-animation h2 {
    color: #fff;
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 200;
    font-size: 14px;
}

.mouse {
    margin: 0 auto 5px;
    display: block;
    border-radius: 50px;
    border: 2px solid #fff;
    height: 60px;
    width: 30px;
    position: relative;
    cursor: pointer;
}

.move {
    position: absolute;
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: move 2s linear infinite;
}

@keyframes move {
    0% {
        transform: translate(-50%, 5px);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, 20px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 40px);
        opacity: 0;
    }
}

@keyframes rotar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.iconos_home img {
    filter: contrast(1) brightness(1500);
}

/* .iconos_home .elementor-image-box-title {
    background: -webkit-linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #fff, #e9e9e9, #d3d3d3, #a9a9a9);
    background: linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #fff, #e9e9e9, #d3d3d3, #a9a9a9);
    background: -moz-linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #fff, #e9e9e9, #d3d3d3, #a9a9a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.small_subt {
    font-size: 12px;
    display: block;
}

.box_border>.elementor-widget-wrap {
    border: 3px solid transparent;
    border-image: linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c) 1;
}

.list_flex {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 40px;
}

.flex_item_list {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info_icono {
    width: 30%;
}

.info_icono img {
    width: 50px;
    height: 50px;
}

.info_list {
    width: 68%;
    padding: 10px 1%;
    color: #ffffffa3;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.galeria_home #gallery-1 img {
    border: 0;
}

.tarjeta {
    display: table;
    min-width: 180px;
    transition: all .4s ease;
}

.tarjeta.tarjeta_izq {
    margin-left: auto;
}

.tarjeta.tar_destacada {
    background: -webkit-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: -moz-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    display: table;
    margin: 0 auto;
}

.tarjeta.tar_destacada .efecto_img {
    padding: 15px 40px;
    text-align: center;
    border: 0;
}

.tarjeta .efecto_img {
    padding: 10px 30px;
    border: 2px solid transparent;
    text-align: center;
    border-image: -webkit-linear-gradient(132deg, #a9a9a9, #d3d3d3, #e9e9e9, #d3d3d3, #a9a9a9) 1;
}

.tarjeta:hover {
    background: -webkit-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: -moz-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    cursor: pointer;
}

.tarjeta:hover .efecto_img a {
    color: #1c1c1c;
    position: relative;
    z-index: 3;
}

.tarjeta.tar_destacada .efecto_img a {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
}

.tarjeta .efecto_img a {
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.tarjeta .efecto_img a small {
    display: block;
    font-size: 11px;
    font-weight: 400;
}

.tarjeta.tar_destacada .efecto_img a {
    color: #1c1c1c;
}

/*** Sección form ***/
.content_form_box {
    overflow: hidden;
}

.flex_form {
    display: flex;
}

.form_flex {
    padding: 30px 50px 30px 0px;
}

.flex_row {
    display: flex;
    gap: 15px;
}

.flex_row.col_row {
    flex-direction: column;
    gap: 10px;
}

.flex_row p {
    width: 100%;
    margin-bottom: 7px;
}

.wpcf7 label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    width: 100%;
}


.form_flex .wpcf7-form-control {
    background: #FFFFFF6E;
    color: #fff;
    width: 100%;
    border-radius: 3px;
    height: auto;
    padding: 5px 10px;
    border: 0px;
    box-shadow: none;
    height: 35px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.form_flex .wpcf7-form-control.wpcf7-acceptance {
    background: transparent;
}

.form_flex .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wpcf7 .form_flex .wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    align-items: center;
    gap: 7px;
}

.form_flex .wpcf7-form-control.wpcf7-submit {
    width: auto;
    min-width: 100px;
    background: #fff;
    color: #1c1c1c;
}

.form_flex .wpcf7-form-control::placeholder {
    color: #bdccd4;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    opacity: .8;
}

.wpcf7-textarea {
    max-height: 100px;
}

.form_flex .wpcf7-form-control.btnAdv {
    background: -webkit-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    background: -moz-linear-gradient(286deg, #808080, #b6b6b6, #fdfdfd, #d0d0d0, #9c9c9c, #9c9c9c);
    display: table;
    width: auto;
    padding: 10px 25px;
    color: #1c1c1c;
    border: 0;
}

.mapa_adv iframe {
    margin-bottom: -6px;
}

/** Sección MAPA **/
.flex_iconos {
    display: flex;
    gap: 10px;
}

.boxicon {
    display: flex;
    gap: 5px;
    align-items: center;
}

.boximg img {
    width: 45px;
}

.boxtxt {
    color: #fff;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.btn_flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.box_img_contacto>.elementor-widget-container {
    position: relative;
    overflow: hidden;
}

.box_img_contacto>.elementor-widget-container::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1c1c1cb0;
    backdrop-filter: blur(4px);
    /* filter: blur(10px); */
}

.box_flotante,
.box_int_contacto {
    position: absolute !important;
    top: 50%;
    lefT: 50%;
    width: auto;
    transform: translate(-50%, -50%);
}

.box_info_contacto,
.box_int_contacto {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_int_contacto {
    flex-direction: column;
}

.box_int_contacto h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    font-size: 40px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.box_int_contacto p {
    color: #fff;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: 1.3;
}

.box_int_contacto.boxes_der h2 {
    font-size: 22px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

/* .box_flotante.box_final_contacto {
    transform:unset;
    top:7%;
    right:7%;
    left:unset;
}

.box_flotante.box_final_contacto .box_int_contacto.boxes_der h2 {
    text-align:right;
} */


/* =================================================================
====================Página interna====================
============================================================== */
.ocultar {
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

body.blog .cabecera_ppal {
    background: #fff;
    padding-bottom: 0;
}

body.blog .menu_principal .menu li a {
    color: #1c1c1c;
}

body.blog .logo_ppal {
    filter: contrast(0) brightness(0);
    max-width: 120px;
}

body.page-template-page-servicios .logo_ppal {
    /* filter: none; */
    max-width: 170px;
}

.container.mw1000 {
    max-width: 700px;
}

.submenu_int {
    background: #1c1c1c;
}

.submenu_flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.menuitem {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.menuitem.activo,
.menuitem:hover {
    background-color: #ffffff40;
}

.menuitem a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
}

.menuitem:hover a {
    color: #fff;
}

.smalltxt {
    font-size: 14px;
}

.col_equipo .elementor-widget-wrap.elementor-element-populated {
    overflow: hidden;
}

.secc_equipo .iconos_equipo {
    position: absolute;
    top: 15px;
    z-index: 3;
    padding-right: 10px;
}

.secc_equipo .abs_titulo {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
    padding: 30px 20px 20px 20px;
    z-index: 2;
}


/****************************************************************
**** PAGINA BLOGs ********************************
**************************************************************** */

.wrap_blog {
    padding-top: 150px;
    padding-bottom: 60px;
    background: #96A6FD1A;
}

.blog_page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog_page .article-loop {
    width: 31%;
    margin-bottom: 10px;
}

.content_video_frame {
    max-width: 600px;
    margin: 30px auto;
    display: block;
}

.flex_blog {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.box_img_video {
    height: 315px;
    width: 100%;
}

.box_img_video img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.box_content_blog {
    padding: 20px;
}

.box_content_blog h2 {
    font-family: 'Yummo W03', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.box_content_blog h2 a {
    color: #000;
}

.box_content_blog a {
    text-decoration: none;
}

.box_content_blog p {
    font-size: 13px;
    line-height: 1.3;
}

.primary-sidebar.widget-area {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 7px #9d9d9d0d;
}

.primary-sidebar.widget-area h2 {
    font-family: 'Yummo W03', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.primary-sidebar.widget-area ul li {
    margin-bottom: 10px;
    background: #0000000a;
    padding: 10px;
    border-radius: 10px;
}

.primary-sidebar.widget-area a {
    /* text-decoration: none; */
    font-family: 'Yummo W03', sans-serif;
    color: #000;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.primary-sidebar.widget-area .wp-block-latest-posts__post-excerpt {
    font-size: 13px;
    font-family: 'Yummo W03', sans-serif;
}

.wp-block-latest-posts__post-date,
.box_content_blog .fecha_post {
    color: #D2D314;
    font-family: 'Yummo W03', sans-serif;
    font-size: 11px;
}


.socios-idicam #gallery-1 img,
.socios-idicam #gallery-2 img {
    border: 0;
}


/****************************************************************
**** PAGINA INTERNA BLOG ********************************
**************************************************************** */
body.single.single-post .cabecera_ppal,
body.single-videoteca .cabecera_ppal,
body.page-template-page-videoteca .cabecera_ppal,
body.page-template-page-blogidicam .cabecera_ppal {
    position: relative;
    background: #fff;
}

body.single.single-post .logo_ppal,
body.single-videoteca .logo_ppal,
body.page-template-page-videoteca .logo_ppal,
body.page-template-page-blogidicam .logo_ppal {
    filter: brightness(0);
    width: 80px;
}

body.single.single-post .cabecera_ppal .menu_principal .menu li a,
body.single.single-post .cabecera_ppal .rrss_head a,
body.single-videoteca .cabecera_ppal .menu_principal .menu li a,
body.single-videoteca .cabecera_ppal .rrss_head a,
body.page-template-page-videoteca .cabecera_ppal .menu_principal .menu li a,
body.page-template-page-videoteca .cabecera_ppal .rrss_head a,
body.page-template-page-blogidicam .cabecera_ppal .menu_principal .menu li a,
body.page-template-page-blogidicam .cabecera_ppal .rrss_head a {
    color: #1c1c1c;
}

.blog_wrap {
    background: #f0f0f0;
    /* padding: 70px 0; */
}

.seccion_blog_single {
    display: flex;
    gap: 30px;
}

.seccion_blog_single article {
    width: 70%;
}

.seccion_blog_single .sidebar_col {
    width: 30%;
}

.seccion_blog_single article h1 {
    font-family: 'Yummo W03', sans-serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
}


.modelpup {
    height: auto !important;
    margin-bottom: 30px;
}


/*** carrusel temp **/
#carrusel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* #carrusel .left-arrow {
    position: absolute;
    left: 10px;
    z-index: 1;
    top: 50%;
    margin-top: -9px;
}

#carrusel .right-arrow {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 50%;
    margin-top: -9px;
} */

.carrusel {
    display: flex;
    align-items: stretch;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.carrusel>.product {
    width: 25%;
    text-align: center;
    padding: 5px;
}

.content_video_frame_ {
    position: relative;
}

.int_card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
    background-color: #f5f6ff;
}

.icono_video_frame {
    color: #fff;
    font-size: 50px;
    position: absolute;
    top: 50%;
    lefT: 50%;
    transform: translate(-50%, -50%);
}


#modalVideos .modal-content {
    background-color: transparent;
}

.item_video-contenido {
    padding: 20px 10px;
}

.item_video-contenido h3 {
    font-size: 15px;
    color: #111;
    margin-bottom: 15px;
}

.item_video-contenido p {
    color: #111;
    font-size: 11px;

}

.caf-post-layout3.blog-idicam {
    box-shadow: 0 10px 6px -6px #0000003b;
    border-radius: 10px;
}

.caf-post-layout3.blog-idicam #manage-post-area {
    background-image: linear-gradient(to top, #000000, #00000085);
}

.caf-post-layout3.blog-idicam .caf-post-title h2 a,
.caf-post-layout3.blog-idicam .caf-post-title h2 {
    font-size: 15px !important;
    font-family: 'Yummo W03', sans-serif !important;
}

.caf-post-layout3.blog-idicam .caf-post-title h2 a:hover {
    color: #fff !important;
}

.data-target-div1 .caf-post-layout3.blog-idicam .caf-meta-content-cats li a {
    background: transparent !important;
    color: #fff !important;
    font-weight: bold;
}

.seccion_blog_single .content_video_frame {
    display: none;
}

body.single-videoteca .seccion_blog_single .content_video_frame {
    display: block;
}

.header_blog {
    margin-bottom: 35px;
}

/* .carrusel i {
    cursor: pointer;
} */

/** fin carrusl temp **/

.modal_bio .modal-body {
    padding: 0;
}

.box_head {
    position: absolute;
    bottom: 0;
    padding: 20px;
}

.link_bio {
    position: absolute !important;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: flex-end !important;
    padding: 15px 8px;
}

.link_bio .btn.btnAdv {
    min-width: auto;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    background: transparent;
    color: #D2D314;
}

.info_bio {
    padding: 20px;
}

.info_bio p {
    font-size: 13px;
}

.btn-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffffd6;
    z-index: 2;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto_bio {
    width: 100%;
    object-fit: cover;
}

.titulo_bio {
    font-size: 25px;
    font-weight: bold;
    color: #111;
    background: #D2D314;
}

.cargo_bio {
    font-size: 17px;
}

.bio_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link_rrss_bio,
.link_mail_bio {
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d2d314;
    border-radius: 50px;
    color: #111;
    text-decoration: none;
}

.flex_icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.modal_bio .row .col-sm {
    padding-right: 0;
    padding-left: 0;
}

/****************************************************************
**** FOOTER ********************************
**************************************************************** */

footer {
    width: 100%;
    padding: 70px 0 0;
    background: #000;
    position: relative;
}

footer::before {
    content: '';
    width: 90%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 5%;
    background: linear-gradient(to left, #000000 10%, #ffffff8c, #000000 90%);
}

.logo_foot {
    width: 150px;
    /* animation: 4s linear rotar infinite; */
}

.logo_foot:hover {
    animation-play-state: paused;
}

.flex_footer,
.box_flex_footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.flex_footer_two {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
}

.box_flex_footer {
    width: 100%;
}

.flex_icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.flex_icons a {
    width: 100%;
    color: #fff;
    text-align: center;
    margin-top: 10px;
}

.flex_oficina {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
    width: 80%;
}

.flex_item_foot {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box_flex_footer h3 {
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

.box_flex_footer h3::after {
    content: '';
    width: 200px;
    height: 2px;
    background: #ffffff5c;
    margin: 10px auto;
    display: block;
}

.box_flex_footer p,
.flex_footer_two .box_flex_footer a {
    color: #fff;
    font-size: 13px;
    line-height: 17px;
    text-decoration: none;
}

.box_flex_footer h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}




.copy_footer {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    background: var(--color-principal);
    width: 100%;
    padding: 20px 0;
    margin-top: 60px;
}

.copy_footer p {
    margin: 0;
    color: #ffffffc2;
    text-align: center;
}

.copy_footer p a {
    text-decoration: underline;
    color: #fff;
}

.mobile_head {
    display: none;
}




/*** BLOG **/
.blog .eael-grid-post-holder {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .05);
}

.blog .eael-grid-post-holder:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
}

.blog .eael-grid-post .eael-entry-wrapper {
    padding: 20px 15px;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-title {
    font-family: 'Orkney', sans-serif;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-content {
    font-family: 'Effra', sans-serif;
}

.blog .eael-grid-post .eael-entry-wrapper .eael-entry-content a {
    display: table;
    margin-top: 10px;
}




@media (max-width:767px) {

    body {
        overflow-x: hidden;
    }

    .circle-2 {
        right: 0;
    }

    .desktop_head {
        display: none;
    }

    .mobile_head {
        display: block;
    }

    .logo_ppal {
        width: auto;
        max-height: 75px;
    }

    /** Menu movil **/
    .hamburger-inner,
    .hamburger-inner:after,
    .hamburger-inner:before {
        background-color: #fff !important;
    }

    .scrolling .hamburger-inner,
    .scrolling .hamburger-inner:after,
    .scrolling .hamburger-inner:before,
    body.page-template-page-servicios .hamburger-inner,
    body.page-template-page-servicios .hamburger-inner:after,
    body.page-template-page-servicios .hamburger-inner:before,
    body.single.single-post .hamburger-inner,
    body.single.single-post .hamburger-inner:after,
    body.single.single-post .hamburger-inner:before,
    body.single-videoteca .hamburger-inner,
    body.single-videoteca .hamburger-inner:after,
    body.single-videoteca .hamburger-inner:before,
    body.page-template-page-videoteca .hamburger-inner,
    body.page-template-page-videoteca .hamburger-inner:after,
    body.page-template-page-videoteca .hamburger-inner:before,
    body.page-template-page-blogidicam .hamburger-inner,
    body.page-template-page-blogidicam .hamburger-inner:after,
    body.page-template-page-blogidicam .hamburger-inner:before {
        background-color: #fff !important;
    }

    .menu_movil .menu {
        list-style: none;
        padding: 0;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 1.5;
        font-weight: 500;
    }

    .menu_movil .menu li {
        padding: 10px;
        border-bottom: 1px solid #f0f1f4;
    }

    .menu_movil .menu li a {
        text-decoration: none;
        color: #010507;
        font-family: 'Ubuntu', sans-serif;
    }

    .btnes_head {
        justify-content: center;
    }

    .menuitem {
        padding: 10px 0;
    }

    .menuitem a {
        font-size: 10px;
    }

    /** Body **/
    .tarjeta,
    .tarjeta.tarjeta_izq {
        margin-left: auto;
        margin-right: auto;
    }

    .box_int_contacto h2 {
        font-size: 30px;
    }

    .box_int_contacto.boxes_der h2 {
        font-size: 18px;
    }

    .boxtxt {
        font-size: 10px;
    }

    .box_flotante,
    .box_int_contacto {
        width: 90%;
    }

    .wrap_blog {
        padding-top: 80px;
    }

    .blog_page .article-loop {
        width: 100%;
    }

    /** Footer **/
    .flex_footer {
        margin-bottom: 35px;

    }

    .flex_footer_two {
        flex-direction: column;
    }

    .flex_oficina {
        flex-wrap: wrap;
    }

    .flex_footer_two .box_flex_footer:first-of-type {
        margin-bottom: 35px;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .order3 {
        order: 3;
    }

    .copy_footer p {
        text-align: center;
    }

    .carrusel>.product {
        width: 50%;
    }

    .seccion_blog_single {
        flex-direction: column;
    }

    .seccion_blog_single article,
    .seccion_blog_single .sidebar_col {
        width: 100%;
    }

    .item_video-contenido p {
        display: none;
    }

    .copy_movil p {
        font-size: 12px;
        text-align: center;
        margin: 30px 0 15px;
    }

    .info_bio {
        padding: 20px;
    }

    .link_bio .btn.btnAdv {
        font-size: 15px;
    }



}