@media only screen and (min-width: $small) and (max-width: $medium) {
  //Header Area Style
  #header-area {
    .w-10 {
      float: left;
      width: 10%;
      .menu-area {
        display: none;
      }
    }
    .w-70 {
      width: 100%;
      float: none;
      position: relative;
      .menu-bar {
        width: 100%;
        position: absolute;
        top: 60px;
        left: -9999px;
        background: #40407a;
        width: 100%;
        ul {
          width: 100%;
          text-align: left;
          li {
            display: block;
            a {
              width: 100%;
              display: block;
              padding: 10px 10px;
              font: {
                size: 17px;
                weight: $fontWMD;
              }
              &:hover {
                background: $darksColor;
              }
            }
          }
          li:nth-child(1) a {
            color: #fff;
          }
        }
        &.open {
          left: 0px;
        }
      }
    }
    .w-20 {
      width: 90%;
      float: none;
      .my-cv {
        width: 70%;
        margin: 0;
        display: flex;
        justify-content: end;
      }
      .light_mode {
        width: 30%;
        text-align: end;
        margin-right: 20px;
      }
    }
  }

  //Main Area Style
  #main-area {
    padding: 0px 0 0px;
    .icons {
      display: block;
      margin-top: 10px;
    }
    .child_main {
      display: flex;
      flex-direction: column;
      .content {
        padding: 20px;
        order: 2;
        h1 {
          font-size: 60px;
        }
        h3 {
          font-size: 20px;
        }
        p {
          font-size: 14px;
        }
        a {
          font-size: 16px;
        }
      }
      .img-area {
        padding: 20px;
        order: 1;
        img {
          width: 374px;
        }
      }
    }
  }

  //About Area Style
  #about_area {
    .inner {
      flex-direction: column;
    }
    .about_info {
      padding: 20px;
      h4 {
        font-size: 18px;
      }
      h2 {
        font-size: 25px;
      }
      p {
        font-weight: $fontWSM;
      }
    }
    .child_about {
      h2 {
        font-size: 20px;
      }
      h4 {
        font: {
          size: 16px;
          weight: $fontWSM;
        }
      }
    }
  }

  //Service Area Style
  #service_area {
    .child_service {
      flex-direction: column;
      padding: 10px;
      text-align: center;
      h2 {
        display: none;
      }
      p {
        font-size: 12px;
      }
    }
  }

  //Project Area Styling
  #projects_area {
    .slider {
      flex-direction: column;
      .child_project {
        min-width: 96%;
        margin-bottom: 30px;
        padding: 20px;
        h1 {
          font-size: 30px;
        }
        .content_area {
          flex-direction: column;
          img {
            width: 100%;
          }
        }
        .left_side_area h2 {
          font-size: 25px;
        }
        ul li {
          font-size: 15px;
        }
      }
    }
    button {
      display: none;
    }
  }

  //Pricing Area Styling
  #pricing_area {
    .tabs .tab-button {
      font-size: 20px;
      padding: 7px 10px;
    }
    .tab_content {
      flex-direction: column;
      .tab-card {
        margin-bottom: 25px;
      }
    }
  }

  //Contact Area 
  #contact_area {
    .inner {
      flex-direction: column;
    }
    .child_contact {
      margin-bottom: 20px;
      flex-basis: 100%;
      .contact_info {
        padding: 10px;
        flex-basis: 30%;
      }
    }
  }

  //Footer Area 
  .footer-area {
    p {
      padding: 10px;
    }
  }
}

@media only screen and (min-width: 1700px) and (max-width: 1920px) {
  .container {
    width: 1600px;
  }
  #projects_area {
    .slide_container {
      width: 1250px;
    }
  }
}


