@import url('https://fonts.googleapis.com/css?family=Roboto:700');
@keyframes showTopText {
  0% { transform: translate3d(0, 100%, 0); }
  40%, 60% { transform: translate3d(0, 50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes showBottomText {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.animated-title {
    color: #f8f9fa;
    font-family: Roboto, Arial, sans-serif;
    height: 45vmin;
    left: 25%;
    position: absolute;
    top: 190%;
    transform: translate(-50%, -50%);
    width: 70vmin;
}
.animated-title > div {
  height: 32%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.animated-title > div div {
  font-size: 12vmin;
  padding: 2vmin 0;
  position: absolute;
}
.animated-title > div div span {
  display: block;
}
.animated-title > div.text-top {
  border-bottom: 1vmin solid #dc6c1b;
  top: -25px;
}
.animated-title > div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
.animated-title > div.text-top div span:first-child {
  color: #eee;
 font-size: 56px;

}

.animated-title > div.text-bottom {
  bottom: 0;
}
.animated-title > div.text-bottom div {
  animation: showBottomText 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}

@media (max-width: 999px) and (min-width: 838px) {
  .animated-title > div.text-top div span:first-child {
    font-size: 35px !important;
    margin-left: 13px;
  }
  .animated-title {
    top: 385px !important;
    left: 40% !important;
  }
  .animated-title > div {
    width: 65%;
  }
}
@media (max-width: 838px) and (min-width: 700px) {
  .animated-title > div.text-top div span:first-child {
    font-size: 30px !important;
    margin-left: 13px;
  }
  .animated-title {
    top: 390px !important;
    left: 40% !important;
  }
  .animated-title > div {
    width: 65%;
  }
}

@media (min-width: 600px) and (max-width: 700px) {
  .animated-title > div.text-top div span:first-child {
    font-size: 35px !important;
    margin-left: 13px;
  }
  .animated-title {
    top: 380px !important;
    left: 40% !important;
  }
  .animated-title > div {
    width: 65%;
  }
}

@media (max-width: 600px) and (min-width: 399px) {
  .animated-title > div.text-top div span:first-child {
    font-size: 26px !important;
    margin-left: 7px;
  }
  .animated-title {
    top: 380px !important;
    left: 40% !important;
  }
  .animated-title > div {
    width: 70%;
  }
}

@media (max-width: 399px) and (min-width: 344px){
  .animated-title > div.text-top div span:first-child {
    font-size: 22px !important;
    margin-left: 7px;
  }
  .animated-title {
    top: 218px !important;
    position: absolute;
    left: 40% !important;
  }
  .animated-title > div {
    width: 70%;
  }
}

@media (max-width: 343px){
  .animated-title > div.text-top div span:first-child {
    font-size: 15px !important;
    margin-left: 7px;
  }
  .animated-title {
    top: 218px !important;
    left: 40% !important;
  }
  .animated-title > div {
    width: 65%;
  }
}


.section-mentions {
  padding: 20px;
  margin: 20px;
}
.section-mentions .mentions-title h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-mentions .mentions-text p{
  font-size: 16px;
  margin-bottom: 20px;
}
