/* GLOBAL RESETS */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*

TABLE OF CONTENTS

#GLOBAL RESET
#BASE TYPOGRAPHY
#BUTTONS
#MEDIA
    #RESPONSIVE IMAGEs
#LAYOUT
    #CONTAINER
    #MEDIA QUERIES
    #SEMANTIC GRID SYSTEM
#STRUCTURE
    #SITE-HEADER
    #SITE-NAV
    #MAIN
        #SECTIONS
    #SITE FOOTER

*/
/* BASE TEXT COLORS */
body {
  color: rgb(86, 86, 78);
}

h1, h2, h3, h4, h5, h6 {
  color: rgb(86, 86, 78);
}

/* BASE TEXT FONTS */
body {
  font-family: "cambay", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

/* BASE TYPOGRAPHY */
body {
  font-size: 100%;
  line-height: 1.4;
}

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

/* TRADITIONAL TYPOGRAPHIC SCALE */
h1 {
  font-size: 3em;
  line-height: 1;
}

h2 {
  font-size: 2.25em;
  line-height: 1.1;
}

h3 {
  font-size: 1.5em;
  line-height: 1.2;
}

/* LIMIT NUMBER OF CHARACTERS PER LINE */
p {
  max-width: 40em;
}

/* LINKS */
a {
  color: rgb(228, 163, 78);
}
a:hover {
  color: rgb(86, 86, 78);
}

/* HORIZONTAL LINE */
hr {
  border: 0;
  height: 3px;
  background-color: rgb(203, 86, 44);
  margin: 3em 0;
  width: 100%;
}

.home-hr {
  width: 50%;
  margin-bottom: 2em;
}

/* SECTION HEADING */
.section-heading {
  font-size: 1em;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 3em 0;
}

/* TEXT COLOR */
.white-text {
  color: rgb(224, 216, 199);
}

.hide-visually {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/* BUTTONS */
.button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid rgb(228, 163, 78);
  background-color: rgb(228, 163, 78);
  color: rgb(86, 86, 78);
  font-family: pentz-regular, serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1em;
  border-radius: 5px;
  margin: 1em 0.5em 1em 0;
}
.button:hover {
  border: 2px solid rgb(203, 86, 44);
  color: rgb(224, 216, 199);
  background-color: rgb(203, 86, 44);
}

/* SERVICE */
.service-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  list-style: none;
  font-family: "cambay", sans-serif;
}
.service-btn li {
  border: 1px solid rgb(228, 163, 78);
  background-color: rgb(228, 163, 78);
  color: rgb(86, 86, 78);
  border-radius: 5em;
  margin: 0.2em;
  padding: 0.2em 1em 0 1em;
  font-size: 0.8em;
  width: auto;
}

.service-btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  list-style: none;
  font-family: "cambay", sans-serif;
}
.service-btn2 li {
  border: 1px solid rgb(228, 163, 78);
  background-color: rgb(228, 163, 78);
  color: rgb(86, 86, 78);
  border-radius: 5em;
  margin: 0.2em;
  padding: 0.2em 1em 0 1em;
  font-size: 0.8em;
  width: auto;
}

.service-btn2-long {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 1.3em;
  padding: 0;
  list-style: none;
  font-family: "cambay", sans-serif;
}
.service-btn2-long li {
  border: 1px solid rgb(228, 163, 78);
  background-color: rgb(228, 163, 78);
  color: rgb(86, 86, 78);
  border-radius: 5em;
  margin: 0.2em;
  padding: 0.2em 1em 0 1em;
  font-size: 0.8em;
  width: auto;
}

/* RESPONSIVE IMAGES */
img {
  max-width: 100%;
  height: auto;
}

.scaled_logo video {
  width: 100%;
  height: 100%;
}

/* RESET BODY */
body {
  margin: 0;
  background-color: rgb(224, 216, 199);
}

/* CONTAINER */
.home-container {
  margin: 0 auto;
  width: auto;
}

.container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 1em;
}

.proj-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  min-width: auto;
  max-width: 500px;
  padding: 0 1em;
}

.footer-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1em;
}

.projcontainer {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1em;
}

.project-container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 1em;
}

/* MEDIA QUEIRES */
/* RESPONSIVE TYPOGRAPHY */
body {
  font-size: 87.5%;
}

@media (min-width: 768px) {
  body {
    font-size: 100%;
  }
}
@media (min-width: 1250px) {
  body {
    font-size: 112.5%;
  }
}
/* MEDIA QUERIES FOR LARGE SCREENS*/
@media (min-width: 768px) {
  .avatar {
    left: 5% !important;
  }

  .home-hr {
    width: 100% !important;
  }

  /* CAROUSEL */
  .carousel > input[type=radio]:nth-child(9):checked ~ .carousel__next > label:nth-child(1), .carousel > input[type=radio]:nth-child(9):checked ~ .carousel__prev > label:nth-child(8), .carousel > input[type=radio]:nth-child(8):checked ~ .carousel__next > label:nth-child(9), .carousel > input[type=radio]:nth-child(8):checked ~ .carousel__prev > label:nth-child(7), .carousel > input[type=radio]:nth-child(7):checked ~ .carousel__next > label:nth-child(8), .carousel > input[type=radio]:nth-child(7):checked ~ .carousel__prev > label:nth-child(6), .carousel > input[type=radio]:nth-child(6):checked ~ .carousel__next > label:nth-child(7), .carousel > input[type=radio]:nth-child(6):checked ~ .carousel__prev > label:nth-child(5), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__next > label:nth-child(6), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__prev > label:nth-child(4), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__next > label:nth-child(5), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__prev > label:nth-child(3), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__next > label:nth-child(4), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__prev > label:nth-child(2), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__next > label:nth-child(3), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__prev > label:nth-child(1), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__next > label:nth-child(2), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__prev > label:nth-child(9) {
    opacity: 1 !important;
    z-index: 3;
  }

  .logo_process {
    max-width: 100% !important;
  }

  *,
*:before,
*:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .carousel {
    height: 500px !important;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .carousel__prev > label, .carousel__next > label {
    top: 40% !important;
  }
  .carousel__prev > label:hover, .carousel__prev > label:focus, .carousel__next > label:hover, .carousel__next > label:focus {
    opacity: 0.5 !important;
  }
  .carousel__nav {
    bottom: 20% !important;
  }

  /* HEADER */
  .site-header .logo,
.site-header-hero .logo {
    margin-top: 0;
  }

  /* HORIZONTAL LINE */
  hr {
    width: 500px !important;
  }

  /* HERO */
  .hero-home .connect-button {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .hero-home .scroll-down {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-home .scroll-down .scroll-arrow {
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-right: 2px solid rgb(203, 86, 44);
    border-bottom: 2px solid rgb(203, 86, 44);
    -webkit-animation: arrow-wave 1s infinite;
            animation: arrow-wave 1s infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
  .hero-home .scroll-down .scroll-arrow:nth-child(1) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .hero-home .scroll-down .scroll-arrow:nth-child(2) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .hero-home .scroll-down .scroll-arrow:nth-child(3) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  @-webkit-keyframes arrow-wave {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes arrow-wave {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }

  /* SITE MAIN */
  .site-main .home-projsection {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 150px;
  }

  .introduction h1 {
    font-size: 2.5em !important;
  }

  .staggered {
    padding-top: 15em !important;
  }

  .black-bg .section_border {
    top: -133px !important;
  }

  /* SITE MAIN SECTION */
  section-p {
    padding: 0 !important;
  }

  /* OTHER PROJECTS */
  .other-projsection {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin: 0 100px !important;
  }
  .other-projsection .other {
    max-width: 400px !important;
  }

  /* SUBPAGE */
  .challenge-solution {
    max-width: 1000px !important;
    border: none !important;
    padding-top: 0 !important;
  }
  .challenge-solution .row .one-half .cs {
    margin: 0 1em !important;
    height: 20vh !important;
    max-width: 500px !important;
  }
  .challenge-solution .row .one-half .cs_solution {
    margin-left: 2em !important;
  }

  .vl {
    height: 200px !important;
    opacity: 1 !important;
  }

  .ba {
    width: 60% !important;
  }

  .ba_img {
    position: static !important;
    width: 100% !important;
  }
  .ba_img img {
    margin: 0 0.5em !important;
  }

  /* SUMMARY */
  .sum_bg .sum {
    display: inline-block !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    height: 40vh;
  }
  .sum_bg .sum .sum_current,
.sum_bg .sum .sum_history {
    margin: 1em 0;
  }
  .sum_bg .sum h1 {
    color: rgb(228, 163, 78);
  }
  .sum_bg .sum .sum_title h4 {
    color: rgb(228, 163, 78);
  }
  .sum_bg .sum .sum_background_info {
    margin: 0;
    color: rgb(224, 216, 199);
  }

  /* PODCASTS */
  .podcast {
    margin: 2em 4em 0 4em !important;
    padding: 0 !important;
  }
  .podcast .pod-refer {
    margin: 0 0.5em !important;
    -webkit-box-align: top !important;
        -ms-flex-align: top !important;
            align-items: top !important;
    height: 400px !important;
  }
  .podcast .pod-refer .episode_info h5 {
    color: rgb(228, 163, 78);
    margin-top: 1em;
    text-align: left;
  }
  .podcast .pod-refer .episode_info .episode-desc {
    color: rgb(224, 216, 199);
    margin: 0.5em 0;
    text-align: left;
  }

  /* PROCESS SECTION */
  .process .discovery_phase {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    max-width: 1200px !important;
  }
  .process .discovery_phase .discovery_info {
    max-width: 500px !important;
    margin: 1em !important;
  }
  .process .discovery_phase .discovery_info_long {
    max-width: 600px !important;
    margin: 1em !important;
  }
  .process .discovery_phase .discovery_img {
    max-width: 500px !important;
    margin: 1em !important;
  }
  .process .discovery_phase .discovery_img_02 {
    position: relative !important;
    max-width: 600px !important;
    right: 80px !important;
    top: -80px !important;
    margin: 1em !important;
    z-index: 1 !important;
  }
  .process .discovery_phase .discovery_img_02_1 {
    position: relative !important;
    max-width: 600px !important;
    right: 80px !important;
    top: 80px !important;
    margin: 1em !important;
  }
  .process .discovery_phase .discovery_video {
    position: relative !important;
    max-width: 100% !important;
    right: 25px !important;
  }
  .process .discovery_phase .title {
    width: 400px !important;
    top: 10% !important;
    left: 0 !important;
    background-color: rgb(203, 86, 44);
    padding: 4em;
    border-radius: 2%;
  }
  .process .discovery_phase .title h4 {
    color: rgb(228, 163, 78);
  }
  .process .discovery_phase .title p {
    color: rgb(224, 216, 199);
  }
  .process .ideation_phase {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 4em 0;
  }
  .process .ideation_phase .ideation_info {
    max-width: 600px;
  }
  .process .ideation_phase .ideation_info .title {
    background-color: rgb(203, 86, 44);
    padding: 4em;
    border-radius: 10px;
    position: relative;
    top: 100%;
  }
  .process .ideation_phase .ideation_info .title .lp_lg_title h2 {
    color: rgb(228, 163, 78);
  }
  .process .ideation_phase .ideation_info .title h4 {
    color: rgb(228, 163, 78);
  }
  .process .ideation_phase .ideation_info .title p {
    color: rgb(224, 216, 199);
  }
  .process .ideation_phase .ideation_img {
    max-width: 550px;
    /* Slideshow container */
    /* Next & previous buttons */
    /* Position the "next button" to the right */
    /* On hover, add a black background color with a little bit see-through */
    /* Number text (1/3 etc) */
    /* The dots/bullets/indicators */
    /* Fading animation */
  }
  .process .ideation_phase .ideation_img img {
    vertical-align: middle;
  }
  .process .ideation_phase .ideation_img .slideshow-container {
    width: 550px;
    position: relative;
    margin: auto;
  }
  .process .ideation_phase .ideation_img .prev,
.process .ideation_phase .ideation_img .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgb(203, 86, 44);
    font-weight: bold;
    font-size: 18px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .process .ideation_phase .ideation_img .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .process .ideation_phase .ideation_img .prev:hover, .process .ideation_phase .ideation_img .next:hover {
    background-color: rgb(203, 86, 44);
  }
  .process .ideation_phase .ideation_img .numbertext {
    color: rgb(86, 86, 78);
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  .process .ideation_phase .ideation_img .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(203, 86, 44);
    border-radius: 50%;
    display: inline-block;
    -webkit-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
  }
  .process .ideation_phase .ideation_img .active, .process .ideation_phase .ideation_img .dot:hover {
    background-color: rgb(228, 163, 78);
  }
  .process .ideation_phase .ideation_img .fade {
    -webkit-animation-name: fade;
            animation-name: fade;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  .process .ideation_phase .ideation_img img {
    max-width: 1000px;
  }

  .ws_info_video .ws_video iframe {
    width: 750px !important;
    height: 450px !important;
  }

  .lp {
    left: -5% !important;
    width: 80% !important;
  }
  .lp .lp_lg_title h2 {
    color: rgb(228, 163, 78);
  }
  .lp .lp_title h4 {
    color: rgb(228, 163, 78);
  }
  .lp .lp_info {
    color: rgb(224, 216, 199);
  }

  .resolution .row {
    padding-top: 2em !important;
  }
  .resolution .resolution_info .intern_box {
    color: rgb(203, 86, 44) !important;
  }
  .resolution .resolution_img {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .resolution .resolution_img img {
    width: 100% !important;
  }

  .aa_pattern_bg .mobile_app {
    width: 80% !important;
  }
  .aa_pattern_bg .mobile_app .ma_lg_title h2 {
    color: rgb(228, 163, 78);
  }
  .aa_pattern_bg .mobile_app .ma_title h4 {
    color: rgb(228, 163, 78);
  }
  .aa_pattern_bg .mobile_app .ma_info p {
    color: rgb(224, 216, 199);
  }
  .aa_pattern_bg .mobile_app img {
    border-radius: 10px;
  }
  .aa_pattern_bg .ma_process {
    width: auto !important;
  }
  .aa_pattern_bg .ma_final img {
    border-radius: 10px;
  }

  /* OTHER PROJECTS */
  .mw .mw_title {
    margin-top: 4em !important;
  }
  .mw .mw_links {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .mw .mw_links .other {
    max-width: 500px;
    margin: 0 4em;
  }
  .mw .mw_links .other h3 {
    font-size: 1.1em;
  }
  .mw .mw_links .other .home-hr {
    margin: 1em 0 1.5em 0;
    background-color: rgb(228, 163, 78);
  }

  /* ABOUT ME PAGE */
  .project-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .project-container .about {
    max-width: 1000px !important;
  }
  .project-container .about_profile {
    position: relative !important;
    left: -50px !important;
    width: 350px !important;
  }
  .project-container .about_profile img {
    width: 500px !important;
  }
  .project-container .about_info {
    display: inline-block !important;
    width: 350px !important;
    position: relative !important;
    right: -58px !important;
  }
  .project-container .about_info .bio {
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .project-container .about_info .bio .sub-title {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .about_info .bio .changing-text {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .about_info .bio .changing-text .roles p {
    font-size: 2.5em !important;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .about_info .bio .bio-p {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    font-size: 2.5em !important;
  }
  .project-container .about_info .bio .bio-p-location {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .about_info .bio .social-links {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .about_info .bio .social-links a {
    padding: 0 !important;
  }
  .project-container .about_info .contactme {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    padding: 0 !important;
  }
  .project-container .about_info .contactme .connect-button .button {
    margin: 0 !important;
  }

  .project-container .bio {
    padding-left: 3em !important;
    margin-bottom: 3em !important;
  }
  .project-container .bio .sub-title {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .bio .changing-text {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .bio .changing-text .roles p {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  @-webkit-keyframes moveUp {
    0% {
      -webkit-transform: translateY(-20%) !important;
              transform: translateY(-20%) !important;
    }
    33% {
      -webkit-transform: translateY(-185%) !important;
              transform: translateY(-185%) !important;
    }
    66% {
      -webkit-transform: translateY(-300%) !important;
              transform: translateY(-300%) !important;
    }
    100% {
      -webkit-transform: translateY(-20%) !important;
              transform: translateY(-20%) !important;
    }
  }
  @keyframes moveUp {
    0% {
      -webkit-transform: translateY(-20%) !important;
              transform: translateY(-20%) !important;
    }
    33% {
      -webkit-transform: translateY(-185%) !important;
              transform: translateY(-185%) !important;
    }
    66% {
      -webkit-transform: translateY(-300%) !important;
              transform: translateY(-300%) !important;
    }
    100% {
      -webkit-transform: translateY(-20%) !important;
              transform: translateY(-20%) !important;
    }
  }
  .project-container .bio .bio-p {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .bio .bio-p-location {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .bio .social-links {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .project-container .bio .social-links a {
    padding: 0 !important;
  }
  .project-container .bio .social-links a:hover {
    color: rgb(228, 163, 78);
  }
  .project-container .contactme {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    padding-left: 3em !important;
  }
  .project-container .contactme .connect-button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    cursor: pointer;
  }
  .project-container .contactme .connect-button .button {
    margin: 0 !important;
  }

  .about-orange-bg .Brand_Pattern_01 {
    width: 40% !important;
    height: 780px !important;
  }
  .about-orange-bg .Currents {
    margin: 0 2em !important;
    height: 100% !important;
  }
  .about-orange-bg .Currents .img-favorites .row {
    margin: 0;
  }
  .about-orange-bg .Currents .img-favorites .row .one-third .fav-song {
    margin-top: 0 !important;
  }

  /* SITE FOOTER */
  .site-footer {
    height: 30vh !important;
  }
  .site-footer .container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    width: 1400px;
    gap: 10%;
  }
  .site-footer .container .footer-logo {
    width: 300px !important;
  }
  .site-footer .container .footer-logo .copyright-container {
    display: inline !important;
    -webkit-box-pack: left !important;
        -ms-flex-pack: left !important;
            justify-content: left !important;
  }
  .site-footer .container .footer-logo .copyright-container .copyright {
    text-align: left !important;
  }
  .site-footer .site-nav {
    margin: 0 !important;
  }
  .site-footer .site-nav .social-links {
    width: 300px !important;
  }
  .site-footer .site-nav .social-links a {
    font-size: 1em !important;
  }
  .site-footer .reserved {
    height: 2vh;
  }
  .site-footer .reserved p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 200px;
    color: rgb(86, 86, 78);
    font-size: 0.6em;
  }
}
/* SEMANTIC GRID */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3em;
}
.row > * {
  margin: 1%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.row.centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.swapped {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.row.stacked {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .row > * {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .row .one-whole {
    width: 98%;
  }
  .row .one-half {
    width: 46%;
  }
  .row .one-third {
    width: 31.3333%;
  }
  .row .two-thirds {
    width: 64.6666%;
  }
  .row .one-fourth {
    width: 23%;
  }
  .row .three-fourths {
    width: 73%;
  }
  .row .push-one-fourth {
    margin-left: 26%;
  }
  .row .push-one-third {
    margin-left: 34.3333%;
  }
  .row .push-one-half {
    margin-left: 51%;
  }
  .row .centered {
    margin-left: auto;
    margin-right: auto;
  }
}

.demo .row {
  margin-bottom: 0;
}
.demo .row > * {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1%;
}

/* SITE STRUCUTURE */
.site-header,
.site-header-hero {
  position: absolute;
  width: 100%;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header a,
.site-header-hero a {
  color: rgb(228, 163, 78);
  text-decoration: none;
}
.site-header h1,
.site-header-hero h1 {
  font-size: 1.5em;
  margin: 0;
}
.site-header .site-id,
.site-header-hero .site-id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header .logo,
.site-header-hero .logo {
  max-width: 150px;
  margin-top: 0.2em;
  margin-right: 0.5em;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.site-header .logo:hover,
.site-header-hero .logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.site-header .site-nav li a {
  color: rgb(86, 86, 78) !important;
  font-size: 3em !important;
}
.site-header .site-nav li a:hover {
  color: rgb(203, 86, 44) !important;
}

.section_border {
  margin: 2em 0;
}

/* HERO SECTION */
.hero {
  color: rgb(86, 86, 78);
  text-align: center;
  padding: 6em 0;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.hero h1 {
  color: rgb(86, 86, 78);
  margin-bottom: 0.25em;
}
.hero p {
  margin: 1em auto;
}
.hero .hero-title svg {
  height: 500px;
  width: 500px;
}
.hero .home-container-amber {
  background-image: url("/img/AmberAyre_Hero.jpg");
  background-position: center;
  background-size: cover;
}

.project-hero-bg .project-hero,
.project-hero-bg .project-subhero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.project-hero-bg .project-hero {
  font-size: 2.2em;
}

.proj-scroll-down {
  position: absolute;
  left: 50%;
  top: 80%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.proj-scroll-down .scroll-arrow {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 2px solid rgb(203, 86, 44);
  border-bottom: 2px solid rgb(203, 86, 44);
  -webkit-animation: arrow-wave 1s infinite;
          animation: arrow-wave 1s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.proj-scroll-down .scroll-arrow:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.proj-scroll-down .scroll-arrow:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.proj-scroll-down .scroll-arrow:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@-webkit-keyframes arrow-wave {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-wave {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* BACKGROUND COLOR */
.dark-bg {
  background-color: rgb(86, 86, 78);
  padding: 0;
}

.orange-bg {
  background-color: rgb(203, 86, 44);
}
.orange-bg .intern {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.orange-bg .intern .intern_lg_title h2 {
  font-size: 2em;
  font-family: "pentz-regular", serif;
}
.orange-bg h2,
.orange-bg h4 {
  color: rgb(228, 163, 78);
}

/* SITE MAIN */
.site-main {
  background-image: url("/img/Illustration/Filipino_Pattern_02.png");
  background-position: top;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
}
.site-main .hero-home {
  margin: 0 1em 0 1em;
  padding: 1em 0;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}
.site-main .hero-home .row {
  margin-bottom: 0;
}
.site-main .hero-home .character {
  margin-top: 3em;
}
.site-main .hero-home .introduction {
  margin-bottom: 2em;
}
.site-main .hero-home .introduction h1 {
  font-size: 2em;
  color: rgb(203, 86, 44);
}
.site-main .hero-home .introduction h3 {
  font-weight: 100;
  letter-spacing: 2px;
}
.site-main .hero-home .connect-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-main .other-hero-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

/* RESUME PAGE */
.resume-info {
  margin: 4em 0 2em 0;
}
.resume-info .connect-button {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.resume-info .connect-button .button {
  font-family: "pentz-regular", serif;
  font-weight: 400;
  font-style: normal;
}
.resume-info .resume img {
  -webkit-box-shadow: 0px 0px 10px rgb(86, 86, 78);
          box-shadow: 0px 0px 10px rgb(86, 86, 78);
}

/* ABOUT ME PAGE */
.project-container {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5em;
}
.project-container .about_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project-container .about_profile img {
  width: 300px;
  -webkit-box-shadow: rgb(228, 163, 78) -10px 10px 1px;
          box-shadow: rgb(228, 163, 78) -10px 10px 1px;
}
.project-container .about_info {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project-container .about_info .bio {
  margin: 2em 0;
}
.project-container .about_info .bio .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project-container .about_info .bio .changing-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
}
.project-container .about_info .bio .changing-text .texts-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 60px;
  color: rgb(203, 86, 44);
}
.project-container .about_info .bio .changing-text .texts-container .roles {
  margin: 0;
}
.project-container .about_info .bio .changing-text .texts-container .roles p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: moveUp 8s infinite;
          animation: moveUp 8s infinite;
  font-size: 3em;
}
@-webkit-keyframes moveUp {
  0% {
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
  }
  33% {
    -webkit-transform: translateY(-140%);
            transform: translateY(-140%);
  }
  66% {
    -webkit-transform: translateY(-280%);
            transform: translateY(-280%);
  }
  100% {
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
  }
}
@keyframes moveUp {
  0% {
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
  }
  33% {
    -webkit-transform: translateY(-140%);
            transform: translateY(-140%);
  }
  66% {
    -webkit-transform: translateY(-280%);
            transform: translateY(-280%);
  }
  100% {
    -webkit-transform: translateY(-12%);
            transform: translateY(-12%);
  }
}
.project-container .about_info .bio .bio-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.1em 0;
  font-size: 3em;
  color: rgb(86, 86, 78);
}
.project-container .about_info .bio .bio-p-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5em 0;
  font-size: 1em;
  color: rgb(86, 86, 78);
}
.project-container .about_info .contactme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project-container .about_info .contactme .connect-button {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: pointer;
}
.project-container .about_info .contactme .connect-button .button {
  margin: 0.5em;
}

/* PROJECT INFORMATION */
.about-orange-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgb(203, 86, 44);
}
.about-orange-bg .section_border {
  width: 100%;
  position: absolute;
  top: 88.15vh;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
}
.about-orange-bg .Brand_Pattern_01 {
  margin: 0 2em 0 0;
  width: 20%;
  height: 200vh;
  background: url("/img/Patterns/Pattern_02.2.svg");
  background-position: center;
  background-size: cover;
}
.about-orange-bg .Currents {
  margin: 2em;
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  width: 60%;
  height: 195vh;
}
.about-orange-bg .Currents h6 {
  color: rgb(228, 163, 78);
}
.about-orange-bg .Currents .img-favorites h3 {
  color: rgb(224, 216, 199);
}
.about-orange-bg .Currents .img-favorites .row .one-third .container {
  position: relative;
  width: 100%;
}
.about-orange-bg .Currents .img-favorites .row .one-third .fav-song {
  margin-top: 3em;
}
.about-orange-bg .Currents .img-favorites .row .one-third .fav-image-card {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.about-orange-bg .Currents .img-favorites .row .one-third .fav-info {
  background-color: rgb(228, 163, 78);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.about-orange-bg .Currents .img-favorites .row .one-third .fav-info h3 {
  margin: 0;
  text-align: center;
  padding: 1em;
  color: rgb(224, 216, 199);
  font-size: 0.8em;
}
.about-orange-bg .Currents .img-favorites .row .one-third .container:hover .fav-image-card {
  opacity: 0.8;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.about-orange-bg .Currents .img-favorites .row .one-third .container:hover .fav-info {
  opacity: 1;
}

.black-bg {
  background-color: rgb(86, 86, 78);
}
.black-bg .section_border {
  width: 100%;
  position: relative;
  top: -73.5px;
  margin: 0 auto;
  text-align: center;
  display: -ms-grid;
  display: grid;
}
.black-bg .home-proj-title h1 {
  font-family: "pentz-classic", serif;
  letter-spacing: 0.1em;
  color: rgb(228, 163, 78);
  font-size: 4em;
  text-align: center;
}
.black-bg .project-container {
  background-color: rgb(86, 86, 78);
}
.black-bg .project-container .proj-info {
  width: 500px;
  margin: 4em 0 2em 0;
}
.black-bg .project-container hr {
  margin: 2em 0 1em 0;
  width: 20px;
}
.black-bg .project-container .project-stats {
  margin: 0;
}
.black-bg .project-container .project-stats .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.black-bg .project-container .project-stats .status h6 {
  margin-right: 1em;
  opacity: 0.5;
  text-transform: uppercase;
  font-size: 0.75em;
}
.black-bg .intern_process {
  margin: 4em;
}
.black-bg .intern_process .resolution_info h4 {
  color: rgb(228, 163, 78);
}
.black-bg .intern_process .resolution_info p {
  color: rgb(224, 216, 199);
}
.black-bg .muw {
  margin: 8em 4em 4em 4em;
}
.black-bg .muw .intern_info h4 {
  color: rgb(228, 163, 78);
}
.black-bg .muw .intern_info p {
  color: rgb(224, 216, 199);
}

.aa_pattern_bg {
  position: relative;
  background-image: url("/img/AmberAyre/AA_Section.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.aa_pattern_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(241, 240, 243, 0)), to(rgb(241, 240, 243)));
  background: linear-gradient(to top, rgba(241, 240, 243, 0) 0%, rgb(241, 240, 243) 100%);
  height: 2%;
}
.aa_pattern_bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 240, 243, 0)), to(rgb(241, 240, 243)));
  background: linear-gradient(to bottom, rgba(241, 240, 243, 0) 0%, rgb(241, 240, 243) 100%);
  height: 2%;
}
.aa_pattern_bg .mobile_app {
  background-color: rgb(203, 86, 44);
  padding: 4em;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 2em;
}
.aa_pattern_bg .mobile_app .ma_lg_title h2 {
  color: rgb(228, 163, 78);
}
.aa_pattern_bg .mobile_app .ma_title h4 {
  color: rgb(228, 163, 78);
}
.aa_pattern_bg .mobile_app .ma_info p {
  color: rgb(224, 216, 199);
}
.aa_pattern_bg .ma_process {
  width: 98.6%;
  margin: 0;
}
.aa_pattern_bg .ma_process .ma_lg_title h2 {
  color: rgb(86, 86, 78);
}
.aa_pattern_bg .ma_process .ma_title h4 {
  color: rgb(86, 86, 78);
}
.aa_pattern_bg .ma_process .ma_info p {
  color: rgb(86, 86, 78);
}
.aa_pattern_bg .ma_process img {
  border-radius: 10px;
}
.aa_pattern_bg .ma_final img {
  border-radius: 10px;
}

.schematic_process {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.schematic_process .sp {
  margin-bottom: 2em;
}
.schematic_process .sp .sp_lg_title h2 {
  color: rgb(86, 86, 78);
}
.schematic_process .sp .sp_title h4 {
  color: rgb(86, 86, 78);
}
.schematic_process .sp .sp_info {
  color: rgb(86, 86, 78);
}
.schematic_process .sp_img {
  margin: 4em;
}

.challenge-solution {
  max-width: 500px;
  border: 1px solid rgb(228, 163, 78);
  padding-top: 8em;
}
.challenge-solution .row .one-half .cs {
  margin: 0 2em;
  height: 20vh;
  max-width: 500px;
}
.challenge-solution .row .one-half .cs_solution {
  margin-top: 2em;
}
.challenge-solution .row .one-half .cs_solution .cs_title {
  margin-top: 2em;
}
.challenge-solution .cs_title {
  top: 0%;
}
.vl {
  border-left: 3px solid rgb(203, 86, 44);
  height: 0;
  opacity: 0;
}

.brand_assets {
  max-width: 1400px;
}

.ba {
  position: relative;
  top: -100px;
  left: 0;
  width: 70%;
  background-color: rgb(203, 86, 44);
  padding: 4em;
  border-radius: 10px;
}
.ba .ba_lg_title h2 {
  color: rgb(228, 163, 78);
}
.ba .ba_title h4 {
  color: rgb(228, 163, 78);
}
.ba .ba_info {
  color: rgb(224, 216, 199);
}

.ba_img {
  position: static;
  width: 100%;
  margin: 1em 0;
}

.logo_process {
  max-width: 1400px;
}

.lp {
  position: relative;
  top: -140px;
  left: 0;
  width: 70%;
  background-color: rgb(203, 86, 44);
  padding: 4em;
  border-radius: 10px;
}
.lp .lp_lg_title h2 {
  color: rgb(228, 163, 78);
}
.lp .lp_title h4 {
  color: rgb(228, 163, 78);
}
.lp .lp_info {
  color: rgb(224, 216, 199);
}

/* FOR VIDEOS */
.lp_video .lp_title h4 {
  color: rgb(86, 86, 78);
}
.lp_video .lp_info {
  color: rgb(86, 86, 78);
}
.lp_video video {
  border-radius: 10px;
}

.lp_img {
  position: static;
  width: 100%;
  margin: 1em 0;
}
.lp_img video {
  border-radius: 10px;
}

.lp_video {
  position: static;
  width: 100%;
  margin: 1em 0;
}

.resolution {
  background-color: rgb(224, 216, 199);
  padding: 2em;
  border-radius: 10px;
}
.resolution .resolution_info {
  margin-bottom: 3em;
}
.resolution .resolution_img {
  background-color: rgb(224, 216, 199);
}
.resolution .resolution_img img {
  width: 92%;
}

.process {
  margin: 4em 0 5em 0;
}
.process .discovery_phase {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
}
.process .discovery_phase .discovery_info {
  max-width: 500px;
  margin: 1em;
}
.process .discovery_phase .discovery_img {
  max-width: 500px;
  margin: 1em;
}
.process .discovery_phase .title {
  position: relative;
  top: 30%;
  left: 0;
  background-color: rgb(203, 86, 44);
  padding: 4em;
  border-radius: 10px;
}
.process .discovery_phase .title h2 {
  color: rgb(228, 163, 78);
}
.process .discovery_phase .title h4 {
  color: rgb(228, 163, 78);
}
.process .discovery_phase .title p {
  color: rgb(224, 216, 199);
}
.process .discovery_phase .title_video {
  position: relative;
  top: 0;
  width: 100%;
  left: 0;
  background-color: rgb(203, 86, 44);
  padding: 4em;
  border-radius: 10px;
}
.process .discovery_phase .title_video h2 {
  color: rgb(228, 163, 78);
}
.process .discovery_phase .title_video h4 {
  color: rgb(228, 163, 78);
}
.process .discovery_phase .title_video p {
  color: rgb(224, 216, 199);
}

/* WE SOURCE PROJECT */
.ws_info_video {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ws_info_video .ws_video iframe {
  width: 400px;
  height: 400px;
}

/* PODCASTS */
.podcast_title {
  margin-top: 2em;
}
.podcast_title h2 {
  color: rgb(228, 163, 78);
  text-align: center;
}

.podcast {
  margin: 0 2em;
  padding: 1em 1em 0 1em;
}
.podcast .pod-refer {
  margin: 1em 0;
}
.podcast .pod-refer .episode {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  border: 1px solid rgb(86, 86, 78);
  -webkit-box-shadow: 0px 0px 10px 1px rgb(86, 86, 78);
          box-shadow: 0px 0px 10px 1px rgb(86, 86, 78);
}
.podcast .pod-refer .episode img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.podcast .pod-refer .episode:hover img {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.podcast .pod-refer .episode_info h5 {
  color: rgb(228, 163, 78);
  margin-top: 1em;
  text-align: left;
}
.podcast .pod-refer .episode_info .episode-desc {
  color: rgb(224, 216, 199);
  margin: 0.5em 0;
  text-align: left;
}

/* OTHER PROJECTS */
.mw {
  display: inline-block;
  padding: 2em;
  border-radius: 10px;
}
.mw .mw_title {
  margin-bottom: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mw .mw_title h2 {
  color: rgb(228, 163, 78);
}
.mw .mw_links {
  display: inline-block;
  max-width: 1000px;
}
.mw .mw_links .other {
  max-width: 500px;
  margin: 0 2em;
}
.mw .mw_links .other h3 {
  color: rgb(224, 216, 199);
  font-size: 1.2em;
}
.mw .mw_links .other .home-hr {
  margin: 1em 0 1.5em 0;
  background-color: rgb(228, 163, 78);
}
.mw .mw_links .mw_prev,
.mw .mw_links .mw_next {
  margin: 4em 0;
}

.staggered {
  padding-top: 4em;
  margin-bottom: 4em;
}

.summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: rgb(203, 86, 44);
  height: 50vh;
}
.summary .summary-container h1 {
  color: rgb(228, 163, 78);
}
.summary .summary-container p {
  color: rgb(228, 163, 78);
  margin: 1em;
}

.sum_bg {
  background-color: rgb(203, 86, 44);
}
.sum_bg .sum {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 50vh;
}
.sum_bg .sum .sum_current,
.sum_bg .sum .sum_history {
  margin: 1em 0;
}
.sum_bg .sum h1 {
  color: rgb(228, 163, 78);
}
.sum_bg .sum .sum_title h4 {
  color: rgb(228, 163, 78);
}
.sum_bg .sum .sum_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sum_bg .sum .sum_info .sum_background_info {
  margin: 0;
  color: rgb(224, 216, 199);
}

/* PROJECT FOOTER NAV */
.CTA {
  background-color: rgb(224, 216, 199);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5vh;
  padding: 0;
  padding: 1em 0;
}
.CTA li {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  list-style: none;
}
.CTA li a {
  padding: 0 3em 0 3em;
  text-decoration: none;
  color: rgb(203, 86, 44);
  letter-spacing: 0.1em;
  font-size: 0.69em;
  font-weight: 700;
  text-transform: uppercase;
}
.CTA li a:hover {
  color: rgb(86, 86, 78);
}

/* SITE FOOTER */
.site-footer {
  background-color: rgb(224, 216, 199);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em;
  height: 50vh;
}
.site-footer .container {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em 0;
}
.site-footer .footer-logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.site-footer .footer-logo img {
  height: 110px;
}
.site-footer .footer-logo h3 {
  color: rgb(224, 216, 199);
  margin: 0.5em 0 0 0;
}
.site-footer .footer-logo h5 {
  color: rgb(224, 216, 199);
}
.site-footer .footer-logo .copyright-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-footer .footer-logo .copyright-container .copyright {
  text-align: center;
}
.site-footer .site-nav {
  margin: 4em 0 2em 0;
}
.site-footer .site-nav h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: rgb(203, 86, 44);
}
.site-footer .site-nav .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  height: 40px;
}
.site-footer .site-nav .social-links a {
  color: rgb(86, 86, 78);
  font-size: 1.4em;
  text-decoration: none;
  height: 40px;
}
.site-footer .site-nav .social-links a:hover {
  color: rgb(203, 86, 44);
}
.site-footer .reserved {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5em;
}
.site-footer .reserved p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 200px;
  color: rgb(86, 86, 78);
  font-size: 0.6em;
}

/* SECTIONS */
.work-section h1 {
  font-size: 6em;
  position: absolute;
  top: 850px;
  right: -80px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.work-section hr {
  height: 0.8px;
  margin: 0;
}

section-xs {
  padding: 1em 0;
  min-height: 2vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section-s {
  padding: 4em 0;
  min-height: 40vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section-m {
  padding: 4em 0;
  min-height: 80vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section {
  padding: 4em 0;
  min-height: 90vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section-p {
  padding: 2em 0;
  min-height: 90vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* CAROUSEL */
.carousel > input[type=radio]:nth-child(9):checked ~ .carousel__next > label:nth-child(1), .carousel > input[type=radio]:nth-child(9):checked ~ .carousel__prev > label:nth-child(8), .carousel > input[type=radio]:nth-child(8):checked ~ .carousel__next > label:nth-child(9), .carousel > input[type=radio]:nth-child(8):checked ~ .carousel__prev > label:nth-child(7), .carousel > input[type=radio]:nth-child(7):checked ~ .carousel__next > label:nth-child(8), .carousel > input[type=radio]:nth-child(7):checked ~ .carousel__prev > label:nth-child(6), .carousel > input[type=radio]:nth-child(6):checked ~ .carousel__next > label:nth-child(7), .carousel > input[type=radio]:nth-child(6):checked ~ .carousel__prev > label:nth-child(5), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__next > label:nth-child(6), .carousel > input[type=radio]:nth-child(5):checked ~ .carousel__prev > label:nth-child(4), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__next > label:nth-child(5), .carousel > input[type=radio]:nth-child(4):checked ~ .carousel__prev > label:nth-child(3), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__next > label:nth-child(4), .carousel > input[type=radio]:nth-child(3):checked ~ .carousel__prev > label:nth-child(2), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__next > label:nth-child(3), .carousel > input[type=radio]:nth-child(2):checked ~ .carousel__prev > label:nth-child(1), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__next > label:nth-child(2), .carousel > input[type=radio]:nth-child(1):checked ~ .carousel__prev > label:nth-child(9) {
  opacity: 1 !important;
  z-index: 3;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.carousel {
  margin-top: 2em;
  height: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel > input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
}
.carousel > input[type=radio]:checked ~ .carousel__items .carousel__item,
.carousel > input[type=radio]:checked ~ .carousel__prev > label,
.carousel > input[type=radio]:checked ~ .carousel__next > label {
  opacity: 0;
}
.carousel > input[type=radio]:nth-child(1):checked ~ .carousel__items .carousel__item:nth-child(1) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(1):checked ~ .carousel__nav > label:nth-child(1) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(1):checked ~ .carousel__nav2 > label:nth-child(1) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(2):checked ~ .carousel__items .carousel__item:nth-child(2) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(2):checked ~ .carousel__nav > label:nth-child(2) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(2):checked ~ .carousel__nav2 > label:nth-child(2) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(3):checked ~ .carousel__items .carousel__item:nth-child(3) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(3):checked ~ .carousel__nav > label:nth-child(3) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(3):checked ~ .carousel__nav2 > label:nth-child(3) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(4):checked ~ .carousel__items .carousel__item:nth-child(4) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(4):checked ~ .carousel__nav > label:nth-child(4) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(4):checked ~ .carousel__nav2 > label:nth-child(4) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(5):checked ~ .carousel__items .carousel__item:nth-child(5) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(5):checked ~ .carousel__nav > label:nth-child(5) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(5):checked ~ .carousel__nav2 > label:nth-child(5) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(6):checked ~ .carousel__items .carousel__item:nth-child(6) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(6):checked ~ .carousel__nav > label:nth-child(6) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(6):checked ~ .carousel__nav2 > label:nth-child(6) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(7):checked ~ .carousel__items .carousel__item:nth-child(7) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(7):checked ~ .carousel__nav > label:nth-child(7) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(7):checked ~ .carousel__nav2 > label:nth-child(7) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(8):checked ~ .carousel__items .carousel__item:nth-child(8) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(8):checked ~ .carousel__nav > label:nth-child(8) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(8):checked ~ .carousel__nav2 > label:nth-child(8) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(9):checked ~ .carousel__items .carousel__item:nth-child(9) {
  opacity: 1;
}
.carousel > input[type=radio]:nth-child(9):checked ~ .carousel__nav > label:nth-child(9) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel > input[type=radio]:nth-child(9):checked ~ .carousel__nav2 > label:nth-child(9) {
  background: rgb(203, 86, 44);
  cursor: default;
  pointer-events: none;
}
.carousel__items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  height: 550px;
  position: relative;
}
.carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.carousel__item img {
  width: 100%;
  vertical-align: middle;
}
.carousel__prev > label, .carousel__next > label {
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
}
.carousel__prev > label:hover, .carousel__prev > label:focus, .carousel__next > label:hover, .carousel__next > label:focus {
  opacity: 0.5 !important;
}
.carousel__prev > label:before, .carousel__prev > label:after, .carousel__next > label:before, .carousel__next > label:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
}
.carousel__prev > label:before, .carousel__next > label:before {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(203, 86, 44)), color-stop(10%, rgb(203, 86, 44)), color-stop(10%, rgba(51, 51, 51, 0))), -webkit-gradient(linear, right top, left top, from(rgb(203, 86, 44)), color-stop(10%, rgb(203, 86, 44)), color-stop(10%, rgba(51, 51, 51, 0)));
  background: linear-gradient(to top, rgb(203, 86, 44) 0%, rgb(203, 86, 44) 10%, rgba(51, 51, 51, 0) 10%), linear-gradient(to left, rgb(203, 86, 44) 0%, rgb(203, 86, 44) 10%, rgba(51, 51, 51, 0) 10%);
  width: 60%;
  height: 60%;
  top: 100%;
}
.carousel__prev > label {
  left: 2%;
}
.carousel__prev > label:before {
  left: 35%;
  top: 100%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.carousel__next > label {
  right: 2%;
}
.carousel__next > label:before {
  left: 10%;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.carousel__nav {
  position: absolute;
  bottom: 20%;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 3;
}
.carousel__nav > label {
  border: 1px solid rgb(203, 86, 44);
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.125%;
  width: 10px;
  height: 10px;
}
.carousel__nav2 {
  position: absolute;
  bottom: 5%;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 3;
}
.carousel__nav2 > label {
  border: 1px solid rgb(203, 86, 44);
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.125%;
  width: 10px;
  height: 10px;
}

/* HEADER */
.site-header .logo,
.site-header-hero .logo {
  margin-top: 0;
}

/* SITE-HEADER SITE-NAV */
.site-header .site-nav {
  /* BIG SCREENS */
}
.site-header .site-nav .menu-button {
  position: absolute;
  top: 1.5em;
  right: 0.75em;
  color: rgb(86, 86, 78);
  margin: 0;
  font-size: 1.5em;
  line-height: 1;
  -webkit-transform: center;
          transform: center;
  z-index: 20;
  cursor: pointer;
}
.site-header .site-nav .menu-button svg {
  fill: rgb(203, 86, 44);
}
.site-header .site-nav .menu-button svg rect {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.site-header .site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgb(224, 216, 199);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  z-index: 1;
}
.site-header .site-nav li {
  margin: 1em 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2vw;
  min-width: 20vw;
  -webkit-transform: translate(10%, 0);
          transform: translate(10%, 0);
  -webkit-transition: 0.3s all ease-out 0.3s;
  transition: 0.3s all ease-out 0.3s;
  opacity: 0;
  letter-spacing: 0.2em;
}
.site-header .site-nav li a {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: rgb(203, 86, 44);
  font-size: 2.3em;
}
.site-header .site-nav li a:hover {
  color: rgb(228, 163, 78);
}
.site-header .site-nav li .selected {
  padding: 0.3em 0;
  color: rgb(203, 86, 44);
  border-bottom: 2px solid rgb(203, 86, 44);
}
.site-header .site-nav[data-navstate=open] .menu-button {
  position: fixed;
}
.site-header .site-nav[data-navstate=open] #menubar-top {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(7px, 7px) rotate(-45deg);
          transform: translate(7px, 7px) rotate(-45deg);
}
.site-header .site-nav[data-navstate=open] #menubar-middle {
  opacity: 0;
}
.site-header .site-nav[data-navstate=open] #menubar-bottom {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(0, -4px) rotate(45deg);
          transform: translate(0, -4px) rotate(45deg);
}
.site-header .site-nav[data-navstate=open] ul {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.site-header .site-nav[data-navstate=open] li {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.site-header .site-nav[data-navstate=open] .selected {
  padding: 0.3em 0;
  color: rgb(203, 86, 44);
}
@media (min-width: 768px) {
  .site-header .site-nav .menu-button {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .site-header .site-nav ul {
    background-color: transparent;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    position: static;
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transition: none;
    transition: none;
  }
  .site-header .site-nav li {
    max-width: 40vw;
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    font-size: 0.3em;
    min-width: 0;
    margin: 0 1em 0 6em;
  }
  .site-header .site-nav li a {
    color: rgb(86, 86, 78);
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
  }
  .site-header .site-nav li a:hover {
    color: rgb(203, 86, 44);
  }
}

/* FOOTER SITE-NAV */
.site-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-footer .copyright {
  width: 300px;
  text-align: left;
  font-size: 0.6em;
  margin: 0 1em;
}

.site-footer .site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-footer .site-nav a {
  display: inline-block;
  padding: 1em;
  line-height: 1;
}

/* ANIMATION */
.hero .container *,
.hero[data-sectionstate=inactive] .container * {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 0;
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
}
.hero .container *:nth-child(1),
.hero[data-sectionstate=inactive] .container *:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.hero .container *:nth-child(2),
.hero[data-sectionstate=inactive] .container *:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.hero .container *:nth-child(3),
.hero[data-sectionstate=inactive] .container *:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.hero .container *:nth-child(4),
.hero[data-sectionstate=inactive] .container *:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.hero .container *:nth-child(5),
.hero[data-sectionstate=inactive] .container *:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.hero[data-sectionstate=active] .container *,
.hero[data-sectionstate=inactive][data-sectionstate=active] .container * {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.animate-scale-in,
[data-sectionstate=inactive] .animate-scale-in {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

[data-sectionstate=active] .animate-scale-in {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.animate-slide-up,
[data-sectionstate=inactive] .animate-slide-up {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}
.animate-slide-up:nth-child(1),
[data-sectionstate=inactive] .animate-slide-up:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.animate-slide-up:nth-child(2),
[data-sectionstate=inactive] .animate-slide-up:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.animate-slide-up:nth-child(3),
[data-sectionstate=inactive] .animate-slide-up:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-sectionstate=active] .animate-slide-up {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.animate-drop-in-with-delay *,
[data-sectionstate=inactive] .animate-drop-in-with-delay * {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 0;
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
}
.animate-drop-in-with-delay *:nth-child(1),
[data-sectionstate=inactive] .animate-drop-in-with-delay *:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.animate-drop-in-with-delay *:nth-child(2),
[data-sectionstate=inactive] .animate-drop-in-with-delay *:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.animate-drop-in-with-delay *:nth-child(3),
[data-sectionstate=inactive] .animate-drop-in-with-delay *:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.animate-drop-in-with-delay *:nth-child(4),
[data-sectionstate=inactive] .animate-drop-in-with-delay *:nth-child(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.animate-drop-in-with-delay *:nth-child(5),
[data-sectionstate=inactive] .animate-drop-in-with-delay *:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-sectionstate=active] .animate-drop-in-with-delay * {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#first,
[data-sectionstate=inactive] #left {
  -webkit-animation: left-stroke 1s ease-in-out;
          animation: left-stroke 1s ease-in-out;
}

@-webkit-keyframes left-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes left-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#second,
[data-sectionstate=inactive] #middle {
  -webkit-animation: middle-stroke 1.2s ease-in-out;
          animation: middle-stroke 1.2s ease-in-out;
}

@-webkit-keyframes middle-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes middle-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#third,
[data-sectionstate=inactive] #right {
  -webkit-animation: right-stroke 1.4s ease-in-out;
          animation: right-stroke 1.4s ease-in-out;
}

@-webkit-keyframes right-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes right-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#fourth,
[data-sectionstate=inactive] #left {
  -webkit-animation: left-stroke 1.6s ease-in-out;
          animation: left-stroke 1.6s ease-in-out;
}

@keyframes left-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#fifth,
[data-sectionstate=inactive] #middle {
  -webkit-animation: middle-stroke 1.8s ease-in-out;
          animation: middle-stroke 1.8s ease-in-out;
}

@keyframes middle-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#sixth,
[data-sectionstate=inactive] #right {
  -webkit-animation: right-stroke 2s ease-in-out;
          animation: right-stroke 2s ease-in-out;
}

@keyframes right-stroke {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* KEEP SCROLLING ANIMATION */
.continue-scroll {
  position: absolute;
  top: 90%;
  left: 50%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 5vh;
}
.continue-scroll .box span {
  width: 15px;
  height: 15px;
  display: block;
  border-right: 2px solid rgb(203, 86, 44);
  border-bottom: 2px solid rgb(203, 86, 44);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -5px;
  -webkit-animation: animate 2s infinite;
          animation: animate 2s infinite;
}
.continue-scroll .box span:nth-child(2) {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.continue-scroll .box span:nth-child(3) {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
@-webkit-keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}

/* FLOATING IMAGE */
@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
.avatar {
  position: relative;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.avatar img {
  width: 100%;
  height: auto;
}

/* SCROLL ANIMATIONS */
.inline-photo-right {
  opacity: 0;
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
}

.inline-photo-right.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.inline-photo-left {
  opacity: 0;
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
}

.inline-photo-left.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.inline-photo-center {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
}

.inline-photo-center.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.inline-photo-above {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.inline-photo-above.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.inline-photo-above-p {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.inline-photo-above-p.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.inline-photo-below {
  opacity: 0;
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.inline-photo-below.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.inline-photo-above2 {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  transition: transform 2s, opacity 0.3s 0.25s ease-out;
  transition: transform 2s, opacity 0.3s 0.25s ease-out, -webkit-transform 2s;
  width: 100%;
  will-change: transform, opacity;
}

.inline-photo-above2.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* IMAGE HOVER */
.img-hover {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.img-hover img {
  border-radius: 1em;
}
.img-hover:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}