/* 페이지 공용 - ../public/publicStyle.css */

/* 햄버거 버튼 및 메뉴용 - ../public/hambugerStyle.css */

/* 메인페이지용 */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 33.3%;
  overflow: hidden;
  margin: auto;
}

.slides {
  display: flex;
  width: calc(100% * 3);
  /* 이미지 개수에 따라 조정 */
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 33.3%;
  height: 33.3%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 33.3%;
  object-fit: cover;
}

.indicators {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #94E2FF;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #002694;
}

.summarySection {
  width: auto;
  max-width: 100%;
  margin-top: 3em;
  display: flex;
  justify-content: space-between;
}

.eachBox {
  width: 30%;
}

.eachBox img {
  width: 100%;
}

.eachBox p {
  text-align: justify;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 150%;
}

.eachBoxButton {
  margin: 0px;
  padding: 7px 20px;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #ccc;
  float: right;
}

.introduceSection {
  text-align: justify;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.profileImgBox {
  width: 20%
}

.profileTxtBox {
  width: 70%;
  margin-left: 1em;
  position: relative;
}

.profileTxtBox p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 150%;
}