@font-face {
  font-family: "Teko";
  src: local("Teko SemiBold"), local("Teko-SemiBold"), url("./fonts/Teko/Teko-SemiBold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: "IBMPlexSans";
  src: local("IBMPlexSans ExtraLight"), local("IBMPlexSans-ExtraLight"), url("./fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLight.woff") format("woff");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: "IBMPlexSans";
  src: local("IBMPlexSans Light"), local("IBMPlexSans-Light"), url("./fonts/IBM_Plex_Sans/IBMPlexSans-Light.woff") format("woff");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: "IBMPlexSans";
  src: local("IBMPlexSans Regular"), local("IBMPlexSans-Regular"), url("./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "IBMPlexSans";
  src: local("IBMPlexSans Medium"), local("IBMPlexSans-Medium"), url("./fonts/IBM_Plex_Sans/IBMPlexSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "IBMPlexSans";
  src: local("IBMPlexSans SemiBold"), local("IBMPlexSans-SemiBold"), url("./fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

/*!
 * some animations from animate.css
 * @see {@link https://github.com/daneden/animate.css}
 * daneden.github.io/animate.css/
 */
/* .animated {
	animation-duration: 2s;
	animation-fill-mode: both;
} */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

/*!
 * img lightbox
 */
.img-lightbox {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: 999999; }

.img-lightbox img {
  display: block;
  opacity: 0;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  border: 0;
  vertical-align: middle;
  user-select: none;
  cursor: zoom-out;
  margin: auto; }

/*!
 * reset for animate.css
 * daneden.github.io/animate.css/
 */
.img-lightbox.animated,
.img-lightbox img.animated {
  animation-duration: 0.4s;
  animation-fill-mode: both; }

/*!
 * another pure css spinner
 * @see {@link https://epic-spinners.epicmax.co/}
 */
.img-lightbox .half-circle-spinner,
.img-lightbox .half-circle-spinner * {
  box-sizing: border-box; }

.img-lightbox .half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%); }

.img-lightbox .half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent; }

.img-lightbox .half-circle-spinner .circle.circle-1 {
  border-top-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite; }

.img-lightbox .half-circle-spinner .circle.circle-2 {
  border-bottom-color: #FFFFFF;
  animation: half-circle-spinner-animation 1s infinite alternate; }

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.img-lightbox.is-loaded .half-circle-spinner {
  display: none; }

.img-lightbox .btn-close {
  position: fixed;
  top: .75rem;
  right: 1.000rem;
  width: 1.500rem;
  height: 1.500rem; }

/*!
 * pure css version
 * @see {@link https://codepen.io/brissmyr/pen/egidw}
 */
.img-lightbox .btn-close:before,
.img-lightbox .btn-close:after {
  content: " ";
  width: 0.2em;
  height: 1.500em;
  position: absolute;
  right: 0.625em;
  background-color: #000000; }

.img-lightbox .btn-close:before {
  transform: rotate(45deg); }

.img-lightbox .btn-close:after {
  transform: rotate(-45deg); }

/*!
 * @see {@link https://github.com/englishextra/iframe-lightbox/issues/12}
 */
.img-lightbox--open {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  height: auto; }

@media screen and (max-width: 767px) {
  header {
    position: fixed !important;
    padding: .5em 0 !important;
    top: 0; }
    header .hide-in-mobile {
      display: none; }
  .hide-in-desktop {
    display: flex !important; }
  #menu .container #hamburger {
    display: block !important;
    cursor: pointer;
    z-index: 30; }
  #menu #menu_radio:checked ~ .overlay {
    opacity: 1;
    display: block; }
  .mobile-only {
    margin-top: 5em !important; }
  .flexbox {
    flex-wrap: wrap !important; }
  .intro img {
    margin-top: 1em !important; }
  .intro h1 {
    margin-top: 0em !important; }
  .intro .description, .intro .skill-container {
    margin-left: 5em; }
  footer a {
    font-size: 1em !important;
    font-family: "IBMPlexSans", "IBMPlexSans-SemiBold", "HelveticaNeue-CondensedSemiBold", Arial, sans-serif;
    font-weight: 500; }
  .flex-start {
    align-self: flex-start;
    margin-left: 1.25em !important; }
  .flex-end {
    align-self: flex-end;
    margin-right: 1.25em !important; }
  h2 {
    font-size: 1.55em !important; }
  .intro-wrapper h1 {
    width: 75%; }
  .case-abstract li {
    flex-direction: column; }
    .case-abstract li h3 {
      margin-bottom: 0; }
    .case-abstract li span {
      width: 100% !important; }
  .content figure {
    flex-direction: column !important;
    width: 95%;
    margin: .5em auto; }
  .content .shrink {
    width: 45% !important;
    flex-shrink: 1; }
  .skills:nth-child(2) {
    margin-left: 0 !important; } }

@media screen and (max-width: 929px) {
  #scrollup {
    display: none !important; } 
  .figures figure .smaller {
    width: 100% !important;} }

@media (min-width: 769px) and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 769px) and (min-width: 1024px) and (min-resolution: 192dpi), (min-width: 769px) and (min-width: 1024px) and (min-resolution: 2dppx) {
  .flexbox {
    flex-wrap: nowrap; }
  .intro {
    justify-content: center !important; }
    .intro .flex-item:nth-child(2) {
      margin-left: 0.5em; }
  .case {
    justify-content: center !important; }
  .case-intro {
    background-size: auto;
    background-position: center !important;
    justify-content: center !important; }
    .case-intro .intro-wrapper {
      align-content: flex-end; }
  .case-abstract ul li, .case-abstract ol li {
    text-align: left; }
    .case-abstract ul li span, .case-abstract ol li span {
      width: 68% !important;
      margin-right: 5em; }
  .case-study .content > * {
    position: relative;
    margin-left: 20px !important;
    margin-right: 20px !important; }
  .case-study .content > .figures {
    margin-left: 0 !important;
    margin-right: 0 !important; }
  .width-limit {
    max-width: 1080px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .text-limit {
    max-width: 768px !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto; } }

body {
  background-color: #fff;
  background-image:linear-gradient(to bottom right, #fff, #f2f2f2);
  margin: 0;
  font-family: "IMBPlexSans", "IBMPlexSans", "HevelticaNeue", Arial, san-serif;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none; 
  }
  body:-webkit-scrollbar {
    display: none; }
  body p {
    margin-top: 0.5em; }

h1 {
  margin: 0; 
  font-size: 250%;
  }

header {
  background: white;
  padding: 1em 0em;
  width: 100%;
  box-shadow: 0px 5px 5px rgba(50, 50, 50, 0.3);
  z-index: 25;
  align-items: baseline !important; }

.logo {
  margin-left: .6em;
  font-family: "Teko", "Teko-SemiBold", "HelveticaNeue-CondensedBold", Arial, san-serif;
  font-size: 1.25em;
  font-weight: bold;
  color: #f47621;
  padding-bottom: 0; }

.hide-in-desktop {
  display: none; }

#menu_check {
  display: none; }

#menu {
  margin: 0;
  padding: 0;
  text-align: right;
  position: fixed;
  right: 0;
  top: 1em;
  z-index: 26; }
  #menu #hamburger {
    border: none;
    margin-right: 1.5em;
    font-size: .85em;
    font-family: "IBMPlexSans", "IBMPlexSans-SemiBold", "HelveticaNeue-CondensedSemiBold", Arial, sans-serif;
    font-weight: 500;
    position: relative;
    top: -.1em; }
  #menu #hamburger {
    right: 0;
    position: relative;
    width: 16px;
    height: 15px;
    background: none;
    transition: .2s ease-in-out; }
    #menu #hamburger:focus, #menu #hamburger:active {
      outline: none; }
    #menu #hamburger span {
      display: block;
      position: absolute;
      width: 16px;
      border-bottom: black 3px solid;
      opacity: 1;
      left: 0;
      transition: .2s ease-in-out; }
      #menu #hamburger span:nth-child(1) {
        top: 0px; }
      #menu #hamburger span:nth-child(2) {
        top: 6px; }
      #menu #hamburger span:nth-child(3) {
        top: 12px; }
    #menu #hamburger.is-active > span:nth-child(1), #menu #hamburger.is-active > span:nth-child(3) {
      top: 6px !important;
      opacity: 0; }

.intro {
  position: relative;
  transition: width .2s ease-in-out;
  line-height: 1.75; }
  .intro h1 {
    margin-top: 28px; }
  .intro:before {
    content: "";
    position: absolute;
    padding-bottom: 0.5em;
    height: 100%;
    width: calc(100% - 2.75em);
    right: 0;
    z-index: -1; }
  .intro h3 {
    margin-bottom: 0; }

.width-limit {
  max-width: 1080px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.text-limit {
  max-width: 768px !important; }

.flexbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%; }

.full-width {
  width: 100%;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw); }
  .full-width img {
    max-width: 100%; }

.flex-item {
  margin-top: 0em;
  margin-left: 1.25em;
  margin-right: 1.5em;
  margin-bottom: 1em; }

.flex-center {
  align-self: center; }

.flex-column {
  flex-direction: column; }

.text_center {
  text-align: center !important; }

.margin_top_xlarge {
  margin-top: 3.5em; }

.margin_top_large {
  margin-top: 2em; }

.margin_top_mid {
  margin-top: 1em; }

.margin_top_small {
  margin-top: 0.5em; }

.margin_top_zero {
  margin-top: 0; }

.margin_bot_remove {
  margin-bottom: -2em; }

.case {
  height: 100%;
  position: relative;
  width: 100%;
  padding: 2em 0 2em 0; }
  .case:nth-child(odd) {
    margin-top: 2em; }
    .case:nth-child(odd):after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: calc(100% - 1.25em);
      background: #fff;
      border: solid #ededed;
      z-index: -2;
      height: 100%; }
    .case:nth-child(odd):before {
      content: "";
      position: absolute;
      right: 0;
      top: -1.25em;
      width: calc(100% - 1.25em);
      background: #f47621;
      z-index: -3;
      height: 100%; }
  .case:nth-child(even) {
    margin: 5em auto;
    margin-bottom: 3em !important; }
    .case:nth-child(even):after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: calc(100% - 1.25em);
      background: #fff;
      border: solid #ededed;
      z-index: -2;
      height: 100%; }
    .case:nth-child(even):before {
      content: "";
      position: absolute;
      left: 0;
      top: -1.25em;
      width: calc(100% - 1.25em);
      background: #f47621;
      z-index: -3;
      height: 100%; }
  .case:nth-last-child(1) {
    cursor: pointer; }
    .case:nth-last-child(1):after {
      background: #f47621 !important; }
    .case:nth-last-child(1):before {
      background: white !important;
      border: none !important; }
    .case:nth-last-child(1) h3 {
      margin: .1em 0;
      font-size: 1.5em; }
    .case:nth-last-child(1) span {
      color: black;
      background: linear-gradient(to bottom, #f47621 0%, #f47621 100%);
      border: none;
      background-position: 0% 100%;
      background-repeat: repeat-x;
      background-size: 4px 0px;
      padding-top: 0.1em; }
  .case h2, .case u {
    margin: 0em; }
  .case p {
    margin: .25em 4em .75em 4em;
    font-family: "IBMPlexSans", "IBMPlexSans-Light", "HevelticaNeue-Thin", Arial, sans-serif;
    font-weight: 400; }
  .case > span {
    letter-spacing: -0.03em;
    color: #444666;
    font-family: "IBMPlexSans", "IBMPlexSans-Regular", "HelveticaNeue", "HevelticaNeue-Regular", Arial, sans-serif;
    font-weight: 400;
    background: #ededed;
    padding: 0.1em .5em 0.1em .5em; }
  .case a {
    position: relative;
    top: 42px; }
    .case a:hover {
      top: 40px; }

.button {
  background-color: #586F7C;
  color: white !important;
  padding: .5em 2em !important;
  border: #586F7C 0px solid;
  border-bottom: none;
  font-family: "IBMPlexSans", "IBMPlexSans-SemiBold", "HelveticaNeue-CondensedSemiBold", Arial, sans-serif;
  font-weight: 500;
  transition: top .2s, background-color .2s, color .2s; }
  .button:hover {
    background: white;
    border: #586F7C 3px solid;
    color: #586F7C !important; }

.case-intro {
  background: #ededed;
  margin-top: 0em;
  height: 350px;
  min-height: 350px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  transition: background-image .3s, background-size .3s;
  text-align: center;
  position: relative; }
  .case-intro.pricing {
    background-image: url("/images/simplifying-pricing.jpg"); }
  .case-intro.framework {
    background-image: url("/images/framework.jpg"); }
  .case-intro.rebranding {
    background-image: url("/images/rebranding.jpg"); }
  .case-intro.compliant {
    background-image: url("/images/compliant.jpg"); }
  .case-intro.orbis {
    background-image: url("/images/orbis.jpg"); }
  .case-intro:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), black);
    width: 100%;
    height: 350px; }
  .case-intro .intro-wrapper {
    position: absolute;
    bottom: 1.5em;
    text-align: left;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto; }
    .case-intro .intro-wrapper h1, .case-intro .intro-wrapper h2 {
      text-align: left;
      margin: 0;
      padding: 0;
      letter-spacing: 0px;
      line-height: 1.15;
      font-kerning: none;
      margin: 0 20px; }
    .case-intro .intro-wrapper h1, .case-intro .intro-wrapper h2 {
      position: relative;
      color: white; }
    .case-intro .intro-wrapper h1 {
      display: inline-block; }
    .case-intro .intro-wrapper h2 {
      display: inline-block;
      word-wrap: break-word;
      font-size: 2.5em; }

.case-abstract {
  width: 100%;
  justify-content: center;
  background: #ededed; }
  .case-abstract ul, .case-abstract ol {
    width: 100%;
    list-style: none;
    padding: 0;
    margin-bottom: 2.5em; }
    .case-abstract ul li, .case-abstract ol li {
      margin-left: 20px;
      margin-right: 20px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-bottom: rgba(0, 0, 0, 0.4) 1px solid;
      transition: margin-left .1s, margin-right .1s; }
      .case-abstract ul li:last-child, .case-abstract ol li:last-child {
        border-bottom-style: none; }
      .case-abstract ul li span, .case-abstract ol li span {
        width: 78%;
        margin-bottom: 1em; }

.cta {
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }
  .cta .button {
    margin: 0em auto 0em auto;
    position: relative;
    bottom: -16px;
    transition: bottom .2s; }
    .cta .button:hover {
      bottom: -13px; }

#scrollup {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 60px;
  z-index: 10;
  cursor: pointer !important; }
  #scrollup a {
    position: relative;
    bottom: -.65em;
    padding: 0em !important;
    margin-right: 0 !important;
    background: rgba(0, 0, 0, 0);
    right: 0px;
    opacity: 1; }
    #scrollup a:hover {
      background: rgba(0, 0, 0, 0); }
    #scrollup a:hover > span > i {
      opacity: 0.75;
      bottom: -12px; }
  #scrollup span {
    vertical-align: middle; }
    #scrollup span i {
      position: absolute;
      border-style: solid;
      border-color: black;
      border-width: 0 3px 3px 0;
      display: block;
      height: 12px;
      width: 12px;
      margin: 0 !important;
      bottom: -14px;
      right: 23px;
      transition: border-color .2s ease-in, bottom .2s; }
      #scrollup span i:after {
        content: "";
        position: absolute;
        height: 28px;
        border-left: black 3px solid;
        transform: rotate(135deg) translate(-9px, 6px);
        transition: border-left .2s ease-in; }
      #scrollup span i.up {
        transform: rotate(-135deg); }

.flex-end {
  align-self: flex-end !important; }

.proto {
  width: 100%;
  position: relative;
  justify-content: center; }
  .proto .button {
    position: absolute !important;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5em; }

.conclusion {
  width: 100%;
  position: relative;
  margin-top: .75em;
  margin-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
  padding: 1em 0 1.5em 0;
  background: #ededed; }
  .conclusion div h4, .conclusion div ul, .conclusion div p, .conclusion div span {
    margin-left: 20px;
    margin-right: 20px; }
    .conclusion div h4 li, .conclusion div ul li, .conclusion div p li, .conclusion div span li {
      margin-bottom: 1em; }
  .conclusion div span.subheaders {
    color: #444666;
    font-size: 0.85em;
    display: block;
    margin-bottom: 0;
    line-height: 1; }

.case-study, .case-abstract {
  line-height: 1.75; }

.case-study {
  width: 100%;
  justify-content: center; }
  .case-study .text-limit {
    max-width: 768px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .case-study figure {
    display: block;
    width: 95%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 0;
    }
    .case-study figure a {
      border-bottom: none; }
      .case-study figure a:hover {
        cursor: zoom-in !important;
        border-bottom: none;
        background: none; }
    .case-study figure figcaption {
      text-align: center;
      color: #444666;
      font-style: italic;
      font-size: 0.8em;
      line-height: 5em; }
      .case-study .nocaption {
        font-size: 0 !important;
        line-height: 0 !important;
      }
      .case-study .top-border {
        border-top: #444666 1px solid; }
    .case-study figure img {
      text-align: center; }
      .case-study .border {
        border: rgba(0, 0, 0, 0.2) 1px solid; }
  .case-study .content {
    width: 100%;
    text-align: left; }
    .case-study .content > * {
      margin-left: 20px;
      margin-right: 20px; }
    .case-study .content > .figures {
      margin-left: 0px;
      margin-right: 0px; }
    .case-study .content span {
      color: #444666;
      font-size: 0.85em;
      display: block;
      margin-bottom: 0;
      line-height: 1; }
  .case-study h2, .case-study h3, .case-study h4 {
    display: block; }
  .case-study h4 {
    font-size: 2.0em;
    margin-bottom: 0; }
  .case-study ul li, .case-study ol li {
    margin: .25em auto; }
    .case-study ul li:first-child, .case-study ol li:first-child {
      margin-top: 1.25em; }
    .case-study ul li:last-child, .case-study ol li:last-child {
      margin-bottom: 1.25em; }

h2 {
  font-family: "IBMPlexSans", "IBMPlexSans-ExtraLight", "HevelticaNeue-Light", Arial, sans-serif;
  font-weight: 200;
  font-size: 2.35em; }

a {
  background: linear-gradient(to bottom, #586F7C 0%, #586F7C 100%);
  background-position: 0% 100%;
  background-repeat: repeat-x;
  background-size: 4px 0px;
  text-decoration: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #586F7C;
  transition: background-size .3s ease-out 0s, border-bottom-color .2s ease-in-out 0s, color 0.3s ease-in-out 0s, border-bottom-width 0.3s ease-in-out 0s; }
  a:visited, a:active, a:link {
    color: black; }
  a:hover {
    cursor: pointer !important;
    background-size: 4px 50px;
    color: white;
    border-bottom-width: 0px; }

.outro {
  cursor: pointer; }

footer {
  position: relative; }
  footer .flex-item {
    margin-top: 1em;
    margin-bottom: 1em; }
  footer a {
    font-size: .85em;
    font-family: "IBMPlexSans", "IBMPlexSans-SemiBold", "HelveticaNeue-CondensedSemiBold", Arial, sans-serif;
    font-weight: 500; }

.flex-start {
  align-self: flex-start;
  margin-left: 1.4em; }

.flex-end {
  align-self: flex-end;
  margin-right: 1.4em; }

.overlay {
  position: fixed;
  background: white;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  z-index: 20;
  transition: .3s ease; }
  .overlay.open {
    overflow-y: visible;
    visibility: visible;
    opacity: 0.9;
    bottom: 0;
    height: 1910px; }
  .overlay .logo {
    position: fixed;
    padding-bottom: 0; }
  .overlay .overlay-#menu {
    position: absolute;
    margin-top: 2em;
    justify-content: center;
    align-items: flex-start;
    height: 1910px; }
  .overlay a {
    position: fixed;
    left: 0;
    font-size: 2em;
    margin: .5em;
    margin-left: .6em !important;
    border-bottom-style: solid;
    border-bottom-width: 4px;
    border-bottom-color: #f47621;
    opacity: .9; }
    .overlay a:nth-last-child(1) {
      margin-right: 0; }
    .overlay a:nth-child(1) {
      bottom: 6.25em; }
    .overlay a:nth-child(2) {
      bottom: 4.25em; }
    .overlay a:nth-child(3) {
      bottom: 2.25em; }
    .overlay a:nth-child(4) {
      bottom: .25em; }
    .overlay a:hover {
      border-bottom-color: white; }
  .overlay nav {
    position: absolute;
    bottom: 0.3em; }

button {
  cursor: pointer;
  border: none;
  background: white; }

nav {
  margin-top: 0.25em; }
  nav a {
    font-size: .85em;
    font-family: "IBMPlexSans", "IBMPlexSans-SemiBold", "HelveticaNeue-CondensedSemiBold", Arial, sans-serif;
    font-weight: 500;
    margin-right: .85em; }
    nav a:nth-last-child(1) {
      margin-right: 1.5em; }

.figures {
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: baseline; }
  .figures figure {
    flex: 1 1 auto; }
    .figures figure.shrink {
      width: 40%;
      flex-shrink: 1; }
    .figures figure.one_liner {
      width: 25%;
      padding-top: 1.25em;
      padding-left: 1.25em;
      padding-right: 1.25em;
      padding-bottom: .75em; 
      font-size: initial !important; }
      .figures figure.one_liner:last-child {
        padding-top: 0em;
        margin-top: 0em; }
    .figures figure img {
      width: 100%;
      height: auto; }
    .figures figure .smaller {
    width: 75%; }

.disc {
  position: absolute;
  left: calc(0% + 50px);
  display: block;
  top: -5em;
  width: 50px; }
  .disc.hidden {
    opacity: 0; }

@keyframes flyby {
  0% {
    opacity: 0;
    width: 50px;
    left: calc(0% + 50px);
    top: -5em; }
  25% {
    opacity: 1;
    left: calc(20% + 50px); }
  50% {
    opacity: 1;
    width: 80px;
    top: -6.5em; }
  100% {
    opacity: 0;
    width: 50px;
    left: calc(100% - 50px);
    top: -5em; } }

.disc-move {
  animation: flyby 2s linear;
  animation-fill-mode: both;
  animation-iteration-count: 1; }

.border_none {
  border: none; }

.btn-close {
  background: none;
  border-bottom: none; }

.skills {
  margin-left: 0.25em;
  margin-bottom: 1em;
  margin-right: 3em;
  flex: 1 1 auto;
  width: 200px; }
  .skills:nth-child(1) {
    order: 1; }
  .skills:nth-child(2) {
    order: 2; }
  .skills:nth-child(3) {
    order: 4; }
  .skills:nth-child(4) {
    order: 3; }
  .skills h3 {
    font-weight: 400;
    color: #444666 !important;
    padding: 0 0.25em 0 0.25em;
    margin-left: -0.25em !important;
    line-height: 1.25;
    position: relative; }
    .skills h3:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      background: #ededed;
      width: 100%;
      height: 100%;
      z-index: -1; }
    .skills h3:before {
      content: "";
      position: absolute;
      top: .25em;
      right: -.25em;
      background: #f47621;
      width: 100%;
      height: 100%;
      z-index: -1; }
  .skills ul {
    list-style-position: outside;
    padding: 0 0em 0 0;
    position: relative;
    margin: 0em 0em 0 1em; }
  .skills li {
    line-height: 1.6;
    text-indent: 0em; }
    .skills li:first-child {
      margin-top: .5em; }
    .skills li.nolist {
      list-style-type: none !important; }

.bg_white {
  background: white !important; }

.bg_grey {
  background: #ededed !important; }

.bg_gradient_grey {
  background: black;
  background-image: linear-gradient(#111111, #333333); }

.justify-start {
  justify-content: flex-start;
  flex-wrap: wrap; }
