/* work 부문 */
*{
	font-family: "Noto Sans",sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
::-webkit-scrollbar {
	display: block;
	width: 10px; 
	height: 20px;  
}
::-webkit-scrollbar-thumb {
		  background-color: white; 
	  border-radius:30px;
	}
/* 스크롤시 애니메이션 */
.sa {
	opacity: 0;
	transition: all .8s ease;
  }

  /* 아래에서 위로 페이드 인 */
  .sa-up {
	transform: translate(0, 100px);
  }
  /* 위에서 아래로 페이드 인 */
  .sa-down {
	transform: translate(0, -100px);
  }
  /* 왼쪽에서 오른쪽으로 페이드 인 */
  .sa-right {
	transform: translate(-100px, 0);
  }
  /* 오른쪽에서 왼쪽으로 페이드 인 */
  .sa-left {
	transform: translate(100px, 0);
  }
  /* 왼쪽으로 회전하면서 페이드 인 */
  .sa-rotateL {
	transform: rotate(180deg);
  }
  /* 오른쪽으로 회전하면서 페이드 인 */
  .sa-rotateR {
	transform: rotate(-180deg);
  }
  /* 작아진 상태에서 커지면서 페이드 인 */
  .sa-scaleUp {
	transform: scale(.5);
  }
  /* 커진 상태에서 작아지면서 페이드 인 */
  .sa-scaleDown {
	transform: scale(1.5);
  }

  .sa.show {
	opacity: 1;
	transform: none;
  }
/* svg 구문****************************** */
.path{
	stroke-dasharray: 500;
	animation: dash 5s linear alternate infinite;
}
@keyframes dash {
	from {
		stroke-dashoffset: 500;
	  }
	to {
	  stroke-dashoffset: 0;
	}
  }

/* //통통 튀는 애니메이션 */


.canvas {
	display: grid;
	place-items: center;
	background: hsl(0, 0%, 96%);
	width: 75vmin;
	height: 75vmin;
	background: hsl(0, 0%, 100%);
}


/* 메인 클리핑마스크 글자안에 동영상 */
.wrapper{
/* background: #B6D494; */
background: url(../images/bg.jpg) no-repeat;
background-size: cover;
height: 100vh;
position: relative;  
}
.text{
flex: 0 0 100%;
font-size: 35vw;
font-weight: 700;
color: #00000000;
text-align: center;
position: absolute;
left: 50%;
top: 35%;
transform: translate(-50%, -35%);
/* border-bottom: 1px solid #d4d7ff;
border-top: 1px solid #d4d7ff; */
/* background: url(https://media.giphy.com/media/3o6ZtluYTKJeXXqt8s/giphy.gif) no-repeat; */
background: url(https://media.giphy.com/media/vadsqiBwAM18c/giphy.gif) no-repeat;
background-size: over;
background-clip: text;
-webkit-background-clip: text;
}
.text:after{
	content: attr(data-text);
	/* -webkit-text-stroke: 1.5px #d4d7ff; */
	position: absolute;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -35%);
	/* background: url(https://media.giphy.com/media/3o6ZtluYTKJeXXqt8s/giphy.gif) no-repeat; */
	background: url(https://media.giphy.com/media/vadsqiBwAM18c/giphy.gif) no-repeat;
	background-size: cover;
	background-clip: text;
	-webkit-background-clip: text;
}


/* main영역 */
#sub_main{
	height: 100vh;
}
#sub_main>.wrapper{
	position: relative;
}
#sub_main>.wrapper>.svg_design{
	position: absolute;
	top: 2%;
	left: 50%;
	transform: translateX(-50%);
}
#sub_main>.wrapper>.svg_devel{
	position: absolute;
	bottom: 0;
	left: 55%;
	transform: translateX(-55%);
}

article>section{
	height: 100vh;
	width: 100%;
	/* overflow: hidden; */
}
#slide{
	padding-top: 25vh;
}


article>section:first-child{
	background-color: green;
}
article>section:nth-child(2){
	background-color: yellowgreen;
}
article>section:nth-child(3){
	background-color: skyblue;
}
article>section:nth-child(4){
	background-color: green;
}
article>section:nth-child(5){
	background-color: cadetblue;
}

section h3{
	font-size: 34px;
	font-weight: bolder;
	text-align: center;
	padding: 50px 0 30px 0
}

#about_wrap{
	display: flex;
	justify-content: center;
}
#profile_img{
	width: 35%;
}
/* about 부문 */
#about_wrap{
	position: relative;
}
#about_wrap>#m_back{
	display: none;
	position: absolute;
	width: 100vw;
	top: -1000px;
	left: 0;
	height: 9999px;
	z-index: 8;
	background-color: rgba(119, 119, 119, 0.5);
}
#about_wrap>div>#profile_bottom>span strong{
	font-weight: bolder;
	text-decoration: underline;
}
#about_wrap>.design_resume{
	display: none;
	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition-duration: 0.4s;
}

#about_wrap>.design_resume>.close{
	z-index: 100;
	cursor: pointer;
	font-size: 3rem;
	width: 50px;
	position: absolute;
	top: 0;
	right: 0;

}
#about_wrap>div{
	color: #222;
	text-align: center;
}
#about_wrap>div img{
	width: 80%;
}
#about_wrap .profile_text{
	display: flex;
	padding: 0 0 0 10px;
}
#about_wrap .profile_text th{
	font-size: 23px;
	font-weight: bold;
	padding-bottom: 20px;
}
#about_wrap .profile_text td{
	text-align: left;
	padding-top: 5px;
}

#profile_bottom{
	padding-top: 50px;
	text-align: left;
}
#profile_bottom>.btn_resume{
	cursor: pointer;
	width: 8rem;
	height: 3rem;
	text-align: center;
	display: block;
	margin-top: 40px;
	background-color: green;
	border: none;
	color: #fff;
	transition-duration: 0.4s;
}
#profile_bottom>.btn_resume:hover{
	transform: scale(1.3);
}
/* design 부문 */
#design .design_down{
	text-align: center;
	padding-top: 30px;
	
}
#design .design_down>a{
	padding: 5px 5px;
	background-color: aliceblue;
	font-size: 20px;
	color: coral;
	border: 1px solid white;
	border-radius: 20px;
}
/* web 부문 */
section img{
	image-rendering: -webkit-optimize-contrast;
	transform: translateZ(0);
	backface-visibility: hidden;

}
#web .web_github{
	text-align: center;
	padding-top: 30px;
	
}
#web .web_github>a{
	padding: 5px 5px;
	background-color: aliceblue;
	font-size: 20px;
	color: coral;
	border: 1px solid white;
	border-radius: 20px;
}

#contact{
	background-color: #ECB682;
}
#contact>.contact_main{
	display: flex;
	justify-content: space-around;
	height: 90%;
	align-items: center;
	color: black;
}
#contact>.contact_main>.contact_main_text>h2{
	padding: 30px 0;
	font-size: 34px;
	font-weight: bolder;
	text-shadow: 6px 2px 2px gray;
}
#contact>.contact_bottom{
	bottom: 10px;
	text-align: center;
	color: #777;
}
section figure img{
	width: 300px;
	height: 300px;
}
#side_navi{
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: fixed;
	top: 40%;
	right: 30px;
}
#side_navi>a{
	background-color: pink;
	color: black;
	height: 20px;
	border-radius: 10px;
	text-align: center;
	transition-duration: 0.2s;
}
#side_navi>a:hover{
	transform: scale(1.1);
}
