:root {
    /* Base Colors */
    --base-white: #ffffff;
    --base-black: #000000;

    /* Primary Colors */
    --primary-50: #eee6fe;
    --primary-100: #cbb0fc;
    --primary-200: #b28afa;
    --primary-300: #8e54f8;
    --primary-400: #7933f6;
    --primary-500: #5700f4;
    --primary-600: #4f00de;
    --primary-700: #3e00ad;
    --primary-800: #300086;
    --primary-900: #250066;

    /* Secondary Colors */
    --secondary-50: #fff1e6;
    --secondary-100: #ffd2b0;
    --secondary-200: #ffbc8a;
    --secondary-300: #ff9e54;
    --secondary-400: #ff8b33;
    --secondary-500: #ff6e00;
    --secondary-600: #e86400;
    --secondary-700: #b54e00;
    --secondary-800: #8c3d00;
    --secondary-900: #6b2e00;

    /* Accent Colors */
    --accent-1: #ffc400;
    --accent-2: #7c00c4;
    --accent-3: #0092f4;
    --accent-4: #079100;
    --accent-5: #a10000;

    --gradient-1: linear-gradient(to right, var(--primary-500), var(--secondary-500));
    --gradient-2: linear-gradient(to right, var(--secondary-500), var(--primary-500));
    --gradient-3: linear-gradient(to right, var(--base-white), var(--primary-500));
    --gradient-4: linear-gradient(to right, var(--base-white), var(--secondary-500));
    --gradient-5: linear-gradient(to right, var(--base-black), var(--primary-500));
    --gradient-6: linear-gradient(to right, var(--base-black), var(--secondary-500));

    --background-color: #01000A;
    --text-color: #2f3134;
}

/* CSS Boilerplate */
*, 
*::before, 
*::after {
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
}
html, body {
    height: 100%;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
}
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
body { 
    font-family: "Manrope ExtraLight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    font-optical-sizing: auto; 
    font-weight: 500;
    font-style: normal;
    padding: 0;  
    margin: 0; 
    background: var(--background-color) url("../images/bg4.svg") repeat 50% 50% fixed;
    color: var(--text-color)
}


img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    padding-left: 1.5em;
}

.sticky{
    position: sticky;
    top: 0;
    z-index: 100;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em 0;
    font-family: "Degular Variable";
    font-weight: 700;
}
.flex{ display: flex;}
.block{ display: block;}
.inline{ display: inline;}

button {
    cursor: pointer;
    border: none;
    background: none;
}

[hidden] {
    display: none !important;
}
.centered {
    text-align: center;
    margin: 0 auto;
}
.main section,
.w101{max-width: 1440px; width: 100%;}
.w100, .main section.w100{max-width: 100%;}
.main section.w960{max-width: 960px; width: 100%; margin: 4rem auto 0;}
.w40 {max-width: 40%; width: 100%;}
.w50 {max-width: 50%;}
.w60 {max-width: 60%; width: 100%;}
.w70 {max-width: 70%;}
.w80{max-width: 80%;}
.w40, .w50, .w60, .w70, .w80, .w100{margin: 0 auto;}
.m0{margin: 0;}
.mt1{margin-top: 1rem;}
.mt2{margin-top: 2rem;}
.mb1{margin-bottom: 1rem;}
.mb2{margin-bottom: 2rem;}
.mr1{margin-right: 1rem;}
.pt2{padding-top: 2rem;}
.pt6{padding-top: 6rem;}
.pt8{padding-top: 8rem;}
.pb2{padding-bottom: 2rem;}
.pb6{padding-bottom: 6rem;}
.pb8{padding-bottom: 8rem;}
h1, h2, h3 {
    color: #ececec;
}
h1, h2 {
    text-transform: uppercase;
    word-spacing: 8px;
}
h1{
    font-size: 5rem;
    line-height: 140%;
}
h2 {
    margin-top: 1.5rem;
    font-size: 4rem;
}
h3 {
    font-weight: 300;
    margin-bottom: 2rem !important;
    font-size: 1.5rem;
}
h3 strong{
    font-weight: 600;
}
p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
a {
    color: var(--primary-500);
}
.actionButton{position: relative; display: inline-block; width: fit-content;}


button,
.cta-button,
.actionButton .shadow {
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    padding: 1.4rem 2.2rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(55,0,255,0.15);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    
    background: linear-gradient(-45deg, var(--accent-1), var(--accent-2), var(--accent-3),  var(--secondary-500), var(--primary-500));
    background-size: 600%;
}
.actionButton .shadow{
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    filter: blur(32px);
    opacity: 0.8;
    width: 100%;
    height: auto;
    mix-blend-mode: screen;
}
@-webkit-keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

button:hover,
.cta-button:hover,
.actionButton .shadow:hover {
    -webkit-animation: anime 16s linear infinite;
            animation: anime 16s linear infinite;
}

button.secondary{
    background: #fff border-box;
    color: var(--primary-700);
    padding: 0.5em 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-700);
}
button.secondary:hover{
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
    transform: translateX(1px) translateY(-1px);
    box-shadow: 0 8px 32px var(--primary-500);
}

ß

/* Page styling */
.main {
    display: flex;
    flex-direction: column;
    margin: 1rem auto;
    padding: 0;
}

/* Example child styling */
.main > * {
    
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.main > *:first-child {
    margin-top: 1rem;
}
.main > *:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.glass-card {
    isolation: isolate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
}
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 0 0 1rem 1rem;
    /*box-shadow: inset 0 0 20px -5px rgba(255, 255, 255, 0.6);*/
    background: rgba(255, 255, 255, 0.05);
}
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    filter: url(#glass-distortion);
    isolation: isolate;
}


/* Navbar */
.navbar{
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    left: 0; right: 0;
    z-index: 100;
}
.navbar a{
    margin: 0 1rem;
    font-weight: 600;
    color: #ececec;
    transition: color 0.25s ease-in-out;
}
.navbar .logo a{ margin: 0;}
.main section.hero{
    min-height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 10rem;
}
.navbar .logo, .navbar .nav-links{
    z-index: 10;
}

.main section.hero2{margin-top: 10rem;}
.main section.hero button{
    margin-bottom: 2rem;
}
.white{
    background: #fff;
}
.bg-grey-bluish{
    background: #EBEBFF;
    
}
.grey{
    background: #EBEBFF;
}
.video-container{
    flex-direction: column;
    height: 100%;
    margin: 1rem auto 2rem;
}

.cards{
    flex-wrap: wrap;
    gap: 2rem 1rem;
    justify-content: center;

}
article.feature-card{
    width: 280px;
    background: #01000A;
    flex-direction: row;
    flex-basis: 280px;
    flex-grow: 0; 
    flex-shrink: 0; 
    border: 1px solid #4c576a;
    border-radius: 24px;
    text-align: left;
    color: #ececec;
    padding: 1rem;
    margin-right: 1rem;
    box-shadow: 0 16px 10px 0px rgb(0 0 0 / 46%);
}

article.feature-card h3{
    font-weight: 600;
}
.sol, .tnc{
    background-image: url(../images/bg4.svg), linear-gradient(180deg,rgba(1, 0, 10, 0.3) 0%, rgba(24, 29, 39, 1) 11%, rgba(23, 27, 37, 1) 89%, rgba(23, 27, 37, 0.3) 100%);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.tnc{
    background-repeat: repeat;
    justify-content: space-between;
    color: #ccc;
    margin: 0 auto;
    padding: 5rem;
}
.aboutNcareer{
    flex-direction: column;
    gap: 1rem;
}
.tnc h1{margin: 0 0 2rem 0;}
.tnc h2{
    font-size: 3rem;
}
.animate{
    opacity: .95;
    scale: 0.8;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: 50px 36%;
}
@keyframes fade-in {
    to {
      opacity: 1;
      scale: 1;
    }
  }

.icon-container{
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: #2b323f;
    border-radius: 16px;
    justify-content: center
}
.featList .icon-container{
    width: 64px;
    height: 64
    px;
}
.sol .icon-container{
    background: var(--primary-500);
}
.sol h2{
    position: relative;
}

/* horizontal scroll */



.fss{
    position: absolute;
    top: -48px;
    right: -48px;
}
.feat{
    flex-direction: column;
    color: #333;
}
.feat article{
    height: 100vh;
    background: #01000A url("../images/bg4.svg") repeat 50% 50% fixed;
    justify-content: space-between;
    border: solid 1px #2f3134;
}
.feat article,
.feat .right .featList,
.feat .left .number,
.feat .left .title{
    position: sticky;
    top: 100px;
}
.feat article .left svg{ max-width: 96px; width: 100%;}
.feat .left{
    align-items: baseline;
}
.left-content{ align-items: center; column-gap: 1rem; }
.left-content h3.title{
    font-size: 2rem;
    text-align: left;
    line-height: 1;
    margin-top: 1.5rem;
}
.left-content h3.title strong{
    font-weight: 700;
}


.featList{ text-align: left; list-style: none; flex-direction: column;}
.iconTitle{flex-direction: column; align-items: start; gap: 0rem; margin-bottom: 1rem;}
.iconTitle h3{margin: 0 !important; font-weight: 600; font-size: 1.2rem; }
.listItem p{margin-bottom: 1rem; color: #ececec;}
.right{border-left: 0px solid #2f3134; padding-top: 2rem;}


.footer-content{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    padding: 5rem;
    gap: 2rem 4rem;
    justify-content: space-between;
    background: rgba(1, 0, 10, .65);
    
}
.footer-top{
    flex-direction: row;
    justify-content: space-between;
}
.footer-left{
    flex-direction: column;
    gap: 1rem 0;
    max-width: 300px;
    text-align: center;
}
.footer-address{
    line-height: 1.6;
    text-align: left;
}
.footer-address h4{ color: #ccc;}
.footer-address p{
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    color: hsla(0,0%,60%,1.00);
}
.footer-right{
    flex-direction: row;
    gap: 0 4rem;
}
.footer-section{
    color: #ececec;
    text-align: left;
    padding: 0 1rem;
    font-size: 1rem;
    flex-basis: 200px;
    max-width: 240px;;
    flex-grow: 0; 
    flex-shrink: 0; 
}
.footer-section ul{
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
footer ul li{
    list-style: none;
}
.footer-section a{
    color: hsla(0,0%,60%,1.00);
    font-weight: 400;
}
/*.footer-section a:hover{
    color: #cfcfcf;
    border-bottom: solid 1px #cfcfcf;
}*/
footer h4{
    font-weight: 600;
    font-size: 1.4rem;
}
.tnc a,
.footer-left a,
.footer-right a{
	color: hsla(0,0%,60%,1.00);
    border: 1px solid hsla(0,0%,60%,0.00);
    padding: 0.1rem 0.2rem;
    border-radius: 0.4rem;
}
.tnc a:hover,
.footer-left a:hover,
.footer-right a:hover{
    border: 1px solid var(--primary-400);
    color: var(--primary-400);
    box-shadow: 0 4px 16px rgba(103, 42, 215, 0.6);
	margin: 0;
	transition: border 250ms ease-out, 
                box-shadow 250ms ease-out,
		        color 350ms ease-out; 
}
.footer-left .logo-container a:hover{
    border: none;
    box-shadow: none;
}
 
.tnc a{color: #b28afa;}
.footer-bottom{
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #626262;
    justify-content: space-between;
}
.footer-social-links ul{
    flex-direction: row;
    gap: 0 1rem;
}

#statusMessage{ display: none; background-color: #ececec; border-radius: 0.25rem; padding: 1rem; font-size: 1.5rem; font-weight: 600; margin: 0 0 1rem 0; }
#statusMessage.success{ display: block; color: var(--accent-4);}
#statusMessage.error{ display: block; color: var(--accent-5);}


/*Pure-Drawer*/
.pure-container {
    position: relative;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
    display: none;
  }
.pure-toggle {
	left: -9999px;
  	position: absolute;
	top: -9999px;
	overflow: hidden;
}
.pure-toggle:focus ~ .pure-toggle-label {
    border-color: hsla(232,100%,75%,1.00); 
    color: hsla(232,100%,75%,1.00); 
}

.pure-toggle-label {
	display: block;
  	cursor: pointer;
	position: relative;
	bottom: 0px;
	right: 0px;
  	z-index: 109;
  	width: 48px;
  	height: 48px;
  	transition: all 400ms ease-in-out;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	-o-user-select: none;
  	user-select: none;
  	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .pure-toggle-label:hover {
    opacity: 1; }

  .pure-toggle-label:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .pure-toggle-label .pure-toggle-icon,
  .pure-toggle-label .pure-toggle-icon:before,
  .pure-toggle-label .pure-toggle-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 40px;
    cursor: pointer;
   	background-color: hsla(180,100%,19%,1.00); 
    display: block;
    content: '';
    transition: all 250ms ease-in-out; }
  .pure-toggle-label .pure-toggle-icon {
    transform: translate3d(-50%, -2px, 0);
    -webkit-transform: translate3d(-50%, -2px, 0); }
  .pure-toggle-label .pure-toggle-icon:before {
    transform: translate3d(-50%, -10px, 0);
    -webkit-transform: translate3d(-50%, -10px, 0); }
  .pure-toggle-label .pure-toggle-icon:after {
    transform: translate3d(-50%, 8px, 0);
    -webkit-transform: translate3d(-50%, 8px, 0); }
  .pure-toggle-label:hover .pure-toggle-icon,
  .pure-toggle-label:hover .pure-toggle-icon:before,
  .pure-toggle-label:hover .pure-toggle-icon:after {
 	background-color: hsla(180,100%,15%,1.00); 
  }

.pure-toggle-label[data-toggle-label='left'] {
  left: auto;
  right: 0px; 
}

.pure-drawer {
	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 110;
  	height: 100vh;
  	overflow-y: auto;
  	visibility: hidden;
	background-color: #272037;
	transition: all 300ms ease-out;
	width: 75%;
    display: flex;
    flex-direction: column;
    padding: 6rem 1rem 2rem 2rem;
    align-items: flex-start;
}

.pure-drawer.mobileNav .link li {margin: 0.1em 2em; display: block; text-align: left; border-bottom: solid #ddd 1px; }
.pure-drawer.mobileNav .link li a{text-decoration: none; display: block; padding: 1em; font-size: 1.2em; color: #006363;}
.pure-drawer.mobileNav li:first-child{margin-top: 5em;} 
.pure-drawer.mobileNav ul{ height: 100%;}
.pure-drawer.mobileNav .ham{
	position: absolute;
	bottom: 0;
	width: 90%;
}
.pure-drawer.mobileNav .link li a:hover{
    background-color: hsla(180,100%,19%,1.00); 
	color: hsla(0,0%,100%,1.00);
	text-decoration: none;
	transition: background-color 250ms ease-out, color 350ms ease-out; 
}

.pure-drawer[data-position='right'] {
  left: auto;
  right: 0; }

.pure-drawer[data-position='top'] {
  height: 100%;
  width: 100%; }
  @media only screen and (min-width:40.063em) {
    .pure-drawer[data-position='top'] {
      height: 100%; } }
  @media only screen and (min-width:64.063em) {
    .pure-drawer[data-position='top'] {
      height: 100px; } }

.pure-overlay {
  	position: fixed;
  	top: 0;
  	bottom: 0;
  	right: 0;
  	width: 0;
  	height: 0;
  	opacity: 0;
  	background-color: rgba(0, 0, 0, 0.4);
	transition: opacity 300ms 300ms ease-in-out;
	overflow: hidden;
}
.pure-toggle[data-toggle='right']:checked ~ .pure-overlay[data-overlay='right'] {
	right: 0%; 
}
.pure-toggle[data-toggle='left']:checked ~ .pure-overlay[data-overlay='left'],
.pure-toggle[data-toggle='right']:checked ~ .pure-overlay[data-overlay='right'],
.pure-toggle[data-toggle='top']:checked ~ .pure-overlay[data-overlay='top'] {
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: 100;
	overflow: hidden;
}

[data-effect='pure-effect-slide'] .pure-drawer {
  z-index: 105;
  transition-duration: 300ms; }

[data-effect='pure-effect-slide'] .pure-drawer[data-position='right'] {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

[data-effect='pure-effect-slide'] .pure-toggle[data-toggle='left']:checked ~ .pure-drawer[data-position='left'],
[data-effect='pure-effect-slide'] .pure-toggle[data-toggle='right']:checked ~ .pure-drawer[data-position='right'],
[data-effect='pure-effect-slide'] .pure-toggle[data-toggle='top']:checked ~ .pure-drawer[data-position='top'] {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label:not([data-toggle-label='left']),
.pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label:not([data-toggle-label='right']),
.pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label:not([data-toggle-label='top']) {
  opacity: 0;
  z-index: -1; }

.pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label[data-toggle-label='left'],
.pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'],
.pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label[data-toggle-label='top'] {
  border-color: #1fc08e;
  color: #1fc08e; }
  .pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label[data-toggle-label='left'] .pure-toggle-icon,
  .pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'] .pure-toggle-icon,
  .pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label[data-toggle-label='top'] .pure-toggle-icon {
    background-color: transparent; }
  .pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label[data-toggle-label='left'] .pure-toggle-icon:before,
  .pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label[data-toggle-label='left'] .pure-toggle-icon:after,
  .pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'] .pure-toggle-icon:before,
  .pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'] .pure-toggle-icon:after,
  .pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label[data-toggle-label='top'] .pure-toggle-icon:before,
  .pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label[data-toggle-label='top'] .pure-toggle-icon:after {
    top: 0; }
  .pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label[data-toggle-label='left'] .pure-toggle-icon:before,
  .pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'] .pure-toggle-icon:before,
  .pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label[data-toggle-label='top'] .pure-toggle-icon:before {
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg); }
  .pure-toggle[data-toggle='left']:checked ~ .pure-toggle-label[data-toggle-label='left'] .pure-toggle-icon:after,
  .pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'] .pure-toggle-icon:after,
  .pure-toggle[data-toggle='top']:checked ~ .pure-toggle-label[data-toggle-label='top'] .pure-toggle-icon:after {
    transform: translateX(-50%) translateY(-10px) rotate(-45deg);
    -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
    top: 10px; }
  [data-effect='pure-effect-slide'] .pure-overlay {
  transition-duration: 300ms;
  transition-delay: 250ms; }




label {
    display: block;
    margin-bottom: 0rem;
    font-weight: bold;
    color: #999;
}

input,
textarea {
    width: 100%;
    padding: 0.8em;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #ddd;
}

input:focus,
textarea:focus {
    border-color: var(--primary-500);
    outline: none;
    box-shadow: 0 3px 5px rgba(159, 121, 253, 0.5);
}

textarea {
    resize: vertical;
}

.contactForm{
    flex-direction: column;
    gap: 1rem;
}
.contact_group_row{flex-direction: row; justify-content: space-between; gap: 0 1rem;}
.contact_group_row .form-group{ width: 48%;}
.contactForm button{
    align-self: flex-start;
    margin-top: 1rem;
}


.loader {
  overflow: visible;
  height: fit-content;
  width: fit-content;
  padding: 20px;
  display: flex;
}

.loaderLogo {
  fill: none;
  stroke-width: 3px;
  stroke-dasharray: 200px;
  /*<-- Play with this number until it look cool */
  stroke: #5700f4;
  animation: load 15s infinite linear;
  filter: drop-shadow(1px 1px 5px var(--primary-300));
}

@keyframes load {
  0% {
    stroke-dashoffset: 0px;
  }

  100% {
    stroke-dashoffset: 4000px;
    /* <-- This number should always be 10 times the number up there*/
  }
}


@media only screen and (min-width: 780px) and (max-width: 1440px){
    h1{
        width: 90%;
        margin: 0 auto;
    }
    .hero h3{margin: 0 auto; }
    
}

/* Responsive Mobile Styles */
 @media only screen and (min-width: 360px) and (max-width: 780px) {
    html {
        font-size: 15px;
    }
    body {
        padding: 0 0.5rem;
    }
    .main,
    .main section,
    .w101,
    .w100,
    .main section.w100,
    .footer-content {
        max-width: 100vw;
        width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
    .w40, .w60, .w80, .w100 {
        max-width: 100vw;
        margin: 0 auto;
    }
    h3{margin: 0 auto; width: 80%;}
    .navbar a {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }
    .pure-container{display: block;}
    .nav-links{display: none;}
    .pure-toggle ~ .pure-toggle-label .pure-toggle-icon{z-index: -10; }
	.pure-toggle-label .picture{width: 48px; height: 48px;}
	.pure-toggle:checked ~ .pure-toggle-label .pure-toggle-icon{z-index: 0; opacity: 1; transition: all 250ms ease-in-out;}
    h1 {
        font-size: 2.25rem; letter-spacing: 0;
    }
    h2, .tnc h2 {
        font-size: 2rem;
        margin-top: 1rem;
    }
    h3 {
        font-size: 1.5rem;
        margin: 1rem;
    }
    .tnc.w960 h3{ margin: 0;}
    .feat article .left svg{ max-width: 56px;}
    .feature-card h3{ margin: 1rem 0 !important;}
    
    .main{
        margin-top: 6rem;
    }
    .main section.hero {
        margin-top: 2rem;
        min-height: 60vh;
    }
    .video-container {
        height: auto;
    }
    .cards {
        flex-direction: column;
        gap: 1.2rem 0;
        align-items: center;
    }
    article.feature-card {
        width: 88vw;
        min-width: unset;
        margin-right: 0;
        flex-basis: 240px;
    }
    .feat {
        flex-direction: column;
    }
    .feat .left,
    .feat .right {
        width: 100%;
        border: none;
    }
    .feat .number {
        font-size: 10rem;
    }
    .feat article {
        height: auto;
        padding: 1rem 0.5rem;
        background-size: cover;
        flex-direction: column;
        position: relative;
        top: 0;
        background: transparent
    }
    .sol h2{
        
    }
    .sol .fss{
        right: 12px;
    }
    #contact{padding: 1rem;}
    .footer-content {
        padding: 2rem 0.5rem;
        gap: 1rem 0;
    }
    .footer-top,
    .footer-right {
        flex-direction: column;
        gap: 1rem 0;
    }
    .footer-section {
        padding: 0;
        font-size: 0.95rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem 0;
        padding-top: 1rem;
        margin-top: 1rem;
        font-size: 0.85rem;
    }
    .footer-social-links ul {
        gap: 0 0.5rem;
    }
    button,
    .cta-button {
        width: 100%;
        font-size: 1.4rem;
        padding: 0.75em 1em;
    }
    .main section.w960{
        padding: 1.2rem;
    }
    .contact_group_row{flex-direction: column; gap: 1rem;}
    .contact_group_row .form-group{ width: 100%;}
}