
/* animation */
.focuses-wrapper .focus-area {
  /*animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;*/
  -webkit-animation: fade-in 2.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 2.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.focuses-wrapper .focus-block .focus-area {

}
.focuses-wrapper .focus-block:nth-child(1) .focus-area {
  /*animation: fade-in-right 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;*/
  -webkit-animation: fade-in 2.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 2.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation-delay: 0.1s;
}
.focuses-wrapper .focus-block:nth-child(2) .focus-area {
  /*animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;*/
  -webkit-animation: fade-in 2.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 2.0s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation-delay: 0.2s;
}
.focuses-wrapper .focus-block .focus-area .focus-content {
  animation: text-focus-in 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}


@keyframes fade-in-top {
  0% {
    transform: translateY(-70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    /*filter: blur(12px);*/
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
