.product__view {
    padding: 3rem 0;
}
.product__view .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product__view .content h3.title {
    color: #e8231a;
    font-size: 2.5rem;
    font-family: "Poppins SemiBold", sans-serif;
    position: relative;
    line-height: 1;
}
.product__view .content h3.title::after {
    content: " ";
    position: absolute;
    pointer-events: none;
    bottom: -10px;
    right: -15px;
    width: calc(100% + 15px);
    height: calc(100% + 10px);
    border-bottom-right-radius: 10px;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transition: .3s;
}


.product__view .content .image {
    background-position: center;
    background-repeat: no-repeat;
    width: 350px;
    height: 350px;
    background-size: auto 100%;
    background-color: #fff;
    border-radius: 3rem 1rem 3rem 1rem;
    margin: 2rem 0;
    transition: .3s;
}
.product__view .content .image:hover {
    transform: scale(1.03);
}

.product__view .content .description {
    min-width: 300px;
    max-width: 80%;
}




@media screen and (max-width: 991px), (orientation: portrait) {
    .product__view .content h3.title {
        text-align: center;
        font-size: 2.3rem;
        margin-bottom: 0;
    }
    .product__view .content h3.title::after {
        display: none;
    }
    .product__view .content .description {
        max-width: 100%;
    }
    .product__view .content .image {
        width: 100%;
    }
}
