.fd-in {
  opacity: 0;
}
.fd-done {
    animation: fd 0.8s ease 0s forwards;
}
@keyframes fd{
    0%{
        opacity: 0;
        transform: translate(0, 60px);
    }
    100%{
        opacity: 1;
        transform: translate(0, 0);
    }
}
section {
  overflow: hidden;
  transition: .8s;
}

.section__title {
  font-size: 48px;
  text-align: center;
}

.section__title--discription {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
}