.service_box {
    width: 100%;
    padding: calc(20px + 3rem) 0;
}

.service {
    max-width: 1640px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_left {
    width: 52.0732%;
}

.service_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(10px + 1rem);
    margin-top: calc(10px + 2rem);
}

.service_item {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(6px + 1rem);
}

.service_item img {
    width: calc(2px + 1rem);
    height: calc(2px + 1rem);
}

.service_item p {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #999999;

}

.service_right {
    width: 43.0488%;
    height: calc(180px + 30rem);
}

.service_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery_box {
    width: 100%;
    padding-bottom: calc(73px + 5rem);
    padding-top: calc(10px + 2rem);
}

.delivery {
    max-width: 1340px;
    width: 85%;
    margin: auto;
}

.delivery_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(17px + 5rem);
}

.delivery_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery_item:nth-child(even) {
    flex-flow: row-reverse;
}

.delivery_text {
    width: 45.7463%;
}

.delivery_text .p1 {
    font-family: DM_Sans-bold;
    font-weight: 600;
    font-size: calc(6px + 1.5rem);
    color: #B37563;
    line-height: calc(10px + 3rem);
    letter-spacing: 1px;

}

.delivery_text .p2 {
    width: 85%;
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1.5rem);
    margin-top: calc(9px + 0.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(5px + 0.25rem);
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1.5rem);
}

.delivery_text .p2 p {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1.5rem);
}

.delivery_text .p2 div {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 1.5rem);
}

.delivery_pic {
    width: 44.7761%;
    height: calc(100px + 20rem);
}

.delivery_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1100px){
    .service{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .service_left{
        width: 100%;
    }
    .service_item p{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .service_item img {
        width: calc(10px + 1rem);
        height: calc(10px + 1rem);
    }
    .service_right{
        width: 100%;
    }

    .delivery_item{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .delivery_item:nth-child(even){
        flex-flow:column;
    }
    .delivery_text{
        width: 100%;
    }
    .delivery_pic{
        width: 100%;
        height: calc(100px + 42rem);
    }
    .delivery_text .p1{
        font-size: calc(12px + 1rem);
    }
    .delivery_text .p2{
        width: 100%;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .delivery_text .p2 p{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}