.header-drop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-drop h2 {
    color: #000;
}

.grid {
    display: grid;
    height: 100%;
}

.grid .blog_card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.grid .blog_card img,
.grid .blog_card h3,
.grid .blog_card p {
    transition: .5s;
}

.grid .blog_card:hover h3,
.grid .blog_card:hover p {
    color: #072B61;
}

.grid .blog_card p {
    color: #000000;
}

.grid .blog_card h3 {
    letter-spacing: 0;
    color: #000000;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    min-height: 33px;
    font-size: 25px;
    line-height: normal;
}

.grid .blog_card .image {
    position: relative;
    overflow: hidden;
    max-height: 220px;
    height: 100%;
    margin-bottom: 30px;
    border-radius: 4px;
}

.grid .blog_card img {
    width: 100%;
    object-fit: cover;
    max-height: 220px;
    min-height: 220px;
    height: 100%;
}

.grid .blog_card:hover img {
    transform: scale(1.1);
}

.grid .blog_card .category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.grid .blog_card .category p {
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 12px !important;
}

.grid .blog_card .category p:first-of-type {
    font-weight: 600;
}

.grid .blog_card p.details {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    margin-bottom: 20px;
}

.grid .blog_card p.read-more {
    font-size: 15px;
    font-weight: 700;
    line-height: 17.6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FF850D;
    transition: .5s;
}

.grid .blog_card:hover p.read-more {
    gap: 13px;
}

.grid .blog_card p.read-more svg {
    max-height: 14.54px;
}

.text-align {
    text-align: center;
}

button#loadmore {
    border: white;
    background: white !important;
    color: #072B61;
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    margin: 50px auto auto;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

@media (min-width: 1199px) {
    .grid {
        gap: 45px;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 1198px) {
    .grid {
        gap: 30px;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .grid .blog_card h3 {
        line-height: normal;
        font-size: 25px;
    }

    .header-drop h2 {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .grid {
        grid-template-rows: unset;
        grid-template-columns: unset;
        gap: 50px;
    }

    .header-drop {
        align-items: stretch;
        justify-content: space-between;
        flex-direction: column;
    }

    .header-drop h2 {
        font-size: 40px;
    }
}