/*==================================================
  SmartShop Hero
==================================================*/

.hero{

    margin:24px 15px 18px;

}
.hero .container{
    width:min(100%,1400px);
    margin:auto;
}
.hero-box{

    background:url("../images/hero/hero-banner.png") center center no-repeat;

    background-size:cover;


    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    min-height:430px;

    position:relative;

    padding:0 60px;

}

/*==================================
    Image
==================================*/



/*==================================
    Content
==================================*/

.hero-content{

    width:100%;

    max-width:520px;

    margin-right:70px;

    margin-left:auto;

    z-index:2;

}

.hero-content h1{

    margin:0;
color: #fff;
    font-size:42px;

    line-height:1.5;

    font-weight:800;

}

.hero-content h1 span{

    display:block;
font-size: 30px;
    color:#ffb31a;

}

.hero-content p{

    margin:28px 0 36px;

    color:#d4d8e2;

    line-height:2;

    font-size:18px;

}

/*==================================
    Buttons
==================================*/

.hero-buttons{

    display:flex;

    gap:18px;

}

.hero-btn{

    height:56px;

    padding:0 28px;

    border-radius:10px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.25s;

}

.hero-btn img{

    width:20px;

    height:20px;

}

.hero-btn-primary{

    background:#ffb31a;

    color:#fff;

}

.hero-btn-primary:hover{

    background:#e6a000;

}

.hero-btn-outline{

    border:2px solid rgba(255,255,255,.25);

    color:#fff;

}

.hero-btn-outline:hover{

    background:#fff;

    color:#11224d;

}

/*==================================
    Slider Dots
==================================*/

.hero-dots{

    position:absolute;

    left:32px;

    bottom:28px;

    display:flex;

    gap:10px;

    z-index:50;

}

.hero-dots span{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#ffffff66;

    display:block;

}

.hero-dots span.active{

    background:#f4b223;

}
/*==================================
    Features
==================================*/

.hero-features {
      margin: 10px 15px 0 15px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 5px 2px rgb(0 0 0 / 10%);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
}

.hero-feature{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    padding:28px;

    position:relative;

}

.hero-feature:not(:last-child)::after{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:1px;

    height:55%;

    background:#d9d9d9;

}

.hero-feature img{

    width:42px;

    height:42px;

}

.hero-feature strong{

    display:block;

    color:#11224d;

    font-size:18px;

    margin-bottom:8px;

}

.hero-feature span{

    color:#8a8f9b;

    font-size:14px;

}

/*==================================
    Responsive
==================================*/

@media (max-width:1200px){

    .hero-content{

        padding:40px;

    }

    .hero-content h1{

        font-size:40px;

    }

}

@media (max-width:992px){

    .hero-box{

        flex-direction:column;

    }

    .hero-image,
    .hero-content{

        width:100%;

    }

    .hero-content{

        text-align:center;

        padding:40px 30px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:576px){

    .hero-content h1{

        font-size:32px;

    }

    .hero-content p{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-btn{

        width:100%;

    }

    .hero-features{

        grid-template-columns:1fr;

    }

}
@media (max-width:768px){

    .hero-box{

        background-position:20% center;

    }

}
/* ===========================
   Hero Slider
=========================== */

.hero-slider{
    position:relative;
    overflow:hidden;
    background:#11224d;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .6s ease;
    z-index:1;
    pointer-events:none;
}

.hero-slide.active{
    position:relative;
    opacity:1;
    z-index:2;
    pointer-events:auto;
}
.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:0;
    background:rgba(255,255,255,.92);
    border-radius:50%;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:20;
}

.hero-prev{
    right:25px;
}

.hero-next{
    left:25px;
}

.hero-arrow img{
    width:18px;
    height:18px;
}

