.one-product-block{
    margin-top: 100px;
    flex-direction: column;
    justify-content: flex-start;
}

.main-info{
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}
.product-part {
    padding: 40px;
    height: 100% ;
    box-sizing: border-box;
}

.image-part {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 100%;
}
.about-part{
    width: 60%;
}
.image-wrapper {
    position: relative;
    width: 420px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.product-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 6px;
}
.hidden{
    display: none;
}
.product-image.active {
    display: block;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}

.arrow:hover {
    background: whitesmoke;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}
.product-info {
    margin-bottom: 10px;
}

.product-about {
    margin: 50px 0 50px 0;
}

@media (max-width: 860px){
    .one-product-block{
        margin-top: 80px;
    }
    .main-info{
        flex-direction: column;
    }
    .image-part{
        width: 100%;
    }
    .about-part{
        width: 100%;
    }
    .product-part {
        padding: 20px;
    }
    
}
@media (max-width: 600px){

}

