.elementor-1194 .elementor-element.elementor-element-f06ef94{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-1194 .elementor-element.elementor-element-02e7ded{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-6d073fb *//* From Uiverse.io by JaydipPrajapati1910 */
.button {
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  gap: 10px;
  padding: 0px 15px;
  background: rgba(255, 255, 255, 0.1); /* شفافیت پس‌زمینه */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2); /* حاشیه شفاف */
  color: white;
  position: relative;
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  transition-duration: 0.2s;
  backdrop-filter: blur(10px); /* ایجاد افکت شیشه‌ای */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* سایه شیشه‌ای */
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)); /* گرادیان شفاف */
}

.button:before, .button:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 15px;
  background: linear-gradient(45deg, rgba(19, 237, 28, 0.5), rgba(0, 0, 255, 0.5)); /* گرادیان شامل رنگ #13ed1c */
  background-size: 300%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 15s linear infinite;
  margin: auto;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.button:after {
  filter: blur(10px);
}

.button:hover {
  background: #13ed1c; /* تغییر رنگ پس‌زمینه به #13ed1c در حالت هاور */
  color: white;
  border: 1px solid #13ed1c; /* تغییر رنگ حاشیه در حالت هاور */
}

/* تنظیمات برای گوشی‌ها */
@media (max-width: 768px) {
  .button {
    width: 200px; /* طول بیشتر برای گوشی */
    height: 50px; /* عرض بیشتر برای گوشی */
    font-size: 16px; /* اندازه فونت بزرگ‌تر */
    margin: auto;
  }
}
/* سایز آیکون‌ها در نمایشگرهای بزرگ‌تر */
.btn i {
    font-size: 30px; /* سایز آیکون‌ها در حالت عادی */
}

/* سایز آیکون‌ها برای گوشی‌ها و نمایشگرهای کوچک‌تر */
@media (max-width: 768px) {
    .btn i {
        font-size: 20px; /* سایز کوچک‌تر آیکون برای موبایل */
    }
}

.tab-content {
    display: none;
}

.active {
    display: block;
}/* End custom CSS */