.shopFirst{
    padding: 2rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideShopFirst {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.insideShopFirst p{
    font-size: 16px;
    font-weight: 400;
}

.shopSecond{
    padding: 2rem 0;
    padding-top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideShopSecond {
    height: 80%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sp1{
    width: 80%;
    flex: 1;
    flex-wrap: wrap;
}

.sp2{
    width: 20%;
    flex-direction: column;
}

.shopProduct {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem;
}

.sp2 h3{
    color: #080808;
    font-weight: 500;
        font-size: 22px;
}

.categoryLinks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.productMain {
    height: 20rem;
    width: 16rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 5px;
    margin: 2rem 1rem;
}

.insideProductMain{
    height: 70%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideProductMain img {
    height: 100%;
}

.productMain a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #666;
}

.productMain h3 {
    font-size: 19px;
    font-weight: 500;
    margin-top: 0.5rem;
    text-align: center;
}

.sp2 span {
    height: 3px;
    background: #0ba3fa;
    width: 20%;
    margin: 0.5rem 0;
    margin-bottom: 1rem;
}

.categoryLinks a {
    text-decoration: none;
    margin: 0;
    padding: 0.8rem 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    width: 15rem;
}

.asa{
    border-top: 1px solid rgba(211, 211, 211, 0.801);
    border-bottom: 1px solid rgba(211, 211, 211, 0.801);
}

@media screen and (max-width:1024px){
    .insideShopSecond {
        width: 95%;
    }
    .categoryLinks a {
        width: 10rem;
    }
}

@media screen and (max-width:900px){
    .insideShopSecond {
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width:765px){
    .sp1 {
        width: 95%;
    }
    .productMain {
        width: 14rem;
    }
}

@media screen and (max-width:600px){
    .sp2 {
        width: 90%;
    }
    .productMain {
        width: 22rem;
    }
    .shopProduct {
        justify-content: center;
    }
}

@media screen and (max-width:425px){
    .productMain h3 {
        font-size: 18px;
    }
}