:root {
    /* application colours */
        --primaryColor: #FFFFFF; /* 60% */
        --black: #010202;
        --dark: #050d12;
        /*--darkGray: #171717;*/
        /*--darkGray: #000000ad;*/
        --darkGray: rgb(7 18 24 / 73%);
        --blue: #7ACDDC;
        --yellow: #EABA3A;
        --darkGradient: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(1, 2, 2, .7) 30%, rgba(1, 2, 2, 1) 80%);
        --yellowblueGradient: -webkit-linear-gradient(0deg,#EABA3A,  #7ACDDC);
        --bluewhiteGradient: -webkit-linear-gradient(0deg,#7ACDDC, #fff);
        --grayBorder: #282828;;
        
    /* application fonts */
        --font: "Urbanist", sans-serif;
        --logoFont: "Michroma", sans-serif;
        --smallFont: 14px;
        --normalFont: 20px;
        --largeFont: 36px;
        --titleFont: 52px;
        --headerFont: 72px;

    /* application spacing */
        --headerSpace: 64px;
        --basicWhitespace: 24px;
        --mediumWhitespace: 48px;
        --largeWhitespace: 72px;
        --mediumElement: 500px;
        --largeElement: 600px;
        --elementGap: var(--mediumWhitespace);
        --smallGap: var(--basicWhitespace);
        --wideContainer: calc(var(--mediumElement) * 2 + calc(var(--elementGap) * 2));
    
    /* application element design */
        --normalRadius: 12px;
        --smallRadius: 4px;
        --basicShadow: rgba(0, 0, 0, 0.16) 0px 1px 1px;
    }

@media screen and (max-width: 1200px) {
    :root {
    /* application spacing */
     --headerSpace: 64px;
     --basicWhitespace: 24px;
     --mediumWhitespace: 48px;
     --largeWhitespace: 72px;
 
    /* application elements */
    --mediumElement: 400px;;
    

     /* application fonts */
    --smallFont: 16px;
    --normalFont: 20px;
    --largeFont: 36px;
    --titleFont: 44px;
    --headerFont: 52px;
    }
}

@media screen and (max-width: 620px) {
    :root {
    /* application spacing */
     --headerSpace: 64px;
     --basicWhitespace: 20px;
     --mediumWhitespace: 24px;
     --largeWhitespace: 72px;
   
     /* application fonts */
    --smallFont: 16px;
    --normalFont: 20px;
    --largeFont: 24px;
    --titleFont: 32px;
    --headerFont: 42px;
    }
}


/* Always there */
.appHeader {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--accentColor);
    padding: var(--mediumWhitespace);
}

html {
    scroll-behavior: smooth;
}

body {
    margin:0;
    font-family: var(--uiFont);
    background-color: var(--black);
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
    position: relative;
}

.blue {color: var(--blue);}
.yellow {color: var(--yellow);}

section {position: relative;}

div {
    position: relative;
}

img {
    pointer-events: none;
}

h1 {
    font-family: var(--logoFont);
    font-size: var(--headerFont);
    font-weight: 400;
    font-style: normal;
}

h2, h3, h4, h5 {
    font-family: var(--font);
    font-weight: 300;
    margin: 0;
    line-height: 1em;
    color: var(--primaryColor);
    margin-bottom: var(--basicWhitespace);
}

h2 {
    font-size: var(--headerFont);
    
}

h3 {
    font-size: var(--largeFont);
    
}

p {
    font-family: var(--font);
    margin: 0;
    margin-bottom: var(--basicWhitespace);
    font-size: var(--normalFont);
    line-height: 1.25em;
    color: var(--primaryColor);
}

p:last-of-type {
    margin-bottom:0;
}

ul {
    font-family: var(--font);
    font-size: var(--normalFont);
    line-height: 1.25em;
    color: var(--primaryColor);
}

img {
    max-width: 100%;
  height: auto;
}


/* site 2024 */
.landingHero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(img/orbwebp2.webp);
    position: relative;
    overflow: hidden;
}

.heroContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    z-index: 4;
    color: var(--primaryColor);
    height: 80vh;
    padding: var(--basicWhitespace);
}


.coreMessage {
    display: flex;
    position: relative;
    line-height: 1em;
    flex-direction: column;
    padding: var(--basicWhitespace);
}

.coreMessage h1 {
    font-family: var(--logoFont);
    font-size: var(--headerFont);
    margin-bottom: calc(var(--basicWhitespace) / 2);
    line-height: var(--headerFont);
    text-transform: uppercase;
    font-weight: 400;   
}

.coreMessage p {
    font-family: var(--font);
    /*background: var(--yellowblueGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: var(--normalFont);
    font-weight: 600;
    letter-spacing: 2px;
}

.heroShade {
    background: var(--darkGradient);
    height: 60vh;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.animatedSphere {
    position: absolute;
    height: 100%;
    width: auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;   
    overflow: hidden;
    animation: sphereScale 15s infinite
}

.animatedSphere img {
    width: 100%;
    height: auto;
    animation: rotateSphere 45s infinite linear;
    opacity: .5;
}

@keyframes rotateSphere {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        
    }
}


@keyframes sphereScale {
	0% {
        transform: scale(1);
        opacity: .4;
    }
	50% {
        transform: scale(1.15);
        opacity: .8;
    }
  100% {
        transform: scale(1);
        opacity: .4;    
    }
}

.postHero {
    display: flex;
    flex-direction: column;
    background-color: var(--black);
    z-index: 3;
    overflow: hidden;
}

.postHeroContainer {
    max-width: var(--wideContainer);
    margin: 0 auto;
    padding: var(--mediumWhitespace);
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .postHeroContainer {
        max-width: unset;
        margin: unset;
    }
}


.singleColumn {
    text-align: left;
}

.postHero .singleColumn {
    text-align: center;
    padding: var(--basicWhitespace);
}

.contentSwirl {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    animation: opacityAni 90s infinite linear;
}

.swirlOverlay {
    display: block;
    position: absolute;
    height: 300px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 82%);
}

.swirlOverlayTop {
    display: block;
    position: absolute;
    height: 300px;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 82%);

}


@media screen and (max-width: 1200px) {
    .contentSwirl {
        
    }
}

@media screen and (max-height: 600px) {
    .contentSwirl {
        height: calc(3* 100vh);
    }
}

.contentSwirl img {
    height: 100%;
    width: auto;
    animation: rotateSphere 600s infinite linear;
}

@keyframes opacityAni {
	0% {
        transform: scale(1);
        opacity: .45;
    }
	50% {
        transform: scale(1.35);
        opacity: .6;
    }
  100% {
        transform: scale(1);
        opacity: .45;    
    }
}


/* cards */


.cardContainer {
    width: 100%;
    max-width: var(--wideContainer);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--elementGap);
    margin: var(--mediumWhitespace) 0 calc(var(--mediumWhitespace)* 2) 0;
}

.cardContainer.missionvalues {
    justify-content: center;
}

.card {
    overflow: hidden;
    background-color: var(--darkGray);
    border-radius: 20px;
    border: 1px solid var(--grayBorder);
    position: relative;
    display: flex;
    flex-direction: column;
}


.oneoftwo.strategy h2 {
    background: -webkit-linear-gradient(0deg, #7ACDDC, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.platform h2, .card.development h2 {
    background: -webkit-linear-gradient(0deg, #EABA3A, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cardContent {
    padding: var(--mediumWhitespace);
    display: flex;
    flex-direction: column;
    z-index: 2;
    color: var(--primaryColor);
}

.iconTitle {
    display: flex;
    align-items: center;
    margin-bottom: var(--basicWhitespace);
}

.iconTitle h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0px 0 10px;
    font-weight: 500;
}

.cardContainer.missionvalues h2 {
    margin-bottom: 0;
}

.oneoftwo {
    max-width: calc(var(--mediumElement) + calc(var(--elementGap) / 2) - 3px);
    width: 100%;
}

@media screen and (max-width: 1008px) {
    .oneoftwo {
        max-width: unset;
        width: unset;
    }
}

.cardwithColumns {
    display: flex;
    flex-direction: row;
    gap: var(--elementGap);
}

.serviceConcept {
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .serviceConcept img {
        max-width: 500px;
    }
}

.mission h3 {
    background: -webkit-linear-gradient(2deg, #7ACDDC 0%, #FFFFFF 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    display: flex;
    position: absolute;
    height: 60%;
    align-self: center;
    width: 2px;
    background: rgb(21, 21, 21);
    background: linear-gradient(180deg, rgba(21, 21, 21, 1) 0%, rgba(255, 255, 255, 0.48679973698463763) 50%, rgba(21, 21, 21, 1) 100%);
    left: calc(50% - 1px);
}

.containerColumn {
    display: flex;
    flex-direction: column;
    padding: var(--mediumWhitespace);
    width: 100%;
    max-width: calc(var(--mediumElement) + calc(var(--elementGap) / 2) - 2px);
    justify-content: center;
}


@media screen and (max-width: 991px) {
    .cardwithColumns {
        flex-direction: column;
        gap: 0;
        max-width: unset;
        width: 100%;
    }
    .divider {display: none;}
    .cardContainer.missionvalues {
        justify-content: center;
    }
    .containerColumn {
        width: unset;
        max-width: unset;
    }
    .values {padding-top: 0;}
    .contentSwirl {
        height: 100%;
        width: 200%;
        left: -25%;
    }
}

.pill {
    font-family: var(--font);
    background-color: var(--black);
    font-size: var(--smallFont);
    color: var(--primaryColor);
    border: 1px solid var(--grayBorder);
    padding: 8px 20px;
    border-radius: 9999px;
    text-decoration: none;
    text-transform: uppercase; 
}   

#aboutus {
    display: flex;
    background-color: var(--dark);
    justify-content: center;
}

.aboutUsContainer {
    width: 100%;
    max-width: var(--wideContainer);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--elementGap);
    margin: var(--mediumWhitespace) 0 calc(var(--mediumWhitespace)* 2) 0;
    padding: var(--mediumWhitespace);
}

#aboutus .cardContent {
    padding: 0;
}

#aboutus .cardwithColumns {
    gap: var(--elementGap);
}


.personnel {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: var(--elementGap);
}

@media screen and (min-width: 1008px) {
    .personnel {
        gap: var(--largeWhitespace);
    }
} 

.singleperson {
    display: flex;
    gap: var(--smallGap);
}

.singleperson a {
    position: relative;
    display: flex;
    gap: var(--smallGap);
}

.singleperson img {
    max-width: 100px;
}

.singleperson:hover {
    cursor:pointer;
}

.singleperson:hover .personImg img {
    -webkit-filter: unset; /* Safari 6.0 - 9.0 */
    filter: unset;
    cursor: pointer;
}

.personImg img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: all .5s ease-in-out;
}

.singleperson img {
    pointer-events: auto;
}

.personContent {
    display: flex;
    flex-direction: column;
    gap: var(--smallGap);
}

.sphereSwirl {
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    overflow: hidden;
    transform: scale(2.5);
    z-index: 0;
}

@media screen and (min-width: 1920px) {
    .sphereSwirl {
        transform: scale(4.5);
    }
    .contentSwirl {
        transform: scale(2);
    }
    
}

.sphareShader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.sphereSwirl svg {
    animation: rotateSphere 345s infinite linear;
}



.values h4 {
    background: -webkit-linear-gradient(2deg, #7ACDDC 0%, #FFFFFF 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: var(--normalFont);
    margin: 0 0 10px 0;
    font-weight: 600;
}

#contact {
    display: flex;
    flex-direction: column;
    background-color: var(--dark);
}

#contact h2 {
    text-align: center;
}

#contact h3 {
    margin-top: var(--basicWhitespace);
}

#contact .personContent {
    gap:unset;
}

#contact .cardContent {
    padding:0;
}

.stupidExtraContainer {
    display: flex;
    justify-content: center;
}

.contactUsContainer {
        width: 100%;
        max-width: var(--wideContainer);
        flex-direction: column;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: var(--mediumWhitespace) 0 calc(var(--mediumWhitespace)* 2) 0;
        padding: var(--mediumWhitespace);
        text-align: center;
    align-items: center;
}

img.footerLogo {
    max-width: 400px;
    margin: var(--mediumWhitespace) 0;
}

@media screen and (max-width: 500px) {
    img.footerLogo {
    max-width: 320px;
    }
}

/* footer */
footer.footer {
    padding: var(--mediumWhitespace);
    text-align: center;
}

.privacyPolicy {

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--basicWhitespace);
    flex-direction: column;
}

.content {
        overflow: hidden;
}

#contact .panel h2 {
    text-align: left;
}

.accordion {
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
  }

  p.accordion {
    text-decoration: underline;
    text-underline-position: under;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    
  }

  /* Style the accordion panel. Note: hidden by default */
.panel {
    display: none;
    overflow: hidden;
    margin-top: var(--basicWhitespace);
    text-align: left;
  }

/* navigation */

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: fixed;
  left: -9999px;
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: border-width 100ms 500ms ease, 
              top 100ms 600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
    position: absolute;
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    z-index: 20;
    top: 10px;
    /* right: 4px; */
    background-color: #ececee;
    /* margin-top: -1px; */
    transition: width 100ms 500ms ease, right 100ms 1750ms ease, margin-top 100ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
  top: 10px;
  transform: rotate(45deg);
  height: 1px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 250ms ease, 
              transform 200ms 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
    position: fixed;
    top: 33px;
    right: 50px;
    display: block;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    z-index: 9;
    overflow: hidden;
    box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
    background: var(--darkGradient);
    animation: border-transform 7s linear infinite;
    transition: top 350ms 500ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 500ms ease, width 350ms 200ms cubic-bezier(0.23, 1, 0.32, 1), height 350ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--grayBorder);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 150ms 300ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 150ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 150ms 300ms ease,
              width 250ms 500ms cubic-bezier(0.23, 1, 0.32, 1),
              height 250ms 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1){
  transition-delay: 200ms;
}
.nav ul li:nth-child(2){
  transition-delay: 150ms;
}
.nav ul li:nth-child(3){
  transition-delay: 100ms;
}
.nav ul li:nth-child(4){
  transition-delay: 50ms;
}
.nav ul li:nth-child(5){
    transition-delay: 25ms;
  }

.nav ul li a{
    font-size: var(--titleFont);
    font-weight: 400;
    line-height: 1em;
    display: inline-block;
    position: relative;
    color: #fff;
    transition: all 250ms linear;
    text-decoration: none;
    background: var(--bluewhiteGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*.nav ul li a:hover{
  text-decoration: none;
  color: #ffeba7;
} */

.nav ul li a:after{
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #353746;
  opacity: 0.8;
  transition: width 250ms linear;
}
.nav ul li a:hover:after{
/*  width: 100%;*/
}


.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 150ms ease,
              transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 500ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 580ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 660ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 740ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(5) {
    transition-delay: 800ms;
}

@media screen and (max-width: 768px) {
    .nav {
        top: 20px;
        right: 20px;
    }
    .menu-icon:checked + label, .menu-icon:not(:checked) + label {
        top: 50px;
        right: 48px;
    }
}

a.btnLink {
    background: linear-gradient(270deg, #ffffff, #ffffff);
    padding: 4px 12px;
    border-radius: var(--normalRadius);
    text-decoration: none;
    color: var(--noticeColor);
    text-transform: uppercase;
    font-size: .9rem;
    margin: .25rem;
}