html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    font-size: 100%;
    vertical-align: baseline
}
body {
    line-height: 1;
    color: #000;
    background: #000;		background-color: #000;    background-image: url('../images/hexagons.png');	    background-repeat: repeat;		border-top: 10px solid black;
}
ol,
table {
    border-collapse: separate;
    border-spacing: 0;
    vertical-align: middle
}
caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle
}
a img {
    border: none
}.main-text {  font-size: 33px;  color: white}.secondary-text {  font-size: 12px;  color: black;  margin: 0;  }
.statement-section {
    padding: 2rem;
    text-align: center;
    -webkit-transition: All .6s ease;
}
.statement-section .statement {
    max-width: 710px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    line-height: 2em;
}
.statement-section .statement strong {
    font-family: "futura-pt";
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2px;
    color: #fff;
    font-size: 1.1em
}
.grid {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: distribute;
    -moz-box-pack: distribute;
    -o-box-pack: distribute;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    max-width: 1280px;
    margin: 0 auto;
}



.spantext 
{
    margin-left: 10px; /* Adjust this value based on your nav width */
    margin-right: 10px; /* Adjust this value based on your nav width */
}

/* Media query for screens larger than 768px */
@media (min-width: 768px) {
    .spantext {
        margin-left: 150px;
        margin-right: 150px;
    }
}














nav {
    position: fixed;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.85); /* transparent background */
    max-height: 100vh; /* Ensure nav doesn't extend beyond viewport height */
    overflow: hidden; /* Hide anything that goes beyond the nav height */
    padding: 10px; /* Optional: Add some padding around the nav */
}

.navbar-menu {
    display: flex;
    flex-direction: column;
    /* Hide the menu by default */
    display: none;
}

.navbar-menu.active {
    display: flex; /* Show the menu when the 'active' class is added */
}

.navbar-toggle {
    background: #333; /* Add styles for your toggle button if needed */
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

nav a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    padding: 10px; /* Adjust as needed for spacing around each link */
    text-align: left;
    display: block; /* Ensures padding applies correctly */
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2); /* Optional: Add a hover effect */
}





















.pilot {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.pilot-name {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left; 
}

.pilot-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pilot-image {
    flex-shrink: 0;
    width: 200px; /* Adjust as needed */
    margin-right: 20px;
}

@media screen and (max-width: 768px) {

	.pilot-image {
		flex-shrink: 0;
		width: 180px; /* Adjust as needed */
		margin-right: 10px;
		margin-left: -10px;
	}
}
@media screen and (max-width: 512px) {

	.pilot-image {
		flex-shrink: 0;
		width: 140px; /* Adjust as needed */
		margin-right: 10px;
		margin-left: -10px;
	}
}

.pilot-description {
    text-align: left;
    flex-grow: 1;
}
.grid article {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 33.33%;
    -ms-flex: 1 1 33.33%;
    flex: 1 1 33.33%
}
.grid.two-columns article {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}.grid.one-column {	    max-width: 700px; /* This will make the grid take up half of the screen width */    margin: 0 auto; /* This will center the grid */ }.grid.one-column article {	    -webkit-flex-basis: 100%;    flex-basis: 100%; }  
.fit { /* set relative picture size */
    max-width: 100%;
    max-height: 100%;
}
.center {
    display: block;
    margin: auto;
}
@media screen and (max-width: 800px) {
    .grid.two-columns article {
        -webkit-flex-basis: 100%;
        flex-basis: 100%
    }
}
.grid.three-columns article {
    -webkit-flex-basis: 33.33%;
    flex-basis: 33.33%;
}
@media screen and (max-width: 800px) {
    .grid.three-columns article {
        -webkit-flex-basis: 100%;
        flex-basis: 100%
    }
}
.grid.four-columns article {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 1 310px;
    -ms-flex: 0 1 310px;
    flex: 0 1 310px
}
@media screen and (max-width: 1300px) {
    .grid.four-columns {
        max-width: 900px
    }
}
.grid.six-columns article {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 0 1 100px;
    -ms-flex: 0 1 100px;
    flex: 0 1 100px
}
@media screen and (max-width: 1300px) {
    .grid.six-columns {
        max-width: 900px
    }
}
.grid article {
    margin: 0 0 100px 0;
}
.grid article header {
    margin: 0 0 20px 0
}
.grid article h2 {
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}
.grid article h2 + .caption {
    margin-top: 20px
}.center.fit2 {    display: block;    margin-left: auto;    margin-right: auto;    max-width: 100%;    height: auto;}.center.fit {    display: block;    margin-left: auto;    margin-right: auto;    max-width: 100%;    height: auto;			position: relative; /* Declared position allows for location changes */    top: -100px; /* Moves the image 2px closer to the top of the page */}article h3 {	font-weight: bold;    color: #ec912f;		text-align: center	}
html,
body {
    height: 100%;
    color: #99a;	    background: #000;		background-color: #000;
    font-family: "tahoma";
    font-size: 22px;
    text-rendering: optimizelegibility;
    font-variant-ligatures: common-ligatures;    background-image: url('../images/hexagons.png');	    background-repeat: repeat;
}
html::selection,
body::selection {
    color: #000;    background: #000;
    text-shadow: none;    background-image: url('../images/hexagons.png');	    background-repeat: repeat;
}
@media screen and (max-width: 1000px) {
    html,
    body {
        font-size: 20px;		background-image: url('../images/hexagons.png');				background-repeat: repeat;
    }
}section {    padding: 2rem;    border-top: 1px solid rgba(0, 0, 0, 0.075);    -webkit-transition: background 0.6s ease;    -moz-transition: background 0.6s ease;    -o-transition: background 0.6s ease;    -ms-transition: background 0.6s ease;    transition: background 0.6s ease;}.video-thumbnail {  cursor: pointer;  width: 100%;  height: auto;  object-fit: cover;  max-width: 1920;  max-height: 1920;}.thumbnail-container {  position:relative;  padding-bottom: 56.25%;  height: 0;  overflow: hidden;  display: flex;   justify-content: center;}.video-container {  position: relative;  display: flex;  justify-content: center;  align-items: center;  max-width: 1920px;  width: 1920;  margin: 0 auto;}.video-container iframe,.video-container object,.video-container embed {  position: relative;  width: 1920;  height: 1920;}
.button {
    display: inline-block;
    margin-top: 20px;
    padding: .5em 1.5em;
    font-family: "futura-pt";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0c0c0c;
    background: #000;
    -webkit-transition: background 600ms;
    -moz-transition: background 600ms;
    -o-transition: background 600ms;
    -ms-transition: background 600ms;
    transition: background 600ms;
}
.video-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

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

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.storelink {  display: inline-block;   margin-right: 8px;  margin-left: 8px;}.storelink img {    transition: filter 0.3s ease;}.storelink:hover img {  border-radius: 10px;  background: #f78202EE;}
@media screen and (max-width: 600px) {
    .large-screens-only {
        display: none
    }
}
@media screen and (min-width: 600px) {
    .small-screens-only {
        display: none
    }
}
.followup {
    margin: 20px 0 0 0;
}
.followup p:not(:last-child) {
    margin: 0 0 10px 0
}
p {
    line-height: 1.8em
}
ul {
    margin: 30px 30px 30px 30px;
    line-height: 1.8em;
}
.caption {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6em
}
a {
    color: inherit;
    text-decoration: none
}
p a:not(.button) {
    background-image: -webkit-linear-gradient(right, #0c0c0c, #0c0c0c);
    background-image: -moz-linear-gradient(right, #0c0c0c, #0c0c0c);
    background-image: -o-linear-gradient(right, #0c0c0c, #0c0c0c);
    background-image: -ms-linear-gradient(right, #0c0c0c, #0c0c0c);
    background-image: linear-gradient(to left, #0c0c0c, #0c0c0c);
    background-position: 0 1.1em;
    background-repeat: repeat-x;
    -webkit-background-size: 2px 2px;
    -moz-background-size: 2px 2px;
    background-size: 2px 2px;
    text-decoration: none;
    text-shadow: 2px 0 0 #0c0c0c, -2px 0 0 #0c0c0c;    
    color: #d9534f;
}
h1,
h2,
h3 {
    font-family: "tahoma";
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #5e5f70;
    letter-spacing: 4px;
}
h4 {
    font-family: "tahoma";
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #bbbbbb;
    letter-spacing: 4px;
}
@media screen and (max-width: 1000px) {
    h1,
    h2,
    h3 {
        font-size: 22px
    }
}#introduction {    padding: 0;    color: #0c0c0c;    background: #000;}        #background-video {            position: fixed;            right: 0;            bottom: 0;            min-width: 100%;            min-height: 100%;            width: auto;            height: auto;            z-index: -1;        }	@media screen and (min-width: 200px) {    #introduction {        background-image: url("../images/cabackground.webp");        background-position: center center;        background-repeat: no-repeat;        background-size: cover;    }}@media screen and (min-width: 10px) {    #introduction {        background-image: url("../images/cabackground.webp");        background-position: right center;        background-repeat: no-repeat;        background-size: cover;    }}
#introduction header {
    max-width: 660px;
    margin: 0 auto;
    padding: 177px 0 150px 0;
    text-align: left;
    -webkit-animation: fade-in-downwards 1s ease-out 1;
    -moz-animation: fade-in-downwards 1s ease-out 1;
    -o-animation: fade-in-downwards 1s ease-out 1;
    -ms-animation: fade-in-downwards 1s ease-out 1;
    animation: fade-in-downwards 1s ease-out 1;
}
@media screen and (max-width: 700px) {
    #introduction header {
        text-align: center;
        background-position: center 95px
    }
}#mission {    position: relative;}#mission p {    padding-top: 50px;}#mission::before {    content: "";    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100px;    background: linear-gradient(to bottom, black, transparent);}#endsales {    position: relative;}
#contact {
    position: relative; /* keep this if you need it for positioning */
}
#contact::after {    content: "";    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100px;    background: linear-gradient(to top, black, transparent);    top: 100px;}
#introduction .pre-title {
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 3px
}
#introduction h1 {
    margin: 28px 0 0 0;
    font-weight: bold;
    font-size: 66px;
    letter-spacing: 3px;
    color: #0c0c0c;
}
#introduction h1 span {
    display: block
}
#introduction h1 .h1-b {
    font-size: 40px;
    letter-spacing: 0px
}#photos {    padding: 00px 300px 10px 300px;    text-align: center;    -webkit-transition: background 0.6s ease, box-shadow 0.6s ease;    -moz-transition: background 0.6s ease, box-shadow 0.6s ease;    -o-transition: background 0.6s ease, box-shadow 0.6s ease;    -ms-transition: background 0.6s ease, box-shadow 0.6s ease;    transition: background 0.6s ease, box-shadow 0.6s ease;}@media (max-width: 1500px) {  #photos {    padding: 30px 30px 40px 30px;  }}@media (max-width: 600px) {  #photos {    padding: 00px 30px 40px 30px;  }}
#process article {
    padding: 30px 30px 40px 30px;
    text-align: center;
    -webkit-transition: background 0.6s ease, box-shadow 0.6s ease;
    -moz-transition: background 0.6s ease, box-shadow 0.6s ease;
    -o-transition: background 0.6s ease, box-shadow 0.6s ease;
    -ms-transition: background 0.6s ease, box-shadow 0.6s ease;
    transition: background 0.6s ease, box-shadow 0.6s ease;
}
.sectiontext a {
    color: #d9534f;
}
#intro a {
    color: #d9534f;
}

#intro a:hover {
    color: #c9302c;
}
.sectiontext a:hover {
    color: #c9302c;
}
#process article .icon {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
@media screen and (max-width: 600px) {
    #process article {
        padding: 0 26px
    }
}
#sectiontext article  p {	font-family: "Tahoma", sans-serif;	font-size: 22px;}
.sectiontext a {
    color: #d9534f;
}

.sectiontext a:hover {
    color: #c9302c;
}

#partners {
    text-align: center;
}

/* Ensure that all text is left-aligned by default */
.storytext {
  text-align: left; /* Ensures all text is aligned to the left */
}
#partners article {
    position: relative;
}
#partners article a {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}
#partners article .logo {
    width: 80px;
    margin: 25px 0 25px 0
}
#partners article .caption {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -o-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    -moz-transition: opacity 0.6s ease, -moz-transform 0.6s ease;
    -o-transition: opacity 0.6s ease, -o-transform 0.6s ease;
    -ms-transition: opacity 0.6s ease, -ms-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease
}
#partners article svg g {
    -webkit-transition: fill 0.6s ease;
    -moz-transition: fill 0.6s ease;
    -o-transition: fill 0.6s ease;
    -ms-transition: fill 0.6s ease;
    transition: fill 0.6s ease
}
#partners article:hover svg g {
    fill: #28343f
}
#partners article.partner-moore {
    -webkit-flex-basis: 160px;
    flex-basis: 160px;
}
#partners article.partner-moore .logo {
    width: 160px
}
@media screen and (max-width: 600px) {
    #partners article {
        padding: 0 10px
    }
}
#team article {
    padding: 0 20px;
    text-align: left;
}
@media screen and (max-width: 600px) {
    #team article {
        text-align: center
    }
}
@media screen and (max-width: 600px) {
    #team .photo {
        float: none;
        margin: 20px auto
    }
}
#contact .statement {
    font-size: 1.722222222222222rem;
    font-style: normal;
    margin: 0 auto 1rem auto
}
footer {
    padding: 70px 0 25px 0;
    background: #000;
    font-family: "futura-pt";
    color: #fff;
    text-align: center;
}
footer nav {
    margin: 20px 0;
}
footer nav .button {
    display: block;
    padding: 20px 20px;
    font-size: 15px;
    color: rgba(245, 244, 241, 0.5);
    border-color: transparent;
    background: rgba(0, 0, 0, 0);
    margin: 0;
}
footer nav .button:hover {
    background: #366bee;
    color: #fff
}
footer .colophon {
    margin: 50px 30px 0 30px;
    font-size: 14px;
    color: rgba(245, 244, 241, 0.5);
}
footer .colophon a {
    color: #fff;
    text-decoration: underlined;
    text-shadow: none;
    background: none
}
@-moz-keyframes fade-in-downwards {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(0, -20px, 0);
        -moz-transform: translate3d(0, -20px, 0);
        -o-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}
@-webkit-keyframes fade-in-downwards {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(0, -20px, 0);
        -moz-transform: translate3d(0, -20px, 0);
        -o-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}
@-o-keyframes fade-in-downwards {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(0, -20px, 0);
        -moz-transform: translate3d(0, -20px, 0);
        -o-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}
@keyframes fade-in-downwards {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(0, -20px, 0);
        -moz-transform: translate3d(0, -20px, 0);
        -o-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}
@-moz-keyframes flash {
    0% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6)
    }
    100% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
}
@-webkit-keyframes flash {
    0% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6)
    }
    100% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
}
@-o-keyframes flash {
    0% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6)
    }
    100% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
}
@keyframes flash {
    0% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6)
    }
    100% {
        -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0)
    }
}
@keyframes colorCycle {
  0% { color: red; }
  25% { color: blue; }
  50% { color: green; }
  75% { color: yellow; }
  100% { color: red; }
}
.color-cycle {
  animation: colorCycle 1.2s infinite;
}