.mission{
    padding: 50px 0;
    .mission_wrapper{
         .mission_img{
            height: 400px;
            width: 100%;
              img{
                height: 100%;
                width: 100%;
                object-fit: cover;
              }
         }
         .mission_wrap{
            padding-left: 15px;
             h4{
                font-size: 40px;
                font-weight: 600;
                color: $black;
                line-height: 50px;
             }

             .mission_list{
                .list_item{
                    display: flex;
                    margin-top: 12px;
                    border-bottom: 1px solid $border;
                    padding: 10px 0;
                    &:last-child{
                        border-bottom: 1px solid transparent;
                    }
                    .item_number{
                        font-size: 40px;
                        font-weight: 500;
                        color: #454444;
                        height: 80px;
                        width: 80px;
                        border: 2px solid #c3c3c393;
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                    .item_content{
                        padding-left: 15px;
                        h5{
                            font-size: 20px;
                            font-weight: 600;
                            color: $black;
                        }
                    }
                }
             }
         }
    }
}