/********************************************
DESIGNED REFERENCE & IMAGES SOURCE FROM : https://tympanus.net/Development/ImageTrailEffects/ 
********************************************/


  
  /***********  Default/reset  ***********/
  *,
  *::after,
  *::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  /***********  Link  ***********/
  
  a,
  a:link,
  a:focus,
  a:hover,
  a:active {
	outline: none;
	text-decoration: none;
  }
  
  .header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	display: flex;
	z-index: 9;
	padding: 35px 30px;
	justify-content: space-between;
  }
  
  .person__name {
	color: #fff;
  }
  
  .person__prof {
	font-size: 18px;
	display: block;
	display: flex;
	align-items: center;
	font-weight: 300;
  }
  
  .person__prof:before {
	content: "";
	width: 15px;
	height: 1px;
	background: #fff;
	margin-right: 3px;
  }
  
  .profile__link {
	color: var(--color-pink);
	margin-right: 16px;
	font-size: 18px;
	position: relative;
	z-index: 1;
  }
  
  .profile__link:hover {
	color: #fff;
  }
  
  .person__test {
	display: block;
  }

  .img-wrapper {
	height: 40vh;
	display: flex;
	background: #fff;
	position: relative;
	/* overflow: hidden; */
  }
  
  .drag__box {
	height: 180px;
	width: 140px;
	position: absolute;
	-webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  
  .visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  
  .hidden {
	display: none;
	-webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  
  img.img-item {
	object-fit: cover;
	/* visibility: hidden; */
	/* opacity: 0; */
	-webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
	position: absolute;
	max-width: 200px;
	transform: translateY(-150%);
	transform-origin: bottom;
	z-index: 99;
  }
  
  .grow-scale {
	transform: scale(2);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  

  .content__title {
	font-family: forma-djr-display, sans-serif;
	font-size: 22vw;
	color: transparent;
	-webkit-text-stroke: 2px #1ddef6;
	font-weight: 700;
	position: absolute;
	text-align: center;
left: 5%;
	z-index: 99;
	/* transform: translateY(-50%); */
	pointer-events: none;
  }
  
  .frame {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 35px 30px;
	display: flex;
  }
  
  .frame-title {
	color: #fff;
	font-size: 19px;
  }
  
  .frame-title.frame-link {
	margin-left: 48px;
  }
  
  .frame-link:hover {
	color: #fff;
  }
  
  .article-link {
	margin-left: 16px;
	display: inline-block;
  }
  
  .pagination {
	margin-left: 32px;
  }
  
  .frame-link {
	color: var(--color-pink);
	font-size: 18px;
	display: inline-block;
	margin-right: 16px;
  }
  
  .frame-link.frame-link--active {
	color: #fff;
	position: relative;
	text-decoration: line-through;
	letter-spacing: 40px;
  }
  