
[data-novi-id="0"]{
  text-align: center;
}

a.brand-name{
  
  
}


.novi-background{
  // padding-top: 50; 
  // height: 140px;
}



:root {
  --dark-color: hsl(var(--hue), 100%, 9%);
  --light-color: hsl(var(--hue), 95%, 98%);
  --base: hsl(var(--hue), 95%, 50%);
  --complimentary1: hsl(var(--hue-complimentary1), 95%, 50%);
  --complimentary2: hsl(var(--hue-complimentary2), 95%, 50%);

  /* --font-family: "Poppins", system-ui; */
  --font-family: "Poppins", "Montserrat", sans-serif;

  --bg-gradient: linear-gradient(
    to bottom,
    hsl(var(--hue), 95%, 99%),
    hsl(var(--hue), 95%, 84%)
  );
}


html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--dark-color);
  background: var(--bg-gradient);
}


.orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* strong {
  font-weight: 600;
} */

.overlay {
  width: 90%;
  padding: 8rem 6rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.375);
  box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.02);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.overlay-mod-1 {
  width: 80%;
  padding: 8rem 6rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.375);
  box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.02);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.125);
}


.overlay__inner {
  max-width: 36rem;
}

.overlay__title {
  color: #ef426f;
  font-size: 2.875rem;
  line-height: 2.85rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.overlay__title-mod-1 {
  margin-top: 0px;
  color: #ef426f;
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  
}




.text-gradient {
  background-image: linear-gradient(
    45deg,
    var(--base) 25%,
    var(--complimentary2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}



.overlay__description {
  display: inline;
  font-size: 1.75rem;
  line-height: 1.8rem;
  margin-bottom: 3rem;
  white-space: nowrap;
}

/* Not too many browser support this yet but it's good to add! */
@media (prefers-contrast: high) {
  .orb-canvas {
    display: none;
  }
}

@media only screen and (max-width: 1140px) {
  .overlay {
    padding: 8rem 4rem;
  }
}

@media only screen and (max-width: 840px) {
  overlay {
    padding: 1.5rem;
  }

  .overlay {
    padding: 4rem;
    height: auto;
  }

  .overlay__title {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
  }

  .overlay__description {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .overlay {
    padding: 1.5rem;
  }

}

@mixin faded($offset, $blur-radius, $spread-radius)
{
    &.faded-left:after {
        box-shadow: inset $offset 0 $blur-radius (-$spread-radius);
    }

    &.faded-right:after {
        box-shadow: inset (-$offset) 0 $blur-radius (-$spread-radius);
    }

    &.faded-top:after {
       box-shadow: inset 0 $offset $blur-radius (-$spread-radius);
    }

    &.faded-bottom:after {
        box-shadow: inset 0 (-$offset) $blur-radius (-$spread-radius);
    }

    &.faded-left.faded-right:after {
        box-shadow: inset $offset 0 $blur-radius (-$spread-radius), inset (-$offset) 0 $blur-radius (-$spread-radius);
    }

    &.faded-left.faded-top:after {
        box-shadow: inset $offset ($offset) $blur-radius (-$spread-radius);
    }

    &.faded-right.faded-bottom:after {
        box-shadow: inset (-$offset) (-$offset) $blur-radius (-$spread-radius);
    }

    &.faded-top.faded-right:after {
        box-shadow: inset (-$offset) $offset $blur-radius (-$spread-radius);
    }

    &.faded-top.faded-bottom:after {
       box-shadow: inset 0 $offset $blur-radius (-$spread-radius), inset 0 (-$offset) $blur-radius (-$spread-radius);
    }

    &.faded-left.faded-bottom:after {
        box-shadow: inset $offset (-$offset) $blur-radius (-$spread-radius);
    }

    &.faded-top.faded-right.faded-bottom:after {
        box-shadow: inset (-$offset/2) 0 $blur-radius $spread-radius;
    }

    &.faded-left.faded-right.faded-bottom:after {
        box-shadow: inset 0 (-$offset/2) $blur-radius $spread-radius;
    }

    &.faded-left.faded-top.faded-bottom:after {
        box-shadow: inset ($offset/2) 0 $blur-radius $spread-radius;
    }

    &.faded-left.faded-top.faded-right:after {
        box-shadow: inset 0 ($offset/2) $blur-radius $spread-radius;
    }

    &.faded-all:after, &.faded-left.faded-top.faded-right.faded-bottom:after {
        box-shadow: inset 0 0 $blur-radius $spread-radius;
    }
}




$faded-offset: 40px !default;
$faded-blur-radius: 40px !default;
$faded-spread-radius: 16px !default;

$faded-narrow-offset: 20px !default;
$faded-narrow-blur-radius: 20px !default;
$faded-narrow-spread-radius: 10px !default;

$faded-wide-offset: 80px !default;
$faded-wide-blur-radius: 80px !default;
$faded-wide-spread-radius: 28px !default;

.faded {
    position: relative;
    display: inline-block;
    color: white;

    &:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-collapse: separate;
    }

    @include faded($faded-offset, $faded-blur-radius, $faded-spread-radius);

    &.faded-narrow {
        @include faded($faded-narrow-offset, $faded-narrow-blur-radius, $faded-narrow-spread-radius);
    }

    &.faded-wide {
        @include faded($faded-wide-offset, $faded-wide-blur-radius, $faded-wide-spread-radius);
    }
}


@media only screen and (min-width: 768px) {
  .spots {
      bottom: -65px;
      height: 785px;
      width: auto;
      left: 14.8611vw;
  }
}
  
.spots {
    bottom: -200px;
    display: block;
    height: 900px;
    position: absolute;
    left: 190px;

    z-index: -1;
}

@media only screen and (min-width: 768px) {
  .spots-var1 {
      bottom: -65px;
      height: 785px;
      width: auto;
      left: 14.8611vw;
  }
}
    
.spots-var1 {
    bottom: 0px;
    display: block;
    height: 800px;
    position: absolute;
    left: 275px;

    z-index: -1;
}


@media only screen and (min-width: 768px) {
  .spots-var2 {
      bottom: -65px;
      height: 785px;
      width: auto;
      left: 14.8611vw;
  }
}
  
.spots-var2 {
    bottom: -70px;
    display: block;
    height: 800px;
    position: absolute;
    left: 275px;

    z-index: -1;
}

@media only screen and (min-width: 768px) {
  .spots-var3 {
      bottom: -65px;
      height: 785px;
      width: auto;
      left: 14.8611vw;
  }
}
.spots-var3 {
  bottom: -170px;
  display: block;
  height: 800px;
  position: absolute;
  left: 775px;

  z-index: -1;
}
 

svg[Attributes Style] {
    width: 1661;
    height: 894;
    fill: none;
}
  
svg:not(:root) {
    overflow: hidden;
}

.bg-indigo-600_1 {
  --tw-bg-opacity:1;
  background-color:rgb(23 44 70 / var(--tw-bg-opacity));
  position: relative;
  z-index: 1;
}


.testys {
  position: relative;
  z-index: 2;
}

#features-panel-1, #features-panel-2, #features-panel-3, #features-panel-4 {
  scroll-margin-top: 50px;
}

.btn-custom-spacing-tabs {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Cookies style  */
@import url(https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/5.3.45/css/materialdesignicons.min.css);
@-webkit-keyframes fadeIn {
  from { opacity:0 }
  to { opacity:1 }
}
@keyframes fadeIn {
  from { opacity:0 }
  to { opacity:1 }
}
@-webkit-keyframes fadeInUp {
  from { opacity:0; transform:translate3d(0,10%,0) }
  to { opacity:1; transform:translate3d(0,0,0) }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translate3d(0,10%,0) }
  to { opacity:1; transform:translate3d(0,0,0) }
}

dialog[open] { -webkit-animation-duration:0.3s; animation-duration:0.3s; -webkit-animation-fill-mode:both; animation-fill-mode:both; -webkit-animation-name:fadeInUp; animation-name:fadeInUp }
dialog::backdrop { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(3px); -webkit-animation-duration:0.3s; animation-duration:0.3s; -webkit-animation-fill-mode:both; animation-fill-mode:both; -webkit-animation-name:fadeIn; animation-name:fadeIn  }
/* End */