@keyframes upDownSmoothFAQFloatingImg {
  0%, 100% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-24px);
  }
}
.faq-6-col-section {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 88px 0;
}
.faq-6-col-section__floating-image {
  position: absolute;
  bottom: -120px;
  left: 60%;
  width: 208px;
  height: 208px;
  z-index: 1;
}
.faq-6-col-section__floating-image img {
  max-width: 100%;
  max-height: 100%;
}
.rtl .faq-6-col-section__floating-image {
  left: auto;
  right: 60%;
}
.faq-6-col-section__floating-image-2 {
  position: absolute;
  bottom: 120px;
  left: -72px;
  width: 139px;
  height: 127px;
  animation: upDownSmoothFAQFloatingImg 2s ease-in-out infinite;
  z-index: 1;
}
.faq-6-col-section__floating-image-2 img {
  max-width: 100%;
  max-height: 100%;
}
.rtl .faq-6-col-section__floating-image-2 {
  left: auto;
  right: -72px;
}
@media (max-width: 991px) {
  .faq-6-col-section {
    height: auto;
  }
  .faq-6-col-section__floating-image, .faq-6-col-section__floating-image-2 {
    display: none;
  }
}
