@charset "UTF-8";
#certification .certification_wrap {
  position: relative;
}
#certification .certification_wrap::before {
  content: "";
  display: block;
  width: 100vw;
  height: calc(100% + 100px);
  background: url("../img/bg.svg") bottom -50px right no-repeat, #f8f8f8;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#certification .fig_wrap {
  padding-top: 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px 30px;
  align-self: stretch;
}
#certification .fig_wrap figure {
  width: calc(25% - 22.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#certification .fig_wrap figure figcaption {
  color: #333;
  text-align: center;
  font-family: Pretendard;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  word-break: keep-all;
}

/* 미디어쿼리 */
@media (max-width: 1200px) {
  #certification .certification_wrap::before {
    background-size: 40%;
  }
  #certification .fig_wrap figure {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 768px) {
  #certification .certification_wrap::before {
    background-size: 50%;
  }
}
@media (max-width: 480px) {
  #certification .certification_wrap::before {
    height: calc(100% + 60px);
    background-size: 60%;
  }
  #certification .fig_wrap {
    gap: 30px;
  }
  #certification .fig_wrap figure {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 360px) {
  #certification .fig_wrap figure {
    width: 100%;
  }
}