.animated-wrapper {
  padding-top: 60px;
}

.animated-wrapper p {
  text-align: center;
  color: #231F20;
  font-family: "GT America", Sans-serif;
  font-size: 45px;
  font-weight: 600;
}

.animated-wrapper .animated-items {
  padding: 10px;
  position: relative;
  width: 100%;
  justify-content: center;
}

.animated-wrapper .animated-item.animated-1 {
  -webkit-animation: tcarousel 20s ease infinite;
  animation: tcarousel 20s ease infinite;
  left: 0;
}

.animated-wrapper .animated-item.animated-2 {
  -webkit-animation: tcarousel 20s ease -5s infinite;
  animation: tcarousel 20s ease -5s infinite;
  left: -3px;
}

.animated-wrapper .animated-item.animated-3 {
  -webkit-animation: tcarousel 20s ease 10s infinite;
  animation: tcarousel 20s ease 10s infinite;
  left: -3px;
}

.animated-wrapper .animated-item.animated-4 {
  -webkit-animation: tcarousel 20s ease 5s infinite;
  animation: tcarousel 20s ease 5s infinite;
  left: -1px;
}




.animated-wrapper .animated-item {
  pointer-events: none;
  opacity: 0;
  top: -24px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
}


.animated-wrapper .bottom-content p {
  color: #666666;
  font-family: "GT America", Sans-serif;
  font-size: 19px;
  font-weight: 400;
  padding: 32px 0px 22px 0px;
}


.animated-wrapper {
  padding-bottom: 70px;
}
@-webkit-keyframes tcarousel {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    pointer-events: none;
  }

  6% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: all;
  }

  24% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: all;
  }

  30% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    pointer-events: none;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes tcarousel {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    pointer-events: none;
  }

  6% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: all;
  }

  24% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: all;
  }

  30% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    pointer-events: none;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}


@media(max-width:767px){
  .animated-wrapper p {
    font-size: 24px;
  }
  .animated-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}