.pricing {
  margin: 100px 296px;

  h1 {
    font-family: ClashDisplay-Semibold;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;

    span {
      color: #F36214;
    }
  }

  .options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .change {
      display: flex;
      align-items: center;
      background-color: #22150E;
      border-radius: 53px;
      padding: 8px;
      gap: 16px;

      .section {
        display: flex;
        align-items: center;
        border-radius: 53px;
        padding: 0 29px;
        background-color: transparent;
        gap: 6px;
        cursor: pointer;
        transition: 0.2s ease-in-out;
        height: 50px;

        h2 {
          font-family: Poppins;
          font-weight: 500;
          font-size: 16px;
          line-height: 100%;
          letter-spacing: 0;
          color: #fff;
          margin: 0;
        }

        &:hover {
          background: #F36214;

          svg path {
            fill: #ffffff;
          }
          &:not(:first-child) svg {
            filter: brightness(0) invert(1);
          }
        }
      }

      .active {
        background: #F36214;

        svg path {
          fill: #ffffff;
        }
        &:not(:first-child) svg {
          filter: brightness(0) invert(1);
        }
      }
    }
  }

  .offer {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    .inside {
      width: 32%;
      border-radius: 30px;
      padding: 30px 30px;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      &.border {
        border: 2px solid #FFC21B;
      }

      .maintext {
        display: flex;
        align-items: center;

        h1 {
          font-family: ClashDisplay-Semibold;
          font-weight: 600;
          font-size: 22px;
          line-height: 32px;
          letter-spacing: 1px;
          color: #fff;
        }
        img {
          width: 32px;
          height: 32px;
          margin-right: 7px;
        }
      }

      h2 {
        margin: 0;
        font-family: ClashDisplay-Semibold;
        font-weight: 600;
        font-size: 37.89px;
        line-height: 46.63px;
        letter-spacing: 1px;
        color: #fff;
      }

      span {
        margin: 0;
        font-family: ClashDisplay-Regular;
        font-weight: 400;
        font-size: 16px;
        line-height: 46.63px;
        letter-spacing: 1px;
        color: #fff;
      }

      p {
        margin: 0 0 15px 0;
        font-family: Poppins;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0%;
        color: #fff;
      }

      .info {
        display: flex;
        align-items: center;
        margin-bottom: 10px;

        p {
          margin: 0;
        }
        img {
          margin-right: 15px;
        }
      }

      .button {
        margin-top: 20px;
        border-radius: 50px;
        padding: 17px 69px;
        background: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s ease-in-out;
        cursor: pointer;

        p {
          font-family: ClashDisplay-Semibold;
          font-weight: 600;
          font-size: 18px;
          line-height: 100%;
          letter-spacing: 1px;
          margin: 0;
          color: #F36214;
        }

        &:hover {
          background-color: #c9c9c9;
        }
      }
    }
  }

  .nooffer {
    font-family: ClashDisplay-Medium;
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #f31414;
    margin-top: 30px;
    width: 100%;
  }

  /* --- Mobile (max-width: 768px) --- */
  @media screen and (max-width: 768px) {
    margin: 50px 20px;

    h1 {
      font-size: 28px;
      text-align: center;
    }

    .options {
      flex-direction: column;
      gap: 5px;
      justify-content: center;
      margin-bottom: 20px;

      .change {
        padding: 8px 12px;
        gap: 10px;
        justify-content: center;

        .section {
          padding: 0 8px;
          height: 35px;
          font-size: 14px;

          h2 {
            font-size: 13px;
            letter-spacing: 0;
          }
        }
      }
    }

    .offer {
      flex-direction: column;
      gap: 25px;
      align-items: center;

      .inside {
        width: 90%;
        padding: 25px 20px;
        margin-top: 0;

        h2 {
          font-size: 30px;
          line-height: 38px;
        }

        .button {
          padding: 15px 40px;

          p {
            font-size: 16px;
          }
        }
      }
    }
  }

  /* --- Tablets (min-width: 769px and max-width: 1024px) --- */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    margin: 80px 60px;

    h1 {
      font-size: 32px;
    }

    .options {
      gap: 20px;

      .change {
        .section {
          padding: 0 20px;
          height: 45px;
          font-size: 15px;
        }
      }
    }

    .offer {
      gap: 20px;

      .inside {
        width: 48%;
        padding: 28px 25px;

        h2 {
          font-size: 34px;
        }

        .button {
          padding: 16px 55px;

          p {
            font-size: 17px;
          }
        }
      }
    }
  }

  /* --- Monitors 2k and above (min-width: 2500px) --- */
  @media screen and (min-width: 2500px) {
    margin: 120px 400px;

    h1 {
      font-size: 40px;
    }

    .options {
      gap: 30px;

      .change {
        .section {
          padding: 0 35px;
          height: 55px;
          font-size: 18px;
        }
      }
    }

    .offer {
      gap: 30px;

      .inside {
        width: 30%;
        padding: 35px 40px;

        h2 {
          font-size: 40px;
        }

        .button {
          padding: 20px 75px;

          p {
            font-size: 20px;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 400px) {
  .pricing {
    margin: 40px 10px;

    h1 {
      font-size: 24px;
      text-align: center;
    }

    .options {
      flex-direction: column;
      gap: 8px;
      margin-bottom: 15px;

      .change {
        padding: 6px 10px;
        gap: 8px;
        justify-content: center;

        .section {
          padding: 0 6px;
          height: 30px;

          h2 {
            font-size: 12px;
          }
        }
      }
    }

    .offer {
      flex-direction: column;
      gap: 20px;
      align-items: center;

      .inside {
        width: 100%;
        padding: 20px 15px;
        margin-top: 0;

        h2 {
          font-size: 24px;
          line-height: 32px;
        }

        .button {
          padding: 12px 30px;

          p {
            font-size: 14px;
          }
        }
      }
    }

    .nooffer {
      font-size: 14px;
      margin-top: 20px;
    }
  }
}

@media screen and (min-width: 401px) and (max-width: 440px) {
  .pricing {
    margin: 45px 12px;

    h1 {
      font-size: 26px;
      text-align: center;
    }

    .options {
      flex-direction: column;
      gap: 10px;
      margin-bottom: 18px;

      .change {
        padding: 7px 12px;
        gap: 10px;
        justify-content: center;

        .section {
          padding: 0 8px;
          height: 32px;

          h2 {
            font-size: 13px;
          }
        }
      }
    }

    .offer {
      flex-direction: column;
      gap: 22px;
      align-items: center;

      .inside {
        width: 95%;
        padding: 22px 18px;
        margin-top: 0;

        h2 {
          font-size: 26px;
          line-height: 34px;
        }

        .button {
          padding: 14px 35px;

          p {
            font-size: 15px;
          }
        }
      }
    }

    .nooffer {
      font-size: 15px;
      margin-top: 22px;
    }
  }
}
