

          .text-wheel-wrapper {
            padding-top: 80px;
            padding-bottom: 50px;
            position: relative;
            margin-top: -500px;
            z-index: 1;
            background: linear-gradient(180deg, rgba(16, 24, 32, 0) 0%, #101820 11.65%);
          }
          .text-wheel-wrapper.stop-animation .text-wheel__title-wrapper>div {
            animation-play-state: paused;
          }
          @media screen and (min-width: 750px) {
            .text-wheel-wrapper {
              padding-top: 120px;
              padding-bottom: 90px;
            }
          }
          .text-wheel {
            display: flex;
            position: relative;
            padding: 8px 0;
            width: 100%;
            margin: auto;
            overflow: hidden;
            z-index: 1;
          }
          @media screen and (min-width: 750px) {
            .text-wheel {
              padding: 0;
            }
          }
          .text-wheel-main-title {
            font-family: Montserrat;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            letter-spacing: 1px;
            text-align: center;
            opacity: .5;
            text-transform: uppercase;
            margin-bottom: 8.2rem;
            color: rgba(255, 255, 255, .5);
          }
          .text-wheel-button {
            margin-top: 90px;
          }
          .text-wheel-button .button {
            font-family: Montserrat;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px;
            letter-spacing: 1px;
            text-align: center;
            color: rgba(255, 255, 255, 1);
            border-radius: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, .4);
            text-transform: uppercase;
            background: 0 0;
          }
          .text-wheel__title-wrapper {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            height: 100%;
            white-space: nowrap;
            transition: all 1s ease;
          }
          .text-wheel__title-wrapper>div {
            display: flex;
            -webkit-animation: scrollText 33s infinite linear;
            animation: scrollText 33s infinite linear;
          }
          .reverse .text-wheel__title-wrapper>div {
            display: flex;
            -webkit-animation: scrollText 33s infinite linear reverse;
            animation: scrollText 33s infinite linear reverse;
          }
          .text-wheel__title-wrapper .text-wheel__title {
            margin: 0;
            color: rgba(255, 255, 255, .2);
            line-height: 1.2;
            transition: all 2s ease;
          }
          .text-wheel__title-wrapper .text-wheel__title-content {
            text-transform: uppercase;
            font-family: Playfair Display;
            font-size: 64px;
            font-style: normal;
            font-weight: 400;
            line-height: 64px;
            letter-spacing: -3px;
            text-align: center;
            color: rgba(255, 255, 255, .2);
            text-decoration: none;
          }
          @media screen and (min-width: 750px) {
            .text-wheel__title-wrapper .text-wheel__title-content {
              font-size: 136px;
              line-height: 136px;
            }
          }
          .text-wheel__title-wrapper .text-wheel__title-separator {
            font-size: 64px;
            line-height: 64px;
            margin-right: 15px;
          }
          @media screen and (min-width: 750px) {
            .text-wheel__title-wrapper .text-wheel__title-separator {
              font-size: 136px;
              line-height: 136px;
            }
          }
          .text-wheel__title-wrapper .text-wheel__title-content p {
            margin: 0;
            display: inline-block;
            line-height: normal;
          }
          @-webkit-keyframes scrollText {
            from {
              transform: translateX(0%);
            }
            to {
              transform: translateX(-50%);
            }
          }
          @keyframes scrollText {
            from {
              transform: translateX(0%);
            }
            to {
              transform: translateX(-50%);
            }
          }