/* === Navigation === */

ul {
    list-style-type: none;
    text-align: center;
    padding: 0;
    margin: 0;
  }

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

  .active img {
    max-height: 2.4em;
    width: auto;
    text-align: center;
    margin: 17px 0;
  }

  #top-nav {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 74px;
    background: #100E01;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.14),0px 0px 5px rgba(0, 0, 0, 0.14);
  }
  
  .nav-menu  {
    background: none;
    width: 60px;
    height: 80px;
    top: 0;
    right: 15px;
    -webkit-transition: width 0.2s ease, height 0.4s ease;
      -moz-transition: width 0.2s ease, height 0.4s ease;
      -o-transition: width 0.2s ease, height 0.4s ease;
      transition: width 0.2s ease, height 0.4s ease;
  }
  .open {
    position: fixed;
    background: #FFCC33;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  .menu-list {
    margin-top: 100px;
    text-align: center;
    font-size: 26px;
    padding: 0;
    opacity: 0;
  }
  .list-open {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
      -moz-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.64s ease;
    -webkit-transition-delay: 0.34s;
    -moz-transition-delay: 0.34s;
    -o-transition-delay: 0.34s;
    transition-delay: 0.34s;
  }


  
  .menu-list.list-open {
    opacity: 1;
    pointer-events: auto;
  }
  

  .menu-list li {
    /* padding: 12px; */
    background: none;
    color: #100E01;
    padding: 50px 50px;
  }

  .menu-list li a {
    color: #100E01;
    /* text-shadow: #F2EDE9 1px 1px; */
    list-style-type: none;
    text-decoration: none;
  }

  .menu-list li:hover {
    background-color: #CC0033;
    cursor: pointer;
  }

  .menu-item {
    padding: 0 10px;
    text-decoration: none;
    display: block;
  }
  
  /* Burger */
  #burger-wrap {
    position: fixed;
    top: 0;
    right: 15px;
    margin: 0;
    padding: 0;
    width: 64px;
    height: 85px;
  }
  .burger {
    position: fixed;
    top: 8px;
    right: 15px;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 64px;
    height: 85px;
    border-radius: 50%;
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: transparent;
  }
  .burger span {
    display: block;
    position: absolute;
    top: 28px;
    left: 16px;
    right: 16px;
    height: 3.8px;
    background: #ffcc33;
    border-radius: 15px;
    -webkit-transition: background 0.3s .3s;
    transition: background 0.3s .3s;
    -o-transition: background 0s 0s;
    -webkit-transition-delay: 0.4s,0s;
    transition-delay: 0.4s,0s;
  }
  .open .burger span {
    background: 0 0 transparent;
    transform: rotate(90deg);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -o-transition: all 0s ease;
      -webkit-transition-delay: 0s,0s;
      transition-delay: 0s,0s;
  }
  .burger span::after,
  .burger span::before {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3.8px;
    background-color: #ffcc33;
    content: "";
      border-radius: 5px;
    -webkit-transition-duration: .3s,.3s;
    transition-duration: .3s,.3s;
    -webkit-transition-delay: 0.4s,0s;
    transition-delay: 0.4s,0s;
  }
  .burger span::before {
    top: -8px;
    -webkit-transition-property: top,-webkit-transform;
    transition-property: top,transform;
  }
  .burger span::after {
    bottom: -8px;
    -webkit-transition-property: bottom,-webkit-transform;
    transition-property: bottom,transform;
  }
  
  .open .burger span::after,
  .open .burger span::before {
    -webkit-transition-delay: 0s,.4s;
    transition-delay: 0s,.4s;
    background-color: #CC0033;
  }
  .open .burger span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open .burger span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  
  /* Disable scrollbar on Chrome and Safari browsers! */
  html::-webkit-scrollbar { width: 0 !important; height: 0 !important; }
  
  /* Make sure the menu is deactivated while closing */
  .nav-menu.closed {
    display: none;
    pointer-events: none;
  }



  /* === Global === */
html {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    cursor: url('/images/cursor.png') 22.5 22.5, pointer;
    overflow-x: hidden;
}

body {
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF9F4;
}

.container {
    margin: 0 auto;
    /* padding: 0 2rem; */
    padding: 0;
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* gap: 20px; */
}

.second-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 36px;
}

.end {
    justify-items: end;
}

.start {
    justify-items: start;
}

.flex {
    display: flex;
}

.mx-auto {
    margin: 0 auto;
}
/* === Upper Fold === */

.col-12 {
    grid-column: span 12;
}
.upper-fold {
    background-color: #100E0E;
    width: 100vw;
    padding-bottom: 60px;
    /* height: calc(100vh - 76.39px); */
    /* display: grid; */
    justify-content: center;
}

.lower-fold {
    /* background-color: #100E0E; */
    width: 100vw;
    height: auto;
    /* height: calc(100vh - 76.39px); */
    /* display: grid; */
    justify-content: center;
}

.third-fold {
    width: 100vw;
    height: auto;
    justify-content: center;
}


.second-fold {
    width: 100vw;
    height: 100vh;
    /* display: grid; */
    /* justify-content: center; */
}

.quote span {
    color: #CC0033;
}

      
  
/* === Project spec === */
.project-spec {
    display: flex;
    justify-content: space-between;
}

.project-spec p {
    font-weight: 300;
    margin-top:-12px ;
}

.overview {
    font-weight: 300;
}

/* === Home Page Container === */

.work-title {
    display: grid;
    text-align: center;
    height: 120px;
    padding: 50px;
}

.work-title img {
    width: 45px;
    height: 45px;
    padding-top: 12px;
}

h2 {
    font-family: 'Oooh Baby', sans-serif;
    color: #FFCC33;
    font-size: 4.5em;
    display: flex;
    text-align: center;
    grid-column: 5/9;
    margin: 15px;
}

.conclusion h3 {
    font-family: 'Oooh Baby', sans-serif;
    color: #100E0E;
    /* font-size: 4.5em; */
    display: flex;
    text-align: center;
    grid-column: 5/9;
    margin-top: 15px;
    border-bottom: 10px solid #100E0E;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: fit-content;
    transform: skewY(-4deg);
    font-size: 3.5rem;
}

.challenge {
    margin: 30px;
}

.conclusion {
    margin: 30px;
}

.challenge h3 {
    font-family: 'Oooh Baby', sans-serif;
    color: #100E0E;
    /* font-size: 4.5em; */
    display: flex;
    text-align: center;
    grid-column: 5/9;
    margin-top: 15px;
    border-bottom: 10px solid #100E0E;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: fit-content;
    transform: skewY(4deg);
    font-size: 3.5rem;
}



.key {
    transform: skewY(-4deg);
    margin-bottom: -17px;
}

.key2 {
    transform: skewY(4deg);
    margin-bottom: -17px;
}

.feature-list-item h3 {
    border-bottom: 10px solid #FFCC33;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFF9F4;
    width: 65%;
}

/* === second fold === */
.second-fold {
    width: 100%;
}

/* === third fold === */
.third-fold {
    width: 100%;
}

/* === container-1-2 === */

.container-1-2{
    display: grid;
    /* width: 100%; */
    grid-column: span 12;
    /* margin-bottom: 5%; */
}

/* === Profile pic === */
.profilepic2 {
    width: 11rem; 
    padding-left: 80%;  
}


.container-1-2 h3{
    font-size: 4rem;
    color: #FFCC33;
}


.container-1-2 img {
    width: 22rem;
    bottom: 10rem;
    grid-column: 1/3;
    overflow: hidden;
    /* position: relative; */
    padding-bottom: 30px
}


#text-container {
    grid-column: 3 / 12;
    /* position: relative; */
    /* margin-left: -5rem; */
  }

.container-1-2 .text2 p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #F2EDE9;
}

.container-1-2 .text2 {
    grid-column: 9 / 11;
    margin: 3%;
    line-height: 2.2rem;
}




/* === Bullet Points === */
.bullet-points {
    text-align: left;
}

.bullet-points li {
    list-style-type: disc;
}
/* === Section Nav === */
#pillar-nav {
    position: sticky;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcc3396; 
    color: #100E0E;
    font-weight: 400;
    font-size: 20px;
    z-index: 100; 
    display: flex;
    height: 30px;
    width: fit-content;
    border-radius: 25px;
    text-align: center;
    opacity: 1;
    justify-content:center;
    padding: 12px;
    margin-top: 30px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  }

  #pillar-nav:hover {
    background-color: #ffcc33;
  }

  .second-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .second-nav li {
    margin-right: 30px;
  }

  .second-nav a {
    text-decoration: none;
    color: #100E0E;
  }

  .second-nav a:visited {
    color: #100E0E;
  }
  
  .second-nav li:last-child {
    margin-right: 0;
  }
  

  .second-nav a.active {
    font-weight: 600;
    color: #100E0E;
  }

/* === Value Item === */

.value-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.value-item span {
    color: #CC0033;
    font-size: 16px;
    padding: 10px;
    border-bottom: #FFCC33 1.6px solid;  
    width: 75%; 
    font-style: italic;
}

.value-item span:hover {
    color: #CC0033
}

.value-item img {
    width: 70%;
    padding-left: 30%;
    padding-top: 5%;
}

.outcome h3 {
    border-bottom: #FFCC33 4px solid;  
    width: fit-content;
}

/*=== iframe ===*/
.iframe-container {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

/* === Highlight for Branding === */
.bold {
    font-weight: 400 !important;
    color: #000000;
}

.highlight-bold {
    font-weight: 500;
}

/* === fontawesome === */
.fa-search {
    font-size: 24px;
}

/* === feature-list === */
.feature-list {
    grid-column: span 12;
    background-color: #100E0E;
    color: #FFF9F4;
    padding: 0 50px;
}

.work-list {
    grid-column: span 12;
    color: #100E0E;
    padding: 0 50px;
    text-align: center;
}

.second {
    grid-column: span 12;
    background-color: #FFCC33;
    color: #100E0E;
    padding: 0 50px;
}


.feature-list-title {
    grid-column: span 12;
}

.feature-list-title h4 {
    border-bottom: 10px solid #F2EDE9;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.feature-list-title img {
    width: 50px;
    margin-bottom: -17px;
}

.feature-list-item {
    grid-column: span 12;
}

.feature-list-item img {
    width: 100%;
}

.prototype img {
    width: 50%;
}

.feature-img-container {
    grid-column: span 12;
    /* background-color: #FFCC33; */
    padding: 0;
    margin: 0;
    padding: 0 50px;
}

.value-item {
    text-align: start;
    padding-top: 60px;
}

.value-item p {
    font-size: 16px;
    font-weight: 300;
}

.value-container {
        grid-column: span 12;
        background-color: #FFCC33;
        padding: 0;
        margin: 0;
        padding: 0 50px;
    }

.third {
    grid-column: span 12;
    background-color: #100E0E;
    padding: 0;
    margin: 0;
    padding: 0 50px;
}


.feature-img {
    position: relative;
    margin-top: 2.5em;
    background-size: cover;
    /* overflow: hidden; */
    grid-column: 1 / 12;
}

.feature-img img {
    display: grid;
    max-width: 75%;
    height: auto;
    object-fit: cover; 
    box-shadow: 6px 8px #FFCC33;
    margin: auto;
}

/* Demo */
.demo {
    font-size: 1.2rem;
    font-weight: 400;
    color: #F2EDE9;
    background-color: #CC0033;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    box-shadow: #100e0e7c 4px 6px;
    text-shadow: #100E0E 1px 2px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: grid;
    text-decoration: none;
    transform: translate(-50%, -50%);
}

.demo:hover {
    color: #FFCC33;
}

.demo-container {
    text-align: center;
    padding-left: 47%;
    padding-top: 30%;
}



.say-item h5 {
    color: #FFCC33;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    padding-top: 6px;
    padding-bottom: 12px;
    text-align: center;
}


/* Education area */
.education-type {
    font-size: 16px;
    font-weight: 300;
}

.major {
    font-size: 18px;
    font-style: italic;
    color: #FFCC33;
}


/* === Feature Project List === */

h4 {
    font-size: 1.2em;
    color: #FFF9F4;
    margin-bottom: 14px;
    font-weight: 400;
}

h6 {
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid #FFCC33;
}

.working {
    color: #100E0E;
}

.value-item h5 {
    font-size: 20px;
    margin-bottom: 16px;
}


.value-item li {
    font-size: 16px;
    font-weight: 300;
}

.feature-work-col {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.work {
    border-bottom: none;
}


.feature-work {
    /* display: grid; */
    font-size: 1.2em;
    font-weight: 500;
}

.feature-work.ogilvy img {
    width: 10.5rem;
}

.feature-work.edelman img {
    width: 13.5rem;
}

.feature-work.backerfounder img {
    width: 13.5rem;
}

.feature-type {
    /* display: grid; */
    font-family: 'Oooh Baby', sans-serif;
    font-size: 1.1em;
    color:#FFF9F4;
    margin-bottom: 8%;
    line-height: 30px;
}

.type {
    margin-top: 8.1em;
    text-align: end;
}

.feature-type.work-year {
    color: #100E0E;
    font-size: 1.1rem;
}

.support-img {
    margin-top: 80px;
    max-width: 75%;
}

.support-img img {
    border-radius: 15px;
    box-shadow: 2px 4px rgba(0, 0, 0, 0.25);
}


.user-flow {
    height: 370px;
    width: auto;
    overflow-y: scroll;
    margin-top: 80px;
}

.pic-note {
    font-size: 14px;
    font-weight: 300;
    color: #100E0E;
}


/* === Back to top indicator === */
#back-indicator {
    /* display: flex; */
    position: absolute;
    left: 47%;
    justify-content: center;
    align-items: flex-end;
    /* padding-bottom: 20px;  */
    opacity: 1;
    transition: opacity 0.3s ease-out;
    padding: 1.2rem;
    cursor: pointer;
  }
  
  .back-arrow {
    width: 17px;
    height: 17px;
    border-top: 3px solid #FFCC33;
    border-right: 3px solid #FFCC33;
    border-radius: 2px;
    transform: rotate(-45deg);
    animation: backarrowAnimation 1.4s infinite;
  }

  @keyframes backarrowAnimation {
    0% {
      opacity: 1;
      transform: rotate(-45deg), translateY(0);
    }
    50% {
      opacity: 0;
      transform: rotate(-45deg), translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: rotate(-45deg), translateY(0);
    }
  }

/* === Media Query === */
@media screen and (min-width: 360px) and (max-width: 767px) {
    .sub-logo {
        grid-column: span 12;
    }
    .sub-logo img {
        max-width: 7rem;
    }
    
    .container-1-2 {
        grid-column: span 12;
        margin-bottom: 0;
    }

    #text-container {
        grid-column: 1 / 12;
    }

    #text-container .text1 {
        font-size: 2.8rem;
        margin-left: 13%;
    }

    .container-1-2 .text2 p {
        font-size: 0.7rem;
        margin-right: 6%;
        margin-bottom: 5%;
        line-height: 1.1rem;
        text-align: end;
    }

    .container-1-2 img {
        width: 12rem;
        bottom: 18px;
    }


    .third-fold .quote p {
        font-size: 1.5rem;
    }

    .third-fold .add-on span {
        font-size: 1rem;
        grid-column: 5/12;
    }

    .footer span, .footer a {
        font-size: 0.85rem;
    }

    .feature-work {
        font-size: 0.95rem;
        line-height: 24px;
    }

    .major {
        font-size: 1rem;
    }

    .feature-type {
        font-size: 0.8rem;
        line-height: 24px;
    }
    

    .profilepic2 {
        width: 8rem; 
        padding-left: 73%;  
    }

    .feature-work.ogilvy img {
        width: 9rem;
    }
    
    .feature-work.edelman img {
        width: 10em;
    }
    
    .feature-work.backerfounder img {
        width: 10rem;
    }

    .value-item p {
        font-size: 1em;
    }

    .feature-type.work-year {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 3rem;
        padding-top: 60px;
        z-index: 100;
    }

    .work-title {
        padding: 0;
        margin-bottom: 5px;
    }

    h3 {
        font-size: 1.45rem;
    }

    h4 {
        line-height: 25px;
        font-size: 1.1rem;
    }

    .feature-list-item img {
        width: 100%;
    }

    .work-title h3 {
        font-size: 3rem;
    }

    .overview {
        font-size: 16px;
    }

    .prototype img {
        width: 80%;
    }

    .value-item img {
        width: 100%;
        padding-left: 0;
    }

    .value-item li {
        font-size: 0.95em;
        font-weight: 300;
    }
    
    .next-one,.back {
        font-size: 25px !important;
        margin-top: 18px !important;
    }

    .support-img,.user-flow {
        margin-top: 20px;
    }

    #pillar-nav {
        font-size: 14px;
        padding: 10px;
        height: 20px;
        transform: translateX(-44%);
    }

    /* .f-3 {
        margin-top: -1.3rem !important;
      }
  
    .f-4 {
        padding-bottom: 5rem;
      } */

    .menu-item {
        display: initial !important;
      }
    
    .start {
        justify-items: center;
    }

    .end {
        justify-items: center;
    }

    .support-img {
        max-width: 100%;
    }

    #back-indicator {
        left: 43.5%;
    }

    .f-1 {
        margin-left: 1.6rem !important;
    
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .sub-logo {
        grid-column: 1 / 12;
    }
    .sub-logo img {
        max-width: 8rem;
    }
    
    .container-1-2 {
        grid-column: span 12;
    }


    .container-1-2 .text2 p {
        font-size: 1rem;
        grid-column: 8 / 11;
        margin: 2%;
        margin-top: -1rem;
    }

    .container-1-2 img {
        width: 14rem;
        bottom: 15px;
    }

    .third-fold .quote p {
        font-size: 1.8rem;
    }

    .add-on {
        grid-column: span 12;
    }

    .third-fold .add-on span {
        font-size: 1.1rem;
    }

    .footer span, .footer a {
        font-size: 1rem;
    }


    .feature-work {
        font-size: 1.2rem;
        line-height: 26px;
    }

    .profilepic2 {
        width: 9rem; 
        padding-left: 77.5%; 
        overflow: hidden; 
    }

    .feature-list-item img {
        width: 100%;
    }

    .value-item {
        width: 75%;
        margin-left: 12.5%;
    }

    .feature-list-item {
        width: 75%;
        margin-left: 12.5%;
    }


    .prototype img {
        width: 65%;
    }

    #pillar-nav {
        font-size: 14px;
        padding: 10px;
        height: 20px;
        transform: translateX(-50%);
    }

    .start {
        justify-content: start;
    }

    .end {
        justify-items: start;
    }

    .value-item img {
        width: 100%;
        padding-left: 0;
    }

}

@media screen and (min-width: 1024px) {
    
    .upper-fold .footer {
        grid-column: span 12;
    }

    .feature-list {
        grid-column: span 6;
    }

    .work-list {
        grid-column: span 6;
    }
    

    .feature-img-container {
        grid-column: span 6;
    }


}

/* === Third Fold === */

.third-fold {
    display: grid;
    width: 100%;
}

.add-on {
    display: grid;
    margin-bottom: 3rem;
    grid-column: 2/11;
}

.add-on span {
    grid-column: 5/9;
    font-size: 1.3rem;
}


/* === Next Project === */

.bottom-nav {
    justify-content: space-between;
    display: flex;
}

.next-project,.back-work {
    background-color: #FFCC33;
    font-weight: 400;
    width: 50vw;
    height: 70px;
    display: grid;
    opacity: 0.8;
}

.next-one,.back {
    color: #100E0E;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    margin-top: 6px;
}

.next-one:hover,.back:hover {
    color: #CC0033;
}


/* === Footer === */
footer {
    text-decoration: none;
    list-style-type: none;
    background-color: #100E0E;
    color: #FFF9F4;
    font-style: italic;
    font-size: 1.1em;
    font-weight: 300;
    min-width: 100vw;
    height: 22rem;
    overflow: hidden;
}

.footer a {
    text-decoration: none;
    color: #F2EDE9;
}

.footer a:visited {
    color: #F2EDE9;
}

.footer .email {
    color: #FFCC33;
}

.footer .email:visited {
    color: #FFCC33;
}

.f-1 {
    grid-column: 1 / 4;
    margin-top: 1em;
    margin-left: 3.1rem;
}

.f-2 {
    grid-column: 6 / 9;
    margin-top: 1rem;
    margin-left: 2rem;
}

.f-3 {
    grid-column: 7 / 7;
    margin-top: 1.2rem;
    margin-left: 2rem;
}

.f-4 {
    grid-column: 7 / 12;
    margin-top: 0;
    margin-bottom: 8rem;
    margin-left: 2rem;
    padding-bottom:2rem;
}


.fa-linkedin {
    color: #FFF9F4;
    font-size: 2.8rem;
}

.fa-linkedin {
    color: #FFF9F4;
    font-size: 2.8rem;
}

/* === Page Resize === */
:root {
    --doc-height: 100%;
   }
   
   html,
   body {
    padding: 0;
    margin: 0;
    height: 100vh; 
    height: var(--doc-height);
   }


.fa-linkedin {
    color: #FFF9F4;
    font-size: 2.8rem;
}

/* === Page Resize === */
:root {
    --doc-height: 100%;
   }
   
   html,
   body {
    padding: 0;
    margin: 0;
    height: 100vh; 
    height: var(--doc-height);
   }