@charset "utf-8";
/*
==============================================
CSS TIPOGRAFÍA
==============================================
*/
@font-face {
	font-family: "Arial";
	src: url("../font/arialbd.ttf") format("truetype");
    font-style: bold;
    font-weight: 100;
}
@font-face {
	font-family: "Arial";
	src: url("../font/arial.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
	font-family: "Grandstander-Bold";
	src: url("../font/Grandstander-Bold.ttf") format("truetype");
    font-style: bold;
    font-weight: 100;
}
@font-face {
	font-family: "Grandstander-Regular";
	src: url("../font/Grandstander-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
	font-family: "HKGrotesk-Bold";
	src: url("../font/HKGrotesk-Bold.ttf") format("truetype");
    font-style: bold;
    font-weight: 100;
}
@font-face {
	font-family: "HKGrotesk-Regular";
	src: url("../font/HKGrotesk-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
	font-family: "LuckiestGuy";
	src: url("../font/LuckiestGuy.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
	font-family: "Poppins-Black";
	src: url("../font/Poppins-Black.ttf") format("truetype");
    font-style: bold;
    font-weight: 100;
}
@font-face {
	font-family: "Poppins-Regular";
	src: url("../font/Poppins-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
	font-family: "Raleway-ExtraBold";
	src: url("../font/Raleway-ExtraBold.ttf") format("truetype");
    font-style: bold;
    font-weight: 100;
}
@font-face {
	font-family: "Raleway-Regular";
	src: url("../font/Raleway-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
	font-family: "Roboto-Bold";
	src: url("../font/Roboto-SemiBold.ttf") format("truetype");
    font-style: bold;
    font-weight: 100;
}
@font-face {
	font-family: "Roboto-Regular";
	src: url("../font/Roboto-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/*
==============================================
CSS GENERAL
==============================================
*/
html{
    font-size: clamp(12px, 100vw, 16px);
    scroll-behavior: smooth;
}
body{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: "Roboto-Regular";
    font-size: var(--fontsize_paragraph);
    color: var(--color_font_white);
    scroll-behavior: smooth;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
:root{

    --color_txtlight: #F2F2F2;
    --color_txtdark: #333333;

    --color_white: #FFFFFF;

    --color_blue_a: #4096ca;
    --color_blue_b: rgba(249,249,249,.7);
    --color_blue_c: #1d305d;
    --color_blue_d: #3b9dbf;
    --color_blue_e: #30A7D0;
    --color_blue_f: #266FB6;
    --color_blue_g: #102e68;

    --color_acent_1: #D31C78;
    --color_acent_2: #96c457;
    --color_grey: #EAEAEA;
    --color_yellow: #e5a74d;

    --color_pre: #E5001A;
    --color_pri: #6D9E24;
    --color_sec: #2C73CF;
    --color_doc_pri: #F9AA30;
    --color_doc_sec: #F3601E;
    --color_doc_bil: #E2037E;
    --color_que: #012F6C;

    --color_box_1: #0072CB;
    --color_box_2: #F3601E;
    --color_box_3: #E2037E;
    --color_box_4: #F31112;
    --color_box_5: #94C357;
    --color_box_6: #008D88;
    --color_box_7: #F9AA30;

    --color_footer_1: #A4C965;
    --color_footer_2: #5D804B;

    --color_sky: #B5DFE8;


    --fontsize_megatitle: 1.8rem;
    --fontsize_title: 1.4rem;
    --fontsize_subtitle: 1.2rem;
    --fontsize_paragraph: 1rem;
    --txt_font_btn: 1.2rem;

    --textshadow: 0 0 0.15rem rgba(0,0,0,.5);

    --max_width_conte: 1200px;
}
/*
==============================================
CSS HEADER
==============================================
*/
.web_header{
    width: calc(100% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--color_white);
    padding: 3rem 1rem 1rem 1rem;
    gap: 2rem;
	position: sticky;
	top: 0;
	z-index: 10;
}
.web_header_in{
    width: 100%;
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.web_header_in:nth-child(2){
    justify-content: center;
}
.web_header_logo{
    height: 3.4rem;
}
.web_header_nav{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
    color: var(--color_blue_g);
    font-family: "Arial";
    font-weight: bold;
}
.web_header_nav span{
    /*cursor: pointer;*/
    text-align: center;
}
.web_header_nav span:hover{
    /*text-decoration: underline; */
}
.web_header_btn{
    display: none;
    justify-content: center;
    align-items: center;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}
.web_header_btn svg{
    width: 2rem;
    height: 2rem;
}
.web_header_btn path{
    fill: var(--color_blue_c);
}
.web_header_close{
    background-color: transparent;
    border: 0;
    display: none;
    justify-content: flex-end;
    cursor: pointer;
}
.web_header_close svg{
    width: 2rem;
    height: 2rem;
}
.web_header_close path{
    fill: var(--color_blue_c);
}
/*
==============================================
CSS SECTION
==============================================
*/
.web_section{
    width: calc(100% - 2rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--color_white);
    padding: 1rem;
    position: relative;
}
.section_a{
    padding: 0;
    width: 100%;
    background-image: url(../img/home_1_section.webp);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section_a .web_section_in{
    width: 100%;
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.section_a .web_section_txt1{
    max-width: 25.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    font-family: "Poppins-Regular";
    flex-grow: 1;
    padding: 2rem 2rem 8rem 2rem;
    gap: 1rem;
}
.section_a .web_section_txt1_a{
    height: 7rem;
}
.section_a .web_section_txt1_b{
    width: calc(100% - 1rem);
    background-color: var(--color_blue_a);
    padding: 0.5rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color_txtlight);
    font-family: "Roboto-Regular";
}
.section_a .web_section_txt1_c{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    font-family: "Poppins-Black";
    gap: 0;
}
.web_section_txt1_c div:nth-child(1){
    color: var(--color_blue_c);
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 0 0.175rem var(--color_txtlight), 0 0 0.175rem var(--color_txtlight), 0 0 0.175rem var(--color_txtlight);
}
.section_a .web_section_txt1_c div:nth-child(2){
    color: var(--color_blue_a);
    font-size: 3.8rem;
    font-weight: bold;
    text-shadow: 0 0 0.175rem var(--color_txtlight), 0 0 0.175rem var(--color_txtlight), 0 0 0.175rem var(--color_txtlight);
}
.section_a .web_section_txt1_d{
    width: calc(100% - 2rem);
    background-color: var(--color_blue_b);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color_txtdark);
    font-family: "Roboto-Regular";
}
.section_a .web_section_img1{
    flex-grow: 2;
    max-width: 34rem;
    align-self: flex-end;
}
.section_a .web_section_svg{
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.section_a .web_section_svg path{
    fill: var(--color_white);
}
.section_a .web_section_img2{
    max-width: 100%;
    max-height: 5rem;
}
.section_b .web_section_in{
    width: calc(100% - 2rem);
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
}
.section_b .web_section_video{
    border: 0.05rem solid var(--color_blue_c);
    padding: 0.75rem;
    flex-grow: 1;
    max-width: 50%;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.section_b .web_section_txt{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    font-family: "Raleway-Regular";
}
.section_b .web_section_txt0{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_f);
    flex-direction: row;
    gap: 0.5rem;
}
.section_b .web_section_txt0::before{
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    content: '';
    display: inline-block;
    background-color: var(--color_acent_1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    flex-direction: row;
    gap: 0.5rem;
}
.section_b .web_section_txt1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    font-size: 2.4rem;
    flex-direction: row;
    gap: 0.5rem;
    font-family: "Raleway-ExtraBold";
}
.section_b .web_section_txt1 span{
    color: var(--color_acent_1);
}
.section_b .web_section_txt2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    flex-direction: row;
}
.section_d{
    background-image: url(../img/home_d_section_img6.webp), url(../img/home_d_section_img4.webp);
    background-size: contain, cover;
    background-position: center top, center bottom;
    background-repeat: no-repeat, no-repeat;
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.section_d .web_section_in{
    width: calc(100% - 2rem);
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
}
.section_d .web_section_txt{
    flex: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    font-family: "Raleway-Regular";
}
.section_d .web_section_txt img{
    height: 3rem;
}
.section_d .web_section_txt0{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_f);
    flex-direction: row;
    gap: 0.5rem;
}
.section_d .web_section_txt1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    font-size: 2.4rem;
    flex-direction: column;
    gap: 0.5rem;
    font-family: "Grandstander-Bold";
}
.section_d .web_section_txt1 span{
    text-align: center;
}
.section_d .web_section_txt1 span:nth-child(2){
    color: var(--color_acent_1);
}
.section_d .web_section_txt2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    flex-direction: row;
    text-align: center;
    font-family: "Raleway-Regular";
}
.web_section_level{
    flex: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}
.web_section_level_icons{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-grow: 1;
}
.web_section_level_icons img{
    width: 10rem;
}
.web_section_level_txt{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Raleway-Regular";
}
.web_section_level_line{
    width: 6rem;
    height: 0.35rem;
    background-color: var(--color_blue_a);
    border: 0;
}
.web_section_level_btns{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-grow: 1;
}
.web_section_level_btns button{
    width: 10rem;
    border: 0;
    padding: 0.65rem;
    border-radius: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    color: var(--color_txtlight);
    font-size: var(--txt_font_btn);
    font-family: "Grandstander-Bold";
    cursor: pointer;
    transition: all 0.3s ease;
}
.web_section_level_btns button:hover{
    transform: scale(1.05);
}
.web_section_level_btns button::before{
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    content: '';
    background-color: var(--color_txtlight);
    display: flex;
}
.web_section_level_btns_pre{
    background-color: var(--color_pre);
}
.web_section_level_btns_pri{
    background-color: var(--color_pri);
}
.web_section_level_btns_sec{
    background-color: var(--color_sec);
}
.section_c .web_section_in{
    width: calc(100% - 2rem);
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
}
.section_c .web_section_txt{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}
.section_c .web_section_txt1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    font-size: 1.8rem;
    flex-direction: row;
    gap: 0.5rem;
}
.section_c .web_section_txt1 span{
    color: var(--color_acent_1);
}
.section_c .web_section_txt2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--color_blue_c);
    flex-direction: row;
}
.section_c .web_section_button{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 3rem;
    border: 0.25rem solid var(--color_txtlight);
    box-sizing: border-box;
    background-color: var(--color_acent_1);
    color: var(--color_txtlight);
    font-weight: bold;
    padding: 1rem 2rem 1rem 2rem;
    font-size: var(--txt_font_btn);
    cursor: pointer;
}



.section_h{
    width: calc(100% - 4rem);
    padding: 2rem;
    background-image: url(../img/home_7_section.webp);
    background-position: top center;
    background-color: var(--color_white);
    background-repeat: no-repeat;
    background-size: cover;
}
.section_h .web_section_in{
    width: 100%;
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4rem;
    padding-top: 5rem;
}
.section_h .web_section_txt{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}
.section_h .web_section_txt1{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color_blue_c);
    font-size: 2rem;
    font-weight: bold;
}
.section_h .web_section_txt2{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color_blue_c);
    font-weight: bold;
}
.section_h .web_section_form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}
.section_h .web_section_conte{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}
.section_h .web_section_input{
    min-width: 20rem;
    flex-grow: 1;
    color: var(--color_blue_c);
    border: 0.15rem solid var(--color_yellow);
    border-radius: 0.5rem;
    padding: 1rem;
    outline: none;
    font-size: 1rem;
}
.section_h .web_section_input::placeholder{
    color: var(--color_blue_c);
    opacity: .5;
}
.section_h .web_section_button{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 3rem;
    border: 0.25rem solid var(--color_txtlight);
    box-sizing: border-box;
    background-color: var(--color_acent_2);
    color: var(--color_txtlight);
    font-weight: bold;
    padding: 1rem 2rem 1rem 2rem;
    font-size: var(--txt_font_btn);
    cursor: pointer;
}




.section_i{
    width: calc(100% - 4rem);
    padding: 4rem 2rem 4rem 2rem;
}
.section_i .web_section_in{
    width: 100%;
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}
.section_i img{
    width: 100%;
}

.section_e{
    width: calc(100% - 4rem);
    padding: 4rem 2rem 4rem 2rem;
    background-image: url(../img/home_e_section_img1.webp);
    background-size: 100%;
    background-position: 0% center;
    background-repeat: no-repeat;
}
.section_e .web_section_in{
    width: 100%;
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5rem;
}
.section_e .web_section_card{
    width: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    border-radius: 1.4rem;
    gap: 1rem;
    font-size: var(--txt_font_btn);
    font-family: "Grandstander-Bold";
    /*cursor: pointer;
    transition: all 0.3s ease;*/
}
.section_e .web_section_card:hover{
    /*transform: scale(1.05);*/
}
.section_e .web_section_card img{
    height: 10rem;
}
.section_e .web_section_cardtag{
    width: 110%;
    min-height: 3rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
    color: var(--color_txtlight);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    word-wrap: break-word;
    border-radius: 2rem;
    text-align: left;
}
.section_e .web_section_cardtag div{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.section_e .web_section_cardtag span{
    font-size: var(--fontsize_paragraph);
    font-family: "Grandstander-Regular";
}
.section_e .web_section_cardtag::before{
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    content: '';
    display: flex;
}
/*pre*/
.web_pre{
    background-color: var(--color_box_1);
}
.web_pre .web_section_cardtag{
    background-color: var(--color_pre);
}
.web_pre .web_section_cardtag::before{
    background-color: var(--color_box_1);
}
/*pri*/
.web_pri{
    background-color: var(--color_box_2);
}
.web_pri .web_section_cardtag{
    background-color: var(--color_pri);
}
.web_pri .web_section_cardtag::before{
    background-color: var(--color_box_2);
}
/*des*/
.web_des{
    background-color: var(--color_box_3);
}
.web_des .web_section_cardtag{
    background-color: var(--color_sec);
}
.web_des .web_section_cardtag::before{
    background-color: var(--color_box_3);
}
/*docpri*/
.web_docpri{
    background-color: var(--color_box_4);
}
.web_docpri .web_section_cardtag{
    background-color: var(--color_doc_pri);
}
.web_docpri .web_section_cardtag::before{
    background-color: var(--color_box_4);
}
/*docsec*/
.web_docsec{
    background-color: var(--color_box_5);
}
.web_docsec .web_section_cardtag{
    background-color: var(--color_doc_sec);
}
.web_docsec .web_section_cardtag::before{
    background-color: var(--color_box_5);
}
/*docbil*/
.web_docbil{
    background-color: var(--color_box_6);
}
.web_docbil .web_section_cardtag{
    background-color: var(--color_doc_bil);
}
.web_docbil .web_section_cardtag::before{
    background-color: var(--color_box_6);
}
/*docque*/
.web_docque{
    background-color: var(--color_box_7);
}
.web_docque .web_section_cardtag{
    background-color: var(--color_que);
}
.web_docque .web_section_cardtag::before{
    background-color: var(--color_box_7);
}

/*
==============================================
CSS FOOTER
==============================================
*/
.wen_footer_grl{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: red;
    flex-direction: column;
}
.web_footer_start{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color_blue_d);
    flex-direction: column;
}
.web_footer_svg{
    width: 100%;
}
.web_footer_svg rect:nth-child(1){
    fill: var(--color_blue_e);
}
.web_footer_svg path:nth-child(2){
    fill: var(--color_acent_1);
}
.web_footer_svg path:nth-child(3){
    fill: var(--color_grey);
}
.web_footer{
    width: calc(100% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color_blue_e);
    padding: 1rem;
    flex-direction: column;
}
.web_footer_in{
    width: calc(100% - 3rem);
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color: var(--color_txtlight);
    padding: 1.5rem;
    gap: 2rem;
}
.web_footer_in span{
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    gap: 1rem;
}
.web_footer_in svg{
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    cursor: pointer;
}
.web_footer_in svg path{
    fill: var(--color_txtlight);
}
.web_footer_end{
    width: calc(100% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color_footer_2);
    padding: 1rem;
    flex-direction: column;
    font-family: "Grandstander-Regular";
    background-image: url(../img/footer_2_img3.webp), url(../img/footer_2_img2.webp), url(../img/footer_2_img2.webp);
    background-position: 10rem -4rem, left 3rem, right -1rem;
    background-size: 12rem, 8rem, 8rem;
    background-repeat: no-repeat, no-repeat, no-repeat;
}
.web_footer_logo{
    height: 3rem;
}
.web_footer_address{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}
.web_footer_address svg{
    height: 1rem;
}
.web_footer_address path{
    fill: var(--color_acent_1);
}
.web_footer_address span{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
}
.web_footer_links{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}
.web_footer_links a{
    cursor: pointer;
}
.web_footer_links a:hover{
    text-decoration: underline;
}
.web_footer_mail{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
}
.web_footer_mail svg{
    height: 1.6rem;
}
.web_footer_mail_input{
    background-color: var(--color_blue_e);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 0.05rem solid var(--color_white);
    box-sizing: border-box;
}
.web_footer_mail_input input{
    border: 0;
    background-color: transparent;
    outline: none;
    color: var(--color_white);
    height: 2rem;
    font-size: 1rem;
}
.web_footer_mail_input input::placeholder{
    color: var(--color_white);
    opacity: 0.5;
    font-size: 1rem;
}
.web_footer_mail_input path{
    fill: var(--color_white);
}

.footer_data .web_footer_in{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 2rem;
}
.web_footer2{
    width: calc(100% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff 50%, var(--color_sky) 100%);
    padding: 4rem 1rem 1rem 1rem;
    flex-direction: column;
    position: relative;
}
.web_footer2_bkg_1{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/footer_2_img4.webp);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right bottom;
}
.web_footer2_in{
    width: calc(100% - 3rem);
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color: var(--color_txtlight);
    padding: 1.5rem;
    gap: 2rem;
    z-index: 1;
}
.web_footer2_box{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-grow: 1;
    gap: 2rem;
}
.web_footer2_boxtxt{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--color_blue_c);
    font-family: "Raleway-Regular";
}
.web_footer2_box img{
    height: 5rem;
}
.web_footer2_boxhead{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 0.2rem dashed var(--color_acent_1);
    color: var(--color_acent_1);
    font-family: "Grandstander-Bold";
    font-size: var(--fontsize_megatitle);
    padding: 1rem;
    border-radius: 1rem;
}
.web_footer2_boxdata{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.web_footer2_boxdata > span{
    width: 1.4rem;
    height: 1.4rem;
    min-width: 1.4rem;
    min-height: 1.4rem;
    padding: 0.7rem;
    border: 0.2rem solid var(--color_blue_a);
    border-radius: 50%;
}
.web_footer2_boxdata > p{
    color: var(--color_blue_c);
    font-family: "Grandstander-Bold";
    font-size: var(--fontsize_megatitle);
}
.web_footer2_boxdata > p span{
    color: var(--color_acent_1);
}
.web_footer2_boxdata path{
    fill: var(--color_blue_a);
}
.web_footer_last{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--color_sky);
}
.web_footer_last_data{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color_footer_1);
    background-image: url(../img/footer_2_img3.webp), url(../img/footer_2_img5.webp);
    background-position: 10rem 0rem, right center;
    background-size: 12rem, 80%;
    background-repeat: no-repeat, no-repeat;
}
.web_footer_last_in{
    width: calc(100% - 3rem);
    max-width: var(--max_width_conte);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    color: var(--color_blue_c);
    padding: 1.5rem;
    gap: 1rem;
    font-family: "Grandstander-Bold";
}
.web_footer_last_in a{
    cursor: pointer;
}

/*Para los enlces */
.web_footer_last_in a {
  color: var(--color_blue_c); 
  text-decoration: none; /* Sin subrayado por defecto */
}

.web_footer_last_in a:visited {
  color: var(--color_blue_c); 
}

.web_footer_last_in a:hover {
  text-decoration: underline; /* Subrayado al pasar el cursor */
}

.web_footer_last_in a:active {
  color: var(--color_blue_c); 
}
/*Termina codigo enlaces*/


.web_footer_last svg{
    width: 100%;
    margin-bottom: -2px;
}
.web_footer_last svg path{
    fill: var(--color_footer_1);
}
/*
==============================================
CSS MEDIA
==============================================
*/
@media only screen and (max-width: 1080px) {
    /*****HEADER*****/
    .web_header_nav{
        position: fixed;
        background-color: var(--color_white);
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        z-index: 2;
        width: calc(50% - 3rem);
        height: calc(100% - 3rem);
        max-height: calc(100% - 3rem);
        right: 0;
        top: 0;
        padding: 1.5rem;
        box-shadow: -0.15rem 0 0.15rem rgba(0,0,0,.15);
        overflow-y: auto;
        display: none;
    }
    .web_header_nav span{
        text-align: right;
    }
    .web_header_open{
        display: flex;
    }
    .web_header_btn{
        display: flex;
    }
    .web_header_close{
        display: flex;
    }
    .web_header_in{
        gap: 1rem;
    }
    .web_header_in img{
        height: 2.5rem;
    }
    .web_header_in:nth-child(2){
        justify-content: flex-end;
    }
    /*****SECTION*****/
    .section_h .web_section_form{
        flex-direction: column;
    }
    .section_c .web_section_in{
        padding-bottom: 0;
        flex-direction: column;
    }
    .section_a .web_section_in{
        justify-content: flex-end;
        flex-direction: column;
    }
    .section_a .web_section_txt1{
        padding: 2rem;
    }
    .section_d{
        padding-top: 5rem;
    }
    
    
    /*****FOOTER*****/
    .footer_data .web_footer_in{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    
}
@media only screen and (max-width: 920px) {
    /*****HEADER*****/

    /*****SECTION*****/
    .section_b .web_section_video{
        max-width: 100%;
    }
    .section_b .web_section_in{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section_d .web_section_in{
        flex-direction: column;
    }
    .section_d .web_section_txt{
        flex: 100%;
    }
    .web_section_level{
        flex: 100%;
    }
    .section_d{
        padding-top: 4rem;
    }
    /*****FOOTER*****/
    .web_footer2_in{
        flex-direction: column;
    }
    .web_footer2_box{
        width: 100%;
    }
}
@media only screen and (max-width: 620px) {
    html{
        font-size: clamp(8px, 100vw, 12px);
    }
    /*****HEADER*****/
    .web_header_nav{
        width: calc(100% - 3rem);
        align-items: center;
    }
    .web_header_in:nth-child(1){
        justify-content: center;
        flex-direction: column;
    }
    .web_header_in img{
        height: 3rem;
    }
    .web_header_in:nth-child(2){
        justify-content: center;
    }
    /*****SECTION*****/
    .web_section_level_icons{
        gap: 0.5rem;
    }
    .web_section_level_icons img{
        width: 9rem;
    }
    .web_section_level_btns button{
        width: inherit;
    }
    .web_section_level_btns{
        gap: 0.5rem;
    }
    .section_e .web_section_card{
        width: 10rem;
    }
    /*****FOOTER*****/
    
}
@media only screen and (max-height: 800px) {
    /*****SECTION HOME*****/
}
@media screen and (orientation: portrait) {
    
}
@media screen and (orientation: landscape) {
    /*****DETECCION DE ORIENTACION*****/
}

/*Codigo Mago    */
.menui {
    color: rgb(65, 64, 64);
    cursor: default;
    opacity: 0.5;
    transition: 0.3s ease;
}

.menui.active {
  color: #102e68;
  cursor: pointer;
  opacity: 1;  
}

.menui_hover {
    text-decoration: underline;
}

.desactivado {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed !important;
    filter: grayscale(50%);
}

.activado {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    filter: none;
    transition: all 0.3s ease;
}

.activado:hover:not(.disabled),
.btn_grados:hover:not(:disabled) {
    transform: scale(1.05);
}