@import url("https://use.typekit.net/oez3qal.css");

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css');

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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  
   
}

body
{margin: 0;
padding: 0;
font-family: "motiva-sans", sans-serif;
color:#faf7ed;  
background-color: #232535; 
    overflow-x: hidden;
  
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  font-size: 16px;
}

.responsive-iframe {
    position: relative;
    padding-bottom: 10.25%; /*16:9*/
    height: 0;
    overflow: hidden;
    iframe {
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 300px;
    }
}


/*=== Trigger  ===*/
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Optional Delays, change values here  ===*/
.one {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.two {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.three {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.four {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.five {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.six {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

.seven {
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

.eight {
  -webkit-animation-delay: 7.5s;
  -moz-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

/*=== Animations start here  ===*/

/*==== FADE IN UP ===*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*=== FADE IN DOWN ===*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*=== FADE IN  ===*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*=== FADE IN UP Big ===*/
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN DOWN Big ===*/
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN LEFT Big ===*/
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN RIGHT Big ===*/
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}



/* ----------- TYPOGRAPHY ----------- */


p, h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
}

p{ 
font-size:22px;
line-height: 150%;
margin-bottom: 20px;    
}

a{	color: #faf7ed; text-decoration: underline;  font-size: 20px;}
         
        
.title{ max-width: 100%; width: 980px; height: auto; position: relative; margin: 0 auto; display: block; box-sizing: border-box;}

.caption{ background-color: #E3E7EE; padding: 5px 10px; box-sizing: border-box; width: 100%; height: 100px;}

.caption p {color: #494949; line-height: 100%; }

.homepage-content p {

  font-size: 18px;
    line-height: 32px;
    font-weight: 100;
    padding: 0;
    color: #faf7ed;
    margin-bottom: 25px;
    max-width: 680px;
    margin: 0 auto;
   
}

.homepage-content h1 {
    font-size: 68px;
    line-height: 125%;
    color: #faf7ed; 
    margin: 0 auto;
    margin-bottom: 15px;
   font-family: "motiva-sans", sans-serif;
    font-weight: 800;
    max-width: 780px;
  
}
        
.homepage-content h2 {
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 10px;
    color: #faf7ed;
    font-weight: 800;
     margin: 0 auto;
}

.homepage-content h4 {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 25px;
    color: #faf7ed;
  max-width: 760px;
    font-weight: 200;
    max-width: 780px;
    margin: 0 auto;

}

.jumbo-text {
    font-size: 86px;
    color: #FFF;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    line-height: 86px;
    max-width: 1080px;
    width: 100%;
    height: auto;
    min-height: 200px;
    margin: 0 auto;
    position: relative;
}

.jumbo-text-two {font-size: 36px; line-height: 125%; font-weight: 700; display: block; color: #3f214a;}


.homepage-content h3, .eyebrow {
    
    font-size: 14px;
    color: #f45347;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 600;
}



.sitelink a{color: #fff;  padding: 5px;   }

.sitelink a:hover {color: #fff; text-decoration: none;  background-color: #E1FAFA; color: #292E49; transition: 0.8;}
  

/* ----------- BUTTONS ----------- */


/* ----------- CONTACT FORM ----------- */

.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: #faf7ed;
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}



/* ----------- HERO STYLING ----------- */


.hero-text-container {
    max-width: 980px;
    position: absolute;
    left:10%;
    top: 15%;
    height: auto;
    width: 100%;
    height: auto;
    z-index: 2;
}


.hero-text-container h1 {
    font-size: 68px;
    font-weight: 800;
    letter-spacing: 0.72px;
    color: #fef6f6;
    margin: 0 0 10px 0;
    line-height: 118%;
}

.hero-text-container h2{font-size: 28px; line-height: 150%; color: #fef6f6; margin-bottom: 25px; font-weight: 200;}

.video-box {

    z-index: 3;
    width: 100%;
}

.video-box video {
    margin:0; 
    padding:0;
    padding-bottom:calc(.25%);
    z-index: 2;
    width: 100%;

}

.whothehellami {

    height: auto;
    min-height: 100px;
    width: 100%;
    margin-left: 10%;
    position: relative;
    display: block;
    max-width: 1280px;
}

.name-span{
font-weight: 800; 
color: #f45347; 

animation-delay: 5s;
animation: color-change 2s;     
}

@keyframes color-change {
  0% { color: white; }
  50% { color: white; }
  100% { color:#f45347 }
}


.video-wrapper {
  width:110%;
  height:100vh;
    max-height: 1000px;
    position: absolute;
    z-index: -100000;
}
  
 
 .video-wrapper video {
    object-fit: cover;
    width:100%;
    height:100%;
     clip-path: inset(2px 2px); 
  }


.reel-wrapper {
display: flex;
  justify-content: center;
  align-items: center;

  width: 80vw; /* adjusts with screen size */
  height: calc(80vw * 9 / 16); /* maintain 16:9 aspect ratio */
  top: 0; /* or set a custom vertical position */
}

.reel-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.video-content {
  width:100%;
  height:100vh;
    max-height: 1000px;
    position: relative;
   
    
}
  
 
 .video-content video {
    object-fit: cover;
    width:100%;
    height:100%;
    margin: 0 auto;
    max-width: 980px;
    clip-path: inset(2px 2px); 
    margin-top: 50px;
    display: block;
  }

.mobile-video-wrapper {
  width:100%;
  height:100vh;
padding-bottom: 1%}
  

.mobile-video-wrapper video {
    object-fit: cover;
    width:100%;
    height:100%;
    max-height: 700px;
    max-width: 400px;
	 margin: 0 auto;
	display:block;
    clip-path: inset(2px 2px);
  } 

/* ----------- BODY CONTENT ----------- */

.home{ 
position: relative; 
display: block; 
margin: 0 auto;
min-height: 400px; 
width: 100%; 
margin-top: 400px;
}

.wrapper-no-top { 
position: relative; 
display: block; 
margin: 0 auto;
min-height: 400px; 
width: 100%; 
margin-top: 20px;
}



.body-shrink {max-width: 1240px; width: 100%; margin: 0 auto; position: relative; 
display: block;  }

.subhead-box {max-width: 800px; width: 100%; display: block; margin: 0 auto; margin-bottom: 30px; margin-top: 30px;}


.main-content {
    max-width: 1040px;
    margin: 0 auto;
    margin-top: 0%;
    min-height: 600px;
    display: block;
    width: 100%;
}

 .main-content h2 {
    
    color: #00062B;
    font-size: 44px;
    line-height: 48px
    margin: 0;
    padding: 0;
    font-weight: 700;
    text-align: left;
    max-width: 860px;
    margin: 0 auto;

}

.main-content h4 {
    color: #00062B;
   
    font-size: 50px;
    line-height: 110%;
    text-align: left;
    max-width: 860px;
    margin: 0 auto;
    padding: 5px 10px 5px;
}


.main-content p {

  font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    margin: 0 auto;
    padding: 0;
    color: #072333;
    margin-bottom: 25px;
    max-width: 860px;
}


.main-content img {width: 100%; height: auto;}

.rounded {width: 100%; height: auto; margin-top: 2%; border-radius: 40px;}
.shadow {}
   
    .project-type{ font-size: 14px; color: #888; text-align: center; display: block;}
        
.projectbttn{color: #faf7ed;   
   transition: .4s;
   border: 1px solid #FBD786;
   transition: all .3s ease-out;
background-color:transparent;
padding: 10px 15px;display: block;max-width: 200px;text-decoration: none;font-size: 18px;font-weight: 600;
text-align: center;margin-top: 15px !important;  
}


.projectbttn:hover {background-position: left bottom;color: #232535; background-color: #faf7ed; transition: .3s; 

   }
      
.project-box{display: block; position: relative; margin-bottom: 10px;  height: 680px;}
    .project-right{right: 0%; margin-top: 5%;}
    .project-left {left: 0%; margin-top: 10%;}

 .port-nav {
    background-color: #E3E7EE;
    height: 40px;
    width: 100%;
    margin-bottom: 30px;
}
 




.main-wrapper{ 
    margin-top: 0px;
    min-height: 600px;
    display: block;
    width: 100%;
    margin-top: 10px;}


.homepage-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    margin-top: 25px;
    position: relative;
    display: block;
    min-height: 600px;
}

.homepage-content img {width: 100%; height: auto; margin-top: 2%; text-decoration: none; transition: 0.8;}



.about-me-box {width: 720px; z-index: 4; position:absolute; height: 400px; margin-top: -20%; margin-left: 5%; }
.about-me-box p {font-size: 22px; line-height: 130%; margin-bottom: 100px;}
.about-me-box a , .yellow-span a { background-color: #F7D22B; padding: 5px; text-decoration: none; color: #1F272E; font-weight: bold;  transition: background 0.5s linear;
    -moz-transition: background 0.3s linear; /* Firefox 4 */
    -webkit-transition: background 0.3s linear; /* Safari and Chrome */
    -o-transition: background 0.3s linear; /* Opera */
    -ms-transition: background 0.3s linear; /* Explorer 10 */ }
.about-me-box a:hover, .yellow-span a:hover { background-color: #56C5B6; padding: 5px; text-decoration: none; color: #FFF; }

.port-header{}  

    .img-right{max-width: 600px; float: right; display: block;}
     .img-left{max-width: 600px; float: left; display: block;}

    .project-caption{ 
    min-width: 500px;
    max-width: 500px;
    min-height: 100px;
    height: auto;
    box-sizing: border-box;
    padding: 4%;
    position: absolute;
    z-index: 1000;
    display: block;
   }


 
   
.hideme{ opacity:100;}


.centered {text-align: center;}

.eyebrow img {max-width: 20px; width: 100%; height: auto; margin-right: 5px;}

 .animateContainer{position:relative; margin-bottom: 10px;  background-image: url(../images/gradient-background.gif); background-repeat: no-repeat; background-size:cover; height: 700px;}

 .heroContainer{position:relative; margin-bottom: 0px; background-repeat: no-repeat; background-size:cover; height: 800px;}

.project-hero {height: 800px; width: 100%;  background-size: cover; background-repeat: no-repeat; position: relative;}

.project-container {width: 70%; display: inline-block; padding-top: 14%; position: relative; margin-left:15%;}

.project-container h1{color: #FFF; font-size: 82px; font-weight: 500; text-align: left;}

.project-eyebrow {font-size: 20px; font-weight: 400; line-height:18px; display: block; color: #FFF;
 text-shadow: 4px 4px 23px rgba(9,7,7,0.8); 
}

.project-title {
    font-size: 70px;
    font-weight: 100;
    line-height: 150%;
    display: block;
    color: #fff;
    text-shadow: 4px 4px 23px rgba(9,7,7,0.8);
}

.project-overview {
    width: 100%;
    padding: 20px;
    color: #FFF;
}

.project-overview ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-overview ul {
  margin: 2em 0;
}

.project-overview li {
  margin: 1em;
  margin-left: 3em;
}

.project-overview li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -1.5em;
    margin-top: 3px;
    font-size: 12px;
}


.cap-overview {
    width: 100%;
    color: #FFF;
    padding: 0;
    margin: 0;
}

.cap-overview ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cap-overview ul {
  margin: 2em 0;
}

.cap-overview li {
  margin-bottom: 18px;
 margin-left: 40px;
font-size: 20px;
    line-height: 125%;
    font-weight: 100;

}

.cap-overview li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    float: left;
    color: #f45347;
    margin-left: -1.5em;
    margin-top: 3px;
    font-size: 12px;
}

.left-col {width: 15%; display: block; float: left;}
.right-col {width: 85%; display: block; float: right;}

.cap-box {
    width: 100%;
    display: inline-block;
    padding-bottom: 20px;
    padding-top: 20px;
    min-height: 100px;
    height: auto;
    margin-bottom: 25px;
   border-bottom: 1px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(255,249,34), rgba(255,0,128), rgba(56,2,155));
    border-image-slice: 1;
}


.overview-container{}

.overview-container p {color: #FFF; font-size: 18px; line-height: 150%; font-weight: 200; text-align: left;}
.overview-container h2 {color: #FFF; font-size: 22px; font-weight: 700; text-align: left; margin-bottom: 15px;}


    
.homepage-content img {
    width: 90%;
    height: auto;
    margin-top: 2%;
}    
 
 
    
.project-container {
    width: 100%;
    display: inline-block;
    padding-top: 0%;
    position: relative;
    margin-left: 0%;
}   
.project-eyebrow {
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    display: block;
    color: #FFF;
    text-shadow: 4px 4px 23px rgba(9,7,7,0.8);
    padding-left: 30px;
}    
    
    
.project-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    display: block;
    color: #fff;
    text-shadow: 4px 4px 23px rgba(9,7,7,0.8);
        padding: 30px;}

/* ----------- FOOTER ----------- */

.max-width  {max-width: 1180px; width: 100%; margin: 0 auto;}

.contact-box{background-color: #f45347; min-height: 200px; height: auto; padding: 15px; width: 100%;}

.contact-box h2{font-size: 62px; font-weight: 800; line-height: 100%; margin-bottom: 25px;}
.contact-box p {font-size: 28px; font-weight: 300; line-height: 100%; margin-bottom: 25px;}


.social-container {
  display: block;
  width: 100%;
  max-width: 860px;
  height: 50px; 
  margin-top: 10%;
}

.icon-containers {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-left: 30px;
    margin-right: 30px;
}

.icon-containers i

{font-size: 68px;
  margin-right: 10px; 
}



.port-footer{background-color: #f45347; height:auto; width: 100%; color: #FFF; text-transform: uppercase; text-align: center; padding: 15px; 10px; font-size: 14px; display: block; 
border-top:1px solid #faf7ed;
} 



/* ----------- MENU ----------- */


header {
    padding: 0.5em 0;
    width: 90%;
    padding-top: 60px;
    overflow: auto;
    display: inline-block;
}

.material-icons {color: snow !important;}

.name-logo {
    max-width: 200px;
    display: block;
    width: 100%;
    height: auto;
    margin-left: 74%;
}
.namediv {padding-top:120px; max-width: 1260px; margin: auto;}

.logo {
    float: left;
    margin-left: 100px;
}

.logo img {
  vertical-align:bottom;
  margin:0 0.5em;
}

.light a {color: #FFF;}
.dark a {color: #0e2875;}


.navigation-menu {
    box-sizing: border-box;
    min-width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 1000;
    top: 0%;
    left: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9f9f9;
    background-color: rgba(0, 11, 47, 0.86); 
color: rgba(0, 11, 47, 0.86);
}

@media only screen and (min-width: 768px) {
  .navigation-menu {
    justify-content: space-between;
    padding: 0 16px;
  }
}

.navigation-menu__overlay {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: 0.3s;
}

body.open .navigation-menu__overlay {
  visibility: visible;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .navigation-menu__overlay {
    display: none;
  }
}

.hamburger-menu {
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
}

#close-icon {
  display: none;
}

@media only screen and (min-width: 768px) {
  .hamburger-menu {
    display: none;
  }
}

.site-identity-logo {
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
  &:hover {
    color: #00ffff;
  }
}

.navigation-menu__labels {
  position: fixed;
  visibility: hidden;
  z-index: 3;
  top: 50px;
  left: 0;
  width: 50%;
  height: auto;
  padding: 20px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  background: #000000;
  transition: translate 0.3s;
  translate: -100% 0;
  :hover {
    color: #00c6ff;
  }
}

@media only screen and (min-width: 768px) {
  .navigation-menu__labels {
    position: static;
    top: 0;
    left: 0;
    translate: 0 0;
    width: auto;
    background: transparent;
    flex-direction: row;
    visibility: visible;
  }
    
    .navigation-menu__labels a {
    text-decoration: none;
    font-size: 14px;
    color: #FBD786;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-weight: 600;
    }   
    
}

body.open .navigation-menu__labels {
  translate: 0 0;
  visibility: visible;
}

.navigation-menu__labels > button {
  color: #f9f9f9;
  background: transparent;
  padding: 0 8px;
}

.navigation-menu__labels > button.active {
  color: inherit;
}




/* ----------- MEDIA QUERY STYLING ----------- */


@media screen and (max-width:960px){
    
.hero-text-container h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.72px;
    color: #fef6f6;
    margin: 0 0 10px 0;
    line-height: 114%;
    max-width: 868px;
}  
    

.homepage-content h1 {
    font-size: 48px;
    line-height: 125%;
    color: #faf7ed;
    margin: 0 auto;
    margin-bottom: 15px;
    font-family: "motiva-sans", sans-serif;
    font-weight: 800;
    max-width: 780px;
}    
    
.responsive-iframe {
    position: relative;
    padding-bottom: 10.25%; /*16:9*/
    height: 0;
    overflow: hidden;
    display: none;
    iframe {
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 300px;
        
    }
}
    
    
.hero-text-container {max-width: 90%; position: absolute;left: 7%; top:15%;height: auto; width: 100%;padding: 10px;height: auto; z-index: 0;}
    
    
.home{ 
position: relative; 
display: block; 
margin: 0 auto;
min-height: 400px; 
width: 100%; 
max-width: 1240px;
margin-top: 200px;
}    
    

    .img-right{max-width: 600px; float:none; display: block; max-width: 90%; margin: 0 auto; margin-top: 0px;}
    .img-left{max-width: 600px; float: none; display: block; max-width: 90%; margin: 0 auto; margin-top: 0px;}
    .project-caption{min-width: 90%; max-width: 500px; min-height: auto; height: auto; box-sizing: border-box; padding: 2%; position: relative; z-index: 1000; display: block;}
    
    .about-me-box { font-size: 22px; line-height: 150%; width: 90%;  z-index: 4; position:relative; height: 400px; margin-top: 1%; margin-left: 5%; }
    .project-box{display: block; position: relative; margin-bottom: 50px;}
 
     .animateContainer{padding-bottom: 50%;}
    .main-content{margin-top: 250px;}
       
    
}

@media screen and (max-width:600px){
    
    
.hero-text-container {max-width: 90%; position: absolute;left: 7%; top:15%;height: auto;width: 100%;padding: 10px;height: auto;z-index: 0;}
    
    
}




/* ----------- GRID SYSTEMS ----------- */

/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }    
        
/*  GRID OF THREE  */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66.13%; }
.span_1_of_3 { width: 32.26%; }

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 600px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
} 

/*  GRID OF TWO  */
.span_2_of_2 {
	width: 100%;
}
.span_1_of_2 {
	width: 49.2%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
}

@media only screen and (max-width: 600px) {
	.span_2_of_2, .span_1_of_2 { width: 100%; }
}        
