@font-face {
    font-family: Nexa_Bold;
    src: url(/Fonts/Nexa\ Bold.otf);
}

@font-face {
    font-family: Nexa_Light;
    src: url(/Fonts/Nexa\ Light.otf);
}

@font-face {
  font-family: Bebas_Bold;
  src: url(/Fonts/BebasNeue\ Regular.otf);
}

@font-face {
  font-family: Bebas_Light;
  src: url(/Fonts/BebasNeue\ Light.otf);
}


*, *::after, *::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
}

.mobile_cover{
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #dfb478;
  color: #333;
  font-size: 200%;
  display: none;
}

@media only screen and (min-width:0px) and (max-width:900px) {
  
  .mobile_cover{
    display: inline-block;
    z-index: 1000;
    position: fixed;
  }
  .mobile_cover_text{
    width: 70%;
    height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(24%, 30%);
  }
}

body {
    background-color: #262626;
    font-family: Nexa_Light;
    color: rgb(106, 106, 106);
    background: rgb(31, 31, 31);
    line-height: 1.6;
}

ul {
    list-style: none;
    margin: 10px 0px 10px 10px;
    font-size: 9pt;
    line-height: 1.4;
    color: #b2b2b2;
}

a {
    text-decoration: none;
    color: rgb(103, 103, 103);
}

h1 a {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }

h1, h2 {
    font-family: Nexa_Light;
    font-size: 16pt;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0 0 20px 0px;
    color: #fff;
}

h3 {
    color: #fff;
    font-family: Nexa_Bold;
    font-size: 60pt;
    letter-spacing: 1.5px;
    line-height: 0.8;
    margin: 20px 0;
}

p{
    margin: 10px 0;
    color: #b2b2b2;
    font-size: 9pt;
    line-height: 1.5;

}

/*---------------  Phone Media Queries  --------------*/

@media only screen and (min-width:120px) and (max-width: 640px) {
    h1,h2 {
        font-size: 18px;
        margin: 0 0 5px 0px;
    }
    h3 {
        font-size: 30pt;
        letter-spacing: 1.4px;
        line-height: .6;
        margin: 20px 0;
    }

    p{
        margin: 10px 0;
        color: #b2b2b2;
        font-size: 12px;
        line-height: 1.5;

    }

}

/*---------------  Tablet Media Queries  --------------*/

@media only screen and (min-width:641px) and (max-width: 1007px) {
    h1,h2 {
        font-size: 16px;
        margin: 0 0 10px 0px;
    }
    h3 {
        font-size: 35pt;
        letter-spacing: 1.4px;
        line-height: 0.1;
        margin: 20px 0;
    }
}

img {
    width: 100%;
}

/* ------------------------ Navbar ----------------------- */

  
  main {
    position: relative;
    z-index: 1;
    height: auto;
    overflow: hidden;
    box-shadow: 0 0 50px #000;
    transition: transform .5s;
  }
  
  .nav-open main {
    transform: scale(.8);
  }
  
  .intro {
    height: 100vh;
    width: 100%;
    display: table;
    background: #26292f url('../img/bg.jpg') no-repeat center center;
    background-size: cover;
  }
  
  .intro h1 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 45px;
    color: white;
  }
  
  .overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(33, 33, 33);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
  }
  
  .nav-open .overlay {
    opacity: .6;
    visibility: visible;
  }
  
  .nav-container {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    height: 100%;
    width: 90%;
    max-width: 360px;
    padding: 5em 3.5em;
    background: #434343;
    border: #dfb478 1px solid;
    border-bottom-left-radius: 20px;
    overflow: auto;
    transform: translateZ(0);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.07,.23,.34,1);
  }
  
  .nav-open .nav-container {
    transform: translateX(0);
  }
  
  .nav {
    list-style: none;
    padding: 0;
  }
  
  .nav a {
    display: block;
    text-align: center;
    padding: 1em 1.5em;
    margin-bottom: 2em;
    font-size: 1rem;
    font-family: Nexa_Light;
    text-decoration: none;
    text-transform: uppercase;
    color: #9f9f9f;
    transform: translateZ(0);
    border: #dfb47800 1px solid;
    border-radius: 10px;
    transition: 0.5s;

  }

  .nav a:hover {
    color: #dfb478;
    border: #dfb478 1px solid;
    /* -webkit-transform: scale(1);
    transform: scale(1);    */
    transition:  0.5s border;
    -moz-transition: 0.5s border; /*For Firefox < 16.0*/
    -webkit-transition: 0.5s border; /*For WebKit (Chrome, Safari)*/
  }
  
  .nav-open .nav a {
    animation: slide-in .4s .2s backwards;
  }
  
  .nav-open .nav li:nth-of-type(2) a {
    animation-delay: .3s;
  }
  
  .nav-open .nav li:nth-of-type(3) a {
    animation-delay: .4s;
  }
  
  .nav-open .nav li:nth-of-type(4) a {
    animation-delay: .5s;
  }
  
  .nav-open .nav li:nth-of-type(5) a {
    animation-delay: .6s;
  }

  .nav-open .nav li:nth-of-type(6) a {
    animation-delay: .7s;
  }
  
  @keyframes slide-in {
    0% {
      opacity: 0;
      transform: translateX(80px);
    }
  
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

.navbar {
    background-color: rgba(36, 36, 36, 0.817);
    width: 100%;
    color: #fff;
    height: 4rem;
    position: fixed;
    z-index: 4;
    justify-content: center;

}
.navbar ul {
    display: flex;
    margin-top: 20px;
}

.navbar a {
    color: #fff;
    padding: 10px;
    margin: 5px;
}

a.nav_hover:after {
    content: '';
    display: inline-block;
    height: 0;
    width: 90%;
    border-bottom: 1px solid  #dfb478;
    opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.nav_hover:hover:after {
    opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

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


/* -------------------------------------Home Page------------------------------------ */
section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Home_overlay {
  position: relative;
  width: 97vw;
  height: 94vh;
  border: 1px solid #dfb478;
  border-radius: 20px;
}

.Home_text1 {
  position: relative;
  font-size: 6em;
  font-family: Nexa_Light;
  left: 50%;
  top: 50%;
}

/* -------------------------------------Home Page End------------------------------------ */



/* -------------------------------------Start Work 1------------------------------------ */

/* -------------------Page Info------------------- */

.title{
    position: absolute;
    height: auto;
    margin-top: 16%;
    margin-left: 40px;
}

.W1_intro {
    width: 56%;
    margin-top: 40%;
}

.Intro_List {
    margin: 10px 0px 10px 10px;
    list-style-type: disc;
    font-size: 9pt;
    line-height: 1.4;
    color: #b2b2b2;
}

.W1_brief {
    width: 35%;
    margin-top: 40%;
    margin-left: 58%;
}

.W1_cup_container {
    position: relative;
    width: 25%;
    margin-top: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,15%);
}

.W1_solution {
    width: 35%;
    margin-top: 84%;
    margin-left: 3%;
    height: 8.18%;
}


/* ------------------ Personas Images ------------------------*/ 

.W1_personas {
    width: 56%;
    margin-top: 84%;
    margin-left: 40%;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    height: auto;
    margin: auto;
    overflow: hidden;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius:40px;
    user-select: none;
    z-index: 11;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 5px;
    border-radius: 40;
  }

  .prev {
    left: 5px;
    border-radius: 40;
  }
  
  /* On hover, add a grey background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(43, 43, 43, 0.803);
  }

  /* Number text (1/3 etc) */
  .numbertext {
    font-family: Nexa_Light;
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /* ---------------------- Personas Images / -------------------------*/ 

  .W1_journey {
      width: 92%;
      height: auto;
      margin-top: 127%;
      right: 2.8%;
  }


.W1_Img {
    border-radius: 10px;
}


.W1_final_design {
    margin-top: 189%;
    right: 2.8%;
    width: 92%;
}

.W1_UI {
  position: absolute;
  margin-top: 310%;
  margin-left: 3%;
  width: 92%;
}

.W1_final {
    margin-top: 376.4%;
    left: 4%;
    width: 92%;
    height: auto;
}

.W1_YT {
  width: 100%;
  height: 490px;
}

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

    .title{
        position: absolute;
        height: auto;
        margin-top: 18%;
        margin-left: 40px;
    }
    
    .W1_intro {
        width: 94%;
        margin-top: 54%;
    }
    
    .Intro_List {
        margin: 10px 0px 10px 10px;
        list-style-type: disc;
        font-size: 12px;
        line-height: 1.4;
        color: #b2b2b2;
    }
    
    .W1_brief {
        width: 45%;
        margin-top: 130%;
        margin-left: 51%;
    }
    
    .W1_cup_container {
        position: relative;
        width: 25%;
        margin-top: 15px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,15%);
    }
    
    .W1_solution {
        width: 45%;
        margin-top: 130%;
        margin-left: 3%;
        height: auto;
    }

    .W1_personas {
        width: 94%;
        margin-top: 198%;
        margin-left: 3%;
    }

    .W1_journey {
        width: 92%;
        height: auto;
        margin-top: 265%;
        right: 2.8%;
    }
  
  
    .W1_Img {
        border-radius: 10px;
    }
  
  
    .W1_final_design {
        margin-top: 328%;
        right: 2.8%;
        width: 92%;
    }

}

  /* -------------------------------------End Work 1------------------------------------ */

  /* -------------------------------------Start Work 2------------------------------------ */


.W2_explainer {
  height: 90%;
}

.W2_brief {
    width: 56%;
    margin-top: 40%;
}

.W2_deliverables {
    width: 32%;
    margin-top: 58%;
    margin-left: 62%;
}

.W2_H2 {
    font-family: Nexa_Light;
    font-size: 16pt;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 10px 0px 0px 0px;
    color: #fff;
}

.W2_LottieSkull {
    width: 60%;
    position: absolute;
    margin-top: 60%;
}

.W2_catagories {
    width: 93%;
    margin-top: 103%;
    margin-left: 3%;
    height: 13.5%;
}

.W2_catagories_P {
    width: 50%;
    position: absolute;
}

.W2_Diagram {
    width: 40%;
    margin-left: 53%;
    margin-top: 2%;
    position: absolute;
}

.W2_catagories_P2 {
    width: 30%;
    position: absolute;
    margin-top: 24%;
    margin-left: 57.5%;
    text-align: center;
}

.W2_journey {
    width: 93%;
    height: auto;
    margin-top: 168.5%;
    margin-left: 3%;
    position: absolute;
}

.W2_Img {
    border-radius: 20px;
}

.W2_numbertext {
    font-family: Nexa_Bold;
    color: #f2f2f2;
    font-size: 30px;
    padding: 8px 12px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%,0%);
  }

.W2_final_design {
    margin-top: 270%;
    margin-left: 2%;
    width: 92%;
    height: 15.5%;
}

.final_design_container {
  height: 100%;
}

.W2_final {
  height: 100%;
}



  /* -------------------------------------End Work 2------------------------------------ */

  /* -------------------------------------Start Work 3------------------------------------ */


.W3_brief {
    width: 45%;
    margin-top: 38.4%;
    margin-left: 3%;
}

.W3_briefP {
    margin: 0 0 0 10px;
}

.W3_problem {
    width: 45%;
    margin-top: 38.4%;
    margin-left: 50%;
}

.W3_deliverables {
    width: 45%;
    margin-top: 64%;
    margin-left: 3%;
}

.W3_H3 {
    font-family: Nexa_Light;
    font-size: 16pt;
    letter-spacing: 1.5px;
    line-height: 0.5;
    margin: 20px 0 0px 0;
    color: #fff;
}

.W3_catagories {
    width: 93%;
    margin-top: 135%;
    margin-left: 3%;
    height: 12.5%;
}

.W3_catagories_P {
    width: 50%;
    position: absolute;
}

.W3_Diagram {
    width: 40%;
    margin-left: 53%;
    margin-top: 2%;
    position: absolute;
}

.W3_catagories_P2 {
    width: 30%;
    position: absolute;
    margin-top: 24%;
    margin-left: 57.5%;
    text-align: center;
}

.W3_MotionGraphics {
    margin-top: 135%;
    margin-left: 3.1%;
    width: 90%;
    height: 49%;
    position: absolute;
}

.W3_MG {
    background-color: #b2b2b2;
    height: 24%;
    position: relative;
    margin-top: 20px;
}

.W3_final_design {
  position: absolute;
  margin-top: 383%;
  margin-left: 2%;
  width: 92%;
  height: 11.8%;
  border-radius: 25px;
  overflow: hidden;
}


  /* -------------------------------------End Work 3------------------------------------ */

  /* -------------------------------------Start Work 4------------------------------------ */


.explainer4 {
  top: 80px;
  width: 80%;
  height: 90% ;
  background-color: #333;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    /* padding: 35px; */
  /* padding-top: 70px; */
}

.container4 {
  max-width: 990px;
  height: 647px;
  margin: 0 auto;
  overflow: auto;
  /* padding: 0 40px; */
}

.W4_explainer {
  height: 90%;
  width: 94%;
}
  .W4_objectives {
    width: 58%;
    margin-top: 39%;
  }

  .W4_deliverables {
    width: 33%;
    margin-top: 39%;
    right: 5%;
  }

  .W4_StepFurther {
    width: 33%;
    margin-top: 85.2%;
    right: 5%;
  }

  .W4_GameTime {
      position: absolute;
      width: 90%;
      margin-top: 110%;
  }

  .W4_GT_P1 {
      position: absolute;
      width: 60%;
      left: 5%;
      margin-top: 12%;
  }

  .W4_GT_P2 {
    position: absolute;
    width: 30%;
    right: 0;
    margin-top: 12%;
  }

  .W4_building {
    width: 93%;
    height: 13%;
    margin-top: 168%;
    margin-left: 3%;
    position: absolute;
  }

  .W4_build_YT {
    width: 100%;
    height: 600px;
    z-index: 10;
    border-radius: 20px;
  }

  .W4_building_character {
    width: 93%;
    height: 15%;
    margin-top: 237%;
    margin-left: 3%;
    position: absolute;
  }

  .W4_CB {
    display: inline;
    border-radius: 20px;
  }

  .W4_CB_YT1 {
    width: 49%;
    height: 40%;
    margin-bottom: 0.5%;
    border-radius: 20px;
  }

  .W4_CB_YT2 {
    width: 49%;
    height: 40%;
    margin-bottom: 0.5%;
    margin-left: 1%;
    border-radius: 20px;
  }

  .W4_CB_YT3 {
    width: 49%;
    height: 40%;
    margin-bottom: 1%;
    border-radius: 20px;
  }


  .W4_characters {
    width: 93%;
    height: auto;
    margin-top: 308%;
    margin-left: 3%;
    position: absolute;
  }

  .W4_character1 {
    width: 100%;
    height: 100%;
    border-radius: 20px;

  }

  .W4_final_container {
    width: 92%;
    height: 11.4%;
    margin-top: 394%;
    margin-left: 2%;
  }

  .W4_final {
    width: 100%;
    height: 100%;
  }

 /* -------------------------------------End Work 4------------------------------------ */

/* -------------------------------------Start Work 5------------------------------------ */

.W5_brief {
    width: 52%;
    margin-top: 39%;
    height: 12%;
}

.W5_P1 {
    position: absolute;
    width: 42.7%;
    margin: 0;
}

.W5_P2 {
    position: absolute;
    width: 42%;
    right: 4%;
    margin: 0;
}

.W5_deliverables {
  width: 38%;
  margin-top: 39%;
  right: 5%;
  height: 12%;
}

.W5_poem {
    position: absolute;
    margin-top: 101%;
    text-align: center;
    left: 50%;
    transform: translate(-50%,0%);
    line-height: 1.6;
}

.W5_breakdown {
    margin-top: 155%;
    margin-left: 3%;
    width: 94%;
}

.W5_BD {
    height: 580px;
    /* background-color: #b2b2b2; */
}

.W5_BD_text {
  margin-bottom: 10px;
  border-bottom: 1px solid #dfb478;
  width: 50%;
  left: 50%;
  top: 0%;
  transform: translate(47%, 0%);
}

.W5_video {
    position: absolute;
}

.mask {
    position: relative;
    top: 0px;
    left: 0px;
    max-width: 1000px;
    width: 100%;
    height: 580px;
    overflow: auto;
    background-position: 30px 0px;
    background-repeat: repeat;
    text-align: left;
  }
  .mask .mask_overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background-position: 30px 0px;
    background-repeat: repeat;
  }
  .mask .mask_handle {
    position: relative;
    top: 2%;
    left: 0px;
    bottom: 0;
    height: 88%;
    border: none;
    background-color: transparent;
    width: 55px;
    text-align: center;
    background: linear-gradient(to right, transparent 0%, transparent calc(50% - 3px), rgb(255, 255, 255) calc(50% - 3px), rgb(255, 255, 255) calc(50% + 2px), transparent calc(50% + 2px), transparent 100%);
  }
  .mask .mask_handle span {
    background-color: #ffffff;
    color: #ffffff;
  }
  .mask .mask_handle span:before {
    margin: 0 0 0 0;
  }

.W5_final_container {
  margin-top: 308%;
  margin-left: 2%;
  width: 92%;
  height: 13.9%;
}

.W5_final {
  width: 100%;
  height: 100%;
}

 /* -------------------------------------End Work 5------------------------------------ */

/* -------------------------------------Start Work 6------------------------------------ */

.W6_brief {
  width: 34%;
  height: 4.5%;
  margin-top: 39%;
}

.W6_problem {
  width: 34%;
  height: 4.5%;
  margin-top: 39%;
  margin-left: 35.5%;
}

.W6_audience {
  width: 34%;
  height: 4.5%;
  margin-top: 58.5%;
}

.W6_solution {
  width: 34%;
  height: 4.5%;
  margin-top: 58.5%;
  margin-left: 35.5%;
}

.W6_p {
  margin: 0;
}

.W6_shots {
  width: 100%;
  height: auto;
  margin-top: 89%;
  position: absolute;
}

.W6_shot {
  width: 45%;
  height: auto;
  margin: 0;
  padding: 0;
}

.W6_shot:nth-of-type(2){
  margin-left: 0.5%;
}

.W6_shot:nth-of-type(4){
  margin-left: 0.5%;
}

.W6_final {
  width: 64%;
  height: 22.5%;
  margin-left: 16%;
  margin-top: 218.5%;
  position: absolute;
  border-radius: 20px;
}