/* product
+++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++ */

/* product_box */
.product_box {
    display: flex;
}

.product_picture {
    display: flex;
    flex-direction: row-reverse;
    margin: auto;
}

.product_picture-main {
    padding: 0 5%;
}

.product_description {
    width: 100%;
    margin: auto;
}

.product_description-info {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 45px;
}

.product_description-text {
    font-size: 1.5rem;
    line-height: 2.5rem;
}

@media screen and (max-width: 992px) {
    .product_picture {
        display: block;
        margin-bottom: 5%;
    }

    .product_picture-main {
        padding: 0;
    }
}
/* product_description
+++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++ */
.product_description-info {
    margin-bottom: 5%;
}

/* product_function
+++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++ */

.product_function {
    margin: auto;
}
.product_function-box {
    display: flex;
    flex-wrap: wrap;
}

.product_function-card {
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
}

.product_function-card h3 {
    text-align: center;
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.product_function--img {
    margin-bottom: 15px;
    background-color: #f3f3f3;
    padding: 15px;
}
.product_function--img img {
    width: 100%;
}

.product_function--caption {
    background-color: #f3f3f3;
    padding: 15px;
    flex: 1;
    display: flex;
}

@media screen and (max-width: 992px) {
    .product_function-card {
        margin-bottom: 20%;
    }
}
