.text_page_only {
    display: flex;
    flex-direction: column;
}
.text_page_only .text_main_area {
    display: flex;
    flex-direction: column;
    padding: 60px;
    background-color: #ECE9E5;
    gap: 50px;
}
.text_page_only .text_main_area .text_area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text_page_only .text_main_area .title_text {
    font: 700 24px/1.2 'Montserrat', sans-serif;
    margin-bottom: 10px;
}
.text_page_only .text_main_area .text_1 {
    font: 500 18px/1.2 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.text_page_only .text_main_area .text_2 {
    font: 300 20px/1.2 'Montserrat', sans-serif;
}
.text_page_only .text_main_area .items_area {
    display: flex;
    gap: 80px;
}
.text_page_only .text_main_area .items_area .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.text_page_only .text_main_area .items_area .item .item_title {
    font: 700 12px/1.2 'Montserrat', sans-serif;
    color: #BB9255;
}
.text_page_only .text_main_area .items_area .item .item_main {
    font: 600 20px/1.2 'Montserrat', sans-serif;
}
.text_page_only .img_area {
    width: 100%;
    height: 530px;
}
.text_page_only .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .text_page_only {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .text_page_only .text_main_area {
        display: flex;
        flex-direction: column;
        padding: 50px 16px;
        background-color: #ECE9E5;
        gap: 50px;
    }
}
@media (max-width: 600px) {
    .text_page_only {
        padding: 0;
    }
    .text_page_only .text_main_area {
        text-align: center;
    }
    .text_page_only .text_main_area .items_area {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .text_page_only .text_main_area .title_text {
        text-align: center;
    }
    .text_page_only .img_area {
        height: 311px;
    }
}