

/* 메인 사진 */
.picture-section{
    width:100%;
    height:50vh;
    z-index: 1;
}

.picture-title{
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5);
  position: relative;
}

.picture-title div{
  position: absolute;
  width:100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.picture-title h2{
  color: #f6f6f6;
  font-size: 3rem;
}

.picture-title p{
  color: #aaa;
  font-size: 1.2rem;
}

/* 메인 wrap */

.main-wrap{
  position: relative;
  width:100%;
  max-width: 1200px;
  height:auto;
  margin: 0 auto;
  margin-top: -100px;
  margin-bottom: 100px;
  z-index: 100;
  background-color: white;
}

.title{
  width:100%;
  text-align: center;
}

.title h2{
  display: inline-block;
  margin-top:30px;
}

.content{
  margin-top: 30px;
  width:100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.content-wrap{
  width:50%;
  height: 400px;
  margin: 30px 0;
}

.picture{
  width:90%;
  height:80%;
  margin: 0 auto;
}

.information{
  width:100%;
  height:20%;
  text-align: center;
}

.information h2{
  margin-top:20px;
  font-weight: 600;
  font-size: 1.2rem;
}

.information p{
  font-size: 0.8rem;
  color: #666;
  margin: 0 10px;
}


@media screen and (max-width: 1200px) {
  .content-wrap{
    height: 300px;
  }
  
}


@media screen and (max-width: 768px) {
  .picture-section{
    height:40vh;
}
  .content-wrap{
    height: 200px;
  }
}