

.wrap {
  background: linear-gradient(0deg, var(--color-base-1), white);
}
.article-line {
  flex: 0;
  min-width: 8rem;
  margin-bottom: -5vw;
}
html, body {
  width: 100%;
  height: 100%;
}
.vline {
  border-left: 3px solid var(--color-base-2);
  width: 50%;
  height: 100%;
}
.mx-auto {
  margin: auto;
}
.article-wrapper {
  background: white;
  border-radius: 25px;
  display: flex;
  padding: 2rem;
}
@media screen and (min-width: 960px) {
  .article-wrapper {
    background: white;
    border-radius: 50px;
    display: flex;
    padding: 5vw 8rem;
  }
}
.wrapper {
  background: var(--color-base-0);
  overflow: hidden;
  padding-bottom: 5rem;
}
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link-hover);
}
.bumper {
  padding: 1rem;
}
.to-animate {
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 10rem, 0) skewY(0);
  -ms-transform: translate3d(0, 10rem, 0) skewY(0);
  -webkit-transform: translate3d(0, 10rem, 0) skewY(0);
  transform: translate3d(0, 10rem, 0) skewY(0);
  -moz-transition: all 0.7s cubic-bezier(0.15, 0.9, 0.34, 0.95) 0.2s;
  -o-transition: all 0.7s cubic-bezier(0.15, 0.9, 0.34, 0.95) 0.2s;
  -webkit-transition: all 0.7s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-transition-delay: 0.2s;
  transition: all 0.7s cubic-bezier(0.15, 0.9, 0.34, 0.95) 0.2s;
}
.remove-animate {
  opacity: 1;
  visibility: visible;
}
.to-animate.animate-in {
  opacity: 1;
  visibility: visible;
  -moz-transform: translate3d(0, 0, 0) skewY(0deg);
  -ms-transform: translate3d(0, 0, 0) skewY(0deg);
  -webkit-transform: translate3d(0, 0, 0) skewY(0deg);
  transform: translate3d(0, 0, 0) skewY(0deg);
}
.line-container {
  margin: 1rem 0 1rem 0;
}
.line {
  display: block;
}
.line-vertical {
  position: relative;
  top: 0;
  height: 22rem;
  left: 50%;
  z-index: 1;
  width: 2px;
}
.line-vertical span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-line-default);
  background: var(--color-line-radial);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0%);
  clip-path: polygon(0 0, 100% 0%, 100% 0%, 0 0%);
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.line-vertical.anim span {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
/* START POINTS LINES*/
/*END POINTS LINES*/
.line:before {
  background-color: var(--color-line-start);
  z-index: 1;
}
.line:after {
  background-color: var(--color-line-end);
}
.line-start-circle:before {
  content: "";
  display: block;
  position: absolute;
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 50%;
  left: -0.6rem;
  top: -0.7rem;
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  transform-origin: center;
}
.line-start-circle.anim:before {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.line-end-circle:after {
  content: "";
  display: block;
  position: absolute;
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 50%;
  left: -0.6rem;
  bottom: -0.7rem;
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.6s;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  transform-origin: center;
}
.line-end-circle.anim:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.line-end-rhombus:after {
  content: "";
  display: block;
  position: absolute;
  height: 1.4rem;
  width: 1.4rem;
  left: -0.6rem;
  bottom: -0.7rem;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.6s;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -moz-transform: rotate(45deg) translateZ(0);
  -ms-transform: rotate(45deg) translateZ(0);
  -webkit-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0);
  transform-origin: center;
}
.line-end-rhombus.anim:after {
  opacity: 1;
  visibility: visible;
}
.line-end-square:after {
  content: "";
  display: block;
  position: absolute;
  height: 1.4rem;
  width: 1.4rem;
  left: -0.6rem;
  bottom: -0.7rem;
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.6s;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.6s;
  -moz-transform: scale(0) translateZ(0);
  -ms-transform: scale(0) translateZ(0);
  -webkit-transform: scale(0) translateZ(0);
  transform: scale(0) translateZ(0);
  transform-origin: center;
}
.line-end-square.anim:after {
  -moz-transform: scale(1) translateZ(0);
  -ms-transform: scale(1) translateZ(0);
  -webkit-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
}

/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:template-article] [141.3886] DESIGN*/
/*******************************************************************/
/* 0.2 D>D */
/* db 164 */