* {
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 100%;
  display: flex;
  border-bottom:1px solid #DDE0E3 ;
}

.req_ex {
  width: 100%;
}

.req_ex .title {
  background-color: #EBF2F8;
  height: 52px;
  text-align: center;
  font:700 16px pretendard;
  border-bottom: 1px solid #021679;
}

.req_ex .title p {
  line-height: 52px;
  margin-bottom: 10px !important;
}

.req_ex .list-group {
  background-color: #fff;
  padding: 20px;
}

.req_ex .list-group .list {
  display: flex;
  margin-bottom: 7px;
}

.req_ex .list-group .list:last-child {
  margin-bottom: 0;
}

.req_ex .list-group .list p {
  line-height: 25px;
  font-size: 15px;
}

.divider {
  background-color: #DDE0E3;
  width: 1px;
  z-index: 10;
}

@media (max-width: 900px) { 
  .wrapper {
    display: block;
  }
  .divider {
    display: none;
  }
}

@media (max-width: 400px) {
  .req_ex .title {
    font:700 14px pretendard;
  }

  .req_ex .list-group .list p {
    font-size: 14px;
  }
}