/*******************************************************
********************************************************
********************************************************
********************************************************/





 .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;
}
}









/*******************************************************
********************************************************
********************************************************
********************************************************/


 
.letratubosdepres {
   font-family: "Inter", sans-serif;
   

}
.imgprinbody{
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerportada{
    display: flex;
    justify-content: right;
    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;
    filter:brightness(0.8);
    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: rgba(255, 255, 255, 1);
    transition: color 0.8s;
    user-select: none;
    font-size: 7vh;
    font-family: "Inter", sans-serif;
    margin-left: 19vh;
    font-weight: 600;
        padding-right: 25vh;
}

/*.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: #fff;
    transition: color 0.8s;
    user-select: none;
    font-size: 6vh;
    font-family: "Inter", sans-serif;
    margin-left: 10.5vh;
    
    padding-top: 13vh;
    line-height: 120px;
}
.containerportada{
    display:  ;
    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/6sustentabilidad/seccion1/tubo_movil.jpg);
         background-size:  90vh 83vh;  
}

.containerportada img{
    width: 0vw;
    height: 0vh;
    object-fit: cover;
    
    transition: all 0.3s ;
    position: absolute;
    top:0;
    left:0;
    z-index:1;


}

}




/*******************************************************
********************************************************
********************************************************
********************************************************/



        
        .contcolo2 {
            color: #001970;font-size: 27px;text-align: left; margin-left: 9vh;
        }
        .conver {
            padding: 0px; min-width: 60%; font-size: 2.9vh; text-align: left; color: #007B34;
        }
          .logo2{
               width: 7vw;
    margin-left: -37vh;
    padding-top: 2.6vh;
          }





/*******************************************************
********************************************************
********************************************************
********************************************************/
	.banner {
 background: rgb(255, 255, 255);
    background-image: url(./../assets/6sustentabilidad/seccion3/1hojas.jpg);
    /* background: linear-gradient(72deg, rgba(255, 255, 255, 1) 0%, rgb(197 190 190 / 35%) 100%); */
       background-attachment: fixed;
    height: 68vh;
    width: 101%;
    background-size: 100%;
    margin-top: 92px;
    margin-left: 0%;
    background-repeat: no-repeat;
    /* filter: grayscale(100%); */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}

  	.banner3 {
 background-image: url(./../assets/6sustentabilidad/seccion3/2tm.png);
    height: 68vh;
    width: 48vw;
    background-size: 73vh;
    margin-left: 34vw;
    background-repeat: no-repeat;
}
  	.banner33 {
 background-image: url(./../assets/6sustentabilidad/seccion3/metal-recicles-forever-01.png);
    height: 68vh;
    width: 48vw;
    background-size: 73vh;
    margin-left: 34vw;
    background-repeat: no-repeat;
}



@media (max-width:1080px) {
     	.banner {

    background-image: url(./../assets/6sustentabilidad/seccion3/1hojas.jpg);

       background-attachment: fixed;
  background-position: center center;
    background-size: cover;
    height: 18vh;
}



 	.banner3 {
  background-image: url(./../assets/6sustentabilidad/seccion3/2tm.png);
    height: 50vh;
 
    background-size: 40vw;
    margin-left: 30vw;
    background-repeat: no-repeat;
}
 	.banner33 {
  background-image: url(./../assets/6sustentabilidad/seccion3/metal-recicles-forever-01.png);
    height: 50vh;
 
    background-size: 40vw;
    margin-left: 30vw;
    background-repeat: no-repeat;
}



}










/*******************************************************
********************************************************
********************************************************
********************************************************/

 .veaenvases {

        font-family: "Inter", sans-serif;
    font-size: 5vh;
    color: #001970;
    width: 43vw;
    padding-top: 2vh;
    margin-left: 40px;
    font-weight: 600;
  }





/*******************************************************
********************************************************
********************************************************
********************************************************/




.prinseccion4 {

    width: 95%;
    height: 87vh;
    background-color: #0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 51px;
    margin-left: 47px;

  
}


.cards {
  width: 70%;
  display: flex;
  justify-content: left;
  align-items: center;
     padding-top: 23px;


 
}
.cards .card {
 height: 29vh;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
    max-width: 14vw;
    min-width: 14vw;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
        margin: 0 30px;
    border-radius: 3vh;
    left: 90px;
}
.cards .card:before {
  height: 9px;;
  width: calc(100% + 100px);
  content: "";
  position: absolute;
      background-image: linear-gradient(to top, #001970 0%, #001970 100%);
 /* background-image: linear-gradient(to top, #4481eb 0%, #04befe 100%);*/
  border-radius: 0px 0px 100% 100%;
  transition: all 0.4s ease-out;
  top: 0;
}
.cards .card .close {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
  margin: 10px;
  padding: 5px;
  transition: all 0.2s ease;
}
.cards .card .close:hover {
  background-size: 100%;
  opacity: 0.8;
}
.cards .card .arrow {
  display: none;
}
.cards .card article {
  z-index: 1;
  display: flex;
  align-items: left;
  flex-direction: column;
  text-align: center;
}
.cards .card article h2 {
  font-family: "Inter", sans-serif;
  color: #080808;
  margin: 0;
  padding: 15px 20px 10px 20px;
  font-weight: 600;
  font-size: 2vh;
  letter-spacing: 0.2px;
      text-align: left;
}


.cards .card article .desc {
      font-family: "Inter", sans-serif;
    padding: 0px 30px;
    font-size: 1.5vh;
    text-align: left;
    line-height: 21px;
    color: #666;
    height: 68px;
    transition: all 0.4s ease-out;
}





.cards .card:hover  {
  transform: translateY(-10px);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);
}
.cards .card:hover:before {
  height: 100%;
  border-radius: 4px;
}
.cards .card:hover .desc  {
  color: white;
}
.cards .card:hover article h2{
 color: white;
}
.cards .card.closed {
  min-width: 120px;
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
  cursor: pointer;
}

.cards .card.closed .desc,

.cards .card.closed .close {
  display: none;
}
.cards .card.closed h2 {
  padding: 0;
  height: 100%;
  transform: rotate(-90deg);
  width: 440px;
  z-index: 2;
  transition: all 0.6s ease;
}

.cards .card.closed:before {
  height: 100%;
  border-radius: 4px;
}
.cards .card.closed .arrow {
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  bottom: 15px;
  padding: 5px;
  display: flex;
  justify-content: center;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}
.cards .card.closed:hover .arrow {
  background-size: 100%;
  opacity: 0.6;
}






/*******************************************************
********************************************************
********************************************************
********************************************************/

 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.letratubosdeprestubo {
   font-family: "Inter", sans-serif;
   

}


.imgprinbodytubo{
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerportadatubo{
    display: flex;
    justify-content: left;
    align-items: center;
    width: 70vw;
    height: 89vh;
    overflow: hidden;
    position: relative;
    border-radius: 2vh;

        margin-top: 5.2vh;

 box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}
.containerportadatubo img{
          width: 75vw;
    height: 127vh;
    object-fit: initial;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;


}
/*.container:hover img{
    transform: scale(1.2);
    filter:brightness(1);
}*/


/*.container:hover .heading{
    color:rgba(255, 255, 255, 1);
}*/







@media (max-width:1024px) {
    
   .containerportadatubo{
    display: flex;
    justify-content: left;
    align-items: center;
    width:95vw;
    height: 75vh;
    overflow: hidden;
    position: relative;
    border-radius: 2vh;

        margin-top: 5.2vh;

 box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
}
.containerportadatubo img{
          width: 95vw;
    height: 100vh;
    object-fit: initial;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;


} 

  .veaenvases {

        font-family: "Inter", sans-serif;
    font-size: 1.9vh;
    color: #001970;
    width: 53vw;
    padding-top: 10vh;
    margin-left: 40px;
    font-weight: 600;
  }
  .cards {
  width: 70%;
  display: flex;
  justify-content: left;
  align-items: center;
     padding-top: 85px;


 
}
    .cards .card {
 height: 25vh;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
    max-width: 38vw;
    min-width: 38vw;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
        margin: 0 10px;
    border-radius: 3vh;
    left: 10px;
}


.cards .card article h2 {
  font-family: "Inter", sans-serif;
  color: #080808;
  margin: 0;
  padding: 40px 20px 10px 20px;
  font-weight: 600;
  font-size: 1.6vh;
  letter-spacing: 0.2px;
      text-align: left;
}
.cards .card article .desc {
      font-family: "Inter", sans-serif;
    padding: 10px 30px;
    font-size: 1.0vh;
    text-align: left;
    line-height: 21px;
    color: #666;
    height: 68px;
    transition: all 0.4s ease-out;
}
}





















/*******************************************************
********************************************************
********************************************************
********************************************************/



 .banner5 {
    /* background: linear-gradient(72deg, rgba(255, 255, 255, 1) 0%, rgb(197 190 190 / 35%) 100%); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./../assets/6sustentabilidad/seccion5/mundo.jpg);
   background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    height: 479px;
}
.tipo {
     font-size: 53px;
    color: #fff;
    text-align: center;
    padding: 13%;
    font-family: "Inter", sans-serif;
        font-weight: 700;
            margin-top: 16vh;
}





@media (max-width:1024px) {
  .banner5 {
    /* background: linear-gradient(72deg, rgba(255, 255, 255, 1) 0%, rgb(197 190 190 / 35%) 100%); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./../assets/6sustentabilidad/seccion5/mundo.jpg);
   background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    height: 409px;
}



.tipo {
     font-size: 53px;
    color: #fff;
    text-align: center;
    padding: 13%;
    font-family: "Inter", sans-serif;
        font-weight: 700;
            margin-top: 0vh;
}

}



/*******************************************************
********************************************************
********************************************************
********************************************************/



.imagtubo5{
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containertubo{
   
    display: flex;
    justify-content: right;
    align-items: end;
    width: 65vw;
    height: 79vh;
    overflow: hidden;
    position: relative;
    border-radius: 2vh;
    margin-top: 5.2vh;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);

}
.containertubo img{
      width: 73vw;
    height: 80vh;
    object-fit: cover;
    /*filter: brightness(0.8);*/
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;


}
/*.container:hover img{
    transform: scale(1.2);
    filter:brightness(1);
}*/
.containertubo .tubopcr{
    user-select: none;

   
    margin-left: 19vh;
 
            padding-right: 4vh;
            background-image: url(./../assets/6sustentabilidad/seccion6/pcr.png);




             height: 34vh;
    width: 26vw;
    background-size: 51vh;
   
    background-repeat: no-repeat;
}

/*.container:hover .heading{
    color:rgba(255, 255, 255, 1);
}*/





@media (max-width:1080px) {
    
    .containertubo{
   
    display: flex;
    justify-content: right;
    align-items: end;
    width: 90vw;
    height: 62vh;
    overflow: hidden;
    position: relative;
    border-radius: 2vh;
    margin-top: 0vh;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);

}
    
    
    
    
    .containertubo .tubopcr{
           user-select: none;
        margin-left: 28vh;
        padding-right: 37vh;
        background-image: url(./../assets/6sustentabilidad/seccion6/pcr.png);
        height: 24vh;
        width: 40%;
        background-size: 36vh;
        background-repeat: no-repeat;
}

.containertubo img{
      width: 93vw;
    height: 67vh;
    
     background-size: -7%;

  
    top: 0;
    left: 0;
    z-index: -2;


}
}







/*******************************************************
********************************************************
********************************************************
********************************************************/



 .imgex {
width: 95%;
    }
 img{
    width: 100%;
}

.img{
    width: 156%;
}
.card{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0rem;
    
    margin-bottom: 0rem;
    box-shadow: 3px 3px 5px rgba(99, 110, 114,0.5);
}

.card1 {
   background: #DCDAD8; 
}

.card2 {
    background: #fff;
}

.card h3{
    margin-bottom: 2rem;
    padding-top: 176px;
    color: #001970;
    font-size: 3rem;
}
.psec5{
  color: #000;
    text-align: justify;
      font-size: 1.8rem;
 
    padding-top: 20px;


}
.card img{
    /*height: 836px;*/
    height: 600px;
}
.textali {
    text-align: right;
}

.card > div{
    padding: 7rem;
}

.card:nth-child(even) img{
    order: 2;
}

.btn{
    display: inline-block;
    border-radius: 2.2rem;
    padding: .5rem;
    margin-top: 2rem;
      background-color: #000;
    color: #fff;
    font-size: 2rem;
}

.btn:hover{
    opacity: .8;
}

@media(max-width: 700px){
    .card{
        display: block;
    }
}

#navbar{
    background-color: black;
}






/*******************************************************
********************************************************
********************************************************
********************************************************/


  .bg-div {
  height: 605px;
  width: 205px;
  
  background-position: -140px -580px;
  > img {
    margin: -13px;
    width: 630px;
    height: 630px;
    border-radius: 130px;
    /*animation: rotate-animation 50s infinite linear;*/
  }
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  .ciscu {

 font-family: "Inter", sans-serif;
 font-size: 25px;
 text-align: center;
  }


  #meowmeow {
        background-image: url(./../assets/6sustentabilidad/seccion7/5afbdc00-2b3c-447b-8e6f-ee9ee298292d.png);
    background-repeat: no-repeat;
    height: 60vh;
    background-size: 70%;
    animation: rotate-animation 10s infinite linear;

}

@keyframes rotate-animation {
  25% {
    transform: rotate(80deg);
  }
  50% {
    transform: rotate(160deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
  .paddedbox {
   
    height: 0;
  
    background-size: cover;
    height: 0;
    padding-top: 13px;
  }

.container {
       width: 32vw;
    text-align: center;
    
}
.container2 {
      width: 65%;
  
        margin: 0 auto;
}




@media (max-width:1280px) {
    .container {
       width: 51vw;
    text-align: center;
    
}
      .bg-div {
        height: 15vh;
        width: 25vw;
  > img { 
            width: 55vw;
            height: 32vh;
            border-radius: 130px;
            /*animation: rotate-animation 50s infinite linear;*/
  }
}

.container2 {
             width: 84vw;
        margin: 0 auto;
        padding-top: 19vh;
    
}
   
   .ciscu {

 font-family: "Inter", sans-serif;
 font-size: 2vh;
text-align: justify;
  }  
   
    
}









/*******************************************************
********************************************************
********************************************************
********************************************************/
.logoface{
    width: 35px;
    left: 6%;
       padding-top: 2vh;
   
} 
  body {
    background-color: #fff;
  }









/*******************************************************
********************************************************
********************************************************
********************************************************/



/*****************************************inicio de footer************************************************/




 .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;


}
}



 





/*******************************************************
********************************************************
********************************************************
********************************************************/






/************************inicio de aluminio: seccion 2***********************************/




.menu-icon{
  position:absolute;
  left:10%;
  z-index:5;
  top:10%;
  font-size:42px;
  width:42px;text-align:center;
  color:white;
  border:4px solid white;
  border-radius:100px;padding:20px;
}

.menu-box{
    font-family: "Inter", sans-serif;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100%;
  color:#001489;
  background-color:#fff;
  padding:0px 10px;
  z-index:10;
  position: relative;
  top:0;left:0;
  width:100%;
  nav{
    max-width: 1380px;
    width: 100%;
     background-color: #fff;
    border-radius: 24px;
    box-shadow: 0px 14px 46px rgba(0, 0, 0,0.35);
    

    
    ul{
      padding: 0;
            display: flex;
            grid-template-columns: 1fr 1fr 1fr;
            justify-content: center;
      
      
        a{
          text-decoration:none;
         
              &:after{
                content:"";
                width:60px;
                height:4px;
                background-color:white;
                position:absolute;
                left:50%;
                transform:translate(-50%,-50%);
                bottom:-15px;
                transition: all 0.25s ease;
              }
            }

            
            i{
              position:relative;
              display:block;
              font-size:60px;
              color:black;
              text-align:center;
              z-index:11;
              bottom:-30px;
              transition: all 0.5s ease;
              
            
              &:before{
                position:relative;
                z-index:12;
              }
              &:after{
                position:absolute;
                content:"";
                border:4px solid white;
                border-radius: 100px;
                width: 100px;
                height: 100px;
                left: -20px;
                top: -25px;
                transition: all 0.5s ease;
                z-index:11;
              }
             
                
            
            
          
        }
      
        
        
      
    }
  }
}

.item:before{
  content: "";
    position: absolute;
    top: -100%;
    left: 0;
    height: 50%;
    width: 100%;
    z-index: 10;
    transition: all 0.7s ease;
}

.item:hover{
  &::before{
    height: 100% !important;
    top:-5%;
  }
  
  .h3{
    bottom:100px !important;

    &:after{
      width:90px !important;
    }
  }



  i{
    bottom:0px !important;
    //color:inherit !important;
    &:before{
      
    }
    &:after{
      background-color:white;
    }
  }
}








.item.green{
  border-top:0px solid #248232;
  &:before {
  /*background-image: url(https://webvitality.co.uk/g-bg.png);*/

  background-size: cover;
  }
  &:hover i {
    color:#248232;
  }
}


@media (max-width: 1024px) {
  .menu-box{
    ul{
          
      li{
        max-width:33.33% !important;
      }
    }
  }
  
}

@media only screen and (max-width:768px){
  .menu-box{
    ul{
      li{
       max-width:100% !important;
      }
    }
    .item{
      max-height:250px !important;
      &:before{
        background-size:contain !important;
        background-position:center;
        height:100% !important;
      }
    }
  }
}

/*******************************fin de seccion 2 aluminio: *******************************************/
h2{
      text-align: center;
    font-size: 9vh;
    margin: 0;
    padding-top: 45px;
        
    }
    h4 {
	 text-align: center;
    font-size: 4vh;
    color: #383C43;
    margin: 0;
    padding-top: 0px;
}
            .h3{
             font-size:16px;
              color: #383c43e0;
              display:block;
              padding:0 40px;
              position:relative;
              z-index:11;
              transition: all 0.5s ease;
              bottom: 28px;
              text-align: justify;
              
 font-family: "Inter", sans-serif;
                             padding-top: 2vh;
                             
                             
            }
            
              .conver {
            padding: 0px; min-width: 60%; font-size: 2.9vh; text-align: left; color: #007B34;
        }
        
        
        .li{
                       list-style-type: none;
                text-align: center;
                width: 30vw;
                max-width: 23vw;}
                  .li2{
                       list-style-type: none;
                text-align: ;
                width: 30vw;
                max-width: 23vw;}
                
                 .item{
                                    background-color: #FFF;
                        position: relative;
                        height: 450px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-flow: column;
                        overflow: hidden;
                        margin: auto;
                        top: 0;
                 }
                 

@media (max-width:1024px) {
  h2{
      text-align: center;
    font-size: 5vh;
    margin: 0;
    padding-top: 45px;
        
    }
    h4 {
	 text-align: center;
    font-size: 2.5vh;
    color: #383C43;
    margin: 0;
    padding-top: 0px;
}



            .h3{
             font-size:1vh;
              color: #383c43e0;
              display:block;
              padding:0 18px;
              position:relative;
              z-index:11;
              transition: all 0.5s ease;
              bottom: 9px;
              text-align: left;
              
 font-family: "Inter", sans-serif;
                             padding-top: 1vh;
                             
                             
            }


   .conver {
            padding: 0px; min-width: 15vh; font-size: 1.1vh; text-align: left; color: #007B34;
        }
        
        .contcolo2 {
            color: #001970;font-size: 27px;text-align: left; margin-left: 2vh;
        }
        
        
          .li{
                       list-style-type: none;
                text-align: left;
                width: 30vw;
                max-width: 23vw;}
                
                
                 .item{
                                    background-color: #FFF;
                        position: relative;
                        height: 27vh;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-flow: column;
                        overflow: hidden;
                        margin: auto;
                        top: 0;
                 }
                
                
              .logo2{
                    width: 9vw;
        margin-left: -5vh;
        padding-top: 2.6vh;
          }    

}





/****************************inio de carrucel de imagenes ****************************************/








/*******************************************************
********************************************************
********************************************************
********************************************************/











/*******************************************************
********************************************************
********************************************************
********************************************************/











