@import url("//hello.myfonts.net/count/3b7a74");

@font-face {
    font-family: 'OktaNeue-Regular';
    src: url('webFonts/OktaNeue-Regular/font.woff2') format('woff2'), url('webFonts/OktaNeue-Regular/font.woff') format('woff');
}

@font-face {
    font-family: 'OktaNeue-Bold';
    src: url('webFonts/OktaNeue-Bold/font.woff2') format('woff2'), url('webFonts/OktaNeue-Bold/font.woff') format('woff');
}


body {
    font-family: 'OktaNeue-Regular', sans-serif;
}


/* ------------ NAVBAR ------------  */
header .sub-head {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.header-large {
    /* ALT ORANGE COLOR */
    background-color: rgb(255, 111, 0) !important; 

    /* DARK COLOR */
    /* background-color: #213232 !important;  */

    /* ACTUAL ORANGE */
    /* background-color: #ee6f0b !important;  */
    color: white;
    padding-top: 15px;
    padding-bottom: 150px;
}

.header-small {
    /* background-color: #ee6f0b !important; */
    background-color: rgb(255, 111, 0) !important;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
}


.gabe-bar {
    /* display: flex; */
    justify-content: center;
    justify-content: space-between;
}

.gabe-bar .gabe-nav-link {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.gabe-nav-link-active{
    color: rgb(147, 67, 5) !important;
}

.gabe-bar .gabe-nav-link:hover {
   
    color: rgb(147, 67, 5);
    text-decoration: none;
    opacity: 1;
}

.gabe-bar .img-link {
    margin: 0 20px;
}

.gabe-bar .img-link img {
    width: 86px;
}

/* Formatting Navbar Flex */

.nav-linkdiv {
    margin-top: 36px;
    
}

.gabe-logo-navbar {
    justify-content: flex-start;
}

.navbar-contents {
    display: flex;
    
    justify-content: space-between;
}

/* ------------ MOBILE NAVBAR ------------  */

.gabe-bar-mobile {
    color: white;
    text-decoration: none !important;
    transition: 0.3s;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 46px;
    
}

.mobile-nav-link-active{
    color: rgb(147, 67, 5) !important;
   /* MAKE BACKGROUND RECTANGLE */
}

.gabe-bar-mobile .mobile-nav-link:hover {
   
    color: rgb(147, 67, 5) !important;
    text-decoration: none !important;
    opacity: 1;
}


/* hamburger Animation */
/* Icon 1 */

.animated-icon1, .animated-icon2, .animated-icon3 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
  .animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  .animated-icon1 span {
    background: #e65100;
  }
  
  .animated-icon2 span {
    background: #e3f2fd;
  }
  
  .animated-icon3 span {
    background: #f3e5f5;
  }
  
  .animated-icon1 span:nth-child(1) {
   top: 0px;
  }
  
  .animated-icon1 span:nth-child(2) {
    top: 10px;
  }
  
  .animated-icon1 span:nth-child(3) {
    top: 20px;
  }
  
  .animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  .animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  
  .animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  
  /* Icon 3*/
  
  .animated-icon2 span:nth-child(1) {
    top: 0px;
  }
  
  .animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
  }
  
  .animated-icon2 span:nth-child(4) {
    top: 20px;
  }
  
  .animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
  }
  
  .animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
  }
  
  /* Icon 4 */
  
  .animated-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .animated-icon3 span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .animated-icon3 span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .animated-icon3.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
  }
  
  .animated-icon3.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  
  .animated-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
  }









/* ** BUTTON **  */

.btn {}

/* .btn-primary {
    color: #ee6f0b;
    background-color: #ffffff;
    border-color: #ee6f0b;
    width: 150px;
    height: 40px;

} */

.case-study-btn {
  color: #ee6f0b;
  background-color: #ffffff;
  border-color: #ee6f0b;
  width: 150px;
  height: 40px;
}


.about-btn {
  color: #ee6f0b;
  background-color: #ffffff;
  border-color: #ee6f0b;
  width: 50%;
  height: 40px;
  transition: .3s;
}

.about-btn:hover {
  color: #fff;
  background-color: #06A9F4;  border-color: #ee6f0b;
  width: 50%;
  height: 40px;
  transition: .3s;
}

.writing-btn {
  color: #ee6f0b;
  background-color: #ffffff;
  border-color: #ee6f0b;
  width: 250px;
  height: 40px;
}

.explore-btn {
  color: #ee6f0b;
  background-color: #ffffff;
  border-color: #ee6f0b;
  width: 300px;
  height: 40px;
}

.btn-primary {
   

}
/* ee6f0b */
.btn-primary:hover {
    color: #fff;
    background-color: #06A9F4;
    border-color: #999999;


}

.btn-primary2 {
    color: #ee6f0b;
    background-color: #ffffff;
    border-color: #ee6f0b;
    

}

.btn-primary2:hover {
    color: #fff;
    background-color: #06A9F4;
    border-color: #999999;


}

.btn-primary3 {
    color: #ee6f0b;
    background-color: #ffffff;
    border-color: #ee6f0b;
    height: 40px;


}

.contact-btn {
  color: #fff;
  background-color: #ee6f0b;
  border-color: #ee6f0b;
  width: 150px;
  height: 40px;
  transition: .3s;
}

.contact-btn:hover {
  color: #fff;
  background-color: #f08635;
  border-color: #ee6f0b;
  width: 172px;
  height: 40px;
  transition: .3s;
}
/* Progress Indicator */
/* Style the header: fixed position (always stay at the top) */