/* HERO SECTION */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #f8f9fa;
    overflow: hidden;
    /* margin-top:100px ; */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content1 {
    position: absolute;
    top: 40%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    text-align: left;
    color: #ffffff;
    max-width: 500px;
    width: 90%;
}

.hero-content1 h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.btn-contact {
    margin-top: 70px;
    float: left;
}

@media (max-width: 768px) {
    .hero-content1 h1 {
        font-size: 1.8rem;
    }

    .btn-contact {
        padding: 8px 24px;
        float: none !important;
    }

    .hero-content1 {
        left: 50% !important;
        bottom: 20%;
        /* transform: translate(-50%, -50%); */
    }
}

/* HEADING SECTION */
.highlight-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
}

.highlight-line {
    display: inline;
    background: linear-gradient(to top, red 40%, transparent 40%);
}

.highlight-line-1 {
    /* display: inline; */
    background: linear-gradient(to top, red 30%, transparent 30%);
}

/* .heading-section p {
    width: 800px;
} */

@media (max-width: 768px) {
    .highlight-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }
    .btn-contact {
        margin-top: 20px;
    }
    .hero-content1 {
        text-align: center !important;
    }
    .brdr-bottom::after {
        bottom: 27px !important;
    }
    .InsightsBorder .brdr-bottom::after {
        bottom: 0px !important;
    }
}

/* TABS SECTION */
.filter-title {
    background: #f1f1f1;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
    color: #d5102d;
}

.filter-options input[type="radio"] {
    margin-right: 8px;
}

.card-title {
    color: #d5102d;
    font-weight: 500;
}

.card-text {
    font-size: 14px;
    color: #666;
}

.read-more {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.arrow-up::after {
    content: "▲";
    font-size: 12px;
}

.arrow-down::after {
    content: "▼";
    font-size: 12px;
}

.article-card {
    border: none;
}

.article-img {
    /*height: 160px;*/
    object-fit: cover;
}

.filter-container {
    position: sticky;
    top: 20px;
}
