/* HERO */

.hero-wrapper{

background:
linear-gradient(
135deg,
#02142b,
#0f172a,
#1e293b
);

width:100%;

overflow:hidden;
}

/* CONTAINER */

.hero-container{

max-width:1400px;

margin:auto;

padding:40px 24px;

display:flex;

align-items:center;

justify-content:space-between;

gap:30px;
}

/* LOGO */

.hero-logo-area{

flex-shrink:0;

display:flex;

align-items:center;

justify-content:center;
}

.hero-logo{

width:110px;

height:110px;

object-fit:contain;
}

/* CONTENT */

.hero-content{

flex:1;

text-align:center;

color:white;
}

/* TITLE */

.hero-title{

font-size:56px;

font-weight:900;

line-height:1.1;

margin-bottom:12px;
}

/* LINE */

.hero-line{

width:140px;

height:4px;

margin:0 auto 20px;

border-radius:30px;

background:
linear-gradient(
90deg,
#facc15,
transparent
);
}

/* SUBTITLE */

.hero-subtitle{

display:inline-block;

padding:10px 22px;

border-radius:14px;

background:
linear-gradient(
135deg,
#1565c0,
#1e88e5
);

font-size:20px;

font-weight:700;

margin-bottom:20px;
}

/* DESCRIPTION */

.hero-description{

max-width:1100px;

margin:0 auto;
}

.hero-description-main{

font-size:21px;

line-height:1.8;

font-weight:600;

color:#f8fafc;

margin:0 0 12px;
}

.hero-description-sub{

font-size:18px;

line-height:1.8;

font-style:italic;

font-weight:400;

color:#93c5fd;

margin:0;

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;
}

/* TABLET */

@media(max-width:992px){

.hero-container{

flex-direction:column;

text-align:center;
}

.hero-title{

font-size:38px;
}

.hero-subtitle{

font-size:16px;
}

.hero-description-main{

font-size:18px;
}

.hero-description-sub{

font-size:15px;

white-space:normal;

overflow:visible;

text-overflow:initial;
}

.hero-logo{

width:80px;
height:80px;
}

}

/* MOBILE */

@media(max-width:576px){

.hero-title{

font-size:28px;
}

.hero-subtitle{

font-size:14px;
}

.hero-description-main{

font-size:16px;
}

.hero-description-sub{

font-size:13px;

white-space:normal;

overflow:visible;

text-overflow:initial;
}

.hero-logo{

width:65px;
height:65px;
}

}

/* Fix hero mobile */
@media(max-width:576px){
    .hero-logo-right {
        display: none !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
}

@media(max-width:576px){
    .hero-logo-right,
    .hero-logo-jdihn,
    img[alt="JDIHN"],
    img[alt="Logo JDIHN"] {
        display: none !important;
    }
}
