* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    overflow-x: hidden;
}
.productMain{
    background: url(../image/content-bg.jpg);
    height: 190vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.productcontent{
    height: 170vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}
.productcontent1{
    width: 95%;
    height: 170vh;
}
.productcontentTitle{
    font-weight: bold;
    color: #BA9A63;
    font-size: 23px;
}
.borderProduct{
    width: 42%;
    border: 1px solid #BA9A63
}
.productPart1{
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.productPart1New{
    display: none;
}

@media only screen and (max-width: 767px){
    .productPart1{
        display: none;
    }
    .productPart1New{
        height: 31vh;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .productcontentTitle{
        font-size: 17px;
    }
    .borderProduct{
        width: 100%;
    }
    .productMain{
        height: 240vh;
    }
    .productcontent{
        height: 230vh;
    }
    .productcontent1{
        height: 230vh;
    }
}