.banner_hm {
    /* max-width:1400px;
      margin:auto; */
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.banner_hm .hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: stretch;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 248, 248, .96)),
        radial-gradient(circle at left center, rgba(0, 0, 0, .04), transparent 38%);
    isolation: isolate;
}

/* left side */
.banner_hm .banner-left {
    width: 58%;
    padding: 70px 60px 40px 70px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/banner-left.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner_hm .banner-left:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(40deg, rgb(255 255 255 / 81%) 0%, rgb(255 255 255) 100%);
    z-index: 2;
}

.banner_hm .watermark {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 180px;
    line-height: 1;
    font-weight: 700;
    color: rgba(0, 0, 0, .04);
    z-index: -1;
    user-select: none;
}

.banner_hm .brand {
    /* display: flex;
    align-items: center; */
    gap: 18px;
    margin-bottom: 18px;
    position: relative;
    z-index: 3;
}

.banner_hm .brand-mark {
    font-size: 92px;
    font-weight: 800;
    line-height: 1;
    color: #0c2c64;
    position: relative;
    letter-spacing: -6px;
}

.banner_hm .brand-mark span {
    color: #2f6c2e;
}

.banner_hm .brand-copy h1 {
    font-family: "Cinzel", serif;
    font-size: 78px;
    line-height: .95;
    letter-spacing: 3px;
    color: #0c2c64;
    font-weight: 700;
}

.banner_hm .brand-copy h1 span {
    display: block;
    color: #2f6c2e;
    margin-top: 12px;
}

.banner_hm .tagline {
    margin-top: 12px;
    font-size: 18px;
    letter-spacing: 6px;
    color: #20345b;
    font-weight: 500;
    text-transform: uppercase;
}

.banner_hm .divider {
    margin: 16px 0 18px;
    width: 100%;
    max-width: 570px;
    height: 2px;
    background:
        linear-gradient(to right,
            transparent 0%,
            #1d3f78 12%,
            #1d3f78 34%,
            transparent 36%,
            transparent 64%,
            #1d3f78 66%,
            #1d3f78 88%,
            transparent 100%);
}

.banner_hm .subline {
    font-size: 22px;
    letter-spacing: 4px;
    color: #3f6f44;
    text-transform: uppercase;
}

/* right diagonal section */
.banner_hm .banner-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(43% 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(3, 18, 66, .35), rgba(1, 8, 36, .15)), radial-gradient(circle at 75% 25%, rgba(45, 130, 255, .15), transparent 28%), linear-gradient(135deg, #06245f 0%, #041b47 38%, #03163d 100%);
    overflow: hidden;
}

/* green slanted border */
.banner_hm .banner-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #5a7e4d;
    clip-path: polygon(39% 0, 44% 0, 1% 100%, 0 100%);
    z-index: 2;
}

/* fake chart lines background */
.banner_hm .banner-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .18;
    z-index: 0;
}

.banner_hm .chart-line {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .8;
}

.banner_hm .chart-line svg {
    width: 100%;
    height: 100%;
}

.banner_hm .person {
    position: absolute;
    right: 308px;
    bottom: 0;
    width: 100%;
    height: 431px;
    max-width: 48%;
    z-index: 3;
}

.banner_hm .person img {
    width: 100%;
    display: block;
    height: 100%;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

.banner_hm .right-content {
    position: absolute;
    right: 27px;
    top: 326px;
    width: 42%;
    color: #fff;
    z-index: 4;
    text-align: right;
}

.banner_hm .right-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.banner_hm .right-content p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);

}

.banner_hm .badge {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(95, 136, 67, .92);
    padding: 14px 18px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    margin-left: 90px;
    width: 100%;
}

.banner_hm .badge p {
    text-align: left;
}

.banner_hm .badge .icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #2f6c2e;
    font-size: 22px;
    font-weight: 800;
}

/* bottom strip */
.banner_hm .bottom-strip {
    background: linear-gradient(90deg, #022156, #03163f 60%, #021436 100%);
    color: #fff;
    padding: 20px 30px;
    border-top: 4px solid #4f733d;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: center;
}

.banner_hm .feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
    border-right: 1px solid rgba(255, 255, 255, .28);
    min-height: 64px;
}

.banner_hm .feature:last-child {
    border-right: none;
}

.banner_hm .icon-circle {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid #4f733d;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #fff;
}

.banner_hm .feature h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.banner_hm .feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.45;
}

.banner_hm .subscribe {
    background: #fff;
    color: #0f244b;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
}

.banner_hm .subscribe .yt {
    width: 52px;
    height: 38px;
    border-radius: 12px;
    background: #ff0000;
    position: relative;
    flex-shrink: 0;
}

.banner_hm .subscribe .yt::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 10px;
    border-left: 14px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.banner_hm .subscribe strong {
    display: block;
    color: #3d6f3b;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.banner_hm .subscribe span {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}
.banner_hm .brand img{
    width: 85%;
}
@media (max-width: 1100px) {
    .banner_hm .hero-banner {
        min-height: auto;
        display: block;
    }

    .banner_hm .banner-left {
        width: 100%;
        padding: 50px 30px 40px;
    }

    .banner_hm .banner-right {
        position: relative;
        width: 100%;
        min-height: 420px;
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    }

    .banner_hm .right-content {
        width: auto;
        left: auto;
        right: 24px;
        top: 40px;
        max-width: 44%;
    }

    .banner_hm .person {
        right: 20px;
        width: 320px;
        max-width: 50%;
    }

    .banner_hm .bottom-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner_hm .brand {
        align-items: flex-start;
    }

    .banner_hm .brand-mark {
        font-size: 64px;
        letter-spacing: -4px;
    }

    .banner_hm .brand-copy h1 {
        font-size: 42px;
    }

    .banner_hm .tagline {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .banner_hm .subline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .banner_hm .banner-right {
        min-height: 340px;
        clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
    }

    .banner_hm .person {
        width: 220px;
        max-width: 55%;
    }

    .banner_hm .right-content {
        top: 22px;
        right: 18px;
        max-width: 48%;
    }

    .banner_hm .right-content h3 {
        font-size: 20px;
    }

    .banner_hm .right-content p {
        font-size: 13px;
    }

    .banner_hm .badge {
        font-size: 14px;
        padding: 10px 12px;
    }

    .banner_hm .badge .icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .banner_hm .bottom-strip {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .banner_hm .feature {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding-bottom: 14px;
    }

    .banner_hm .feature:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (min-width:1400px) and (max-width:1500px) {
    .banner_hm .right-content {
        right: 20px;
        top: 307px;
        width: 45%;
    }

    .banner_hm .badge {
        padding: 14px 24px;
        margin-left: 76px;
    }

    .banner_hm .badge p {
        font-size: 18px;
    }

    .banner_hm .right-content h3 {
        font-size: 36px;
    }

    .banner_hm .brand img {
        width: 80%;
    }

    .banner_hm .brand {
        left: 47px;
    }

    .banner_hm .person {
        height: 385px;
    }

    .banner_hm .person img {
        height: 100%;
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    .banner_hm .badge p {
        font-size: 16px;
    }

    .banner_hm .right-content h3 {
        font-size: 30px;
    }

    .banner_hm .right-content p {
        font-size: 17px;
    }

    .banner_hm .badge {
        margin-left: 42px;
    }

    .banner_hm .right-content {
        top: 290px;
    }

    .banner_hm .brand img {
        width: 75%;
    }

    .banner_hm .person {
        right: 259px;
    }

    .banner_hm .brand {
        left: 47px;
    }

    .banner_hm .person {
        height: 370px;
    }

    .banner_hm .person img {
        height: 100%;
    }
}

@media (min-width:1700px) and (max-width:1900px) {
    .banner_hm .person {
        right: 362px;
        height: 510px;
    }

    .banner_hm .person img {
        height: 100%;
        object-fit: unset;
    }
}

@media (min-width:1901px) and (max-width:2200px) {
    .banner_hm .person {
        height: 550px;
        right: 387px;
    }

    .banner_hm .right-content {
        top: 419px;
    }

    .banner_hm .right-content h3 {
        font-size: 46px;
    }

    .banner_hm .right-content p {
        font-size: 25px;
    }

    .banner_hm .brand img {
        width: 100%;
    }

    .banner_hm .icon-circle {
        font-size: 38px;
    }

    .banner_hm .feature h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .banner_hm .feature p {
        font-size: 20px;
    }
}

@media (min-width:2201px) and (max-width:3500px) {
    .banner_hm .person {
        height: 650px;
        right: 444px;
    }

    .banner_hm .right-content {
        top: 450px;
    }

    .banner_hm .right-content h3 {
        font-size: 50px;
    }

    .banner_hm .right-content p {
        font-size: 28px;
    }

    .banner_hm .brand img {
        width: 120%;
    }

    .banner_hm .icon-circle {
        font-size: 38px;
    }

    .banner_hm .feature h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .banner_hm .feature p {
        font-size: 20px;
    }
}
/* ========== max 768px (Mobile) ========== */
@media (max-width: 1100px) {

    .banner_hm .hero-banner {
        display: block;
        height: auto;
        padding-top: 66px;
    }

    .banner_hm .banner-right::before {
        display: none;
    }

    .banner_hm .banner-left {
        display: none;
    }

    .banner_hm .banner-left img {
        width: 200px;
        max-width: 60%;
    }

    .banner_hm .watermark {
        font-size: 100px;
    }

    .banner_hm .banner-right {
        position: relative;
        width: 100%;
        min-height: 260px;
        clip-path: none
    }

    .banner_hm .person {
        left: 18%;
        right: auto;
        width: auto;
        max-width: 42%;
        height: 230px;
    }
    .banner_hm .right-content {
        right: 14px;
        top: 18px;
        max-width: 50%;
        text-align: right;
    }

    .banner_hm .right-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .banner_hm .right-content p {
        font-size: 11px;
        line-height: 1.5;
    }

    .banner_hm .badge {
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 10px;
        font-size: 11px;
        gap: 8px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .banner_hm .badge .icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        min-width: 30px;
    }

    .banner_hm .badge p {
        font-size: 11px;
        line-height: 1.4;
    }

    .banner_hm .bottom-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0;
    }

    .banner_hm .feature {
        border-right: 1px solid rgba(255, 255, 255, .18);
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding: 16px 14px;
        min-height: unset;
    }

    .banner_hm .feature:nth-child(2n) {
        border-right: none;
    }

    .banner_hm .icon-circle {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .banner_hm .feature h4 {
        font-size: 12px;
    }

    .banner_hm .feature p {
        font-size: 11px;
    }

    .banner_hm .subscribe {
        grid-column: span 2;
        border-bottom: none;
        border-radius: 0;
        padding: 16px 14px;
    }
}

/* ========== max 480px (Small mobile) ========== */
@media (max-width: 480px) {

    .banner_hm .banner-left {
        display: none;
    }

    .banner_hm .banner-left img {
        width: 170px;
    }

    .banner_hm .banner-right {
        min-height: 220px;
        padding-top: 100px;
    }

    .banner_hm .person {
        left: 6%;
        height: 195px;
        max-width: 45%;
    }

    .banner_hm .right-content {
        right: 10px;
        top: 68px;
        max-width: 52%;
    }
    .banner_hm .bottom-strip {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .banner_hm .feature {
        border-right: none;
    }

    .banner_hm .feature:nth-child(2n) {
        border-right: none;
    }

    .banner_hm .subscribe {
        grid-column: span 1;
    }
}
@media (min-width:768px) and (max-width:1100px) {
    .banner_hm .right-content p {
        font-size: 23px;
        line-height: 1.5;
    }
        .banner_hm .right-content h3 {
        font-size: 31px;
        margin-bottom: 6px;
    }
        .banner_hm .badge p {
        font-size: 16px;
        line-height: 1.4;
    }
        .banner_hm .feature h4 {
        font-size: 13px;
    }
        .banner_hm .feature p {
        font-size: 15px;
    }
}