@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Nunito Sans', sans-serif;
    background: #000000;
}

.container {
    max-width: 1600px;
    margin: auto;
    padding: 0 15px;
    position: relative;
}

@media screen and (max-width: 1600px){
    .container {
        max-width: 1270px;
    }
}
@media screen and (max-width: 1440px){
    .container {
        max-width: 1280px;
    }
}
@media screen and (max-width: 1280px){
    .container {
        max-width: 1130px;
    }
}
@media screen and (max-width: 1024px){
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}
@media screen and (max-width: 800px){
    .main-products .product-item:nth-child(4){
        display: none;
    }
    .product-title, .product-type{
        font-size: 19px;
    }
}
@media screen and (max-width: 768px){
    .main-products .product-item:nth-child(3){
        display: none;
    }
    .see-all-products{
        margin-top: 50px;
    }
}
@media screen and (max-width: 600px){}
@media screen and (max-width: 480px){}
@media screen and (max-width: 320px){}
