@import url("https://use.typekit.net/pmq8bxx.css");
@keyframes bounce {
  from {
    transform: translateY(0px); }
  to {
    transform: translateY(-15px); } }
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px); }
  to {
    transform: translateY(-15px); } }
@keyframes glow {
  0% {
    box-shadow: 0 0 0px #00c9fd; }
  25% {
    box-shadow: 0 0 20px #fc7900; }
  50% {
    box-shadow: 0 0 20px #28d336; }
  75% {
    box-shadow: 0 0 20px #ff26be; }
  100% {
    box-shadow: 0 0 20px #00c9fd; } }
@-webkit-keyframes glow {
  0% {
    box-shadow: 0 0 0px #00c9fd; }
  25% {
    box-shadow: 0 0 20px #fc7900; }
  50% {
    box-shadow: 0 0 20px #28d336; }
  75% {
    box-shadow: 0 0 20px #ff26be; }
  100% {
    box-shadow: 0 0 20px #00c9fd; } }
@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
  100% {
    border-radius: 40% 60%; } }
@keyframes spin {
  to {
    transform: rotate(1turn); } }
body, html {
  height: 100%;
  padding: 0;
  margin: 0; }

.mainContent {
  min-height: calc(100% - 45px); }

@media screen and (min-width: 768px) {
  .mainContent {
    min-height: calc(100% - 70px); } }
.mainContent:after {
  content: "";
  display: block; }

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  border: 0;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

.group:after {
  content: "";
  display: table;
  clear: both; }

* {
  box-sizing: border-box; }

body {
  min-height: 100%;
  background: #fff;
  font-size: 21px;
  color: #fff;
  font-family: 'open sans', sans-serif;
  line-height: 1; }

a {
  color: #00aeef;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }

a:focus, a:hover {
  text-decoration: none;
  color: #0089bc; }

h1 {
  font-size: 2.5em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.2em;
  font-weight: 600; }

h4, h5 {
  font-size: 1.2em; }

ol, ul {
  list-style: none;
  margin: 10px 0;
  padding: 0; }

p {
  font-size: 1em;
  color: #fff;
  font-weight: 100;
  margin: 2em 0;
  line-height: 1.5em; }

em {
  font-style: italic; }

strong {
  font-weight: 700; }

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none; }

blockquote, q {
  quotes: none; }

input, textarea {
  color: #fff;
  font-size: 1em;
  outline: 0;
  padding: 0 0 0 15px;
  width: 100%;
  font-family: "open sans";
  font-weight: 700;
  background: transparent; }

textarea {
  box-sizing: border-box; }

.main__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1; }

.logo__container {
  width: 134px;
  padding: 20px;
  display: block; }

.hamburger__container {
  float: right;
  margin: 20px 20px 0 0;
  padding: 18px 0;
  cursor: pointer;
  z-index: 1;
  position: relative;
  width: 40px;
  height: 40px; }
  .hamburger__container:hover .hamburger__bars {
    animation: glow 4s infinite alternate;
    -webkit-animation: glow 4s infinite alternate; }
    .hamburger__container:hover .hamburger__bars:before, .hamburger__container:hover .hamburger__bars:after {
      animation: glow 4s infinite alternate;
      -webkit-animation: glow 4s infinite alternate; }
  .hamburger__container.active .hamburger__bars {
    width: 20px; }
    .hamburger__container.active .hamburger__bars:before {
      width: 40px; }
    .hamburger__container.active .hamburger__bars:after {
      width: 30px; }
  .hamburger__container.active + .menu__wrapper {
    display: block;
    right: -1px; }

.menu__wrapper {
  position: fixed;
  display: block;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffff00+0,ffff00+100&0+50,1+51,1+51,1+54 */
  background: -moz-linear-gradient(72deg, transparent 0%, transparent 35%, #ff9000 35.1%, #ff9000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(72deg, transparent 0%, transparent 35%, #ff9000 35.1%, #ff9000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(72deg, transparent 0%, transparent 35%, #ff9000 35.1%, #ff9000 100%);
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  margin: 0;
  text-align: center;
  line-height: 3em;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  @media screen and (min-width: 1000px) {
    .menu__wrapper {
      width: 70%; } }
  .menu__wrapper .menu__container {
    margin: 0;
    position: relative;
    width: 70%;
    float: right;
    top: 50%;
    transform: translateY(-50%); }
    .menu__wrapper .menu__container a {
      text-decoration: none;
      font-weight: 800;
      color: #fff; }
      .menu__wrapper .menu__container a:hover {
        color: #224fa4; }
    .menu__wrapper .menu__container .social-icons a {
      font-weight: 100;
      margin: 0 10px; }

.hamburger__bars {
  float: right;
  width: 40px;
  height: 4px;
  border-radius: 6px;
  background: #fff;
  position: relative;
  display: block;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  .hamburger__bars:before, .hamburger__bars:after {
    content: "";
    height: 4px;
    background: #fff;
    position: absolute;
    right: 0;
    border-radius: 6px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
  .hamburger__bars:before {
    top: -10px;
    width: 30px; }
  .hamburger__bars:after {
    bottom: -10px;
    width: 20px; }

.xd-moderator__badge {
  position: absolute;
  right: 20%;
  top: 0;
  height: 90px;
  z-index: 1;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  @media screen and (min-width: 768px) {
    .xd-moderator__badge {
      height: 150px;
      left: 20%; } }

.input-group {
  position: relative;
  border-collapse: seperate; }

.input-line {
  background: #490C81;
  height: 3px;
  width: 0px;
  position: absolute;
  display: block;
  transition: .3s width ease-in-out;
  position: relative;
  margin-top: -3px; }

.input-group .input-line {
  position: absolute;
  bottom: 0;
  margin: 0; }

input[type="text"]:focus + .input-line, input[type="password"]:focus + .input-line, select:focus + .input-line {
  width: 100%; }

.input__placeholder {
  position: relative;
  left: 5px;
  top: -44px;
  font-weight: 700;
  font-size: .8em;
  color: #fff;
  height: 0;
  display: block;
  clear: both;
  opacity: 0;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }

input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3); }

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }

input[type="text"]:focus::-webkit-input-placeholder {
  opacity: 0; }

/* Firefox < 19 */
input[type="text"]:-moz-placeholder {
  opacity: 1;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }

input[type="text"]:focus:-moz-placeholder {
  opacity: 0; }

/* Firefox > 19 */
input[type="text"]::-moz-placeholder {
  opacity: 1;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }

input[type="text"]:focus::-moz-placeholder {
  opacity: 0; }

/* Internet Explorer 10 */
input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }

input[type="text"]:focus:-ms-input-placeholder {
  opacity: 0; }

input[type="text"].mini-placeholder__show + .input-line + .input__placeholder, input[type="text"].mini-placeholder__show + .input__placeholder {
  opacity: 1;
  top: -46px;
  font-size: 0.6em; }

.input__placeholder + .input-icon {
  position: absolute;
  right: 0;
  bottom: 0; }

input[type="text"], input[type="password"] {
  height: 36px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid #ff9000;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border-radius: 0;
  font-weight: 700;
  outline: 0;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  padding-left: 0;
  line-height: 24px;
  text-indent: 12px;
  margin-top: 30px; }
  input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus {
    background: rgba(0, 0, 0, 0.06); }

textarea {
  border: 3px solid #ff9000; }
  textarea:focus {
    border: 3px solid #490C81; }

.input__label {
  margin-top: 30px;
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 0.7em;
  margin-bottom: 4px; }

textarea {
  font-family: "open sans";
  color: #fff;
  padding: 8px 0 0 12px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 12px; }
  textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3); }

.btn {
  border: 0;
  padding: 0 12px;
  line-height: 36px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "open sans";
  text-decoration: none;
  text-align: center;
  border-radius: 18px;
  margin: 0;
  min-width: 120px;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  .btn.btn__primary {
    background: #ff7c30;
    background: -moz-linear-gradient(145deg, #ff7c30 0%, #ff7c7f 100%);
    background: -webkit-linear-gradient(145deg, #ff7c30 0%, #ff7c7f 100%);
    background: linear-gradient(145deg, #ff7c30 0%, #ff7c7f 100%); }
    .btn.btn__primary:hover {
      background: #ff7c30;
      background: -moz-linear-gradient(145deg, #fc5d00 0%, #ff494d 100%);
      background: -webkit-linear-gradient(145deg, #fc5d00 0%, #ff494d 100%);
      background: linear-gradient(145deg, #fc5d00 0%, #ff494d 100%); }
  .btn:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.19);
    color: #fff; }

.modal-open {
  overflow: hidden; }

.modal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  height: 100%;
  z-index: 999;
  overflow: auto;
  text-align: center;
  display: none;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  .modal .modal__wrapper {
    width: 100%;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    overflow: auto;
    animation-delay: 2s;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
  .modal .modal__container {
    position: relative;
    max-width: 1300px;
    background: #F9F9F9;
    border-radius: 10px;
    display: inline-block;
    margin: 20px auto;
    text-align: left;
    width: calc(100% - 40px); }
    @media screen and (min-width: 840px) {
      .modal .modal__container {
        min-width: 800px;
        width: auto; } }
  .modal .modal__title {
    padding: 0 20px;
    line-height: 40px;
    color: #490c81;
    font-size: .7em;
    text-transform: uppercase;
    font-weight: 600; }
  .modal .modal__content {
    padding: 0 20px 20px; }
  .modal .close-modal {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #000;
    cursor: pointer; }
  .modal.active {
    display: block;
    background: rgba(0, 0, 0, 0.7); }
    .modal.active .modal__wrapper {
      top: 0; }

.work__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 20px; }

.brand__wrapper .highlight {
  color: #490C81; }
.brand__wrapper .brand__container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  color: #707070; }
  @media screen and (min-width: 600px) {
    .brand__wrapper .brand__container {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (min-width: 900px) {
    .brand__wrapper .brand__container {
      grid-template-columns: repeat(3, 1fr); } }
  @media screen and (min-width: 1100px) {
    .brand__wrapper .brand__container {
      grid-template-columns: repeat(4, 1fr); } }
  .brand__wrapper .brand__container .brand__item {
    width: 100%;
    float: left;
    min-height: 235px;
    cursor: pointer; }
    .brand__wrapper .brand__container .brand__item .item__container {
      background: #F9F9F9;
      border-radius: 10px;
      height: 100%;
      width: 100%;
      -webkit-transition: all 250ms ease-in-out;
      -moz-transition: all 250ms ease-in-out;
      -ms-transition: all 250ms ease-in-out;
      transition: all 250ms ease-in-out; }
      .brand__wrapper .brand__container .brand__item .item__container:hover {
        animation: bounce 500ms infinite alternate;
        -webkit-animation: bounce 500ms infinite alternate;
        box-shadow: 0 0 30px 0 #490C81; }
    .brand__wrapper .brand__container .brand__item .item__content {
      background: #F9F9F9;
      border-radius: 10px;
      max-width: 1300px; }
    .brand__wrapper .brand__container .brand__item .item__image {
      height: 190px;
      background: #fff;
      width: 100%;
      border-radius: 10px 10px 0 0;
      position: relative;
      text-align: center; }
      .brand__wrapper .brand__container .brand__item .item__image .item__language {
        position: absolute;
        top: 6px;
        left: 12px;
        color: #490c81; }
        .brand__wrapper .brand__container .brand__item .item__image .item__language .fa, .brand__wrapper .brand__container .brand__item .item__image .item__language .fab, .brand__wrapper .brand__container .brand__item .item__image .item__language .custom-dev {
          vertical-align: middle; }
        .brand__wrapper .brand__container .brand__item .item__image .item__language .custom-dev {
          font-weight: 700;
          font-size: .7em; }
      .brand__wrapper .brand__container .brand__item .item__image img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        max-width: 80%; }
    .brand__wrapper .brand__container .brand__item .item__label {
      line-height: 1.2em;
      font-size: 0.7em;
      font-weight: 700;
      padding: 12px 12px;
      color: #707070;
      text-transform: capitalize; }
    .brand__wrapper .brand__container .brand__item .close-modal {
      position: absolute;
      top: 10px;
      right: 12px;
      color: #490C81;
      cursor: pointer;
      display: none;
      font-size: 1.4em; }
    .brand__wrapper .brand__container .brand__item .visit-site {
      float: right;
      display: none; }
    .brand__wrapper .brand__container .brand__item .item__expanded-content {
      display: none;
      padding: 12px; }
      .brand__wrapper .brand__container .brand__item .item__expanded-content .work-image {
        max-width: 100%;
        margin: 0 auto 40px;
        display: block; }
      .brand__wrapper .brand__container .brand__item .item__expanded-content .work-iframe {
        display: none;
        max-width: 1200px;
        width: 100%;
        height: 768px;
        margin: 0 auto 40px; }
        @media screen and (min-width: 768px) {
          .brand__wrapper .brand__container .brand__item .item__expanded-content .work-iframe {
            display: block; } }
    .brand__wrapper .brand__container .brand__item.active {
      border-radius: 10px;
      background: rgba(255, 255, 0, 0.3);
      cursor: default;
      font-family: roboto-mono, monospace;
      font-weight: 400;
      font-size: .67em; }
      .brand__wrapper .brand__container .brand__item.active p {
        color: #9B9B9B;
        font-weight: 400;
        font-family: roboto-mono, monospace; }
      .brand__wrapper .brand__container .brand__item.active .work__type {
        border-top: 1px solid #D6D6D6;
        border-bottom: 1px solid #D6D6D6;
        padding: 28px 0;
        margin-top: 60px; }
        .brand__wrapper .brand__container .brand__item.active .work__type .divider {
          margin: 0 20px; }
        .brand__wrapper .brand__container .brand__item.active .work__type .industry__type {
          color: #9B9B9B; }
        .brand__wrapper .brand__container .brand__item.active .work__type .section__title {
          font-size: 1em;
          margin: 0; }
      .brand__wrapper .brand__container .brand__item.active .visit-site {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0; }
        @media screen and (min-width: 760px) {
          .brand__wrapper .brand__container .brand__item.active .visit-site {
            position: absolute;
            left: auto;
            bottom: auto;
            right: 16px;
            top: 16px;
            border-radius: 18px; } }
      .brand__wrapper .brand__container .brand__item.active .modal__background {
        display: block;
        z-index: 0; }
      .brand__wrapper .brand__container .brand__item.active .item__container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 1;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 0; }
        .brand__wrapper .brand__container .brand__item.active .item__container:hover {
          animation: none;
          -webkit-animation: none; }
      .brand__wrapper .brand__container .brand__item.active .item__image {
        height: 80px;
        border-radius: 0; }
        @media screen and (min-width: 760px) {
          .brand__wrapper .brand__container .brand__item.active .item__image {
            border-radius: 10px 10px 0 0; } }
        .brand__wrapper .brand__container .brand__item.active .item__image img {
          max-width: 260px;
          height: 45px; }
      .brand__wrapper .brand__container .brand__item.active .item__label {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        font-size: 1em; }
      .brand__wrapper .brand__container .brand__item.active .item__language {
        display: none; }
      .brand__wrapper .brand__container .brand__item.active .close-modal {
        display: block; }
      .brand__wrapper .brand__container .brand__item.active .item__content {
        border-radius: 0; }
        @media screen and (min-width: 760px) {
          .brand__wrapper .brand__container .brand__item.active .item__content {
            border-radius: 10px;
            width: calc(100% - 40px);
            margin: 20px auto; } }
      .brand__wrapper .brand__container .brand__item.active .item__expanded-content {
        display: block;
        max-width: calc(100% - 40px);
        margin: auto; }
        @media screen and (min-width: 760px) {
          .brand__wrapper .brand__container .brand__item.active .item__expanded-content {
            max-width: calc(100% - 160px); } }

.website__description {
  padding: 0 20px;
  color: #444; }
  .website__description p {
    color: #444; }

.init-screens__container {
  text-align: center; }

.browser__container {
  box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.16);
  border-radius: 7px;
  display: inline-block;
  margin: 0 20px 70px;
  position: relative; }
  .browser__container .browser__header, .browser__container .browser__footer {
    background: #e6e6e6;
    height: 32px; }
  .browser__container .browser__header {
    border-radius: 5px 5px 0 0;
    position: relative; }
  .browser__container .browser__dots, .browser__container .browser__dots:before, .browser__container .browser__dots:after {
    width: 12px;
    height: 12px;
    background: #FF5F56;
    display: inline-block;
    border-radius: 16px;
    position: absolute;
    left: 10px;
    top: 10px; }
    .browser__container .browser__dots:before, .browser__container .browser__dots:after {
      content: "";
      top: 0;
      left: 22px;
      background: #FFBD2E; }
    .browser__container .browser__dots:after {
      left: 44px;
      background: #27C93F; }
  .browser__container .browser__menu, .browser__container .browser__menu:before, .browser__container .browser__menu:after {
    width: 20px;
    height: 4px;
    background: #fff;
    display: inline-block;
    border-radius: 16px;
    position: absolute;
    right: 8px;
    top: 7px; }
    .browser__container .browser__menu:before, .browser__container .browser__menu:after {
      content: "";
      right: 0; }
    .browser__container .browser__menu:after {
      top: 14px; }
  .browser__container .browser__content {
    background: #f5f5f5;
    min-height: 150px; }
    .browser__container .browser__content img {
      display: block;
      max-width: 100%; }
  .browser__container .browser__footer {
    border-radius: 0 0 5px 5px; }
  .browser__container[class*="tab__"] .browser__header {
    border-radius: 5px 0 0 0; }
  .browser__container[class*="tab__"]:before {
    content: "Before";
    position: absolute;
    right: 0;
    top: -27px;
    background: #490C81;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: open-sans;
    height: 27px;
    line-height: 27px;
    width: 100px;
    text-align: center;
    border-radius: 6px 6px 0 0; }
  .browser__container[class*="tab__"].tab__after .browser__header {
    border-radius: 0 5px 0 0; }
  .browser__container[class*="tab__"].tab__after:before {
    content: "After";
    right: auto;
    left: 0; }

.work__task {
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  margin: 40px 0;
  padding: 40px 0; }

.work__competition {
  text-align: justify;
  /* For Edge */
  -moz-text-align-last: justify;
  /* For Firefox prior 58.0 */
  text-align-last: justify;
  margin: 40px 0;
  line-height: 1.3em;
  border-bottom: 1px solid #D6D6D6; }
  .work__competition .browser__container {
    margin: 0 0 40px; }

.work__inspiration {
  margin: 40px 0 0; }
  .work__inspiration .inspo__container {
    max-width: 930px;
    margin: auto;
    text-align: justify;
    /* For Edge */
    -moz-text-align-last: justify;
    /* For Firefox prior 58.0 */
    text-align-last: justify; }
  .work__inspiration .browser__container {
    margin: 0 0 70px; }
  .work__inspiration img {
    margin-bottom: 20px;
    max-width: 100%; }

.work__before-after {
  border-top: 1px solid #D6D6D6;
  margin: 40px 0;
  padding: 40px 0 0; }
  .work__before-after .section__title {
    margin-bottom: 40px; }
  .work__before-after .work-items__container {
    text-align: center; }

.company__description {
  background: #1e1e1e;
  padding: 12px;
  border-radius: 3px;
  color: #a9a9a9;
  margin: 40px 0;
  margin-bottom: 40px; }
  .company__description h3 {
    margin-top: 0;
    color: #fff;
    font-weight: 500; }

.section__title {
  font-weight: 400;
  font-size: 1.45em;
  color: #616161;
  margin-top: 0; }

.skills__container {
  float: right;
  margin: -7px 0 0; }
  .skills__container .skills__item {
    float: left;
    font-family: open-sans;
    line-height: 28px;
    font-weight: 600;
    color: #fff;
    background: #490C81;
    padding: 0 12px;
    margin-left: 8px;
    margin-bottom: 12px;
    border-radius: 14px; }
    .skills__container .skills__item.design-tool {
      background: #DC44BE; }
    .skills__container .skills__item.language {
      background: #448BDC; }

.task__list {
  list-style: circle;
  padding: 0 0 0 20px;
  line-height: 2em; }
  .task__list .task__item {
    padding: 0 0 0 20px; }

.about__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 7vw 20px; }

.modal__location-iframe {
  width: 100%;
  min-height: 600px;
  height: 100%; }

.info-block {
  border-top: 10px solid #fff;
  border-right: 10px solid #fff;
  padding: 30px;
  position: relative;
  margin: 0 0 40px; }
  @media screen and (min-width: 992px) {
    .info-block {
      width: 50%;
      float: left; } }
  .info-block:before {
    content: "";
    background: #e97d14;
    height: 10px;
    width: 10%;
    position: absolute;
    top: -10px;
    left: 0; }
  .info-block .email {
    font-size: 5.5vw;
    text-align: right;
    color: #e97d14;
    text-decoration: none;
    display: block; }
    @media screen and (min-width: 700px) {
      .info-block .email {
        font-size: 1.8em; } }
    @media screen and (min-width: 992px) {
      .info-block .email {
        font-size: 2.4vw; } }
    @media screen and (min-width: 1120px) {
      .info-block .email {
        font-size: 1.6em; } }
  .info-block .phone {
    font-weight: 600;
    margin: 5px 0 35px;
    font-size: 7.5vw;
    text-align: right; }
    @media screen and (min-width: 500px) {
      .info-block .phone {
        font-size: 1.8em; } }
  .info-block .address {
    font-size: 1.7em;
    text-align: right;
    margin-bottom: 30px; }
    .info-block .address .highlight {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1.35em;
      color: #e97d14; }
  .info-block .speach_bubble {
    position: absolute;
    border-radius: 200px;
    background: #fff;
    font-size: 1.7em;
    color: #222;
    font-weight: 800;
    right: 20%;
    width: 100px;
    line-height: 100px;
    display: block;
    text-align: center; }
    .info-block .speach_bubble:before {
      content: "";
      position: absolute;
      border-top: 20px solid #fff;
      border-right: 6px solid transparent;
      border-left: 6px solid transparent;
      display: block;
      left: -12px;
      top: 35px;
      transform: rotate(100deg); }
    @media screen and (min-width: 992px) {
      .info-block .speach_bubble {
        bottom: 20vw; } }
    @media screen and (min-width: 1400px) {
      .info-block .speach_bubble {
        bottom: 300px; } }
  .info-block .me {
    position: relative;
    width: 70%;
    left: -70px; }
    @media screen and (min-width: 768px) {
      .info-block .me {
        left: -150px; } }
    @media screen and (min-width: 992px) {
      .info-block .me {
        left: -70px; } }

.intro-text {
  padding: 0;
  position: relative; }
  @media screen and (min-width: 765px) {
    .intro-text {
      padding: 0 0 0 60px; } }
  @media (min-width: 992px) {
    .intro-text {
      width: 50%;
      float: left; } }
  .intro-text p {
    font-weight: 600;
    font-size: 5vw;
    line-height: 1.25em;
    margin-top: 0;
    letter-spacing: 0.03em; }
    @media screen and (min-width: 992px) {
      .intro-text p {
        font-size: 2.2vw; } }
    @media screen and (min-width: 1500px) {
      .intro-text p {
        font-size: 1.5em; } }
    .intro-text p:last-child:after {
      content: "";
      display: block;
      border-top: 11vw solid #f1592a;
      border-left: 0px solid transparent;
      border-right: 15vw solid transparent;
      position: absolute;
      bottom: -13vw;
      left: 0;
      width: 0;
      height: 0; }
      @media screen and (min-width: 765px) {
        .intro-text p:last-child:after {
          left: 60px; } }
      @media screen and (min-width: 992px) {
        .intro-text p:last-child:after {
          border-top: 60px solid #f1592a;
          border-right: 90px solid transparent;
          bottom: -30px; } }

.main__footer {
  background: url("../../assets/images/workBG.png") no-repeat 100% 100%;
  background-position: center center;
  background-size: cover; }
  .main__footer .work__group-img, .main__footer .work__description {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); }
  .main__footer .work__group-img {
    text-align: center;
    padding: 30px 0 0;
    display: block;
    background: #fff; }
    .main__footer .work__group-img .group-img__container img {
      margin: 0 20px 30px;
      vertical-align: middle;
      max-height: 50px;
      height: 7vw; }
      @media screen and (min-width: 670px) {
        .main__footer .work__group-img .group-img__container img {
          height: 4vw; } }
  .main__footer .work__description {
    background: rgba(0, 0, 0, 0.7); }
    .main__footer .work__description .segment__title {
      color: #fff; }
  .main__footer .footer__list {
    color: #fff;
    text-align: right;
    padding: 0 25px 50px 0;
    font-weight: 700;
    line-height: 1em;
    margin: 0; }
    @media screen and (min-width: 600px) {
      .main__footer .footer__list {
        padding: 0 50px 50px 0; } }
    .main__footer .footer__list .list__item {
      padding: 0 0 30px;
      font-size: 5vw; }
      @media screen and (min-width: 410px) {
        .main__footer .footer__list .list__item {
          font-size: .7em; } }
    .main__footer .footer__list a {
      color: #00aeef;
      display: inline-block; }
      .main__footer .footer__list a:after {
        content: "\f35d";
        font-family: "Font Awesome 5 Free";
        margin-left: 10px; }
      .main__footer .footer__list a.no-icon:after {
        display: none; }

.arsenal__container {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  top: -296px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  .arsenal__container.toggled {
    top: 0; }
  @media screen and (min-width: 780px) and (min-height: 750px) {
    .arsenal__container {
      left: 12px;
      right: auto;
      top: 60px;
      left: 12px;
      background: transparent; }
      .arsenal__container.toggled {
        top: 60px; } }
  .arsenal__container .arsenal__toggle {
    position: absolute;
    bottom: -30px;
    line-height: 30px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 130px;
    text-align: center;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 10px 10px;
    cursor: pointer;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
    @media screen and (min-width: 780px) and (min-height: 750px) {
      .arsenal__container .arsenal__toggle {
        display: none; } }
  @media screen and (min-width: 780px) and (min-height: 750px) {
    .arsenal__container.off-screen {
      left: -163px; } }

.arsenal__label {
  font-weight: 700;
  color: #fff;
  font-size: .8em;
  padding-top: 12px;
  padding-bottom: 4px; }

.arsenal__list {
  text-align: center; }
  @media screen and (min-width: 780px) and (min-height: 750px) {
    .arsenal__list {
      text-align: left; } }

.arsenal__item {
  position: relative;
  font-size: .6em;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block; }
  @media screen and (min-width: 780px) and (min-height: 750px) {
    .arsenal__item {
      display: block; } }
  .arsenal__item .item__box {
    background: #000;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    min-width: 37px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
    .arsenal__item .item__box .hover-show {
      max-width: 0;
      overflow: hidden;
      display: inline-block;
      vertical-align: bottom;
      white-space: nowrap;
      -webkit-transition: all 250ms ease-in-out;
      -moz-transition: all 250ms ease-in-out;
      -ms-transition: all 250ms ease-in-out;
      transition: all 250ms ease-in-out; }
    .arsenal__item .item__box:hover {
      z-index: 1; }
      .arsenal__item .item__box:hover .hover-show {
        max-width: 90px; }
    .arsenal__item .item__box.ps {
      background: #00c9fd; }
      .arsenal__item .item__box.ps:hover {
        box-shadow: 0 0 20px #00c9fd; }
    .arsenal__item .item__box.ai {
      background: #fc7900; }
      .arsenal__item .item__box.ai:hover {
        box-shadow: 0 0 20px #fc7900; }
    .arsenal__item .item__box.xd {
      background: #ff26be; }
      .arsenal__item .item__box.xd:hover {
        box-shadow: 0 0 20px #ff26be; }
    .arsenal__item .item__box.pr {
      background: #e575ff; }
      .arsenal__item .item__box.pr:hover {
        box-shadow: 0 0 20px #e575ff; }
    .arsenal__item .item__box.ae {
      background: #ce92ff; }
      .arsenal__item .item__box.ae:hover {
        box-shadow: 0 0 20px #ce92ff; }
    .arsenal__item .item__box.vs {
      background: #00c9fd; }
      .arsenal__item .item__box.vs:hover {
        box-shadow: 0 0 20px #00c9fd; }
    .arsenal__item .item__box.br {
      background: #29aae0; }
      .arsenal__item .item__box.br:hover {
        box-shadow: 0 0 20px #29aae0; }
    .arsenal__item .item__box.php {
      background: #000; }
      .arsenal__item .item__box.php:hover {
        box-shadow: 0 0 20px #000; }
    .arsenal__item .item__box.asp {
      background: #1582c7; }
      .arsenal__item .item__box.asp:hover {
        box-shadow: 0 0 20px #1582c7; }
    .arsenal__item .item__box.csharp {
      background: #690081; }
      .arsenal__item .item__box.csharp:hover {
        box-shadow: 0 0 20px #690081; }
    .arsenal__item .item__box.html {
      background: #e34f26; }
      .arsenal__item .item__box.html:hover {
        box-shadow: 0 0 20px #e34f26; }
    .arsenal__item .item__box.css {
      background: #1b73ba; }
      .arsenal__item .item__box.css:hover {
        box-shadow: 0 0 20px #1b73ba; }
    .arsenal__item .item__box.scss {
      background: #cd6799; }
      .arsenal__item .item__box.scss:hover {
        box-shadow: 0 0 20px #cd6799; }
    .arsenal__item .item__box.less {
      background: #20416c; }
      .arsenal__item .item__box.less:hover {
        box-shadow: 0 0 20px #20416c; }
    .arsenal__item .item__box.jquery {
      background: #1068af; }
      .arsenal__item .item__box.jquery:hover {
        box-shadow: 0 0 20px #1068af; }
    .arsenal__item .item__box.react {
      background: #00d8ff; }
      .arsenal__item .item__box.react:hover {
        box-shadow: 0 0 20px #00d8ff; }

.page-how h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 70px; }

.work__step {
  clear: both; }
  .work__step .step__content {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 40px 40px 20px;
    position: relative;
    text-align: right; }
    .work__step .step__content .step__img {
      position: absolute;
      left: -14px;
      top: -2px; }
    .work__step .step__content p {
      margin-top: 0;
      font-size: 0.7em;
      max-width: 55%;
      display: inline-block;
      margin-bottom: 20px;
      font-weight: 400; }
  .work__step:nth-child(odd) .step__content {
    text-align: left; }
    .work__step:nth-child(odd) .step__content .step__img {
      left: auto;
      right: -14px; }
  .work__step .step__title {
    font-weight: 700;
    font-size: 1.4em;
    padding-left: 40px; }
  .work__step.sketches {
    margin-top: 120px; }
    .work__step.sketches .long-paragraph {
      max-width: 70%; }
  .work__step.research {
    margin-top: 320px; }
    .work__step.research p {
      max-width: 45%;
      display: block; }
  .work__step.wire-frameing {
    margin-top: 220px; }
    .work__step.wire-frameing p {
      max-width: 45%;
      float: right;
      clear: both; }
    .work__step.wire-frameing .long-paragraph {
      max-width: 60%; }
  .work__step.high-fidelity {
    margin-top: 260px; }
    .work__step.high-fidelity .step__img {
      top: -130px; }
  .work__step.prototyping {
    margin-top: 220px; }
  .work__step.build {
    margin-top: 320px;
    margin-bottom: 120px; }
    .work__step.build p {
      max-width: 50%; }

@media screen and (min-width: 920px) {
  .rampm_booking_tool_designdev .init-screens__container .browser__container {
    width: calc(50% - 45px); } }
.rampm_booking_tool_designdev .work__competition .browser__container {
  width: 100%;
  vertical-align: top; }
  @media screen and (min-width: 920px) {
    .rampm_booking_tool_designdev .work__competition .browser__container {
      max-width: 50%;
      width: calc(50% - 45px); } }
.rampm_booking_tool_designdev .work__inspiration img {
  width: 100%;
  vertical-align: middle; }
  @media screen and (min-width: 920px) {
    .rampm_booking_tool_designdev .work__inspiration img {
      max-width: 50%;
      width: calc(50% - 45px); } }
.rampm_booking_tool_designdev .work-items__group h3 {
  margin-bottom: 50px;
  border-top: 1px dashed #ccc;
  padding-top: 30px; }
@media screen and (min-width: 920px) {
  .rampm_booking_tool_designdev .work-items__group .browser__container {
    vertical-align: top;
    width: calc(50% - 45px); } }

html {
  background: linear-gradient(-45deg, #490c81, #0a68b3);
  background-attachment: fixed; }

body {
  background: linear-gradient(to right, rgba(225, 225, 225, 0.15) 1px, transparent 1px), linear-gradient(rgba(225, 225, 225, 0.15) 1px, transparent 1px);
  background-size: 10px 10px;
  background-position: top right;
  background-attachment: fixed;
  height: auto;
  overflow-x: hidden; }
  body.modal-open {
    overflow: hidden;
    padding-right: 12px; }

.home__segment {
  position: relative;
  overflow: hidden; }

.main__content {
  min-height: 100%; }

.splash__image {
  width: 100%;
  position: relative;
  overflow-x: hidden; }
  .splash__image img {
    width: 200%;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
    @media screen and (min-width: 600px) {
      .splash__image img {
        width: 170%; } }
    @media screen and (min-width: 750px) {
      .splash__image img {
        width: 150%; } }
    @media screen and (min-width: 840px) {
      .splash__image img {
        width: 125%; } }
    @media screen and (min-width: 1000px) {
      .splash__image img {
        width: 100%; } }

.splash__name-wrapper {
  position: absolute;
  top: 47vw;
  left: 0;
  width: 100%;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -ms-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out; }
  @media screen and (min-width: 600px) {
    .splash__name-wrapper {
      top: 42vw; } }
  @media screen and (min-width: 750px) {
    .splash__name-wrapper {
      top: 37vw; } }
  @media screen and (min-width: 840px) {
    .splash__name-wrapper {
      top: 31vw; } }
  @media screen and (min-width: 1000px) {
    .splash__name-wrapper {
      top: 25vw; } }

.name__container {
  position: relative;
  width: 48%;
  margin: 25px 0;
  font-weight: 700;
  float: right; }
  .name__container .name {
    width: 33vw;
    display: block;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
    @media screen and (min-width: 840px) {
      .name__container .name {
        width: 27vw; } }
    @media screen and (min-width: 1000px) {
      .name__container .name {
        width: 20vw; } }
    .name__container .name svg {
      vertical-align: top; }

.distance__container {
  position: absolute;
  display: block;
  margin: auto;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center; }
  .distance__container .leftBar, .distance__container .rightBar {
    height: 1px;
    background: #ff4aff;
    position: absolute;
    top: 50%;
    width: 50%; }
    .distance__container .leftBar:before, .distance__container .leftBar:after, .distance__container .rightBar:before, .distance__container .rightBar:after {
      content: '';
      position: absolute;
      height: 6px;
      top: -3px;
      width: 6px;
      transform: rotate(45deg); }
  .distance__container .leftBar {
    left: 0; }
    .distance__container .leftBar:before {
      left: 0;
      border-left: 1px solid #ff4aff;
      border-bottom: 1px solid #ff4aff; }
  .distance__container .rightBar {
    right: 0; }
    .distance__container .rightBar:after {
      right: 0;
      border-right: 1px solid #ff4aff;
      border-top: 1px solid #ff4aff; }
  .distance__container .distance {
    background: #ff4aff;
    border-radius: 0 0 5px 5px;
    padding: 0 10px;
    font-size: .5em;
    font-weight: 500;
    vertical-align: -16px;
    display: inline-block;
    line-height: 19px;
    color: #fff;
    position: relative; }
    @media screen and (min-width: 470px) {
      .distance__container .distance {
        width: 50px; } }
    @media screen and (min-width: 2000px) {
      .distance__container .distance {
        width: 50px; } }
    .distance__container .distance:after {
      content: "px"; }

.page__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 150px 20px; }

.contact__container {
  width: calc(100% - 40px);
  max-width: 992px;
  margin: 0 auto;
  padding: 100px 0 40px;
  color: #fff; }
  .contact__container .contact__form {
    max-width: 450px;
    margin: 0 auto; }

.statement__container {
  font-size: 4.7vw;
  line-height: 3.5vw;
  margin: 0;
  padding: 7vw 20px 7vw 0; }
  @media screen and (min-width: 600px) {
    .statement__container {
      line-height: 2vw;
      padding: 7vw 40px 7vw 0; } }
  @media screen and (min-width: 700px) {
    .statement__container {
      font-size: 2.7vw;
      width: 50%;
      float: right; } }
  .statement__container .statement__item {
    color: #fff;
    display: block;
    font-weight: 700;
    margin: .5em 0;
    text-align: right;
    padding: 0 20px 0 0;
    position: relative; }
    .statement__container .statement__item .location__pin {
      font-size: 1.7em;
      line-height: 60px;
      vertical-align: middle;
      line-height: 100%;
      position: absolute;
      left: 20px;
      color: #fff;
      cursor: pointer; }
      @media screen and (min-width: 600px) {
        .statement__container .statement__item .location__pin {
          left: auto;
          right: 70vw; } }
      @media screen and (min-width: 700px) {
        .statement__container .statement__item .location__pin {
          right: 45vw; } }
      .statement__container .statement__item .location__pin:hover {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate; }
    .statement__container .statement__item .statement__block {
      display: inline-block;
      padding: 2vw;
      margin-right: 2vw;
      color: #ff9000;
      border-radius: 1vw;
      position: relative;
      left: 0;
      -webkit-transition: all 250ms ease-in-out;
      -moz-transition: all 250ms ease-in-out;
      -ms-transition: all 250ms ease-in-out;
      transition: all 250ms ease-in-out; }
      .statement__container .statement__item .statement__block:hover {
        left: -10px;
        text-shadow: 0 0 70px rgba(255, 144, 0, 0.7); }

.segment__title {
  margin: 0;
  padding: 20px;
  font-size: .8em;
  text-transform: uppercase;
  font-weight: 700; }

.home__about {
  background: rgba(202, 165, 136, 0.3); }
  .home__about .how__target {
    width: 100%;
    text-align: center;
    margin-top: 6vw;
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px; }
    .home__about .how__target:hover {
      animation: bounce 1s infinite alternate;
      -webkit-animation: bounce 1s infinite alternate;
      color: #e97d14; }
    .home__about .how__target img {
      width: 100%;
      max-width: 500px; }
      @media screen and (min-width: 700px) {
        .home__about .how__target img {
          width: 70%; } }
    @media screen and (min-width: 700px) {
      .home__about .how__target {
        float: left;
        width: 50%; } }
  .home__about .blob {
    right: auto;
    left: 20vmin;
    top: 10vmin;
    width: 70vmax;
    height: 70vmax;
    animation: morph 30s linear infinite alternate-reverse, spin 30s linear infinite reverse; }

.home__profile {
  background: rgba(0, 0, 0, 0.7); }

.highlight {
  color: #e97d14; }

.blob__container {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0; }

.blob {
  width: 30vmax;
  height: 30vmax;
  position: absolute;
  background: linear-gradient(-45deg, #490c81, #0a68b3);
  right: 20vmin;
  top: 20vmin;
  animation: morph 15s linear infinite alternate, spin 20s linear infinite;
  will-change: border-radius, transform;
  transform-origin: 55% 55%;
  pointer-events: none;
  z-index: -1; }
  .blob + .blob {
    right: auto;
    left: 20vmin;
    top: 10vmin;
    width: 70vmax;
    height: 70vmax;
    animation: morph 30s linear infinite alternate-reverse, spin 30s linear infinite reverse;
    z-index: -2; }
    .blob + .blob + .blob {
      left: 20vmin;
      top: 200vmin;
      width: 30vmax;
      height: 30vmax;
      animation: morph 30s linear infinite alternate-reverse, spin 30s linear infinite infinite; }
      .blob + .blob + .blob + .blob {
        right: 20vmin;
        left: auto;
        top: 230vmin;
        width: 70vmax;
        height: 70vmax;
        animation: morph 30s linear infinite alternate-reverse, spin 30s linear infinite reverse; }

/*# sourceMappingURL=style.css.map */
