
#pricing_area {
  .tabs {
      display: flex;
      justify-content: center;
      .tab-button {
        background: $orangeColor;
        border: none;
        margin-left: 20px;
        border-radius: 5px;
        color: $whiteColor;
        padding: 10px 20px;
        cursor: pointer;
        transition: background-color 0.5s ease;
        font: {
          size: 25px;
        }
      }
      .tab-button.active {
        background: $darksColor;
      }
    }
    .tab_content {
      padding: 10px;
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: transform 0.5s ease;
      .tab-card {
        flex-basis: 32%;
        background: $darksColor;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
        padding: 50px;
        color: $whiteColor;
        margin-top: 20px;
        transition: 0.5s;
        &:hover {
          margin-top: 0px;
        }
        h2{
          text-align: left;
          border-bottom: 1px solid $orangeColor;
          padding-bottom: 10px;
          margin-bottom: 25px;
          font: {
            size: 40px;
            weight: $fontWXL;
          }
        }
        h1 {
          font: {
            size: 60px;
            weight: $fontWXL;
          }
          color: $orangeColor;
          margin-bottom: 0px;
        }
        span {
          font-size: 30px;
          font-weight: $fontWMD;
          color: $whiteColor;
        }
        ul {
          padding: 10px;
          li {
            font: {
              size: 18px;
              weight: $fontWMD;
            }
             margin-bottom: 20px;
          }
        }
        p {
          margin: 0;
          margin-top: 15px;
          display: inline-block;
          box-shadow: 0 0 10px #ddd;
          a {
            background: $orangeColor;
            padding: 15px 30px;
            border-radius: 10px;
            color: $whiteColor;
          }
        }
      }
    }
    .tab_content.active {
      display: flex;
      opacity: 1;
      transform: translateY(0px);
      transition: 0.5s;
    }
    .tab_content:nth-child(2) .tab-card {
      background: #3d3d3d;
    }
    .tab_content:nth-child(3) .tab-card {
      background: #2d3436;
    }
  }
