section.hero-section .hero-title h6 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 600;
    text-shadow: 2px 2px 3.5px;
}
@media only screen and (max-width: 958px) {
    section.hero-section .hero-title h6 {
        font-size: 40px;
        text-transform: capitalize;
        font-weight: 600;
        text-shadow: 2px 2px 3.5px;
    }
}
@media only screen and (max-width: 600px) {
    section.hero-section .hero-title h6 {
        font-size: 25px;
        text-transform: capitalize;
        font-weight: 600;
        text-shadow: 2px 2px 3.5px;
    }
}
#blog-title{
    margin-top: 20px;
}
#blog-title h3 {
    color: #013674;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 20px;
    position: relative;
}
#blog-title h3::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #013674;
    bottom: -4px;
    border-radius: 10px;
}

section .blog-containers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 40px;
}
@media only screen and (max-width: 1000px) {
    section .blog-containers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 764px) {
    section .blog-containers {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        margin-bottom: 40px;
    }
}
section .blog-containers .card img {
    width: 100%;
}
section .blog-containers .card .card-content,
section .blog-containers .card .more-button {
    padding: 16px;
}
section .blog-containers .card .more-button a{
    text-decoration: none;
}