.title_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: calc(4px + 0.25rem);
}

.title_box img {
    width: calc(34px + 5rem);
}

.title_box p {
    font-family: DM_Sans-bold;
    font-weight: 600;
    font-size: calc(6px + 1.5rem);
    color: #333333;
    line-height: calc(10px + 1.5rem);
    letter-spacing: 1px;

}

.two_banner{
    width: 100%;
}
.two_banner img{
    width: 100%;
    height: calc(60px + 15rem);
}

.position_box{
    width: 100%;
    padding: calc(5px + 1.5rem) 0;
}
.position{
    max-width: 1640px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(3px + 0.1rem);
}
.position p{
    font-family: DM_Sans-regular;
    font-weight: 300;
    font-size: calc(4px + 0.5rem);
    color: #3D3D3D;
    line-height: calc(8px + 0.5rem);

}

.two_title{
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items:center ;

}
.two_title p:nth-of-type(1){
font-family: DM_Sans-bold;
font-weight: 600;
font-size: calc(6px + 1.5rem);
color: #333333;
line-height: calc(10px + 1.5rem);
letter-spacing: 1px;


}
.two_title p:nth-of-type(2){
font-family: DM_Sans-regular;
font-weight: 400;
font-size: calc(8px + 0.5rem);
color: #666666;
line-height: calc(10px + 1.5rem);

}
.mobile_nav_box{
    display: none;
}
@media screen and (max-width: 1100px){
    .title_box img {
        width: calc(34px + 8rem);
    }
    .title_box p {
        font-size: calc(14px + 1rem);
    }
    .position p{
        font-size: calc(10px + 1rem);
    }
    .mobile_nav_box {
        width: 100%;
        padding: calc(10px + 1rem) 0;
        background-color: #F9F9F7;
        display: block;
    }

    .mobile_nav {
        width: 92%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: calc(10px + 1rem);

    }

    .mobile_nav_item {
        width: 49%;
        height: calc(15px + 5rem);
        border: 1px #e9e9e9 solid;
        background-color: #F9F9F7;
        border-radius: calc(5px + 0.25rem);
    }

    .mobile_nav_item a {
        width: 100%;
        height: 100%;
        background-color: transparent;
        font-size: calc(10px + 1rem);
        font-family: DM_Sans-regular;
        font-weight: 400;
        color: #333333;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile_nav_item_act {
        background-color: #B47664;
    }

    .mobile_nav_item_act a {
        color: #ffffff;
    }

    .two_title p:nth-of-type(1){
        font-size: calc(14px + 1rem);
        line-height: 1.5;
    }
    .two_title p:nth-of-type(2){
        width: 100% !important;
        font-size: calc(10px + 1rem);
        text-align: center;
        line-height: 1.5;
    }
   

}
