* {
  box-sizing: border-box;
  font-family: monospace, arial; }

body {
  padding: 0px;
  margin: 0px;
  background: #222;
  overflow: hidden;
  perspective: 3000px; }
  body .rolling_container {
    width: 100%;
    height: 100%;
    position: relative;
    /* Smart Phones Screen */
    /* Medium Screen */ }
    body .rolling_container .scrollingSign {
      display: none;
      position: absolute;
      z-index: 2;
      color: white;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4); }
      body .rolling_container .scrollingSign i {
        position: absolute;
        transform: translate(-50%, 0);
        left: 50%; }
      body .rolling_container .scrollingSign i:nth-of-type(1) {
        top: 10%;
        animation: preview1 1.8s ease-out infinite; }
      body .rolling_container .scrollingSign i:nth-of-type(2) {
        top: 50%;
        transform: rotate(-45deg) translate(-60%, 0);
        animation: preview2 1.8s ease-out infinite; }
      body .rolling_container .scrollingSign i:nth-of-type(3) {
        bottom: 10%;
        animation: preview3 1.8s ease-out infinite; }
    @media (max-width: 767px) {
      body .rolling_container .scrollingSign {
        display: block; }
      body .rolling_container .indicators {
        display: none; } }
    @media (max-width: 992px) and (max-width: 1199px) {
      body .rolling_container .scrollingSign {
        display: block; }
      body .rolling_container .indicators {
        display: none; } }
    body .rolling_container .items .item {
      overflow: hidden;
      position: relative;
      /* Smart Phones Screen */
      /* Medium Screen */ }
      body .rolling_container .items .item .caption {
        position: absolute;
        top: 50%;
        left: 10%;
        z-index: 99;
        transform: translate(0, -50%);
        background: white;
        width: 50%;
        box-shadow: 4px 8px 6px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
        border-radius: 5px;
        padding: 2%; }
        body .rolling_container .items .item .caption h1 {
          color: #238acb; }
        body .rolling_container .items .item .caption p {
          color: #555; }
        body .rolling_container .items .item .caption pre {
          width: 100%;
          overflow: auto;
          padding: 15px;
          margin: 10px 0px;
          background: #646464;
          color: white; }
      @media (max-width: 767px) {
        body .rolling_container .items .item .caption {
          width: 90%;
          left: 5%;
          font-size: 4vw; } }
      @media (max-width: 992px) and (max-width: 1199px) {
        body .rolling_container .items .item .caption {
          width: 90%;
          left: 5%;
          font-size: 2vw; } }
      body .rolling_container .items .item img {
        width: 100%;
        height: 100%; }
    body .rolling_container .indicators {
      padding: 0px;
      list-style: none;
      position: fixed;
      top: 50%;
      right: 7%;
      transform: translate(0, -50%);
      z-index: 99;
      width: 20px; }
      body .rolling_container .indicators li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.1) inset;
        border: 3px solid darkred;
        background: lightgray;
        border-radius: 50%;
        margin: 15px; }
        body .rolling_container .indicators li .pipetitle {
          background: rgba(255, 255, 255, 0.8);
          position: absolute;
          width: auto;
          left: -190px;
          top: 50%;
          transform: translate(0%, -50%);
          opacity: 0;
          transition: all 0.4s ease-out;
          border-radius: 10px;
          width: 150px;
          height: 40px;
          line-height: 40px;
          padding: 0 10px;
          display: none; }
          body .rolling_container .indicators li .pipetitle:after {
            position: absolute;
            right: -10px;
            top: 30%;
            transform: translate(0 -50%);
            content: '';
            border-left: 10px solid rgba(255, 255, 255, 0.8);
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent; }
        body .rolling_container .indicators li:hover {
          border: 3px solid red; }
          body .rolling_container .indicators li:hover .pipetitle {
            display: block;
            opacity: 0.8;
            left: -170px; }
      body .rolling_container .indicators .active {
        border: 3px solid lightyellow; }

@keyframes preview1 {
  0% {
    top: 10%;
    opacity: 0; }
  69% {
    top: 10%;
    opacity: 0; }
  70% {
    top: 10%;
    opacity: 1; }
  100% {
    top: 5%;
    opacity: 0; } }
@keyframes preview2 {
  0% {
    transform: rotate(-45deg) translate(0, -50px);
    opacity: 0; }
  35% {
    transform: rotate(-45deg) translate(0, -50px);
    opacity: 1; }
  75% {
    transform: translate(0, -100px); }
  100% {
    transform: translate(0, -100px);
    opacity: 0; } }
@keyframes preview3 {
  0% {
    bottom: 10%;
    opacity: 0; }
  69% {
    bottom: 10%;
    opacity: 0; }
  70% {
    bottom: 10%;
    opacity: 1; }
  100% {
    bottom: 5%;
    opacity: 0; } }

/*# sourceMappingURL=rp.css.map */
