@font-face {
  font-family: 'ObjectSans';
  src: url('ObjectSans-Regular.eot');
  src: url('ObjectSans-Regular.eot?#iefix') format('embedded-opentype'),
       url('ObjectSans-Regular.woff2') format('woff2'),
       url('ObjectSans-Regular.woff') format('woff');
}

@font-face {
  font-family: 'ObjectSans-Heavy';
  src: url('ObjectSans-Heavy.eot');
  src: url('ObjectSans-Heavy.eot?#iefix') format('embedded-opentype'),
       url('ObjectSans-Heavy.woff2') format('woff2'),
       url('ObjectSans-Heavy.woff') format('woff');
}

@font-face {
  font-family: 'ObjectSansSlanted';
  src: url('ObjectSansSlanted.otf') format('opentype');
  
}


@font-face {
    font-family: 'NeueMachina-Ultrabold';
    src: url('NeueMachina-Ultrabold.otf') format('opentype');
}


.HeavyTitle {
  font-family: 'NeueMachina-Ultrabold', Helvetica, sans-serif;
}

/*===================*/
/* Media Queries Start
/*===================*/

@media only screen and (max-width: 486px) {
  /* Stack sections vertically and left-align */
  .row.flex {
    flex-direction: column;
    align-items: flex-start; /* This ensures logo and nav stay left-aligned */
  }

  /* Full width for both columns */
  .col-3, .col-9,
  .col-3-sm, .col-9-sm {
    width: 100%;
    margin: 0 !important;
  }

  /* Remove right alignment and reset positioning */
  .align-r {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
  }

  /* Left-align the navigation menu items */
  .navigation-menu {
    display: block;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
  }

  /* Left-align the dropdown menu */
  .dropdown-content {
    left: 0;
    width: 100%;
  }

  /* Remove any right-floating behavior */
  .navigation li {
    float: none;
    display: inline-block;
    margin-right: 16px;
  }
}
/*===================*/
/* Media Queries End
/*===================*/



/*===================*/
/* preloader START
/*===================*/
/* Fullscreen preloader background */
/* Preloader overlay covering entire screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #161618;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Above all other content */
  pointer-events: none; /* Prevents interaction blocking */
}

/* Loader animation */
.loader {
  width: 45px;
  aspect-ratio: 1;
  background:
    no-repeat linear-gradient(#1BFEAC 0 0),
    no-repeat linear-gradient(#1BFEAC 0 0),
    no-repeat linear-gradient(#1BFEAC 0 0);
  animation:
    l18-1 1s infinite,
    l18-2 1s infinite;
}

@keyframes l18-1 {
  0%, 100% { background-size: 20% 100%; }
  33%, 66% { background-size: 20% 20%; }
}

@keyframes l18-2 {
  0%, 33%   { background-position: 0 0, 50% 50%, 100% 100%; }
  66%, 100% { background-position: 100% 0, 50% 50%, 0 100%; }
}






/*===================*/
/* preloader END
/*===================*/








/*===================*/
/* password
/*===================*/

.password-wrapper {
      position: relative;
       width: 100%;
    }
input[type="password"] {
      width: 70%;
      padding: 10px 0;
      border: none;
      border-bottom: 2px solid #8DFFD5;
      background: transparent;
      font-size: 16px;
      outline: none;
      caret-color: #000; /* Ensures visible blinking cursor */
    }
















/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  margin-right: 16px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  padding-top: 5px;
 background-color: #262627;

 width: 310px;
 border-radius: 10px;
   /*min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 0.8em;
}

//* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/
/*===================*/
/* DROPDOWN END
/*===================*/

/*===================*/
/* ARROW
/*===================*/


.link--arrowed {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
}

.link--arrowed .arrow-icon {
  position: relative;
  top: -1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
}

.arrow-icon g {
  stroke: #ffffff;
}

.link--arrowed:hover .arrow-icon g {
  stroke: #1BFEAC;
}


.link--arrowed .arrow-icon--circle {
  transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}

.link--arrowed:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}

.link--arrowed:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}












/*===================*/
/* ARROW END
/*===================*/

/*===================*/
/* SHRINK EFFECT
/*===================*/

.shrink-on-hover {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.shrink-on-hover:hover, .shrink-on-hover:focus, .shrink-on-hover:active {
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}


.connect a{
  font-size: 25px;
  font-family: 'ObjectSans', Helvetica, sans-serif;
 color:#79E7C0;

  
}
.connect a:hover{
 
color:#1BFEAC !important;

  
}



.container-footer {
width: 100%;
max-width: 1600px; }
.footer{
  font-size: 10px;
  text-align: right;
}


.footer-row{
  margin-bottom: 16px !important;
}



#branding-project-1 {
  opacity: 0;
  transition: opacity 0.3s ease;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
#branding-project-1.visible {
  opacity: 1;
}










/*---------------*/

.img-featured {

background-repeat: no-repeat;
background-size: contain;
height: 0;
width: 100%;
padding-top: 56.5%;
}

.img-featured:hover {
  border: solid 3px #1BFEAC;
}




.featured-landing {
  font-family: 'ObjectSans'; 
  font-size: 27px; 

/*  color: #ACADBA;*/
}

.featured-landing:hover {
  color: #1BFEAC;
  font-family: 'ObjectSans-Heavy'; 
}



.list_home {
display: flex;
  color: white;
  cursor: pointer;
/*  border-top: 2px solid;*/
  justify-content: space-between;
/*  padding-top: 36px;*/
  font-size: 35px;
  margin: 10px 0;
}

/*#list-last {
  padding-bottom: 36px;
  border-bottom: 2px solid;
}*/

.list-link p:hover {
font-family: 'ObjectSansSlanted';
color: #1BFEAC;
}


/* UNIVERSAL */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
}

body {
  overflow-x: hidden;
  background-color: #161618;
}

body.dark {
  background-color: #161618;
}

* {
  font-family: 'ObjectSans', Object Sans, Helvetica, sans-serif;
  font-weight: 300;
  color: #ffffff;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'ObjectSans-Heavy', Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 44px;
}

h2 {
  font-family: 'ObjectSans-Heavy', Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.75;
}

p {
  font-size: 20px;
  line-height: 1.6;
}

p.start {
  margin-top: 44px;
}

p.x-large {
  font-size: 1.8rem;
  line-height: 1.425;
/*  font-family: 'NeueMachina-Regular', Helvetica, sans-serif;*/
}

p.label {
  font-size: 1rem;
  line-height: 1.5;
}

p.med {
  font-size: 1.25rem;
  line-height: 1.75;
}

li {
  list-style: none;
  font-size: 1rem;
  line-height: 1.5;
}

.navigation li {
  display: inline-block;
  margin-right: 16px;
}

.navigation li:last-of-type {
  margin-right: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1BFEAC;
}

.type-white {
  color: #fff;
}

/* ACCESSORY */
.spacer {
  width: 100%;
  height: 64px;
}

.align-r {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-center {
  align-items: center;
}

.flex-space-between {
  justify-content: space-between;
}

/* CONTENT */
section {
  padding-top: 48px;
}

section.footer {
  padding-top: 0px !important;
}


.navigation {
  margin-top: 0;
}

.header {
  margin-bottom: -32px;
}

/*.footer {
  background-color: #161618;
  margin-top: 0;
  padding-bottom: 32px;
}
*/
.visit-cta-section {
  padding-top: 32px;
  margin-bottom: 48px;
}

.visit-cta {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
}

.arrow-circle {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 2px solid #161618;
  background-color: #fff;
  display: flex;
  justify-content: center;
  margin-top: -8px;
  margin-left: 24px;
}

.circle-animation {
  position: absolute;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: #1BFEAC;
  z-index: -150;
  opacity: 0;
}

.visit-cta:hover .circle-animation {
  animation: pop 2s ease-out infinite;
}

.visit-cta:hover p {
  color: #1BFEAC;
}

/* COLLAPSIBLE LIST STYLES */
.tab {
  position: relative;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 35rem;
}

.accordion {
  overflow: hidden;
}
.tab__label,
.tab__close {
  display: flex;
  color: white;
  cursor: pointer;
  border-top: 2px solid;
}
.tab__label {
  justify-content: space-between;
  padding: 36px 0;
  font-size: 30px;
}
.tab__label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}
.tab__content p {
  margin: 0;
  padding: 1rem;
}

.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce .5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
}

/* KEYFRAMES */
@keyframes pop {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  5% {
    transform: scale(1);
    opacity: 0.5;
  }
  75% {
    transform: scale(4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* IMAGES */

.home-thumb-1 {
  background-image: url('home_branding_1.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.home-thumb-2 {
  background-image: url('timleary.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.home-thumb-3 {
  background-image: url('orbit.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.home-thumb-4 {
  background-image: url('ajstarthere.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.main-project-image {
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}










.square_image {
  background-repeat: no-repeat;
background-size: contain;

width: 100%;
}

/*
.main-project-video {
  position: relative;
  width: 100%;
  padding-top: 60%; 
  overflow: hidden;
}

.main-project-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

.main-project-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.main-project-video video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.img-branding-1 {
  background-image: url('Branding_1.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.img-branding-2 {
  background-image: url('Branding_2.png');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.img-branding-3 {
  background-image: url('Branding_3.mp4');
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  width: 100%;
  padding-top: 60%;
}

.img-logo {
  background-image: url('logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 190px;
}
.img-logo:hover {background-image: url('logo-green.svg');}



.img-arrow-right {
  background-image: url('/img/arrow-right.svg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 9px;
  width: 14px;
  padding-top: 51.875%;
  margin-top: 11px;
}

/* MEDIA QUERIES */
@media only screen and (min-width: 540px) {
  .img-edu-8 {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 720px) {
  .spacer {
    height: 30px;
  }

  .LW1 {
  margin-left: 0px !important;
}


.LW2 {
  margin-right: 0px !important;
margin-left: 4% !important;
}


/*  .footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }*/
}

@media only screen and (min-width: 1094px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-top: 44px;
  }

  h2 {
    font-size: 20px;
    line-height: 1.75;
  }

  p {
    font-size: 20px;
    line-height: 1.6;
  }

  p.start {
    margin-top: 44px; 
  }

  p.x-large {
    font-size: 2rem;
    line-height: 1.4;
  }

  p.label {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  p.med {
    font-size: 20px;
    line-height: 1.75;
  }

  li {
    font-size: 1.5rem;
    line-height: 1.5;
  }

/*  .footer {
    padding-top: 120px;
    padding-bottom: 80px;
  }*/

  .visit-cta-section {
    padding-top: 80px;
    margin-bottom: 80px;
  }
}