.featured-section {
    padding: 80px 20px;
    width: 100%;
}

.feature-box h4 {
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: -0.7px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.featured-section .container {
  
    width: 100%;
    padding: 0;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.featured-section .feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 45px 30px 30px; */
    flex: 1 0 0;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.featured-section .feature-box.time-off {
    animation-delay: 300ms;
}

.featured-section .feature-box.making-changes {
    animation-delay: 600ms;
}

.featured-section .feature-box.resources {
    animation-delay: 900ms;
}

.featured-section .feature-box.new-to-relias {
    animation-delay: 1200ms;
}

.featured-section .feature-box.new-in-2025 {
    animation-delay: 1500ms;
}

.featured-section .feature-box p {
    color: #6ba539;
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: -0.7px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: "Open Sans", Arial, sans-serif;
}

.featured-section .feature-box.time-off p {
    color: #6ba539;
}

.featured-section .feature-box.making-changes p {
    color: #00a499;
}

.featured-section .feature-box.resources p {
    color: #5b6770;
}

.featured-section .feature-box.new-to-relias p {
    color: #f2a900;
}

.featured-section .feature-box img {
    margin: 0px 15px 10px;
/*     width: 45px; */
    height: 45px;
}

.featured-section .feature-box .read-more {
    color: #6ba539;
    line-height: 24px;
    margin: 0 0 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.featured-section .feature-box .read-more:hover{
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .featured-section .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 0px;
    }

    .featured-section .feature-box .read-more {
        margin: 0;
    }
}

@keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  