/* New Industries Styles */
.home-ind-new .grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: stretch;
}

.home-ind-new .left_part {
    border-radius: 14px;    
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    /* align-items: flex-end; */
    background: linear-gradient(150deg, #1B3455, #0B1B33);
    background: linear-gradient(112deg, #0E2038 0%, #0A1729 48%, #060F1D 100%);
    color: var(--white);
    padding: 34px;
    z-index: 0;
}

.home-ind-new .left_part::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 11px);
    z-index: -1;
    content: '';
    position: absolute;
    inset: 0;
    /* z-index: 1; */
    pointer-events: none;
    background-image: repeating-linear-gradient(-52deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 14px);
    -webkit-mask-image: linear-gradient(115deg, #000 0%, rgba(0, 0, 0, .3) 58%, transparent 92%);
    mask-image: linear-gradient(115deg, #000 0%, rgba(0, 0, 0, .3) 58%, transparent 92%);
    opacity: 1;
    width: 100%;
    height: 100%;
}

.home-ind-new .left_part .img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 5;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.home-ind-new .left_part .img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-ind-new .left_part {
    flex-direction: column;
}

.home-ind-new .content_wrapper {
    position: relative;
    z-index: 2;
    /* padding: 34px; */
}

.home-ind-new .content_wrapper .badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--new-orange);
    border: 1px solid rgba(244, 88, 28, .4);
    border-radius: 100px;
    padding: 6px 13px;
    margin-bottom: 16px;
}

.home-ind-new .content_wrapper .badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--new-orange);
    border-radius: 50%;
    /* background-color: #f4581c14; */
    backdrop-filter: blur(11px);
    margin-top: -2px;
}

.home-ind-new .content_wrapper .h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.28;
    margin: 0 0 12px;
    max-width: 530px;
}

.home-ind-new .content_wrapper .h3 em {
    font-style: normal;
    color: var(--new-orange);
    font-weight: 700;
}

.home-ind-new .content_wrapper .desc {
    color: var(--bodyTextLight);
    opacity: 0.8;
    /* margin: 0 0 20px; */
    max-width: 44ch;
    max-width: 530px;
}

/* 
.home-ind-new .content_wrapper .feat_list {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--navy-line);
    padding-top: 18px;
}

.home-ind-new .content_wrapper .feat_list .feat_item {
    padding-right: 26px;
    margin-right: 26px;
    border-right: 1px solid var(--navy-line);
}

.home-ind-new .content_wrapper .feat_list .feat_item b {
    display: block;
    font-family: var(--familySeconday);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.home-ind-new .content_wrapper .feat_list .feat_item span {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #66748A;
}

.home-ind-new .content_wrapper .feat_list .feat_item:last-child {
    border-right: 0px;
} */

.home-ind-new .right_part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-content: start;
}

.home-ind-new .industry_div {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .18s, transform .18s;
    background: var(--white);
    color: var(--bodyTextgray);
}

.home-ind-new .industry_div:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* .home-ind-new .industry_div img {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: contain;
} */

.home-ind-new .industry_div .h3 {
    font-family: var(--familySeconday);
    letter-spacing: -.02em;
}

.home-ind-new .industry_div span {
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 1.5;
    max-width: 81%;
    opacity: 0.8;
}

@media screen and (max-width:2160px) {}

@media screen and (max-width:1560px) {
    .home-ind-new .left_part .img-wrapper {
        aspect-ratio: 16 / 8;
    }

    .home-ind-new .grid {
        gap: 30px;
    }

    .home-ind-new .industry_div span {
        font-size: 14px;
    }

    /* .home-ind-new .industry_div img {
        width: 40px;
        height: 40px;
    } */

    .home-ind-new .left_part {
        padding: 24px;
    }

    .home-ind-new .content_wrapper .h3 {
        font-size: 26px;
    }
}

@media screen and (max-width:1366px) {
    .home-ind-new .industry_div span {
        max-width: 100%;
    }
}

@media screen and (max-width:1199px) {}

@media screen and (max-width:991px) {
    .home-ind-new .grid {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width:767px) {
    .home-ind-new .right_part {
        grid-template-columns: repeat(2, 1fr);
    }
}