.container__header__image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  position: relative;
}

.header__image__track .container__image img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.content__header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color-transparent);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.content__header__image .information__header__image {
  padding-left: 3em;
  width: max-content;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
}

.content__header__image .information__header__image .title__two {
    color: var(--blue-color);
    font-size: 1.5em;
}

.content__header__image .information__header__image .background__title {
  background-color: var(--orange-color);
  display: inline-block;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 13px;
  padding-right: 13px;
  color: var(--white-color);
}

/*
==========
Header animation
==========
*/

.container__header__image .title__two.animate {
  animation: headerSlideDown 0.8s ease forwards;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}