.blog_box {
    overflow: hidden;
    margin-bottom: 30px;
}

.blog_box__img img {
    width: 100%;
    height: 314px;
    object-fit: cover;
    border-radius: 20px;
    transition: .3s ease;
}

.blog_box__content span {
    display: block;
    font-size: 14px;
    color: #231f20;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.blog_box:hover .blog_box__content h3 {
    color: var(--main-color);
    transition: .3s ease;
}

.blog_box:hover img {
    opacity: .8;
    transition: .3s ease;
}

.blog_box__content h3 {
    font-size: 28px;
    color: #231f20;
    font-weight: 500;
}

.blog_box__content p {
    color: #434343;
    margin-top: 1rem;
}

.read_btn a {
    display: block;
    margin-top: 12px;
    text-transform: uppercase;
    font-size: 15px;
    color: #231f20;
    font-weight: 600;
}

.blog_left h2 {
    font-size: 36px;
    color: #231f20;
    font-weight: 500;
}

.blog_left {
    padding-right: 3rem;
    border-right: 1px solid #ccc;
}

.blog_search h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.search_input {
    position: relative;
    margin-top: 1rem;
}

.search_input input {
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 7px;
}

.search_input button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 20px;
}

.newslatter h4 {
    max-width: 207px;
    margin-top: 3rem;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
}

.newslatter label {
    display: block;
}

.news_input input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 1rem;
    padding: 5px;
    border: 1px solid #ccc;
}

.blog_right__list h4 {
    margin-top: 3rem;
    font-size: 23px;
    color: #231f20;
    font-weight: 500;
}

.blog_right__list ul {
    margin-top: 1rem;
}

.blog_right__list ul li a:hover {
    color: var(--main-color);
    font-weight: 600;
}

.blog_right__list ul li a {
    display: inline-block;
    color: #231f20;
    margin-bottom: 12px;
}

/* news_blox */
.news_blox {
    display: flex !important;
    gap: 12px;
    align-items: center;
}

.news_blox__img img {
    width: 210px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.fresh_news {
    border-top: 1px solid #ccc;
}

.news_blox__content {
    width: 100%;
}

.news_blox__content span {
    display: block;
    color: #434343;
    font-size: 14px;
}

.news_blox__content a {
    color: #231f20;
    display: block;
    margin-top: 5px;
    font-weight: 600;
    font-size: 14px;
}

.news_blox__content a:hover {
    color: var(--main-color);
}

.fresh_news__content h3 {
    font-size: 36px;
    font-weight: 500;
}

.slick-next:before {
    content: url('../images/next.png') !important;
}

.slick-prev:before {
    content: url('../images/prev.png') !important;
}

.news_slider .slick-prev {
    left: inherit;
    right: 4%;
    top: -4rem;
}

.news_slider .slick-next {
    right: 0;
    top: -4rem;
}

@media(max-width:1200px) {
    .blog_box__img img {
        height: 250px;
    }

    .blog_box__content h3 {
        font-size: 21px;
    }
}

@media(max-width:992px) {
    .blog_left {
        padding-right: 1rem;
    }

    .newslatter h4 {
        margin-top: 2rem;
        font-size: 18px;
    }

    .blog_box__content h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }

    .blog_box__content span {
        margin: 5px 0;
    }

    .blog_right__list h4 {
        margin-top: 20px;
        font-size: 18px;
    }

    .blog_right__list ul {
        margin-top: 10px;
    }

    .blog_right__list ul li a {
        font-size: 14px;
        margin-bottom: 5px !important;

    }

    .news_slider .slick-prev {
        right: 7%;
    }

}

@media(max-width:768px) {
    .blog_left {
        padding-right: 0;
        border-right: 0;
    }

    .blog_box__content p {
        margin-top: 10px;
        font-size: 14px;
    }

    .blog_left h2,
    .fresh_news__content h3 {
        font-size: 28px;
        letter-spacing: 1px;
        font-weight: 600;
    }
    .newslatter h4{
        max-width: 100%;
    }
    .news_slider .slick-prev{
        right: 10%;
    }
}