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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

li{
    list-style: none;
}
a{
    text-decoration: none;
}


.main{
    position: relative;
}

.nav{
    height: 8vh;
    
}

.nav ul li{
    font-size: 19px;
}
header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.main-menu{
    height: 92vh;
}
.img-div{
    position: relative;
}
.text{
    transform: rotateX('180 deg');
    position: absolute;
    bottom: 150px;
    right: 0;
}
.icons{
    position: absolute;
    bottom: 0;
    right: 0;
}

#about .boxes {
    height: 250px;
}
#about .boxes .number{
    transition: all 0.5s;
}

#about .boxes:hover .number{
    transform: translateY(-10px);
}

#products  .items{
    position: relative;
    
}


.item-img{
    width: 170px;
    position: relative;
    transition: all 0.5s;
}
#products .items:hover .item-img{
    transform: translateY(-10px);
}

.item::before{
    content: ' ';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: red;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#products .shopping-cart{
    position: absolute;
    bottom: 0;
    right: 0;
}