:root {
  --container-wide: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100% !important;
  /* background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);*/
  background-attachment: fixed;
}
body {
  height: 100% !important;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100% !important;
  font-size: 16px;
  line-height: 1.5;

  
}

.home, .home .main-home-page {
	background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);
	color: #fff; 
}
.main-home-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  padding: 25px 0px 5px 0px;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

.hero-headline {
  font-weight: 900;
}

p {
  padding: 15px 0px;
}

img {
  max-width: 100%;
  object-fit: cover;
}

.et-container {
  width: 100%;
  max-width: var(--container-wide);
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.et-container.et-sm {
  --container-wide: 500px;
}

.et-container.et-md {
  --container-wide: 768px;
}

.et-container.et-lg {
  --container-wide: 998px;
}

.et-container.et-xl {
  --container-wide: 1200px;
}

.et-hero-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mt-15 {
  margin-top: 15px;
}
.home button,
.home .btn {
  position: relative;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, rgb(188 52 255), rgb(75 79 255));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 28px rgba(78, 52, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* hover */
.home  button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(78, 52, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* active */
.home  button:active,
.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(78, 52, 255, 0.35), inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* focus */
.home  button:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 75, 255, 0.35), 0 12px 28px rgba(78, 52, 255, 0.35);
}

.et-hero-section {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

/* background container */
.bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.et-hero-content {
  position: relative;
  z-index: 1;
}
/* shared shape base */
.shape {
  position: absolute;
  animation: float 12s ease-in-out infinite;
  opacity: 0.6;
}

/* triangle base */
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
}

/* triangle sizes */
.triangle.small {
  border-width: 55px 50px 0 14px;
  border-color: #4be4ff transparent transparent transparent;
  top: 30%;
  left: 40%;

  animation-duration: 10s;
}

.triangle.medium {
  border-width: 32px 26px 0 26px;
  border-color: #ff5234 transparent transparent transparent;
  top: 55%;
  left: 70%;
  animation-duration: 14s;
}

/* circle base */
.circle {
  border-radius: 50%;
  border-style: solid;
  animation-name: float-rotate;
}

/* circle sizes */
.circle.small {
  width: 100px;
  height: 100px;
  border-width: 2px;
  border-color: #ff7ad9;
  top: 30%;
  left: 75%;
  animation-duration: 11s;
}

.circle.medium {
  width: 80px;
  height: 80px;
  border-width: 3px;
  border-color: #6cf2c2;
  top: 65%;
  left: 25%;
  animation-duration: 16s;
}

a,
a:not(.btn):active,
a:not(.btn):hover,
a:not(.btn):visited {
  text-transform: none;
  text-decoration: none;
}
a:not(.btn) {
  color: #222;
}

a:not(.btn):hover {
  background: linear-gradient(135deg, #4e34ff, #ff4b4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes float-rotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
ul {
  list-style: none;
}

header ul li a {
  color: #ffffff91;
}

header {
  background: #fff;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

header > a {
  display: flex;
  align-items: center;
}

header nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: inherit;
}

header ul {
  display: flex;
  align-items: center;
  min-height: inherit;
  margin-left: auto;
}
header ul li.has-dropdown {
  position: relative;
}
header ul li.has-dropdown > a::after {
  content: '\e800';
  font-size: 9px;
  margin-left: 5px;
  font-family: 'eratags-icons';
}

header ul li {
  position: relative;
}

header ul li .dropdown {
  background-color: #fff;
  border-radius: 2px;

  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  position: absolute;
  top: 100%;
  /* animation */
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

header > nav > ul > li > .dropdown a {
  display: block;
}

header > nav > ul > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header > nav > ul > li a {
  padding: 10px;
  display: block;
}

header > nav > ul li .dropdown li:not(:last-child) a {
  border-bottom: 1px solid #eee;
}

header ul li .dropdown li,
header ul li .dropdown li a {
  width: 100%;
  display: block;
  font-size: 85%;
}

header ul li .dropdown.right {
  right: 0;
}

header .et-icon {
  display: none;
}
header nav ul li a:hover,
.social-media li a:hover {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff !important;
}

@media only screen and (max-width: 980px) {
  header .et-icon {
    display: flex;
    cursor: pointer;
  }

  header nav {
    border-top: 1px solid #ffffff21;
    display: none;
    background: #fff;
    position: absolute;
    top: 100%;
    z-index: 5;
    left: 0;
    right: 0;
    padding: 20px;
  }

  header.nav-open nav {
    display: block;
  }

  header nav ul {
    width: 100%;
    display: block;
  }

  header nav ul li {
    width: 100%;
    display: block;
    min-height: unset;
    text-align: center;
  }

  /* dropdown behavior on mobile */
  header ul li .dropdown {
    position: relative;
    width: 100%;
    overflow: hidden;
    opacity: unset;
    visibility: unset;
    display: none;
    margin-top: 5px;
    box-shadow: none;
  }
  header ul li .dropdown li:not(:last-child) {
    margin: 0;
    padding: 0;
  }

  header ul li.open {
    visibility: unset;
  }

  header nav ul li a,
  header nav ul li a:hover {
    color: #4e34ff !important;
  }
}

.social-media {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.social-media li a {
  font-size: 17px;
  color: #fffefe9b;
}

.rights-footer {
  text-align: center;
  width: 100%;
  padding: 10px 0;
	margin-top: 100px;
}

header {
  border-bottom: 1px solid #ffffff10;
}

.page-content ul {
  list-style: circle;
  padding-left: 20px;
}

.page-template-page-product-layout-1,
.page-template-page-product-layout-1 main {
  background-color: #fff;
}

.page-template-page-product-layout-1 header:first-child {
  background: #fff !important;
}

.page-template-page-product-layout-1 .rights-footer {
  background: #504360 !important;
}

.page-template-page-product-layout-1 h1,
.page-template-page-product-layout-1 h2,
.page-template-page-product-layout-1 h3,
.page-template-page-product-layout-1 h4,
.page-template-page-product-layout-1 h5,
.page-template-page-product-layout-1 h6 {
  color: #222;
}

.page-template-page-product-layout-1 .product-data p {
  padding-top: 5px;
  color: #a1a1a1;
}

.page-template-page-product-layout-1 .product-data h5 {
  color: #504360;
}

.page-template-page-product-layout-1 .product-pages .section-headline h2 {
  padding: 0;
  color: #504360;
}
.page-template-page-product-layout-1 .product-pages .section-headline {
  text-align: center;
  padding: 50px 0 15px 0;
  color: #a1a1a1;
}

/* Hero Section */
.product-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f4f3f3;
  color: #fff;
  padding: 50px 20px;
  position: relative;
}

/* Container inside hero */
.product-hero .container {
  max-width: 800px;
}

.brand-logo {
  display: flex;
}
.brand-logo img {
  height: auto;
  width: 50px;
}

/* Badge */
.product-badge {
  display: inline-block;
  background-color: rgba(172, 172, 172, 0.2);
  color: #504360;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Main Title */
.product-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.product-hero img {
  width: 180px;
  display: block;
  margin: 20px auto;
}

/* Subtitle / Description */
.product-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #504360;
}

/* Responsive */
@media (max-width: 768px) {
  .product-title {
    font-size: 2.25rem;
  }
  .product-subtitle {
    font-size: 1rem;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}
[class^='col-'] {
  padding-inline: 12px;
  width: 100%;
}

/* SM ≥576px */
@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.333%;
  }
  .col-sm-2 {
    width: 16.666%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.333%;
  }
  .col-sm-5 {
    width: 41.666%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333%;
  }
  .col-sm-8 {
    width: 66.666%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.333%;
  }
  .col-sm-11 {
    width: 91.666%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

/* LG ≥768px */
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.333%;
  }
  .col-md-2 {
    width: 16.666%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333%;
  }
  .col-md-5 {
    width: 41.666%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333%;
  }
  .col-md-8 {
    width: 66.666%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.333%;
  }
  .col-md-11 {
    width: 91.666%;
  }
  .col-md-12 {
    width: 100%;
  }
}

/* LG ≥992px */
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.333%;
  }
  .col-lg-2 {
    width: 16.666%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333%;
  }
  .col-lg-5 {
    width: 41.666%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333%;
  }
  .col-lg-8 {
    width: 66.666%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.333%;
  }
  .col-lg-11 {
    width: 91.666%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

/* XL ≥1200px */
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.333%;
  }
  .col-xl-2 {
    width: 16.666%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.333%;
  }
  .col-xl-5 {
    width: 41.666%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.333%;
  }
  .col-xl-8 {
    width: 66.666%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.333%;
  }
  .col-xl-11 {
    width: 91.666%;
  }
  .col-xl-12 {
    width: 100%;
  }
}

.space-between {
  padding: 30px;
}

.product-data {
  position: relative;
  background: #fff;
  padding: 35px;
  border-radius: 14px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

  box-shadow: 0 12px 28px rgba(78, 52, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-data:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(78, 52, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-data p {
  color: #646464;
}
.mlr--10 {
  margin-left: -10px;
  margin-right: -10px;
}

.product-data a {
  position: relative;
  display: block;
  color: #504360;
}

.product-data a img {
  position: relative;
  z-index: 0;
}

.product-pages {
  padding-top: 35px;
  padding-bottom: 35px;
}
.product-data a.go-to .et-icon::before {
  transform: rotate(-30deg);
}

.product-data a.go-to .et-icon {
  background: #504360;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  z-index: 5;
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0.7;
  border-radius: 7px;
  font-size: 10px;
  visibility: hidden;
  transform: scale(0.5);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.product-data a.go-to:hover {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff;
}

.product-data:hover a .et-icon {
  opacity: 1;
  transform: scale(1.1);
  visibility: visible;
}

.btn {
  display: inline-block;
}

.rights-footer ul {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.home .rights-footer ul li a, 
.home .rights-footer ul li a:hover {
	color: #fff !important;
	
}









/*SupportCandy*/
/* =================================================
   SupportCandy – Full Width White + Gradient UI
   ================================================= */

/* Remove boxed layout */
#wpsc-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 24px 0px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111827;
}

/* Remove plugin backgrounds */
.wpsc-header,
.wpsc-body,
.wpsc-sidebar,
.wpsc-ticket,
.wpsc-filter-container,
.wpsc-search {
  background: #ffffff;
  border: none;
  border-radius: 0;
}

/* ================= Sidebar / Menu ================= */

.wpsc-menu-list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  color: #111827;
  transition: all 0.25s ease;
}

.wpsc-menu-list:hover {
  background: rgba(79, 70, 229, 0.08);
}

.wpsc-menu-list.active {
  background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);
  color: #ffffff;
}

/* ================= Buttons ================= */

.wpsc-button,
.wpsc-btn {
  background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpsc-button:hover,
.wpsc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.35);
}

/* ================= Search ================= */

.wpsc-search .search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 16px;
  background: #ffffff;
}

.wpsc-search-input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  outline: none;
}

/* ================= Filters ================= */

.wpsc-filter-container {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.wpsc-filter-item label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.wpsc-filter-item select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

/* ================= Tickets ================= */

.wpsc-ticket {
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}

.wpsc-ticket:hover {
  background: rgba(79, 70, 229, 0.04);
}

/* ================= Status / Labels ================= */

.wpsc-status-label,
.wpsc-priority-label {
  background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= Tabs ================= */

.wpsc-tabs li a {
  padding: 12px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

.wpsc-tabs li.active a,
.wpsc-tabs li a:hover {
  background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);
  color: #ffffff;
  border-color: transparent;
}

/* ================= Popover ================= */

.wpsc-popover-menu {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= Pagination ================= */

.wpsc-pagination-btn {
  border-radius: 12px;
  padding: 8px 14px;
}

.wpsc-pagination-btn.active,
.wpsc-pagination-btn:hover {
  background: linear-gradient(135deg, #4e34ff 0%, #7f4bff 100%);
  color: #ffffff;
}

/* ================= Mobile ================= */

@media (max-width: 768px) {
  #wpsc-container {
    padding: 16px;
  }

  .wpsc-filter-container {
    flex-direction: column;
  }
}
.wpsc-button, .wpsc-btn {
	background: #fff;
	border-color: #ddd;
}

.wpsc-shortcode-container {
	border: 1px solid #e9e9e9 !important;
}

