body {
    overflow-x: hidden;
}

.header {
    box-shadow: none;
    background-color: transparent;
}

.section-one {
    width: 100vw;
    height: calc(400px - var(--header-height));
}

.section-one .section-one-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--header-height) 0 0;
    width: 100vw;
    height: 400px;
    overflow: hidden;
}

.section-one .blog-background {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.section-one .blog-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.85;
    background-color: #DDD1F1;
    height: 100%;
    width: 100%;
}

.search-container {
    position: relative;
    padding-top: 30px;
}

.form-group input.search-input {
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    color: rgba(31, 41, 51, 0.50);
    max-width: 100%;
    width: 660px;
    border-radius: 30px;
    padding: 15px 60px 15px 20px;
}

.blog-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.blogs-grid,
.blog-results {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 20px;
}

.blogs-grid.active,
.blog-results.active {
    display: grid;
}

.blog {
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    width: 100%;
}

.blog-image {
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    width: 100%;
}

.blog-date {
    color: #8247FF;
    font-family: 'Montserrat-Bold';
    font-size: 16px;
    border-radius: 5px;
    background: #DDD1F1;
    padding: 5px;
    width: fit-content;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 24px;
    color: rgba(31, 41, 51, 0.80);
    margin-bottom: 15px;

}

.blog-category {
    color: rgba(0, 0, 0, 0.30);
    font-family: "OpenSans-SemiBold";
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-content {
    margin-bottom: 15px;
}

.blog-link {
    width: fit-content;
    border-color: #1F2933;
    color: #1F2933 !important;
    font-size: 18px;
    background-color: transparent;
    padding: 15px 30px;
}

.blog-link:hover {
    background-color: #1F2933;
    color: #fff !important;
}

.blog-title a {
    color: #1F2933;
}

@media screen and (max-width: 1080px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }   
}