@font-face {
  font-family: 'Avenir';
  src: url('../fonts/fonts/AvenirLTStd-Book.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/fonts/AvenirLTStd-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/fonts/AvenirLTStd-Roman.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/fonts/AvenirLTStd-Medium.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/fonts/AvenirLTStd-Heavy.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir';
  src: url('../fonts/fonts/AvenirLTStd-Black.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
body {
  font-family: 'Avenir', sans-serif;
  font-weight: 400; /* Book */
}



/*Featured Articles start*/
section.featured_articles {
    background: #F7FAFC;
    padding-block: 88px;
}
section.featured_articles h1 {
    color: #000;
    text-align: center;
    font-family: Avenir;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.96px;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 64px;
}
section.featured_articles h1:before {
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 75px;
    height: 3px;
    background: #5849D0;
    bottom: 0;
}
.article_item {
    border-radius: 8px;
    background: var(--White, #FFF);
    padding: 16px;
    height: 100%;
}
.article_item h3 {
    color: var(--Text-Grey-700, #344054);
    font-family: Avenir;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    height: 52px;
    overflow: hidden;
    margin-bottom: 8px;
    margin-top: 16px;
}
.date_article {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    align-self: stretch;
    margin-bottom: 16px;
}
.date_article span {
    color: var(--Text-Grey-500, #5D667B);
    font-family: Avenir;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}
.article_item > p {
    color: var(--Text-Grey-500, #5D667B);
    font-family: Avenir;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.view_all {
    text-align: center;
    margin-top: 40px;
}
.view_all .btn-view {
    padding: 10px 18px;
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
}

/*Featured Articles End*/

@media (max-width: 767px) {
   
    section.featured_articles {
        padding-block: 32px;
    }
    
    
}