/* Add custom CSS styles below */ 
/* Start Brands */
.box-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.box-img::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;

 background: linear-gradient(
    90deg,
    #3b2a21,
    #6b4f3a,
    #c8a27a,
    #8a5a3b,
    #4a3327,
    #c8a27a
  );

  background-size: 300% 300%;
  animation: goldBorderMove 5s linear infinite;

  -webkit-mask: linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: 10;
}

@keyframes goldBorderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
/* End Brands */
/* Start Questions */
.faqs-list__item {
    background-color:white;
    border:1px solid#cba864;
}
/* End Questions */
/* Start side menu */
.lazy__bg.lazy_menu {
    height: 3.5rem;
    width: 3.5rem;
}
@media (min-width: 768px) {
    .lazy__bg.lazy_menu {
        height: 5rem;
        width: 5rem;
    }
}
/* End side menu */