/* hero  */

.archive-hero {
    width: 100%;
    display: flex;
    background-color: #09203d;
    color: #fff;
    justify-content: center;
    padding: 48px 16px 64px 16px;
    position: relative;
}

@media (max-width: 767px) {
    .archive-hero .hero-wrapper .hero-content h1 {
        font-size: 32px !important;
    }
}

.archive-hero .hero-wrapper {
    max-width: 900px;
    width: 100%;
}

.archive-hero .hero-wrapper .hero-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.archive-hero .hero-wrapper .hero-content h1 {
    font-size: 50px;
    font-weight: bold;
  	color: #fff;
    margin-bottom: 24px;
}

.archive-hero .hero-wrapper .hero-content p {
    max-width: 460px;
    text-align: center;
    margin-top: 0;
    width: 100%;
}

.archive-hero .flag {
    content: "";
/*     display: block; */
	display: none;
    position: absolute;
    bottom: -18px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 36px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAABIAQMAAAC+xCV0AAAABlBMVEX8jkH////q93cUAAAAAnRSTlP/AOW3MEoAAAAVSURBVHgBY6A2GAX/SSP///9PAgkAfWwf4QQtxnkAAAAASUVORK5CYII=') 0 0 no-repeat;
    background-size: auto;
    background-size: 100% auto;
    z-index: 1;
}

/* end of hero  */

.blog-grid {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .blog-grid {
        padding: 32px 16px !important;
    }
}

.blog-grid .blog-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
}

.blog-grid .blog-wrapper .inner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

@media (min-width: 577px) and (max-width: 1024px) {
    .blog-grid .blog-wrapper .inner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-grid .blog-wrapper .inner-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .blog-grid .blog-wrapper .inner-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.blog-grid .blog-wrapper .inner-grid .grid-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 1.9px 5.3px rgba(0, 0, 0, .027), 0 6.5px 17.9px rgba(0, 0, 0, .043), 0 29px 80px rgba(0, 0, 0, .07);
    display: block;
    height: 100%;
    transition: all .2s ease-in-out;
}

.blog-grid .blog-wrapper .inner-grid .grid-item:hover {
    transform: translateY(-5px);
}


.blog-grid .blog-wrapper .inner-grid .grid-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}


.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-img {
    display: flex;
    height: 226px;
    justify-content: center;
    width: 100%;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    object-fit: cover;

}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content {
    padding: 20px 20px 30px;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-categories {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-categories .category {
    border-radius: 99px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: black;
    line-height: 13px;
    background-color: #fff0c7;
    border: 0 solid #fff0c7;
    padding: 8px 20px;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-categories .category:hover {
    background-color: red;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 20px;
    color: #000;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-cta {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-cta span {
    color: #000;
    font-weight: bold;
}

.blog-grid .blog-wrapper .inner-grid .grid-item a .blog-content .blog-cta svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    transition: all .2s ease-in-out;
}

.blog-grid .blog-wrapper .inner-grid .grid-item:hover a .blog-content .blog-cta svg {
    transform: translateX(3px);
}