.feedback {
  margin: 100px 296px;

  h1 {
    font-family: ClashDisplay-Semibold;
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    margin: 0;

    span {
      color: #F36214;
    }
  }

  p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #945833;
    margin: 0 0 50px 0;
  }

  .opinions {
    display: flex;
    align-items: stretch;
    justify-content: space-between;

    .opinion {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 0.5px solid #945833;
      padding: 25px;
      z-index: 1;
      width: 32.5%;
      height: calc(100% + -5px);

      &:nth-child(1),
      &:nth-child(2) {
        margin-right: 30px;
      }
      p {
        margin:0;
      }

      .flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;

        .user {
          display: flex;
          align-items: center;

          .icon {
            margin-right: 5px;

            img {
              width: 28px;
              height: 28px;
              border-radius: 50px;
            }
          }

          p {
            font-family: ClashDisplay-Medium;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 1px;
            text-align: center;
            color: #fff;
            margin: 0;
          }
        }
      }

      .line {
        border: 1px solid #945833;
      }

      p {
        margin-top: 15px;
        font-family: Poppins;
        font-weight: 400;
        font-size: 14px;
        line-height: 183%;
        letter-spacing: 0;
        color: #945833;
      }

      .dc {
        display: inline-block;
        background-color: #23233f;
        color: #91a4fa;
        padding: 0 1px;
        border-radius: 4px;
        font-weight: 500;
        font-family: 'gg sans', 'Noto Sans', sans-serif;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s ease;

        &:hover {
          background-color: #5865f2;
          color: #f9faff;
        }
      }

      .glow {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) translateY(50%);
        width: 70%;
        height: 100%;
        background: radial-gradient(50% 50% at 50% 50%, rgba(243, 98, 20, 0.18) 0%, rgba(10, 13, 25, 0) 100%);
        border-radius: 50%;
        z-index: 0;
        pointer-events: none;
      }
    }
  }

  .counter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;

    p {
      font-family: ClashDisplay-Semibold;
      font-weight: 600;
      font-size: 16px;
      line-height: 100%;
      letter-spacing: 1px;
      color: #fff;
      margin: 0 20px 0 0;

      span {
        color: #F36214;
      }
    }

    .icon {
      margin-left: -15px;
      overflow: hidden;
      border-radius: 50%;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
    }
  }

  /* --- Mobile (max-width: 768px) --- */
  @media screen and (max-width: 768px) {
    margin: 50px 20px;

    h1 {
      text-align: center;
    }

    p {
      margin-top: 5px;
      text-align: center;
    }

    .opinions {
      flex-direction: column;

      .opinion {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 20px;
        padding: 20px;

        .flex .user p {
          font-size: 14px;
        }

        p {
          font-size: 14px;
          line-height: 18px;
        }
      }
    }

    .counter {
      justify-content: center;
      margin-top: 0;

      p {
        font-size: 14px;
        margin-right: 10px;
      }

      .icon {
        width: 30px;
        height: 30px;
        margin-left: -10px;
      }
    }
  }

  /* --- Tablets (min-width: 769px and max-width: 1024px) --- */
  @media screen and (min-width: 769px) and (max-width: 1024px) {
    margin: 80px 60px;

    .opinions {
      flex-wrap: wrap;

      .opinion {
        width: 48%;
        margin-right: 20px;
        margin-bottom: 20px;

        &:nth-child(2) {
          margin-right: 0;
        }

        .flex .user p {
          font-size: 15px;
        }

        p {
          font-size: 14px;
          line-height: 18px;
        }
      }
    }

    .counter {
      p {
        font-size: 15px;
        margin-right: 15px;
      }

      .icon {
        width: 35px;
        height: 35px;
        margin-left: -12px;
      }
    }
  }

  /* --- Monitors 2k and above (min-width: 2500px) --- */
  @media screen and (min-width: 2500px) {
    margin: 120px 400px;

    .opinions {
      .opinion {
        width: 30%;
        padding: 30px;
        border-width: 1px;

        .flex .user p {
          font-size: 18px;
        }

        p {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }

    .counter {
      p {
        font-size: 18px;
        margin-right: 25px;
      }

      .icon {
        width: 45px;
        height: 45px;
        margin-left: -18px;
      }
    }
  }
}

.glide__slides {
  display: flex;
  align-items: stretch;
}

.glide__slide {
  height: auto !important;
  display: flex;
  align-items: stretch;
}

.opinion {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #ff7a18;
  background: radial-gradient(circle at bottom, rgba(255,122,24,0.1), transparent);
}

@media screen and (max-width: 400px) {
  .feedback {
    margin: 40px 12px;

    h1 {
      font-size: 24px;
      text-align: center;

      span {
        color: #F36214;
      }
    }

    p {
      font-size: 13px;
      margin-bottom: 25px;
      text-align: center;
    }

    .opinions {
      flex-direction: column;

      .opinion {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 16px;
        height: auto !important;

        .flex .user p {
          font-size: 13px;
        }

        p {
          font-size: 13px;
          line-height: 18px;
          margin-top: 10px;
        }

        .dc {
          font-size: 12px;
          padding: 0 4px;
        }

        .glow {
          width: 60%;
        }
      }
    }

    .counter {
      justify-content: center;
      margin-top: 10px;

      p {
        font-size: 13px;
        margin-right: 10px;

        span {
          color: #F36214;
        }
      }

      .icon {
        width: 28px;
        height: 28px;
        margin-left: -12px;
      }
    }
  }
}

@media screen and (min-width: 401px) and (max-width: 440px) {
  .feedback {
    margin: 45px 16px;

    h1 {
      font-size: 26px;
      text-align: center;

      span {
        color: #F36214;
      }
    }

    p {
      font-size: 14px;
      margin-bottom: 28px;
      text-align: center;
    }

    .opinions {
      flex-direction: column;

      .opinion {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 18px;
        padding: 18px;
        border-radius: 20px;
        height: auto !important;

        .flex .user p {
          font-size: 14px;
        }

        p {
          font-size: 14px;
          line-height: 20px;
          margin-top: 12px;
        }

        .dc {
          font-size: 13px;
          padding: 0 6px;
        }

        .glow {
          width: 65%;
        }
      }
    }

    .counter {
      justify-content: center;
      margin-top: 12px;

      p {
        font-size: 14px;
        margin-right: 12px;

        span {
          color: #F36214;
        }
      }

      .icon {
        width: 30px;
        height: 30px;
        margin-left: -14px;
      }
    }
  }
}
