#projects_area {
  .slide_container {
    overflow: hidden;
    position: relative;
    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      button{
        border: 0;
        background: $orangeColor;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        font: {
          size: 20px;
          weight: $fontWXL;
        }
      }
    }
  }
  .child_project {
    min-width: 1250px;
    background: $darksColor;
    padding: 30px;
    border-radius: 10px;
    h1 {
      color: $greyColor;
      font: {
        size: 50px;
        weight: 300;
      }
    }
    .content_area {
      display: flex;
      justify-content: space-between;
      .right_side_area {
        flex-basis: 48%;
          .img_area {
          display: flex;
          align-items: center;
          img {
            margin: 10px 20px;
            border-radius: 15px;
          }
          i {
            color: #fff;
            font-size: 30px;
          }
        }
      }
      .left_side_area {
        flex-basis: 48%;
        display: flex;
        flex-direction:column;
        padding: 10px 30px 0;
        color: #fff;
        h2 {
          font: {
            size: 40px;
            weight: $fontWXL;
          }
          line-height: 1em;
          color: $orangeSecondaryColor;
        }
        p {
          font: {
            size: 15px;
            weight: $fontWSM;
          }
          line-height: 1.2rem;
        }
        ul {
          padding-left: 10px;
          li {
            border-bottom: 1px solid white;
            padding: 15px 0;
            position: relative;
            span {
              position: absolute;
              top: 15px;
              right: 5px;
            }
          }
          li:nth-child(1) {
            color: $orangeColor;
          }
        }
        .demo_area {
          margin-top: 20px;
          a {
            display: inline-block;
            padding: 10px 25px;
            background: $orangeColor;
            color: $whiteColor;
            border-radius: 5px;
            transition: 0.5s;
            font: {
              size: 18px;
              weight: $fontWSM;
            }
            &:hover {
              background: $orangeSecondaryColor;
            }
          }
        }
      }
    }
  }
}
