/* Typography & Site Defaults */
:root {
    --theme-primary: #AE72F6;
    --theme-secondary: #01E7F7;

    --theme-white: #fff;
    --theme-dark: #111517;
    --theme-darker: #000;

    --dark-gradient: linear-gradient(270deg, #030C19 0%, #030B19 0.01%, #000 56.5%);
    --theme-gradient: linear-gradient(90deg, var(--theme-secondary) 0%, var(--theme-primary) 100%);
    --theme-gradient-flip: linear-gradient(90deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);

    /* Sections */
    --section-spacing: 120px;

    /* Fonts */
    --font-main: "degular", sans-serif;

    --font-size-sm: clamp(12.8px, 0.05vw + 12.61px, 13.5px);
    --font-size-base: clamp(18px, 1.1vw + 13px, 20px);
    --font-size-md: clamp(21px, 0.971vw + 18.6375px, 24.85px);
    --font-size-lg: clamp(28px, 1.602vw + 10.25px, 41px);
    --font-size-xl: clamp(32px, 2.0313vw + 13px, 52px);
    --font-size-xxl: clamp(50px, 27.5px + 4.3vw, 110px);

    font-family: var(--font-main);
    font-size: var(--font-size-base);
    font-weight: 400;
}

/* #headerrow-251350 .area-right {
    display: none;
} */

/* Typography */

h1,
h2 {
  font-family: var(--font-main);
  font-size: var(--font-size-xxl);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h3 {
  font-family: var(--font-main);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h4,
h5,
h6 {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: var(--font-size-md);
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

p,
ol,
ul {
  font-family: var(--font-main);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.56;
}

p a,
li a,
dd a {
  font-weight: bolder;
}

.bg-primary p a,
.bg-primary li a,
.bg-primary dd a {
  color: var(--theme-secondary);
}

a {
  text-decoration: none;
}

.color-secondary {
  color: var(--theme-secondary) !important;
}

.color-white {
  color: var(--theme-white) !important;
}

.color-gradient {
  background-image: var(--theme-gradient);
  color: transparent;
  background-clip: text;
}

.bg-dark {
  background: var(--dark-gradient);
}

.bg-darker {
  background-color: var(--theme-darker);
}

.bg-wavy-top, .bg-wavy-bottom {
  position: relative;
}

.bg-wavy-top::before, .bg-wavy-bottom::after {
    content: "";
    width: 100%;
    height: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 0;
}

.bg-wavy-top::before {
    background-image: url("/Portals/0/Images/AudioWave_Purple.png");
    background-position: top;
    top: 0;
    left: 0;
}

.bg-wavy-bottom::after {
    background-image: url("/Portals/0/Images/wavy_line.png");
    background-position: bottom;
    bottom: 0;
    right: 0;
}

.bg-gradient {
  background: linear-gradient(120deg, var(--theme-secondary) 0%, var(--theme-dark) 50%, var(--theme-primary) 100%);
}

.bg-gradient-img {
  background-image: url("/Portals/0/Images/gradient-background.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.contentpane {
background: url(/Portals/0/Images/fuzzy_background.png) var(--theme-dark);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
}

.white-border {
  border-top: 2px solid rgba(255, 255, 255, 0.50);
  border-bottom: 2px solid rgba(255, 255, 255, 0.50);
}

[class^="heading"],
[class*="heading"] {
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0 0 0.5em;
}

[class^="heading"].margin-top,
[class*="heading"].margin-top {
  margin-top: 0.75em;
}

.heading-primary {
  font-family: var(--font-main);
  font-size: var(--font-size-xxl);
  color: var(--theme-primary);
  text-transform: uppercase;
}

.heading-primary>span,
h2>span,
h1>span {
  color: var(--theme-secondary);
}

.heading-secondary {
  font-family: var(--font-main);
  font-size: var(--font-size-xl);
  color: var(--theme-primary);
  text-transform: uppercase;
}

.heading-tertiary {
  font-family: var(--font-subheading);
  font-size: var(--font-size-md);
  color: var(--theme-primary);
  font-weight: 800;
}

blockquote {
  font-size: var(--font-size-base);
  color: var(--theme-primary);
  font-style: normal;
  padding: 0;
  border: none;
}

blockquote cite {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  margin: 1em 0 0 2em;
}

/* Utility Classes */
.color-primary,
a.color-primary {
  color: var(--theme-primary) !important;
  fill: var(--theme-primary);
}

.font-size-sm {
  font-size: var(--font-size-sm);
}

.font-size-base {
  font-size: var(--font-size-base);
}

.font-size-md {
  font-size: var(--font-size-md);
}

.font-size-lg {
  font-size: var(--font-size-lg);
}

.font-size-xl {
  font-size: var(--font-size-xl);
}

.font-size-xxl {
  font-size: var(--font-size-xxl);
}

[class^="btn"] {
  line-height: 1.25rem;
  letter-spacing: 1.5px;
  font-size: var(--font-size-base);
  font-weight: 400;
  font-family: var(--font-main);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 10px 34px;
  margin: 3px;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 40px;
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

[class^="btn"]:hover {
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

.btn-primary {
  background: var(--theme-gradient);
  color: white !important;
}

.btn-underline {
  color: var(--theme-white) !important;
  display: inline-block;
  position: relative;
  padding: 0 0 5px;
  margin: 0;
  width: fit-content;
}

.btn-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--theme-white);
  transition: width 0.4s ease, left 0.4s ease;
}

.btn-underline:hover::before {
  width: 100%;
  left: 0;
}

.btn-white {
  color: var(--theme-dark) !important;
  background-color: var(--theme-white);
}

.btn-black {
  color: var(--theme-white) !important;
  background-color: var(--theme-dark);
  border: 2px solid var(--theme-white);
}

/* Nav Styles */

.nav-bar {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.mobile-nav-color {
    background: var(--dark-gradient);
}

#dng-megamenu365931.hoverstyle_3 .primary_structure>li>a {
  border: 1px solid #fff;
  box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.5), 0 0 7px rgba(255, 255, 255, 0.5);
}

#dng-megamenu365931.hoverstyle_3 .primary_structure>li:hover>a,
#dng-megamenu365931.hoverstyle_3 .primary_structure>li>a:focus,
#dng-megamenu365931.hoverstyle_3 .primary_structure>li.current>a,
#dng-megamenu365931.hoverstyle_3 .primary_structure>li.menu_hover>a,
#dng-megamenu365931.hoverstyle_3 .primary_structure>li>a.current {
  border: 1px solid #030915;
  box-shadow: none;
}

.dng-megamenu.hoverstyle_3 .primary_structure>li {
  margin: 0 1rem 0 0;
}

.dng-megamenu.hoverstyle_3 .primary_structure>li:last-of-type {
  margin: 0;
}

.dg-menu-anime:after, .dg-menu-anime:before, .dg-menu-anime span:after {
    border-bottom: 2px solid var(--theme-white);
}

.mobilemenu-main .gomenu {
    background: var(--dark-gradient);
}

.mobilemenu-main .mobileclose::before,
.mobilemenu-main .mobileclose::after {
    border: 2px solid var(--theme-white) !important;
}

#mobilemenu11098 .mobileclose, #mobilemenu11098 .gomenu > ul > li > a > span, #mobilemenu11098 .gomenu li .arrows {
    color: var(--theme-white);
}

#mobilemenu11098 li.current > a > span {
    background-image: var(--theme-gradient) !important;
    color: transparent !important;
    background-clip: text !important;
}

#mobilemenu11098 a:hover span {
    color: var(--theme-primary) !important;
}

/* Internal Page Styles */
.int-hero {
  padding-top: 240px;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  /* min-height: 67vh; */
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

.cta-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Scrolling Banner */

.scrolling-banner {
  width: 100%;
  background-color: black;
  font-size: var(--font-size-lg);
  padding: 0.5em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.scrolling-banner>p {
  margin: 0;
  animation: sideScroll forwards 20s infinite;
  color: white;
  animation-timing-function: linear;
  white-space: nowrap;
  font-weight: 600;
  font-size: inherit;
  line-height: 1;
}

@keyframes sideScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-38.76976em);
  }
}

ul.list {
    width: fit-content;
    list-style-type: none;
    text-align: left;
    padding: 0;
}

ul.list li {
    color: var(--theme-white);
    font-size: var(--font-size-md);
    font-family: var(--font-main);
    position: relative;
    padding-left: 2rem;
    margin: 0 0 1.2rem;
}

ul.list li::before {
    content: "";
    background-image: url("/Portals/0/Images/Icons/star-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.card-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card {
  width: 390px;
  height: auto;
  border: 2px solid var(--theme-primary);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--theme-white);
  padding: 1rem;
  gap: 1rem;
}

.card p {
    font-size: var(--font-size-base);
}

.card:nth-of-type(even) {
  border: 2px solid var(--theme-secondary);
}

.title {
  padding: 2rem 0;
}

footer {
  width: 100%;
  height: 400px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 15px;
  background: linear-gradient(90deg, var(--theme-dark) 0%, var(--theme-secondary) 33%, var(--theme-primary) 66%, var(--theme-dark) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

footer div {
  align-self: center;
  text-align: center;
}

ul.footer-list {
  display: inline-block;
  text-align: center;
  list-style: none;
  margin: 0;
  font-family: var(--font-main);
}

ul.footer-list li {
  font-size: var(--font-size-md);
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 0 0 1rem;
  cursor: pointer;
  transition: all 150ms ease;
}

ul.footer-list li a {
  color: var(--theme-white);
}

ul.footer-list li:hover {
  font-weight: 600;
}

.icon {
    width: 450px;
    margin: 25px 0;
}

@media screen and (max-width: 834px) {
    .card-container {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .int-hero {
        padding-top: 0;
    }

    .contentpane {
        background: var(--theme-dark);
    }

  footer {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }

  .icon {
      width: 225px;
  }
}































