.demo_mobile {
  padding: 120px 0;
}
@media only screen and (max-width: 860px) {
  .demo_mobile {
    padding: 50px 0;
  }
}
.demo_mobile .container .content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1620px) {
  .demo_mobile .container .content {
    gap: 0;
  }
}
.demo_mobile .container .content .item {
  border: 16px solid #261f1f;
  border-radius: 40px;
  width: 283px;
  height: 608px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@media only screen and (max-width: 860px) {
  .demo_mobile .container .content .item {
    width: 243px;
    height: 500px;
    border: 10px solid #261f1f;
    border-radius: 20px;
  }
}
.demo_mobile .container .content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.demo_mobile .container .content .item.animated {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 1400px) {
  .demo_mobile .container .content {
    display: block;
  }
  .demo_mobile .container .content .item {
    display: none;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }
  .demo_mobile .container .content .item:first-child {
    display: block;
  }
  .demo_mobile .demo_slider-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
  }
  .demo_mobile .demo_slider-tabs .tab {
    width: 80px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
  }
  .demo_mobile .demo_slider-tabs .tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #261f1f;
    border-radius: 2px;
  }
  .demo_mobile .demo_slider-tabs .tab.active::before {
    transition: width 10s linear;
    width: 100%;
  }
  .demo_mobile .demo_mobile .item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}/*# sourceMappingURL=demo_mobile.css.map */