@import url(./moduls/fonts.css);
@import url(./moduls/variables.css);
@import url(./moduls/reset.css);
@import url(./moduls/defaults.css);
@import url(./moduls/grid.css);
@import url(./moduls/helper-classes.css);
@import url(./moduls/nav-bar.css);
@import url(./moduls/footer.css);


.main {
    background-image: url(../images/jpg/banner.jpg);
    background-size: cover;
    background-position: top;
    padding: 10rem 0 40rem 0;
}

.main>.container {
    display: flex;
    justify-content: center;
}

.products {
    width: 80%;
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(2rem);
    border-radius: 3rem;
    padding: 10rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 0;
    overflow: hidden;
    z-index: 2;
}

.product{
    width: 30%;
    max-width: 25rem;
    background-color: var(--orange-color);
    padding: 7rem 3rem 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 3rem;
}

.product__banner{
    width: 100%;
}

.product__link{
    transition: all ease-in-out .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    border-radius: 10rem;
    border: .2rem solid var(--white-color);
    color: var(--white-color);
    padding: 0 2rem;
    min-width: 12rem;
    font-family: var(--primary-font-bold);
}

.product__link:hover{
    background-color: var(--white-color);
    color: var(--orange-color);
}


/*
    ------- footer -------
*/

.footer{
    margin-top: 0;
}


















@media screen and (max-width:1400px) {

}

@media screen and (max-width:1200px) {
    .product{
        width: 45%;
    }


}

@media screen and (max-width:992px) {
    .products{
        padding: 3rem;
    }
}

@media screen and (max-width:768px) {

}

@media screen and (max-width:576px) {
    .products{
        padding: 1rem;
    }
}

@media screen and (max-width:576px) {
    .products{
        justify-content: center;
        padding: 5rem 1rem;
    }

    .product{
        width: 100%;
    }
}