.about_us {
    display: flex;
    gap: 30px;
}
.about_us .img_rea {
    width: 100%;
    max-width: 576px;
    height: 679px;
    flex-shrink: 0;
}
.about_us .img_rea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_us .text_main_area {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background-color: #ECE9E5;
    gap: 20px;
}
.about_us .text_main_area .title_text {
    font: 700 24px/1.2 'Montserrat', sans-serif;
}
.about_us .text_main_area .text_1 {
    font: 500 12px/1.2 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.about_us .text_main_area .text_2 {
    font: 300 12px/1.2 'Montserrat', sans-serif;
}
.about_us .text_main_area .items_area {
    display: flex;
    gap: 80px;
}
.about_us .text_main_area .items_area .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about_us .text_main_area .items_area .item .item_title {
    font: 700 12px/1.2 'Montserrat', sans-serif;
    color: #BB9255;
}
.about_us .text_main_area .items_area .item .item_main {
    font: 600 20px/1.2 'Montserrat', sans-serif;
}
@media (max-width: 1200px) {
    .about_us {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .about_us {
        padding: 0;
    }

    .about_us .text_main_area {
        text-align: center;
        gap: 12px;
    }

    .about_us .text_main_area .items_area {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about_us .text_main_area .title_text {
        text-align: center;
    }

    .about_us .img_rea {
        display: none;
    }
}
@media (max-width: 600px) {
    .about_us .text_main_area {
        padding: 32px 15px;
    }
}

.blog_2 {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.blog_2 .title-area {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0 0;
    margin-left: auto;
    position: relative;
    font-size: 42px;
    text-transform: uppercase;
    color: #414243;
    gap: 20px;
}
.blog_2 .title-area .title-section {
    color: #414243;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 90%;
    position: relative;
    text-shadow:
        6px 0 #F1F0EF,
        -6px 0 #F1F0EF,
        0 6px #F1F0EF,
        0 -6px #F1F0EF,
        6px 6px #F1F0EF,
        -6px -6px #F1F0EF,
        -6px 6px #F1F0EF,
        6px -6px #F1F0EF,
        0px 8px 8px rgba(0, 0, 0, 0.25);
}
.blog_2 .title-area::after {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: #BB9255;
    top: 0;
    left: 0;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.blog_2 .title-area .button-go {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 196px;
    min-width: 196px;
    height: 40px;
    background-color: #BB9255;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
}
.blog_2 .title-area .button-go:hover {
    background-color: #000000;
}
.blog_2 .items-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.blog_2 .articles_area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.blog_2 .articles_area .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(33% - 11px);
}
.blog_2 .articles_area .item .img_area {
    width: 100%;
    height: 269px;
}
.blog_2 .articles_area .item .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_2 .articles_area .item .title_item {
    font: 800 20px/1.4 'Montserrat', sans-serif;
    color: #000000;
}
.blog_2 .articles_area .item .text_item {
    font: 300 14px/1.4 'Montserrat', sans-serif;
    color: #000000;
}
.blog_2 .articles_area .item .button_url {
    font: 600 16px/1.4 'Montserrat', sans-serif;
    color: #BB9255;
    text-decoration: underline;
}
.blog_2 .articles_area .item .button_url:hover {
    color: #000000;
}
@media (max-width: 950px) {
    .blog_2 .articles_area .item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .blog_2 .title-area {
        flex-direction: column;
        align-items: center;

    }

    .blog_2 .title-area .title-section {
        line-height: 120%;
        font-size: 30px;
        text-align: center;
    }
}
@media (max-width: 555px) {

    .blog_2 .articles_area .item {
        width: 100%;
    }
}
@media (max-width: 490px) {
    .blog_2 .articles_area .item {
        align-items: center;
    }

    .blog_2 .articles_area .item .title_item {
        font-size: 18px;
        text-align: center;
    }

    .blog_2 .articles_area .item .text_item {
        text-align: center;
    }
}