<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic Reset (optional, but a good practice) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Very important! */
}

/* Basic Typography */
body {
    font-family: "Roboto", serif;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}



#menuMovil {
    display: none;
}


.circleGif {
    width: 20px;
    height: auto;
}

#charCount {
    font-size: 9px !important;
}



#mensaje::placeholder {
    font-family: "Roboto", serif;
    font-size: 18px;
    line-height: 1.5;
}

#mensaje {
    font-family: "Roboto", serif;
}



.svgDot {
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 90px !important;
    background-image: url('pics/punto1.svg');
    background-repeat: no-repeat;
    background-size: 70px auto;
    background-position: center left 8px;
}

.svgDot2 {
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 90px !important;

    background-image: url('pics/punto2.svg');
    background-repeat: no-repeat;
    background-size: 32px auto;
    background-position: center left 28px;    


}

#consentimiento {
    float: left;
    width: 15px;
    height: 35px;
    margin-right: 10px;

}
.consentimiento {
    font-size: 10px !important;
    text-align: left;
}

.error {
    color: #FFFF00;
    font-size: 11px;
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 0px 0px 0px 10px;
}


#overlayMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Dimmed background */
    z-index: 99999999999998;
    display: none; /* Initially hidden */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
@supports not (backdrop-filter: blur(5px)) {
    #overlay {
      background-color: rgba(0, 0, 0, 0.5); /* fallback */
    }
}


/*
#sideMenu {
    position: fixed;
    top: 0;
    left: -300px; 
    width: 300px; 
    height: 100%;
    background-color: #007EFF;
    z-index: 15000;
    transition: left 0.3s ease; 
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}
*/

#sideMenu {
    position: fixed;
    top: 0;
    left: 0; /* Reset left to 0 */
    width: 100%;
    height: 100%;
    background-color: #007EFF;
    z-index: 15000;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.8s ease, visibility 0s 0.3s; /* Fade and then hide instantly */
    padding: 0px;
    box-sizing: border-box;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);

}




.sideMenuLinks {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    text-decoration: none;
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif; 
    /* font-family: "TitlingGothicFB Narrow", serif; */
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    margin-left: 20px;
}

.padSideMenu {
    display: block;
    padding: 80px 0px 0px 0px !important;
}



#sideMenuLayout {
    width: 92%;
    height: 96% !important;
    margin: 0px 0px 0px 4%;
    border: 0px solid #000;
}

.movilIconsSomed {
    margin: 0px 30px 0px 30px;
}

#closeMenu {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
}

#contactoMovil {
    position: absolute;
    top: 10px;
    right: 40px;
    background-color: #002268;
    padding: 5px 10px;
    width: 200px;
    height: 50px;
    text-align: center;
    font-size: 20px;
}

#contactoMovilBot {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: #002268;
    padding: 15px 20px;
    width: auto;
    height: auto;
    text-align: center;
    font-size: 20px;

    text-decoration: none;
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 2px;    
}



.border {
    border: 1px solid #000;
}

.bgColor1 {
    background: #002268;
}
.bgColor2 {
    background: #C5C5C5;
}
.bgColor3 {
    background: #007EFF;
}
.bgColor4 {
    background: #E9E6E6;
}
.bgColor5 {
    background: #A77F56;
}
.bgColor6 {
    background: #E7EFFF;
}
.bgColor7 {
    background: #080E15;
}
.bgColor8 {
    background: #e7efff;
}
.bgColor9 {
    background: #EDEDED;
}
.bgColorWhite {
    background: #ffffff;
}




/* Background overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999999999999999998;
}

/* Modal container */
#contactModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #002268;
    padding: 40px 90px;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999999999999999999;
    width: 50%;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    
    /* Initial hidden state */
    opacity: 0;
    transform: translate(-50%, -60%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}


#contactModal h2 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 30px;
    font-weight: 700;
    
}
#contactModal p {
    font-size: 25px;
    font-weight: 400 !important;
    line-height: 135%;
    margin-top: 20px;
    
}




/* Show animation */
#contactModal.show {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}





#fondoOperamos {
    background-image: url('pics/fondoOperamos.png');
    background-repeat: repeat-y;
    background-position: center center;
}


#paisesCanvas {
    float: left;
    width: calc(100% - 160px);
    height: 600px;
    padding: 80px;

    overflow: auto;
}


#paisesCanvas::-webkit-scrollbar {
    width: 6px;
  }
  
  #paisesCanvas::-webkit-scrollbar-track {
    background: transparent; 
  }
  
  #paisesCanvas::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3); 
    border-radius: 3px;
  }
  
  #paisesCanvas::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5); 
  }
  
  /* For Firefox */
  #paisesCanvas {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  }




#paisesCanvas h1 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    line-height: 115%;
    color: #ffffff;
}

.masde35Color {
    color: #007EFF;
}






.territorioWrapper {
    float: left;
    width: 100%;
    height: auto;

    padding: 10px 0px 0px 0px;
}


.territorio {
    float: left;
    width: 100%;

}

.territorioPaises {
    float: left;
    width: 100%;


    display: none;
    overflow: hidden; 
}
.territorioTitle {
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 20px;

}

.eachPais {
    float: left;
    width: 100%;
    padding: 4px 10px 4px 10px;
    background-color: #334E86;
    color: #ffffff;
    font-size: 18px;
    font-weight: 200;
    margin-top: 2px;
}
.eachPais:hover {
    background-color: #007EFF;
}


.showPaises {
    color: #ffffff;
    font-size: 20px;
    font-weight: 200;
    text-decoration: none;
    font-family: "TitlingGothicFBBold", serif;

    background-image: url('pics/arrowDown.svg');
    background-repeat: no-repeat;
    background-position: center right 8px;
    background-size: 28px auto;
    display: block;
}

#goUp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 12000;
    width: 54px;
    height: 54px;
    opacity: 0.7;  
    transition: opacity 0.3s ease; 
    cursor: pointer; 

}
#goUp:hover {
    opacity: 1; 
}

#goUp img {
    width: 100%;  
    height: 100%;
}



#language {
    position: fixed;
    bottom: 110px;
    right: 40px;
    z-index: 12000;
    width: 54px;
    height: 54px;
    opacity: 0.7;  
    transition: opacity 0.3s ease; 
    cursor: pointer; 
    display: none !important;

}
#language:hover {
    opacity: 1; 
}

#language img {
    width: 100%;  
    height: 100%;
}


#menuBar {
    -webkit-box-shadow: 0px 6px 20px 0px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 6px 20px 0px rgba(0,0,0,0.47);
    box-shadow: 0px 6px 20px 0px rgba(0,0,0,0.47);
}

#hero {
    height: 550px;
    margin-top: 92px;
}
#nosotrosHero {
    margin-top: 98px;
}
#udnHero {
    margin-top: 95px;
    height: 550px;

}
#sostenibilidadHero {
    margin-top: 125px;
    background-image: url('pics/98d712cebf000138b672b5a46401e479.jpg');
    background-size: cover;    
}


#toc {
    margin-top: 114px;

    padding: 60px 0px 200px 0px;
}


#noticiasSpace {
    margin-top: 88px;
    background-image: url('pics/fondoNoticias.png');
    background-repeat: repeat-x;
    padding: 200px 0px 0px 0px;
}

#noticiasSpace h1 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;

}


#nosotrosBGvideo{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2F476F;
    z-index: 100;
}



#nosotrosOpacity {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,34,104,0.5);
    z-index: 150;
}

#nosotrosHeroText {
    position: absolute;
    width: 1100px;
    height: auto;
    left: 50%;
    top: 50%;
    margin-left: -550px;
    margin-top: -60px;

    text-align: center;
    font-size: 40px;
    line-height: 46px;
    font-family: "TitlingGothicFBBold", serif;
    color: #ffffff;
    z-index: 200;
}



#years139 {
    height: 605px;
    background-image: url('pics/backk2.png'); 
    background-repeat: no-repeat; 
    background-position: top center; 
    background-color: #002367;

}
#noticias {
    height: 1605px;


}

#nosotroFlechaAzul1 {
    height: 405px;
    background-image: url('pics/backInovacion_y_Pasion.png'); 
    background-repeat: no-repeat; 
    background-position: bottom 80px  center; 
    background-color: #fff;
}

#innovacion_y_pasion {
    height: 351px;
    background-image: url('pics/backInovacion_y_Pasion.png'); 
    background-repeat: no-repeat; 
    background-position: top center; 
    padding-top: 80px;

}

#unidades_de_negocio {
    height: 1100px;
    background-image: url('pics/top_nuestroCompromiso.png'); 
    background-repeat: no-repeat; 
    background-position: bottom  center; 
    padding-top: 0px;
    background-color: #ffffff;
    margin-top: 120px;

}


#flechaDownSVG {
    display: inline-block;
    margin-top: 60px;
}


#compromisoNews {
    height: 850px;
    background-image: url('pics/topNoticias.png'); 
    background-repeat: no-repeat; 
    background-position: bottom -5px  center; 
    padding-top: 100px;
    background-color: #007EFF;



}







.trabajoBlockz2 {
    float: left;
    width: calc(33.33% - 12px);
    height: 460px;
    margin: 0px 18px 18px 0px;

    background-color: #fff;
    background-size: cover;
    background-position: center center;


}

.trabajoBlockz2:nth-child(3n) {
    margin-right: 0px;
}

.trabajoAbs1 {
    position: absolute;
    background: rgba(0,34,104,0.5);
    left: 0px;
    bottom: -360px;
    padding: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;



}

.trabajoAbs2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 90px;
    z-index: 200;

}

.trabajoAbsTd1 {
    width: 60%;
    padding: 0px 0px 0px 20px;
}

.trabajoAbsTd2 {
    width: 40%;
    padding: 0px 10px 0px 0px;
}

.trabajoAbsTitle {
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    font-family: "TitlingGothicFBBold", serif;

}



.verMasClickTrabajo {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 40px 8px 20px;

    text-decoration: none;
    background-image: url('pics/arrow-right.svg');
    background-repeat: no-repeat;



    background-size: 20px auto;
    background-position: top 5px right 5px; 
  }
  
  .verMasClickTrabajo:hover {

    text-decoration: underline;
    background-image: url('pics/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: top 5px right 5px;     
  }


.verticalCenterWrapper {
    display: flex;
    align-items: flex-start; 
    height: 100%; 
    justify-content: center;
}
.verticalCenterWrapperB {
    display: flex;
    align-items: flex-start; 
    height: 100%; 
    justify-content: left;
}


#nuestrasOficinas {
    display: inline-block;
    width: auto;
    text-align: left;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    color: #002268;
    padding-top: 40px;

}

#nuestrasOficinasText {
    display: inline-block;
    width: 70%;
    text-align: left;
    font-size: 25px;
    font-weight: 400;
    line-height: 28px;
    color: #002268;
    padding-top: 40px;
}

#oficinasRowx {
    padding-bottom: 120px !important;
}



.sostenibilidadBlock {
    float: left;
    width: calc(33.33% - 12px);
    height: 400px;
    margin: 0px 18px 18px 0px;

    background-color: #fff;
    background-size: cover;
    background-position: center center;


}

.sbCanvas {
    position: relative;
    width: 100%;
    height: 100%;

    left: 0px;
    top: 0px;
    overflow: hidden;
}

.sbAbs1 {
    position: absolute;
    background: rgba(0,126,255,1);
    left: 0px;
    bottom: -310px;
    padding: 0px;
    width: 100%;
    height: 100%;
    z-index: 100;

    transition: bottom 0.5s ease, opacity 0.5s ease; 


}

.sbAbs2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 90px;

    z-index: 200;
    transition: bottom 0.5s ease;
}

.sbAbs3 {
    position: absolute;
    right: 10px;
    top: 10px;

    width: 40px;
    height: 40px;
    z-index: 300;
    display: none;
}

.sbAbs4 {
    position: absolute;
    left: 0px;
    bottom: -200px;
    width: 100%;
    padding: 30px;
    height: 200px;
    z-index: 400;
    transition: bottom 0.5s ease;
    color: #ffffff;
    font-size: 14px;


}
.sbAbs5 {
    position: absolute;
    left: 0px;
    top: 140px;
    width: 100%;
    height: auto;
    color: #002268;
    font-size: 34px;
    line-height: 36px;
    font-family: "TitlingGothicFBBold", serif;


}


.tdContacto {
    width: 50%;
}

#oficinasPic1 {
    background-image: url('pics/oficinas_1.jpg');
}
#oficinasPic2 {
    background-image: url('pics/oficinas_2.jpg');
}
#oficinasPic3 {
    background-image: url('pics/oficinas_3.jpg');
}


#sbReforestacion {
    background-image: url('pics/sostenibilidad/b1.jpg');

    background-image: image-set(
        url('pics/sostenibilidad/b1.jpg') 1x,
        url('pics/sostenibilidad/b12x.jpg') 2x,
        url('pics/sostenibilidad/b13x.jpg') 3x
    ); 


}
#sbEconomiaCircular {
    background-image: url('pics/sostenibilidad/b2.jpg');
}
#sbGasesEfectoInvernadero {
    background-image: url('pics/sostenibilidad/b3.jpg');
    background-image: image-set(
        url('pics/sostenibilidad/b3.jpg') 1x,
        url('pics/sostenibilidad/b32x.jpg') 2x,
        url('pics/sostenibilidad/b33x.jpg') 3x
    );     
}
#sbEnergiaRenovable {
    background-image: url('pics/sostenibilidad/b4.jpg');
    background-image: image-set(
        url('pics/sostenibilidad/b4.jpg') 1x,
        url('pics/sostenibilidad/b42x.jpg') 2x,
        url('pics/sostenibilidad/b43x.jpg') 3x
    );     
}
#sbFundacionCastilloCordova {
    background-image: url('pics/sostenibilidad/b5.jpg');
    background-image: image-set(
        url('pics/sostenibilidad/b5.jpg') 1x,
        url('pics/sostenibilidad/b52x.jpg') 2x,
        url('pics/sostenibilidad/b53x.jpg') 3x
    );    
}
#sbEducacion {
    background-image: url('pics/sostenibilidad/b6.jpg');
    background-image: image-set(
        url('pics/sostenibilidad/b6.jpg') 1x,
        url('pics/sostenibilidad/b62x.jpg') 2x,
        url('pics/sostenibilidad/b63x.jpg') 3x
    ); 

}
#sbGuatemaltecosPorLaNutricion {
    background-image: url('pics/sostenibilidad/b7.jpg');
    background-image: image-set(
        url('pics/sostenibilidad/b7.jpg') 1x,
        url('pics/sostenibilidad/b72x.jpg') 2x,
        url('pics/sostenibilidad/b73x.jpg') 3x
    );     
}
#sbFortifik2 {
    background-image: url('pics/sostenibilidad/b8.jpg');
    background-image: image-set(
        url('pics/sostenibilidad/b8.jpg') 1x,
        url('pics/sostenibilidad/b82x.jpg') 2x,
        url('pics/sostenibilidad/b83x.jpg') 3x
    );     
}





.verMasClick {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px;
    color: #ffffff;
    font-size: 14px;

    padding: 8px 40px 8px 20px;
    border: solid #ffffff 1px;
    text-decoration: none;
    background-image: url('pics/arrow-right.svg');
    background-repeat: no-repeat;



    background-size: 20px auto;
    background-position: top 5px right 5px; 
  }
  
  .verMasClick:hover {
    background: #3cb0fd;
    text-decoration: none;
    background-image: url('pics/arrow-right.svg');
    background-repeat: no-repeat;



    background-size: 20px auto;
    background-position: top 5px right 5px;     
  }



.sostenibilidadBlock.active .sbAbs1 {
    bottom: 0px; 
    opacity: 0.90;
}

.sostenibilidadBlock.active .sbAbs2 {
    bottom: 260px; 
}

.sostenibilidadBlock.active .sbAbs3 {
    display: block; 
}

.sostenibilidadBlock.active .sbAbs4 {
    bottom: 80px; 
}

.sbAbsTitle {
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    font-family: "TitlingGothicFBBold", serif;

}





.sbAbsTd1 {
    width: 50%;
    padding: 0px 0px 0px 20px;
}

.sbAbsTd2 {
    width: 50%;
    padding: 0px 10px 0px 0px;
}




.sostenibilidadBlock:nth-child(3n) {
    margin-right: 0px;
}




.sostenibilidad3blocks {
    padding: 0px;
    margin: 0px;
}

.sostenibilidadBlock31 {
    float: left;
    width: calc(100% - 18px);
    height: 400px;

    background-image: url('pics/sostenibilidad/s1.jpg?v1');
    background-size: cover;

    background-image: image-set(
        url('pics/sostenibilidad/s1.jpg?v1') 1x,
        url('pics/sostenibilidad/s12x.jpg?v1') 2x,
        url('pics/sostenibilidad/s13x.jpg?v1') 3x
    );     


}
.sostenibilidadBlock32 {
    float: left;
    width: 100%;
    background-image: url('pics/sostenibilidad/s2.jpg');
    background-size: cover;
    background-image: image-set(
        url('pics/sostenibilidad/s2.jpg') 1x,
        url('pics/sostenibilidad/s22x.jpg') 2x,
        url('pics/sostenibilidad/s23x.jpg') 3x
    );     
    height: 400px;
}
.sostenibilidadBlock33 {
    float: right;
    width: calc(100% - 18px); 

    background-image: url('pics/sostenibilidad/s3.jpg');
    background-size: cover;
    height: 400px;
}

.sostenibilidadBlock50a {
    float: left;
    width: 100%; 

    height: 590px;

    display: flex;
    justify-content: center;  
    align-items: center;     
}

.sostenibilidadBlock50Centered {
    width: 70%; 
    height: auto; 

} 

.sostenibilidadBlock50Centered p {
    font-size: 22px;
    font-weight: 700;
    line-height: 100%;
    color: #002268;
    font-family: "TitlingGothicFBBold", serif;

} 
.sostenibilidadBlock50Centered h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    margin-top: 20px;
    

} 


.trabajoBlock50a {
    float: left;
    width: 100%; 
    height: 640px;
}

.centerVert {
    display: flex; 
    align-items: center; 
}


#trabajoBlock1Text {
    width: 80%; 
    margin: 0px 10%;
    text-align: left; 

}

#trabajoBlock1Text h3{
    color: #007EFF;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
}
#trabajoBlock1Text h1{
    color: #002268;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    margin: 20px 0px 60px 0px;
}

#trabajoBlock1Text p{
    color: #002268;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;

}



.trabajo4blocks {
    float: left;
    width: calc(50% - 8px);
    height: 315px;
    margin: 0px 10px 10px 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
}

.trabajo4blocks:nth-child(2n) {
    margin-right: 0px;
}

.trabajo4blocksCanvas {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    overflow: hidden;
}
.trabajo4blocksCanvas::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 0.5s ease-in-out; z-index: 0;    
}
.trabajo4blocksCanvas:hover::before {
    transform: scale(1.15); 
}

#trabajoBlock1::before {
    background-image: url('pics/trabajoBlock_1.jpg');
}
#trabajoBlock2::before {
    background-image: url('pics/trabajoBlock_2.jpg');
}
#trabajoBlock3::before {
    background-image: url('pics/trabajoBlock_3.jpg');
}
#trabajoBlock4::before {
    background-image: url('pics/trabajoBlock_4.jpg');
}






#videSostenibilidadCanvas {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 590px;
    left: 0px;
    top: 0px;
    overflow: hidden;    
}







.sostenibilidadRel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sostenibilidadAbsFoto {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 0;

}


.sostenibilidadArrow1 {
    position: absolute;
    width: 34px;
    height: 34px;

    right: 30px;
    bottom: 30px;
    transition: bottom 0.5s ease; /* Animate bottom */
    transition: bottom 0.5s ease, transform 0.5s ease;
    z-index: 300;
    cursor: pointer;

}

.sostenibilidadArrow1.active {
    bottom: 244px;
    transform: rotate(180deg);

}
.sostenibilidadArrow1.rotate {
    transform: rotate(180deg);
}



#sostenibilidadInfo1 {

    background: rgba(0,34,104,0.90);




}



#sostenibilidadInfo2 {

    background: rgba(167,127,86,0.90);
 
}


#sostenibilidadInfo3 {

    background: rgba(0,126,255,0.90);

}


.sostenibilidadInfo {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 300px;
    z-index: 10;
    color: #ffffff;
    transition: top 0.5s ease;

}

.sostenibilidadInfo h1 {
    padding: 30px 5% 10px 5%;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 30px;

}
.sostenibilidadInfo p {
    padding: 8px 5% 0px 5%;
    font-size: 14px;
}




.sostenibilidadInfo.active {
    top: 90px; 
}


#orgullososImpactoPositivo {
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    line-height: 48px;
}




.impactoPositivobox {
    float: left;
    width: calc(33.33% - 12px);
    height: 220px;
    margin: 0px 18px 18px 0px;
    padding: 30px 16px 0px 16px;

    background-color: #001E5C;
    text-align: center;

    transition: background-color 0.4s ease, color 0.4s ease;
}

.impactoPositivobox:nth-child(3n) {
    margin-right: 0px;
}

.impactoPositivobox:hover {
    background-color: #007EFF; /* Azul (cÃƒÂ¡mbialo si quieres otro color) */
}


.impactoPositivobox h1 {
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;


}

.impactoPositivobox p {
    color: #0078F6;
    font-size: 17px;
    line-height: 19px;
    font-weight: 600;
    margin-top: 14px;
    transition: color 0.4s ease;
}

.impactoPositivobox:hover p {
    color: #001A5B; 
}
























#trabajo h2 {
    color: #007EFF;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 18px;
    font-weight: 700;
}
#trabajo h1 {
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
}
#trabajo p {
    color: #ffffff;
    font-size: 25px;
    line-height: 150%;
    margin-top: 40px;
}


#noticias h1 {
    text-align: center;
    font-family: "TitlingGothicFBBold", serif;
    margin: 50px 0px 110px 0px;
    font-size: 40px;
    font-weight: 700;
    color: #002268;
}


.sostenibilidadSubtitulo {
    font-size: 18px;
    font-weight: 700;
    color: #002268;
    line-height: 0px !important;
}


#innovacion_y_pasion h2 {
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
}

.years139height {
    height: 605px;
}

#years139area {
    position: relative;
    width: 100%;

}

#years139text {
    position: absolute;
    width: 900px;
    left: 50%;
    margin-left: -450px;
    color: #002367;
    height: auto;
    text-align: center;
    z-index: 100;
    font-size: 26px;
    line-height: 36px;
    top: 100px;
}

#years139text h1 {
    font-family: 'TitlingGothicFBBold';
    font-size: 40px;
}
#years139text p {
    margin-top: 20px;
    font-size: 25px;
    line-height: 30px;
}

.genericP1 p {
    font-size: 25px;
    line-height: 135%;
    padding-bottom: 14px;
}

.genericH1 {
    font-family: 'TitlingGothicFBBold';
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
}

.sostenibilidadTitulo {
    line-height: 120% !important;
}

.sostenibilidadP {
    margin-top: 30px;
}


.thinner-chevron {
    transform: scaleX(0.8); 
    display: inline-block; 
}

.verMas1 {
    font-size: 16px;
    font-weight: 700;
    color: #007EFF;
    text-decoration: none;
}
.verMas1:hover {
    text-decoration: underline;
}





#rombo139 {
    position: absolute;
    z-index: 110;
    width: 250px;
    height: 187px;
    left: 50%;
    margin-left: -125px;
    bottom: 40px;
    background-image: url('pics/rombo.svg');
    background-repeat: no-repeat;
}

#rombo139topText {
    position: absolute;
    z-index: 200;
    width: 228px;
    height: auto;
    left: 50%;
    margin-left: -125px;
    bottom: 124px;
    text-align: center;
    font-family: "TitlingGothicFBBold", serif;
    color: #ffffff;
    font-size: 56px;
    line-height: 56px;
}

#rombo139years {
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    z-index: 200;
    width: 228px;
    height: auto;
    left: 50%;
    margin-left: -125px;
    bottom: 90px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}


#heroContainer {
    position: relative; width: 100%; height: 550px; 
}
#heroContainer2 {
    position: relative; width: 100%; height: 550px; 
}

#heroContainerTrabajo {
    position: relative; width: 100%; height: 600px; 
    margin-top: 0px;
    background-image: url('pics/trabajoBanner.jpg');
    background-size: cover;

}
#heroContainerSostenibilidad {
    position: relative; width: 100%; height: auto; 
    padding: 180px 0px;
}
#heroContainerUdn {
    position: relative; width: 100%; height: auto; 
    padding: 180px 0px;
}

#heroVideo {
    position: absolute;
    width: calc(50% + 201px);
    height: 550px; 
    left: 0px;
    top: 0px;
    z-index: 100;
}

#heroVideoTapador {
    position: absolute;
    height: 550px;
    left: 50%;
    width: 201px;
    top: 0px;
    z-index: 120;
    background-image: url('pics/portadaVideoTapador1.png');
    background-position: center 0px left 0px;    
}
#nuevoTapador {
    display: none;
}

#heroText {
    position: absolute;
    height: 550px;
    width: calc(50% - 201px);
    background-color: #0080FF;
    right: 0px;
    top: 0px;
    z-index: 120;
}




#heroVideoTrabajo {
    position: absolute;
    height: 600px;
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    top: 0px;
    z-index: 100;
    display: grid; 
    place-items: center start;   

}

#heroTrabajoText {
    display: inline-block;
}

#heroTrabajoText h1 {
    color: #ffffff;
    font-size: 40px;
    line-height: 48px;
    font-family: "TitlingGothicFBBold", serif;
}
#heroTrabajoText p {
    color: #ffffff;
    font-size: 24px;
    line-height: 24px;
    margin: 40px 0px 60px 0px;

}

#aplicar {
    color: #ffffff;
    font-size: 23px;
    background: #007EFF;
    padding: 16px 40px 16px 40px;
    text-decoration: none;
}
#aplicar:hover {
    background: #001A5B;
    text-decoration: none;
}



#heroVideoSostenibilidad {
    position: absolute;
    height: 600px;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 100;


    background-image: url('pics/98d712cebf000138b672b5a46401e479.jpg');
    background-size: cover;
    background-position: center 0px center 0px;

}


#heroTextCopy {
    position: absolute;
    height: 240px;
    width: 80%;
    top: 50%;
    left: 10%;
    margin-top: -100px;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 115%;


}

.heroTexts h1 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    line-height: 42px;
    color: #ffffff;
}

.txtColor2 {
    color: #002268;
}
.txtColor3 {
    color: #007EFF;
}
.txtColor1 {
    color: #ffffff;
}

#logoArea {
    float: left; 
    width: 261px; 
    height: auto; 
    margin-left: 60px;
    margin-top: 10px;

}

#menuDesktopArea {
    float: right; 
    height: 69px; 
    width: 960px; 
    margin-top: 10px;
    margin-right: 60px;
    text-align: right;


    background-image: url('pics/lineaMenu.png');
    background-repeat: no-repeat;
    background-position: center right 75px;

}
.desktopLinksContact {


    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    line-height: 69px;
    padding: 10px 12px;
    margin: 0px 14px;
    position: relative;
    background-color: #007EFF;
    transition: background-color 0.3s ease-in-out;
}
.desktopLinksContact:hover {
    background-color: #A77F56;
}



.langSwitch {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    line-height: 69px;
    padding: 10px 12px;
    margin: 0px 14px;
    position: relative;
    background-color: #A77F56;
    transition: background-color 0.3s ease-in-out;
}
.langSwitch:hover {
    background-color: #007EFF;
}


.desktopLinks {
    font-family: "TitlingGothicFB Narrow", serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500 !important;
    text-decoration: none;
    line-height: 69px;
    padding: 10px 0px;
    margin: 0px 14px;
    position: relative;
    letter-spacing: 1px;
}

.desktopLinks::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 6px; /* Thickness of the underline */
    background-color: #007EFF; 
    transition: width 0.3s ease-in-out; 
}


.desktopLinks:hover::before {
    width: 100%;
}


#subMenuUDN {
    margin-top: 40px;
}


.desktopLinks2 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    line-height: 69px;
    padding: 10px 0px;
    margin: 0px 30px;
    position: relative;

}

.desktopLinks2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 6px; /* Thickness of the underline */
    background-color: #ffffff; 
    transition: width 0.3s ease-in-out; 
}


.desktopLinks2:hover::before {
    width: 100%;
  }


.fl100 {
    float: left;
    width: 100%;

    height: auto;



    overflow: hidden;
    box-sizing: border-box;
}

.tac {
    text-align: center;
}
.tar {
    text-align: right;
}


.footerLinks {
    color: #002367;
    text-decoration: none;
}
.footerLinks:hover {
    color: #002367;
    text-decoration: underline;
}

.footerSpacer {
    padding: 0px 30px 0px 0px;
}

.fontColor1 {
    color: #002268;
}
.fontColor2 {
    color: #007EFF;
}
.fontColorWhite {
    color: #ffffff;
}

.footerClicks {
    text-decoration: none;
    color: #002367;
}

.udn_title {
    float: left;
    width: 70%;
    margin-left: 30%;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;

    
}
.udn_title2 {
    float: left;
    width: 70%;
    margin-left: 112px;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;

    
}
.udn_text {
    width: 100%;
    margin-right: 0px;
    font-size: 25px;
    line-height: 33px;
    font-weight: 400;

    
}


.mt1 {
    margin-top: 12px !important;
}
.mt2 {
    margin-top: 32px !important;
}



.verTodo2 {
    color: #ffffff;
    font-size: 14px;
    background: #002268;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}  
.verTodo2:hover {
    background: #A77F56;
    text-decoration: none;
}

.verTodo3 {
    color: #ffffff;
    font-size: 14px;
    background: #007EFF;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}  
.verTodo3:hover {
    background: #A77F56;
    text-decoration: none;
}



.new-carousel {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 700px; /* Fixed height */
    overflow: hidden; 





}
.new-carousel div {
    height: 100%; /* Ensure divs take full height */
    display: flex;
    align-items: center;
    justify-content: left;
}


.carousel-item {
    width: 700px !important;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}




.udn_centered {

    float: left;
    width: 60%;
    margin: 100px 20% 0px 20%;
}
.udn_centered2 {

    float: left;
    width: 60%;
    margin: 10px 20% 0px 20%;
}
.udn_centered3 {

    float: left;
    width: 80%;
    margin: 10px 10% 0px 10%;


}
.udn_centered4 {

    float: left;
    width: 100%;
    margin: 10px 0px 0px 0px;
    background-color: palegreen;


}


#carrousel1 {
    float: left;

    width: 100%;
    margin: auto;
    height: 506px;

    

}

.newSlide {
    display: flex;
    width: 100%;
    height: 500px;

}

#carrousel2 {
    float: left;

    width: 100%;
    height: 312px;
    overflow: hidden;


}

#carrousel1_dots {
    float: left;
    width: 100%;
    height: 30px;
    text-align: center;
}


.rayas {
    margin: 0px 10px;
}


.marcasArea {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 5% 0px;
}

.each_carrousel1 {
    float: left;
    width: 600px;
    height: 506px;
  }
.each_carrousel2 {
    float: left;
    height: 312px;
  }
.eachMarca20p {
    display: inline-block;
    width: 19%;
    height: auto;
}
.eachMarca25p {
    display: inline-block;
    width: 24%;
    height: auto;
}
.eachMarca50p {
    display: inline-block;
    width: 48%;
    height: auto;

}
.eachDivider {
    display: inline-block;
    width: 90%;
    height: 4px;
    margin: 0px 0px 0px 0px;

}



  

.unidadesCanvas {
    position: relative;
    width: 100%;
    height: 100%;

} 

.unidadesUnidadMadre {
    position: absolute;
    width: 95%;
    padding: 20px;
    height: 480px !important;
    right: 0px;
    top: 0px;
    z-index: 100;
    text-align: right;
    color: #ffffff;

}

.unidadBebidas {
    background-color: #007EFF !important;
}
#unidadBebidas {
    background-color: #007EFF;
}
.unidadCervezas {
    background-color: #A77F56;
}
#unidadCervezas {
    background-color: #A77F56;
}
.unidadAlimentos {
    background-color: #002268;
}
#unidadAlimentos {
    background-color: #002268;
}
.unidadComercio {
    background-color: #007EFF;
}
#unidadComercio {
    background-color: #007EFF;
}
.unidadInmobiliaria {
    background-color: #D2CCCD;
}
#unidadInmobiliaria {
    background-color: #D2CCCD;
}

.unidadEmpaques {
    background-color: #A77F56;
}
#unidadEmpaques {
    background-color: #A77F56;
}


.unidadLink {
    color: #fff;
    display: block;
    font-size: 18px;
    padding: 0px 0px 0px 40px;
}
.unidadLink2 {
    color: #002268;
    display: block;
    font-size: 18px;
    padding: 0px 0px 0px 40px;    
}

.textosValign {
    padding: 100px 0px 0px 0px;
}
.textosValign2 {
    padding: 100px 0px 0px 0px;
}
.verticalAligner {
    vertical-align: top;
}


.unidadBebidasPic {
    background-image: url('pics/unidadBebidas.jpg');
    background-repeat: no-repeat; 
    background-position: center right 0px; 
    background-size: cover; 
    background-image: image-set(
        url('pics/unidadBebidas.jpg') 1x,
        url('pics/unidadBebidas2x.jpg') 2x,
        url('pics/unidadBebidas3x.jpg') 3x
    );    
      
}
.unidadCervezasPic {
    background-image: url('pics/unidadCerveza.jpg');
    background-repeat: no-repeat; 
    background-position: center right 0px; 
    background-size: cover; 
    background-image: image-set(
        url('pics/unidadCerveza.jpg') 1x,
        url('pics/unidadCerveza2x.jpg') 2x,
        url('pics/unidadCerveza3x.jpg') 3x
    );      
      
}
.unidadAlimentosPic {
    background-image: url('pics/unidadAlimentos.jpg');
    background-repeat: no-repeat; 
    background-position: center right 0px; 
    background-size: cover; 
    background-image: image-set(
        url('pics/unidadAlimentos.jpg') 1x,
        url('pics/unidadAlimentos2x.jpg') 2x,
        url('pics/unidadAlimentos3x.jpg') 3x
    );     
      
}
.unidadComercioPic {
    background-image: url('pics/unidadComercio.jpg');
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover; 
      
}
.unidadInmobiliariaPic {
    background-image: url('pics/unidadInmobiliaria.jpg');
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover; 
    background-image: image-set(
        url('pics/unidadInmobiliaria.jpg') 1x,
        url('pics/unidadInmobiliaria2x.jpg') 2x,
        url('pics/unidadInmobiliaria3x.jpg') 3x
    );         
      
}
.unidadEmpaquesPic {
    background-image: url('pics/unidadEmpaques.jpg');
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover; 
      
}


.unidadLogos {
    position: absolute;

    width: 96%;
    height: 160px !important;
    left: 30px;
    bottom: 40px;


    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px;
    row-gap: 10px !important; 


}

.unidadLogos1 {
    width: 70px !important;
    height: auto !important;  
    object-fit: contain !important;  
}
.unidadLogos2 {
    width: 120px !important;
    height: auto !important;  
    object-fit: contain !important;  
}
.unidadLogos2b {
    width: 120px !important;
    height: auto !important;  
    object-fit: contain !important;  
}
.unidadLogos3 {
    width: 86px !important;
    height: auto !important;  
    object-fit: contain !important;  
}
.unidadLogos4 {
    width: 130px !important;
    height: auto !important;  
    object-fit: contain !important;  
}
.unidadLogos5 {
    width: 180px !important;
    height: auto !important;  
    object-fit: contain !important;  
}


.unidadIndicador {

    font-family: "TitlingGothicFBBold", serif;

    position: absolute;
    left: 0px;
    top: 50px;
    z-index: 400;
    width: 270px;
    padding: 0px 60px 0px 20px;
    height: 60px !important;
    color: #ffffff;
    font-size: 22px;
    line-height: 60px;
    text-align: right;
    letter-spacing: 2px;


    background-image: url('pics/flechaColor1.png');
    background-repeat: no-repeat; 
    background-position: center right ; 


}
.unidadIndicador2 {

    font-family: "TitlingGothicFBBold", serif;

    position: absolute;
    left: 0px;
    top: 50px;
    z-index: 400;
    width: 260px;
    padding: 0px 60px 0px 20px;
    height: 60px !important;
    color: #ffffff;
    font-size: 22px;
    line-height: 60px;
    text-align: right;

    letter-spacing: 2px;


    background-image: url('pics/flechaColor2.png');
    background-repeat: no-repeat; 
    background-position: center right ; 


}






.carousel {

    width: 1000px; /* Example width */
    margin: 0 auto; /* Center the carousel horizontally */
}
  
  
  
.slide {
        height: 426px;
        display: flex;
        padding: 12px;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        background-color: #eee;
        border: 1px solid #ccc;
  
}
  
.slick-slide {
    margin-left: 10px;
    margin-right: 10px;
    box-sizing: border-box; /* Important for layout */
}    
  
      /* Optional: Style the arrows */
.slick-prev:before, .slick-next:before {
    color: black; /* Change arrow color */
    font-size: 20px;
}


.noticiasSocialTxt {
    font-size: 16px;
    color: #002268;
    font-weight: 700;
    padding-top: 10px;
    line-height: 24px;
}



#trayectoriaContainer {
    float: left;
    width: 100%;

    



    overflow: hidden;
    box-sizing: border-box;
}

#trayecTitulo {
    float: left;
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'TitlingGothicFBBlack';
    margin: 50px 0px 110px 0px;
    font-size: 55px;
    color: #ffffff;
}

#trayecVideo {
    float: left;
    width: 100%;
    height: 660px;
    margin: 0px 0px 25px 0px;
    background-image: url('pics/videov.jpgs'); 
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover; 


}
.trayecVideoBtest {
    float: left;

    margin: 0px 0px 25px 0px;
    background-color: red;
}

#trayecMapa {
    float: left;
    width: calc(60% - 25px);
    height: 560px;
    box-sizing: border-box;
    margin-right: 25px; 

}

#trayecMapaCanvas {
    position: relative;
    width: 100%;
    height: 560px;
    left: 0px;
    top: 0px;
}

#mapaBack {
    position: absolute;
    width: 100%;
    height: 560px;
    left: 0px;
    top: 0px;
    z-index: 100;
}


.video-container {
    position: relative; 
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; 
  }  

.video-container2 {
    position: absolute; 
    width: 100%; 
    height: 600px; 
    overflow: hidden; 
    padding: 0px;
    margin: 0px;

  }
  
  .video-container2 video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; 
  }

  .video-container3 {
    position: absolute; 
    width: 100%; 
    height: 590px; 
    overflow: hidden; 
    padding: 0px;
    margin: 0px;
    background-color: #002268;

  }
  
  .video-container3 video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; 
  }  


#sostenibilidadLogos {
    position: absolute;
    width: 100%;
    height: 100% !important;
    background-image: url('pics/globalLogo2.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;


    z-index: 101;
}


#mapaFront {
    position: absolute;
    width: 240px;
    height: 100%;
    background-color: #007EFF;
    padding: 0px 0px 0px 0px;
    right: 0px;
    bottom: 0px;
    z-index: 120;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 80px;
    line-height: 30px;
    color: #fff;
    text-align: right;

}

#trayecCol2 {
    width: 40%;
    float: left;
    box-sizing: border-box; 

  }

#trayec75marcas {
    float: left;
    width: 100%;
    height: 272px;
    background-color: #A77F56;
    background-image: url('pics/romboMarcasBack.svg'); 
    background-repeat: no-repeat; 
    background-position: center right 20px; 
}  

#trayecColaboradores {
    float: left;
    width: 100%;
    margin-top: 25px;
    height: 263px;
    background-color: #fff;

    background-image: url('pics/backColaboradores.jpg'); 

    background-size: 38% auto;
    background-repeat: no-repeat; 
    background-position: bottom 0px right -5px; 
    background-image: image-set(
        url('pics/backColaboradores.jpg') 1x,
        url('pics/backColaboradores2x.jpg') 2x,
        url('pics/backColaboradores3x.jpg') 3x
    );
}



.noticiasBox {
    float: left;
    width: 90%;
    height: 500px;
    margin: 20px 5%;
    background-color: #ffffff;
    padding: 10px;
    transition: box-shadow 0.5s ease; /* Add transition for smooth effect */
}

.noticiasBox:hover {
    -webkit-box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.42);
    -moz-box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.42);
    box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.42);
}

.noticiasFecha {
    color: #D2CCCD;
}
.noticiasTxt2 {
    color: #002268;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.colabArea {
    position: relative;
    width: 100%;
    height: 100%;
}

#colabText {
    position: absolute;
    width: 80%;
    height: auto;
    color: #002268;
    left: 36px;
    top: 50%;
    margin-top: -50px;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 70px;
    line-height: 48px;

}
#marcasText {
    position: absolute;
    width: 80%;
    height: auto;
    color: #ffffff;

    left: 36px;
    top: 50%;
    margin-top: -50px;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 80px;
    line-height: 48px;
    font-weight: 700;

}

.subText1 {
    font-size: 30px;
    font-family: "Roboto", serif;
    font-weight: 700;
    margin-top: 40px;
    margin-left: 40px;
    display: inline-block;
}
.subText1b {
    font-size: 30px;
    font-family: "Roboto", serif;
    font-weight: 700;
    margin-top: 14px;
    margin-left: 0px;
    display: inline-block;
}










.container {
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px;
}

.containerx {
    width: auto; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 10px;
}
.containerp0 {
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0px;
}
.containerp0b {
    width: 80%; 
    margin: 0 auto; 
    padding: 0px;
}
.containerp100 {
    width: 100%; 
    margin: 0px 0px 0px 0px; 
    padding: 0px 0px 0px 0px;
}
.containerp100p30 {
    width: 100%; 
    margin: 0px 0px 0px 0px; 
    padding: 30px 0px 30px 0px;
}
.containerp100p15 {
    width: 100%; 
    margin: 0px 0px 0px 0px; 
    padding: 15px 0px 15px 0px;
}
.containerp100p100 {
    width: 99.2%; 
    margin: auto; 
    padding: 100px 0px 100px 0px;
}
.containerp30 {
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 30px 0px;
}

.containerp90 {
    width: 90%; 
    margin: auto; 
    padding: 0px 0px 0px 0px;

}

.containerp70 {
    width: 70%; 
    margin: auto; 
    padding: 0px 0px 0px 0px;

}

.containerp0c {
    width: 90%; 
    max-width: 1160px; 
    margin: 0 auto; 
    padding: 0px;
}

/* Row */
.row {
    display: flex;
    flex-wrap: wrap; 
    margin-left: -10px;   
    margin-right: -10px;
}


.rowx {
    display:flex;
    width:100%;
    justify-content: space-between;
    padding: 0px;
    margin-left: 0px;   
    margin-right: 0px;
}


.rowPrioridades {
    display:flex;
    width:100%;
    justify-content: space-between;
    padding: 20px 0px 20px 0px;
    margin-left: 0px;   
    margin-right: 0px;

    margin-top: 10px;




    background-image: url('pics/lineaDotted.svg');
    background-repeat: no-repeat;
    background-position: top center;


}


.vertical-center {
    display: flex;
    align-items: center;
    justify-content: left; 
}


.udnText {
    display: inline-block;
    width: 100%;
    padding: 0px 10%;
    color: #002268;
    
}

.udnText h1 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;

}

.udnText p {
    font-size: 23px;
    line-height: 135%;
    margin-top: 24px;

}

.udnLogos1 {
    margin-top: 130px;
}
.udnLogos2 {
    margin-top: 130px;
}
.udnLogos3 {
    margin-top: 90px;
}
.udnLogos4 {
    margin-top: 90px;
}



.udnBlock {
    height: 570px;
}
.trabajoTriBlock {
    height: 450px;
}


#nosotros0 {
    background-image: url('pics/cafeBack.png');
    background-repeat: repeat;
}

#nosotrosDiv1, #nosotrosDiv2, #nosotrosDiv3 {
     width: calc((100% - 28px) / 3);
    box-sizing: border-box;
    padding: 0 0px;
    margin: 0px;
    height: 400px;
}


#nosotrosDiv6 {
    width: calc(((100% - 30px) / 4)*2);
    box-sizing: border-box;
    padding: 14px;
    margin: 0px;
    height: 424px;
    background-color: #007EFF;
}




.nosotrosFoto6 {
    position: absolute;
    overflow: hidden; 
    width: 268px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto6::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/marcaEmblematica.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    background-image: image-set(
        url('pics/nosotros/marcaEmblematica.jpg') 1x,
        url('pics/nosotros/marcaEmblematica2x.jpg') 2x,
        url('pics/nosotros/marcaEmblematica3x.jpg') 3x
    );
    
    

}
.nosotrosFoto6:hover::before {
    transform: scale(1.1); 
}

.nosotrosFoto7 {
    position: absolute;
    overflow: hidden; 
    width: 100%;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto7::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/comprometidosConElCrecimiento.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    background-image: image-set(
        url('pics/nosotros/comprometidosConElCrecimiento.jpg') 1x,
        url('pics/nosotros/comprometidosConElCrecimiento2x.jpg') 2x,
        url('pics/nosotros/comprometidosConElCrecimiento3x.jpg') 3x
    );     
}
.nosotrosFoto7:hover::before {
    transform: scale(1.1); 
}

.nosotrosFoto8 {
    position: absolute;
    overflow: hidden; 
    width: 100%;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto8::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/innovacion.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    background-image: image-set(
        url('pics/nosotros/innovacion.jpg') 1x,
        url('pics/nosotros/innovacion2x.jpg') 2x,
        url('pics/nosotros/innovacion3x.jpg') 3x
    );     
}
.nosotrosFoto8:hover::before {
    transform: scale(1.1); 
}



.nosotrosFoto9 {
    position: absolute;
    overflow: hidden; 
    width: 100%;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto9::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/deporte.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;

    background-image: image-set(
        url('pics/nosotros/deporte.jpg') 1x,
        url('pics/nosotros/deporte2x.jpg') 2x,
        url('pics/nosotros/deporte3x.jpg') 3x
    );

}
.nosotrosFoto9:hover::before {
    transform: scale(1.1); 
}





.nosotrosFoto10 {
    position: absolute;
    overflow: hidden; 
    width: 253px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto10::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/pioneros.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    background-image: image-set(
        url('pics/nosotros/pioneros.jpg') 1x,
        url('pics/nosotros/pioneros2x.jpg') 2x,
        url('pics/nosotros/pioneros3x.jpg') 3x
    ); 

}
.nosotrosFoto10:hover::before {
    transform: scale(1.1); 
}



.nosotrosFoto11 {
    position: absolute;
    overflow: hidden; 
    width: 100%;
    height: 142px;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto11::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/conveniencia.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
}
.nosotrosFoto11:hover::before {
    transform: scale(1.1); 
}




.nosotrosFoto12 {
    position: absolute;
    overflow: hidden; 
    width: 550px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;        
    background-size: cover;
    background-position: center;
} 
.nosotrosFoto12::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image: url('pics/nosotros/nuestrasInstalaciones.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;

    background-image: image-set(
        url('pics/nosotros/nuestrasInstalaciones.jpg') 1x,
        url('pics/nosotros/nuestrasInstalaciones2x.jpg') 2x,
        url('pics/nosotros/nuestrasInstalaciones3x.jpg') 3x
    ); 

}
.nosotrosFoto12:hover::before {
    transform: scale(1.1); 
}


.blockTexts {
    font-size: 15px !important;
    letter-spacing: 2% !important;
    line-height: 100% !important;
    font-weight: 200 !important;
}

.blockTextsTitle {
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 120%;
    width: 100%;
    display: inline-block;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 20px 0px;

    background-image: url('pics/divider1.png');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.blockTextsTitle2 {
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 120%;
    width: 100%;
    display: inline-block;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 20px 0px;

    background-image: url('pics/divider2.png');
    background-repeat: no-repeat;
    background-position: bottom left;
}

.blockTextsP {
    display: inline-block;
    line-height: 125%;
    font-weight: 400;
}
.blockTextsP2 {
    display: inline-block;
    line-height: 125%;
}

.blockTextsCapsule {
    display: inline-block;
    width: 100%;
    font-weight: 600;

}


#nuestrasPrioridadesEstrategicas h1 {
    color: #ffffff;
    font-family: "TitlingGothicFBBold", serif;
    font-size: 40px;
    font-weight: 700;
    
}

#nosotrosDiv6 .nosotrosTexto {
    position: absolute;
    width: 250px;
    height: 100%;
    right: 0px;
    padding: 0px;
    display: flex; 
    align-items: center;     
} 

.centeredText {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.centeredText2 {
    width: 100%;
    height: 100%;

}


#nosotrosDiv7, #nosotrosDiv8  {
    width: calc((100% - 30px) / 4);
    box-sizing: border-box;
    padding: 14px;
    margin: 0px;
    height: 424px;

}


#nosotrosDiv7 .nosotrosTexto {
    position: absolute;
    width: 100%;
    height: 240px;
    right: 0px;
    bottom: 0px;
    padding: 0px;
    display: flex; 
    align-items: flex-start;
     
} 
#nosotrosDiv8 .nosotrosTexto {
    position: absolute;
    width: 100%;
    height: 240px;
    right: 0px;
    bottom: 0px;
    padding: 0px;
    display: flex; 
    align-items: flex-start;
     
} 
#nosotrosDiv9 .nosotrosTexto {
    position: absolute;
    width: 100%;
    height: 212px;
    right: 0px;
    bottom: 0px;
    padding: 0px;
    display: flex; 
    align-items: flex-start;
     
} 

#nosotrosDiv10 .nosotrosTexto {
    position: absolute;
    width: 268px;
    height: 100%;
    right: 0px;
    bottom: 0px;
    padding: 0px;
    display: flex; 
    align-items: center; 
    
     
} 


#nosotrosDiv11 .nosotrosTexto {
    position: absolute;
    width: 100%;
    height: 212px;
    right: 0px;
    bottom: 0px;
    padding: 0px;
    display: flex; 
    align-items: flex-start;
     
} 


.descarcaPdfEtica {
    text-decoration: underline;
    color: #007EFF;
    font-size: 16px;
    padding: 10px 50px 10px 20px;
    background-color: #ffffff;
    background-image: url('pics/descargaPDF.svg');
    background-repeat: no-repeat;
    background-position: center right 14px;
    background-size: 22px auto;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.descarcaPdfEtica:hover {
    background-color: #A77F56;
    color: #ffffff;
}


#nosotrosDiv12 .nosotrosTexto {
    position: absolute;
    width: 566px;
    height: 100%;
    right: 0px;
    bottom: 0px;
    padding: 0px;
    display: flex; 
    align-items: center; 
     
} 



.eticaTituloBoton {
    margin: 0px 0px 40px 0px;
    padding: 10px 0px 0px 0px;
}


#textoEtica {
    margin: 50px 0px 50px 0px !important;
    padding: 0px 0px 0px 50px;
}

#textoEtica h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    color: #002268;
    font-family: "TitlingGothicFBBold", serif;
}


#valoresCompartimos h1{
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    color: #002268;
    font-family: "TitlingGothicFBBold", serif;
}


#reconocimientos h1{
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    color: #002268;
    font-family: "TitlingGothicFBBold", serif;
}



.btnDenuncia {
    color: #ffffff;
    font-size: 16px;
    background: #007EFF;
    padding: 10px 50px 10px 20px;
    text-decoration: underline;
    margin-top: 20px !important;
    display: inline-block;
    background-image: url('pics/lapiz.svg');
    background-repeat: no-repeat;
    background-position: center right 10px;
  }
  
  .btnDenuncia:hover {
    background: #002268;
    text-decoration: underline;
    background-image: url('pics/lapiz.svg');
    background-repeat: no-repeat;
    background-position: center right 10px;
  }



#textoEtica p {
    font-size: 20px;
    font-weight: 400;
    
    line-height: 120%;
    color: #002268;

}

.pEtica2 {
    font-size: 18px !important;
    font-weight: 400;
    margin-top: 8px;
    
    line-height: 120%;
    color: #002268;

}

#textoEtica h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    color: #002268;
    font-family: "TitlingGothicFBBold", serif;
    margin: 40px 0px 0px 0px;
}



#eticaFotoArea {
    position: relative;
    width: 100%;
    height: 100%;
}

#eticaFoto {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    background-image: url('pics/nosotros/etica.jpg');
    background-size: cover;
    background-position: center;  
    
    background-image: image-set(
        url('pics/nosotros/etica.jpg') 1x,
        url('pics/nosotros/etica2x.jpg') 2x,
        url('pics/nosotros/etica3x.jpg') 3x
    );    

}

#valoresRow {
    min-height: 590px;
}


#valoresArea {
    position: relative;
    width: 100%;
    height: 100%;

}

.valoresBox {
    position: absolute;
    width: 270px;
    height: 270px;
    background-color: #fff;
    padding: 20px;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.valoresBox:hover {
    background-color: #007EFF; /* Azul (cÃƒÂ¡mbialo si quieres otro color) */
}

.valoresBox h1 {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 20px;
    color: #002268;
    transition: color 0.4s ease;
}
.valoresBox p {
    font-size: 16px;
    line-height: 120%;
    color: #002268;
    transition: color 0.4s ease;   
    margin-top: 16px; 
}

.valoresBox:hover h1,
.valoresBox:hover p {
    color: #fff; 
}

.valoresIcons {
    width: auto;
    height: 42px;
    transition: filter 0.4s ease;
}
.valoresBox:hover .valoresIcons {
    filter: brightness(0) invert(1); 
}


#reconocimientosArea {
    float: left;

    width: 100%;
    padding: 0px 0px 0px 0px;



    
}

.eachReconocimiento {
    float: left;

    width: 100%;

    padding: 20px 0px 45px 0px;
    border-top: 1px solid #002268;
    color: #002268;
    transition: height 0.5s ease-in-out;

    height: 90px;




    background-image: url('pics/signoMas.svg');
    background-repeat: no-repeat;
    background-position: right 20px;
    cursor: pointer;


}
.eachReconocimiento.expandedx {
    height: 450px; 
    background-position: right 20px;
}



.eachTitulo {
    display: inline-block;

    font-size: 20px;
    font-weight: 700;    
}
.eachTextoLong {
    display: none;
    width: 95%;
    font-size: 20px;
    font-weight: 400;
    line-height: 135%;
}


#vB1 {
    top: 0px;
    left: 0px;
}
#vB2 {
    top: 0px;
    right: 0px;
}
#vB3 {
    bottom: 0px;
    left: 0px;
}
#vB4 {
    bottom: 0px;
    right: 0px;
}


.nosotrosRecuadrosArea {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}


.historiaEscritaR2 {
    margin-top: 20px;
}


#nosotrosDiv9, #nosotrosDiv11  {
    width: calc((100% - 30px) / 4);
    box-sizing: border-box;
    padding: 14px;
    margin: 0px;
    height: 400px;

}


#nosotrosDiv10 {
    width: calc(((100% - 30px) / 4)*2);
    box-sizing: border-box;
    padding: 14px;
    margin: 0px;
    height: 400px;
    background-color: #D2CCCD;
}


#nosotrosDiv12 {
    box-sizing: border-box;
    padding: 14px;
    margin: 0px;
    height: 400px;
    background-color: #002268;
    width: 100%;
}



.prioridadesTextossssss {

    height: auto;
    overflow: hidden;
}


.prioridadesNumber {
    width: 12%;
    padding: 0px 0px 0px 20px;
    text-align: left;
    color: #ffffff;
    font-size: 40px;
    line-height: 110%;
    font-family: "TitlingGothicFBBold", serif;
}
.prioridadesTitulo {
    width: 35%;
    color: #ffffff;
    font-size: 40px;
    line-height: 110%;
    font-family: "TitlingGothicFBBold", serif;

}


.prioridadesTexto {
    width: 42%;
    overflow: hidden;
    max-height: 3em; 
    position: relative;
    transition: max-height 0.5s ease-out;
    color: #ffffff;
    font-size: 20px;
}
.prioridadesTexto.expanded {
    max-height: 500px; 
}

.preview {
    display: block !important;
    font-size: 20px !important;
    line-height: 100% !important;
    width: 80%;

}

.moreText {
    display: block !important;
    font-size: 20px !important;
    line-height: 100% !important;
    width: 80%;
    display: none !important;
}

.moreText p {
    margin-bottom: 20px !important;
}

.moreText li {
    margin-top: 10px;
    line-height: 110% !important;
}


.prioridadesTexto ol {
    list-style: decimal; /* Ensures numbered list */
    margin-left: 40px !important;  /* Indents the list properly */
    display: block;
}




.prioridadesFlecha {
    width: 11%;
    cursor: pointer;
}

.prioridadesFlecha svg {
    transform: rotate(180deg); 
    transition: transform 0.5s ease-in-out;
}

.prioridadesFlecha svg.rotated { /* Add a class for the rotated state */
    transform: rotate(360deg); /* Rotate to 360 degrees (effectively 180 + 180) */
}


.prioridadesFlecha svg path {
    stroke: #ffffff; /* Initial stroke color */
    transition: stroke 0.3s ease; /* Smooth stroke color transition */
}
  
.prioridadesFlecha.clicked svg path {
    stroke: #002268;
}




.prioridadesPic {
    width: 0px;
    height: 0px;
    border: 0px solid #ffffff !important;
    margin-top: 20px;
    overflow: hidden;
    transition: width 0.5s ease, height 0.5s ease;
}
.prioridadesPic.expanded {
    width: 320px !important;
    height: 215px !important;
    border: 0px solid #ffffff !important;
}




.nosotrosBack9 {
    background-color: #002268;
}
.nosotrosBack11 {
    background-color: #007EFF;
}











.nosotrosBack7 {
    background-color: #002268;
}
.nosotrosBack8 {
    background-color: #A77F56;
}







.nosotrosBack1 {
    overflow: hidden;
    position: relative;
}

.nosotrosBack1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pics/hermanosCastilloCordova.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
}

.divider {
    background-image: url('pics/apostamosBack.png?1');

    background-position: center;
    background-repeat: no-repeat;

    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    font-family: "TitlingGothicFBBold", serif;
    color: #ffffff;



}

.nosotrosBack1:hover::before {
    transform: scale(1.15); 
}


#lineasDeTiempo {
    background-image: url('pics/backLineaTiempo2.jpg');
    background-position: center bottom 0px;
    background-repeat: repeat-x;
    background-color: #017EFF;

}



.td100w {
    width: 100px !important;
}
.td220w {
    width: 220px !important;
}
.td90w {
    width: 90px !important;
}
.td90h {
    height: 90px !important;
}
.td320h {
    height: 320px !important;
}
.tdHide {
    color: #ffffff;
}
.yearDH {
    display: none;
}



.tdBack1 {
    background-image: url('pics/ttCirclec.svg');
    background-position: center  center;

    background-size: 90px auto;

}
.tdBack1z {
    background-image: url('pics/ttCircled.svg?1');
    background-position: top  center;
    background-repeat: no-repeat;
    background-size: 90px auto;

}


#unaHistoria h1{
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    color: #007EFF;
    font-family: "TitlingGothicFBBold", serif;
    text-align: center;

}

#unaHistoria {
    padding-bottom: 120px;
}


.morePad {
    padding: 0px 10px 0px 0px;
}

.lineaTiempo2b {
    font-size: 25px; 
    line-height: 135%;
    font-weight: 700;
    font-family: "TitlingGothicFBBold", serif;
    color: #007EFF;
    margin-left: 20px;
}
.lineaTiempo2 {
    font-size: 17px; 
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1px;
    font-family: "TitlingGothicFB Narrow", serif;
    color: #ffffff;
    display: inline-block; 
    transition: transform 0.3s ease, color 0.3s ease;
    transform-origin: right;
    text-align: right;   
    width: auto;        
    position: relative; 
    margin-right: 20px;
  }
  
  .lineaTiempo2:hover {
    transform: scale(1.1); 
    cursor: pointer; 
    color: #007EFF;
  }






.nosotrosBack2 {
    overflow: hidden;
    position: relative;
}

.nosotrosBack2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pics/nosotros_cerveceria.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    z-index: 0;

    background-image: image-set(
        url('pics/nosotros_cerveceria.jpg') 1x,
        url('pics/nosotros_cerveceria2x.jpg') 2x,
        url('pics/nosotros_cerveceria3x.jpg') 3x
    );

}

.nosotrosBack2:hover::before {
    transform: scale(1.15); 
}


.udnPicBlock {
    overflow: hidden; position: relative;
}
.udnPicBlock::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 0.5s ease-in-out; z-index: 0;    
}
.udnPicBlock:hover::before {
    transform: scale(1.15); 
}


#trabajoTriBlock1::before {
    background-image: url('pics/trabajoTriblock_1.jpg');
}

#trabajoTriBlock2::before {
    background-image: url('pics/trabajoTriblock_2.jpg');
}

#trabajoTriBlock3::before {
    background-image: url('pics/trabajoTriblock_3.jpg');
}



#udnBebidasPic1::before {
    background-image: url('pics/udnBebidas1.jpg');  
    background-image: image-set(
        url('pics/udnBebidas1.jpg') 1x,
        url('pics/udnBebidas1_2x.jpg') 2x,
        url('pics/udnBebidas1_3x.jpg') 3x
    );       
}

#udnBebidasPic2::before {
    background-image: url('pics/udnBebidas2.jpg');
    background-image: image-set(
        url('pics/udnBebidas2.jpg') 1x,
        url('pics/udnBebidas2_2x.jpg') 2x,
        url('pics/udnBebidas2_3x.jpg') 3x
    );     
}

#udnCervezasPic1::before {
    background-image: url('pics/udnCervezas1.jpg');
    background-image: image-set(
        url('pics/udnCervezas1.jpg') 1x,
        url('pics/udnCervezas1_2x.jpg') 2x,
        url('pics/udnCervezas1_3x.jpg') 3x
    );     
}

#udnCervezasPic2::before {
    background-image: url('pics/udnCervezas2.jpg');

    background-image: image-set(
        url('pics/udnCervezas2.jpg') 1x,
        url('pics/udnCervezas2_2x.jpg') 2x,
        url('pics/udnCervezas2_3x.jpg') 3x
    );     
}

#udnAlimentosPic1::before {
    background-image: url('pics/udnAlimentos1.jpg');
}

#udnAlimentosPic2::before {
    background-image: url('pics/udnAlimentos2.jpg');
    background-image: image-set(
        url('pics/udnAlimentos2.jpg') 1x,
        url('pics/udnAlimentos2_2x.jpg') 2x,
        url('pics/udnAlimentos2_3x.jpg') 3x
    );     
}

#udnComercioPic1::before {
    background-image: url('pics/udnComercio1.jpg');

    background-image: image-set(
        url('pics/udnComercio1.jpg') 1x,
        url('pics/udnComercio1_2x.jpg') 2x,
        url('pics/udnComercio1_3x.jpg') 3x
    );     
}

#udnComercioPic2::before {
    background-image: url('pics/udnComercio2.jpg');
    background-image: image-set(
        url('pics/udnComercio2.jpg') 1x,
        url('pics/udnComercio2_2x.jpg') 2x,
        url('pics/udnComercio2_3x.jpg') 3x
    );     
}

#udnInmobiliariaPic1::before {
    background-image: url('pics/udnInmobiliaria1.jpg');
    background-image: image-set(
        url('pics/udnInmobiliaria1.jpg') 1x,
        url('pics/udnInmobiliaria1_2x.jpg') 2x,
        url('pics/udnInmobiliaria1_3x.jpg') 3x
    ); 
}

#udnInmobiliariaPic2::before {
    background-image: url('pics/udnInmobiliaria2.jpg');
    
}

#udnEmpaquesPic1::before {
    background-image: url('pics/udnEmpaques1.jpg');
    background-image: image-set(
        url('pics/udnEmpaques1.jpg') 1x,
        url('pics/udnEmpaques1_2x.jpg') 2x,
        url('pics/udnEmpaques1_3x.jpg') 3x
    );     
}

#udnEmpaquesPic2::before {
    background-image: url('pics/udnEmpaques2.jpg');
}





.nosotrosBack3 {
    overflow: hidden;
    position: relative;
}

.nosotrosBack3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pics/nosotros_equipo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
    background-image: image-set(
        url('pics/nosotros_equipo.jpg') 1x,
        url('pics/nosotros_equipo2x.jpg') 2x,
        url('pics/nosotros_equipo3x.jpg') 3x
    );





}

.nosotrosBack3:hover::before {
    transform: scale(1.15); 
}

.nosotrosBack4 {
    position: relative;
}

#nosotrosDiv4Text {
    position: absolute;
    width: 80%;
    height: auto;
    top: 50%;
    left: 50%;
    margin-left: -40%;
    margin-top: -130px;

}

#nosotrosDiv4Text p {
    font-size: 25px;
    line-height: 100%;
    text-align: center;
}
#nosotrosDiv4Text h2 {

    line-height: 28px;
    font-size: 25px;
    line-height: 135%;
    font-family: "TitlingGothicFBBold", serif;
    margin-top: 36px;
    font-weight: 700;
    text-align: center;

}

.nosotrosBack5 {
    overflow: hidden;
    position: relative;
}

.nosotrosBack5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pics/nosotros_productos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
    background-image: image-set(
        url('pics/nosotros_productos.jpg') 1x,
        url('pics/nosotros_productos2x.jpg') 2x,
        url('pics/nosotros_productos3x.jpg') 3x
    );


    
}

.nosotrosBack5:hover::before {
    transform: scale(1.15); 
}















.nosotrosBack1 table {
    position: relative;
    z-index: 1; 
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.hermanosText {
    color: #ffffff;
    font-size: 12px;
}



#nosotrosDiv4, #nosotrosDiv5 {
    width: 50%;
    box-sizing: border-box;
    padding: 0 0px;
    margin: 0px;
    height: 460px;

}

#nosotros1 {
    background-image: url('pics/cafeBack.png');
    background-repeat: repeat-x;

    background-size: 710px auto;
    background-position: top center;     
}

#nosotros1b{
    margin-top: 14px;
}

.rowHero {
    display: flex;
    flex-wrap: wrap; 
    margin-left: -10px;   
    margin-right: -10px;
    height: 650px;

}

/* Columns */
[class*="col-"] {
    padding-left: 0px;  
    padding-right: 0px;
    width: 100%; 
    flex-basis: 100%; 
    max-width: 100%; 
}

[class*="zcol-"] {
    padding-left: 0px;  
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 10px;
    width: calc(30% - 0px) !important; 
    
    flex-basis: 100%; 
    max-width: 100%; 
}
[class*="xcol-"] {
    padding-left: 0px;  
    padding-right: 0px;
    margin-left: 10px;
    width: calc(33.33% - 10px) !important; 
    flex-basis: 100%; 
    max-width: 100%; 
}


.xcol-1, .xcol-2, .xcol-3, .xcol-4, .xcol-5, .xcol-6, .xcol-7, .xcol-8, .xcol-9, .xcol-10, .xcol-11, .xcol-12 {
    /*background-color: #f0f0f0;
    border: 1px solid #ccc; */
    padding: 10px;
}


.zcol-1, .zcol-2, .zcol-3, .zcol-4, .zcol-5, .zcol-6, .zcol-7, .zcol-8, .zcol-9, .zcol-10, .zcol-11, .zcol-12 {
    /*background-color: #f0f0f0;
    border: 1px solid #ccc; */
    padding: 0px !important;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    /*background-color: #f0f0f0;
    border: 1px solid #ccc; */
    padding: 10px;
}
.col-1b, .col-2b, .col-3b, .col-4b, .col-5b, .col-6b, .col-7b, .col-8b, .col-9b, .col-10b, .col-11b, .col-12b {
    /*background-color: #f0f0f0;
    border: 1px solid #ccc; */
    padding: 10px 40px;
}
.col-1x, .col-2x, .col-3x, .col-4x, .col-5x, .col-6x, .col-7x, .col-8x, .col-9x, .col-10x, .col-11x, .col-12x {
    /*background-color: #f0f0f0;
    border: 1px solid #ccc; */
    padding: 0px;
}
.col-1y, .col-2y, .col-3y, .col-4y, .col-5y, .col-6y, .col-7y, .col-8y, .col-9y, .col-10y, .col-11y, .col-12x {
    /*background-color: #f0f0f0;
    border: 1px solid #ccc; */
    padding: 0px;
}



.ttMediaWrapper {
  position: relative;
  display: inline-block;
}



.ttablePic1 {
    width: 550px;
    border: 0px solid #fff;
}
.ttablePic2 {
    width: 550px;
    border: 0px solid #fff;
}

.ttableVid {
    width: 550px !important;
    height: auto;
    border: 0px solid #fff;
}


.ttYear {
    font-family: "TitlingGothicFBBold", serif;
    font-size: 25px;
    font-weight: 700;
    color: #002268;
}

.tt2col {
    background-image: url('pics/t2.png');
}

.tt3col {
    font-family: "TitlingGothicFB Narrow", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 20px;
    color: #ffffff;
    text-align: left;
}

.row.row-cols-md-2 &gt; [class*="col-"] { 
  width: auto;
  flex: 0 0 50%;
  max-width: 50%;
}




.row-3-equal {
    display: flex;
    margin-left: -7px; /* Half the total gap */
    margin-right: -7px; /* Half the total gap */

}

.row-3-equal &gt; div {
    flex: 1;
    box-sizing: border-box; /* Crucial: Include padding and border in the element's total width and height */
    padding-left: 7px; /* Half of desired gap */
    padding-right: 7px; /* Half of desired gap */
}




.col-20-80 &gt; *:first-child { flex-basis: 20%; max-width: 20%; }
.col-20-80 &gt; *:last-child  { flex-basis: 80%; max-width: 80%; }

.col-30-70 &gt; *:first-child { flex-basis: 30%; max-width: 30%; }
.col-30-70 &gt; *:last-child  { flex-basis: 70%; max-width: 70%; }

.col-40-60 &gt; *:first-child { flex-basis: 40%; max-width: 40%; }
.col-40-60 &gt; *:last-child  { flex-basis: 60%; max-width: 60%; }

.col-60-40 &gt; *:first-child { flex-basis: 60%; max-width: 60%; }
.col-60-40 &gt; *:last-child  { flex-basis: 40%; max-width: 40%; }

.col-55-45 &gt; *:first-child { flex-basis: 55%; max-width: 55%; }
.col-55-45 &gt; *:last-child  { flex-basis: 45%; max-width: 45%; }

.col-50-50 &gt; *:first-child { flex-basis: 50%; max-width: 50%; }
.col-50-50 &gt; *:last-child  { flex-basis: 50%; max-width: 50%; }

.col-70-30 &gt; *:first-child { flex-basis: 70%; max-width: 70%; }
.col-70-30 &gt; *:last-child  { flex-basis: 30%; max-width: 30%; }

.col-80-20 &gt; *:first-child { flex-basis: 80%; max-width: 80%; }
.col-80-20 &gt; *:last-child  { flex-basis: 20%; max-width: 20%; }




.colorsitox {
    background-color: #002268;
    border: 0px solid #ccc;
    padding: 10px;
}














/* Full-Width Section */
.full-width-section {
    width: 100%;
    float: left; 
    
    padding: 20px 0; 
}

.full-width-sectionp0 {
    width: 100%;
    float: left; 
    
    padding: 0px 0px; 
}


.full-width-sectionp0MenuBar {
    width: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10000;
    padding: 0px 0; 
}


.full-width-sectionp20 {
    width: 100%;
    float: left; 
    padding: 20px 0; 
}
.full-width-sectionp50 {
    width: 100%;
    float: left; 
    padding: 50px 0; 
}
.full-width-sectionp100 {
    width: 100%;
    float: left; 
    padding: 100px 0; 
}
.full-width-sectionp100_0 {
    width: 100%;
    float: left; 
    padding: 100px 0px 0px 0px; 
}
.full-width-sectionp100_1 {
    width: 100%;
    float: left; 
    padding: 0px 0px 100px 0px; 
}
.full-width-sectionp50_0 {
    width: 100%;
    float: left; 
    padding: 50px 0px 0px 0px; 
}
.full-width-sectionp50_1 {
    width: 100%;
    float: left; 
    padding: 0px 0px 50px 0px; 
}

.full-width-sectionp100m100 {
    width: 100%;
    float: left; 
    padding: 100px 0px 100px 0px; 
    margin: 100px 0px 0px 0px;
}


.colored-section {
    background-color: #ffffff;
}




.form-container {
    padding: 20px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: white; 
    background-color: #002268; /* Set background color */
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-sizing: border-box;
    margin-bottom: 5px;
}
.form-control:focus {
    outline: none;
    border-bottom-color: #80bdff; /* Keep focus color if desired */
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.6); 
    opacity: 1;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #6c757d;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #6c757d;
}



.form-controlz {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: white; 
    background-color: #002268; /* Set background color */
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-sizing: border-box;
    margin-bottom: 5px;
}
.form-controlz:focus {
    outline: none;
    border-bottom-color: #80bdff; /* Keep focus color if desired */
    box-shadow: none;
}

.form-controlz::placeholder {
    color: rgba(255,255,255,0.6); 
    font-size: 1.1rem;
    opacity: 1;
}

.form-controlz:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #6c757d;
}

.form-controlz::-ms-input-placeholder { /* Microsoft Edge */
    color: #6c757d;
}


.form-control-file {
    padding-top: 5px;
    display: none; /* Hide the actual input */
}

.file-label {
    display: block;
    border-bottom: 1px solid white;
    padding: 12px 15px;
    cursor: pointer; /* Make it look clickable */
    color: #6c757d;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 14px;
    padding-right: 2.25rem;
    color: rgba(255,255,255,0.6);
    background-color: #002268;
}

/* For IE 11 */
select.form-control::-ms-expand {
    display: none;
}


.form-check {
    margin-bottom: 15px;
    padding-left: 0;
    display: flex;
    align-items: center;

}

.form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.5rem;
    margin-left: 0;
    flex-shrink: 0;

}

.form-check-label {
    font-size: 1rem;
    color: white;
    margin-bottom:0;
}


.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}



.borderFooter {
    border-bottom: 1px solid #CCC8C8;
    padding: 0px 0px;
}


.logoAzul {
    width: 277px;
}

.redesIcos {
    width: 40px;
    height: auto;
    margin: 0px 30px 0px 0px;
}
.redesIcosB {
    width: 40px;
    height: auto;
    margin: 0px 0px 0px 0px;
}


.footerTitle {
    font-weight: 700;
    font-size: 18px;
}

.celeste {
    color: #007EFF;
}

.lema {
    font-style: italic;
    font-size: 16px;
    color: #002268;
    margin-top: 10px;
    font-weight: 400;
    display: block;
}
.lema span {
    color: #007BFF !important;
}

.contactoText {
    color: #002367;
    font-size: 16px;
    font-weight: 500;
}

.footerSpacing {
    padding: 20px 0px;
}




#noticiasFiltrosArea {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: 112px;


}


#noticiasFiltros {
    position: absolute;
    width: 100%;

    height: 80px;
}

#noticiasSearch {
    position: absolute;
    width: 300px;
    top: 0px;
    right: 0px;


}

.search {
    background-image: url('pics/busqueda.svg');
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: auto 20px;
}





.areaBlockNoticias {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between items */
    justify-content: flex-start; /* Aligns the last row to the left */
    align-items: flex-start; /* Ensures equal height */

    margin-bottom: 100px;
}

.eachNoticia {
    width: calc(25% - 15px); 
    background-color: #FFFFFF; 
    padding: 20px;
    text-align: center;

    box-sizing: border-box;
    display: flex;
    align-items: flex-start; 
    justify-content: flex-start; 
    align-self: stretch;
    transition: box-shadow 0.5s ease; 
}
.eachNoticia:hover {
    -webkit-box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.42);
    -moz-box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.42);
    box-shadow: 0px 0px 15px -4px rgba(0,0,0,0.42);
}


/* Equal Height Trick */
.areaBlockNoticias .eachNoticia {
    display: flex;
    flex-direction: column;
}

/* Remove margins on first and last items of each row */
.eachNoticia:nth-child(4n + 1) { /* First item of each row */
    margin-left: 0;
}

.eachNoticia:nth-child(4n) { /* Last item of each row */
    margin-right: 0;
}










.filtrosLink {
    color: #002268;
    font-size: 18px;
    font-weight: 600;
    background: #D2CCCD;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .filtrosLink:hover {
    background: #007EFF;
    color: #ffffff;
    text-decoration: none;
  }


.filtrosLinkB {
    color: #002268;
    font-size: 18px;
    font-weight: 600;
    background: #D2CCCD;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  
  .filtrosLinkB:hover {
    background: #007EFF;
    color: #ffffff;
    text-decoration: none;
  }



#videOperamosCanvas {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;

    left: 0px;
    top: 0px;
    overflow: hidden;

}



#tablaFooter td {
    width: 50%;
}

.desktopHide {
    display: none;
}


.nuestrasOficinasBlock {
    height: 300px;
}


.tablaFooterTd2 {
    text-align: right;
}


.newsBox {
    width: 100%; 
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;

    border: 1px solid #ccc; 
    box-sizing: border-box; 
    margin-bottom: 20px;
}


#apostamosText {
    display: inline-block; 

    margin-right: 110px;
}

.mapaFrontTable {
    height: 85% !important;
}
.mapaFrontTd {
    vertical-align: bottom;
}

.mobile-break {
  display: none;
}


.tdsCarrusel {
    width: 50% !important;
}


.notiPicBackground {

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    height: 225px;
    
}


@media screen and (max-width: 1850px) {

    .containerp0b {
        width: 90%; 
    }  
    
    #hero {
        margin-top: 115px;
    } 

    .impactoPositivobox h1 {
        font-size: 34px;
    }
    

    


    #logoArea {
        width: 350px;   
    }
    #menuDesktopArea {
        width: 900px; 
        margin-top: 10px;
        margin-right: 60px;
    }

    .desktopLinks {
        padding: 10px 6px !important;
        margin: 0px 7px !important;        

    }



}


@media screen and (max-width: 1600px) {

    .containerp0b {
        width: 100%; 
    }    

    #heroTextCopy {
        width: 80%;
        left: auto;
        right: 5% !important;              
    }

    .impactoPositivobox h1 {
        font-size: 28px;
    }
    





}

@media screen and (max-width: 1500px) {


 

    #contactModal h2 {
        font-size: 30px;
        font-weight: 700;
        
    }
    #contactModal p {
        font-size: 18px;
        font-weight: 400;
        line-height: 135%;
        
    }

    .subText1 {
        font-size: 22px;
        margin-top: 20px;
        margin-left: 40px;
    }

    #trayec75marcas {
        background-size: 120px auto;
        background-position: bottom 40px right 40px; 
    } 

    #mapaFront {
        font-size: 60px;
        line-height: 30px;
    }

    #colabText {
        left: 36px;
        top: 55%;
        margin-top: -50px;
        font-size: 50px;
        line-height: 38px;
    
    }
    #marcasText {
    
        left: 36px;
        top: 50%;
        margin-top: -30px;
        font-size: 50px;
        line-height: 38px;
    
    }


    .subText1b {
        font-size: 22px;
        margin-top: 0px;
        margin-left: 0px;
    }
    






    .eachPais {
        padding: 4px 10px 4px 10px;
        font-size: 14px;
        font-weight: 200;
        margin-top: 2px;
    }

    .territorioTitle {
        font-size: 15px;
    
    }  

    .showPaises {
        font-size: 15px;
        font-weight: 200;
    }    


    #paisesCanvas h1 {
        font-size: 30px;
        line-height: 115%;
    }
    

    .eachTitulo {
        font-size: 15px;
        font-weight: 700;    
    }
    .eachTextoLong {
        font-size: 15px;
        font-weight: 400;
        line-height: 135%;
    }




    #reconocimientos h1{
        font-size: 30px;
        line-height: 110%;
    }



    .valoresIcons {
        width: auto;
        height: 34px;
    }

    .containerp0c {
        width: 90%; 
        max-width: 850px; 
        margin: 0 auto; 
        padding: 0px;
    }

    #valoresRow {
        min-height: 434px;
    }
    

    .valoresBox {
        width: 200px;
        height: 200px;
        padding: 20px;
    }    
    .valoresBox h1 {
        font-size: 15px;
    }
    .valoresBox p {
        font-size: 12px;
        line-height: 120%;
        margin-top: 10px; 
    }    

    #valoresCompartimos h1{
        font-size: 30px;
        line-height: 110%;
    }

    .pEtica2 {
        font-size: 14px !important;
        font-weight: 400;    
    }


    #textoEtica h2 {
        font-size: 20px;
        font-weight: 700;
        line-height: 100%;
    }
    
    #textoEtica h1 {
        font-size: 30px;
        line-height: 100%;
    }

    #textoEtica p {
        font-size: 14px;
        font-weight: 400;
        line-height: 120%;
    }


    .prioridadesNumber {
        font-size: 30px;
        line-height: 110%;
    }
    .prioridadesTitulo {
        font-size: 30px;
        line-height: 110%;
    }
    
    
    .prioridadesTexto {
        font-size: 20px;
    }
    
    .preview {
        font-size: 14px !important;
        line-height: 120% !important;
    }
    
    .moreText {
        font-size: 14px !important;
        line-height: 120% !important;
    }
    

    


















    #nuestrasPrioridadesEstrategicas h1 {
        font-size: 30px;
        font-weight: 700;
        
    }

    #unaHistoria h1{
        font-size: 30px;
        line-height: 100%;
        font-weight: 700;    
    }

    .lineaTiempo2b {
        font-size: 18px; 
        line-height: 135%;
        font-weight: 700;
        margin-left: 20px;
    }
    .lineaTiempo2 {
        font-size: 13px; 
        font-weight: 200;
        line-height: 18px;
        margin-right: 20px;
      }
      


    .divider {    
        font-size: 30px;
        line-height: 120%;
    }



    .tt3col {
        font-size: 14px;
        line-height: 20px;
    }

    .ttYear {
        font-size: 20px;
        font-weight: 700;
    }




    #nosotrosDiv4Text {
        position: absolute;
        width: 80%;
        height: auto;
        top: 50%;
        left: 50%;
        margin-left: -40%;
        margin-top: -80px;
    
    }    


    #nosotrosDiv4Text p {
        font-size: 20px;
        line-height: 100%;
    }
    #nosotrosDiv4Text h2 {
        font-size: 19px;
        line-height: 135%;
    }    


    #nosotrosHeroText {
        font-size: 30px;
        line-height: 115% !important;
    }    

    #noticias {
        height: 1305px;

    
    }   
    
    
    .genericP1 p {
        font-size: 18px;
        line-height: 145%;
        font-weight: 300;
        padding-bottom: 14px;
    }
    
    .genericH1 {
        font-size: 30px;
        line-height: 100%;
    }    

    #noticias h1 {
        margin: 0px 0px 0px 0px !important;
        font-size: 30px;
    }  
    
    
    .noticiasTxt2 {
        font-size: 14px;
        line-height: 18px;
        margin-top: 10px;
    }    


    #compromisoNews {
        height: 820px;
    }


    .containerp0 {
        width: 90%; 
        max-width: 960px; 
        margin: 0 auto; 
        padding: 0px;
    }

    .noticiasSocialTxt {
        font-size: 14px;
        line-height: 20px !important;
    }

    .sostenibilidadSubtitulo {
        font-size: 14px;

    }

    .udn_title2 {
        width: 70%;
        margin-left: 112px;
        font-size: 30px;
        line-height: 115%;  

    }

    .unidadLink {
        color: #fff;
        font-size: 14px;
        padding: 0px 0px 0px 40px;
    }
    .unidadLink2 {
        font-size: 14px;
        padding: 0px 0px 0px 40px;
    }


    .unidadIndicador {
        padding: 0px 60px 0px 20px;
        height: 50px !important;
        font-size: 16px;
        line-height: 50px;
        letter-spacing: 1px;    
    }
    .unidadIndicador2 {
        padding: 0px 60px 0px 20px;
        height: 50px !important;
        font-size: 16px;
        line-height: 50px;
        letter-spacing: 1px;    
    
    
    }






    .udnText {
        display: inline-block;
        width: 100%;
        padding: 0px 10%;
        color: #002268;
        
    }

    .udn_text {
        font-size: 18px;
        line-height: 140%;
        
    }
    

    #years139text h1 {
        font-size: 30px;
    }
    #years139text p {
        margin-top: 30px;
        font-size: 19px;
        line-height: 130%;
    }  


    .udn_title {
        float: left;
        width: 70%;
        margin-left: 30%;
        font-size: 30px;
        line-height: 115%;
    
        
    }    
    

    #rombo139 {
        z-index: 110;

        width: 180px;
        height: 136px;
        left: 50%;
        margin-left: -90px;
        bottom: 80px;
        background-size: 180px auto;
        background-position: top 0px center;

    }   
    

    #rombo139topText {
        z-index: 200;
        width: 180px;
        left: 50%;
        margin-left: -90px;
        bottom: 137px;
        font-size: 40px;
        line-height: 100%;
    }
    
    #rombo139years {
        font-size: 18px;
        z-index: 200;
        width: 180px;
        left: 50%;
        margin-left: -90px;
        bottom: 110px;
        text-align: center;
        font-size: 18px;
    }
    
    #innovacion_y_pasion h2 {
        font-size: 30px;
        font-weight: 700;
    }

    .udnLogos1 {
        margin-top: 100px;
    }
    .udnLogos2 {
        margin-top: 100px;
    }
    .udnLogos3 {
        margin-top: 70px;
    }
    .udnLogos4 {
        margin-top: 50px;
    }
    


    .udnText h1 {
        font-size: 30px;
    }
    
    
    .udnText p {
        font-size: 17px;
        line-height: 135%;
        margin-top: 24px;

    
    }
    


    #hero {
        margin-top: 88px !important;
    }  

    .udnBlock {
        height: 440px;
    }    

    .impactoPositivobox h1 {
        font-size: 24px;
    }    


    .heroTexts h1 {
        font-size: 30px;
        line-height: 155%;
    }

    .desktopLinks2 {
        font-size: 14px;
        font-weight: 800;
    
    }    



    #heroContainerUdn {    

        padding: 80px 0px;
    }    

    
    #nosotrosHero {
        margin-top: 88px;
    }    
    #udnHero {
        margin-top: 88px;
        height: 380px;
    }   

    
    
    #sostenibilidadHero {
        margin-top: 114px !important;
        padding: 80px 0px;
    }  
    
    #heroContainerSostenibilidad {
        position: relative; width: 100%; height: auto; 
        padding: 20px 0px;
    }    

    #logoArea {
        width: 200px; 
        height: auto; 
        margin-left: 60px;  
    }
    #menuDesktopArea {
        height: 69px; 
        width: 800px; 
        margin-top: 0px;
        margin-right: 60px;
        text-align: right;    

        background-position: center right 69px;
    }

    .desktopLinks {
        font-size: 0.73rem;
        line-height: 69px;
        padding: 10px 2px !important;
        margin: 0px 6px !important;   
        font-weight: 100;   
        letter-spacing: 1.1px;  
    }  
    
    .desktopLinksContact {
        font-size: 0.73rem;
    }



    .langSwitch {
        font-size: 0.73rem;
    }

    
    

    #hero {
        height: 414px !important;
        margin-top: 114px;
    }

    #heroContainer {
        height: 414px; 
    }    
    #heroContainer2 {
        height: 414px; 
    }    
    
    #heroVideo {
        height: 414px;
        width: calc(50% + 151px);
    
    }
    #heroText {
        height: 414px;
        width: calc(50% - 151px);
        background-image: url('pics/heroBackTextC.png');
        background-repeat: no-repeat;
        background-position: center left;
    }

    #heroVideoTapador {
        height: 414px;
        left: 50%;
        width: 151px;
        background-image: url('pics/portadaVideoTapador2.png');
    }    

    #heroTextCopy {
        left: auto;
        right: 5%;
        font-size: 30px;
        margin-top: -70px;
        
    }

}

@media screen and (max-width: 1350px) {


    .divider {    
        background-image: url('pics/spacer.png');
    }    

    .impactoPositivobox h1 {
        font-size: 20px;
    }  

    .nosotrosFoto6 {
        width: 42% !important;
    }    
    #nosotrosDiv6 .nosotrosTexto {
        width: 55% !important;
    }     
    .nosotrosFoto10 {
        width: 42% !important;
    }    
    #nosotrosDiv10 .nosotrosTexto {
        width: 55% !important;
    }  

    .nosotrosFoto12 {
        width: 42% !important;
    }    
    #nosotrosDiv12 .nosotrosTexto {
        width: 55% !important;
    }   
    
    
    .sostenibilidadInfo h1 {
        padding: 30px 5% 10px 5%;
        font-size: 24px;
    
    }

    #orgullososImpactoPositivo {
        font-size: 26px;
        line-height: 100%;
        line-height: 100%;

    }  
    




    .impactoPositivobox h1 {
        font-size: 24px;
    }

    .impactoPositivobox p {
        font-size: 14px;
        line-height: 19px;
        margin-top: 0px;
    }    
    
}


@media screen and (max-width: 1250px) {

    .impactoPositivobox h1 {
        font-size: 18px;
    }      


    #nosotrosHeroText {
        width: 100%;
        left: 0px;
        margin-left: auto;
    }

    #logoArea {
        width: 300px; 
        height: auto; 
        margin-left: 10px;  
    }
    #menuDesktopArea {
        height: 69px; 
        width: 800px; 
        margin-top: 0px;
        margin-right: 10px;
        text-align: right;   
    }

    .desktopLinks {
        font-size: 14px;
        line-height: 69px;
        padding: 10px 2px !important;
        margin: 0px 6px !important;        
    } 

 
    
    
 
}

@media screen and (max-width: 1170px) {

    #apostamosText {
        display: inline-block; 

        margin-right: 0px;
    }    

    .impactoPositivobox h1 {
        font-size: 14px;
    }    


    #menuDesktopArea {
        display: none;
    }

    .nuestrasOficinasBlock {
        height: 400px;
    }

    #nosotrosHeroText {
        font-size: 30px;
        line-height: 36px;
    }


    #logoArea {
        width: 300px; 
        height: auto; 
        margin-left: 20px;  

    }


    #langSwitchMobile {
        font-size: 17px;
        font-weight: 800;
        color: #fff;
        position: fixed;
        padding: 8px 11px 8px 11px;
        left: 20px;
        z-index: 12000;
        top: 14px;
        background-color: #007EFF;
    }




    #menuMovil {
        display: inline;
        float: right; 
        height: 45px; 
        width: 45px; 
        margin-top: 10px;
        margin-right: 20px;  
    }
    #years139text {
        width: 100%;
        left: 0px;
        margin-left: 0px;
    }    


    #trayecVideo {
        height: 580px;

    }


    #trayecMapa {
        float: left;
        width: 100% !important;
        height: 560px;
        margin-right: 0px; 
    
    }

    #trayecCol2 {
        width: 100% !important;
        margin-top: 25px;
    }    




    #hero {
        height: 220px !important;
        margin-top: 112px;
    }

    #heroContainer {
        height: 220px !important; 
    }   
    #heroContainer2 {
        height: 220px !important; 
    }   
    
    #heroVideo {
        height: 220px;
        width: calc(40% + 80px);
    
    }   
    
    #heroText {
        height: 220px;
        width: calc(60% - 80px);

    }  
    
    #heroVideoTapador {
        height: 220px;
        left: 40%;
        width: 80px;
        background-image: url('pics/portadaVideoTapador3.png');
    }   

    #heroTextCopy {
        left: 15%;
        right: auto;
        top: 50%;
        width: 65%;
        margin-top: -50px;
        font-size: 18px;
        line-height: 115%;
        height: 80px;
    }



}




@media (min-width: 768px) {
    [class*="col-"] {
        width: auto; 
        flex-basis: auto; 
        max-width: none; 
    }

    /* Column Sizes (using Flexbox's `flex-basis`) */
    .col-1 { flex-basis: 8.33333%; }  /* 1 / 12 */
    .col-2 { flex-basis: 16.66667%; } /* 2 / 12 */
    .col-3 { flex-basis: 25%; }       /* 3 / 12 */
    .col-4 { flex-basis: 33.33333%; } /* 4 / 12 */
    .col-5 { flex-basis: 20%; }       
    .col-6 { flex-basis: 50%; }
    .col-6b { flex-basis: 50%; }
    .col-7 { flex-basis: 58.33333%; }
    .col-8 { flex-basis: 66.66667%; }
    .col-9 { flex-basis: 75%; }
    .col-10 { flex-basis: 83.33333%; }
    .col-11 { flex-basis: 91.66667%; }
    .col-12 { flex-basis: 100%; }


    .col-1y { flex-basis: 8.33333%; }  /* 1 / 12 */
    .col-2y { flex-basis: 16.66667%; } /* 2 / 12 */
    .col-3y { flex-basis: 25%; }       /* 3 / 12 */
    .col-4y { flex-basis: 33.33333%; } /* 4 / 12 */
    .col-5y { flex-basis: 20%; }       
    .col-6y { flex-basis: 50%; }
    .col-7y { flex-basis: 58.33333%; }
    .col-8y { flex-basis: 66.66667%; }
    .col-9y { flex-basis: 75%; }
    .col-10y { flex-basis: 83.33333%; }
    .col-11y { flex-basis: 91.66667%; }
    .col-12y { flex-basis: 100%; }

    /* Resetting col sizes so the two columns work */
    .col-20-80 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-30-70 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-40-60 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-60-40 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-55-45 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-50-50 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-70-30 &gt; * {width:auto; flex-basis: auto; max-width: none;}
    .col-80-20 &gt; * {width:auto; flex-basis: auto; max-width: none;}



    .form-group {
        margin-bottom: 15px;
    }

    .form-control,
    .btn-primary {
        font-size: 18px;
        font-weight: 300;
        padding: 8px 12px;
    }

    .form-check-label {
        font-size: 0.9rem;
    }


    .newsBox {
        flex: 0 0 33.33333%; /* 100% / 3 = 33.333...% */
        max-width: 33.33333%;
        margin-bottom: 0; /* Remove bottom margin when they are side-by-side */
    }       



}











@media (max-width: 600px) {
    .eachNoticia {
        width: 100%;
    }

    .footerLinks {

        display: inline-block;
        width: 100%;
        text-align: center !important;
    }
    .footerSpacer {
        padding: 0px 0px;
    }

    .contactoText {
        text-align: center !important;
    }
    


    #hero {
        margin-top: 90px;
    }


    .sbAbsTitle {
        font-size: 12px;
        line-height: 115%;
    }      

    .genericH1 {
        font-size: 24px;
        line-height: 150%;
    }






    .prioridadesTitulo {
        font-size: 12px;
        line-height: 110%;
    } 




    #nosotrosDiv6 {
        width: 100%;
        padding: 14px;
        margin: 0px;
        height: 484px;
    }   
    
    #nosotrosDiv7, #nosotrosDiv8  {
        width: 100%;
        padding: 14px;
        margin: 20px 0px 0px 0px;
        height: 484px;
    
    }
    
    #nosotrosDiv9 {
        width: 100%;
        padding: 14px;
        margin: 0px;
        height: 484px;
    
    }
    
    #nosotrosDiv10 {
        width: 100%;
        padding: 14px;
        margin: 20px 0px 0px 0px;
        height: 484px;
    }
    
    #nosotrosDiv11  {
        width: 100%;
        padding: 14px;
        margin: 20px 0px 0px 0px;
        height: 484px;
    
    }
    
    #nosotrosDiv12  {
        width: 100%;
        padding: 14px;
        margin: 0px 0px 0px 0px;
        height: 484px;
    
    }   
    
    
    #nosotrosDiv6 .nosotrosTexto {
        width: 100% !important;
        height: 244px;

        right: 0px;
        padding: 0px;
        bottom: 20px;     
    } 
    
    #nosotrosDiv7 .nosotrosTexto {
        width: 100%;
        height: 244px;
        right: 0px;
        bottom: 20px;
        padding: 0px;  
    } 
    #nosotrosDiv8 .nosotrosTexto {
        width: 100%;
        height: 244px;
        right: 0px;
        bottom: 20px;
        padding: 0px;
    }   
    #nosotrosDiv9 .nosotrosTexto {
        width: 100%;
        height: 244px;
        right: 0px;
        bottom: 20px;
        padding: 0px;
    }   
    
    
    #nosotrosDiv10 .nosotrosTexto {
        width: 100% !important;
        height: 244px;
        right: 0px;
        padding: 0px;
        bottom: 20px;    
    
    }     
    #nosotrosDiv11 .nosotrosTexto {
        width: 100%;
        height: 244px;
        right: 0px;
        padding: 0px;
        bottom: 20px;    
    
    }     
    #nosotrosDiv12 .nosotrosTexto {
        width: 100% !important;
        height: 244px;
        right: 0px;
        padding: 0px;
        bottom: 20px;    
    
    }  
    
    
    
    .heroTexts h1 {
        font-size: 27px;
        line-height: 115%;
    }





    #heroTextCopy {
        left: 2%;
        right: auto;
        top: 50%;
        width: 96% !important;
        margin-top: -50px;
        font-size: 13px;
        line-height: 115%;
        height: 80px;


    }   






    .new-carousel {
        height: 750px; /* Fixed height */
    }


    .unidadLogos {

        height: 240px !important;

        bottom: 130px;

    
    }



}</pre></body></html>