* {
  margin: 0;
  padding: 0;
}

body {
  overflow-X: hidden;
  background-color: black;
}

.slide-menu {
  background-color: white;
  height: 100vh;
  width: 410px;
  max-width: 100vw;
  position: fixed;
  right: 0;
  z-index: 10;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
}

.slide-menu.open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.close-icon {
  margin-top: 40px;
  margin-bottom: 80px;
}

.close-button{
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 40px;
}

.x:before, .x:after {
  top: 9px;
  content: '';
  position: absolute;
  height: 2px;
  width: 20px;
  background-color: black;
}

.x.white:before, .x.white:after {
  background-color: white;
}

.x:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.x:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.logo.slide {
  padding-left: 40px;
  padding-bottom: 40px;
  margin-top: 40px;
  width: 45px;
}

.logo {
  margin-top: 40px;
  width: 40px;
}

.logo img {
  width: 100%;
}

.menu-link {
  font-size: 25px;
  padding-left: 40px;
  padding-right: 140px;
}

.menu-link ul {
  list-style: none;
  margin-bottom: 15px;
}

.menu-link ul + a {
  font-size: 19px;
}

.menu-link ul li a {
  margin-top: 3px;
  color: black;
  letter-spacing: 2px;
}

.menu-link ul li {
  padding-bottom: 5px;
  border-bottom: solid 1px #8080801c;
  margin-bottom: 3px;
}

.menu-link a {
  color: black;
  letter-spacing: 1px;
}

h1, h2, h3, p, span, a {
  color: white;
  text-decoration: none;
  font-family:"rift", sans-serif;
  font-family: "refrigerator-deluxe",sans-serif;
}

h1, a {
  font-family:"rift", sans-serif;
  font-weight: 400;
}

.header h3 {
  font-size: 24px;
}

.header h2, h3 {
  font-weight: 300;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #efefef;
  font-size: 30px;
  text-align: left;
  padding-bottom: 50px;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  background-color: black;
}

.wrapper.brands-wrapper {
  height: auto;
  min-height: 100vh;
  position: relative;
  top: 100vh;
}

.wrapper#bio {
  position: fixed;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.content.content-brands {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 80px;
}

.bio-header h2 {
  margin-left: -40px;
  font-weight: 300;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #efefef;
  font-size: 30px;
  text-align: left;
}

.content.bio {
  background-image: url(../images/about.png);
}

.content.services {
  background-image: url(../images/services.png);
}

.content.contact {
  background-image: url(../images/contact.png);
}

.row {
  width: 100%;
  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;
  height: 40vh;
}

.row.centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row.top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 30vh;
  z-index: 1;
}

.row.bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30vh;
}

.row.outside {
  position: fixed;
  height: calc(100vh - 160px);
  z-index: 2;
  margin: 80px 0;
}

.header {
  text-align: center;
  width: 100%;
}


.header.main-logo, .header.logo {
  margin-top: 65px;
}

.header.main-logo h1 {
  line-height: 80%;
  font-weight: 400;
  letter-spacing: 3.5px;
  font-size: 37px;
  font-family: "rift", sans-serif;
}

.header.main-logo h1 span {
  letter-spacing: 2.8px;
  font-size: 27px;
  font-weight: 300;
  color: #b3b2b2;
  margin-top: 7px;
  display: block;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.image {
  opacity: 0;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-ease-out;
          animation-timing-function: ease-ease-out;
}

.image:first-of-type {
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

.image:nth-of-type(2) {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.image:nth-of-type(3) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.image img {
  max-width: 30vw;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
}

.hamburger-inner {
  top: calc(50% - 2px);
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 25px;
    height: 2px;
    -webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: .15s;
         -o-transition-duration: .15s;
            transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    border-radius: 4px;
    background-color: #fff;
}

.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -10px;
}

.hamburger-inner:after {
    bottom: -10px;
}

.slide-menu-toggle {
  cursor: pointer;
}

.link {
  font-size: 30px;
  color: #fcfcfc;
  position: relative;
  z-index: 1;
}

.link.menu {
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.link.menu .link-wrapper {
  padding-left: 7px;
}

.link.small {
  font-size: 12px;
}

.link:before {
  position: absolute;
  width: 35px;
  height: 1px;
  display: block;
  content: "";
  background-color: #ffffff94;
  top: calc(50% - 1px);
}

.link.left .link-wrapper {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 50px;
  letter-spacing: 2px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link.bottom:before {
  width: 1px;
  height: 35px;
  bottom: 0px;
  top: auto;
  left: calc(50% - 1px);
}

@keyframes bounce {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  3% {
    opacity: .8;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  6% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }

  9% {
    opacity: .8;

    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  12% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.link.bottom.small {
  animation-name: bounce;
  animation-duration: 6s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}

.link.bottom .link-wrapper {
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.link.menu:before {
  right: 0;
}

.image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.header img{
  width: 45px;
}

.about, .brands {
  width: 435px;
}

.about .header, .brands .header {
  text-align: left;
}

.brands .header h1 span {
  font-size: 30px;
  font-weight: 300;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #efefef;
  margin-left: -40px;
}

.story {
  margin-top: 55px;
}

.story p, .detail p, .contact.box p {
  font-size: 25px;
  font-weight: lighter;
  font-family: "refrigerator-deluxe",sans-serif;
}

.story:before {
    position: relative;
    width: 25px;
    height: 1px;
    display: block;
    content: "";
    background-color: #ffffff94;
    top: -20px;
  }

  .scroll h2 span {
    font-size: 12px;
    font-weight: lighter;
    letter-spacing: 1px;
  }

.scroll:before {
    width: 25px;
    height: 1px;
    display: block;
    content: "";
    background-color: #ffffff94;
    top: calc(50% - 1px);
}

.row .services-wrapper {
  width: 1000px;
  margin-left: -40px;
  -webkit-transform: translateY(-65px);
      -ms-transform: translateY(-65px);
          transform: translateY(-65px);
}

.services-wrapper .header h1 span {
  text-align: left;
  padding-bottom: 50px;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 2.5px;
}

.services-wrapper .services-menu ul li {
  list-style: none;
  color: #efefef;
  font-family: "refrigerator-deluxe",sans-serif;
  font-size: 24px;
  font-weight: 300;
  padding-left: 40px;
  letter-spacing: 2px;
  width: 300px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services-wrapper .services-menu ul{
  position: relative;
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
}

.services-wrapper .services-menu ul li:hover, .services-wrapper .services-menu ul li:active, .services-wrapper .services-menu ul li.active {
  background-color: rgba(64, 18, 81, 0.6);
}

.services-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services-menu .detail-display {
  position: relative;
  -ms-flex-preferred-size: 52%;
      flex-basis: 52%;
}

.services-menu ul li a.close-menu {
  float: right;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  width: 33px;
  height: 33px;
  position: relative;
}

.services-menu ul li a.close-menu.x:before, .services-menu ul li a.close-menu.x:after {
  top: 16px;
  left: 7px;
}

.services-wrapper .services-menu ul li.active a.close-menu {
  opacity: 1;
  pointer-events: all;
}

.services-wrapper .services-menu:before {
  position: absolute;
  width: 25px;
  height: 1px;
  display: block;
  content: "";
  background-color: #ffffff94;
  top: -20px;
  margin-left: 40px;
}

.services-menu .detail-wrapper {
  position: absolute;
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%);
  opacity: 0;
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  pointer-events: none;
}

.services-menu .detail-wrapper.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.services-menu .detail-wrapper.hide {
  -webkit-transform: translateY(10%);
      -ms-transform: translateY(10%);
          transform: translateY(10%);
  opacity: 0;
  pointer-events: none;
}

.services-menu .detail-wrapper .header h3 {
  padding-top: 8px;
}

.detail {
  position: relative;
  margin-left: 40px;
}

.detail:before {
    width: 25px;
    height: 1px;
    display: block;
    content: "";
    background-color: #ffffff94;
    top: -20px;
    position: absolute;
}

.contact-wrapper {
  width: 435px;
}

.form-header h2{
    margin-left: -40px;
    font-weight: 300;
    margin-top: 5px;
    letter-spacing: 2px;
    color: #efefef;
    font-size: 30px;
    text-align: left;
    padding-bottom: 50px;
}

.contact.box p {
  padding-top: 15px;
  padding-bottom: 30px;
}

.contact.box::before {
  position: relative;
  width: 25px;
  height: 1px;
  display: block;
  content: "";
  background-color: #ffffff94;
  top: -20px;
}

.contact-form {
  max-width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-input {
  background-color: rgba(64, 18, 81, 0.6);
  border: none;
  height: 45px;
  font-size: 19px;
  font-family: "refrigerator-deluxe",sans-serif;
  padding: 5px 0;
  margin-top: 4px;
  padding-left: 20px;
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
}

.form-button {
  background-color: rgba(64, 18, 81, 0.6);
  color: white;
  border: none;
  padding: 8px;
  padding-left: 20px;
  padding-right: 14px;
  font-size: 19px;
  font-weight: lighter;
  font-family: "refrigerator-deluxe",sans-serif;
  margin-top: 4px;
  letter-spacing: 2px;
  float: right;
}

.contact-form textarea {
  resize: none;
  height: 130px;
  padding-top: 15px;
}

::-webkit-input-placeholder {
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
}

:-ms-input-placeholder {
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
}

::-ms-input-placeholder {
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
}

::placeholder {
  color: white;
  font-weight: 300;
  letter-spacing: 1px;
}

.shoes-logo {
  padding-top: 78px;
  max-width: 1500px;
}

.logos {
  display: block;
  width: 1208px;
  margin: 0 auto;
}

.logos img {
  width: 400px;
  display: inline-block;
  opacity: 0;
}

@-webkit-keyframes logos-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes logos-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.logos img.show {
  -webkit-animation-name: logos-fade-in;
          animation-name: logos-fade-in;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-ease-out;
          animation-timing-function: ease-ease-out;
}

.logos img.show:first-of-type {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.logos img.show:nth-of-type(2) {
  -webkit-animation-delay: .05s;
          animation-delay: .05s;
}

.logos img.show:nth-of-type(3) {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.logos img.show:nth-of-type(4) {
  -webkit-animation-delay: .15s;
          animation-delay: .15s;
}

.logos img.show:nth-of-type(5) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.logos img.show:nth-of-type(6) {
  -webkit-animation-delay: .25s;
          animation-delay: .25s;
}

.logos img.show:nth-of-type(7) {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.logos img.show:nth-of-type(8) {
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}

.logos img.show:nth-of-type(9) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.logos img.show:nth-of-type(10) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}

.logos img.show:nth-of-type(11) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.logos img.show:nth-of-type(12) {
  -webkit-animation-delay: .55s;
          animation-delay: .55s;
}

.logos img.show:nth-of-type(13) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.logos img.show:nth-of-type(14) {
  -webkit-animation-delay: .65s;
          animation-delay: .65s;
}

.logos img.show:nth-of-type(15) {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.logos img.show:nth-of-type(16) {
  -webkit-animation-delay: .75s;
          animation-delay: .75s;
}

.logos img.show:nth-of-type(17) {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.logos img.show:nth-of-type(18) {
  -webkit-animation-delay: .85s;
          animation-delay: .85s;
}

.logos img.show:nth-of-type(19) {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.logos img.show:nth-of-type(20) {
  -webkit-animation-delay: .95s;
          animation-delay: .95s;
}

.logos img.show:nth-of-type(21) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.logos img.show:nth-of-type(22) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.logos img.show:nth-of-type(23) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.05s;
}

.logos img.show:nth-of-type(24) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.logos img.show:nth-of-type(25) {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

.logos img.show:nth-of-type(26) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.logos img.show:nth-of-type(27) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

.logos img.show:nth-of-type(28) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.logos img.show:nth-of-type(29) {
  -webkit-animation-delay: 1.35s;
          animation-delay: 1.35s;
}

@media (max-aspect-ratio: 1/1) {
  .image {
    -webkit-animation-name: fade-up;
            animation-name: fade-up;
  }

  .image-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .image img {
    max-width: 30vh;
  }
}

@media (max-width: 1230px) {
  .row .services-wrapper {
    width: 85vw;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .logos {
    width: 1008px;
  }

  .logos img {
    width: 333.333px;
  }

  .link.left, .link.bottom {
    display: none;
  }

  .link.menu {
    width: 90px;
    position: absolute;
    top: 59px;
    right: 0;
  }

  .link.menu:before {
    content: none;
  }

  .row .services-wrapper {
    margin-left: 81px;
  }

  .contact-wrapper {
    margin: 0 auto;
    margin-top: 50px;
  }

  .form-header h2 {
    margin-left: 0;
  }

  .contact.box {
    margin-left: 40px;
  }

}

@media (max-width: 1000px) {
  .logos {
    width: 100vw;
  }

  .logos img {
    width: 33vw;
  }
}

@media (max-width: 850px) {
  .logos img{
    width: 49.6vw;
  }
}

@media (max-width: 600px) {
  .brands {
    width: calc(100vw - 180px);
  }

  .bio-header h2 {
    margin-left: 0;
  }

  .about {
    max-width: 90vw;
  }

  .story {
    margin-left: 40px;
  }

  .brands.story {
    margin-left: 0;
  }

  .story p {
    font-size: 22px;
  }

}

@media (max-width: 500px) {
  .logos {
    width: 100vw;
  }

  .logos img {
    width: 49vw
  }

  .contact-wrapper {
    max-width: 90vw;
  }
}

@media (max-height: 800px) {
  .row.top {
    height: 150px;
  }

  .content.bio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .row.centered {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: calc(100vh - 220px);
  }

  .row.bottom {
    /* position: absolute; */
    bottom: 0;
    height: auto;
  }

}

@media (max-width: 900px) and (min-height: 800px) {
  .contact-wrapper {
    margin-top: 200px;
  }
}

@media (max-width: 900px) {
  .link.menu {
    top: 135px;
    right: auto;
    left: calc(50% - 21px);
  }

  .link.menu.bio {
    top: 65px;
  }

  .contact-wrapper {
    max-width: 90vw;
  }

  .about {
    min-width: 70vw;
  }

  .row .services-wrapper {
    width: 80vw;
    position: absolute;
    top: 285px;
    margin-left: 5vw;
    z-index: 2;
  }

  .row .services-wrapper .header h2, .row .services-wrapper .header h3 {
    padding-bottom: 25px;
  }

  .services-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 2;
  }

  .services-wrapper .services-menu:before {
    top: -11px;
  }

  .services-wrapper .services-menu ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 300px;
  }

  .detail:before {
    top: -16px;
  }

  .wrapper.brands-wrapper {
    z-index: 2;
  }

  .row.top {
    height: 185px;
  }

  .content.bio .row.centered {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

}

@media (max-width: 510px) {
  .services-wrapper .services-menu ul li a {
    line-height: 30px;
  }
}

@media (max-width: 500px) {
  .slide-menu {
    width: 100vw;
  }
}

@media (max-width: 420px) {
  .menu-link a {
    max-width: 85vw;
    display: inline-block;
    word-wrap: break-word;
  }

  .story {
    margin-top: 42px;
  }

  .story p {
    font-size: 18px;
  }

  .bio-header h2 {
    font-size: 26px;
  }
}
