.videowrapper {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 20px;
  margin-bottom: 100px;
}

.roll-up {
  overflow: hidden;
  position: relative;
  color: #FFFDEA;
}
.roll-up > span {
  display: inline-block;
  position: relative;
}
.roll-up > span:nth-child(1) {
  transition-delay: 0.03s;
}
.roll-up > span:nth-child(2) {
  transition-delay: 0.06s;
}
.roll-up > span:nth-child(3) {
  transition-delay: 0.09s;
}
.roll-up > span:nth-child(4) {
  transition-delay: 0.12s;
}
.roll-up > span:nth-child(5) {
  transition-delay: 0.15s;
}
.roll-up > span:nth-child(6) {
  transition-delay: 0.18s;
}
.roll-up > span:nth-child(7) {
  transition-delay: 0.21s;
}
.roll-up > span > span {
  display: inline-block;
  transition: 0.6s cubic-bezier(0.7, 0.01, 0.37, 1);
  transition-delay: inherit;
}
.roll-up > span > span:nth-child(1) {
  position: relative;
}
.roll-up > span > span:nth-child(2) {
  position: absolute;
  transform: translateY(100%);
  left: 0;
  color: #16e590;
  background: linear-gradient(45deg, #428484 0%, #2672A5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-reveal {
  position: relative;
  overflow: hidden;
}
.text-reveal span {
  display: block;
  transition: cubic-bezier(0.7, 0.01, 0.37, 1) 0.6s;
}
.text-reveal > span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.text-reveal > span:nth-child(2) > span {
  overflow: hidden;
  transform: translateX(-100%);
}
.text-reveal > span:nth-child(2) > span:nth-child(1) {
  transition-delay: 0.1s;
}
.text-reveal > span:nth-child(2) > span:nth-child(2) {
  transition-delay: 0.2s;
}
.text-reveal > span:nth-child(2) > span:nth-child(3) {
  transition-delay: 0.3s;
}
.text-reveal > span:nth-child(2) > span:nth-child(4) {
  transition-delay: 0.4s;
}
.text-reveal > span:nth-child(2) > span:nth-child(5) {
  transition-delay: 0.5s;
}
.text-reveal > span:nth-child(2) > span:nth-child(6) {
  transition-delay: 0.6s;
}
.text-reveal > span:nth-child(2) > span:nth-child(7) {
  transition-delay: 0.7s;
}
.text-reveal > span:nth-child(2) > span > span {
  transform: translateX(100%);
  transition-delay: inherit;
}

.play-button {
  display: inline-block;
  width: 70px;
  height: 70px;
  transition: 0.5s;
}
.play-button svg {
  overflow: visible;
}
.play-button .polygon {
  /*fill: #4D665B;*/
  transition: transform 0.5s, fill 0.5s;
  transition-timing-function: cubic-bezier(0.7, 0.01, 0.37, 1);
  transform-origin: 50% 50%;
}

.videocard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1920px;
  width: 100%;
  height: 400px;
  padding: 20px;
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
  background-size: cover;
  cursor: pointer;
  margin: 0 100px 60px 0;
    border-radius: 50px;
}
.videocard:before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    border-radius: 50px;
}
.videocard .videocard__content {
  z-index: 1;
}
.videocard .videocard__content .videocard__content--description {
  position: absolute;
  bottom: 20px;
  /*right: 0;*/
  margin-top: 80px;
  text-align: center;
  max-width: 175px;
}
.videocard:hover .play-button {
  transform: scale(1.1);
}
.videocard:hover .play-button .polygon {
  transform: translateZ(0px) rotate(90deg);
  fill: #287bb3;
}
.videocard:hover .roll-up > span > span:nth-child(1) {
  transform: translateY(-100%);
}
.videocard:hover .roll-up > span > span:nth-child(2) {
  transform: translateY(0);
}
.videocard:hover .text-reveal > span:nth-child(2) > span,
.videocard:hover .text-reveal > span:nth-child(2) > span > span {
  transform: translateX(0);
}
