.product {
    position: relative;
    width: 100%;
    padding: 170px 80px;
    overflow: hidden;
}
.product h2 {
    color: #fff;
    font-size: 24px;
}
.product_imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product_imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
}
.product_imgBx img.appear {
    animation: product_img .6s ease-in-out forwards;
}
@keyframes product_img {
    0% {
        opacity: .3;
        transform: scale(1.4);
    }
    100% {
        opacity: .3;
        transform: scale(1);
    }
}
.product_textBx {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}
.product_textBx a {
    position: relative;
    margin: 15px 0;
    padding: 0 28px;

    border-right: solid 1px #999;

    font-size: 72px;
    letter-spacing: 3px;

    opacity: .5;
}
.product_textBx a:hover {
    opacity: 1;
}
.product_textBx a::before {
    content: attr(data-text)"";
    position: absolute;
    top: -15px;
    left: 28px;

    color: #ccc;
    font-size: 10px;
}
.product_contactBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50vw;
    height: 120px;
    margin: 0;
    margin-top: 60px;

    background: linear-gradient(90deg, #a18cd1, #fbc2eb);

    transform: translateX(calc(100% - 80px));
}
.product_contactBx p {
    position: relative;
    margin-left: 150px;
    margin-right: 30px;

    font-size: 20px;
    font-weight: 700;
}
.product_contactBx p::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -68px;
    width: 22px;
    height: 2px;

    background: #fff;

    transition: .3s;
    transform: translateY(-50%);
}
.product_contactBx:hover p::before {
    transform: translateY(-50%) translateX(5px);
}
.product_contactBx p::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -71px;
    width: 15px;
    height: 2px;

    background: #fff;

    transition: .3s;
    transform-origin: right;
    transform: translateY(-50%) rotate(15deg);
}
.product_contactBx:hover p::after {
    transform: translateY(-50%) translateX(5px) rotate(15deg);
}
.product_contactBx svg {
    position: relative;
    width: 54px;
    height: 54px;

    transform: rotate(-90deg);
}
.product_contactBx svg circle {
    fill: transparent;
    stroke: #aaa;
    stroke-width: 2px;
}
.product_contactBx svg circle:nth-child(1) {
    stroke: #aaa;
}
.product_contactBx:hover svg circle:nth-child(2) {
    animation: svgCircle .5s ease-in-out forwards;
}
.product .contactBx {
    left: auto;
    right: 0;
}

@media screen and (max-width:1024px) {
    .product {
        position: relative;
        width: 100%;
        padding: 30px 30px 100px;
        overflow: hidden;
    }
    .product h2 {
        color: #fff;
        font-size: 18px;
    }
    .product_textBx {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    .product_textBx a {
        position: relative;
        margin: 7px 0;
        padding: 0 30px;
    
        border-right: none;
    
        font-size: 24px;
        letter-spacing: 2px;
    
        opacity: .5;
    }
    .product_textBx a::before {
        content: attr(data-text)"";
        position: absolute;
        top: 6px;
        left: -10px;
    
        color: #fff;
        font-size: 10px;
    }
    /*.product_textBx a::after {
        content: '>';
        position: absolute;
        top: 4px;
        right: 0;

        color: #fff;
        font-size: 15px;

        transition: .5s;
    }
    .product_textBx a:hover::after {
        transform: translateX(10px);
    }*/
    .branding_contactBx p {
        position: relative;
        margin-left: 80px;
        margin-right: 30px;
    
        font-size: 16px;
        font-weight: 700;
    }
}