#footer .sc-reviews__grid.scgr-carousel {
  display: block;
}

#footer .scgr-carousel__viewport {
  overflow: hidden;
  width: 100%;
  transition: height .7s cubic-bezier(.22, .61, .36, 1);
}

#footer .scgr-carousel__track {
  display: flex;
  align-items: flex-start;
  width: 100%;
  will-change: transform;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

#footer .scgr-carousel__panel {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

#footer .scgr-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 16px;
}

#footer .scgr-carousel__button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #81221d;
  border: 1px solid rgba(129, 34, 29, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 3px 12px rgba(32, 35, 38, .07);
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

#footer .scgr-carousel__button:hover,
#footer .scgr-carousel__button:focus-visible {
  color: #fff;
  border-color: #81221d;
  background: #81221d;
  outline: none;
  transform: translateY(-1px);
}

#footer .scgr-carousel__button:focus-visible {
  box-shadow: 0 0 0 3px rgba(129, 34, 29, .18);
}

#footer .scgr-carousel__button svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.scgr-sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
}

@media (max-width: 900px) {
  #footer .scgr-carousel__track {
    flex-direction: column;
  }

  #footer .scgr-carousel__panel {
    flex: 0 0 auto;
    grid-template-columns: 1fr;
  }

  #footer .scgr-carousel__button svg {
    transform: rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  #footer .scgr-carousel__viewport,
  #footer .scgr-carousel__track,
  #footer .scgr-carousel__button {
    transition: none !important;
  }
}
