.shop-wrapper{
    width: 70%;
    margin: 0 auto 5% auto;
    opacity: 0;
	transform: translate(0, 8px);
    transition: all 1s ease-out;
}
.shop-wrapper h2, .shop-wrapper h3{
    text-align: center;
    margin: 2% 0;
}

    

.shop-content{
    display: flex;
    flex-wrap: wrap;
    
}
.shop-content-box{
    width: 30%;
    margin: 1% auto;
    text-align: center;
    border-radius: 7px;
    background-color: #b5b5b6;
}
.shop-content-box img{
    width: 87%;
    padding: 4% 0;
}
.shop-content-box img:hover{
    opacity: 0.6;
    transition: 0.2s;
}
.shop-content-box h3{
    margin: 0 0 4% 0;
    color: white;
}
.shop-content-box p{
    width: 90%;
    margin: 0 auto;
    text-align: left;
    color: white;
}
.shop-button{
    padding: 6% 0;
}
.shop-button a{
    padding: 1.2% 10%;
    text-decoration: none;
    border-radius: 7px;
    transition: 0.3s;
    color: whitesmoke;;
    background: black;
    border: 1px solid black;
}
.shop-button a:hover{
    color: black;
    background-color: whitesmoke;;
}


@media screen and (min-width: 768px) and (max-width: 1068px){
    .shop-wrapper{
        width: 90%;
    }
    .shop-content-box{
        margin: 3% auto;
    }
    .shop-content-box img{
        padding: 8% 0 6% 0;
    }
    .shop-content-box p{
        width: 85%;
    }
    .shop-button{
        padding: 12% 0;
    }
}

@media screen and (max-width: 767px){
    .shop-wrapper{
        width: 90%;
        margin: 10% auto;
    }
    .shop-wrapper h2{
        font-size: 20px;
        margin: 5% auto;
    }
    .shop-wrapper h3{
        font-size: 18px;
        margin: 5% auto;
    }
    .shop-content{
        display: block;
    }
    .shop-content-box{
        width: 100%;
        margin: 7% auto;
    }
    .shop-content-box h3{
        margin: 0 0 2% 0;
    }
    .shop-content-box p{
        font-size: 15px;;
    }
    .shop-button{
        padding: 10% 0 7% 0;
    }
}