/* 전체 적용 */
* {
  box-sizing: border-box;
  margin: 0 auto;
}
li {
  list-style: none;
}
body {
  background-color: #333;
}
#wrap {
  max-width: 818px;
  background-color: #F5F5F5;
}
.slide {
  position: relative;
}
.img-slide {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 48%;
  left: 50%;
  width: 92%;
  /* border: 1px solid red; */
}
.carousel-control-prev-icon, 
.carousel-control-next-icon {
    filter: invert(80%); /* 흰색으로 변경 */
}
section {
  position: relative;
  /* border: 1px solid red; */
}
.sec1 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 112%;
  left: 50%;
  width: 100%;
  height: 56%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.start {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* border: 1px solid red; */
}
.start img {
  height: 80%;
  cursor: pointer;
}

.sec2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 60%;
  left: 50%;
  /* border: 1px solid red; */
  width: 80%;
  height: 56%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ip1 {
  width: 90%;
  height: 25%;
  display: flex;
  flex-direction: column;
 
}
.ip1 input {
  width: 100%;
  height: 68%;
  text-align: left;
  font-size: 30px;
}
.ip2 {
  width: 90%;
  height: 25%;
  display: flex;
  flex-direction: column;
 
}
.ip2 input {
  width: 100%;
  height: 68%;
  text-align: left;
  font-size: 30px;
}
.ip3 {
  width: 90%;
  height: 25%;
  display: flex;
  flex-direction: column;
 
}
.ip3 input {
  width: 100%;
  height: 68%;
  text-align: left;
  font-size: 30px;
}
.ip4 {
  height: 36%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* border: 1px solid red; */
}
.chk {
  font-size: 25px;
  text-align: center;
}
.chk label input {
  width: 25px;
  height: 25px;
}
.chk label {
  cursor: pointer;
}
.chk span {
  cursor: pointer;
  font-weight: bold;
}
/*추가된 부분*/
/* 버튼의 기본 테두리, 배경 제거 */
.btnimg {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: 5%
}

/*추가된 부분*/
@media screen and (max-width:818px) {
  body {
    background-color: #fff;
  }
  .chk {
    font-size: 3vw;
  }
  .chk label input {
    width: 3vw;
    height: 3vw;
  }
  .ip1 input,
  .ip2 input,
  .ip3 input{
    font-size: 3.7vw;
  }

  /*추가된 부분*/
  .start {
    max-width: 70%;
    margin: 0 auto; /* 가로 중앙 정렬 */
    display: flex;
    justify-content: center;
    }
    .start img {
      width: 100%;
      height: auto;
      max-height: 50vh;
      display: block;
    }
  /*추가된 부분*/  
  
}