/* Font Fallbacks */ 
  @font-face {
    font-family:"backup";
    font-weight:bold;  
    src: local("Arial");
  }
  
  @font-face {
    font-family:"backupb";
    font-weight:bold;
    src: local("Roboto");
  }

  @font-face {
    font-family:"backupc";
    src: local("Roboto");
  }
  
  body {
    margin: 0;
    font-family: 'Arial',"backupc";
    font-size:1.4rem;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll;
    overflow-x;
    color: #808080;
  }

  h1 {
    font-family: 'Arial Black', "backup","backupb";
    font-size: 2.8rem;
    text-transform:uppercase;
    color: #D3A625;
    text-shadow: 0px 0px 8px #808080;
  }

  h2 {
    font-size: 1.4rem;
    font-family:"Arial Black", "backup", "backupb";
    text-transform:uppercase;
    text-align:center;
    color:#740001;
    padding-bottom:40px;
    padding-top:200px;
    
  }

  h3 {
    font-size: 2.8rem;
    font-family:"Arial Black", "backup", "backupb";
    text-transform:uppercase;
    color:#740001;
    
  }

  img {
    width:100%;
    height:auto;
  }

p {
    line-height:2rem;
    text-align: justify;
}
  strong {
    color: #740001;
  }

  hr {
    border: solid #D3A625;
    background-color: #D3A625;
    padding-top:4px;
    margin-top:174px;
    box-shadow: 0px 0px 8px #808080;
  }

  .nav-title {
    float:right;
    padding-top:28px;
    right:0;
    padding-right:30px;
    font-size: 1.4rem;
    font-family:"Arial Black", "backup", "backupb";
    text-transform:uppercase;
  }

  a {
    color:#740001;
    text-decoration:none;
  }

  blockquote {
    font-family: "Garamond";
    text-align: justify;
    font-size: 2.2rem;
    margin-left:0px;
  }
  /* Helpers */

  .noscrollbar::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
  }
  
.menu {
  display:none;
}

  .full-menu {
    padding:30px;
  }

  .full-menu:hover {
    text-decoration:underline;
    color:#D3A625;
    text-decoration-thickness:4px;
  }

  .hide{
    display:none;
  }

  .navbarmove{
    animation: navbarmove ease .5s;
    -webkit-animation: navbarmove ease .5s;
    -moz-animation: navbarmove ease .5s;
    -o-animation: navbarmove ease .5s;
    -ms-animation: navbarmove ease .5s;
    animation-fill-mode:forwards;
  }

  /* Animations */
  .fade-in {
    animation: fadeIn ease 2s;
    -webkit-animation: fadeIn ease 2s;
    -moz-animation: fadeIn ease 2s;
    -o-animation: fadeIn ease 2s;
    -ms-animation: fadeIn ease 2s;
  }
  @keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  } 

  @keyframes navbarmove {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(172px);
    }
  }
  /* Scrollbar */
  .interior-scrollbar::-webkit-scrollbar {
    width: 10px;
    color: #fff;
  }
  
  .interior-scrollbar::-webkit-scrollbar-thumb {
    background: #D3A625; 
  }

  /* Hamburger Menu */

  .hamburger-text {
    color:#740001;
    list-style:none;
    text-align:center;
    font-size: 1.4rem;
    font-family:"Arial Black", "backup", "backupb";
    text-transform:uppercase;
  }

  .hamburger-text:hover {
    text-decoration:underline;
    text-decoration-thickness:4px;

  }
  
  .hamburger-hr {
    border: solid #D3A625;
    width: 100%;
    background-color: #D3A625;
    margin-top:20%;
    margin-bottom:20%;
    box-shadow:none;
    padding-top:1px;


}

  label .menu {
    position: fixed;
    right: -60px;
    top: -74px;
    z-index: 100;
    width: 200px;
    height: 200px;
    background: #FFF;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
    cursor: pointer;
    
  }
  
  label .hamburger {
    position: absolute;
    top: 135px;
    left: 50px;
    width: 30px;
    height: 2px;
    background: #740001;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  
  label .hamburger:after, label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #740001;
  }
  
  label .hamburger:before { top: -10px; }
  
  label .hamburger:after { bottom: -10px; }
  
  label input { display: none; }
  
  label input:checked + .menu {
    box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
    border-radius: 0;
    
  }
  
  label input:checked + .menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    
  }
  
  label input:checked + .menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;
    
  }
  
  label input:checked + .menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    
  }
  
  label input:checked + .menu + ul { opacity: 1; }
  
  label ul {
    z-index: 200;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
  }
  
  label a {
    margin-bottom: 1em;
    display: block;
    text-decoration: none;
    
  }

  /* Header */
  .header {
    width:100%;
    background-color:#fff;
    padding-top:20px;
    padding-bottom:20px;
    position:fixed;
    z-index:4;
    box-shadow: 0px 0px 12px #808080;
    top:-172px;
  }

  .header-logo {
    height:80px;
    width: auto;
  }

  .header-fixed {
    width:100%;
    background-color:#fff;
    padding-top:20px;
    padding-bottom:20px;
    position:fixed;
    z-index:4;
    box-shadow: 0px 0px 12px #808080;
  }

  /* Main Page */

  html {
    scroll-behavior: smooth;
  }

  .main-page {
    scroll-snap-type: y mandatory;
  }

  /* Navigation */
  .navigation {
    height:100vh;
    position:fixed;
    right:4%;
    z-index:8;
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin-top:80px;
    
  }

  .navbutton {
    height: 20px;
    width: 20px;
    background-color:transparent;
    border-color:#fff;
    border-style:solid;
    border-radius:50%;
    box-shadow: 0px 0px 8px #808080;
    opacity:.5;
    margin-top:50%;
    margin-bottom:50%;
  }

  .navbutton:checked {
    border-color:#D3A625;
    background-color:#D3A625;
    opacity:.5;
  }

  input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  section {
    scroll-snap-align: start;
  }

  .bright-text {
    color:#fff;
    text-shadow: 0px 0px 8px #808080;

  }

  .blank {
    width: 100%;
    height: 100vh;
    position:relative;
    z-index:0;
  }
  
  .no-webp .blank{
    width:100%;
    height:100vh;
    z-index:0;
    background-position:center;
  }

  /* Section 1 */
  .hero {
    width: 100%;
    height: 100vh;
    position:relative;
    background: url('../images/hero.webp') no-repeat;
    background-position:center;
    z-index:0;
  }
  
  .no-webp .hero{
    width:100%;
    height:100vh;
    position:relative;
    background: url('../images/hero.jpg') no-repeat;
    z-index:0;
    background-position:center;
  }

  .hero-logo-container {
    display: flex;
    justify-content: center;
    width:70%;
    height:100%;
    margin:auto;
  }

  .hero-logo {
    width:100%;
    height:auto;
    margin:auto;
  }

  .for-people {
    position:absolute;
  }

  .for-people:hover {
    color:#740001;
  }

  .for-people:hover + .title {
    background-color:#740001;
    border-color:#740001;
  }

  .discover {
    width:464px;
    height:30%;
    position:absolute;
    top:70%;
    padding-left:15%;
  }

  /* Section 2 */

  .expect {
    width: 100%;
    height: 100vh;
    position:relative;
    background: url('../images/expect.webp') no-repeat;
    background-position:center;
    z-index:0;
  }
  
  .no-webp .expect{
    width:100%;
    height:100vh;
    position:relative;
    background: url('../images/expect.jpg') no-repeat;
    z-index:0;
    background-position:center;
  }

  .expect-container {
    width:60%;
    margin:auto;
    height:100%;
    padding-top:12%;
  }

  .expect-hr {
        border: solid #D3A625;
        width: 588px;
        margin-left:0;
        background-color: #D3A625;
        padding-top:4px;
        margin-bottom: -30px;
        box-shadow: 0px 0px 8px #808080;
  }

  /* Section 3 */

  .skills-container {
    width:60%;
    margin:auto;
    height:100%;
    padding-top:1%;
  }

  .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width:100%;
    margin-top:-200px;
  }

  .individual-skill {
    width: 24%;
    padding:1%;
  }

  .circle-skill {
    padding-top:4px;
    border-radius:50%;
    width:100%;
    height:auto;
    overflow:hidden;
    background-color:#D3A625;
  }

  .skill-text {
    padding-top:40px;
    font-size: .8rem;
    text-align: center;
    line-height:1rem;
  }

  .skill-hover{
   margin-bottom:-6px;
   margin-top:-6px;
  }

  .skill-hover:hover{
    opacity:.4;
    transition:.5s;

  }

  /* Section 4 */

  .projects {
    width: 100%;
    height: 100vh;
    position:relative;
    background: url('../images/projects.webp') no-repeat;
    background-position:center;
    z-index:0;
  }

  .no-webp .hero{
    width:100%;
    height:100vh;
    position:relative;
    background: url('../images/projects.jpg') no-repeat;
    z-index:0;
    background-position:center;
  }

#section-4{
    display:flex;
    justify-content:center;
}

  .project-container{
    padding-top:8%;
    width:46%;
    margin:auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .project-home{
    width:46%;
    background-color:#D3A625;
    margin: 2%;
  }

  .project-hover{
    margin-bottom:-6px;
   }
 
   .project-hover:hover{
     opacity:.4;
     transition:.5s;
 
   }

   /* Section 5 */
   .quote-container {
    width:60%;
    margin:auto;
    height:50%;
    padding-top:10%;
  }


   .quote-hr {
    border: solid #D3A625;
    width: 680px;
    margin-left:0;
    background-color: #D3A625;
    padding-top:4px;
    margin-bottom: -30px;
    box-shadow: 0px 0px 8px #808080;
}

/* Section 6 */
.contact-text {
  color:#fff;
  text-shadow: 0px 0px 8px #fff;
}

.contact-bg {
  width: 100%;
  height: 100vh;
  position:relative;
  background: url('../images/contact.webp') no-repeat;
  background-position:center;
  z-index:0;
}

.no-webp .contact-bg{
  width:100%;
  height:100vh;
  position:relative;
  background: url('../images/contact.jpg') no-repeat;
  z-index:0;
  background-position:center;
}


.contact-hr {
  border: solid #D3A625;
  width: 540px;
  margin-left:0;
  background-color: #D3A625;
  padding-top:4px;
  margin-bottom: -30px;
  box-shadow: 0px 0px 8px #808080;
}

.contact-interior {
  padding-top:6px;
  padding-bottom:6px; 
}

.contact-strong {
  text-transform:uppercase;
  font-family:"Arial Black", "backup", "backupb";
}

/* Individual Projects */

#section-project{
  display:flex;
  width:100%;
  height:100vh;
  justify-content:center;
}

.project-container-individual{
  width:100%;
  height:100vh;
  margin:auto;
  display:flex;
  flex-wrap: wrap;
  padding:0;
}
.project-hero-left{
  width:50%;
  height:auto;
  margin-top:-44px;
  background: url('../images/projects/standard-knapp-hero.webp') no-repeat;
  background-size:cover;
  background-position:center;
}
.no-webp .project-hero-left{
  height:auto;
  background: url('../images/projects/standard-knapp-hero.jpg') no-repeat;
  z-index:0;
  background-size:cover;
  background-position:center;
}

.project-library-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/library/library-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .project-library-left{
  background: url('../images/projects/library/library-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-insurity-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/insurity/insurity-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .project-insurity-left{
  background: url('../images/projects/insurity/insurity-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-connex-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/connex/connex-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .project-connex-left{
  background: url('../images/projects/connex/connex-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-iso-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/iso/iso-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .project-iso-left{
  background: url('../images/projects/iso/iso-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-united-steel-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/united-steel/united-steel-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .project-united-steel-left{
  background: url('../images/projects/united-steel/united-steel-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-winsted-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/winsted-kitchen/winsted-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .winsted-left{
  background: url('../images/projects/winsted-kitchen/winsted-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-ben-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/ben-donna-kitchen/niantic-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .ben-left{
  background: url('../images/projects/winsted-kitchen/niantic-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-rhonda-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/rhonda-kitchen/rhonda-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .rhonda-left{
  background: url('../images/projects/rhonda-kitchen/rhonda-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-joe-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/joe-kitchen/joe-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .joe-left{
  background: url('../images/projects/joe-kitchen/joe-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-janice-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/janice-kitchen/janice-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .janice-left{
  background: url('../images/projects/janice-kitchen/janice-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-dino-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/dino-kitchen/dino-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .dino-left{
  background: url('../images/projects/dino-kitchen/dino-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.project-charles-left{
  width:50%;
  margin-top:-44px;
  background: url('../images/projects/charles-kitchen/charles-kitchen-hero.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .charles-left{
  background: url('../images/projects/charles-kitchen/charles-kitchen-hero.jpg') no-repeat;
  z-index:0;
  background-position:center;
  background-size:cover;
}

.about-savvy{
  width:50%;
  margin-top:126px;
  background: url('../images/savannah_dominguez.webp') no-repeat;
  background-position:center;
  background-size:cover;
}
.no-webp .about-savvy{
  background: url('../images/savannah_dominguez.jpg') no-repeat;
  z-index:0;
  
  background-position:center;
  background-size:cover;
}

.project-right{
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 1%;
  padding-bottom: 4%;
  width:42%;
}

.about-text{
  font-size:.8rem;
  line-height: 1.4rem;
}

.project-hr {
  margin-bottom:-36px;
  box-shadow: 0px 0px 0px #fff;
}

.project-h1 {
  box-shadow: 0px 0px 0px #fff;
}

.thumbnail-container{
  width:100%;
  margin:auto;
  display:flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding:0;
}

.thumbnail-tile {
  display:flex;
  width:23%;
  position:relative;
  margin-left:1%;
  margin-right:1%;
  margin-bottom:1%;
  
}

.logo {
  padding-left:120px;
  float:left;
}

/* Corporate Work */
.corporate-hr {
  margin-top:60px;
  border: solid #D3A625;
  width: 480px;
  margin-left:0;
  background-color: #D3A625;
  padding-top:4px;
  margin-bottom: -30px;
  box-shadow: 0px 0px 8px #808080;
}

.project-corporate{
  width:31%;
  background-color:#D3A625;
  margin: 1%;
}

.project-title{
  width:100%;
}

.project-container-interior{
  padding-top:4%;
  width:100%;
  margin:auto;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.project-thumb-text {
  position:absolute;
  z-index:5;
  padding-left:24px;
  text-transform:uppercase;
  font-family: 'Arial Black', "backup","backupb";
  color:#fff;
  text-shadow: 0px 0px 8px #808080;

}

/* About */
.download {
  text-transform:uppercase;
  font-family: 'Arial Black', "backup","backupb";
}
.download:hover {
  text-decoration:underline;
  color:#D3A625;
  text-decoration-thickness:4px;
}

.connect {
  margin-top:20px;
}

.social{
  background: url('../images/linkedin.svg') no-repeat;
  display:inline-block;
  width:30px;
  height:30px;
  margin-top:-4px;
}

.social-link {
  vertical-align:top;
  padding-left:20px;
  font-size:1rem;
  margin-top:20px;
  font-family: 'Arial Black', "backup","backupb";
}

.social-link:hover {
  text-decoration:underline;
  color:#D3A625;
  text-decoration-thickness:4px;
}
/* Responsive */

@media screen and (max-width: 1244px) {
  .nav-title {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .about-savvy{
    width:100%;
    height:667px;}

  .menu {
    display:block;
  }

  /* Main Page */
  h1 {
    font-size:1.8rem;
  }

  h2 {
    font-size:.6rem;
  }

  blockquote {
    font-size: 1.4rem;
    margin-right:0;
  }

  p {
    font-size:1rem;
  }

  .skill-text{
    display:none;
  }
  
  .discover {
    top:50%;
  }

  .project-container {
    width:75%;
  }

  .contact {
    font-size:1rem;
  }

  .header-logo {
    padding-top:8px;
    padding-bottom:20px;
    height:60px;
    width:auto;
  }
  
  .project-library-left{
    width:100%;
  }

  .project-right{
    padding-left: 10%;
    padding-right: 10%;
    width:80%;
  }

  .project-hero-left{
    margin-top:0px;
    width:100%;
    height:100vh;
  }

  .thumbnail-tile {
    width:46%;
  }
  .full-menu {
    width:75%;
    margin:auto;
  }

  .logo {
    padding-left:20px;
  }

  .nav-title {
    display:none;
  }

  .navigation {
    display:none;
  }

.mobile-hr {
  width:260px;
  margin-bottom:20px;
}

.title{
  margin-left:0;
}

.discover{
  width:300px;
}

label .menu {
  right:-80px;
}

.skills-container{
  padding-top:25%;
}

.project-container{
  padding-top:25%;
}

.mobile-container-fix{
  padding-top:25%;

}

.project-thumb-text {
  font-size:.6rem;
  line-height:.8rem;

}

.hide {
  display:block;
}