/*---------------------feedback-section---------------------*/
.feedback-section {
  height: 38.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-section__content {
  width: 79.6875rem;
  height: 23.25rem;
  position: relative;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.feedback-section__content img.feedback-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.feedback-section__content img.feedback-section__background-mb {
  display: none;
}

.feedback-section__content .feedback-section__title {
  color: var(--text-text-oxford-blue-0, #fff);
  text-align: center;
  font-size: var(--font-size-H2, 3rem);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 3.6rem */
  letter-spacing: 0.01563rem;
  margin-bottom: 0.88rem;
  z-index: 1;
}

.feedback-section__content p.feedback-section__description {
  color: var(--text-text-oxford-blue-0, #fff);
  text-align: center;
  font-size: var(--font-size-sub1, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 1.6rem */
  letter-spacing: 0.03125rem;
  width: 38.76463rem;
  margin-bottom: 2rem;
  z-index: 1;
}

.feedback-section__content a.feedback-section__link {
  display: flex;
  min-width: 8.0625rem;
  padding: var(--16, 1rem) var(--32, 2rem);
  justify-content: center;
  align-items: center;
  gap: var(--8, 0.5rem);
  border-radius: var(--4, 0.25rem);
  background: var(--Primary-color-Tangerine-red, #ff4e41);
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.feedback-section__content a.feedback-section__link span {
  color: var(--text-text-oxford-blue-0, #fff);
  font-size: var(--font-size-sub1, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  letter-spacing: 0.00938rem;
}

.feedback-section__content a.feedback-section__link img {
  width: 1rem;
  height: 1rem;
}
.feedback-section__content a.feedback-section__link i {
	font-size: 0.875rem;
	color: var(--text-white)
}
.feedback-section__content a.feedback-section__link:hover {
  background: var(--palette-tangerine-red-normal-hover, #e6463b);
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 639.9px) {
  .feedback-section {
    background: var(--color-light-gray-blue-02);
    height: fit-content;
    padding: 3rem 1.31rem;
  }

  .feedback-section__content img.feedback-section__background-mb {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: block;
    position: absolute;
    object-fit: cover;
    z-index: 1;
  }

  .feedback-section__content .feedback-section__title {
    font-size: 1.75rem;
    width: 17rem;
  }

  .feedback-section__content p.feedback-section__description {
    width: 17rem;
    color: var(--Text-Ramp-inverse-80, rgba(255, 255, 255, 0.8));
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    /* 1.4rem */
    letter-spacing: 0.03125rem;
    margin-bottom: 2rem;
  }

  .feedback-section__content a.feedback-section__link {
    padding: var(--12, 0.75rem) 1.5rem;
  }

  .feedback-section__content a.feedback-section__link span {
    color: var(--text-text-oxford-blue-0, #fff);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    /* 171.429% */
    letter-spacing: 0.00938rem;
  }

  .feedback-section__content a.feedback-section__link img {
    display: none;
  }
}

/*---------------------end-feedback-section---------------------*/
