.productSecond{
    padding: 4rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insideProductSecond {
    height: 80%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.insideProductSecondCard{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem ;
}

.productGallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
    border: 1px solid #00000027;
    background: #0000000f;
    border-radius: 1rem;
}

.productGallery img {
    height: 12rem;
    margin: 1rem;
}

.insideProductSecondCard h2{
    font-size: 40px;
    font-weight: 500;
}

.mainMain {
    flex-direction: column;
    align-items: self-start;
    justify-content: flex-start;
}

.mainMain p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 2rem;
    font-weight: 500;
    color: #000000ad;
}

@media screen and (max-width:1024px){
    .productGallery img {
        height: 7rem;
    }
    .insideProductSecondCard h2 {
        font-size: 35px;
    }
    .mainMain p {
        font-size: 16px;
    }
}

@media screen and (max-width:765px){
    .insideProductSecond {
        flex-direction: column;
        align-items: center;
    }
    .insideProductSecondCard {
        width: 100%;
    }
    .productGallery {
        display: flex;
        justify-content: center;
    }
    .productGallery img {
        height: 8rem;
    }
    .insideContactFirst h2 {
        font-size: 30px;
        text-align: center;
    }
}

@media screen and (max-width:425px){
    .productSecond {
        padding: 3rem 0;
    }
    .productGallery img {
        height: 6rem;
        margin: 0.5rem 1rem;
    }    
    .insideProductSecondCard h2 {
        font-size: 32px;
    }
}