/* ===== 首页样式 ===== */

/* Hero区域背景图 */
.hero2-bg {
    background-image: url(/template/default/images/hero2-bg.jpg);
}

/* Hero 区容器：增加左右边距，避免内容贴边 */
.hero2 .container {
    padding-left: 40px;
    padding-right: 40px;
}

/* Hero 区图片：基础适配，防止溢出 */
.hero2 .main-images .image img {
    max-width: 100%;

    object-fit: contain;
    display: block;
}
body.body .about2 .company-intro-content p {
    color: #6C757D;
    font-size: 16px;
    text-indent: 2em;
    margin-top: 16px;
}

/* Logo图标统一大小 */
.logo-icon {
    width: 24px;
    height: 24px;
}

/* About区域样式 */
.about2-custom {
    padding-bottom: 0;

}

/* 段落缩进 */
.text-indent-2em {
    text-indent: 2em;
}

/* 按钮容器上边距 */
.about-button-wrapper {
    margin-top: 30px;
}

/* 关于我们区块：与关于我们页介绍区一致的字号与间距 */
body.body .about2 .heading2 h2 {
    font-size: 29px !important;
    color: #10002B;
    font-weight: bold;
    margin: 0 0 0 0 !important;
    line-height: 1.3;
}
body.body .about2 .heading2 .span1 {
    font-size: 18.5px !important;
    color: #6C757D;
    margin-bottom: 10px !important;
}
body.body .about2 .company-intro-content {
    margin-top: 28px !important;
    color: #6C757D;
    font-size: 14px !important;
    text-align: justify;
    line-height: 1.6;
}


/* Service区域样式 */
.service2-custom {
    padding: 50px 0 !important;
    background-color: #F6F8FA;
}

/* 产品卡片容器 */
.service2-single-slider-custom {
    margin: 0;
}

/* 产品图片容器 */
.product-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

/* 产品图片 */
.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* 产品标题区域 */
.product-heading-area {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 20px;
}

/* 产品箭头链接 */
.product-arrow-link {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* 产品标题 */
.product-title {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* CTA区域背景色 */
.cta2-bg {
    background-color: #2f318b;
}

/* 公司简介内容 - 只显示前三个段落 */
.company-intro-content p:nth-child(n+4) {
    display: none;
}

/* 首页：仅保证横向不溢出（纵向滚动交给浏览器统一处理，避免出现嵌套滚动条） */


/* ===== 首页响应式适配（补充断点）===== */

/* 1200-1550px 修复顶部黑条：body.body 的 z-index:-33 会导致顶部空隙露出底层，覆盖为白底并恢复层叠 */
@media (min-width: 1200px) and (max-width: 1550px) {
    body.body {
        background-color: #fff !important;
        z-index: auto !important;
    }
    html {
        background-color: #fff !important;
    }

}
@media (max-width: 1450px) {
    .container{
        margin-bottom: 30px;
    }
}


/* Hero：高度/间距适配（main.css 里 hero2 固定 min-height:960px） */
@media (max-width: 1450px) {
    .hero2 .main-images .image img {
        max-height: 420px;
    }
}

@media (max-width: 991.98px) {
    .hero2 .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero2 {
        min-height: auto;
        padding: 110px 0 60px;
    }
    .hero2 .main-images {
        margin-top: 32px;
    }
    .hero2 .main-images .image img {
        max-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .hero2 .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero2 {
        padding: 90px 0 48px;
    }
    .hero2 .main-images {
        margin-top: 24px;
        margin-bottom: 40px;
    }
    .hero2 .main-images .image img {
        max-height: 300px;
    }
    .hero2 .main-heading {
        padding-top: 0; /* 由 hero2 的 padding 承担顶部间距 */
    }
    .hero2 .buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .hero2 .buttons .ml-16 {
        margin-left: 0 !important;
    }
}

/* Service 产品卡：图片高度在小屏缩短，避免一屏塞不下 */
@media (max-width: 991.98px) {
    .product-image-container {
        height: 320px;
    }

}

@media (max-width: 767.98px) {
    .product-image-container {
        height: 240px;
    }
    .product-heading-area {
        bottom: 14px;
        padding: 14px;
    }
    .product-arrow-link {
        top: 14px;
        right: 14px;
    }
}

/* 约 575px 单列时：图片略增高，避免卡片过扁、变形感强 */
@media (max-width: 575.98px) {
    .product-image-container {
        height: 280px;
    }
    .product-heading-area {
        bottom: 16px;
        padding: 16px;
    }
    .product-arrow-link {
        top: 16px;
        right: 16px;
    }
    .service2 .row.mt-60 > [class*="col-"] {
        margin-bottom: 20px;
    }
    .service2 .row.mt-60 > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 479.98px) {
    .product-image-container {
        height: 200px;
    }
}

/* ===== 首页各屏幕文字大小与间距适配 ===== */

/* 中等屏 992-1199 */
@media (max-width: 1450px) {
    body.body .hero2 .main-heading {
        margin-top: 48px !important;
    }
    body.body .hero2 .main-heading h1 {
        font-size: 38px !important;
        line-height: 1.35 !important;
    }
    body.body .hero2 .main-heading p {
        margin-top: 18px !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    body.body .hero2 .main-heading .span1 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    body.body .hero2 .buttons {
        margin-top: 22px !important;
    }
    body.body .heading2 h2,
    body.body .cta2 h2 {
        font-size: 32px !important;
        line-height: 1.4 !important;
    }
    body.body .heading2 .span1,
    body.body .service2 .span1,
    body.body .face2 .span1,
    body.body .blog2 .span1 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    body.body .about2 .heading2 .span1 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    body.body .about2 .heading2 h2 {
        font-size: 26px !important;
    }
    body.body .about2 .company-intro-content,
    body.body .cta2 p,
    body.body .face2 .heading2 p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    body.body .about2 .company-intro-content {
        margin-top: 28px !important;
        font-size: 14px !important;
    }
    body.body .about2 .company-intro-content p {
        font-size: 14px;
    }
    body.body .about-button-wrapper {
        margin-top: 22px !important;
    }
    body.body .service2 .row.mt-60 {
        margin-top: 40px !important;
    }
    body.body .product-heading-area h4,
    body.body .product-heading-area .learn,
    body.body .product-title a {
        font-size: 16px !important;
    }
    body.body .face2 .heading2.pl-30 h4,
    body.body .circle-progress-box2 .heading2 h4 {
        font-size: 18px !important;
        margin-top: 18px !important;
    }
    body.body .face2 .heading2.pl-30 p,
    body.body .circle-progress-box2 .heading2 p {
        margin-top: 12px !important;
        font-size: 15px !important;
    }
    body.body .blog2 .row.mt-30 {
        margin-top: 24px !important;
    }
    body.body .blog2-box {
        margin-top: 24px !important;
    }
    body.body .blog2-box .heading2 h4 a {
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin-top: 12px !important;
    }
    body.body .blog2-box .tag2,
    body.body .blog2-box .author-area1 a {
        font-size: 14px !important;
    }
    body.body .cta2.pt-60 {
        padding-top: 44px !important;
    }
    body.body .cta2.pb-60 {
        padding-bottom: 44px !important;
    }
    body.body .cta2 p {
        margin-top: 14px !important;
    }
    body.body .cta2 .mt-30 {
        margin-top: 22px !important;
    }
    body.body .sp {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* 平板 768-991 */
@media (max-width: 991.98px) {
    body.body .hero2 .main-heading h1 {
        font-size: 32px !important;
        line-height: 1.35 !important;
    }
    body.body .hero2 .main-heading p {
        font-size: 15px !important;
        margin-top: 16px !important;
    }
    body.body .hero2 .main-heading .span1 {
        font-size: 15px !important;
    }
    body.body .hero2 .buttons {
        margin-top: 20px !important;
    }
    body.body .heading2 h2,
    body.body .cta2 h2 {
        font-size: 28px !important;
        line-height: 1.4 !important;
    }
    body.body .heading2 .span1,
    body.body .about2 .span1,
    body.body .service2 .span1,
    body.body .face2 .span1,
    body.body .blog2 .span1 {
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }
    body.body .about2 .company-intro-content,
    body.body .cta2 p,
    body.body .face2 .heading2 p {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }
    body.body .about2 .company-intro-content {
        margin-top: 10px !important;
    }
    body.body .about-button-wrapper {
        margin-top: 18px !important;
    }
    body.body .service2 .row.mt-60 {
        margin-top: 32px !important;
    }
    body.body .product-heading-area h4,
    body.body .product-heading-area .learn,
    body.body .product-title a {
        font-size: 15px !important;
    }
    body.body .face2 .heading2.pl-30 {
        padding-left: 20px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    body.body .face2 .heading2.pl-30 h4,
    body.body .circle-progress-box2 .heading2 h4 {
        font-size: 17px !important;
        margin-top: 16px !important;
    }
    body.body .face2 .heading2.pl-30 p,
    body.body .circle-progress-box2 .heading2 p {
        margin-top: 10px !important;
        font-size: 14px !important;
    }
    body.body .blog2 .row.mt-30 {
        margin-top: 20px !important;
    }
    body.body .blog2-box {
        margin-top: 20px !important;
    }
    body.body .blog2-box .heading2 h4 a {
        font-size: 17px !important;
        margin-top: 10px !important;
    }
    body.body .blog2-box .tag2,
    body.body .blog2-box .author-area1 a {
        font-size: 13px !important;
    }
    body.body .blog2-box .author-area1.mb-20 {
        margin-bottom: 14px !important;
    }
    body.body .cta2.pt-60 {
        padding-top: 36px !important;
    }
    body.body .cta2.pb-60 {
        padding-bottom: 36px !important;
    }
    body.body .cta2 p {
        margin-top: 12px !important;
    }
    body.body .cta2 .mt-30 {
        margin-top: 18px !important;
    }
    body.body .sp {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
}

/* 手机横屏/大手机 480-767 */
@media (max-width: 767.98px) {
    body.body .hero2 .main-heading {
        margin-top: 32px !important;
    }
    body.body .hero2 .main-heading h1 {
        font-size: 26px !important;
        line-height: 1.4 !important;
    }
    body.body .hero2 .main-heading p {
        font-size: 14px !important;
        line-height: 1.75 !important;
        margin-top: 14px !important;
    }
    body.body .hero2 .main-heading .span1 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    body.body .hero2 .buttons {
        margin-top: 16px !important;
        gap: 10px !important;
    }
    body.body .heading2 h2,
    body.body .cta2 h2 {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }
    body.body .heading2 .span1,
    body.body .service2 .span1,
    body.body .face2 .span1,
    body.body .blog2 .span1 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    body.body .about2 .heading2 .span1 {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    body.body .about2 .heading2 h2 {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
    body.body .about2 .company-intro-content,
    body.body .cta2 p,
    body.body .face2 .heading2 p {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }
    body.body .about2 .company-intro-content {
        margin-top: 20px !important;
        font-size: 14px !important;
        line-height: 1.8 !important;
    }
    body.body .about2 .company-intro-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    body.body .about2 h2.text-44 {
        font-size: 22px !important;
    }
    body.body .about-button-wrapper {
        margin-top: 20px !important;
    }
    body.body .service2 .row.mt-60 {
        margin-top: 28px !important;
    }
    body.body .product-title {
        margin-top: 14px !important;
        margin-bottom: 8px !important;
    }
    body.body .product-heading-area h4,
    body.body .product-heading-area .learn,
    body.body .product-title a {
        font-size: 14px !important;
    }
    body.body .product-heading-area {
        padding: 14px !important;
    }
    body.body .face2 .heading2.pl-30 {
        padding-left: 0 !important;
    }
    body.body .face2 .heading2.pl-30 h4,
    body.body .circle-progress-box2 .heading2 h4 {
        font-size: 16px !important;
        margin-top: 14px !important;
    }
    body.body .face2 .heading2.pl-30 p,
    body.body .circle-progress-box2 .heading2 p {
        margin-top: 8px !important;
        font-size: 13px !important;
    }
    body.body .blog2 .row.mt-30 {
        margin-top: 18px !important;
    }
    body.body .blog2-box {
        margin-top: 18px !important;
    }
    body.body .blog2-box .heading2 h4 a {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-top: 8px !important;
    }
    body.body .blog2-box .tag2,
    body.body .blog2-box .author-area1 a {
        font-size: 13px !important;
    }
    body.body .blog2-box .author-area1.mb-20 {
        margin-bottom: 12px !important;
    }
    body.body .cta2.pt-60 {
        padding-top: 32px !important;
    }
    body.body .cta2.pb-60 {
        padding-bottom: 32px !important;
    }
    body.body .cta2 h2 {
        font-size: 22px !important;
    }
    body.body .cta2 p {
        margin-top: 10px !important;
    }
    body.body .cta2 .mt-30 {
        margin-top: 16px !important;
    }
    body.body .sp {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
}

/* ===== 我们的优势：圆形进度条与按钮响应式 ===== */

/* 圆形与文字间距（所有断点统一有间距），右侧文字与圆垂直居中 */
.circle-progress-box2 .progresbar {
    gap: 20px;
    align-items: center;
}
.circle-progress-box2 .heading2.pl-30 {
    padding-left: 0; /* 用上面的 gap 控制间距 */
}

/* 中等屏 992-1199：圆略缩小，间距适中，右侧文字垂直居中 */
@media (max-width: 1450px) {
    .circle-progress-box2 .progresbar {
        margin-top: 36px;
        gap: 18px;
        align-items: center;
    }
    .circle-progress-box2 .heading2.pl-30 {
        align-self: center;
        text-align: left;
    }
    .circle-progress-box2 .progressbar {
        position: relative;
        width: 130px;
        height: 130px;
        flex-shrink: 0;
    }
    .circle-progress-box2 .progressbar .circle {
        width: 150px;
        height: 150px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin: 0;
        transform: translate(-50%, -50%) scale(0.867);
        transform-origin: center center;
    }
    .circle-progress-box2 .progressbar .circle div {
        font-size: 22px !important;
        margin-top: 12px;
    }
}

/* 平板 768-991：与关于我们页小屏一致，单列、项间距、文字左对齐 */
@media (max-width: 991.98px) {
    .face2 .face2-advantages-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .face2 .face2-advantages-row > [class*="col-"] {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 0;
    }
    .circle-progress-box2 .progresbar {
        margin-top: 28px;
        gap: 16px;
        align-items: center;
    }
    .circle-progress-box2 .heading2.pl-30 {
        align-self: center;
        text-align: left;
    }
    .circle-progress-box2 .heading2.pl-30 h4 a,
    .circle-progress-box2 .heading2 h4 a {
        margin-top: 0;
    }
    .circle-progress-box2 .progressbar {
        position: relative;
        width: 110px;
        height: 110px;
    }
    .circle-progress-box2 .progressbar .circle {
        transform: translate(-50%, -50%) scale(0.733);
    }
    .circle-progress-box2 .progressbar .circle div {
        font-size: 20px !important;
        margin-top: 10px;
    }
}

/* 手机 480-767：与关于我们页一致，单列+间距+文字左对齐 */
@media (max-width: 767.98px) {
    .face2 .face2-advantages-row {
        gap: 28px;
    }
    .circle-progress-box2 .progresbar {
        margin-top: 24px;
        gap: 14px;
        align-items: center;
    }
    .circle-progress-box2 .heading2.pl-30 {
        align-self: center;
        text-align: left;
    }
    .circle-progress-box2 .progressbar {
        position: relative;
        width: 90px;
        height: 90px;
    }
    .circle-progress-box2 .progressbar .circle {
        transform: translate(-50%, -50%) scale(0.6);
    }
    .circle-progress-box2 .progressbar .circle div {
        font-size: 18px !important;
        margin-top: 8px;
    }
}

/* 小屏手机 <480：与关于我们页一致 */
@media (max-width: 479.98px) {
    .face2 .face2-advantages-row {
        gap: 24px;
    }
    .circle-progress-box2 .progresbar {
        margin-top: 20px;
        gap: 12px;
        align-items: center;
    }
    .circle-progress-box2 .heading2.pl-30 {
        align-self: center;
        text-align: left;
    }
    .circle-progress-box2 .progressbar {
        position: relative;
        width: 80px;
        height: 80px;
    }
    .circle-progress-box2 .progressbar .circle {
        transform: translate(-50%, -50%) scale(0.533);
    }
    .circle-progress-box2 .progressbar .circle div {
        font-size: 20px !important;
        margin-top: 12px;
    }
}

/* 首页按钮响应式缩小 */
@media (max-width: 1450px) {
    body.body .hero2 .theme-btn4,
    body.body .hero2 .theme-btn5,
    body.body .about2 .theme-btn4,
    body.body .service2 .theme-btn4,
    body.body .face2 .theme-btn4,
    body.body .blog2 .theme-btn4,
    body.body .cta2 .theme-btn6 {
        padding: 16px 20px !important;
        font-size: 15px !important;
    }
}
@media (max-width: 991.98px) {
    body.body .hero2 .theme-btn4,
    body.body .hero2 .theme-btn5,
    body.body .about2 .theme-btn4,
    body.body .service2 .theme-btn4,
    body.body .face2 .theme-btn4,
    body.body .blog2 .theme-btn4,
    body.body .cta2 .theme-btn6 {
        padding: 14px 18px !important;
        font-size: 14px !important;
    }
}
@media (max-width: 767.98px) {
    body.body .hero2 .theme-btn4,
    body.body .hero2 .theme-btn5,
    body.body .about2 .theme-btn4,
    body.body .service2 .theme-btn4,
    body.body .face2 .theme-btn4,
    body.body .blog2 .theme-btn4,
    body.body .cta2 .theme-btn6 {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
}
@media (max-width: 479.98px) {
    body.body .hero2 .theme-btn4,
    body.body .hero2 .theme-btn5,
    body.body .about2 .theme-btn4,
    body.body .service2 .theme-btn4,
    body.body .face2 .theme-btn4,
    body.body .blog2 .theme-btn4,
    body.body .cta2 .theme-btn6 {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }
}

/* 小屏手机 <480 */
@media (max-width: 479.98px) {
    body.body .hero2 .main-heading {
        margin-top: 24px !important;
    }
    body.body .hero2 .main-heading h1 {
        font-size: 22px !important;
        line-height: 1.45 !important;
    }
    body.body .hero2 .main-heading p {
        font-size: 13px !important;
        line-height: 1.75 !important;
        margin-top: 12px !important;
    }
    body.body .hero2 .main-heading .span1 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    body.body .hero2 .buttons {
        margin-top: 14px !important;
        gap: 8px !important;
    }
    .hero2 .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero2 .main-images {
        margin-top: 20px;
        margin-bottom: 32px;
    }
    .hero2 .main-images .image img {
        max-height: 260px;
    }
    body.body .heading2 h2,
    body.body .cta2 h2 {
        font-size: 20px !important;
        line-height: 1.45 !important;
    }
    body.body .heading2 .span1,
    body.body .service2 .span1,
    body.body .face2 .span1,
    body.body .blog2 .span1 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    body.body .about2 .heading2 .span1 {
        font-size: 11px !important;
        margin-bottom: 15px !important;
    }
    body.body .about2 .heading2 h2 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }
    body.body .about2 .company-intro-content,
    body.body .cta2 p,
    body.body .face2 .heading2 p {
        font-size: 13px !important;
        line-height: 1.75 !important;
    }
    body.body .about2 .company-intro-content {
        margin-top: 15px !important;
        font-size: 13px !important;
        line-height: 1.8 !important;
    }
    body.body .about2 .company-intro-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    body.body .about2 h2.text-44 {
        font-size: 18px !important;
    }
    body.body .about-button-wrapper {
        margin-top: 15px !important;
    }
    body.body .service2 .row.mt-60 {
        margin-top: 22px !important;
    }
    body.body .product-title {
        margin-top: 12px !important;
        margin-bottom: 6px !important;
    }
    body.body .product-heading-area h4,
    body.body .product-heading-area .learn,
    body.body .product-title a {
        font-size: 13px !important;
    }
    body.body .product-heading-area {
        padding: 12px !important;
    }
    body.body .face2 .heading2.pl-30 h4,
    body.body .circle-progress-box2 .heading2 h4 {
        font-size: 15px !important;
        margin-top: 12px !important;
    }
    body.body .face2 .heading2.pl-30 p,
    body.body .circle-progress-box2 .heading2 p {
        margin-top: 6px !important;
        font-size: 12px !important;
    }
    body.body .blog2 .row.mt-30 {
        margin-top: 16px !important;
    }
    body.body .blog2-box {
        margin-top: 16px !important;
    }
    body.body .blog2-box .heading2 h4 a {
        font-size: 15px !important;
        margin-top: 6px !important;
    }
    body.body .blog2-box .tag2,
    body.body .blog2-box .author-area1 a {
        font-size: 12px !important;
    }
    body.body .blog2-box .author-area1.mb-20 {
        margin-bottom: 10px !important;
    }
    body.body .cta2.pt-60 {
        padding-top: 28px !important;
    }
    body.body .cta2.pb-60 {
        padding-bottom: 28px !important;
    }
    body.body .cta2 h2 {
        font-size: 18px !important;
    }
    body.body .cta2 p {
        margin-top: 8px !important;
    }
    body.body .cta2 .mt-30 {
        margin-top: 14px !important;
    }
    body.body .sp {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }
}

/* 首页博客区：图片容器为正方形，图片铺满容器 */
.blog2 .blog2-box .image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.blog2 .blog2-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 首页博客区：标题最多一行，卡片高度统一 */
.blog2 .blog2-box .heading2 h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog2 .blog2-box .heading2 {
    min-height: 160px;
}
@media (max-width: 991.98px) {
    .blog2 .blog2-box .heading2 {
        min-height: 150px;
    }
}
@media (max-width: 767.98px) {
    .blog2 .blog2-box .heading2 {
        min-height: 140px;
    }
}
