/*==================================================
                COMMON PAGE BANNER
==================================================*/

.banner-split{

    position:relative;

    width:100%;
    height:430px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    margin-top:80px;

}

/*==============================
        DARK OVERLAY
==============================*/

.banner-split::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(39,52,90,.88) 0%,
        rgba(39,52,90,.72) 50%,
        rgba(39,52,90,.55) 100%
    );

    z-index:1;

}

/*==============================
        LEFT CONTENT
==============================*/

.banner-left{

    position:relative;

    z-index:2;

    width:90%;
    max-width:1200px;

    margin:auto;

    color:#fff;

}

.banner-left h1{

    font-size:56px;

    font-weight:700;

    margin-bottom:18px;

    line-height:1.2;

}

.banner-left p{

    max-width:620px;

    font-size:18px;

    line-height:1.8;

    color:rgba(255,255,255,.9);

    margin-bottom:30px;

}

/*==============================
        TAGS
==============================*/

.banner-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

.banner-tags span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    font-size:14px;

}

/*==============================
        BUTTON
==============================*/

.banner-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    background:var(--secondary);

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.banner-btn:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-4px);

}

/*==============================
        RIGHT IMAGE
==============================*/

.banner-right{

    display:none;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.banner-split{

    height:360px;

}

.banner-left{

    text-align:center;

}

.banner-left h1{

    font-size:42px;

}

.banner-left p{

    margin:auto;

    margin-bottom:30px;

}

.banner-tags{

    justify-content:center;

}

}

@media(max-width:768px){

.banner-split{

    height:300px;

    margin-top:70px;

}

.banner-left{

    width:92%;

}

.banner-left h1{

    font-size:32px;

}

.banner-left p{

    font-size:15px;

}

.banner-tags span{

    font-size:13px;

    padding:8px 14px;

}

.banner-btn{

    width:220px;

}

}

@media(max-width:480px){

.banner-split{

    height:260px;

}

.banner-left h1{

    font-size:28px;

}

.banner-left p{

    display:none;

}

.banner-tags{

    display:none;

}

}