/********************************************************
*********************************************************
*********************************************************
*********************************************************/



  
 .hover:hover {
    color: #001970;
    font-weight: 600;

    border-bottom: 2px solid #001970;

    
  }
    .hover2:hover {
    color: #001970;
    font-weight: 600;
    
  }

  .logomenu{
   width: 16px;
    position: absolute;

   
} 
.logoimg {
     position: relative;
    width: 167px;
    left: 6%;
   margin: 0;
}



  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: "Inter", sans-serif;
}


header {
  background-color: #FFFFFF;
  padding: 0 5%;
  box-shadow: 0 10px 20px rgb(0, 0, 0/5%), 0 6px 6px rgb(0, 0, 0/6%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
}

header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.logo {
  flex: 2;
  display: flex;
  align-items: center;
  
}

.logo a {
  text-decoration: none;
  font-size: 26px;
  color: #000;
  text-transform: uppercase;
  font-weight: 800;
}

.bartoggle,
#menubrop {
  display: none;
}

.NavMenu {
  flex: 10;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: end;
}

.NavMenu li {
  display: inline-block;
}

.NavMenu li input {
  display: none;
}

.NavMenu li a {
  display: block;
  padding: 20px 14px;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: #383C43;
  position: relative;
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  position: relative;
}

.NavMenu li a label::after {
  content: ""; /*cambiar para el icono de submenumenu */
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
}

.NavMenu>li>a label::after {
  right: -15px;
  top: -3px;
}

.NavMenu li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  min-width: 200px;
  border-bottom: 2px solid #001970;
  top: 100%;
  box-shadow: 0 3px 5px rgb(0 0 0/20%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}

.NavMenu li ul li {
  position: relative;
}

.NavMenu li ul li a {
  color: #000;
  padding: 8px 10px;
  display: block;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
}

@media(min-width:992px) {
  .NavMenu li ul li a:hover {
    border-left: 2px solid #001970;
  }

  .NavMenu li:hover>ul,
  .NavMenu li ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@media(max-width:991.98px) {
  header {
    padding: 6px 5%;
  }

  .logo {
    flex: 6;
  }

  .bartoggle {
    display: flex;
    justify-content: center;
    font-size: 4vh;
    align-items: center;
    background-color: #fff;
    padding: 0 10px;
    cursor: pointer;
  }

  .NavMenu {
    width: 500px;
    flex: 12;
    position: fixed;
    flex-direction: column;
    background-color: #fff;
    left: 0;
    top: 76px;
    height: 100vh;
    z-index: -1;
    padding: 15px 0 50px 0;
    justify-content: start;
    overflow-y: scroll;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }

  .NavMenu li ul,
  .NavMenu li ul li ul {
    position: initial;
    left: 0;
    visibility: visible;
    opacity: 1;
    top: 0;
    display: none;
  }

  .NavMenu li a {
    padding: 8px 15px;
    border-bottom: 1px solid #e5e6e8;
  }

  .NavMenu li ul li ul {
    background: #2874f0;
    position: inherit;
    margin-top: -10px;
  }

  .NavMenu li ul li ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: initial;
    padding: 7px 15px 7px 30px;
  }

  .NavMenu li a label::after {
    right: 10px;
  }

  .NavMenu li input:checked+ul,
  .NavMenu li ul li input:checked+ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  input:checked+.NavMenu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

}

@media(max-width:768px) {
  .NavMenu {
    width: 100%;
  }
}
     






















































@media (max-width: 1024px) {
    .NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 1.4vh;
    text-decoration: none;
    text-transform: uppercase;
    color: #383C43;
    position: relative;
}

.logomenu {
    width: 1.4vh;
    position: absolute;
}
}








/********************************************************
*********************************************************
*********************************************************
*********************************************************/



 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.letratubosdepres {
   font-family: "Inter", sans-serif;
   

}


.imgprinbody{
    min-height: 100vh;
    min-width: 96vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerportada{
    display: flex;
    justify-content: left;
    align-items: center;
    width: 96vw;
    height: 85vh;
    overflow: hidden;
    position: relative;
    border-radius: 2vh;

        margin-top: 5.2vh;

 box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}
.containerportada img{
    width: 96vw;
    height: 85vh;
    object-fit: cover;
    transition: all 0.3s ;
    position: absolute;
    top:0;
    left:0;
    z-index:-1;


}
/*.container:hover img{
    transform: scale(1.2);
    filter:brightness(1);
}*/
.containerportada .headingportada{
       color: #080808;
    transition: color 0.8s;
    user-select: none;
    font-size: 8vh;
    font-family: "Inter", sans-serif;
    margin-left: 19vh;
    font-weight: 600;
}

/*.container:hover .heading{
    color:rgba(255, 255, 255, 1);
}*/



@media (max-width:1024px) {
    .containerportada2 .letrapeque{
       color: #fff;
    transition: color 0.8s;
    user-select: none;
    font-size: 2vh;
    font-family: "Inter", sans-serif;
    margin-left: 0vh;
    width: 40vh
}

.containerportada .headingportada{
      color: #000;
    transition: color 0.8s;
    user-select: none;
    font-size: 6vh;
    font-family: "Inter", sans-serif;
    margin-left: 1.5vh;
    font-weight: 600;
    padding-top: 5vh;
}
.containerportada{
          display:inline-table ;
        justify-content: left;
        align-items: baseline;
        width: 96vw;
        height: 83vh;
        overflow: hidden;
        position: relative;
        border-radius: 2vh;
        margin-top: 5.2vh;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
        background-image: url(./../assets/5sectores/seccion1/sevt3.jpg);
        background-size: 92vh;
        background-repeat: no-repeat;
}

.containerportada img{
    width: 0vw;
    height: 0vh;
    object-fit: cover;
    
    transition: all 0.3s ;
    position: absolute;
    top:0;
    left:0;
    z-index:1;


}

}














/********************************************************
*********************************************************
*********************************************************
*********************************************************/






  .dmf {

        background-image: url(./../assets/5sectores/seccion4/DMF-baja.jpg);
       width: 73%;
    height: 72vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
   margin: 50px 200px 50px 260px;
  
  
}
.dmf {
  opacity: 1px;
}


.textpcr2{
    font-family: "Inter", sans-serif;
    width: 28vw;
    font-size: 25px;
    margin-left: 75px;
    margin-top: 0%;
    text-align: left;

}
.textpcr3{

    font-family: "Inter", sans-serif;
  width: 43%;
font-size: 25px;
margin-left: 75px;
 font-weight: 600;
    margin-top: -0%;
}

.textpcr{

    font-family: "Inter", sans-serif;
    width: 43%;
    font-size: 55px;
    margin-left: 75px;
    font-weight: 600;
    padding-top: 11%;
}



.textpcr, .textpcr2, .textpcr3 {
  color: #fff;
}








/********************************************************
*********************************************************
*********************************************************
*********************************************************/







 .logoface{
    width: 35px;
    left: 6%;
       padding-top: 2vh;
   
} 

/*****************************************inicio de footer************************************************/




hr {
    margin-top: 64px;
    margin-bottom: 64px;
    border: 0;
    border-top: 3px solid  #001970;
}

#picassoFooter {
    background-color: #E5E6E8;
    color: #000;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
   
    font-family: "Inter", sans-serif;
    padding-top: 30px;
}
#picassoFooter2 {
    background-color: #E5E6E8;
    color: #000;
    padding: 20px;
    display: flow;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
   
    font-family: "Inter", sans-serif;
    padding-top: 1px;
}

.footer-navigation, .footer-contact, .footer-social {
    margin: 10px;
}

.footer-navigation h3, .footer-contact h3, .footer-social h3 {
    color: #000;
    margin-bottom: 15px;
}

.footer-navigation ul, .footer-social .social-icons {
    list-style: none;
    padding: 0;
}

.footer-navigation ul li, .social-icon {
    margin-bottom: 10px;
    transition: transform 0.2s ease-in-out;
}

.footer-navigation ul li a, .social-icon {
 
        color: #383c43;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}



.footer-navigation ul li a:hover{
 
        color: #383c437d;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.social-icon {
    display: inline-block;
    padding: 8px;
    background-color: #333;
    margin-right: 5px;
}

.social-icon:hover, .footer-navigation ul li a:hover {
    transform: scale(1.1);
}

.footer-art canvas {
    max-width: 100px;
    height: auto;
    margin-top: 20px;
}

@media (max-width: 600px) {
    #picassoFooter {
        flex-direction: column;
        align-items: center;
    }

    .footer-art canvas {
        max-width: 100%;
    }
}



.logos{
    width: 197px;
    left: 6%;
   
} 

.logofoot{
   width: 15px;

   
} 


.tamfon {
       width: width: 149px;
    font-family: "Inter", sans-serif;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #383C43;
    list-style:none;

}

.contac {
   
    font-weight: 600;
    font-size: 2.7rem;


}



.linea {
  margin-left: 64px;
    margin-right: 64px;
    color: #001970;
    

}

.derech {
    font-size: 15px;
    text-align: center;
    font-family: "Inter", sans-serif;
}


.h1fontitu {
    font-size: 2.7rem;
    
font-weight: 600;
    font-family: "Inter", sans-serif;
}




.pcontactanos{
    margin: 0 0 10px;
    font-size: 3.0vh;
    line-height: 1.1;
}

@media (max-width:1080px) {
   .pcontactanos{
    margin: 0 0 10px;
    font-size: 2vh;
    line-height: 1.1;
} 



.contac {
   
       font-weight: 600;
    font-size: 3.6vh;


}
}



 


















/********************************************************
*********************************************************
*********************************************************
*********************************************************/



 .h1sec {
    font-family: "Inter", sans-serif;
    font-size: 41px;
    font-weight: 600;
    width: 332px;
    margin-left: -112px;
  }
   .h1sec2 {
   font-family: "Inter", sans-serif;
    font-size: 2.3vh;
    margin-left: 31px;
     margin-right: 31px;
    text-align: justify;

  }
.h1sec22 {
   font-family: "Inter", sans-serif;
    font-size: 2.3vh;
    margin-left: 31px;


  }

  .body {
    background-image: url(./../assets/5sectores/seccion3/sector-farmaceutico-01.png);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 90vh;
  margin: 0;
  background-size: cover;
  border-radius: 40px;

 font-family: "Inter", sans-serif;
     margin-top: 100px;
}
 .body2 {
    background-image: url(./../assets/5sectores/seccion3/sector-cosmetico-01.png);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 90vh;
  margin: 0;
  background-size: cover;

  border-radius: 40px;
 font-family: "Inter", sans-serif;
}
.body3 {
    background-image: url(./../assets/5sectores/seccion3/sector-industrial-baja.jpg);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 90vh;
  margin: 0;
  background-size: cover;

  border-radius: 40px;
 font-family: "Inter", sans-serif;
}
 .body4 {
    background-image: url(./../assets/5sectores/seccion3/sector-alimenticio-011.jpg);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 90vh;
  margin: 0;
  background-size: cover;
  border-radius: 40px;
 font-family: "Inter", sans-serif;
}

.body5 {
    background-image: url(./../assets/5sectores/seccion3/sector-farmaceutico-01.png);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 90vh;
  margin: 0;
  background-size: cover;

 font-family: "Inter", sans-serif;
}
.card {
           background-color: #00000069;
    border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 73%;
    margin-top: -336px;
}
.card20 {
           background-color: #00000069;
    border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 2%;
    margin-top: -336px;
}
.card22 {
       border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 9%;
    margin-top: -336px;
}

.card201 {
       border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 67%;
    margin-top: -336px;
}

.card3 {
           background-color: #00000069;
    border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 73%;
    margin-top: -362px;
}
.farma1 {
font-family: "Inter", sans-serif;
    font-size: 9.6vh;
    color: #fff;
    font-weight: 600;
        text-shadow: 8px 2px 16px #000000b5;
}


#particles-js {
  position: absolute;
  width: 0%;
  height: 100%;
  z-index: -1;
}

.psec5{
    color: #fff;
    text-align: center;
    font-size:2.7vh;
    padding: 0;
    padding-top: 0px;
    font-family: "Inter", sans-serif;


}
  .background-color-container {
          background-color: #001970;
        align-content: center;
    height: 32vh;
    width: 93%;
    margin-top: 96px;
    margin-left: 4%;
    border-radius: 30px;
  }



/*****************RESPONSIVO****************************/



@media (max-width: 1024px) {
    
    .farma1 {
font-family: "Inter", sans-serif;
    font-size: 6vh;
    color: #fff;
    font-weight: 600;
        text-shadow: 8px 2px 16px #000000b5;
}

.card22 {
       border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 308px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 25%;
    margin-top: -280px;
}

.card201 {
       border-radius: 45px;
    padding: 5px;
    width: 480px;
    height: 308px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 25%;
    margin-top: -280px;
}




/****************imagen 1**********************/
  .body {
    background-image: url(./../assets/5sectores/seccion3/tubo.png);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 85vh;
  margin: 0;
  background-size: cover;
  border-radius: 40px;

 font-family: "Inter", sans-serif;
     margin-top: 100px;
}
/********Cuadros degradado**********/
.card {
           background-color: #00000069;
    border-radius: 45px;
    padding: 5px;
    width: 80vw;
    height: 39vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 10%;
}







.h1sec2 {
    font-family: "Inter", sans-serif;
    font-size: 1.9vh;
    margin-left: 31px;
    margin-right: 31px;
    text-align: center;
}

/****************imagen 2**********************/

 .body2 {
    background-image: url(./../assets/5sectores/seccion3/tubo2.png);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 85vh;
  margin: 0;
  background-size: cover;

  border-radius: 40px;
 font-family: "Inter", sans-serif;
}

.card20 {
           background-color: #00000069;
    border-radius: 45px;
    padding: 5px;
    width: 80vw;
    height: 39vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 10%;
}


/****************imagen 2**********************/
.body3 {
    background-image: url(./../assets/5sectores/seccion3/sector-industrial-baja.jpg);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 85vh;
  margin: 0;
  background-size: cover;

  border-radius: 40px;
 font-family: "Inter", sans-serif;
}
.card3 {
           background-color: #00000069;
    border-radius: 45px;
    padding: 5px;
    width: 80vw;
    height: 39vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 10%;
}

/****************imagen 2**********************/
 .body4 {
    background-image: url(./../assets/5sectores/seccion3/tubo3.jpg);
  background-color: #fff0;
  display: flex;
  justify-content: 12px;
  align-items: center;
  height: 85vh;
  margin: 0;
  background-size: cover;
  border-radius: 40px;
 font-family: "Inter", sans-serif;
}

/*******************seccion responsiva 4*****************************/

.dmf {
    background-image: url(./../assets/5sectores/seccion4/DMF.jpg);
    width: 100vw;
    height: 65vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    
   margin: 50px 0 50px 0;
   
}
.textpcr {
    font-family: "Inter", sans-serif;
    width: 80%;
    font-size: 55px;
    text-align: left;
    font-weight: 600;
    padding-top: 11%;
}
.textpcr3 {
    font-family: "Inter", sans-serif;
    width: 80%;
    font-size: 25px;
 text-align: left;
    font-weight: 600;
    margin-top: -0%;
}
.textpcr2 {
    font-family: "Inter", sans-serif;
    width: 70vw;
    font-size: 2vh;
 text-align: left;
    margin-top: 0%;
}

/***********************Seccion azul 2******************************/
.background-color-container {
    background-color: #001970;
    padding: 20px;
    height: 25vh;
    width: 93%;
    margin-top: 96px;
    margin-left: 4%;
    border-radius: 30px;
}

.psec5 {
   color: #fff;
        text-align: center;
        font-size: 2vh;
        padding: 0;
        padding-top: 2vh;
        margin-top: 0px;
        font-family: "Inter", sans-serif;
}
}













/********************************************************
*********************************************************
*********************************************************
*********************************************************/








