.category_box__wrapper{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.subcategories_holder{
	justify-content: center;
}
.category_box{
    width: 15%;
    min-width: 155px;
    margin: 0 30px 25px;
    background: #1B1B1B;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-decoration: none;
}
.category_box__image{
    width: 100.01%;
    height: 145px;
    border-radius: 13px 13px 0 0;
    overflow: hidden;
    text-align: center;
}

.category_box__image img{
    max-width: 90%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all .3s ease-in;
}
.category_box h3{
    font-family: "Gotham", Sans-serif;
    font-weight: 600;
    line-height: 20px;
    font-style: normal;
    
    font-size: 16px;
    text-align: center;
    line-height: 16px;
    color: #FFFFFF;
    margin-top: 20px;
    padding: 0 10px;
}
.category_box p{
    font-family: "Gotham", Sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    padding: 0 10px;
}

.category_box:hover .category_box__image img{
    transform: scale(1.1);
    transition: all .3s ease-in;
}


.limit_box{
    width: 360px;
    margin: 0 auto;
    margin-bottom: 35px;
    position: relative;
    border-radius: 0;
}
@media all and (max-width: 600px){
    .limit_box{
        width: 90%;
        max-width: 350px;
    }
}
.limit_box .category_box--main__image{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.limit_box .category_box--main__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.limit_box h2{
    font-family: "Syncopate", Sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 50px;
}
.limit_box  p{
    padding: 0 5%;
    margin-bottom: 0;
}
.limit_box .btn--white{
    padding: 15px;
    font-size: 16px;
    line-height: 20px;
    bottom: -30px;
    position: absolute;
    font-family: "Gotham", Sans-serif;
    font-weight: 600;
    
}



.category_box--main{
    width: 350px;
    margin: 0 auto;
    border-radius: 15px;
    margin-bottom: 35px;
}
@media all and (max-width: 600px){
    .category_box--main{
        width: 90%;
        max-width: 350px;
    }
}
 .category_box--main__image{
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0 ;
    overflow: hidden;
}
.category_box--main__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category_box--main h2{
    font-family: "Gotham", Sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 35px;
}
.category_box--main p{
    padding: 0 5%;
    margin-bottom: 0;
    font-family: "Gotham", Sans-serif;
    font-weight: 500;
    line-height: 20px;
}
.btn--white{
    display: flex;
    width: 80%;
    background: #FFFFFF;
    border: .5px solid #000000;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 17px;
    font-family: Gotham;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #111111;
    justify-content: center;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
    position: relative;
    bottom: -24px;
    text-align: center;
}