/*======================================================

                PRODUCT HERO

======================================================*/

/* .product-hero{
    padding:180px 0 120px;
    background:#f5f5f7;
    overflow:hidden;
} */

/*======================================
Container
======================================*/

.product-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/*======================================
Left Content
======================================*/

.product-hero-content{
    max-width:560px;
}

.hero-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#8e8e93;
    margin-bottom:28px;
}

.product-hero-content h1{
    font-size:72px;
    font-weight:700;
    line-height:1.05;
    color:#111;
    margin-bottom:30px;
}

.product-hero-content p{
    font-size:21px;
    line-height:1.8;
    color:#6e6e73;
    margin-bottom:45px;
    max-width:500px;
}

/*======================================
Button
======================================*/

.hero-buttons{
    display:flex;
}

.primary-btn{
    width:220px;
    height:62px;
    border-radius:50px;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.primary-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-3px);
}

.primary-btn i{
    transition:.35s;
}

.primary-btn:hover i{
    transform:translateX(5px);
}

/*======================================
Right Image
======================================*/

.product-hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Background Circle */

/* .product-hero-image::before{

    content:"";
    position:absolute;

    width:620px;
    height:620px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(255,255,255,1) 0%,
        rgba(240,240,240,.9) 65%,
        rgba(245,245,247,0) 100%);

    z-index:0;
} */

/* Hero Image */

.hero-product-image{

    width:650px;

    height:auto;

    object-fit:contain;

    position:relative;

    z-index:2;

    transform:translateZ(0);

}

.product-hero-image:hover .hero-product-image{

    transform:translateY(-8px) scale(1.02);

}

/*======================================
Responsive
======================================*/

@media(max-width:1200px){

.product-hero-content h1{

    font-size:58px;

}

.hero-product-image{

    max-width:560px;

}

.product-hero-wrapper{

    gap:60px;

}

}

@media(max-width:991px){

.product-hero{

    padding:120px 0 90px;

}

.product-hero-wrapper{

    grid-template-columns:1fr;
    text-align:center;
    gap:60px;

}

.product-hero-content{

    margin:auto;

}

.product-hero-content p{

    margin:0 auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.product-hero-image::before{

    width:480px;
    height:480px;

}

.hero-product-image{

    max-width:500px;

}

}

@media(max-width:768px){

.product-hero-content h1{

    font-size:48px;

}

.product-hero-content p{

    font-size:18px;

}

.hero-product-image{

    max-width:420px;

}

.product-hero-image::before{

    width:400px;
    height:400px;

}

}

@media(max-width:576px){

.product-hero{

    padding:100px 0 70px;

}

.product-hero-content h1{

    font-size:40px;

}

.product-hero-content p{

    font-size:16px;

}

.primary-btn{

    width:200px;
    height:58px;

}

.hero-product-image{

    max-width:320px;

}

.product-hero-image::before{

    width:300px;
    height:300px;

}

}