/****************[ Products & Tools ] ********************/

.page-banner{
    min-height:30vh;
    background-color: #D29F67;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-page {
    font-family: 'Lora', Georgia, "Times New Roman", serif;

}

#main-page h1{
    color: white;
    font-size: 60px;
    text-align: center;
}

.page-section{
    padding-top: 5vh;
    padding-bottom:5vh;
}

.section-wrapper{
    width: 80%;
    max-width: 1080px;
    margin: auto;
}

/* Product container */

.product-container {
    font-size: 16px;
    border: rgba(0, 0, 0, 0.17) 2px solid;
    padding:5px;
    border-radius: 5px;
    max-width: 350px;
}



.products-wrapper{

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;

}




.product-image{
}
.product-image img{
    width: 100%;
    height: 100%;
}

.product-content{
    display:block;
    font-size: 1.1em;
    margin-top: 15px;
    display:flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
    white-space: nowrap;




}
.product-content a {
    color: #ffffff !important;
    border-width: 15px !important;
    border-color: rgba(210, 159, 104, 0);
    border-radius: 100px;
    letter-spacing: 3px;
    font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif !important;
    text-transform: uppercase !important;
    background-color: #d29f68;
    padding: 10px;
    cursor:pointer;
    text-align: center;
}
.product-content h3{
    font-size: 1.em;
    text-align: start !important;
    max-width: 100%;

}

.to-dollars::before{
    content: "$";

}

@media screen and (max-width: 980px){

    .products-wrapper{

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;


    }
    .product-container{
        font-size: 13px;
    }



}

@media screen and (max-width: 767px) {
    
    .products-wrapper{

        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;


    }
    .product-container{
        font-size: 10px;
        max-width: 300px;
        width: 100%;
        min-width: 200px;
        margin: auto;
    }

}