.profile {
  padding: 60px 0;
}

.profile__content {
  display: flex;
}

.profile__imageContainer {
  padding-top: 8px;
  flex-basis: 40%;
  margin-right: 30px;
}

.profile__imageReference {
  font-size: 10px;
  text-align: center;
}

.profile__info {
  flex-grow: 1;
  flex-basis: 60%;
}

.profile__image {
  width: 100%;
}

.profile__info {
  line-height: 1.7;
}

.profile__title {
  font-weight: bold;
  font-size: 2rem;
}

/* Responsive */
@media only screen and (max-width: 580px) {
  .profile__imageContainer {
    display: none;
  }
}

/* Animations */
.hero,
.profile__imageContainer,
.profile__title,
.profile__body p {
  opacity: 0;
  animation: 0.4s cubic-bezier(0.7, 1.3, 0.75, 1) forwards animations__slideAppear;
}

.hero {
  animation-delay: 0.2s;
}

.profile__imageContainer {
  animation-delay: 0.3s;
}

.profile__title {
  animation-delay: 0.4s;
}

.profile__body p:nth-child(1) {
  animation-delay: 0.5s;
}

.profile__body p:nth-child(2) {
  animation-delay: 0.6s;
}

.profile__body p:nth-child(3) {
  animation-delay: 0.7s;
}

.profile__body p:nth-child(4) {
  animation-delay: 0.8s;
}

.profile__body p:nth-child(5) {
  animation-delay: 0.9s;
}

.profile__body p:nth-child(6) {
  animation-delay: 1.0s;
}

.profile__body p:nth-child(7) {
  animation-delay: 1.1s;
}

.profile__body p:nth-child(8) {
  animation-delay: 1.2s;
}

@keyframes animations__slideAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
