/* common styles !!!YOU DON'T NEED THEM  */
  h1 {
    margin: 0;
    font-weight: 400;
    font-size: 35px;
  }
  h1 span {
    font-family: "Kaushan Script", cursive;
    color: #A42CD6;
  }
  
  .submenu {
    display: flex;
    justify-content: center;
    margin: 10px auto 0;
  }
  
  .submenu__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .submenu__item:not(:last-child) {
    margin-right: 30px;
  }
  .submenu__item a {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    color: inherit;
    text-decoration: none;
  }
  .submenu__item a:hover {
    color: #A42CD6;
  }
  .submenu__item a i {
    color: #A42CD6;
    margin-right: 5px;
  }
  
  .content-block {
    margin-top: 50px;
  }
  .content-block h2 {
    margin-bottom: 30px;
    font-weight: 400;
  }
  
  .content-block__effect {
    margin-bottom: 50px;
  }
  
  .progress-container {
    margin-bottom: 30px;
  }
  
  .play-animation {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    padding: 5px 15px;
    margin: auto;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 2px solid #1c1c1c;
    border-radius: 4px;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    cursor: pointer;
  }
  .play-animation:hover {
    color: #fff;
    background-color: #1c1c1c;
  }
  
  /* progress bar styles !!!YOU NEED THEM */
  .progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .progress-bar {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }
  .progress-bar:not(:last-child) {
    margin-bottom: 35px;
  }
  
  .progress-bar--lg-offset:not(:last-child) {
    margin-bottom: 52.5px;
  }
  
  .progress-bar__bar,
  .progress-bar__bar-inner,
  .progress-bar__value,
  .progress-bar__skill {
    box-sizing: border-box;
  }
  
  .progress-bar__bar {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  .progress-bar__bar--no-overflow {
    overflow: visible;
  }
  
  .progress-bar__bar-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
  }
  .progress-bar__bar-inner.js-animated {
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.1, 1.14, 0.31, 1.06);
    transition-delay: 0s;
    transform: scaleX(1);
  }
  
  .progress-bar__skill,
  .progress-bar__value {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .progress-bar__value--aligned-value {
    transform: translateX(-50%);
  }
  
  /* progress bar #1 styles */
  .progress-bar--1 {
    height: 20px;
    padding: 4px;
    border: 1px solid #dddddd;
    border-radius: 20px;
  }
  
  .progress-bar__bar-inner--1 {
    background-image: linear-gradient(to right, #124b91 0, #5e98df 100%);
    background-size: 200%;
    background-position: 0 0;
    border-radius: 20px;
  }
  
  .progress-bar__skill--1 {
    position: absolute;
    top: -27px;
    left: -20px;
    opacity: 0;
  }
  .progress-bar__skill--1.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    left: 0;
    opacity: 1;
  }
  
  .progress-bar__value--1 {
    position: absolute;
    top: -27px;
    right: -20px;
    opacity: 0;
  }
  .progress-bar__value--1.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    right: 0;
    opacity: 1;
  }
  
  /* progress bar #2 styles */
  .progress-bar--2 {
    height: 20px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  
  @-webkit-keyframes progress-2-bg-animation {
    0% {
      background-position: 0 0, 0 0;
    }
    100% {
      background-position: 0 0, 42px 0;
    }
  }
  
  @keyframes progress-2-bg-animation {
    0% {
      background-position: 0 0, 0 0;
    }
    100% {
      background-position: 0 0, 42px 0;
    }
  }
  .progress-bar__bar-inner--2 {
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.2)), linear-gradient(135deg, #5EEB5B, #5EEB5B 33%, #358600 33%, #358600 66%, #5EEB5B 66%);
    background-size: 100% 100%, 42px 100%;
    background-position: 0 0, 0 0;
    border-radius: 3px;
  }
  .progress-bar__bar-inner--2.js-animated {
    -webkit-animation: progress-2-bg-animation 1.5s linear 0s infinite;
            animation: progress-2-bg-animation 1.5s linear 0s infinite;
  }
  
  .progress-bar__skill--2 {
    position: absolute;
    top: -33px;
    left: 0;
    opacity: 0;
  }
  .progress-bar__skill--2.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: -23px;
    opacity: 1;
  }
  
  .progress-bar__value--2 {
    position: absolute;
    top: -33px;
    right: 0;
    opacity: 0;
  }
  .progress-bar__value--2.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: -23px;
    opacity: 1;
  }
  
  /* progress bar #3 styles */
  .progress-bar--3 {
    height: 5px;
    background-color: #efefef;
  }
  .progress-bar--3:nth-child(1) .progress-bar__bar-inner,
  .progress-bar--3:nth-child(1) .progress-bar__value {
    background-color: #F40076;
  }
  .progress-bar--3:nth-child(1) .progress-bar__bar-inner:after,
  .progress-bar--3:nth-child(1) .progress-bar__value:after {
    border-top-color: #F40076;
  }
  .progress-bar--3:nth-child(2) .progress-bar__bar-inner,
  .progress-bar--3:nth-child(2) .progress-bar__value {
    background-color: #1A936F;
  }
  .progress-bar--3:nth-child(2) .progress-bar__bar-inner:after,
  .progress-bar--3:nth-child(2) .progress-bar__value:after {
    border-top-color: #1A936F;
  }
  .progress-bar--3:nth-child(3) .progress-bar__bar-inner,
  .progress-bar--3:nth-child(3) .progress-bar__value {
    background-color: #2274A5;
  }
  .progress-bar--3:nth-child(3) .progress-bar__bar-inner:after,
  .progress-bar--3:nth-child(3) .progress-bar__value:after {
    border-top-color: #2274A5;
  }
  
  .progress-bar__skill--3 {
    position: absolute;
    top: -24px;
    left: -20px;
    opacity: 0;
  }
  .progress-bar__skill--3.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    left: 0;
    opacity: 1;
  }
  
  .progress-bar__value--3 {
    position: absolute;
    top: -43px;
    display: inline-block;
    padding: 3px 8px;
    font-size: 10px;
    color: #fff;
    opacity: 0;
  }
  .progress-bar__value--3:after {
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: block;
    width: 0;
    height: 0;
    content: "";
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top: 5px solid;
  }
  .progress-bar__value--3.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.45s;
    top: -33px;
    opacity: 1;
  }
  
  /* progress bar #4 styles */
  .progress-bar--4 {
    height: 3px;
    background-color: #efefef;
  }
  
  .progress-bar__bar-inner--4 {
    background-color: #000;
  }
  .progress-bar__bar-inner--4:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    transform: translateY(-50%);
    background-color: #000;
    border-radius: 50%;
  }
  
  .progress-bar__value--4 {
    position: absolute;
    top: -22px;
    font-size: 10px;
    opacity: 0;
  }
  .progress-bar__value--4.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.45s;
    opacity: 1;
  }
  
  .progress-bar__skill--4 {
    position: absolute;
    top: -22px;
    left: -20px;
    opacity: 0;
  }
  .progress-bar__skill--4.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    left: 0;
    opacity: 1;
  }
  
  /* progress bar #5 styles */
  .progress-bar--5 {
    height: 30px;
    background-color: #f7f7f7;
  }
  .progress-bar--5:nth-child(1) .progress-bar__bar-inner {
    background-color: #57B8FF;
  }
  .progress-bar--5:nth-child(2) .progress-bar__bar-inner {
    background-color: #4E148C;
  }
  .progress-bar--5:nth-child(3) .progress-bar__bar-inner {
    background-color: #AF1B3F;
  }
  
  .progress-bar__skill--5 {
    position: absolute;
    top: 50%;
    left: 10px;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0;
  }
  .progress-bar__skill--5.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    opacity: 1;
  }
  
  .progress-bar__value--5 {
    position: absolute;
    top: 50%;
    color: #fff;
    transform: translateX(-100%) translateX(-10px) translateY(-50%);
    opacity: 0;
    z-index: 10;
  }
  .progress-bar__value--5.js-animated {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0.45s;
    opacity: 1;
  }