@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf");
}
body {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Gilroy-Regular", "Helvetica", "Arial", sans-serif;
  background: #060607;
  color: #fff;
  position: relative;
}
h1,
h2,
h3,
h4,
h5 {
  color: #fff;
}
a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #fff;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: 0;
  color: #f0c94f;
}
.site-logo {
  z-index: 2;
  display: flex;
}
.site-logo img {
  width: 50px;
  height: auto;
}
.ux-navbar {
  padding: 35px 0;
  z-index: 1;
}
.container-fluid {
  width: 75%;
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}
.container {
  padding-left: 0;
  padding-right: 0;
}
.ux-navbar .toggle-menu {
  z-index: 2;
  position: relative;
  display: none;
}
.hamburger {
  padding: 0 !important;
}
.hamburger-box {
  bottom: -3px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: #fff;
}
.ux-navbar .toggle-menu:active,
.ux-navbar .toggle-menu:focus {
  outline: 0;
}
.ux-navbar .ux-menu {
  position: relative;
}
.ux-navbar .ux-menu ul {
  margin-bottom: 0;
}
.ux-navbar .ux-menu ul li {
  display: inline-block;
}
.ux-navbar .ux-menu ul li.active a {
  color: #f0c94f;
}
.ux-navbar .ux-menu ul li a {
  margin-right: 40px;
  font-size: 16px;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 5px;
  display: block;
}
.ux-navbar .ux-menu ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  left: 0;
  background: #f0c94f;
  -webkit-transition: 0.15s width ease;
  -o-transition: 0.15s width ease;
  transition: 0.15s width ease;
}
.ux-navbar .ux-menu ul li a:hover:before {
  width: 100%;
}
.ux-navbar .ux-menu ul li.active > a:before {
  width: 100%;
}
.ux-navbar .ux-menu ul li:last-child a {
  margin-right: 0;
}
.ux-navbar.navbar-light .hamburger .hamburger-inner,
.ux-navbar.navbar-light .hamburger .hamburger-inner::before,
.ux-navbar.navbar-light .hamburger .hamburger-inner::after {
  background-color: #fff;
}
.ux-navbar.navbar-light .ux-menu ul li a {
  color: #fff;
}
.menu-open .ux-navbar {
  position: fixed;
  left: 0;
  top: 0;
}
.menu-open .navbar-light .hamburger .hamburger-inner,
.menu-open .navbar-light .hamburger .hamburger-inner::before,
.menu-open .navbar-light .hamburger .hamburger-inner::after {
  background-color: #fff;
}
.menu-open .ux-menu li {
  opacity: 0;
  visibility: hidden;
  margin-left: -10px;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.menu-open .ux-menu li.staggard {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}
.ux-hero {
  height: calc(100vh - 103px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ux-hero .title {
  position: absolute;
  top: calc(50% - 51px);
  transform: translate(0, -50%);
  text-align: center;
}
.ux-hero .title h1 {
  font-family: "Gilroy-Medium";
  font-size: 100px;
  margin-bottom: 40px;
  display: block;
  margin: 0 auto;
}
.ux-hero .title p {
  margin-top: 20px;
  color: #d6d6d6;
  opacity: 0.5;
}
.starting-straight-line {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 30vh;
  background: #f0c94f;
  margin-left: auto;
  margin-right: auto;
}
.main-intro svg {
  width: 40%;
  height: auto;
  margin-left: calc(10% + 0.5px);
}
.main-intro path {
  stroke: #f0c94f;
}
.main-intro {
  position: relative;
}
.main-intro h3 {
  width: 50%;
  line-height: 180%;
  position: absolute;
  top: 25%;
  background: #060607;
  padding: 15px 0;
}
.ux-hero .title h3 {
  font-size: 30px;
}
.ux-hero .title h3:not(:last-child) {
  margin-bottom: 20px;
}
.ux-hero .title span {
  color: #f0c94f;
}
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #f0c94f;
  z-index: 10;
}
.curtain {
  background: #fff;
  position: relative;
  top: -50px;
  overflow: hidden;
}
.curtain .left-panel,
.curtain .right-panel {
  position: absolute;
  height: 100%;
  width: 50%;
  z-index: 2;
  background: #060607;
  transition: all 0.2s ease-out;
}
.curtain .right-panel {
  margin-left: 50%;
}
.curtain .ux-work-content {
  z-index: 3;
}
.curtain.opened .left-panel {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.curtain.opened .right-panel {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.ux-worklist-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 125px 0;
  color: #000;
}
.curtain .ux-worklist-title {
  text-align: center;
  color: #000;
  font-family: "Gilroy-Medium";
  padding: 50px 0;
}
.ux-worklist-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.ux-worklist-item figure {
  width: 45%;
  height: auto;
  margin: 0;
}
.ux-worklist-item figure .ux-worklist-item-img {
  width: 100%;
  height: auto;
}
.ux-worklist-item .ux-worklist-item-text {
  padding-left: 30px;
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
}
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-title {
  font-size: 35px;
  color: #000;
  font-family: "Gilroy-Medium";
}
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-place {
  font-family: "Gilroy-Medium";
}
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-desc {
  margin-top: 25px;
}
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-button {
  width: 250px;
  text-align: center;
  font-size: 16px;
  color: #000;
  border: 2px solid #f0c94f;
  border-radius: 0;
  padding: 16px 32px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: ease-out 0.2s;
  -moz-transition: ease-out 0.2s;
  transition: all 0.2s ease-out;
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  box-shadow: inset -250px 0 0 0#f0c94f;
}
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-button svg {
  width: 24px;
  height: 24px;
}
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-button:hover,
.ux-worklist-item .ux-worklist-item-text .ux-worklist-item-button:focus {
  box-shadow: inset 0 0 0 0 #f0c94f;
  color: #000;
  outline: 0;
}

#anomaly-iframe-wrapper {
  background: url("../images/spinning-loader.gif") center center no-repeat;
}

#anomaly-iframe-wrapper iframe {
  width: 100%;
  height: 1040px;
}

.coming-soon {
  display: block;
  text-align: center;
}


.ux-lock-hero {
    min-height: calc(100vh - 102px);
    position: relative;
}
.ux-lock-hero .lock-div {
    display: block;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: calc(50% - 100px);
    left: 50%;
    transform: translate(-50%, -50%);
}
.ux-lock-hero .lock-div img {
    width: 75px;
    height: auto;
    margin-bottom: 30px;
}
.lock-form-project {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.lock-form-project button {
    width: 300px;
    height: 50px;
    text-align: center;
    font-size: 16px;
    color: #000;
    border: 2px solid #f0c94f;
    border-radius: 0;
    padding: 10px 20px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: ease-out .2s;
    -moz-transition: ease-out .2s;
    transition: all .2s ease-out;
    box-shadow: inset -300px 0 0 0#f0c94f;
}
.lock-form-project input {
    width: 300px;
    border: 1px solid #fff;
    padding: 10px 20px;
    outline: 0;
    transition: all .2s ease;
    margin-bottom: 15px;
}
.ux-lock-hero .lock-div p {
    margin-top: 10px;
}
.ux-lock-hero .lock-div a {
    color: #f0c94f;
    text-decoration: none;
}
.lock-shake {
    animation: shake .2s;
    animation-iteration-count: 3;
}
@keyframes shake {
    0% {
    transform: rotate(0);
}
25% {
    transform: rotate(10deg);
}
50% {
    transform: rotate(0);
}
75% {
    transform: rotate(-10deg);
}
100% {
    transform: rotate(0);
}
}
 .unlock-project {
    display: none;
}
/* .unlock-project {
  display: flex;
} */
.ux-project-title {
  height: calc(90vh - 103px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.ux-project-title h1 {
  font-family: "Gilroy-Medium";
  font-size: 100px;
  margin-bottom: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ux-project-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.ux-project-hero h1 {
  font-family: "Gilroy-Medium";
  font-size: 50px;
  margin-bottom: 30px;
}
.ux-project-hero h3 {
  font-size: 30px;
  line-height: 50px;
}
.button {
  padding: 8px 40px;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #fff;
  border-radius: 30px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.button:hover,
.button:active,
.button:focus {
  outline: 0;
}
.button.button-yellow {
  background: #f0c94f;
  color: #060607;
  border: 1px solid #000;
  text-decoration: none;
}
.button.button-yellow:hover {
  text-decoration: none;
  color: #000;
  background: #fff;
}
.ux-media h3 {
  font-size: 18px;
  color: #000;
}
.ux-media .icon span {
  font-size: 40px;
  color: #ccc;
}
.testimony {
  margin-top: 50px;
  padding: 7em 0;
  background: #f7f7f7;
}
.testimony blockquote {
  font-size: 24px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .testimony blockquote {
    font-size: 22px;
    line-height: 2.5em;
  }
}
.testimony blockquote p {
  color: #000;
}
.testimony .author {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.main-details-tab .caption {
  display: block;
  font-size: 24px;
  font-family: "Gilroy-Medium";
  color: #fff;
}
.main-details-tab .main-details-tab-logo {
  width: 50%;
  height: auto;
}
.main-details-tab p:not(.caption) {
  margin-bottom: 8px;
  line-height: 2em;
  font-size: 16px;
  color: #d6d6d6;
  width: 75%;
}
.main-details-tab p span {
  color: #fff;
  font-family: "Gilroy-Medium";
}
.spacer-lg {
  height: 350px;
  width: 100%;
}
.spacer-md {
  height: 150px;
  width: 100%;
}
.spacer-sm {
  height: 50px;
  width: 100%;
}
.spacer-xs {
  height: 30px;
  width: 100%;
}
.ux-project-content p {
  color: #d6d6d6;
}
.ux-project-content ul.list-texts {
  padding-left: 15px;
}
.ux-project-content ul.list-texts li {
  color: #d6d6d6;
}
.ux-project-content .sticky {
  display: flex;
  justify-content: space-between;
}
.ux-project-content .sticky .sticky-title {
  width: 30%;
}
.ux-project-content .sticky .sticky-title h3 {
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 20vh;
}
.ux-project-content .sticky .sticky-content {
  width: 60%;
}
.ux-project-content .sticky .sticky-content h4 {
  font-size: 20px;
  line-height: 175%;
  margin-bottom: 0;
}
.ux-project-content .sticky .sticky-content p {
  margin-bottom: 0;
  margin-top: 24px;
}
.ux-project-content .sticky .sticky-title {
  font-size: 36px;
}
.ux-project-content .full-widther {
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 0;
  text-align: center;
}
.ux-project-content .toggle-sides .toggle-sides-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
.ux-project-content .toggle-sides .toggle-sides-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.ux-project-content .toggle-sides .toggle-sides-item figure {
  width: 65%;
}
.ux-project-content .toggle-sides .toggle-sides-item .toggle-sides-item-text {
  width: 30%;
}
.ux-project-content
  .toggle-sides
  .toggle-sides-item
  .toggle-sides-item-text
  h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.ux-project-content .toggle-sides .toggle-sides-item .toggle-sides-item-text p {
  margin-top: 20px;
}
.ux-project-content .text-list {
  padding-left: 20px;
  color: #d6d6d6;
}
.ux-project-content .see-live-button {
  width: 250px;
  text-align: center;
  font-size: 16px;
  color: #000;
  border: 2px solid #f0c94f;
  border-radius: 0;
  padding: 16px 32px;
  display: inline-block;
  cursor: pointer;
  background: 0;
  -webkit-transition: ease-out 0.2s;
  -moz-transition: ease-out 0.2s;
  transition: all 0.2s ease-out;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  box-shadow: inset -250px 0 0 0#f0c94f;
}
.ux-project-content .see-live-button svg {
  width: 24px;
  height: 24px;
}
.ux-project-content .see-live-button:hover,
.ux-project-content .see-live-button:focus {
  box-shadow: inset 0 0 0 0 #f0c94f;
  color: #f0c94f;
  outline: 0;
}
.ux-project-content .design-process {
  display: flex;
  justify-content: space-between;
}
.ux-project-content .design-process .design-process-nav {
  width: 30%;
}
.ux-project-content .design-process .design-process-nav .list-group {
  position: sticky;
  position: -webkit-sticky;
  top: 20vh;
  width: 80%;
}
.ux-project-content
  .design-process
  .design-process-nav
  .list-group
  .list-group-item {
  background: 0;
  color: #fff;
  opacity: 0.6;
  border: 0;
}
.ux-project-content
  .design-process
  .design-process-nav
  .list-group
  .list-group-item.active {
  color: #f0c94f;
  opacity: 1;
  font-family: "Gilroy-Medium";
}
.ux-project-content .design-process .design-process-matter {
  width: 65%;
}
.ux-project-content
  .design-process
  .design-process-matter
  .design-process-content-item-heading {
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 75px;
}
.ux-project-content .design-process p {
  margin-bottom: 0;
}
.ux-project-content .design-process p .inline-link {
  color: #f0c94f;
}
.ux-project-content .design-process p .inline-link:hover {
  text-decoration: underline;
}
.ux-project-content .vmware-dp .persona-img {
  width: 75%;
  height: auto;
  margin-bottom: 30px;
}
.stack-cards {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.ux-project-content .stack-cards__item {
  position: sticky;
  top: 20vh;
  transform-origin: center top;
  background: #1e1e1f;
  padding: 40px;
  width: 65%;
  margin-bottom: 30px;
}
.ux-project-content .stack-cards__item .card-number {
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 30px !important;
  color: #f0c94f !important;
}
.ux-project-content .stack-cards__item .card-img {
  width: 75px;
  height: auto;
  margin-bottom: 35px !important;
}
.ux-project-content .stack-cards__item .card-title {
  font-family: "Gilroy-Medium";
  font-size: 22px;
  margin-bottom: 0;
}
.ux-project-content .stack-cards__item .card-desc {
  margin-top: 30px;
}
.ux-project-content .stack-cards__item .card-desc:not(:last-child) {
  margin-bottom: 20px !important;
}
.ux-project-content .card-point {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ux-project-content .card-point li {
  background-color: #1e1e1f;
  width: 47%;
  margin-bottom: 30px;
  padding: 30px;
}
.ux-project-content .persona-grid {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ux-project-content .persona-grid li {
  width: 47%;
  margin-bottom: 30px;
}
.ux-project-content .storyboard-group {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.ux-project-content .storyboard-group li {
  width: 23%;
  margin-bottom: 40px;
  margin-left: 2.66%;
}
.ux-project-content .storyboard-group li p {
  font-size: 14px;
  margin-top: 10px;
}
.ux-project-content .storyboard-group li:nth-child(1),
.ux-project-content .storyboard-group li:nth-child(5) {
  margin-left: 0;
}
.ux-project-content .storyboard-heading {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px !important;
}
.ux-project-content .two-grid,
.ux-project-content .one-grid {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ux-project-content .two-grid li {
  width: 47%;
  margin-bottom: 40px;
  text-align: center;
}
.ux-project-content .one-grid li {
  margin-top: 75px;
  text-align: center;
}
.ux-project-content .phone-images-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.ux-project-content .phone-images-grid .image-grid-item {
  width: 30%;
  margin-bottom: 100px;
}
.ux-project-content .phone-images-grid p {
  text-align: center;
  margin-top: 24px;
}
.wire-slider-img,
#light-slider-vmware img {
  width: 100%;
  height: auto;
}
.slider-controls img {
  width: 40px;
  height: auto;
  margin-top: 20px;
  margin-left: 20px;
  cursor: pointer;
}
.social {
  width: 200px;
}
.social img {
  width: 30px;
  height: auto;
  cursor: pointer;
  transition: 0.2s;
}
.social img:hover {
  transform: scale(1.3);
}
.videowrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer {
  margin-top: 50px;
  padding: 50px 0;
  background: #1e1e1f;
}
.footer .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer p {
  font-family: "Gilroy-Regular";
  font-size: 20px;
  width: 80%;
  margin-bottom: 0;
  line-height: 50px;
}
.footer p span {
  font-family: "Gilroy-Medium";
}
.footer .social {
  width: 200px;
}
.bottom-quote-div {
  margin-bottom: 80px;
}
.bottom-btns h3,
.bottom-btns p {
  color: #000;
}
.bottom-btns h3 {
  font-family: "Gilroy-Medium";
  display: flex;
  font-size: 30px;
  align-items: baseline;
}
.bottom-btns p {
  font-size: 20px;
}
.next-project-link1 h3 svg {
  transform: rotate(-180deg);
  margin-right: 10px;
}
.next-project-link2 h3 svg {
  margin-left: 10px;
}
.next-project-link1,
.next-project-link2 {
  color: #000;
  opacity: 0.7;
}
.next-project-link2 svg,
.next-project-link1 svg {
  width: 24px;
  height: 24px;
}
.next-project-link1:hover,
.next-project-link2:hover {
  color: #000;
  opacity: 1;
}
.next-project-link1 {
  float: left;
}
.next-project-link2 {
  float: right;
}
.justpara {
  line-height: 2.5em;
}
.profile-pic {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.connect-heading {
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.email-address {
  color: #f0c94f;
  font-family: "Gilroy-Medium";
}
.about-content {
  margin-top: 100px;
  margin-bottom: 50px;
}
.about-social {
  width: 50%;
}
.about-social img {
  width: 50px;
  height: auto;
  transition: 0.2s;
}
.about-social img:hover {
  transform: scale(1.3);
}
.about-social a:not(:last-child) {
  margin-right: 30px;
}
.persona-img {
  display: block;
  margin: 0 auto;
}
.mobile-only {
  display: none;
}
.hamburger {
  padding: 15px 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  width: 25px;
  height: 21px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.hamburger-inner:after,
.hamburger-inner:before {
  content: "";
  display: block;
}
.hamburger-inner:before {
  top: -9px;
}
.hamburger-inner:after {
  bottom: -9px;
}
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
  -o-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner:before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  -o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner:after {
  -webkit-transition: bottom 0.1s 0.25s ease-in,
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  -o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lightSlider:before,
.lightSlider:after {
  content: " ";
  display: table;
}
.lightSlider {
  overflow: hidden;
  margin: 0;
}
.lSSlideWrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.lSSlideWrapper > .lightSlider:after {
  clear: both;
}
.lSSlideWrapper .lSSlide {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: all 1s;
  -webkit-transition: all 1s;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform, height;
  transition-property: transform, height;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
  position: relative;
}
.lSSlideWrapper .lSFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  margin-right: 0;
  width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
  z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
  opacity: 1;
}
.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
  background-color: #737386;
  border-radius: 30px;
  display: inline-block;
  width: 5px;
  height: 5px;
  overflow: hidden;
  text-indent: -999em;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.2s linear;
}
.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #f0c94f;
  width: 8px;
  height: 8px;
}
.lSSlideOuter .media {
  opacity: 0.8;
}
.lSSlideOuter .media.active {
  opacity: 1;
}
.lSSlideOuter .lSPager.lSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before,
.lSSlideOuter .lSPager.lSGallery:after {
  content: " ";
  display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
  clear: both;
}
.lSAction > a {
  width: 32px;
  display: block;
  top: 50%;
  height: 32px;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
  opacity: 1;
}
.lSAction > .lSPrev {
  background-position: 0 0;
  left: 10px;
}
.lSAction > .lSNext {
  background-position: -32px 0;
  right: 10px;
}
.lSAction > a.disabled {
  pointer-events: none;
}
.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
}
.lSSlideOuter.vertical {
  position: relative;
}
.lSSlideOuter.vertical.noPager {
  padding-right: 0 !important;
}
.lSSlideOuter.vertical .lSGallery {
  position: absolute !important;
  right: 0;
  top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
  width: 100% !important;
  max-width: none !important;
}
.lSSlideOuter.vertical .lSAction > a {
  left: 50%;
  margin-left: -14px;
  margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
  background-position: 31px -31px;
  bottom: 10px;
  top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
  background-position: 0 -31px;
  bottom: auto;
  top: 10px;
}
.lSSlideOuter.lSrtl {
  direction: rtl;
}
.lSSlideOuter .lightSlider,
.lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider,
.lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}
.lSSlideOuter .lightSlider > *,
.lSSlideOuter .lSGallery li {
  float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,
.lSSlideOuter.lSrtl .lSGallery li {
  float: right !important;
}
@-webkit-keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
.lSSlideOuter .rightEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}
.lSSlideOuter .leftEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}
.lSSlideOuter.vertical .rightEnd {
  -webkit-animation: topEnd 0.3s;
  animation: topEnd 0.3s;
  position: relative;
}
.lSSlideOuter.vertical .leftEnd {
  -webkit-animation: bottomEnd 0.3s;
  animation: bottomEnd 0.3s;
  position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
code[class*="language-"],
pre[class*="language-"] {
  color: #c5c8c6;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: Inconsolata, Monaco, Consolas, "Courier New", Courier, monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #1d1f21;
}
:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #7c7c7c;
}
.token.punctuation {
  color: #c5c8c6;
}
.namespace {
  opacity: 0.7;
}
.token.property,
.token.keyword,
.token.tag {
  color: #96cbfe;
}
.token.class-name {
  color: #ffffb6;
  text-decoration: underline;
}
.token.boolean,
.token.constant {
  color: #9c9;
}
.token.symbol,
.token.deleted {
  color: #f92672;
}
.token.number {
  color: #ff73fd;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a8ff60;
}
.token.variable {
  color: #c6c5fe;
}
.token.operator {
  color: #ededed;
}
.token.entity {
  color: #ffffb6;
  cursor: help;
}
.token.url {
  color: #96cbfe;
}
.language-css .token.string,
.style .token.string {
  color: #87c38a;
}
.token.atrule,
.token.attr-value {
  color: #f9ee98;
}
.token.function {
  color: #dad085;
}
.token.regex {
  color: #e9c062;
}
.token.important {
  color: #fd971f;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
@media (max-width: 767.98px) {
  .container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .ux-navbar .toggle-menu {
    display: block;
  }
  .ux-navbar .ux-menu {
    position: fixed;
    width: 100%;
    background-color: #060607;
    top: 0;
    left: 15px;
    right: 15px;
    margin: 0;
    text-align: left;
    height: 100vh;
    min-height: 400px;
    display: none;
    padding-top: 100px;
    overflow-y: scroll;
  }
  .ux-navbar .ux-menu ul {
    margin-left: 40px;
  }
  .ux-navbar .ux-menu ul li {
    display: block;
    margin-bottom: 10px;
  }
  .ux-navbar .ux-menu ul li a {
    padding: 10px 0 2px 0;
    font-size: 18px;
    display: inline-block;
  }
  .ux-navbar .ux-menu ul li.active a {
    color: #f0c94f;
  }
  .ux-navbar .ux-menu ul {
    margin-left: 0;
  }
  .ux-hero .title h1 {
    font-size: 36px;
  }
  .ux-hero {
    height: calc(100vh - 99px);
  }
  .starting-straight-line {
    border: 1px solid #f0c94f;
  }
  .main-intro h3 {
    font-size: 25px;
    width: 80%;
  }
  .ux-worklist-item {
    display: flex;
    flex-direction: column;
    padding: 75px 0;
  }
  .ux-worklist-item:nth-child(odd) {
    flex-direction: column;
  }
  .ux-worklist-item figure {
    width: 100%;
  }
  .ux-worklist-item .ux-worklist-item-text {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
    text-align: center;
  }
  .ux-worklist-item .ux-worklist-item-text .ux-worklist-item-title {
    font-size: 20px;
  }
  .ux-worklist-item .ux-worklist-item-text .ux-worklist-item-desc {
    margin-top: 20px;
  }
  .ux-worklist-item .ux-worklist-item-text .ux-worklist-item-button {
    position: relative;
    padding: 10px 20px;
    text-align: center;
    margin: 0 auto;
  }
  .ux-project-title h1 {
    font-size: 50px;
  }
  .main-details-tab {
    margin: 30px 0;
  }
  .ux-project-content .sticky {
    flex-direction: column;
  }
  .ux-project-content .sticky .sticky-title {
    width: 100%;
    margin-bottom: 50px;
  }
  .ux-project-content .sticky .sticky-title h3 {
    font-size: 30px;
  }
  .ux-project-content .sticky .sticky-content {
    width: 100%;
  }
  .ux-project-content .full-widther {
    font-size: 40px;
  }
  .ux-project-content .toggle-sides .toggle-sides-item,
  .ux-project-content .toggle-sides .toggle-sides-item:nth-child(odd) {
    flex-direction: column;
  }
  .ux-project-content .toggle-sides .toggle-sides-item figure {
    width: 100%;
  }
  .ux-project-content .toggle-sides .toggle-sides-item .toggle-sides-item-text {
    width: 100%;
  }
  .ux-project-content .design-process {
    flex-direction: column;
  }
  .ux-project-content .design-process .design-process-nav {
    display: none;
  }
  .ux-project-content .design-process .design-process-matter {
    width: 100%;
  }
  .ux-project-content
    .design-process
    .design-process-matter
    .design-process-content-item-heading {
    font-size: 30px;
  }
  .ux-project-content .vmware-dp .persona-card:not(:last-child) {
    margin-bottom: 50px;
  }
  .ux-project-content .vmware-dp .persona-img {
    width: 50%;
  }
  .ux-project-content .stack-cards__item {
    width: 100%;
    padding: 30px 20px;
  }
  .ux-project-content .phone-images-grid .image-grid-item {
    width: 45%;
  }
  .lSSlideOuter .lSPager.lSpg > li a {
    height: 4px;
    width: 4px;
  }
  .slider-controls img {
    width: 30px;
    height: auto;
    margin-top: 10px;
    margin-left: 15px;
  }
  .ux-lock-hero .lock-div img {
    width: 70px;
    height: auto;
  }
  #anomaly-iframe-wrapper iframe {
    width: 100%;
    height: 300px;
  }
  .testimony {
    padding: 50px 0;
  }
  .testimony blockquote p {
    font-size: 20px;
  }
  .next-project-link1,
  .next-project-link2 {
    display: block;
    margin: 0 auto;
    float: none;
    margin-bottom: 50px;
  }
  .next-project-link2 h3 {
    float: none;
  }
  .testimony .button {
    width: 60%;
    letter-spacing: 0;
    text-align: center;
  }
  .social {
    width: 80%;
  }
  .footer {
    padding: 30px 0;
  }
  .footer .container-fluid {
    display: block;
  }
  .footer p {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  .footer .social {
    width: 40%;
  }
  .footer .social img {
    width: 30px;
    height: 30px;
  }
  .about-content h1 {
    margin-top: 30px;
  }
  .about-content .connect-heading {
    font-size: 22px;
  }
  .about-content .about-social {
    width: 100%;
    text-align: center;
  }
}
