.guest-bg {
}
.guest-global {
  font-family: "Roboto";
  margin-top: 120px;
  margin-bottom: 48px;
}
.guest-animation {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
/*   gap: 20px; */
  position: relative;
}
.guest-animation-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
/*   box-shadow: 0px 4px 20px 0px #0000000f; */
 }

.guest-animation-list .owl-stage-outer{
	padding-top: 10px;
	padding-bottom: 10px;
}
.guest-animation-item {
  background-color: #fcfcfd;
  border: 1px solid #eaecf0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  min-height: 240px;
  height: 100%;
}
.guest-animation-header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.guest-animation-profile {
  display: flex;
  gap: 4px;
  align-items: center;
  min-width: 0;
}
.guest-animation-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 70px;
}
.guest-animation-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}
.guest-animation-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.guest-name {
  font-weight: 500;
  font-size: 16px;
}
.guest-cv {
  font-size: var(--text-size-1);
  color: #98a2b3;
}
.guest-animation-logo img {
  width: 80px !important;
  height: auto;
  background-size: cover;
  background-position: center;
}
.guest-comment {
  font-size: 16px;
  color: #667085;
}
.guest-date {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.owl-item {
  display: flex !important;
}

.owl-item .guest-animation-item {
  height: 100%;
  flex: 1;
}

.guest-date-icon i {
  font-size: var(--text-size-3);
}
.guest-date-icon i,
.guest-date-text {
  color: #667085;
}

.guest-animation-1,
.guest-animation-2 {
  position: relative;
  overflow: hidden;
}

.guest-animation-1::before,
.guest-animation-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(
      to right,
      rgba(245, 247, 250, 1) 0%,
      rgba(245, 247, 250, 0.8) 40%,
      rgba(245, 247, 250, 0) 100%
    ),
    rgba(245, 247, 250, 0.01);

  pointer-events: none;
  z-index: 10;
}
.guest-animation-1::after,
.guest-animation-2::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;

  background: linear-gradient(
      to left,
      rgba(245, 247, 250, 1) 0%,
      rgba(245, 247, 250, 0.8) 40%,
      rgba(245, 247, 250, 0) 100%
    ),
    rgba(245, 247, 250, 0.01);
  pointer-events: none;
  z-index: 10;
}

.guest-animation-2{
	padding-bottom: 2px;
}

.guest-animation-1 .owl-carousel {
  transform: none !important;
}

.guest-animation-2 .owl-carousel {
  transform: scaleX(-1);
}

.guest-animation-2 .owl-carousel .owl-item {
  transform: scaleX(-1) translateX(-10%);
}

.guest-animation-item {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.guest-animation-item.is-hovered {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.owl-carousel .owl-item img {
  width: 80px !important;
}
@media (max-width: 768px) {
  .guest-global {
    margin-top: 0;
  }
  .guest-animation {
    margin-top: 31px;
  }
  .guest-animation-1::before,
  .guest-animation-2::before,
  .guest-animation-1::after,
  .guest-animation-2::after {
    width: 100px;
  }
}
@media screen and (max-width: 576px) {
  .guest-animation-2 .owl-carousel .owl-item {
    transform: scaleX(-1) translateX(-180px);
  }
}
