@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");



ul {
  list-style: none;
}

a {
  text-decoration: none;
  color :white;
}


header {
  position: sticky; 
  top: 0px;
  background-color: #ffffff;
  width: 100%;
  z-index: 1000;
}


section {
  position: relative;
  height: calc(100vh - 3rem);
  width: 100%;
  background: url("bg.jpg") no-repeat top center / cover;
  overflow: hidden;
}


.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(56, 165, 238, 0.5);
}


.container {
  max-width: 65rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}


.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  display: none;
  
}


.nav-btn {
  flex: 3;
  display: flex;
}


.nav-links {
  flex: 2;
}

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo {
  color: yellowgreen;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
  
  
}

.logo span {
  font-weight: 300;
  
  
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.8rem;
  border: 2px solid : black;
  border-radius: 2rem;
  line-height: 1;
  margin: 0 0.2rem;
  transition: 0.3s;
  text-transform: uppercase;
}


.btn.solid,
.btn.transparent:hover {
  background-color:black;
  color: #69bde7;
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: #fff;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  line-height: 3rem;
  color: #fff;
  padding: 0 0.8rem;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}

.nav-link > a > i {
  margin-left: 0.2rem;
}

.nav-link:hover > a {
  transform: scale(1.1);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 17rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color:#282828;;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  width: 17rem;
}

.dropdown-link:hover > a {
  
  color:#eba53a;
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 0px solid rgba(255, 255, 255, 0.05);
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #3498db;
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color :#ffba00;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color:#ffba00;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

#letra {
  color: black ;
  
    }




    #lista 
    {
      display: flex;
      justify-content: space-between;
      width: 100%;
      letter-spacing: .05em;
      font-size: .8em;
      padding-left: 35px;
      padding-right: 35px;
      font-size: 14px;



    }    

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

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


  #letra {
    color:white ;
    
      }

  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(217vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color:#212121;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: transparent;
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: transparent;
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: #fff;
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: greed;
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }

  .nav-link:hover .arrow {
    background-color:transparent;
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: #3a91bd;
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: #50a9d6;
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}

#menucelu {
  left: 506px;
  width: 50%;


}


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

  


#headermovil {
  display: block;
  
  }

  #letra {
color:white ;

  }

  .headermovil {
    display: block;
    
    }


    #header2{

      display:block !important;
  }



}


@media (min-width: 1200px)
.container {
    max-width: 1289px;
}

@media (min-width: 508px)
.row-fluid {
    width: 1939px;
    background-color: yellow;
}


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

  header {
    width: 111%;
    

  }
 
  
  }

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

  header {
    width: 100%;
    

  }
 
  
  }

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

  header {
    width: 95%;
    

  }

  .gallery{

    width: 97%;

  }


  #rellenoabajo {

    width: 891px!important;


  }

  .service_info {

    width: 891px!important;

  }
  
  }



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

  header {
    width: 94%;
    

  }
 
 .gallery {
  width: 91%;

 }

 #lista 
 {
   padding-left: 1px;
   padding-right: 68px;

   display: inline-block!important;
   text-align: center!important;



 }

 #listagris{
  height: 213px!important;
  line-height: 50px!important;


 }


  
  
  }

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

  header {
    
    width: 83%;

    

  }
 
 .gallery {
  width: 94s%;

 }


  
  
  }

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

   

    #infocelu {
      padding-left: 200px!important;
  
  
  
     }




    
    }








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

   
   .gallery {
    width: 88%;
  
   }
   #menucelu {
    left: 437px!important;
}
    
  #footer2 {

    width: 87%!important;

  }
    
    }.



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

    .gallery {
      width: 80%!important;


    }

    #menucelu {
      left: 382px!important;
  }

  #footer2 {

    width: 87%!important;

  }



  }


  

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

    .gallery {
      width: 80%!important;


    }

    #infocelu {
      padding-left: 127px!important;
  }

  header {
    width: 73%;
}

#menucelu {
  left: 382px!important;
}



  }


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

    #infocelu {
      padding-left: 94px!important;
  }


#listagris {
  width: 86%!important;
}

.gallery {

  width: 78%!important;

}


#menucelu {
  left: 382px!important;
}


  }


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

    
.gallery {

  width: 72%!important;

}

#infocelu {
  padding-left: 53px!important;
}


#menucelu {
  left: 337px!important;
}





  }


  @media only screen and (max-width: 642px) {
    #menucelu {
      left: 271px!important;
      width: 65%;
  }
  
  
  }

  

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

    header {
      width: 64%;
  }

  #infocelu {
    padding-left: 12px!important;
}

.gallery {
  width: 68%!important;
}

#listagris {
  width: 81%!important;
}
    
#menucelu {
  left: 311px!important;
}



    
      }

 @media only screen and (max-width: 600px) {
      .gallery {
          display: inline-table!important;
      }      

        
#menucelu {
  left: 299px!important;
}



    }


    @media only screen and (max-width: 582px) {
      .gallery {
          display: inline-table!important;
          width: 63%!important;
      }      

      #imagen {
        width: 100px!important;

      }


      #menucelu {
        left: 291px!important;
    }


    }

    
 @media only screen and (max-width: 558px) {
     
    
#menucelu {
  left: 210px!important;
}


 }

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

      #header2 {
      
        display: none!important;
    }
      
    #imagen2 {
     display: block!important;
     width: 165px!important;

    }

    .gallery {
      display: inline-table!important;
      width: 60%!important;
  }

  header {
    width: 59%;
}

#listagris {
  width: 71%!important;
}


    }



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

      #header2 {
      
        display: none!important;
    }
      
    #imagen2 {
     display: block!important;
     width: 165px!important;

    }

    .gallery {
      display: inline-table!important;
      width: 55%!important;
  }

  header {
    width: 55%!important;
}

#listagris {
  width: 61%!important;
}


    }


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

      #header2 {
      
        display: none!important;
    }
      
    #imagen2 {
     display: block!important;
     width: 165px!important;

    }

    .gallery {
      display: inline-table!important;
      width: 52%!important;
  }

  header {
    width: 50%!important;
}

#listagris {
  width: 61%!important;
}


    }



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

      #header2 {
      
        display: none!important;
    }
      
    #imagen2 {
     display: block!important;
     width: 165px!important;

    }

    .gallery {
      display: inline-table!important;
      width: 47%!important;
    }
 

  header {
    width: 47%!important;
}

#listagris {
  width: 55%!important;
}

#menucelu {
  left: 159px!important;
}


    }  


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

      #header2 {
      
        display: none!important;
    }
      
    #imagen2 {
    display: none!important;
    }

    #imagen3 {
      display: block!important;
      }
    .gallery {
      display: inline-table!important;
      width: 47%!important;
    }
 

  header {
    width: 47%!important;
}

#listagris {
  width: 55%!important;
}


    }  


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

      #header2 {
      
        display: none!important;
    }
     
    .gallery {
      display: inline-table!important;
      width: 47%!important;
    }
 

  header {
    width: 47%!important;
}

#listagris {
  width: 55%!important;
}


    }  



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

      #imagen3 {
        display: block!important;
        width: 99px!important;

    }

    header {
      width: 39%!important;
  }

  .gallery {
    display: inline-table!important;
    width: 44%!important;
}

    }  