  @import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET */
html {
     scroll-behavior: smooth;
} 
ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }

/*   

  /*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 4.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: rgb(255,255,255);
    --text-color-alt: rgb(241, 236, 116);
    --title-color: rgb(36, 44, 93);
    --text-color: rgb(47, 47, 47);
  
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    
    --body-font: "Overpass", sans-serif; 
    --fonts1 : 200;
    --fonts2: 300;
    --fonts3 : 380;
    --fonts4  :500;
   
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }


/* HEADER & NAV */
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
}
.nav{
    padding-bottom: 20px;
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--title-color);
}
.nav__logo{
   margin-left: 20px;  
   margin-top: 28px;
   width: 170px;
   height: 50px;
}
.nav__logo--img{

    object-fit: contain;
}


.nav__toggle,
.nav__close{
    font-size:  1.7rem;
    color: var(--first-color);
    cursor: pointer;
    margin: 10px;
    margin-top: 50px;
    margin-right: 20px; 
}

/* Navigation for mobile devices */

@media screen and (max-width: 1150px){
 .nav__menu{
    position : fixed;
    top: 0;
    right:-100%;
    background-color: hsla(0, 0%, 6%, .2);
    backdrop-filter: blur(16px);
    width: 80%;
    height: 100%;
    padding: 6rem 3rem 0;
    transition: right .4s;

 }
 .exp-web{
    display: none;
 }
}

.nav__list{
    display:flex;
    flex-direction: column;
    row-gap: 3.5rem;
    
}

.nav__link{
    color:var(--first-color);
    font-family: var(--body-font);
    font-weight: var(--fonts1);
    transition: color .4s;
    font-size: 18px;

}
.nav__link:hover{
 color: var(--text-color-alt);
}

.nav__close{
    position: absolute;
}
.nav__close{
    top:1rem;
    right: 1.5rem;
}
.nav__img-1{
    width: 80px;
    top:11rem;
    right:.75rem
}
.nav__img-2{
    width: 60px;
    top:28rem;
    right:6rem;
}
/* Show menu */
.show-menu{
    right:0;
    transition: right .4s;
}


/* HOME */

.home{
    background: var( --title-color);
    width: 100%;
    height: 480px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.home__slogan{
    color: var(--first-color);
    font-size: 25px;
    padding: 100px 60px 10px 60px;
    font-family: var(--body-font);
    font-weight: var(--fonts3);

}
.home__img{
    padding-top: 20px;
    margin: 10px auto;
    width: 320px;
    height: 180px;
    margin-bottom: 40px;
}

.home-botones{
    display: flex;
    width: 100%;
    height: 35px;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 10px;
}
.btn-explora{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-color-alt);
    width: 150px;
    height: 35px;
    padding-top:2px;
    border-radius: 20px;
    color: var(--text-color);
    font-family: var(--body-font);
    font-weight: var(--fonts4);
}
.btn-descarga{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 35px;
    border: 2px solid var(--text-color-alt);
    color: var(--first-color);
    border-radius: 20px;
    font-family: var(--body-font);
    font-weight: var(--fonts4);
}
.icon-descarga{
    margin-right: 5px;
    margin-bottom: 4px;
    color: var(--text-color-alt);
}

/* ABOUT */

.about{
    display: flex;
    flex-direction: column;
}
.about__title{
    color: var(--title-color);
    text-align: center;
    font-weight: 800;
    font-size: 40px;
    padding-top: 80px;
    font-weight: var(--fonts3);
    font-family: var(--body-font);

}
.about__text{
    padding: 0px 20px;
    text-align: justify;
    font-weight: var(--fonts1);
    font-family: var(--body-font);
}
.exp{
    margin: 50px auto; 
    padding: 10px 20px;
    color: var(--first-color);
    background: var(--text-color-alt);
    border-radius: 15px;
    color: var(--text-color);
    font-weight: var(--fonts3);
    font-family: var(--body-font);
}
.exp__num{
    text-align: center;
    font-size: 40px;
 
}
.exp__text{
    margin-top: -4px;
    font-size: 20px;
}
.about-images{
    width: 100%;
    display: flex;
    flex-direction: column;
  
   
}
 .img-web{
        display: none;
}
.about-img{
    width: 80%;
    margin: 15px auto;
}

.separador-web{
   margin-top: 30px;
    
}

/* CHOOSE */

.choose{
    display: flex;
    flex-direction: column;
    align-items: center;
    

}

.choose__title{
    color: var(--title-color);
    text-align: center;
    font-weight: 800;
    font-size: 35px;
    padding: 0px 10px;
    padding-top: 50px;
    padding-bottom: 20px;
    margin-top: 50px;
    font-weight: var(--fonts3);
    font-family: var(--body-font);
}
.choose__text{
    padding: 0px 20px;
    text-align: justify;
    font-weight: var(--fonts1);
    font-family: var(--body-font);
}


.opciones{
    width: 100%;
    height: 200px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    color: var(--text-color);
    font-family: var(--body-font);
    font-weight: 200;
    
    
}
.opciones-envio{
    width: 150px;
    height: 60px;
    text-align: center;
}

.icons{
    width: 40px;
}
.choose-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.choose-img__container{
    display: flex;
}
.choose-img{
    margin: 50px auto;
    width: 80%;
}
/* footer */
.footer{
    background: var(--title-color);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 710px;
    padding-top: 50px;
}
.trabajamos{
    margin: 30px 40px;
    color: var(--first-color);

}
.trabajamos__h2{
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: var(--fonts3);
}
.trabajo__lista{
    font-size: 16px;
    padding-left: 20px;
    padding-top: 10px;
    font-family: var(--body-font);
    font-weight: var(--fonts1);
}
.trabajo__lista li{
    padding: 5px 0;
}

.contacto{
    margin: 30px 40px;
    color: var(--first-color);
    
}

.contacto__h2{
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: var(--fonts3);
    
}
.contacto__list{
    font-size: 16px;
    padding-left: 20px;
    padding-top: 10px;
    font-family: var(--body-font);
    font-weight: var(--fonts1);
}
.telf, .map , .message{
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    align-items: center;
    
}

.footer-icons{
    width: 15px;
    margin: 5px;
    margin-right: 7px;
}

.copy{
    text-align: center;
    color: var(--first-color);
    font-size: 12px;
    margin-top: 54px;
    border-top: 1px solid var(--first-color);
    padding: 10px;
    font-family: var(--body-font);
    font-weight: 200;
}
/* responsive */
@media screen and (min-width: 1150px){
    
    .nav{
        position: relative;
        height: 120px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--title-color);
    }
    .nav__close,.nav__toggle{
        display: none;
    }
    .nav__menu{
        display: flex;
        align-items: center;
    }
    .nav__list{
        width: 700px;
        height: var(--header-height);
        align-items: center;
        flex-direction: row;
        justify-content: space-around;
        margin-top: 10px;
        
    }
    .nav__link{
        font-size: 20px;
        font-family: var(--body-font);
    }
    .nav__logo{
        margin-top: 10px;
        width: 250px;
        height: 50px;
     }

     /* HOME */
     
     .home{
        background: var( --title-color);
        width: 100%;
        height: 480px;
        margin-top: 120px;
        display: flex;
        flex-direction: column;
    }
    .home__slogan-img{
        padding-top: 55px;
        display: flex;
        flex-direction: row;
        height: 390px;
        
        
    }
    .home__img{
        width: 800px;
        height: 250px;
        padding-top: 50px;
        padding-right: 60px;
    }
    .home__slogan{
        margin-left: 160px;
        font-size:45px;
        font-family: var(--body-font);
        font-weight: var(--fonts2);
        width: 800px;
        height: 100px;
    }
    .home-botones{
        display: flex;
        flex-direction: row;
        width: 500px;
        height: 50px;
        margin-left:180px;
        margin-top: -100px;
        margin-bottom: 110px;
    }
    .btn-explora{
        width: 200px;
        height: 50px;
        font-size: 22px;
    }
    .btn-descarga{
        width: 200px;
        height: 50px;
        font-size: 22px;
    }

    
    /* About */
    .about{
        display: flex;
        flex-direction: row;
    }
    
    .about-info{
        padding-top: 70px;
        display: flex;
        width: 210%;
        height: 500px;
        flex-direction: column;
    }
    .img-web{
        display: block;
        padding-right: 60px;
    }
    .about-images{
        display:none;
    }
    .exp{
        display: none;
    }
    .exp-web{
        margin: 120px auto; 
        padding: 30px 60px;
        color: var(--first-color);
        background: var(--text-color-alt);
        border-radius: 15px;
        color: var(--text-color);
        font-weight: var(--fonts3);
        font-family: var(--body-font);
    }
    .exp__num{
     font-size:45px;
    }
    .exp__text{
        font-size: 25px;
    }

    .about__title{
        font-size: 60px;
        padding: 0px 50px;
        text-align: left;
        margin-top: 100px;
    }
    .about__text{
        padding: 0px 50px;
        text-align: left;
        font-size: 25px;

            
    }

    /* choose */
    .choose{
        padding-top: 50px;
    }
    
    .choose--info{
        display: flex;
        flex-direction: column;
    }
    .choose__title{
        font-size: 60px;
    }
    .choose__text{
        font-size: 25px;
        padding: 0 100px;
        
    }
    
    .choose-2{
        width: 80%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin-top: 50px;
        padding: 0 50px;
        margin-bottom: 60px;
        margin-top: 100px;
    }
    
    .opciones{
        width: 550px;
        height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--text-color);
        font-family: var(--body-font);
        font-weight: 200;
        margin-right: 50px;
    }
    
    .opciones-envio{
        width: 250px;
        height: 180px;
        text-align: center;
        font-size:25px;
        
    }
    .icons{
        width: 140px;
        height: 50px;
    }
    
    .choose-img{
        width: 800px;
        height: 500px;
        object-fit: contain;
    }
    
    /* FOOOTER */
    .footer{
        height: 460px;   
    }

    .footer-flex{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
  
    .copy{
        margin-top: -10px;
    }
   }