.about_the_product {
    background: #fff;
    width: 100%;
    padding: 25px 0 50px 0;
    margin-top: 50px;
}

.about_the_product h1,
.about_the_product p,
.about_the_product b {
    color: #222
}

.about_the_product_text {
    margin-top: 50px;
    max-width: 763px;
}

.logo_position {
    margin-top: 15px;
    max-width: 130px;
    height: auto;
}

.logo_position img {
    width: 100%;
    height: auto;
}

.about_the_product_text p {
    line-height: 150%;
}

.about_the_product_flex {
    display: flex;
    justify-content: space-between;
}

.about_the_product_img {
    max-width: 520px;
    height: auto;

}

.about_the_product_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
}

.title {
    display: flex;
    gap: 35px;
}

.title .next {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title h1 {
    color: #222;
}

.title h1:first-letter {
    text-transform: uppercase;
}

.about_the_product strong {
    color: #222;
}

@media (max-width: 900px) {
    .about_the_product_flex {
        display: block;
    }

    .about_the_product_img {
        padding-top: 50px;
        margin: 0 auto;
    }

}

@media (max-width: 767px) {
    .about_the_product {
        margin-top: 0px;
    }
}

@media (max-width: 430px) {
    .title {
        display: block;
    }

    .title h1 {
        margin-top: 15px;
    }
}