.hero_section-wrapper{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0.49) 100%), url('https://res.cloudinary.com/deklnqsqn/image/upload/f_auto,q_auto:best/Untitled-1_1_suclzr.png') lightgray 50% / cover no-repeat;
    height: 233px;
    margin-top: 3.75rem;
}

.hero_section-wrapper > .container{
    height: 100%;
}

.hero_section {
    display: flex;
    height: 100%;
    align-items: center;
}

.hero_section  h1 {
  font-size: 1.5rem;
  line-height: 40px;
  font-weight: normal;
  color: var(--white);
}

/*case study section*/
.case-studies-section{
    margin: 50px 0;
}

.case-study-card {
   display: flex;
   flex-direction: column;
}

.case-study-card a > div{
   height: 165px;
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-color: var(--grey);
}

.case-study-card p{
   line-height: 24px;
    padding-bottom: 5px;
    padding-top: 10px;
}

.case-study-card span{
    font-size: 0.875rem;
    line-height: 20px;
    color: var(--text);
}

.case-studies-section{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.load_more-btn{
    background-color: var(--primary);
    color: var(--white);
    border:none;
    padding: 13px 10px;
    width: 260px;
    margin: 54px auto 105px auto;
    display: block;
    cursor: pointer;
}

/*spinner*/
.spinner{
    height: 1.2rem;
    width: 1.2rem;
    border: 2.5px solid var(--grey);
    border-top-color: var(--white);
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/*insight section*/
.featured-insight__section{
    background: #F8F8F9;
}

@media (min-width:600px) {
    .hero_section  h1 {
        font-size: 2.5rem;
        line-height: 60px;
    }
}

@media (min-width: 1250px) {
    .hero_section-wrapper {
        margin-top: 4.4rem;
    }

    .hero_section > h1 {
        font-size: 3rem;
        line-height: 80px;
    }
}
