/*=====================================
HERO
=====================================*/

.hero{
    background:#f5f5f5;
    padding:40px 0;
}

.hero-container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 15px;
    display:flex;
    gap:25px;
    align-items:stretch;
}

/*=====================================
LEFT SLIDER
=====================================*/

.hero-slider{
    width:70%;
    background:#16171D;
    border-radius:22px;
    position:relative;
    overflow:hidden;
    min-height:560px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.hero-slider::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    right:-260px;
    top:-160px;
    background:rgba(209,0,36,.08);
    border-radius:50%;
}

.hero-slider::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-120px;
    bottom:-120px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
}

.hero-slide{
    display:none;
    min-height:560px;
    padding:60px;
    align-items:center;
    justify-content:space-between;
    position:relative;
    z-index:2;
}

.hero-slide.active{
    display:flex;
}

.hero-content{
    width:48%;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    color:#D10024;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:64px;
    font-weight:800;
    line-height:1.05;
    margin:0 0 20px;
}

.hero-content p{
    color:#d7d7d7;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 40px;
    background:#D10024;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.hero-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

.hero-image{
    width:48%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-image img{
    width:100%;
    max-width:470px;
    max-height:420px;
    object-fit:contain;
    transition:.4s;
}

.hero-slide:hover .hero-image img{
    transform:scale(1.05);
}

/*=====================================
ARROWS
=====================================*/

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    cursor:pointer;
    font-size:20px;
    transition:.35s;
    z-index:50;
}

.hero-prev{
    left:20px;
}

.hero-next{
    right:20px;
}

.hero-prev:hover,
.hero-next:hover{
    background:#D10024;
}

/*=====================================
DOTS
=====================================*/

.hero-dots{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:50;
}

.hero-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#666;
    cursor:pointer;
    transition:.3s;
}

.hero-dot.active{
    background:#D10024;
}

/*=====================================
RIGHT SIDE
=====================================*/

.hero-right{
    width:30%;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.hero-card{
    flex:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:35px;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    transition:.35s;
    text-decoration:none;
}

.hero-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.hero-card.red{
    background:#E61E2B;
}

.hero-card.dark{
    background:#173140;
}

.hero-card div{
    width:55%;
    position:relative;
    z-index:2;
}

.hero-card h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.hero-card p{
    color:#fff;
    font-size:17px;
    margin-bottom:18px;
}

.hero-card a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.hero-card img{
    width:42%;
    max-height:170px;
    object-fit:contain;
    position:relative;
    z-index:2;
    transition:.35s;
}

.hero-card:hover img{
    transform:scale(1.08);
}
/*=====================================
TABLET
=====================================*/

@media (max-width:991px){

.hero{
    padding:30px 0;
}

.hero-container{
    flex-direction:column;
    gap:20px;
}

.hero-slider{
    width:100%;
    min-height:auto;
}

.hero-right{
    width:100%;
    flex-direction:row;
}

.hero-card{
    width:50%;
    min-height:220px;
}

.hero-slide{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:45px 35px;
    min-height:auto;
}

.hero-content{
    width:100%;
    margin-bottom:30px;
}

.hero-content h1{
    font-size:48px;
}

.hero-content p{
    font-size:17px;
}

.hero-image{
    width:100%;
}

.hero-image img{
    max-width:420px;
    max-height:320px;
}

.hero-prev{
    left:15px;
}

.hero-next{
    right:15px;
}

}

/*=====================================
MOBILE
=====================================*/

@media (max-width:767px){

.hero{
    padding:20px 0;
}

.hero-container{
    padding:0 10px;
}

.hero-slider{
    border-radius:18px;
}

.hero-slide{
    padding:35px 20px;
}

.hero-content h1{
    font-size:34px;
    line-height:1.2;
}

.hero-content p{
    font-size:15px;
    margin-bottom:25px;
}

.hero-btn{
    width:100%;
    padding:14px;
}

.hero-image img{
    max-width:280px;
    max-height:220px;
}

.hero-right{
    flex-direction:column;
}

.hero-card{
    width:100%;
    min-height:180px;
    padding:25px;
}

.hero-card h2{
    font-size:26px;
}

.hero-card p{
    font-size:15px;
}

.hero-card img{
    width:38%;
    max-height:120px;
}

.hero-prev,
.hero-next{
    width:42px;
    height:42px;
    font-size:16px;
}

.hero-dots{
    bottom:15px;
}

.hero-dot{
    width:10px;
    height:10px;
}

}

/*=====================================
SMALL MOBILE
=====================================*/

@media (max-width:480px){

.hero-slide{
    padding:25px 15px;
}

.hero-content h1{
    font-size:28px;
}

.hero-tag{
    font-size:12px;
    letter-spacing:2px;
}

.hero-content p{
    font-size:14px;
}

.hero-card{
    flex-direction:column;
    text-align:center;
    gap:20px;
}

.hero-card div{
    width:100%;
}

.hero-card img{
    width:70%;
    max-width:170px;
}

.hero-card h2{
    font-size:24px;
}

.hero-card p{
    margin-bottom:10px;
}

.hero-slider::before{
    width:450px;
    height:450px;
    right:-180px;
    top:-100px;
}

.hero-slider::after{
    width:180px;
    height:180px;
    left:-80px;
    bottom:-80px;
}

}