.block_about{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about_title {
    width: 100%;
    margin: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box_title {
    text-align: center;
}

.box_title>h1 {
    font-weight: bold;
    color: rgb(139, 22, 22);
    margin-bottom: 1rem;
}

.about_main {
    padding: 0 12rem;
    display: flex;
}

.main_block_img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_block_img>.main_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_block_img>.main_box>.main_box_img {
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.main_block_img>.main_box>.main_box_img>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.main_box>.main_box_links>ul {
    list-style-type: none;
    display: flex;
}

.main_box>.main_box_links>ul>li {
    padding: 0.3rem 0.7rem;
    margin-top: 1rem;
}

.main_box>.main_box_links>ul>li>a {
    text-decoration: none;
    color: rgb(25, 25, 25);
    font-size: 25px;
    transition: all 0.5s;
}

.main_box>.main_box_links>ul>li>a:hover {
    color: rgb(255, 128, 0);
}


.main_block_text {
    width: 50%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_block_text>p {
    color: rgb(87, 87, 87);
    font-weight: 300;
    letter-spacing: 1px;
}

.main_block_text>h3 {
    font-weight: 400;
    margin-top: 2rem;
    letter-spacing: 3px;
}

/* ==================Respone================== */
@media (max-width: 1200px) {
    .main_block_img>.main_box>.main_box_img {
        width: 300px;
        height: 300px;
    }

    .about_main {
        padding: 0 9rem;
    }
}

@media (max-width: 900px) {
    .about_main {
        flex-direction: column;
    }

    .main_block_img {
        width: 100%;
    }

    .main_block_text {
        width: 100%;
    }

    .main_block_text {
        padding: 2rem 0;
    }
}

@media (max-width: 700px) {
    .block_about{
        height: max-content;
    }
    .about_title {
        margin: 4rem 0;
    }

    .main_block_img>.main_box>.main_box_img {
        width: 270px;
        height: 270px;
    }

    .box_title>h1 {
        font-size: 25px;
    }

    .about_main {
        padding: 0 5rem;
    }
}