/* :: PRELOADER :: */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--darkBlue);
  z-index: 999;
}
.preloader::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(to right,
  #fd004c,
  #fe9000,
  #fff020,
  #3edf4b,
  #3363ff,
  #b102b7,
  #fd004c
  );
  animation: rainbow-move 12s infinite linear alternate;
}
@keyframes rainbow-move {
  100% {
    background-position-x: 4000px;
  }
}


/* ----------------------------------- */

/* :: THEME-NAVBAR :: */


.theme-navbar {
  position: relative;
}
.light-theme .theme-navbar {
  background-color: #FFF;
  border-bottom: 1px solid var(--border);
}

/* notices-bar */
.theme-navbar .notices-bar {
  background-color: #ffe05d;
}
.theme-navbar .notices-bar .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 60px;
}
.theme-navbar .notices-bar .text {
  font-size: 14px;
  font-weight: bold;
  color: var(--darkBlue);
}
@media only screen and (max-width: 767.98px) {
  .theme-navbar .notices-bar {
    display: none;
  }
}

/* action-btn */
.theme-navbar .notices-bar .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 15px;
  background-color: #EA5455;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all .15s ease;
}
.theme-navbar .notices-bar .action-btn:hover {
  background-color: #d83e3e;
}

/* close-btn */
.theme-navbar .notices-bar .close-btn {
  position: absolute;
  right: 20px;
  cursor: pointer;
}
.theme-navbar .notices-bar .close-btn img {
  width: 12px;
}
.theme-navbar .notices-bar .close-btn:hover {
  opacity: .7;
}

/* nav-top */
.theme-navbar .nav-top {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.light-theme .theme-navbar .nav-top {
  border-bottom: 1px solid var(--border);
}
@media only screen and (max-width: 767.98px) {
  .theme-navbar .nav-top {
    padding: 15px 0 15px;
  }
}

/* menu-icon */
.theme-navbar .nav-top .menu-icon {
  display: none;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-top .menu-icon {
    display: block;
    min-width: 24px;
    width: 24px;
    margin-right: 10px;
    cursor: pointer;
  }
}

/* brand */
.theme-navbar .nav-top .brand img {
  height: 34px;
}
@media only screen and (max-width: 991.98px) {
  .theme-navbar .nav-top .brand img {
    height: 30px;
  }
}

/* options */
.theme-navbar .options .c-link {
  display: flex;
  align-items: center;
  transition: all .15s ease;
}
.theme-navbar .options .c-link:not(:last-of-type) {
  margin-right: 30px;
}
.theme-navbar .options .c-link .icon {
  width: 24px;
  margin-right: 10px;
}
.theme-navbar .options .c-link .text {
  font-size: 12px;
  font-weight: bold;
  color: var(--darkBlue);
}
.dark-theme .theme-navbar .options .c-link .text {
  color: #fff;
}
.theme-navbar .options .c-link:hover .text {
  text-decoration: underline;
}
@media only screen and (max-width: 991.98px) {
  .theme-navbar .options .c-link {
    display: none;
  }
}

/* buttons */
.theme-navbar .buttons {
  margin-left: 20px;
}
.theme-navbar .buttons .btn {
  padding: 12px 20px;
  font-size: 14px;
  height: auto;
}

/* lang */
.theme-navbar .lang {
  position: relative;
  margin-left: 20px;
  z-index: 97;
  user-select: none;
}
.theme-navbar .lang .current {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: all .15s ease;
}
.light-theme .theme-navbar .lang .current {
  color: var(--darkBlue);
}
.theme-navbar .lang .current:hover,
.theme-navbar .lang.open .current {
  text-decoration: underline;
}
.theme-navbar .lang .current img {
  min-width: 10px;
  width: 10px;
  margin-left: 4px;
}

/* lang-menu */
.theme-navbar .lang .lang-menu {
  display: flex;
  flex-wrap: wrap;
  min-width: 280px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 42px;
  background-color: var(--semi-dark);
  border: 1px solid var(--semi-dark-2);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: all .15s ease;
}
.light-theme .theme-navbar .lang .lang-menu {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  border: 1px solid var(--border);
}
.theme-navbar .lang .lang-menu::before {
  position: absolute;
  content: '';
  right: 14px;
  top: -7px;
  width: 14px;
  height: 14px;
  border-top-right-radius: 2px;
  transform: rotate(-45deg);
  background-color: var(--semi-dark);
  border: 1px solid var(--semi-dark-2);
  border-color: var(--semi-dark-2) var(--semi-dark-2) transparent transparent;
}
.light-theme .theme-navbar .lang .lang-menu::before {
  background-color: #ffffff;
  border-color: var(--border) var(--border) transparent transparent;
}
.theme-navbar .lang.open .lang-menu {
  visibility: visible;
  opacity: 1;
}

/* lang-item */
.theme-navbar .lang .lang-item {
  display: inline-flex;
  margin: 6px;
}
.theme-navbar .lang .lang-item .icon {
  width: 18px;
  margin-right: 6px;
}
.theme-navbar .lang .lang-item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}
.theme-navbar .lang .lang-item:hover a,
.theme-navbar .lang .lang-item.active a {
  color: #ffffff;
  text-decoration: underline;
}
.light-theme .theme-navbar .lang .lang-item:hover a,
.light-theme .theme-navbar .lang .lang-item.active a {
  color: var(--darkBlue);
}

/* second-options */
.theme-navbar .second-options .o-link {
  position: relative;
  margin-left: 16px;
}
.theme-navbar .second-options .icon {
  width: 24px;
  cursor: pointer;
}

/* user-dropdown-menu */
.theme-navbar .second-options .user-dropdown-menu {
  position: absolute;
  display: none;
  top: 40px;
  right: -16px;
  background-color: var(--semi-dark);
  width: 300px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  padding: 20px 16px 24px;
  z-index: 99;
}
.light-theme .theme-navbar .second-options .user-dropdown-menu {
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  border: 1px solid var(--border);
}
.theme-navbar .second-options .user-dropdown-menu::before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--semi-dark);
  border-width: 1px 1px 0 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-width: 1px 1px 0 0;
  top: -7px;
  right: 20px;
  transform: rotate(-45deg);
}
.light-theme .theme-navbar .second-options .user-dropdown-menu::before {
  background-color: #ffffff;
  border-color: var(--border);
}
.theme-navbar .second-options .open .user-dropdown-menu {
  display: block;
}

/* uddm-link-parent */
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:first-of-type) {
  padding-top: 16px;
}
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 16px;
}
.light-theme .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent:not(:last-of-type) {
  border-bottom: 1px solid var(--border);
}
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .title-2 {
  font-family: var(--primary-font);
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
}
.light-theme .theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .title-2 {
  color: var(--darkBlue);
}
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .para-2 {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
  margin-bottom: 10px;
}
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .uddm-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}
.theme-navbar .second-options .user-dropdown-menu .uddm-link-parent .uddm-link:hover {
  text-decoration: underline;
}

/* nav-bottom */
.theme-navbar .nav-bottom {
  padding: 20px 0;
}
.theme-navbar .nav-bottom .info .item {
  display: flex;
  align-items: center;
}
.theme-navbar .nav-bottom .info .item:not(:last-of-type) {
  margin-right: 20px;
}
.theme-navbar .nav-bottom .info .item img {
  min-width: 14px;
  width: 14px;
  margin-right: 8px;
}
.theme-navbar .nav-bottom .info .item .text {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.light-theme .theme-navbar .nav-bottom .info .item .text {
  font-weight: bold;
  color: var(--darkBlue);
}

/* links */
.theme-navbar .nav-bottom .links .link.grad1>a {
    background: linear-gradient(to right, #fd004c 20%, #fe9000 40%, #b102b7 70%, #3363ff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}
@keyframes textShine {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}
.theme-navbar .nav-bottom .links .link > a {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
}
.light-theme .theme-navbar .nav-bottom .links .link > a {
  color: var(--darkBlue);
}
.theme-navbar .nav-bottom .links .link:not(:last-of-type) {
  margin-right: 20px;
}
body.nav-open { overflow: hidden; }

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links {
    position: fixed;
    top: 0;
    left: -390px;
    bottom: 0;
    padding: 60px 0 50px;
    background-color: var(--semi-dark);
    transition: all .6s cubic-bezier(.77,0,.175,1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 98;
  }
  .light-theme .theme-navbar .nav-bottom .links {
    background-color: #ffffff;
  }
  .theme-navbar .nav-bottom .links.open-links {
    left: 0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2) !important;
  }
  .theme-navbar .nav-bottom .links::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .theme-navbar .nav-bottom .links::-webkit-scrollbar-thumb {
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
  }
  .theme-navbar .nav-bottom .links .link > a {
    padding: 10px 20px;
    min-width: 380px;
  }
  .theme-navbar .nav-bottom .links .link:hover > a,
  .theme-navbar .nav-bottom .links .link.active > a,
  .theme-navbar .nav-bottom .links .link.open-dropdown-menu > a {
    background-color: rgba(255, 255, 255, .1);
    opacity: 1;
  }
  .light-theme .theme-navbar .nav-bottom .links .link:hover > a,
  .light-theme .theme-navbar .nav-bottom .links .link.active > a,
  .light-theme .theme-navbar .nav-bottom .links .link.open-dropdown-menu > a,
  .light-theme .theme-navbar .nav-bottom .links .link.open-mega-menu > a {
    background-color: var(--light);
  }
  .theme-navbar .nav-bottom .links .link:not(:last-of-type) {
    margin-right: unset;
  }
}

/* close-links-btn */
.theme-navbar .nav-bottom .links .close-links-btn {
  display: none;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .close-links-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }
  .theme-navbar .nav-bottom .links .close-links-btn img {
    width: 18px;
  }
  .theme-navbar .nav-bottom .links .close-links-btn:hover {
    opacity: .7;
  }
}

/* lines */
.theme-navbar .nav-bottom .links .link .lines {
  position: relative;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 22px;
  height: 12px;
  margin-right: 6px;
}
.theme-navbar .nav-bottom .links .link .lines span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
}
.light-theme .theme-navbar .nav-bottom .links .link .lines span {
  background-color: var(--darkBlue);
}

/* has-dropdown-menu */
.theme-navbar .nav-bottom .links .link.has-dropdown-menu > a::after,
.theme-navbar .nav-bottom .links .link.has-mega-menu > a::after {
  position: relative;
  content: '';
  width: 10px;
  height: 10px;
  background-image: url(../images/icons/navbar/down-chevron-dark.png);
  background-size: contain;
  background-position: center 2px;
  background-repeat: no-repeat;
  margin-left: 4px;
}
.light-theme .theme-navbar .nav-bottom .links .link.has-dropdown-menu > a::after,
.light-theme .theme-navbar .nav-bottom .links .link.has-mega-menu > a::after {
  background-image: url(../images/icons/navbar/down-chevron-light.png);
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .link.has-dropdown-menu > a::after,
  .theme-navbar .nav-bottom .links .link.has-mega-menu > a::after {
    margin-left: auto;
    transform: rotate(-90deg);
  }
}

/* dropdown-menu */
.theme-navbar .nav-bottom .links .link .dropdown-menu {
  position: absolute;
  top: 175px;
  background: linear-gradient(145deg, #1a1d35 0%, #0f1124 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  min-width: 260px;
  padding: 16px 10px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
  z-index: 98;
}
.light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu {
  background: #fff;
  border-color: rgba(0,96,254,.1);
  box-shadow: 0 8px 40px rgba(0,96,254,.09);
}
.theme-navbar .nav-bottom .links .link.open-dropdown-menu .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.theme-navbar .nav-bottom .links .link .dropdown-menu::-webkit-scrollbar {
  width: 2px;
}
.theme-navbar .nav-bottom .links .link .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0,96,254,.3);
  border-radius: 20px;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .link .dropdown-menu {
    display: none;
    position: relative;
    top: 0 !important;
    box-shadow: none !important;
    opacity: 1;
    background: rgba(0, 0, 0, .3);
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0;
  }
  .light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu {
    border: 0;
    box-shadow: none;
    background-color: #ffffff;
  }
  .theme-navbar .nav-bottom .links .link.open-dropdown-menu .dropdown-menu {
    display: block;
  }
}

/* group-title */
.theme-navbar .nav-bottom .links .link .dropdown-menu .group-title {
  display: none;
}

/* dm-link */
.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  margin: 0 0 2px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .18s, border-color .18s;
}
.light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link {
  color: #0f1529;
}
.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link:hover {
  background: rgba(0,96,254,.07);
  border-color: rgba(0,96,254,.2);
}
.light-theme .theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link:hover {
  background: rgba(0,96,254,.05);
  border-color: rgba(0,96,254,.15);
}
.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-soon::after {
  position: relative;
  content: 'Hamarosan';
  font-size: 10px;
  color: var(--gold);
  background-color: rgba(255, 183, 48, 0.1);
  padding: 4px 8px;
  border-radius: 100px;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}
.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-new::after {
  position: relative;
  content: 'Új';
  font-size: 10px;
  color: #15CD72;
  background-color: rgba(21, 205, 113, 0.1);
  padding: 4px 8px;
  border-radius: 100px;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-zold::after {
    position: relative;
    content: 'Zöld IT';
    font-size: 10px;
    color: #00ff22;
    background-color: rgba(21, 205, 113, 0.1);
    padding: 4px 8px;
    border-radius: 2px;
    margin-left: auto;
    width: 43px;
    text-align: center;
    text-transform: uppercase;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-workinghours::after {
  position: relative;
  content: '8 - 17';
  font-size: 10px;
  color: #15CD72;
  background-color: rgba(21, 205, 113, 0.1);
  padding: 4px 8px;
  border-radius: 100px;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}



.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-monitoring::after {
  position: relative;
  content: '0-24';
  font-size: 10px;
  color: #0b0c1b;
  background-color: #ceddbd;
  padding: 4px 8px;
  border-radius: 100px;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-free::after {
  position: relative;
  content: 'Ingyenes';
  font-size: 10px;
  color: #0b0c1b;
  background-color: #ceddbd;
  padding: 4px 8px;
  border-radius: 100px;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}

.theme-navbar .nav-bottom .links .link .dropdown-menu .dm-link.st-monthly::after {
  position: relative;
  content: 'HAVI';
  font-size: 10px;
  color: #0b0c1b;
  background-color: #ceddbd;
  padding: 4px 8px;
  border-radius: 100px;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}

/* mega-menu */
.theme-navbar .nav-bottom .links .has-mega-menu .mega-menu {
  position: absolute;
  left: 0;
  top: 175px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
  z-index: 98;
}
.theme-navbar .nav-bottom .links .has-mega-menu .content {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(145deg, #1a1d35 0%, #0f1124 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  padding: 32px 28px;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  position: relative;
  overflow: hidden;
}
.theme-navbar .nav-bottom .links .has-mega-menu .content::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,96,254,.06) 0%, transparent 65%);
  pointer-events: none;
}
.light-theme .theme-navbar .nav-bottom .links .has-mega-menu .content {
  background: #fff;
  border-color: rgba(0,96,254,.1);
  box-shadow: 0 8px 40px rgba(0,96,254,.09), 0 0 0 1px rgba(0,96,254,.07);
}
.light-theme .theme-navbar .nav-bottom .links .has-mega-menu .content::before {
  background: radial-gradient(ellipse, rgba(0,96,254,.04) 0%, transparent 65%);
}

@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .has-mega-menu .mega-menu {
    display: none;
    position: relative;
    top: 0 !important;
    box-shadow: none;
    opacity: 1;
    background: rgba(0, 0, 0, .3);
    max-width: 380px;
  }
  .theme-navbar .nav-bottom .links .has-mega-menu.open-mega-menu .mega-menu {
    display: block;
  }
  .theme-navbar .nav-bottom .links .has-mega-menu .mega-menu .container-fluid {
    padding: 0;
  }
  .theme-navbar .nav-bottom .links .has-mega-menu .content {
    border-radius: 0;
    padding: 15px;
    box-shadow: none !important;
    border-bottom: 1px solid var(--border);
  }
}

/* mm-col */
.theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col {
  flex: 0 0 25%;
  padding: 0 14px;
}
.theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.05);
}
.light-theme .theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col:not(:last-child) {
  border-right-color: rgba(0,96,254,.07);
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col {
    flex: 0 0 100%;
    border-right: none !important;
  }
  .theme-navbar .nav-bottom .links .has-mega-menu .content .mm-col:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* open-mega-menu */
.theme-navbar .nav-bottom .links .link.open-mega-menu .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* scrollbar for mega menu */
.theme-navbar .nav-bottom .links .has-mega-menu .content::-webkit-scrollbar {
  width: 2px;
}
.theme-navbar .nav-bottom .links .has-mega-menu .content::-webkit-scrollbar-thumb {
  background-color: rgba(0,96,254,.3);
  border-radius: 20px;
}

/* mm-title */
.theme-navbar .nav-bottom .mm-title {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #0060fe;
  background: rgba(0,96,254,.12);
  border: 1px solid rgba(0,96,254,.2);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.light-theme .theme-navbar .nav-bottom .mm-title {
  background: rgba(0,96,254,.08);
  border-color: rgba(0,96,254,.18);
}

/* mm-list-item */
.theme-navbar .nav-bottom .mm-list-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .18s, border-color .18s, box-shadow .18s;
}
.theme-navbar .nav-bottom .mm-list-item:not(:last-child) {
  margin-bottom: 6px;
}
.theme-navbar .nav-bottom .mm-list-item:hover {
  background: rgba(0,96,254,.07);
  border-color: rgba(0,96,254,.2);
  box-shadow: 0 0 0 1px rgba(0,96,254,.1);
}
.light-theme .theme-navbar .nav-bottom .mm-list-item:hover {
  background: rgba(0,96,254,.05);
  border-color: rgba(0,96,254,.15);
  box-shadow: 0 0 0 1px rgba(0,96,254,.08);
}

/* mm-item-link */
.theme-navbar .nav-bottom .mm-list-item .mm-item-link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
}

/* icon */
.theme-navbar .nav-bottom .mm-list-item .icon:not(img) {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0,96,254,.1);
  border: 1px solid rgba(0,96,254,.15);
}
.theme-navbar .nav-bottom .mm-list-item .icon:not(img) img {
  width: 22px;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
}
.light-theme .theme-navbar .nav-bottom .mm-list-item .icon:not(img) {
  background: rgba(0,96,254,.07);
  border-color: rgba(0,96,254,.12);
}
.light-theme .theme-navbar .nav-bottom .mm-list-item .icon:not(img) img {
  filter: none;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .mm-list-item .icon:not(img) {
    width: 36px; height: 36px; min-width: 36px;
  }
  .theme-navbar .nav-bottom .mm-list-item .icon:not(img) img {
    width: 18px;
  }
}

/* info */
.theme-navbar .nav-bottom .mm-list-item .name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
}
.light-theme .theme-navbar .nav-bottom .mm-list-item .name {
  color: #0f1529;
}
.theme-navbar .nav-bottom .mm-list-item .text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.38);
  margin-top: 2px;
}
.light-theme .theme-navbar .nav-bottom .mm-list-item .text {
  color: #6b7a9e;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .nav-bottom .mm-list-item .name {
    font-size: 13px;
  }
  .theme-navbar .nav-bottom .mm-list-item .text {
    display: none;
  }
}

.theme-navbar .nav-bottom .links .has-mega-menu {}

/* alap: jobbról jön be */
.theme-navbar .side-box {
    position: fixed;
    top: 20px;
    right: -590px;
    bottom: 20px;
    width: 570px;
    padding: 65px 30px 40px;
    background-color: var(--semi-dark);
    border-radius: 12px;
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
    z-index: 98;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.theme-navbar .side-box.open-side-box {
    right: 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

/* világos téma */
.light-theme .theme-navbar .side-box {
    background-color: rgba(225, 232, 248, 0.8);
    backdrop-filter: saturate(180%) blur(25px);
}

/* mobil */
@media only screen and (max-width: 767.98px) {
    .theme-navbar .side-box {
        position: fixed;
        top: 20px;
        right: auto;
        /* jobbos szabályt kikapcsoljuk */
        left: -100%;
        width: calc(100% - 40px);
        padding: 65px 20px 40px;
    }

    .theme-navbar .side-box.open-side-box {
        left: 20px;
        /* itt jön be balról */
        right: auto;
    }
}

/* f-nav */
.theme-navbar .side-box .f-nav {
  position: relative;
  margin-bottom: 30px;
}
.theme-navbar .side-box .f-nav .f-nav-tab {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  opacity: .7;
  transition: all .20s ease;
}
.light-theme .theme-navbar .side-box .f-nav .f-nav-tab {
  color: var(--darkBlue);
}
.theme-navbar .side-box .f-nav .f-nav-tab:not(:last-child) {
  margin-right: 15px;
}
.theme-navbar .side-box .f-nav .f-nav-tab.active {
  opacity: 1;
}
.theme-navbar .side-box .f-nav .f-nav-tab:not(.active):hover {
  opacity: 1;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .side-box .f-nav {
    margin: -3px -3px 27px;
  }
  .theme-navbar .side-box .f-nav .f-nav-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 4px;
    margin: 3px;
  }
  .theme-navbar .side-box .f-nav .f-nav-tab:not(:last-child) {
    margin-right: unset;
  }
  .theme-navbar .side-box .f-nav .f-nav-tab.active {
    background-color: rgba(255, 255, 255, 0.4);
  }
}

/* indicator */
.theme-navbar .side-box .f-nav .indicator {
  position: absolute;
  height: 3px;
  background-color: var(--primary);
  top: calc(100% + 4px);
  border-radius: 20px;
  left: 0;
  transition: all .3s ease;
  z-index: 2;
}
@media only screen and (max-width: 1199.98px) {
  .theme-navbar .side-box .f-nav .indicator {
    display: none;
  }
}

/* content */
.theme-navbar .side-box .content .cate-title {
  font-size: 12px;
  color: var(--gray);
  font-weight: bold;
  margin-bottom: 15px;
}
.light-theme .theme-navbar .side-box .content .cate-title {
  color: var(--darkBlue);
}
.theme-navbar .side-box .f-area:not(:first-child) {
  display: none;
}
.theme-navbar .side-box .f-area .apps {
  position: relative;
  transition: all .15s ease;
}

/* boxes */
.theme-navbar .side-box .apps .boxes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -5px;
  overflow-y: auto;
}

/* app-box */
.theme-navbar .side-box .app-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(25% - 10px);
  height: 100px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all .20s ease;
  margin: 5px;
}
.light-theme .theme-navbar .side-box .app-box {
  background-color: rgba(255, 255, 255, 0.6);
 }
.theme-navbar .side-box .app-box:hover {
  background-color: rgba(255, 255, 255, .05);
}
.light-theme .theme-navbar .side-box .app-box:hover {
  background-color: rgba(255, 255, 255, 1);
}
.theme-navbar .side-box .app-box .frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
.theme-navbar .side-box .app-box .title {
  display: block;
  font-size: 12px;
  color: #ffffff;
}
.light-theme .theme-navbar .side-box .app-box .title {
  font-weight: 500;
  color: var(--darkBlue);
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box .app-box {
    flex: 0 0 calc(33.33% - 10px);
    height: 80px;
  }
  .theme-navbar .side-box .app-box .frame {
    width: 30px;
    height: 30px;
  }
}

/* small-app-box */
.theme-navbar .side-box .small-app-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(20% - 10px);
  height: 95.50px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0);
  transition: all .15s ease;
  margin: 5px;
}
.theme-navbar .side-box .small-app-box:hover {
  background-color: rgba(255, 255, 255, .05);
}
.light-theme .theme-navbar .side-box .small-app-box:hover {
  background-color: rgba(255, 255, 255, 1);
}
.theme-navbar .side-box .small-app-box .frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
}
.theme-navbar .side-box .small-app-box .title {
  display: block;
  font-size: 12px;
  color: #ffffff;
}
.light-theme .theme-navbar .side-box .small-app-box .title {
  font-weight: 500;
  color: var(--darkBlue);
}
@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box .small-app-box {
    flex: 0 0 calc(33.33% - 10px);
  }
}

/* items */
.theme-navbar .side-box .items {
  display: flex;
  flex-wrap: wrap;
}
.theme-navbar .side-box .items .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 50%;
  padding: 15px 15px;
  border-radius: 6px;
  transition: all .15s ease;
}
.theme-navbar .side-box .items .item:hover {
  background-color: rgba(255, 255, 255, .05);
}
.light-theme .theme-navbar .side-box .items .item:hover {
  background-color: rgba(255, 255, 255, 1);
}
.theme-navbar .side-box .items .item .icon {
  min-width: 34px;
  width: 34px;
  margin-right: 15px;
  transition: all .20s cubic-bezier(.19,1,.22,1) 0s
}
@media only screen and (max-width: 767.98px) {
  .theme-navbar .side-box .items .item {
    flex: 0 0 100%;
  }
}

/* item-con */
.theme-navbar .side-box .item-con {
  display: block;
  width: 100%;
}
.theme-navbar .side-box .item-con .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
}
.light-theme .theme-navbar .side-box .item-con .name {
  color: var(--darkBlue);
}
.theme-navbar .side-box .item-con .des {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.light-theme .theme-navbar .side-box .item-con .des {
  color: var(--darkBlue);
  opacity: .7;
}

/* close-side-box-btn */
.theme-navbar .side-box .close-side-box-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.light-theme .theme-navbar .side-box .close-side-box-btn {
  background-color: rgba(255, 255, 255, .5);
}
.theme-navbar .side-box .close-side-box-btn img {
  width: 18px;
}
.theme-navbar .side-box .close-side-box-btn:hover {
  background-color: rgba(255, 255, 255, .2);
}
.light-theme .theme-navbar .side-box .close-side-box-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* side-box-btn */
.theme-navbar .nav-bottom .side-box-btn {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  margin-left: 20px;
  cursor: pointer;
  transition: all .15s ease;
}
.light-theme .theme-navbar .nav-bottom .side-box-btn {
  color: var(--darkBlue);
}
.theme-navbar .nav-bottom .side-box-btn .lines {
  position: relative;
  top: -1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 22px;
  height: 12px;
  margin-right: 6px;
}
.theme-navbar .nav-bottom .side-box-btn .lines span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
}
.light-theme .theme-navbar .nav-bottom .side-box-btn .lines span {
  background-color: var(--darkBlue);
}
/* ----------------------------------- */

/* :: OPTIONS :: */

/* theme-settings-btn */
.theme-settings-btn {
  position: fixed;
  top: 180px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-color: transparent;
  transition: all .15s ease;
  z-index: 96;
}
.theme-settings-btn img {
  width: 22px;
  z-index: 2;
}

/* button background */
.theme-settings-btn::before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--semi-dark);
}
.theme-settings-btn::after {
  position: absolute;
  content: '';
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(
    #fd004c,
    #fe9000,
    #fff020,
    #3edf4b,
    #3363ff,
    #b102b7,
    #fd004c
  );
  animation: spin 1.5s infinite linear;
  border-radius: 50%;
  transition: all .15s ease;
  z-index: -1;
}

/* button hover effect */
.theme-settings-btn:hover {
  transform: scale(1.05);
}
@media only screen and (max-width: 767.98px) {
  .theme-settings-btn {
    top: 130px;
  }
}

/* theme-settings */
.theme-settings {
  position: fixed;
  top: 0;
  right: -380px;
  bottom: 0;
  width: 360px;
  height: 100vh;
  padding: 30px 20px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.2) -2px 2px 8px 0px;
  overflow-y: auto;
  user-select: none;
  transition: all .6s cubic-bezier(.77,0,.175,1);
  z-index: 98;
}
.theme-settings.open {
  right: 0;
}

/* title-1 */
.theme-settings .title-1 {
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--darkBlue);
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

/* close-btn */
.theme-settings .close-btn {
  position: absolute;
  top: 34px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all .15s ease-out;
  cursor: pointer;
}
.theme-settings .close-btn img {
  width: 12px;
  transition: all .15s ease-out;
}
.theme-settings .close-btn:hover {
  background-color: var(--darkBlue);
}
.theme-settings .close-btn:hover img {
  filter: invert(1);
}

/* section */
.theme-settings .section {
  padding: 20px 0 30px;
}
.theme-settings .section:not(:last-of-type) {
  border-bottom: 1px solid var(--border);
}
.theme-settings .section:last-of-type {
  padding-bottom: 0;
}
.theme-settings .section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 20px;
}

/* themes */
.theme-settings .themes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.theme-settings .themes .theme-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 40px;
  cursor: pointer;
}
.theme-settings .themes .theme-btn .color {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f1f2;
  margin-right: 10px;
}
.theme-settings .themes .theme-btn .color::before {
  position: absolute;
  content: '';
  min-width: 30px;
  width: 30px;
  height: 30px;
  background: conic-gradient(
    #fd004c,
    #fe9000,
    #fff020,
    #3edf4b,
    #3363ff,
    #b102b7,
    #fd004c
  );
  animation: spin 1.5s infinite linear;
  border-radius: 50%;
  transition: all .15s ease;
  z-index: -1;
}
.theme-settings .themes .theme-btn.dark-theme .color {
  background-color: var(--darkBlue);
}
.theme-settings .themes .theme-btn .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkBlue);
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* active-theme */
.theme-settings .themes .theme-btn.active-theme .color::before {
  min-width: 40px;
  width: 40px;
  height: 40px;
}
.theme-settings .themes .theme-btn.active-theme .color::after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url(../../assets/images/icons/options/check.png);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.theme-settings .themes .theme-btn.light-theme.active-theme .color::after {
  filter: invert(1);
}

/* feature-option */
.theme-settings .feature-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.theme-settings .feature-option:nth-child(2) {
  padding-top: 0;
}
.theme-settings .feature-option:last-of-type {
  padding-bottom: 0;
}
.theme-settings .feature-option .text {
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  color: var(--darkBlue);
}
.theme-settings .feature-option .switch-btn {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #d6d6d6;
  border-radius: 50px;
  cursor: not-allowed;
  transition: all .15s ease-out;
  opacity: .6;
}
.theme-settings .feature-option .switch-btn:hover {
  background-color: #c7c7c7;
}
.theme-settings .feature-option .switch-btn::before {
  position: absolute;
  content: '';
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all .15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.theme-settings .feature-option .switch-btn:active::before {
  transform: scale(.9);
}

/* option-active */
.theme-settings .feature-option.option-active .switch-btn {
  background-color: var(--primary);
}
.theme-settings .feature-option.option-active .switch-btn::before {
  left: 23px;
}

/* q-link */
.theme-settings .q-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.theme-settings .q-link:nth-child(2) {
  padding-top: 0;
}
.theme-settings .q-link:last-of-type {
  padding-bottom: 0;
}
.theme-settings .q-link a {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkBlue);
}
.theme-settings .q-link a:hover {
  text-decoration: underline;
}

/* copyright-text */
.theme-settings .copyright-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
}
/* ----------------------------------- */

/* SECTION HEAD */
.se-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 25px;
}
.se-head .se-title-1 {
  font-size: 16px;
  color: var(--primary);
  font-family: var(--third-font);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.se-head .se-title-2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--darkBlue);
  line-height: 1.2;
  margin-bottom: 25px;
}
.dark-theme .se-head .se-title-2 {
  color: #fff;
}
.dark-theme .se-head .se-subtext {
  color: #fff;
}
.se-head .se-para {
  font-size: 16px;
  color: var(--darkGray);
}

@media only screen and (max-width: 1199.98px) {
  .se-head .se-title-2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-head {
    margin: 0 auto 45px;
  }
  .se-head .se-title-2 {
    font-size: 26px;
  }
}

/* game-se-head */
.se-head.game-se-head .se-title-1 {
  font-family: var(--g1-font);
  color: var(--gold);
}
.se-head.game-se-head .se-title-2 {
  font-family: var(--g1-font);
  text-transform: uppercase;
}
.se-head.game-se-head .se-para {
  font-size: 24px;
  font-family: var(--g2-font);
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1.4;
}

.light-theme .se-head .se-title-2 {
  color: var(--darkBlue);
}
@media only screen and (max-width: 767.98px) {
  .se-head.game-se-head .se-para {
    font-size: 20px;
  }
}
/* ----------------------------------- */

/* :: FAQs :: */

.faq-sec {
  padding: 100px 0;
  position: relative;
}

/* heading */
.faq-sec .se-head {
  text-align: center;
  margin-bottom: 50px;
}
.faq-sec .se-title-1 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0060fe;
  margin-bottom: 12px;
  display: block;
}
.faq-sec .se-title-2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.light-theme .faq-sec .se-title-2 { color: #0e1525; }

/* glass card */
.faq-glass {
  position: relative;
  background: linear-gradient(160deg, #1e2140 0%, #111326 55%, #0d0f22 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 32px 80px rgba(0,0,0,.55),
    0 0 60px rgba(0,96,254,.08) inset;
}
.light-theme .faq-glass {
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow:
    0 0 0 1px rgba(0,96,254,.13),
    0 32px 80px rgba(0,96,254,.14);
}
.faq-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0060fe 0%, #7c3aed 50%, #0060fe 100%);
  z-index: 5;
}

/* orbs */
.faq-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.faq-orb-1 {
  width: 400px; height: 400px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(0,96,254,.12) 0%, transparent 70%);
}
.faq-orb-2 {
  width: 350px; height: 350px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(124,58,237,.10) 0%, transparent 70%);
}
.light-theme .faq-orb-1 { background: radial-gradient(circle, rgba(0,96,254,.08) 0%, transparent 70%); }
.light-theme .faq-orb-2 { background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%); }

/* layout */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .faq-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.faq-sidebar {
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 40px 30px;
  background: rgba(0,0,0,.1);
}
.light-theme .faq-sidebar {
  border-right-color: rgba(0,96,254,.1);
  background: rgba(0,96,254,.02);
}
@media (max-width: 1199px) {
  .faq-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 30px 24px;
  }
  .light-theme .faq-sidebar { border-bottom-color: rgba(0,96,254,.1); }
}

/* category items */
#faqs-category { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 1199px) {
  #faqs-category {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.faqs .category .item,
#faqs-category .item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: all .25s ease;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}
.light-theme #faqs-category .item,
.light-theme .faqs .category .item {
  background: #fff;
  border-color: rgba(0,96,254,.1);
}
#faqs-category .item:hover:not(.active),
.faqs .category .item:hover:not(.active) {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.light-theme #faqs-category .item:hover:not(.active),
.light-theme .faqs .category .item:hover:not(.active) {
  background: rgba(0,96,254,.04);
  border-color: rgba(0,96,254,.2);
}
#faqs-category .item.active,
.faqs .category .item.active {
  background: linear-gradient(135deg, rgba(0,96,254,.25) 0%, rgba(124,58,237,.2) 100%);
  border-color: rgba(0,96,254,.4);
  box-shadow: 0 10px 25px rgba(0,96,254,.15) !important;
}
.light-theme #faqs-category .item.active,
.light-theme .faqs .category .item.active {
  background: linear-gradient(135deg, rgba(0,96,254,.08) 0%, rgba(124,58,237,.06) 100%);
  border-color: rgba(0,96,254,.3);
  box-shadow: 0 10px 25px rgba(0,96,254,.08) !important;
}

.faq-cat-icon, .faqs .category .item .icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .25s;
  margin-right: 0 !important;
}
.faq-cat-icon img, .faqs .category .item .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
#faqs-category .item.active .faq-cat-icon img,
.faqs .category .item.active .icon img {
  opacity: 1;
  filter: none;
}
.light-theme .faq-cat-icon, .light-theme .faqs .category .item .icon {
  background: rgba(0,96,254,.05);
  border-color: rgba(0,96,254,.12);
  color: #4b5563;
}
.light-theme .faq-cat-icon img, .light-theme .faqs .category .item .icon img {
  filter: none;
  opacity: 1;
}
#faqs-category .item.active .faq-cat-icon,
.faqs .category .item.active .icon {
  background: #0060fe;
  border-color: #0060fe;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,96,254,.4);
}

.faq-cat-text, .faqs .category .item .text { display: flex; flex-direction: column; gap: 2px; }
.faq-cat-title, .faqs .category .item .item-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.2;
  margin-bottom: 0 !important;
}
.light-theme .faq-cat-title, .light-theme .faqs .category .item .item-title { color: #1e293b; }
#faqs-category .item.active .faq-cat-title,
.faqs .category .item.active .item-title { color: #fff; }
.light-theme #faqs-category .item.active .faq-cat-title,
.light-theme .faqs .category .item.active .item-title { color: #0060fe; }

.faq-cat-sub, .faqs .category .item .item-des {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.4;
  margin-bottom: 0 !important;
}
.light-theme .faq-cat-sub, .light-theme .faqs .category .item .item-des { color: #6b7280; }
#faqs-category .item.active .faq-cat-sub,
.faqs .category .item.active .item-des { color: rgba(255,255,255,.7); }
@media (max-width: 1399px) {
  .faq-cat-sub, .faqs .category .item .item-des { display: none; }
}

/* Content Area */
.faq-content {
  padding: 50px 60px;
}
@media (max-width: 991px) {
  .faq-content { padding: 35px 25px; }
}

.faqs .box {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.faqs .box .box-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.light-theme .faqs .box .box-head { border-bottom-color: rgba(0,96,254,.1); }

.faq-cat-icon-sm, .faqs .box .box-head .icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,96,254,.15);
  border: 1px solid rgba(0,96,254,.3);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  margin-right: 0 !important;
}
.faq-cat-icon-sm img, .faqs .box .box-head .icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.light-theme .faq-cat-icon-sm img, .light-theme .faqs .box .box-head .icon img {
  filter: none;
  opacity: 1;
}
.light-theme .faq-cat-icon-sm, .light-theme .faqs .box .box-head .icon {
  background: rgba(0,96,254,.08);
  border-color: rgba(0,96,254,.2);
  color: #0060fe;
}

.faqs .box .box-head .box-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px !important;
}
.light-theme .faqs .box .box-head .box-title { color: #0e1525; }
.faqs .box .box-head .box-des {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin: 0 !important;
}
.light-theme .faqs .box .box-head .box-des { color: #64748b; }

/* Question Items */
.faqs .box .box-body { padding-top: 10px; }
.faqs .box .q {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s ease;
}
.light-theme .faqs .box .q { border-bottom-color: rgba(0,96,254,.07); }
.faqs .box .q:last-child { border-bottom: none; }

.faqs .box .q .q-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}
.faqs .box .q .q-h .text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  transition: all .25s;
}
.light-theme .faqs .box .q .q-h .text { color: #1e293b; }
.faqs .box .q.open .q-h .text,
.faqs .box .q .q-h:hover .text { color: #60a5fa; }
.light-theme .faqs .box .q.open .q-h .text,
.light-theme .faqs .box .q .q-h:hover .text { color: #0060fe; }

/* Plus Icon */
.faqs .box .q .q-h .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  transition: all .3s ease;
  margin-left: 0 !important;
}
.light-theme .faqs .box .q .q-h .plus {
  background: rgba(0,96,254,.05);
  border-color: rgba(0,96,254,.15);
}
.faqs .box .q.open .q-h .plus {
  background: #0060fe;
  border-color: #0060fe;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,96,254,.3);
}

.faqs .box .q .q-h .plus span {
  position: absolute;
  display: block;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: background .25s;
}
.light-theme .faqs .box .q .q-h .plus span { background: #64748b; }
.faqs .box .q.open .q-h .plus span { background: #fff; }

.faqs .box .q .q-h .plus span:nth-child(1) {
  width: 12px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faqs .box .q .q-h .plus span:nth-child(2) {
  width: 2px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faqs .box .q .q-b {
  display: none;
  padding: 0 0 25px 0;
}
.faqs .box .q .q-b p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin: 0 !important;
  padding: 20px;
}
.light-theme .faqs .box .q .q-b p { color: #64748b;  }
.faqs .box .q .q-b a { color: #60a5fa; font-weight: 600; }
.light-theme .faqs .box .q .q-b a { color: #0060fe; }

/* wrapper */
.faqs .wrapper {
  padding: 100px 60px 60px;
}
.light-theme .faqs .category .item {
  background-color: #fff;
  border-color: var(--border);
  box-shadow: none;
}
.faqs .category .item:not(:last-child) {
  margin-bottom: 15px;
}
.faqs .category .item:hover:not(.active) {
  background-color: var(--semi-dark-2);
  border-color: var(--semi-dark-2);
}
.light-theme .faqs .category .item:hover:not(.active) {
  background-color: #fff;
  border-color: var(--border);
}
.faqs .category .item.active {
  background-color: var(--semi-dark-2);
  border: 1px solid rgba(255, 255, 255, .1);
}
.light-theme .faqs .category .item.active {
  background-color: #fff;
  border-color: var(--gray);
}

.faqs .category .item .icon {
  min-width: 36px;
  width: 36px;
  margin-right: 20px;
}
.faqs .category .item .item-title {
  color: #FFFFFF;
  font-size: 16px;
  font-family: var(--secondary-font);
}
.light-theme .faqs .category .item .item-title {
  color: var(--darkBlue);
}
.faqs .category .item .item-des {
  font-size: 14px;
  color: var(--darkGray);
}
@media only screen and (max-width: 1199px) {
  .faqs .category .item {
    align-items: center;
    width: calc(33.333% - 16px);
    margin: 7px;
  }
  .faqs .category .item:not(:last-child) {
    margin-bottom: 8px;
  }
  .faqs .category .item .icon {
    min-width: 24px;
    width: 24px;
    margin-right: 20px;
  }
  .faqs .category .item .item-title {
    margin-bottom: 0;
  }
  .faqs .category .item .item-des {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .faqs .category .item {
    width: calc(50% - 16px);
  }
}
@media only screen and (max-width: 767.98px) {
  .faqs .category .item {
    width: 100%;
  }
}

/* box */
.faqs .box {
  background-color: var(--semi-dark);
  padding: 60px 50px 50px;
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}
.light-theme .faqs .box {
  background-color: #fff;
  box-shadow: none;
  border: 1px solid var(--border);
}
.faqs .box:not(:first-child) {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  .faqs .box {
    padding: 40px 30px 30px;
  }
}

/* box-head */
.faqs .box .box-head {
  display: flex;
  align-items: flex-start;
}
.faqs .box .box-head .icon {
  min-width: 36px;
  width: 36px;
  margin-right: 20px;
}
.faqs .box .box-head .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: bold;
}
.light-theme .faqs .box .box-head .box-title {
  color: var(--darkBlue);
}
.faqs .box .box-head .box-des {
  font-size: 16px;
  color: var(--darkGray);
}
@media only screen and (max-width: 767.98px) {
  .faqs .box .box-head {
    flex-direction: column;
  }
  .faqs .box .box-head .icon {
    margin-right: unset;
    margin-bottom: 20px;
  }
}

/* box-body */
/* .faqs .box .box-body {
  padding: 40px 56px 0;
} */
/* @media only screen and (max-width: 767.98px) {
  .faqs .box .box-body {
    padding: 40px 0 0;
  }
} */

/* q */
.faqs .box .q:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* q-h */
.faqs .box .q .q-h {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* text */
.faqs .box .q .q-h .text {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #FFFFFF;
}
.light-theme .faqs .box .q .q-h .text {
  color: var(--darkBlue);
}
@media only screen and (max-width: 767.98px) {
  .faqs .box .q .q-h .text {
    font-size: 14px;
  }
}

/* plus */
.faqs .box .q .q-h .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  width: 22px;
  min-height: 22px;
  height: 22px;
  border: 2px solid var(--darkGray);
  border-radius: 50%;
  margin-left: 30px;
}
.faqs .box .q .q-h .plus span {
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background-color: var(--darkGray);
  transition: all .15s ease-in-out;
}
.faqs .box .q .q-h .plus span:nth-child(1) {
  transform: rotate(90deg);
}
.faqs .box .q.open .q-h .plus span:nth-child(1) {
  transform: rotate(0deg);
}

/* q-b */
.faqs .box .q .q-b {
  padding: 10px 0 30px 0;
  display: none;
}
.faqs .box .q .q-b p {
  font-size: 16px;
  color: var(--darkGray);
}
.faqs .box .q .q-b p:not(:last-child) {
  margin-bottom: 10px;
}
.faqs .box .q .q-b a {
  color: var(--primary);
}
.faqs .box .q .q-b a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  .faqs .box .q .q-b p {
    font-size: 14px;
  }
}

/* wrapper */
.faqs .wrapper {
  padding: 100px 60px 60px;
  background-color: var(--semi-dark);
  border-radius: 8px;
}
.light-theme .faqs .wrapper {
  background-color: #fff;
}
.faqs .wrapper .title-3 {
  font-size: 36px;
  color: #FFFFFF;
  font-weight: 600;
}
.light-theme .faqs .wrapper .title-3 {
  color: var(--darkBlue);
}
.faqs .wrapper .para-3 {
  font-size: 17px;
  color: var(--darkGray);
  max-width: 730px;
}
/* ----------------------------------- */

/* :: FOOTER :: */
.theme-footer {
  position: relative;
  background-color: #000;
}
.theme-footer::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,
  #fd004c,
  #fe9000,
  #fff020,
  #3edf4b,
  #3363ff,
  #b102b7,
  #fd004c
  );
  animation: rainbow-move 20s infinite linear alternate;
}
@keyframes rainbow-move {
  100% {
    background-position-x: 4000px;
  }
}

/* footer-top */
.theme-footer .footer-top {
  padding: 60px 0 20px;
}

/* list-group */
.theme-footer .list-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* footer-list */
.theme-footer .footer-list {
  padding-bottom: 4vh;
}
.theme-footer .footer-list .list-title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.theme-footer .footer-list .list-link:nth-child(2) {
  margin-top: 20px;
}
.theme-footer .footer-list .list-link:not(:last-of-type) {
  margin-bottom: 12px;
}
.theme-footer .footer-list .list-link > a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
.theme-footer .footer-list .list-link > a:hover {
  text-decoration: underline;
  color: #fff;
}
@media only screen and (max-width: 1199.98px) {
  .theme-footer .list-group {
    justify-content: flex-start;
  }
  .theme-footer .footer-list {
    min-width: 25%;
  }

 
}
@media only screen and (max-width: 991.98px) {
  .theme-footer .footer-list {
    min-width: 33.33%;
  }
}
@media only screen and (max-width: 767.98px) {
  .theme-footer .footer-list {
    min-width: 100%;
  }
  .theme-footer .footer-list .list-title::before,
  .theme-footer .footer-list .list-title::after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
  }
  .theme-footer .footer-list .list-title::before {
    width: 10px;
    height: 2px;
  }
  .theme-footer .footer-list .list-title::after {
    height: 10px;
    width: 2px;
    right: 4px;
  }
  .theme-footer .footer-list.open-list .list-title::after {
    display: none;
  }
  .theme-footer .footer-list .list-link {
    display: none;
  }
  .theme-footer .footer-list.open-list .list-link {
    display: block;
  }
}

/* reg-bar */
.theme-footer .reg-bar {
  padding: 30px 40px;
  background-color: #2C2891;
  background-image: url(../images/temps/footer/shape.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 12px;
}
.theme-footer .reg-bar .title-4 {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}
.theme-footer .reg-bar .para-2 {
  font-size: 16px;
  font-weight: 500;
  color: #ebf4fa;;
}
@media only screen and (max-width: 767.98px) {
  .theme-footer .reg-bar .title-4 {
    font-size: 22px;
  }
  .theme-footer .reg-bar .para-2 {
    font-size: 14px;
  }
}

/* footer cta — always dark regardless of page theme */
.theme-footer .cta-glass-card {
  background: linear-gradient(160deg, #1e2140 0%, #111326 55%, #0d0f22 100%) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.07), 0 32px 80px rgba(0,0,0,.55), 0 0 60px rgba(0,96,254,.08) inset !important;
  color: #fff !important;
}
.theme-footer .cta-glass-card .title-4,
.theme-footer .cta-glass-card .para-2 {
  color: #fff !important;
}

/* footer-bottom */
.theme-footer .footer-bottom {
  padding-top: 60px;
  padding-bottom: 30px;
}

/* content */
@media only screen and (max-width: 991.98px) {
  .theme-footer .footer-bottom .content {
    flex-wrap: wrap;
  }
}

/* logo */
.theme-footer .footer-bottom .logo {
  margin-right: 40px;
}
.theme-footer .footer-bottom .logo img {
  min-width: 180px;
}

/* links */
.theme-footer .footer-bottom .links {
  margin-bottom: 4px;
}
.theme-footer .footer-bottom .links li {
  position: relative;
}
.theme-footer .footer-bottom .links li:not(:last-of-type) {
  margin-right: 20px;
}
.theme-footer .footer-bottom .links li:not(:last-of-type)::after {
  position: absolute;
  content: '';
  right: -11px;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background-color: rgba(255, 255, 255, .3);
}
.theme-footer .footer-bottom .links li a {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}
.theme-footer .footer-bottom .links li a:hover {
  text-decoration: underline;
}

/* para-3 */
.theme-footer .footer-bottom .para-3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}
.theme-footer .footer-bottom .para-3 a {
  color: #ffffff;
  font-weight: 500;
}
.theme-footer .footer-bottom .para-3 a:hover {
  text-decoration: underline;
}

/* payment methods */
.theme-footer .payment-methods {
  text-align: right;
  flex-shrink: 0;
}
.theme-footer .payment-methods-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.theme-footer .payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  max-width: 280px;
}
.theme-footer .payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.theme-footer .payment-badge i {
  font-size: 20px;
  line-height: 1;
}
.theme-footer .payment-badge .payment-svg-g {
  display: block;
  flex-shrink: 0;
}
.theme-footer .payment-badge.badge-stripe i   { color: #6772e5; }
.theme-footer .payment-badge.badge-paypal i   { color: #009cde; }
.theme-footer .payment-badge.badge-bank i     { color: #60a5fa; }
.theme-footer .payment-badge.badge-applepay i { color: #ffffff; }
.theme-footer .payment-badge.badge-googlepay i { color: #4285f4; }
@media only screen and (max-width: 991.98px) {
  .theme-footer .payment-methods {
    text-align: left;
    flex-shrink: 1;
    width: 100%;
    min-width: 0;
  }
  .theme-footer .payment-badges {
    justify-content: flex-start;
    max-width: 100%;
  }
}

/* social-list */
.theme-footer .footer-bottom .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.theme-footer .footer-bottom .social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-footer .footer-bottom .social-list a:hover {
  opacity: .7;
}
.theme-footer .footer-bottom .social-list a img {
  filter: invert(1);
  min-width: 28px;
  width: 28px;
}



 
/* ----------------------------------- */


/* CTA based on footer css */
* CTA based on footer css */
.cta {
  position: relative;
  background-color: #ffffff00;
  
}


/* reg-bar */
.cta .reg-bar {
  padding: 30px 40px;
  background-color: #2C2891;
  background-image: url(../images/temps/footer/shape.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 12px;
}
.cta .reg-bar .title-4 {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}
.cta .reg-bar .para-2 {
  font-size: 16px;
  font-weight: 500;
  color: #ebf4fa;
}
@media only screen and (max-width: 767.98px) {
  .cta .reg-bar .title-4 {
    font-size: 22px;
  }
  .cta .reg-bar .para-2 {
    font-size: 14px;
  }
}

/* content */
@media only screen and (max-width: 991.98px) {
  .cta .cta-bottom .content {
    flex-wrap: wrap;
  }
}

/* para-3 */
.cta .cta-bottom .para-3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}
.cta .cta-bottom .para-3 a {
  color: #ffffff;
  font-weight: 500;
}
.cta .cta-bottom .para-3 a:hover {
  text-decoration: underline;
}


}

/* c note */
.light-theme .sy-select-server-dropdown .section-dropdown {
	background-color: #fff;
}

.light-theme .sy-select-server-dropdown .section-dropdown a.sy-select-server {
	color: #111;
}

.light-theme .sy-select-server-dropdown .section-dropdown::after {
	border-bottom: 8px solid #fff;
}



.plans-sec .plans .plan.sy-float-box-right .group .list li .float-box::after {
	right: unset;
	left: 26px;
}

.z-index-1 {
	z-index: 1;
}

/* ── CTA Glass Card (shared.brevo-cta + footer) ─────────────── */
.cta-glass-card {
  position: relative;
  background: linear-gradient(160deg, #1e2140 0%, #111326 55%, #0d0f22 100%);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 32px 80px rgba(0,0,0,.55),
    0 0 60px rgba(0,96,254,.08) inset;
  color: #fff;
}
.light-theme .cta-glass-card {
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow:
    0 0 0 1px rgba(0,96,254,.13),
    0 32px 80px rgba(0,96,254,.14);
  color: #111;
}
.cta-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0060fe 0%, #7c3aed 50%, #0060fe 100%);
  z-index: 2;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-orb-1 {
  width: 250px; height: 250px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(0,96,254,.15) 0%, transparent 70%);
}
.cta-orb-2 {
  width: 200px; height: 200px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 2;
}

/* cta email form */
.cta-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.light-theme .cta-form-wrapper {
  background: rgba(0, 96, 254, 0.03);
  border-color: rgba(0, 96, 254, 0.1);
}
.cta-form-wrapper:focus-within {
  border-color: rgba(0, 96, 254, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 96, 254, 0.1);
}
.cta-input {
  background: transparent !important;
  border: none !important;
  color: inherit !important;
  flex: 1;
  padding: 12px 10px !important;
  height: 50px !important;
  font-size: 16px !important;
  outline: none !important;
  box-shadow: none !important;
}
.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.light-theme .cta-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.theme-footer .cta-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.cta-submit-btn {
  background: #0060fe !important;
  border: none !important;
  color: #fff !important;
  padding: 0 30px !important;
  height: 50px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  white-space: nowrap;
  outline: none !important;
}
.cta-submit-btn:hover {
  background: #0056e0 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 96, 254, 0.3) !important;
}
.cta-submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .cta-form-wrapper {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }
  .cta-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
  }
  .light-theme .cta-input {
    background: rgba(0, 96, 254, 0.05) !important;
    border-color: rgba(0, 96, 254, 0.1) !important;
  }
  .cta-submit-btn {
    width: 100% !important;
  }
}
