/* 전체 적용 */
* {
  box-sizing: border-box;
  margin: 0 auto;
}
li {
  list-style: none;
}
body {
  background-color: #333;
}
#wrap {
  max-width: 818px;
  background-color: #F5F5F5;
}
.count {
  position: relative;
  display: inline-block;
}
.count-text {
  position: absolute;
  width: 100%;
  top: 55%;
  left: 50%;
  transform: translate(-25%, -50%);
  color: white; /* 글자색 */
  font-size: 30px; /* 글자 크기 */
  font-weight: 600;
}
.video{
  display: block;
  width: 100%;
}
section {
  position: relative;
  line-height: 0;
  /* border: 1px solid red; */
}
.sec1 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 81%;
  left: 50%;
  width: 100%;
  height: 24%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* border: 1px solid red; */
}
.t2 {
  display: flex;
  align-items: center;
}
.t2 img {
  width: 80%;
  cursor: pointer;
}
.chk {
  font-size: 23px;
  text-align: center;
}
.chk span {
  cursor: pointer;
  font-weight: bold;
}
.sec2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 72%;
  left: 50%;
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.sec2 img {
  width: 80%;
  cursor: pointer;
}
.sec3 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 58%;
  left: 50%;
  width: 85%;
  height: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ip1 {
  width: 100%;
  height: 36%;
  display: flex;
  justify-content: space-between;
}
.ip1 input{
  width: 49%;
  height: 76%;
  text-align: center;
  font-size: 30px;
  border-radius: 10px;
}
.ip2{
  width: 99%;
  height: 36%;
}
.ip2 input{
  width: 100%;
  height: 76%;
  text-align: center;
  font-size: 30px;
  border-radius: 10px;
}
.btnimg {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}


@media screen and (max-width:818px) {
  body {
    background-color: #fff;
  }
  .chk {
    font-size: 3vw;
  }
  .chk label input {
    width: 3vw;
    height: 3vw;
  }
  .count-text {
    font-size: 3.6vw; 
  }
  .sec3 input {
    border-radius: 1vw;
    font-size: 3.7vw;
  }
}