section.banner .left_content {
    width: 70%;
}

section.banner .right_content {
    width: 30%;
}

section.banner .left_content .content {
    min-height: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

section.banner .left_content .content {
    background-size: 100% !important;
    /* Set initial background size */
    transition: background-size 0.5s ease;
    /* Apply transition to background-size */
}

section.banner .left_content .content:hover {
    background-size: 105% !important;
    /* Change size on hover */
}

section.banner .right_content .content {
    min-height: 500px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

section.banner .content p,
section.banner .content h3 {
    color: white;
    max-width: 623px;
}


section.banner .header_content .left_content {
    max-width: 852px;
}

section.banner .header_content .search {
    max-width: 467px;
}

section.banner .header_content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(70px - 24px);
}

section.banner .header_content>div {
    width: 50%;
}

section.banner .search_input {
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #CECECE;
}

section.banner .search_input form {
    margin-bottom: 0;
}

section.banner .search_input input {
    border: none;
    background-color: transparent;
    color: black;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: 100%;
}

section.banner .search_input input:focus-visible {
    outline: none;
}

section.banner .search_input input::placeholder {
    color: #CECECE;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

section.banner .search_field {
    display: flex;
    align-items: center;
    gap: 0 16px;
    position: relative;
    right: 22px;
}


section.banner button[type="submit"] {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 186px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 13px;
    /* 100% */
    letter-spacing: 1.95px;
    text-transform: uppercase;
    border: 1px solid #CECECE;
    position: relative;
    background-color: transparent;
}

section.banner button[type="submit"]::after {
    content: "";
    width: 44px;
    height: 1px;
    border-top: 1px solid rgba(242, 170, 76, 1);
    position: absolute;
    right: calc(-44px / 2);
}

/* Remove the yellow background when autocomplete is active */
section.banner input:-webkit-autofill,
section.banner input:-webkit-autofill:hover,
section.banner input:-webkit-autofill:focus,
section.banner input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    caret-color: auto;
    /* Keep the default caret color */
}

section.banner .line_div span:last-child,
section.other_blogs .line_div span:last-child {
    color: #101820;
}






section.other_blogs .blog_column {
    width: calc(100% / 3);
}

section.other_blogs .blog_column img {
    width: 100%;
    height: 280px;
}


section.other_blogs .main_content {
    padding: 30px;
}

section.other_blogs .content {
    height: 100%;
    background-color: #101820;
}

section.other_blogs .content:hover img {
    transition: .5s ease all;
    transform: scale(1.2);
}

section.other_blogs .content .blog_image {
    overflow: hidden;
}

section.other_blogs .main_content p {
    color: white;
}

section.other_blogs .header_content {
    align-items: center;
    margin-bottom: calc(60px - 24px);
}

section.other_blogs h2 {
    margin-bottom: 0;
}

section.other_blogs .main_content p.description{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
} 

section.other_blogs .main_content h3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}


section.banner .container-fluid::after,
section.banner .container-fluid::before,
section.banner .row::after,
section.banner .row::before,
section.other_blogs .container-fluid::after,
section.other_blogs .container-fluid::before,
section.other_blogs .row::after,
section.other_blogs .row::before {
    display: none !important;
}



@media (max-width: 991px) {
    section.other_blogs .blog_column {
        width: calc(100% / 2);
    }

    section.banner .header_content>div,
    section.banner .header_content .search,
    section.banner .header_content .left_content,
    section.banner .right_content,
    section.banner .left_content {
        width: 100%;
        max-width: 100%;
    }

    section.banner .header_content {
        flex-direction: column;
        gap: 30px 0;
        align-items: center;
    }

    section.banner .line_div {
        justify-content: center;
    }

    section.banner .search_field {
        right: 0;
        max-width: calc(100% - 22px);
    }
}

@media (max-width: 767px) {
    section.other_blogs .blog_column {
        width: 100%;
    }
}