  /*---------------------Roots-----------------*/

  :root {
      ---green: #1BB46D;
      ---white: #ffffff;
      ---black: #1F1F5F;
      ---border: #e5e5e5;
      ---paragraph: #919191;
  }

  /*---------------------Roots-----------------*/


  .contact-box {
      max-width: 100%;
      margin: auto;
      border-radius: 14px;
      display: flex;
      overflow: hidden;
      background: #fff;
      margin-top: 100px;
  }

  /* LEFT */
  .contact-left {
      width: 38%;
      min-height: 450px;
      background: linear-gradient(135deg, #008f4b, #18b860);
      padding: 35px;
      position: relative;
      color: #fff;
  }

  .contact-icon {
      width: 70px;
      margin-bottom: 20px;
  }

  .left-content h2 {
      font-size: 60px;
      margin-bottom: 12px;
      font-family: "Bebas Neue", sans-serif;
      margin-top: 20px;
      letter-spacing: 1px;
  }

  .left-content p {
      line-height: 1.6;
      width: 250px;
      font-size: 14px;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .info-item {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .icon {
      font-size: 20px;
  }

  /* RIGHT */
  .contact-right {
      width: 62%;
      padding: 40px;
  }

  .contact-right h2 {
      color: var(---black);
      font-size: 90px;
      font-family: "Bebas Neue", sans-serif;
  }

  .contact-right form {
      display: flex;
      flex-direction: column;
      gap: 18px;
  }

  .contact-right input::placeholder {
      color: var(---black);
      font-weight: 500;
  }

  .contact-right textarea::placeholder {
      color: var(---black);
      font-weight: 500;
  }

  .contact-right input,
  .contact-right textarea {
      width: 100%;
      padding: 25px;
      border: none;
      background: #F8F8F8;
      border-radius: 10px;
      outline: none;
  }

  .contact-right textarea {
      min-height: 130px;
      resize: none;
  }

  .contact-right button {
      width: 200px;
      height: 60px;
      border: none;
      border-radius: 100px;
      color: var(---white);
      background: linear-gradient(90deg, #1BB46D, #016D39);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
  }
  .contact-right button:hover{
          box-shadow: 0px 10px 20px #008f4a80;
  }

  /* Responsive */
  @media (max-width:1450px) {
      .left-content h2 {
          font-size: 50px;
      }

      .contact-right h2 {
          font-size: 70px;
      }
        .left-content p {
      line-height: 1.6;
      width: 250px;
      font-size: 12px;
  }
  }

    @media (max-width:1180px) {
      .left-content h2 {
          font-size: 40px;
      }

      .contact-right h2 {
          font-size: 60px;
      }
        .left-content p {
      line-height: 1.6;
      width: 220px;
      font-size: 12px;
  }
  }

  @media(max-width:992px) {
      .contact-box {
          flex-direction: column;
      }

      .contact-left,
      .contact-right {
          width: 100%;
      }
  }

  @media(max-width:768px) {

      .contact-left,
      .contact-right {
          padding: 25px;
      }

      .left-content h2 {
          font-size: 28px;
      }

      .contact-right button {
          width: 100%;
      }
  }