*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    text-transform: none;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
header{
    background-image: url(../img/background-1.png) ;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}
#buyNow{
    border: 2px solid #e34a3c;
    padding: 15px 30px;
    border-radius: 25px;
    color: #fff;
    font-weight: 900;
    transition: 0.5s;
}
#buyNow:hover{
    border: 2px solid #e34a3c;
    background-color: #e34a3c;
    color: #000;
}
#row{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    padding: 0px 0px 0px 250px;
    gap: 30px;
}
#row h1{
    color: #e34a3c;
    font-size: 100px;
    width: 100%;
}
#row p{
    width: 550px;

}
@media screen and (max-width: 721px){
    header{
        background-image: url(../img/backgroud.jpg) ;
    }
    nav{
        height: 40px;
        padding: 5px 10px 0px 20px;
    }
    #logo{
        width: 130px;
    }
    nav div{
        gap: 30px;
    }
    nav div a{
        font-size: 16px;
        color: #fff;
    }
    #row{
        /* border: 2px solid red; */
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: start;
        justify-content: center;
        color: #fff;
        flex-direction: column;
        padding: 0px 0px 300px 20px;
        gap: 30px;
    }
    #row h1{
        color: #e34a3c;
        font-size: 70px;
        width: 100px;
    }
    #row p{
        width: 550px;
    }
}
/* ====================== ICONES PAGE ====================== */
#iconPage{
    width: 100%;
}
#whatsapp img{
    position: fixed;
    width: 80px;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: .8;
}
#whatsapp img:hover{
    opacity: 1;
}
#arrowUp img{
    position: fixed;
    width: 50px;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: .8;
}
#arrowUp img:hover{
    opacity: 1;
}
@media screen and (max-width: 400px){
    header{
        background-image: url(../img/backgroud-mobile.jpg) ;
    }
    nav{
        width: 100%;
        /* border: 2px solid blue; */
        height: 40px;
        padding: 5px 5px 0px 5px;
        gap: 2px;
    }
    #logo{
        width: 80px;
    }
    nav div{
        gap: 12px;
    }
    nav div a{
        font-size: 12px;
        color: #fff;
    }
    #row{
        /* border: 2px solid red; */
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: start;
        justify-content: center;
        color: #fff;
        flex-direction: column;
        padding: 0px 0px 300px 20px;
        gap: 30px;
    }
    #row h1{
        color: #e34a3c;
        font-size: 50px;
        width: 100%;
    }
    #row p{
        width: 550px;
    
    }
    #cart{
        width: 15px;
    }
   
}