.two_about_box {
    width: 100%;
    padding: calc(20px + 4rem) 0;
}

.two_about {
    max-width: 1640px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.two_about_left {
    width: 35.1219%;
}

.two_about_left .p1 {
    font-family: DM_Sans-bold;
    font-weight: 600;
    font-size: calc(6px + 2rem);
    color: #B37563;
    line-height: calc(10px + 3rem);
    letter-spacing: calc(0px + 0.1rem);

}

.two_about_left .p2 {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1.5rem);
    margin-top: calc(9px + 1.5rem);

}

.two_about_pic {
    width: 58.5366%;
    height: calc(200px + 30rem);
}

.two_about_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage_box {
    width: 100%;
    padding: calc(20px + 3rem) 0;
}

.advantage {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.advantage_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: calc(9px + 3rem);
}

.advantage_list_item {
    width: 33.333333%;
    height: calc(100px + 10rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(8px + 0.5rem);
    border: 1px #D8D8D8 solid;
    cursor: pointer;
}

.advantage_list_item:hover .p1 {
    background-color: #B67865;
    color: #ffffff;
}

.advantage_list_item .p1 {
    width: calc(20px + 10rem);
    height: calc(6px + 2rem);
    background: #F7F1EF;
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 1rem);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.advantage_list_item .p2 {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5em);
    color: #666666;
    line-height: calc(10px + 1rem);
    text-align: center;
    width: calc(60px + 10rem);
}

.advantage_list_item:nth-of-type(1) {
    border-left: none;
    border-top: none;
    border-right: none;
}

.advantage_list_item:nth-of-type(2) {
    border-top: none;
    border-right: none;
}

.advantage_list_item:nth-of-type(3) {
    border-top: none;
    border-right: none;
}

.advantage_list_item:nth-of-type(4) {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: none;
}

.advantage_list_item:nth-of-type(5) {
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.advantage_list_item:nth-of-type(6) {
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.two_about_2_box {
    width: 100%;
    padding: calc(20px + 4rem) 0;
}

.two_about_2 {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.two_about_2_list {
    display: grid;
    grid-template-columns: 49.32936% 47.9878%;
    gap: calc(4px + 2rem);
    margin-top: calc(20px + 2rem);
}

.two_about_2_list .two_about_2_item {
    width: 100%;
    height: 100%;

}

.two_about_2_list .two_about_2_item:nth-of-type(1) {
    height: calc(10px + 50rem);
    grid-row-start: 1;
    grid-row-end: 3;
}

.two_about_2_list .two_about_2_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1100px){
    .two_about{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .two_about_left{
        width: 100%;
    }
    .two_about_left .p1{
        font-size: calc(14px + 1rem);
    }
    .two_about_left .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_about_pic{
        width: 100%;
        height: calc(200px + 15rem);
    }
    .advantage_list_item{
        width: 100%;
    }
    .advantage_list_item .p1 {
        width: calc(120px + 15rem);
        height: calc(25px + 2rem);
       font-size: calc(12px + 1rem);
    }
    .advantage_list_item .p2{
        width: 100%;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .advantage_list{
        border: 1px #D8D8D8 solid;
    }
    .advantage_list_item{
        border: none;
    }
}