@import url('css.css?ver=01');
html {
  scroll-behavior: smooth;
}
html{
    font-size: 65.5%;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
*, *:before, *:after{
    box-sizing: inherit;
}
:root{
    --bell_media-color-primary: #FFC400; /*AMARILLO*/
    --bell_media-color-secondary: #0000000; /*NEGRO*/
}
:focus{
    /*outline: -webkit-focus-ring-color auto 1px;*/
    outline-style: none;
    outline-width: 0;
}
body{
    font-size: 1.6rem;
    line-height: 1.6;
    overflow: hidden;
}
body,a,p,div,span,em,strong,b  {
    font-family: 'gilroy-regular', sans-serif;
	font-size: 16px;
}
body,a,p,div,span,em,strong,b,h1,h2,h3,h4,h5{
	margin: 0;
}
a{
    text-decoration: none;
}
.text-white{
    color: #fff;
}
.pos_r{
    position: relative;
}
.fw_900{
    font-weight: 900;
}
.fw_800{
    font-weight: 800;
}
.fw_700{
    font-weight: 700;
}
.fw_600{
    font-weight: 600;
}
.fw_500{
    font-weight: 500;
}
.fw_400{
    font-weight: 400;
}
.fw_200{
    font-weight: 200;
}
.fw_100{
    font-weight: 100;
}
.container-bell_media-menu {
    width: 100%;
    padding-right: 45px;
    padding-left: 45px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1640px;
}
.container-bell_media {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1366px;
}
.bg-image{
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/**************MENU MOVIL AND DESKTOP LANDING*/
.menu_desktop{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cont_rigth_menu{
    display: flex;
    align-items: center;
    
}
.cont_rigth_menu {
    margin: 0;
}
.cont_rigth_menu li{
    list-style: none;    
}
.cont_rigth_menu li a{
    color: var(--bell_media-color-secondary);    
    padding: 35px 20px;
    display: block;
}
.cont_rigth_menu li:last-child a{
    padding-right: 0;
}
.cont_rigth_menu li:last-child a span{
    display: block;
    border: 1px solid var(--bell_media-color-primary);
    padding: 5px 15px;
}
.cont_rigth_menu li:last-child a span:after{
    content: '';
    width: 0;
}
.cont_rigth_menu li a span{
    position: relative;
    font-family: 'gilroy-medium', sans-serif;
    padding: 0 5px;
}
.cont_rigth_menu li a span:after{
    content: '';
    width: 0%;
    background-color: var(--bell_media-color-primary);
    height: 60%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -13%;
    z-index: -1;
    opacity: 0;
    transition: .2s all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}
.cont_rigth_menu li:hover a span:after{
    width: 100%;
    opacity: 1;
    transition: .2s all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}
.cont_rigth_menu li:last-child:hover a span:after{
    width: 0;
}
.menu_movil_cortina,
.menu_movil{
    display: none;
}

@media (max-width: 1050px){
    /*menu desktop*/
    .menu_desktop{
        display: none;
    }
    /*menu movil*/
    .menu_movil{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .burger_menu{
        padding: 5px 0;
        cursor: pointer;
        margin-right: -10px;
    }
    /*menu cortina movil*/
    .menu_movil_cortina{
        display: block;
        height: 100vh;
        background-color: var(--bell_media-color-primary);
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 5;
        padding: 20px 35px;
        width: 90%;
        transition: .3s all;
        transition-timing-function: cubic-bezier(0.2, 0.1, .15, 0.1);
    }
    
    .close_aspa{
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
    }
    .redes_movil{
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 200px;
    }
    .redes_movil a{
        display: block;
        padding: 5px 15px;
    }
    .cont_movil_menu_ul{
        padding: 0;
        margin: 0;
        margin-top: 20px;
    }
    .cont_movil_menu_ul li{
        list-style: none;    
    }
    .cont_movil_menu_ul li a{
        color: var(--bell_media-color-secondary);  
        display: block;
        padding: 5px 0;
    }
    .cont_movil_menu_ul li a span{
        font-family: 'gilroy-black', sans-serif;   
        font-size: 29px;
        padding: 0 5px;
        position: relative;
    }
    .cont_movil_menu_ul li a span:after{
        content: '';
        display: block;
        position: absolute;
        width: 0%;
        opacity: 0;
        height: 60%;
        bottom: -8%;
        left: 0;
        background-color: #fff;
        z-index: -1;  
        transition: .3S all;
        transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
    }
    .cont_movil_menu_ul li:hover a span:after{
        width: 100%;
        opacity: 1;
        transition: .3S all;
        transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
    }
    /*.cont_movil_menu_ul li:last-child:hover a span:after{*/
    /*}*/
    .cont_movil_menu_ul li:last-child span:after{
        width: 10px;
        opacity: 1;
        bottom: 10px;
        left: 10px;
    }
    .cont_movil_menu_ul li:last-child a span{
        border: 3px solid #000; 
        padding: 6px 25px;
    }
    .cont_movil_menu_ul li:last-child a{
        margin-top: 15px;
    }
    .hidde_menu_movil{
        right: -100%;
        /*opacity: 0;*/
        transition: .2s all;
        transition-timing-function: cubic-bezier(0.5, 0.1, .4, 0.1);
    }
    
    .class_body_cortina_oscura{
        background-color: rgba(0,0,0, .5);
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        z-index: 4;
        visibility: hidden;
        transition: .20s all;
        transition-timing-function: cubic-bezier(0.2, 0.1, .15, 0.1);
    }
}
/**************MENU MOVIL AND DESKTOP LANDING*/

/*SECTION POTADA PRINCIPAL*/
.cont_inner_head{
    height: calc(100vh - 107px );
    position: relative;
    z-index: 1;
}
.sub_iner_portada{
    max-width: 870px;
    margin: 0 auto;
    padding-top: 100px;
    padding-left: 60px;
}
.title_portada_ldg{
    font-size: 60px;
    font-family: 'gilroy-black', sans-serif;
    line-height: 1.2;
    padding-left: 100px;
}
.desc_portada_ldg{
    font-size: 18px;
    margin-bottom: 45px;
}
.cont_des_btn_portada{
    margin-left: auto;
    margin-top: 85px;
    max-width: 313px;
}
.cont_des_btn_portada span{
    font-family: 'gilroy-bold', sans-serif;
    font-size: inherit;
}
.img_header_pos_abs{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 40%;
}
.sucio_efect{
    background: url(../img/efect-sucio.png);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .3;
    position: absolute;
}
.cont_svg_am_portada{
    position: absolute;
    left: 0px;
    bottom: 0;
    top: 0;
    /*max-height: 700px;*/
}
.franja_amarillo{
    background-color: #FFC400;
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 120px;
}
.ball_amarrillo{
    position: absolute;
    bottom: 0;
    left: 200px;
    width: 407px;
}
.ball_amarrillo svg{
    display: block;    
}
.btn_landing_primary{
    display: inline-block;
    border: 4px solid;
    color: #000;
    padding: 8px 50px;
    position: relative;
}
.btn_landing_primary span{
    font-family: 'gilroy-black', sans-serif;
}
.btn_landing_primary span:after{
    content: '';
    position: absolute;
    width: 20px;
    left: 10px;
    height: 70%;
    display: block;
    background-color: var(--bell_media-color-primary);
    z-index: -1;
    top: 15%;
    transition: .3S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}

.btn_landing_primary:hover span:after{
    width: 105%;   
    transition: .3S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}

.rss_portada{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.rrss_items{
    display: block;
}
.rrss_items{
    padding: 25px;
}
.rrss_items span{
    position: relative;
}
.rrss_items span:after{
    content: '';
    position: absolute;
    bottom: -1px;
    width: 0px;
    opacity: 0;
    height: 20px;
    background-color: var(--bell_media-color-primary);
    left: 5px;
    z-index: -1;
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}
.rrss_items:hover  span:after{
    width: 20px;
    opacity: 1;
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}


@keyframes glitch1{
	0%
	{
		background-position: 0 0;
		filter: hue-rotate(0deg);
        will-change: background-position, filter
	}
	10%
	{
		background-position: 5px 0;
        will-change: background-position
	}
	20%
	{
		background-position: -5px 0;
        will-change: background-position
	}
	30%
	{
		background-position: 15px 0;
        will-change: background-position
	}
	40%
	{
		background-position: -5px 0;
        will-change: background-position
	}
	50%
	{
		background-position: -25px 0;
        will-change: background-position
	}
	60%
	{
		background-position: -50px 0;
        will-change: background-position
	}
	70%
	{
		background-position: 0 -20px;
        will-change: background-position
	}
	80%
	{
		background-position: -60px -20px;
        will-change: background-position
	}
	81%
	{
		background-position: 0 0;
        will-change: background-position
	}
	100%
	{
		background-position: 0 0;
		filter: hue-rotate(360deg);
        will-change: background-position, filter
	}
}

@keyframes glitch2
{
	0%
	{
		background-position: 0 0;
		filter: hue-rotate(0deg);
        will-change: background-position, filter
	}
	10%
	{
		background-position: 15px 0;
        will-change: background-position
	}
	15%
	{
		background-position: -15px 0;
        will-change: background-position
	}
	20%
	{
		filter: hue-rotate(360deg);
        will-change: background-position
	}
  25%
	{
		background-position: 0 0;
		filter: hue-rotate(0deg);
        will-change: background-position, filter
	}
  100%
	{
		background-position: 0 0;
		filter: hue-rotate(0deg);
        will-change: background-position, filter
	}
}
/*css  animatios portada*/

@media (max-width: 1020px){
    .cont_des_btn_portada{
        margin-right: 30px;
    }
}
@media (max-width: 825px){
    .title_portada_ldg{
        line-height: 1.1;
        font-size: 45px;
    }
}
@media (min-height: 650px){
    .ball_amarrillo {
        width: 480px;
    }
}
@media (min-height: 725px){
    .ball_amarrillo {
        width: 560px;
    }
    .sub_iner_portada{
        padding-top: 140px;
    }
}

@media (max-width: 750px){
    .img_header_pos_abs{
        height: 40%;
        width: 80%;
    }
    .cont_svg_am_portada{
        height: 45%;
    }
    
    .ball_amarrillo{
        width: 245px;
    }
    .ball_amarrillo {
        left: 120px;
    }
    .franja_amarillo{
        width: 75px;
    }
    .title_portada_ldg{
        font-size: 40px;
    }
    .cont_inner_head{
        padding-top: initial;
        display: flex;
        align-items: center;
    }
    .cont_des_btn_portada,
    .title_portada_ldg,
    .cont_des_btn_portada,
    .sub_iner_portada{
        padding-top: initial;
        padding-left: initial;
        padding-right: initial;
        margin-right: initial;
        margin-left: initial;
    }
    .sub_iner_portada{
        margin-top: 250px;
    }
    .cont_des_btn_portada{
        margin-top: 25px;
    }
    .desc_portada_ldg{
        margin-bottom: 25px;
    }
    .cont_svg_am_portada {
        left: 45px;
    }
    .rss_portada{
        justify-content: flex-start;
    }
    
}

/*SECTION POTADA PRINCIPAL*/

/*SECTION QUE HACEMOS*/
.pt_sections{
    padding-top: 150px;
}
/*ANIMATIONS TEXT*/
.text_animatio{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 200px;
    z-index: -1;
    overflow: hidden;
}
.text_movie_section{
    position: absolute;
    top: 0;
    font-size: 240px;
    line-height: .9;
    font-family: 'gilroy-black', sans-serif;
    color: black;
    -webkit-text-fill-color: #ffffff00;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--bell_media-color-primary);
    word-break: break-all;
    will-change: transform
}
/*ANIMATIONS TEXT*/
.grid_titles_section{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.title_setion{
    font-family: 'gilroy-black', sans-serif;
    font-size: 55px;
    line-height: 1.1;
    text-align: right;
}
.title_setion span{
    font-size: inherit;
    font-family: 'gilroy-black', sans-serif;
    display: block;
}
.descrip_section{
    max-width: 360px;
    font-family: 'gilroy-medium', sans-serif;
    font-size: 18px;
    grid-row-start: 2;
    grid-column-start: 2;
    margin-top: -30px;
    text-align: left;
    padding-left: 25px;
}
.descrip_section span{
    font-size: inherit;
    font-family: 'gilroy-bold', sans-serif;
}

.grid_quehacemos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px 50px;
    padding-top: 25px;
    margin-top: 195px;
}
.group_title_descr_btn_q_hacemos{
    padding: 25px;
    position: relative;
    z-index: 1;
}
.group_title_descr_btn_q_hacemos p{
    margin-top: 15px;
    margin-bottom: 25px;
}
.img_que_hacemos {
    padding-top: 25px;
    padding-right: 25px;
    top: 0;
    position: relative;
    transition: .2s all;
    transition-timing-function: cubic-bezier(0.2, 0.1, .15, 0.1);
}
.hover_card .img_que_hacemos{
    top: 55px;
    transition: .2s all;
    transition-timing-function: cubic-bezier(0.2, 0.1, .15, 0.1);    
}
.img_que_hacemos img{
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}
.items_que_hacemos:nth-child(odd){
    top: -195px;
    position: relative;
}
.items_que_hacemos h3{
    font-family: 'gilroy-black', sans-serif;
    font-size: 26px;
}
.items_que_hacemos .logo_bl_inner_items_que_hacemos{
    max-width: 295px;
}
.items_que_hacemos .logo_bl_inner_items_que_hacemos path{
    fill: #FFC400
}
/*COLOR MORADO*/
.morado .logo_bl_inner_items_que_hacemos path{
    fill: #6400FF
}
.morado .btn_landing_primary span:after{
    background-color: #6400FF;
}
/*COLOR ROSA*/
.rosa .logo_bl_inner_items_que_hacemos path{
    fill: #FF1946
}
.rosa .btn_landing_primary span:after{
    background-color: #FF1946;
}   
.rosa .logo_bl_inner_items_que_hacemos svg{
    max-width: 237px;
}
/*COLOR AMARILLO*/
.amarillo .logo_bl_inner_items_que_hacemos path{
    fill: #FFC400
}
.amarillo .btn_landing_primary span:after{
    background-color: #FFC400;
}   
.amarillo .logo_bl_inner_items_que_hacemos svg{
    max-width: 235px;
}
/*COLOR AZUL*/
.azul .logo_bl_inner_items_que_hacemos path{
    fill: #0073FF
}
.azul .btn_landing_primary span:after{
    background-color: #0073FF;
}

/*PATTERN CSS BOX 01*/
.pattern-diagonal{
    background-image: repeating-linear-gradient(-45deg, #000 0, #000 3px, transparent 0, transparent 50%);
    background-size: 15px 15px;
    position: relative;
}
.pattern-diagonal:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 25px;
    background-color: #fff;
}
.pattern-diagonal:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25px;
    background-color: #fff;    
}
/*MARCO CSS BOX 01*/
.pattern-marco{
    border: 3px solid #000;
    border-left: none;
    border-bottom: none;
    position: relative;
}
.pattern-marco:after{
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    bottom: 0;
    width: 25px;
    background-color: #fff;
    border-right: 3px solid #000;
}
.pattern-marco:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: -3px;
    height: 25px;
    background-color: #fff;
    border-top: 3px solid #000;
}
.logos_empresas .swiper-wrapper{
transition-timing-function: linear;
will-change: transition-timing-function
}
@media (max-width: 750px){
    .grid_quehacemos{
        margin-top: 0;
        grid-template-columns: 1fr
    }
    .img_que_hacemos{
        padding-top: 15px;
        padding-right: 15px;
    }
    .pattern-diagonal:before{
        height: 15px;
    }
    .pattern-diagonal:after{
        width: 15px;
    }
    .pattern-marco:before{
        height: 15px;
    }
    .pattern-marco:after{
        width: 15px;
    }
    .items_que_hacemos:nth-child(odd){
        top: 0;
    }
    .items_que_hacemos .logo_bl_inner_items_que_hacemos{
        max-width: 160px;
    }
    .items_que_hacemos:first-child .logo_bl_inner_items_que_hacemos,
    .items_que_hacemos:last-child .logo_bl_inner_items_que_hacemos{
        max-width: 200px;
    }

    .grid_titles_section{
        grid-template-columns: 1fr
    }
    .descrip_section{
        margin-top: 0;
        
    }
    .title_setion{
        font-size: 30px;
    }
    .text_movie_section{
        font-size: 90px;
    }
    .text_animatio{
        height: 100px;
    }
    .pt_sections{
        padding-top: 60px;
    }
}
@media (max-width: 600px){
    .grid_titles_section{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 25px;
    }
}
/*SECTION QUE HACEMOS*/

/*SECTION QUE CREEMOS*/
.content_slid_scoll {
	width: 100%;
	height: 100%;
	padding-left: 80px;
	min-height: 580px;
	background-color: #000;
	overflow: hidden;
    display: flex;
    align-items: center;
}
.items_slid_scroll{
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner_flex_slid_scroll{
    margin: 15px;
}
.svg_icon_slid_scroll{
    padding-left: 40px;
    margin-bottom: 20px;
}
.items_slid_scroll .title_and_descript_slid_scroll{
    max-width: 350px;
    padding: 40px;
    padding-top: 0px;
    position: relative;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}
.title_and_descript_slid_scroll:after{
    content: '';
    width: 40px;
    background-color: #000;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #000;
    position: absolute;
    top: 0;
    height: 40px;
    right: -2px;
    
}


.box_content_img_and_slid{
    width: 100%;
    display: grid;
    grid-template-columns: .4fr 1fr; 
}
.padding_comodin_section{
    padding-top: 80px;
}
.box_img_left{
    position: relative;
    z-index: 1;
}
.img_left_section_que_hacemos{
    height: 100%;
    width: calc(100% + 55px);
    position: relative;
    bottom: 40px;
}
.img_left_section_que_hacemos:after{
    content: '';
    background-image: repeating-linear-gradient(-45deg, #000 0, #000 3px, transparent 0, transparent 50%);
    background-size: 15px 15px;
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 288px;
    left: 30px;
    top: -30px;
    z-index: -1;
}
.items_slid_scroll p,
.items_slid_scroll h3{
    color: #fff;
}
.items_slid_scroll h3{
    font-size: 25px;
    font-family: 'gilroy-black', sans-serif;
    max-width: 225px;
    line-height: 1.4;
}

@media (max-width: 720px){
    .box_content_img_and_slid{
        grid-template-columns: 1fr    
    }
    .content_slid_scoll{
        padding-left: 10px;
    }
    .box_img_left{
        height: 220px;
    }
    .img_left_section_que_hacemos{
        bottom: -35px;
        left: -100px;
    }
    .svg_icon_slid_scroll svg{
        width: 60px;
        height: 60px;
    }
    .items_slid_scroll .title_and_descript_slid_scroll{
        padding: 10px;
    }
    .padding_comodin_section{
        padding-top: 0;
    }
    .items_slid_scroll h3{
        font-size: 20px;
        max-width: 133px;
    }
    .title_and_descript_slid_scroll:after{
        width: 10px;
    }
    .svg_icon_slid_scroll{
        padding-left: 10px;
    }
    /*.items_slid_scroll{
        max-height: 450px;
    }*/
    .content_slid_scoll,
    .items_slid_scroll{
        max-height: 450px;
    }
    .img_left_section_que_hacemos:after{
        left: initial;
        width: 75%;
        right: -20px;
        top: -20px;
        max-height: 148px;
    }
}
/*SECTION QUE CREEMOS*/

/*SECTION COMO LO HACEMOS*/
.seudo_element_sect:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: -2;
}
.grid_como_hacemos_section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 90px 70px;
    margin-top: 95px;
    padding-bottom: 180px;
    margin-left: 50px;
}
.items_como_hacemos_section{
    background-color: #fff;
    padding-left: 90px;
    padding-right: 60px;
    min-height: 215px;
    box-shadow: 0px 0px 55px rgba(0, 0, 0, 0.25);
    position: relative;
}
.items_como_hacemos_section:nth-child(odd){
    padding-left: 75px;    
}
.items_como_hacemos_section:nth-child(n+3){
    box-shadow: 0px 0px 55px rgba(255, 255, 255, 0.55);
}
.items_como_hacemos_section h3{
    font-family: 'gilroy-black', sans-serif;
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 25px;
}
.inner_como_hacemos_section{
    position: relative;
    top: -15px;
}
.number_como_hacemos_section{
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 200px;
    line-height: .9;
    font-family: 'gilroy-black', sans-serif;
    color: black;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000;
}
.number_como_hacemos_section span{
    font-family: inherit;
    font-size: inherit;
    -webkit-text-fill-color: var(--bell_media-color-primary);
    -webkit-text-stroke-width: 0;
    position: absolute;
    left: -10px;
    top: -5px;
}
@media (max-width: 750px){
    .grid_como_hacemos_section{
        grid-template-columns: 1fr;
        margin-left: 0;
    }
    .items_como_hacemos_section,
    .items_como_hacemos_section:nth-child(odd){
        padding-left: 15px;
        padding-right: 15px;
    }
    .items_como_hacemos_section h3{
        font-size: 20px;
        margin-left: 65px;
    }
    .number_como_hacemos_section{
        font-size: 100px;
        left: 10px;
        top: -50px;
    }
}
/*SECTION COMO LO HACEMOS*/

/*SECTION EXTRA*/
.text_animatio_modif_2{
    top: -100px;
}
.pt_sections_modif_2{
    padding-top: 60px;
}
.con_extra{
    margin-top: 75px;
    margin-bottom: 40px;
}
.con_extra .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner_box_con_extra{
    margin: 0 15px;
}
.svg_box_extra{
    padding-left: 35px;
    min-height: 125px;
}
.svg_box_extra svg{
    vertical-align: text-top;
}
.cont_descript_box_extra{
    max-width: 300px;
    padding: 35px;
    padding-top: 0;
    position: relative;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    min-height: 170px;
}
.cont_descript_box_extra h3{
    font-family: 'gilroy-black', sans-serif;
    font-size: 26px;
}
.cont_descript_box_extra:after{
    content: '';
    width: 35px;
    height: 25px;
    top: 0;
    right: -2px;
    background-color: #fff;
    position: absolute;
    border-bottom: 2px solid #000;
}
@media (max-width: 650px){
    .con_extra .swiper-slide{
        max-width: 80%;
    }    
    .cont_descript_box_extra{
        min-height: 200px;
        padding: 15px;
    }
    .svg_box_extra{
        min-height: 115px;
    }
    .cont_descript_box_extra h3{
        font-size: 20px;
    }
    .con_extra{
        margin-top: 45px;
    }
    .text_animatio_modif_2{
        top: 0;
    }
}
/*SECTION EXTRA*/


/*SECTION TESTIMONIOS*/
.custom_color_2{
    -webkit-text-stroke-color: #000000;
}
.gradient_section{
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 30px, rgba(255,196,0,1) 30px, rgba(255,196,0,1) calc(100% - 120px), rgba(255,255,255,1) calc(100% - 120px));
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 30px, rgba(255,196,0,1) 30px, rgba(255,196,0,1) calc(100% - 120px), rgba(255,255,255,1) calc(100% - 120px));
    background: linear-gradient(0deg, rgba(255,255,255,1) 30px, rgba(255,196,0,1) 30px, rgba(255,196,0,1) calc(100% - 120px), rgba(255,255,255,1) calc(100% - 120px));
}
.creele_a_ellos{
    overflow: initial;
    padding-top: 20px;
    position: relative;
    user-select: none;
}
.swiper-container .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);

  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
    will-change: transform, hidden;
}
.creele_a_ellos:after{
    /*content: '';*/
    top: 0;
    bottom: 0;
    position: absolute;
    left: -100%;
    width: 100%;
    background-color: #ffc400;
    z-index: 1;
}
.creele_a_ellos .swiper-slide{
    max-width: 40%;
}
.creele_a_ellos .cont_slide_creele_a_ellos{
    background-color: #fff;
    height: 100%;
    padding: 50px;
    margin-bottom: 50px;
    margin-right: 25px;
    margin-top: 120px;
    position: relative;
    min-height: 180px;
}
.creele_a_ellos .logo_testimonio{
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.25));
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 137px;
    height: 137px;
    background-color: #fff;
    left: 50px;
    top: -100px;
}
.cont_slide_creele_a_ellos:after{
    content: '';
    background-image: repeating-linear-gradient( -45deg , #000 0, #000 3px, transparent 0, transparent 50%);
    background-size: 15px 15px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 20px;
    bottom: -20px;
    z-index: -1;
}
.cont_arrow_bullet{
    display: flex;
    justify-content: flex-end;
    
}    
.cont_arrow_bullet .cont_bullet{
    margin-right: 30px;
}
.cont_arrow_bullet .cont_arrow{
    display: grid;    
    grid-template-columns: 1fr 1fr;
    grid-gap: 13px;
}
.cont_arrow_bullet .cont_bullet .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    border-radius: 0;
    margin-left: 7px;
    background-color: #6400FF;
    opacity: 1;
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}
.cont_arrow_bullet .cont_bullet  .swiper-pagination-bullet-active{
    width: 34px; 
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}
.cont_arrow_bullet .cont_arrow .arrow_item{
    background-color: #000;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.55);
}

@media (max-width: 750px){
    .creele_a_ellos{
        overflow: hidden;
        padding-top: 0;
    }
    .creele_a_ellos .swiper-slide{
        max-width: initial;
        margin-right: 25px;
    }
    .creele_a_ellos .logo_testimonio{
        width: 93px;
        height: 93px;
        top: -60px;
        left: 20px;
    }
    .creele_a_ellos .cont_slide_creele_a_ellos{
        padding: 20px;
        padding-top: 45px;
        margin-top: 90px;
    }
    .creele_a_ellos .logo_testimonio img{
        width: 100%;
    }
    .cont_arrow_bullet .cont_arrow .arrow_item{
        width: 40px;
        height: 40px;
    }
    .cont_arrow_bullet .cont_arrow .arrow_item svg{
        width: 22px;
    }
    .cont_arrow_bullet .cont_bullet .swiper-pagination-bullet{
        width: 9px;
        height: 8px;
    }
    .cont_arrow_bullet .cont_bullet  .swiper-pagination-bullet-active{
        width: 30px;
    }
    
    .gradient_section{
        background: rgb(255,255,255);
        background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 13px, rgba(255,196,0,1) 13px, rgba(255,196,0,1) calc(100% - 40px), rgba(255,255,255,1) calc(100% - 40px));
        background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 13px, rgba(255,196,0,1) 13px, rgba(255,196,0,1) calc(100% - 40px), rgba(255,255,255,1) calc(100% - 40px));
        background: linear-gradient(0deg, rgba(255,255,255,1) 13px, rgba(255,196,0,1) 13px, rgba(255,196,0,1) calc(100% - 40px), rgba(255,255,255,1) calc(100% - 40px));
    }
    
}
/*SECTION TESTIMONIOS*/

/*SECTION EQUIPO CERTIFICADO*/
.pa_secto_top_bottom{
    padding-top: 100px;
    padding-bottom: 120px;
}
.logos_empresas{
    overflow: initial;
    margin-top: 60px;
    position: relative;
    user-select: none;
}
.logos_empresas:after{
    /*content: '';*/
    top: 0;
    bottom: 0;
    position: absolute;
    left: -100%;
    width: 100%;
    background-color: #ffffff;
    z-index: 1;
}
.logos_empresas .swiper-slide img{
    width: 100%;
}

@media (max-width: 1366px){
    .logos_empresas:after{
        background-color: #ffffff00;
    }
}
/*SECTION EQUIPO CERTIFICADO*/

/*SECTION FORMULARIO*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.padd_top_padd_bottom_form{
    padding-top: 95px;
    padding-bottom: 95px;
}
.grid_form{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    grid-gap: 85px
}

.items_form:first-child{
    text-align: right;
    background-color: transparent;
}
.items_form:first-child h2{
    font-family: 'gilroy-black', sans-serif;
    font-size: 56px;
    line-height: 1.1;
}
.items_form:first-child p{
    font-size: 18px;
    font-family: 'gilroy-medium', sans-serif;
    margin-top: 25px;
    max-width: 329px;
    margin-left: auto;
}
.items_form:last-child{
    margin-top: 60px;
}

.input_label{
    position: relative;
    display: block;
}
.input_label input{
    background-color: #fff;
    border-radius: 6px;
    font-weight: 800;
    border: none;
    width: 100%;
    padding: 16px;
}
.input_label span{
    position: absolute;
    font-weight: 800;
    left: 17px;
    top: 14px;
    pointer-events: none;
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.5);
}
label:focus-within span{
    top: -13px;
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.5);
}
.input_label span.class_span{
    top: -13px;    
}
.condiciones{
    color: #000;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.condiciones [type=checkbox], [type=radio]{
    transform: scale(1.5);    
}
.condiciones span{
    margin-left: 5px;
}
.condiciones a{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: underline;
}
.btn_enviar_form{
    background-color: transparent;
    border: 4px solid #000;
    padding: 10px 50px;
    cursor: pointer;
    position: relative;
}
.btn_enviar_form span{
    font-family: 'gilroy-black', sans-serif;
}
.btn_enviar_form span:after{
    content: '';    
    position: absolute;
    z-index: -1;
    height: 28px;
    width: 19px;
    top: 5px;
    left: 5px;
    background-color: #fff;
    transition: .2s all;
    transition-timing-function: cubic-bezier(0.2, 0.1, .15, 0.1);
}
.btn_enviar_form:hover span:after{
    width: 105%;     
    transition: .2s all;
    transition-timing-function: cubic-bezier(0.2, 0.1, .15, 0.1); 
}
.form_lang{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px
    
}
.group_dos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px    
}
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}
.svg_drop_daw{
    position: absolute;
    right: 10px;
    top: 10px;
    pointer-events: none;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #fff;
  border-radius: 6px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  /*content: "";*/
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #000;
  padding: 12.5px 16px;
  font-weight: 900;
  /*border: 1px solid transparent;*/
  /*border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;*/
  cursor: pointer;
  user-select: none;
}
.select-items div{
    border-radius: 50px;
    padding: 8px 16px;
    margin: 5px;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  filter: drop-shadow(0px 4px 35px rgba(0, 0, 0, 0.35));
  padding: 5px;
  border-radius: 6px;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.same-as-selected{
    position: relative;
}
.same-as-selected:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: -1;
    width: 40%;
    height: 15px;
    background-color: var(--bell_media-color-primary);
}

.shape_form{
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.shape_form img{
    display: block;
    width: 100%;
    max-width: 600px;
}
@media (max-width: 1065px){
    .items_form:first-child h2{
        font-size: 46px;
    }
}

@media (max-width: 750px){
    .items_form:first-child h2{
        font-size: 35px;
    }
    .grid_form{
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .items_form:first-child{
        text-align: left;
    }
    .items_form:first-child p{
        margin-left: initial;
    }
    .items_form:last-child{
        margin-top: 30px;
    }
    .padd_top_padd_bottom_form{
        padding-top: 175px;
    }
    .shape_form{
        bottom: initial;
        align-items: flex-start;
        top: -120px;
        width: 100%;
        max-width: 290px;
    }
    .pa_secto_top_bottom{
        padding-bottom: 170px;
        padding-top: 40px;
    }
    .group_dos{
        grid-template-columns: 1fr
    }
    .btn_enviar_form{
        display: block;
        margin: 0 auto;
    }
}
/*SECTION FORMULARIO*/


/*SECTION FOOTER*/
.footer{
    background-color: #000000e6;
}
.div_derechos_reservados{
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 10px;
}
.p_t_b_footer{
    padding-top: 80px;
    padding-bottom: 80px;
}
.grid_footer_cont{
    display: grid;
    grid-template-columns: 279px 392px auto;
}
.title_footer{
    margin: 0;
    color: #FF1946;
    font-family: 'gilroy-semibold', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}
.items_footer_cont ul{
    margin: 0;
    padding: 0;
}
.items_footer_cont ul li{
    list-style: none;
}
.items_footer_cont ul li a{
    color: #fff;
    font-family: 'gilroy-medium', sans-serif;
    display: block;
    padding-bottom: 7px;
}
.cont_footer_redes{
    max-width: 280px;
    display: flex;
}
.cont_footer_redes a{
    display: block;
    flex: 1;
    position: relative;
    z-index: 1;
}
.cont_footer_redes a span:after{
    content: '';
    position: absolute;
    background-color: #6400FF;
    width: 0px;
    height: 37px;
    left: 10px;
    bottom: -2px;
    z-index: -1;
    transition: .2S all;
    transition-timing-function: cubic-bezier(0.1, 0.1, .1, 0.1);
}
.cont_footer_redes a:hover span:after{
    width: 37px;
}
@media (max-width: 930px){
    .grid_footer_cont{
        grid-template-columns: 279px 140px auto;
    }
}
@media (max-width: 750px){
    .grid_footer_cont{
        grid-template-columns: 1fr;
    }
    .items_footer_cont:nth-child(2){
        display: none;
    }
    .cont_footer_redes{
        margin: 0 auto;
    }
    .items_footer_cont{
        text-align: center;
    }
    .items_footer_cont:nth-child(3){
        padding-top: 20px;
    }
    .title_footer{
        margin-top: 15px;
        margin-bottom: 40px;
    }
}
/*SECTION FOOTER*/