/*-------- Default Items ------------ */

:root {
  --global--color-darkblue: #171a24;
  --global--color-blue: #1e222f;
  --global--color-grey: #bcbcbc;
  --global--color-yellow: #ffda68;
  --global--color-lightpink: #212e6e;
  --global--color-white: #ffffff;
  --global--color-pink: #4361ee;
  --global--color-lightblack: #11141b;
  --global--color-purple: #0e1726;
  --global--color-light: #f8f8f8;
  --global--color-lightgrey: #808080;
  --global--color-black: #181b22;
}

/*-------- COUNSEL BAND ------------ */
.nxt-counsel-band {
  position: relative;
  z-index: 4;
  clear: both;
  margin-top: 1.5rem;
  padding: 0 0 1.25rem;
}
.nxt-counsel-band__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nxt-counsel-band__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  background: var(--sale-surface, #161c2d);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.nxt-counsel-band--dark .nxt-counsel-band__card {
  background: var(--sale-surface, #161c2d);
  border-color: rgba(255, 255, 255, 0.09);
}
.nxt-counsel-band__card:hover {
  border-color: color-mix(in srgb, var(--sale-accent, #4361ee) 45%, transparent);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 32px var(--sale-accent-glow, rgba(67, 97, 238, 0.28));
}
.nxt-counsel-band__photo,
.nxt-counsel-band__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.nxt-counsel-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sale-accent-glow, rgba(67, 97, 238, 0.18));
  color: var(--sale-text-accent, #93c5fd);
  font-size: 1.55rem;
}
.nxt-counsel-band__body {
  flex: 1 1 220px;
  min-width: 0;
}
.nxt-counsel-band__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sale-text-accent, #93c5fd);
}
.nxt-counsel-band__name {
  display: block;
  color: #f8fafc;
  font-size: 1.15rem;
}
.nxt-counsel-band__meta {
  display: block;
  margin-top: 0.1rem;
  color: #94a3b8;
  font-size: 0.88rem;
}
.nxt-counsel-band__text {
  margin: 0.45rem 0 0;
  color: var(--sale-text-muted, #d7e0ee);
  font-size: 0.92rem;
  line-height: 1.45;
}
.nxt-counsel-band__cta {
  flex-shrink: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--sale-accent-hover, #5577ff), var(--sale-accent, #4361ee));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 24px var(--sale-accent-glow, rgba(67, 97, 238, 0.28));
}
@media (max-width: 767px) {
  .nxt-counsel-band__cta { width: 100%; text-align: center; }
}

/*-------- PARTNER LOGOS ------------ */
.partner-logos-bar {
  background: var(--global--color-blue);
  padding: 1.75rem 0 1.15rem;
  border: 0;
}
.partner-logos-bar--dark {
  background: var(--global--color-blue);
  border: 0;
}
.partner-logos-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.75rem;
}
.partner-logo-item {
  flex: 1 1 0;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.partner-logo-item:hover {
  transform: translateY(-2px);
}
.partner-logo-item img {
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/*-------- CONTACT ------------ */
.contact-section {
  position: relative;
  bottom: auto;
  z-index: 2;
  padding: 0.35rem 0 1.35rem;
  margin: 0;
  background: var(--global--color-blue);
}
.contact-section--admin {
  padding: 1.25rem 0 1.5rem;
}
.contact-planbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.contact-planbox-link {
  display: block;
  text-decoration: none !important;
  height: 100%;
  min-width: 0;
}
.contact-planbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #161c2d;
  padding: 1.35rem 1.3rem;
  border-radius: 12px;
  transition: background 0.18s ease, border-color 0.18s ease;
  position: relative;
  height: 100%;
  min-height: 5.25rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: none;
}
.contact-planbox:hover {
  transform: none;
  cursor: pointer;
  z-index: 1;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.14);
}
.contact-planbox__icon {
  flex-shrink: 0;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1rem;
}
.contact-planbox__text {
  min-width: 0;
}
.contact-planbox h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.contact-planbox p {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}
.contact-section a {
  text-decoration: none;
}
.contact-planbox--faq,
.contact-planbox:not(.contact-planbox-variation-2):not(.contact-planbox-variation-3) {
  background: #0c3d3f;
}
.contact-planbox--faq:hover,
.contact-planbox:not(.contact-planbox-variation-2):not(.contact-planbox-variation-3):hover {
  background: #0e484a;
}
.contact-planbox-variation-2,
.contact-planbox-variation-3 {
  background: #161c2d;
}
.contact-planbox-variation-2:hover,
.contact-planbox-variation-3:hover {
  background: #1b2438;
}
.contact-image {
  max-width: 48px;
}
@media (max-width: 991px) {
  .contact-section {
    bottom: auto;
    padding: 0.25rem 0 1rem;
  }
  .contact-planbox-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .contact-section .col-lg-4 {
    margin-bottom: 0.75rem;
  }
  .partner-logos-track {
    justify-content: center;
  }
  .partner-logo-item {
    flex: 0 0 auto;
  }
  .partner-logo-item img {
    height: 56px;
    max-width: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-planbox,
  .partner-logo-item {
    transition: none;
  }
  .contact-planbox:hover {
    transform: none;
  }
}

/*-------- FOOTER ------------ */
.footer-section {
  background: var(--global--color-blue);
  padding: 1.75rem 0 0;
}
.contact-section > .container,
.footer-section > .container,
.footer-bar > .container,
.partner-logos-bar > .container,
.nxt-counsel-band__list.container {
  max-width: 1600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.nxt-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(140px, 1fr));
  gap: 2.25rem 1.75rem;
  padding-bottom: 2rem;
  align-items: start;
}
.footer-section .nxt-footer-col__title {
  font-size: 0.78rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}
.nxt-footer-group {
  margin: 0 0 1.15rem;
}
.nxt-footer-group:last-child {
  margin-bottom: 0;
}
.nxt-footer-group .hosting-list li {
  padding-bottom: 6px;
}
.nxt-footer-group__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.4rem;
}
.nxt-footer-group--lawyers {
  margin-top: 1.25rem;
}
a.nxt-footer-group__label--link {
  color: #e2e8f0;
  text-decoration: none;
}
a.nxt-footer-group__label--link:hover,
a.nxt-footer-group__label--link:focus {
  color: #fff;
  text-decoration: none;
}
.nxt-footer-contact {
  padding: 0;
  margin: 0 0 1.25rem;
}
.nxt-footer-contact li {
  padding-bottom: 0;
  margin: 0 0 0.9rem;
}
.nxt-footer-contact__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.2rem;
}
.nxt-footer-contact__value {
  display: block;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 400;
}
a.nxt-footer-contact__value:hover,
a.nxt-footer-contact__value:focus {
  color: #fff;
  text-decoration: none;
}
.nxt-footer-contact__ticket {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}
.nxt-footer-contact__ticket:hover,
.nxt-footer-contact__ticket:focus {
  color: #fff;
  text-decoration: none;
}
.newsletter {
  padding-top: 53px;
}
.footer-section h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.footer-section p {
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
  color: var(--global--color-grey);
  margin-bottom: 31px;
}
.footer-section .form-control {
  padding: 28px;
  padding: 28px;
  background: var(--global--color-white);
  border-radius: 50px;
  position: relative;
  border: none;
  color: #808080;
  font-size: 16px;
}
.footer-section .form-group {
  position: relative;
  background: var(--global--color-white);
  border-radius: 50px;
  border: 1px solid #e8eaf1;
}
.footer-form {
  width: 66%;
  margin: auto;
}
.subscribe-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--global--color-lightblack);
  background: var(--global--color-yellow);
  border-radius: 50px;
  border: none;
  padding: 18px 27px 19px 27px;
  position: absolute;
  right: -1px;
  top: -1px;
  left: inherit;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.subscribe-btn:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.footer-logo small {
  font-size: 14px;
  font-weight: 400;
  color: var(--global--color-grey);
}
.footer-logo-text {
  margin-bottom: 32px;
}
.footer-list li {
  display: inline-block;
  margin-right: 5px;
}
.footer-list li a {
  display: inline-block;
  color: var(--global--color-pink);
  border: 2px solid var(--global--color-pink);
  border-radius: 50%;
  height: 43px;
  width: 43px;
  text-align: center;
  line-height: 41px;
  transition: 0.3s ease-in-out;
  position: relative;
}
.footer-list li a:hover {
  background: var(--global--color-pink);
  color: var(--global--color-blue);
  height: 43px;
  width: 43px;
  transform: translateY(-5px);
  cursor: pointer;
  z-index: 0;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
.footer-list {
  padding-top: 32px;
}
.footer-logo figure {
  margin-bottom: 33px;
}
.footer-section .form-group {
  margin-bottom: 78px;
}
.footer-company {
  padding-left: 18px;
}
.footer-contact {
  padding-left: 15px;
}
.footer-section h5 {
  font-weight: 700;
  margin-bottom: 1.35rem;
  color: #fff;
}
.footer-hosting {
  padding-left: 10px;
}
.hosting-list li,
.company-list li,
.contact-list li {
  padding-bottom: 11px;
}
.hosting-list li a {
  font-size: 16px;
  color: var(--global--color-grey);
  line-height: 25px;
  font-weight: 400;
}
.company-list li a {
  font-size: 16px;
  color: var(--global--color-grey);
  line-height: 25px;
  font-weight: 400;
}
.contact-list li a {
  font-size: 16px;
  color: var(--global--color-grey);
  line-height: 25px;
  font-weight: 400;
}
.hosting-list li a:hover,
.company-list li a:hover,
.contact-list li a:hover {
  color: var(--global--color-white);
  text-decoration: none;
}
.footer-image {
  max-width: 143px;
}
#ftrimg {
  width: 143px;
  max-width: 100%;
  height: auto;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0.35rem 0 1.35rem;
}
.footer-social li {
  list-style: none;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1 !important;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover,
.footer-social a:focus {
  background: rgba(67, 97, 238, 0.22);
  color: #fff !important;
  outline: none;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  margin: 0 0 1rem;
}
.footer-payments li {
  list-style: none;
}
.footer-payments img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 42px;
  object-fit: contain;
  opacity: 0.9;
}
@media (max-width: 1199px) {
  .nxt-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
  }
  .nxt-footer-col--brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 991px) {
  .footer-company,
  .footer-contact,
  .footer-hosting {
    padding-left: 0;
  }
  .footer-logo-setting,
  .footer-hosting-setting,
  .footer-company-setting,
  .footer-contact-setting,
  .nxt-footer-col {
    margin-bottom: 0;
  }
  .footer-section {
    padding-top: 1.5rem;
  }
  #ftrimg {
    width: min(180px, 55vw);
  }
}
@media (max-width: 575px) {
  .nxt-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.nxt-footer-trustpilot {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.85rem 0 1.4rem;
  margin-top: 0.15rem;
  background: transparent;
  border-top: 1px solid color-mix(in srgb, var(--cu-accent, var(--sale-accent, #94a3b8)) 32%, transparent);
}
.nxt-footer-trustpilot .trustpilot-widget {
  display: block;
  width: 260px;
  max-width: 100%;
  min-height: 52px;
  overflow: hidden;
  background: transparent !important;
}
.nxt-footer-trustpilot iframe {
  display: block;
  width: 260px !important;
  max-width: 100% !important;
  min-height: 52px;
  height: 52px !important;
  margin: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
}
.nxt-footer-trustpilot .trustpilot-widget a {
  color: var(--cu-accent, var(--sale-accent, #93c5fd));
}
/*-------- FOOTER BAR------------ */
.footer-bar {
  background: var(--global--color-darkblue);
  padding: 14px 0 18px;
  padding-bottom: max(18px, env(safe-area-inset-bottom));
}
.footer-bar .footer-cards small {
  font-size: 14px;
  color: var(--global--color-grey);
  font-weight: 400;
  margin: 0 15px;
  padding-top: 1px;
  display: inline-block;
  line-height: 1.55;
}
.footer-bar-meta {
  margin-bottom: 6px;
}
.footer-bar-version {
  margin-top: 2px;
}
.footer-version-link {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer-version-link:hover {
  opacity: 1;
}
.footer-version-link small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 15px;
}
.footer-version-link .fab {
  font-size: 11px;
}
.footer-bar-links-row {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(188, 188, 188, 0.12);
}
.footer-bar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 0;
  margin: 0 15px;
  padding: 0;
}
.footer-bar-nav a {
  font-size: 13px;
  color: var(--global--color-grey);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer-bar-nav a:hover,
.footer-bar-nav a:focus {
  color: var(--global--color-white);
}
.footer-bar-nav a:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: rgba(188, 188, 188, 0.45);
  pointer-events: none;
}
.footer-cards-list li a {
  color: var(--global--color-grey);
  font-size: 29px;
  padding-left: 5px;
}
.footer-cards-list li i {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.footer-cards-list li a:hover i {
  transform: translateY(-5px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 0;
}
.footer-cards-list {
  margin-bottom: 0px;
}
.footer-cards-list li {
  display: inline-block;
}

.footer-bar .footer-arrow small {
  font-size: 14px;
  color: var(--global--color-grey);
  font-weight: 400;
  margin: 0px 5px 0px 0px;
  padding-top: 1px;
}
.heart {
  color: var(--global--color-pink);
  padding: 0px 2px 0px 4px;
  font-size: 12px;
}
.footer-arrow-setting {
  height: 43px;
  width: 43px;
  font-size: 18px;
  background: var(--global--color-yellow);
  color: var(--global--color-lightblack);
  border-radius: 50%;
  text-align: center;
  line-height: 41px;
  margin-left: 11px;
}
.footer-arrow-setting:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.footer-arrow {
  float: right;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .footer-bar {
    padding: 18px 0 22px;
  }
  .footer-bar-meta {
    text-align: left;
  }
  .footer-bar-version {
    text-align: left !important;
    margin-top: 10px;
  }
  .footer-bar-nav {
    justify-content: flex-start;
    margin: 0 15px;
  }
}
@media screen and (max-width: 576px) {
  .footer-bar-nav a {
    font-size: 12px;
  }
  .footer-bar-nav a:not(:last-child)::after {
    margin: 0 8px;
  }
}
.about-main-header {
  background: none;
}

/*-------- SHARED-BANNER ------------ */
.shared-banner-section {
  padding: 70px 0px 207px 0px;
}
.shared-banner-section h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 40px;
}
.shared-banner-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
/*-------- SHARED-TABS ------------ */
.shared-tabs-section {
  margin-top: -231px;
}
.shared-tabs-section .shared-monthly-btn {
  font-size: 16px;
  font-weight: 400;
  padding: 8px 32px;
  color: var(--global--color-lightgrey);
  background: var(--global--color-white);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  float: left;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  display: inline-block;
}
.shared-tabs-section .shared-monthly-btn:hover {
  color: var(--global--color-white);
  text-decoration: none;
  background: var(--global--color-pink);
}
.shared-tabs-section .shared-yearly-btn {
  font-size: 16px;
  font-weight: 400;
  padding: 8px 38px;
  color: var(--global--color-lightgrey);
  background: var(--global--color-white);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.shared-tabs-section .shared-yearly-btn:hover {
  color: var(--global--color-white);
  text-decoration: none;
  background: var(--global--color-pink);
}
.shared-tabs-section .nav-tabs {
  border-bottom: none;
}
.shared-tab-content-section {
  background: var(--global--color-light);
}
.shared-tab-button {
  margin-bottom: 157px;
}
.shared-tabs-section ul li .active {
  color: var(--global--color-white);
  text-decoration: none;
  background: var(--global--color-pink);
  box-shadow: 0px 30px 30px rgba(24, 27, 34, 0.5);
}
.shared-tabs-section .shared-monthly-btn {
  transition: all 0.3s ease-in-out;
  position: relative;
}
/*-------- SHARED-PLAN-BOX ------------ */
.shared-plan-box {
  padding: 50px 49px;
  background: var(--global--color-white);
  border-radius: 15px;
  box-shadow: 0 30px 30px rgba(30, 34, 47, 0.03);
  height: 100%;
}
.shared-plan-box-section-inner {
  position: relative;
  top: -100px;
}
.shared-plan-box figure {
  margin-bottom: 29px;
}
.shared-plan-box h4 {
  font-weight: 700;
  line-height: 20px;
  color: var(--global--color-black);
}
.shared-plan-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--global--color-lightgrey);
  margin-bottom: 29px;
}
.shared-plan-box .shared-plan-box-paragraph {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-style: italic;
  color: var(--global--color-black);
}
.shared-plan-box h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 40px;
  color: var(--global--color-pink);
}
.shared-plan-box .shared-plan-box-pricing {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--global--color-pink);
}
.shared-plan-box .shared-plan-box-pricing-month {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--global--color-pink);
}
.shared-plan-box-btn {
  padding: 14px 50px;
  color: var(--global--color-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background: var(--global--color-pink);
  display: inline-block;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.shared-plan-box-btn:hover {
  text-decoration: none;
  color: var(--global--color-white);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.shared-plan-box-section .variation-2 h2,
.shared-plan-box-section .variation-2 .shared-plan-box-pricing,
.shared-plan-box-section .variation-2 .shared-plan-box-pricing-month {
  color: var(--global--color-lightpink);
}
.shared-plan-box-section .variation-2 .shared-plan-box-btn {
  background: var(--global--color-lightpink);
}
.shared-plan-box-section .variation-3 h2,
.shared-plan-box-section .variation-3 .shared-plan-box-pricing,
.shared-plan-box-section .variation-3 .shared-plan-box-pricing-month {
  color: var(--global--color-purple);
}
.shared-plan-box-section .variation-3 .shared-plan-box-btn {
  background: var(--global--color-purple);
}
.shared-plan-box-images {
  max-width: 51px;
}
/*-------- HOSTING FEATURES ------------ */
.features-section-variation-2 {
  background: var(--global--color-light);
  padding-top: 0px;
}
/*-------- RELIABLE SHARED HOSTING ------------ */
.reliable-shared-hsoting-section {
  padding: 100px 0px;
  background: var(--global--color-white);
}
.reliable-shared-hsoting-section h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 18px;
  color: var(--global--color-black);
}
.reliable-shared-hsoting-section h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 19px;
  color: var(--global--color-black);
}
.reliable-shared-hsoting-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: var(--global--color-lightgrey);
}
.reliable-shared-hsoting-section-btn {
  padding: 14px 45px;
  background: var(--global--color-yellow);
  color: var(--global--color-lightblack);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.reliable-shared-hsoting-section-btn:hover {
  text-decoration: none;
  color: var(--global--color-lightblack);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.reliable-shared-hsoting-section-button {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.reliable-shared-hsoting-section-button:hover {
  transform: translateY(-3px);
}
.reliable-shared-hsoting-section-text {
  padding-top: 73px;
}
.features-section-variation-2 p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--global--color-lightgrey);
}
.reliable-shared-hsoting-section-image {
  max-width: 450px;
}
/*-------- VPS PAGE ------------ */
.vps-sub-section {
  background-image: url(../images/vps-banner-img.png);
  background-size: cover;
  background-position: center 40px;
  background-repeat: no-repeat;
}
/*-------- VPS-BANNER ------------ */
.vps-banner-section {
  padding: 46px 0px 231px 0px;
}
.vps-banner-section h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 40px;
}
.vps-banner-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.vps-banner-text {
  padding-top: 24px;
}
.vps-banner-image {
  max-width: 255px;
}
/*-------- GUARRANTEES ------------ */
.guarrantees-section-variation-2 {
  background: var(--global--color-purple);
  padding: 100px 0px;
}
.guarrantees-section-variation-2 .guarrantee-text {
  padding-top: 0px;
  margin-bottom: 77px;
}
.guarrantees-section-variation-2-text {
  margin-bottom: 71px;
}
.guarrantees-section-variation-2 h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 30px;
}
.guarrantees-section-variation-2 h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}
.guarrantees-section-variation-2 p {
  font-size: 16px;
  font-weight: 400;
  padding: 0 16%;
  line-height: 30px;
}
/*-------- VPS-SLIDER ------------ */
.vps-slider-section {
  background: var(--global--color-light);
  float: left;
  width: 100%;
}
.vps-slider-section h4 {
  color: var(--global--color-black);
  font-weight: 700;
  line-height: 22px;
}
.vps-slider-section p {
  color: var(--global--color-lightgrey);
  font-weight: 400;
  line-height: 18px;
  font-size: 18px;
  margin-bottom: 41px;
}
.vps-slider-section .form-group {
  background: var(--global--color-white);
  border-radius: 15px;
  border: 1px solid #e8eaf1;
  margin-bottom: 35px;
}
.vps-slider-section .form-control {
  background: var(--global--color-white);
  border-radius: 50px;
  position: relative;
  height: 53px;
  border: none;
  color: var(--global--color-black);
  font-size: 16px;
  padding: 0px 0px 0px 18px;
}
.vps-slider-section select {
  appearance: none;
}
.vps-slider-section .select-form {
  background-image: url(../images/angle-down.png);
  background-repeat: no-repeat;
  background-position: 92% 21px;
}
.vps-slider-section h6 {
  color: var(--global--color-black);
  font-weight: 700;
  line-height: 20px;
}
.vps-slider-section .vps-slider-paragraph {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-style: italic;
  color: var(--global--color-black);
}
.wrapper {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.plan-wrap {
  float: left;
  background: #fff;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 30px 30px 0 rgba(24, 27, 34, 0.03);
  position: absolute;
  top: -171px;
}
.plan_con {
  float: left;
  width: 100%;
  background: var(--global--color-light);
}
.plan_tabs {
  position: relative;
}
/*
 * jQuery UI Slider 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.ui-slider-horizontal {
  height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.sliderbox {
  float: left;
  width: 68.5%;
  padding: 60px;
}
.slider-container .ui-slider {
  float: left;
  width: 100%;
  height: 10px;
  padding: 0;
  border: 0;
  background: var(--global--color-pink);
  border-radius: 15px;
}
/*.slider-container #slider .ui-slider-range, .slider-container #sliderCpu .ui-slider-range, .slider-container #sliderRam .ui-slider-range, .slider-container #sliderDisk .ui-slider-range {
	background:url(../images/blue_bar.png) no-repeat left top;
}*/
.slider-container .ui-slider-handle {
  outline: none;
  background: #ffda68 no-repeat left top;
  border-radius: 50px;
  border: 0;
  width: 30px;
  height: 30px;
  text-decoration: none;
  margin-top: -5px;
  margin-left: -22px;
}
.slider-container .ui-slider-handle:hover {
  cursor: pointer;
}
.slider-row1 {
  float: left;
  width: 100%;
  margin-bottom: 35px;
}
.slider-row1:last-child {
  margin-bottom: 0px;
}
.slider-row1 label {
  float: left;
  color: var(--global--color-black);
  text-align: left;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0px 0px 0;
  font-weight: 400;
}
.slider-row1 .slide-value {
  float: right;
  color: var(--global--color-pink);
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
}
.slider_content {
  float: right;
  box-shadow: 0 30px 30px rgba(24, 27, 34, 0.03);
  width: 31.5%;
  padding: 55px 50px 70px 50px;
}
.vps-slider-section figure {
  margin-bottom: 20px;
}
.vps-slider-section .variation-2 {
  background: var(--global--color-lightpink);
}
.vps-slider-section .variation-3 {
  background: var(--global--color-purple);
}
.vps-slider-section .variation-4 {
  color: var(--global--color-lightpink);
}
.vps-slider-section .variation-5 {
  color: var(--global--color-purple);
}
.pricebox .pricetxt {
  color: #4361ee !important;
  font-size: 18px;
  font-weight: 400;
}
.pricebox .pricetxt span.doller {
  font-size: 52px;
  font-weight: 700;
  line-height: 40px;
  color: #4361ee !important;
}
.pricebox .pricetxt span.numeric {
  font-size: 52px;
  font-weight: 700;
  line-height: 40px;
  color: #4361ee !important;
}
.white_btn {
  display: inline-block;
  height: 46px;
  margin: 10px auto 0;
  width: 85.2%;
}
.white_btn a {
  padding: 14px 40px;
  color: var(--global--color-white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 0px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  background: #4361ee;
  display: inline-block;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.white_btn a:hover {
  text-decoration: none;
  color: var(--global--color-white);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.vps-slider-section .vps-slider-pricing-month {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--global--color-pink);
}
.vps-slider-section .vps-slider-section-inner-text {
  margin-bottom: 21px;
  line-height: 24px;
}
.reseller-feature-section-2 {
  margin-top: 0px;
  padding: 393px 0px 100px 0px;
  background: var(--global--color-light);
}
.vps-slider-image-list {
  max-width: 24px;
}
/*-------- LANDING-PAGE-BANNER ------------ */
.landing-page-banner-section {
  padding: 50px 0px 0px 0px;
  background-image: url(../images/landing-page-banner-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.landing-page-banner-section h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: -0.5px;
}
.landing-page-banner-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 32px;
  padding: 0 11%;
}
.landing-page-column {
  background: var(--global--color-darkblue);
  padding: 158px 50px 92px 50px;
  z-index: 1;
  border-radius: 15px;
  top: -108px;
  position: relative;
}
.landing-page-server-img img {
  z-index: 2;
  position: relative;
}
.landing-page-server-img {
  max-width: 500px;
  margin: 0 auto;
}
.landing-page-primary-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 15px 35px;
  color: var(--global--color-black);
  background: var(--global--color-yellow);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}
.landing-page-primary-btn:hover {
  text-decoration: none;
  color: var(--global--color-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 0;
}
.landing-page-secondary-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 15px 31px;
  color: var(--global--color-white);
  background: var(--global--color-pink);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-left: 17px;
  display: inline-block;
}
.landing-page-secondary-btn:hover {
  text-decoration: none;
  color: var(--global--color-white);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
  cursor: pointer;
  z-index: 0;
}
.landing-page-banner-logo-img {
  max-width: 346px;
  margin: 0 auto 50px;
}
.landing-page-server-bottom-left-img,
.landing-page-server-bottom-right-img {
  max-width: 613px;
}
.landing-page-server-bottom-left-image {
  left: -178px;
  bottom: 40px;
  width: 25%;
  opacity: 0.1;
}
.landing-page-server-bottom-right-image {
  right: -178px;
  bottom: 40px;
  width: 25%;
  opacity: 0.1;
}
.themeforest-link a {
  font-size: 12px;
  text-decoration: none;
  color: #fdda68ad;
}
html {
  scroll-behavior: smooth;
}

.dropdown-menu:before {
  display: none;
}

/* Shop / Kundenbereich: dezenter Karten-Lift + Button-Feedback */
.main-content .card.component-card_2 {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.main-content .card.component-card_2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.main-content .btn-primary:not(:disabled):not(.disabled):active {
  transform: scale(0.98);
  transition: transform 0.08s ease;
}
