/* 공통스타일 class */
body{
  font-family: 'Noto Sans KR', sans-serif;
}
.width-full{
  width: auto;
}
.height-full{
  /*! height:100%; */
}
.wrap{
  max-width: 1400px;
  margin: 0 auto;
}
.hide{
  display: none; /* 안보이게 */
}
.rbox{
  width: 300px;
  height: 300px;
  background-color: #eee;
  border-radius: 20px;
  text-align: center;
}
.bgimg{
  background-repeat: no-repeat;
  background-size: 61%;
  background-position-x: 86%;
  background-position-y: 10%;
}

.padding50{
  padding-top: 50px;
  padding-bottom: 50px;
}
.paddingT50{
  padding-top: 50px;
}
.paddingT100{
  padding-top: 100px;
}
.paddingB50{
  padding-bottom: 50px;
}
.paddingB100{
  padding-bottom: 100px;
}
.marginT50{
  margin-top: 50px;
}
.marginT100{
  margin-top: 100px;
}
.marginB50{
  margin-bottom: 50px;
}
.marginB100{
  margin-bottom: 100px;
}
.flex{
  display: flex;
}
.flex-center{
  justify-content: center;
}
.flex-between{
  justify-content: space-between;
}
.flex-align-center{
  align-items: center;
}
.flex-column{
  flex-direction: column;
}
.text-center{
  text-align: center;
}
.h1{
  font-size: 55px;
}
.h2{
  font-size: 70px;
  font-weight: 400;
  color: #fff;
}
.h3{
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.h4{
  font-size: 25px;
}
.h5{
  font-size: 20px;
}
.p{
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
.block{
  display: block;
}
.ham{
  font-size: 0;
  width: 21px;
  height: 21px;
  display: block;
  border-top: 3px solid;
  border-bottom: 3px solid;
  box-sizing: border-box;
  display: flex;
  align-items: center; 
  display: none;
}
.ham::before{
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background-color: black;
  transform: translateY(-0.5px);
}
.vh100{
  height: 100vh;
  box-sizing: border-box;
  min-height: 600px;
}
/*.decs1{
  animation-name: decs1;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
  
  transition: 1s;
}
@keyframes decs1{
  0%{
		margin-left: -5%;
		opacity: 0;
	}
	100%{
		margin-right: 0;
		opacity: 1;
	}
}*/





