*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.countanerg {
    width: 100%;
}
.wrapper {
    width: 100%;
    height: 100vh;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}
.textg {
    flex-basis: 45%;
}
.all-images {
    height: 90vh;
    display: flex;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 5px;

}
.small-images {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;



}

.small-images img{
    width: 8vh;
    height: 10vh;
    margin-bottom: 9px;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #cbcbcb;


}
.small-images img:hover{
    opacity: 1;

}
.main-images img{
    height: 100%;
    margin-left: 5px;
    margin-right: 5px;

    border-radius: 10px;

}
.ptext {
    margin-bottom: 20px;
}
.brand {
    background-color: #198654;
    color: white;
    width: fit-content;
    padding: 2px 4px;
}
.titrname {
    font-size: 35px;
    color: #555;
    margin-bottom: 20px;

}
.review {
    background-color: #0c4128;
    display: inline-block;
    color: white;
    padding: 4px;
    border-radius: 5px;
    font-size: 15px;
}

@media only screen and (max-width: 1200px){
    .wrapper{
        flex-direction: column;
        height: auto;
        padding: 5% 0;
    }
    .textg{
        padding-top: 50px;
    }
}
@media only screen and (max-width: 1000px){
    .all-images{
        flex-direction: column;
        height: auto;
        border-radius: 10px;

    }
    .small-images{
        flex-direction: row;
        justify-content: space-evenly;
        order: 1;
        align-items: end;

    }
    .product-box{
        width: 100%;

    }
    .main-images img{
        width: 100%;
    }
    .small-images img{
        width: 20%;
        height: 60%;


    }
    .titrname{
        font-size: 25px;
    }
}
