@charset "UTF-8";

@font-face {
  font-family: Karu;
  src: url('fonts/Karu-Regular.woff');
  font-weight: 400;
}

@font-face {
  font-family: Karu;
  src: url('fonts/Karu-Medium.woff');
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  /*text-decoration: none;
  list-style: none;*/
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

:root {
  --black: #131920;
  --dark_grey: #4F5761;
  --grey: #b0b2b5;
  --light_grey: #eff2f5;
  --grey-border: #E0E0E0;
  --white: #FFFFFF;
  --yellow: #F4E771;
  --purple: #8f4fe3;
  --dark_purple: #8138e0;
  --blue: #5968F3;
  --dark_blue: #4153F1;
  --light_green: #A0FC98;
}

body {
  height: 100%;
  font-family: Karu;
  color: var(--dark_grey);
  line-height: 160%;
  font-size: 18px;
  letter-spacing: -0.0001px;
}

p {
  margin-bottom: 32px !important;
}

a {
  text-decoration: none !important;
}

b {
  font-weight: 500;
  color: var(--black);
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--grey-border);
  margin: 1em 0;
  padding: 0;
}

.problem-inline .number-bubble {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ED5F59;
  color: white;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  margin-right: 8px;
  margin-top: 3px;
}

.solution-inline .number-bubble {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #3DA946;
  color: white;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  margin-right: 8px;
  margin-top: 3px;
}

.problem-inline {
  display: flex;
  padding: 16px;
  /*border: 1px solid #FBDFDE;
  border-radius: 8px;
  margin-bottom: 8px;*/
}

.solution-inline {
  display: flex;
  padding: 16px;
  /*border: 1px solid #FBDFDE;
  border-radius: 8px;
  margin-bottom: 8px;*/
}

.problem-inline p, .solution-inline p {
  margin-bottom: unset !important;
  text-align: left !important;
}

.big-body-text {
  font-size: 21px;
  line-height: 160%;
}

.blur-entrance {
  /*filter: blur(2px);*/
  transform: translateX(16px);
  transition: all linear 0ms;
}

.unblur {
  /*filter: blur(0);*/
  transform: translateX(0);
  transition: all linear 0ms;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.small-heading {
  margin-bottom: 8px !important;
}

.break-xxl {
  height: 128px;
}

.break-xl {
  height: 96px;
}

.break-l {
  height: 64px;
}

.break-m {
  height: 40px;
}

.break-s {
  height: 32px;
}

.break-xs {
  height: 16px;
}

.link-arrow {
  color:var(--blue);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  /*text-decoration: underline !important;*/
}

#process-and-philosophy {
  background-color: var(--black);
  padding: 64px;
  /*height: 100vh;*/
  text-align: center;
}

#process-and-philosophy div:nth-child(1) {
  transition-delay: 0ms;
}

#process-and-philosophy div:nth-child(2) {
  transition-delay: 200ms;
}

#portfolio-items div:nth-child(1) {
  transition-delay: 0ms;
}

#portfolio-items div:nth-child(2) {
  transition-delay: 200ms;
}

.flex-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.full-height {
  height: 100%;
}

.flex-container > div {
  width: 100%;
}

.portfolio-item  > div {
  /*padding: 48px;*/
}

.portfolio-item {
  /*flex: 2 1 auto;*/
  flex: 1;
  /*padding: 64px;*/
  position: relative;
  height: 100%;
}

.portfolio-item img {
  padding: 64px;
  width: 100%;
  object-fit: cover; /* fill space, preserve aspect ratio */
  display: block;
}

.portfolio-item-secondary:nth-child(1) {
  /*flex: 2 1 auto;*/
  width: 100%;
  flex: 1;
  background-image: url(img/stylefinder-thumb.png);
  background-size: cover;
  background-position: center;
}

.portfolio-item-secondary:nth-child(2) {
  /*flex: 2 1 auto;*/
  width: 100%;
  flex: 1;
  background-image: url(img/quantum-thumb.png);
  background-size: cover;
  background-position: center;
}

.portfolio-item-secondary p, #about-me p, #what_was_achieved p,  #what_did_i_learn p {
  font-size: 21px;
  line-height: 160%;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 96px;
  height: 100%;
}

.portfolio-item-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  padding: 96px;
  height: 100%;
  transition: all linear 200ms;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
  transition: all linear 200ms;
}

.overlay p {
  opacity: 0.8;
}

.overlay-dark {
  background: var(--yellow);
}

.overlay-dark p {
  color: var(--black);
  opacity: 1;
}

.portfolio-img {
  width: 100%;
  flex: 1;
  background-image: url(img/stylefinder-thumb.png);
  background-size: contain;
  background-position: center;
}

.portfolio-full {
  height: 100vh;
}

.portfolio-first-item {
  background-image: url(img/nordshop-showcase.png);
  background-size: contain;
  background-position: center;
  height: inherit;
  background-repeat-x: no-repeat;
  background-repeat-y: no-repeat;
}

.portfolio-second-item {
  background-image: url(img/quantum-showcase.png);
  background-size: contain;
  background-position: center;
  height: inherit;
  background-repeat-x: no-repeat;
  background-repeat-y: no-repeat;
}

.portfolio-third-item {
  background-image: url(img/stylefinder-thumb.png);
  background-size: contain;
  background-position: center;
  height: inherit;
  background-repeat-x: no-repeat;
  background-repeat-y: no-repeat;
}


/*.portfolio-item img {
  padding: 24px
}*/

/*.flex-container ul li {
  list-style: disc;
  margin-left: 16px;
  margin-bottom: 8px;
}*/

.push-up {
  margin-top: -24px !important;
}

a:hover {
  text-decoration: underline !important;
}

b a {
  text-decoration: underline;
}

.white {
  color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: auto;
  margin-top: 128px;
  padding: 0 24px;
}

#hero {
  display: flex;
  align-items: center;
  height: 100vh;
  z-index: 0;
  max-width: 1152px;
  margin: auto;
  /*position: relative;
  top: -64px;*/
}

#about-me {
  display: flex;
  align-items: center;
  /*height: 100vh;*/
  z-index: 0;
  max-width: 1152px;
  margin: auto;
  /*position: relative;
  top: -64px;*/
  padding: 64px 0;
  padding-top: 0;
}

#about-me > div, #hero > div {
  padding: 24px;
}

img {
  max-width: 100%;
}

.left-side {
  /*float: left;*/
  /*margin-left: 24px;
  padding-right: 24px;*/
  /*width: 50%;*/
  list-style: none;
}

.right-side {
  /*float: right;*/
  z-index: -1;
  /*margin-right: 24px;*/
  /*visibility: hidden;*/
 /* width: 50%;*/
  background-image: url(img/photo-hero.png);
  background-size: cover;
  height: 100%;
  /*position: absolute;*/
  right: 0;
  background-position: center;
  
}

.sketching {
  background-image: url(img/photo-sketching.png);
  /*position: absolute;*/
}

.working {
  background-image: url(img/photo-working.png);
  /*position: absolute;*/
}

.right-side img {
  margin-top: 128px;
}

.text-center {
  text-align: center;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--black);
  color: var(--white);
}

footer > div {
  display: flex;
  padding: 24px!important;
  justify-content: space-between;
  align-items: center;
}

#copyright {
  /*width: 20%;*/
  font-size: 12px;
  text-transform: uppercase;
}

#menu {
  margin-right: -16px;
}

#menu_footer li {
  float: left;
  margin-right: 48px;
}

#menu_footer li a {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

#contact_footer a {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
}

#contact_footer p {
  font-size: 18px;
  line-height: 160%;
}

.social_links li {
  float: right;
  padding: 0 8px;
}

.max-width {
  max-width: 720px;
  margin: auto;
}

/*h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
  margin: 0 0 16px 0;
  color: var(--black);
}*/

h1 {
  position: relative;
  font-size: 48px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px !important;
  color: var(--black);
}

h1:before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background-color: var(--yellow);
  /*background-image: linear-gradient(#F47171, #F4E771, #71F496);*/
  left: -16px;
  position: absolute;
}

h2 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 16px !important;
  color: var(--black);
}

h2:before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background-color: var(--yellow);
  left: -16px;
  position: absolute;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 16px !important;
  color: var(--black);
}

h4 {
  font-size: 30px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 40px !important;
  color: var(--black);
}

h5 {
  font-size: 36px;
  font-weight: 500;
  line-height: 130%;
  margin: 0 0 16px 0;
  color: var(--black);
}

h6 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 16px !important;
  color: var(--black);
}

.portfolio-title-and-paragraph {
  padding: 16px;
}

ol {
  /*margin-bottom: 32px !important;*/
}

ol li {
  margin-bottom: 64px;
  margin-left: 24px;

  /*margin-bottom: 64px;
  border-left: 1px solid var(--dark_grey);
  padding-left: 24px;
  list-style: none;*/
}

/*section {
  margin-bottom: 64px;
  padding: 64px;
}*/

.solution {
  padding: 24px;
  background-color: #ecf9ec;
  border-radius: 8px;
  border: 1px solid #c5edc5;
}

.grey-wrap {
  padding: 24px;
  background-color: #fafafa;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
}

.small-list {
  padding-left: 16px;
}

.small-list li {
  margin-bottom: 8px;
}

.project-dates {

}

.project-dates p {
  /*font-size: 14px;*/
}

.push-right {
  margin-left: 24px;
}

header{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 88px;
    background: rgba(255,255,255,1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all ease 100ms;
}

header.sticky {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  height: 80px;
  transition: all ease 100ms;
}

header .inner{
    max-width: 1152px;
    height: 100%;
    display: block;
    margin: 0 auto;
    padding: 0 24px;
}

header .logo{
    display: table;
    height: 100%;
    float: left;
}

header .logo div{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

header .logo img{
    height: 50px;
    margin-top: 5px;
}

header nav{
    float: right;
    height: 100%;
}

header nav li{
    display: table;
    height: 100%;
    float: left;
    /*margin-right: 30px;*/
}

header nav li:last-of-type{
    margin-right: 0;
}

header nav span {
    display: table-cell;
    vertical-align: middle;
}

header nav a{
    color: var(--black);
}

header nav .button:hover{
    filter: brightness(1.05);
}

footer li, #contact_footer li {
  list-style: none;
}

#contact_footer {
  padding: 48px 64px;
  background-color: var(--black);
  color: var(--white);
}

.button-primary {
  position: relative;
  top: 0;
  display: block;
  line-height: 40px;
  background-color: var(--black);
  color:var(--white);
  border-radius: 8px;
  padding: 0 24px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500 !important;
  text-decoration: none;
  width: fit-content;
  transition: all ease 100ms;
}

.button-primary:hover {
  top: -1px;
  text-decoration: none !important;
  background-color: #263240;
  transition: all ease 100ms;
}

.button-primary-big {
  position: relative;
  top: 0;
  display: block;
  line-height: 44px;
  background-color: var(--black);
  color:var(--white);
  border-radius: 8px;
  padding: 0 30px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500 !important;
  text-decoration: none;
  width: fit-content;
  transition: all ease 100ms;
  /*transition-delay: 100ms;*/
}

.button-primary-big:hover {
  top: -2px;
  text-decoration: none !important;
  background-color: #263240;
  transition: all ease 100ms;
}

.button-primary-white {
  position: relative;
  top: 0;
  display: block;
  line-height: 40px;
  background-color: var(--white);
  color:var(--black) !important;
  border-radius: 8px;
  padding: 0 24px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500 !important;
  text-decoration: none;
  width: fit-content;
  transition: all ease 100ms;
}

.button-primary-white:hover {
  top: -1px;
  text-decoration: none !important;
  background-color: var(--light_grey);
  transition: all ease 100ms;
}

.button-primary-white-big {
  position: relative;
  top: 0;
  display: block;
  line-height: 44px;
  background-color: var(--white);
  color:var(--black) !important;
  border-radius: 8px;
  padding: 0 30px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500 !important;
  text-decoration: none;
  width: fit-content;
  transition: all ease 100ms;
}

.button-primary-white-big:hover {
  top: -2px;
  text-decoration: none !important;
  background-color: var(--light_grey);
  transition: all ease 100ms;
}

.button-secondary {
  position: relative;
  top: 0;
  display: block;
  line-height: 40px;
  color:var(--black);
  border-radius: 8px;
  border: 1px solid var(--black);
  padding: 0 24px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500 !important;
  width: fit-content;
  transition: all ease 100ms;
}

.button-secondary:hover {
  top: -1px;
  text-decoration: none !important;
  color: #263240;
  border: 1px solid #263240;
  /*box-shadow: 0px 1px #263240;*/
  transition: all ease 100ms;
}

.button-secondary-big {
  position: relative;
  top: 0;
  display: block;
  line-height: 44px;
  color:var(--black);
  border-radius: 8px;
  border: 1px solid var(--black);
  padding: 0 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500 !important;
  width: fit-content;
  transition: all ease 100ms;
}

.button-secondary-big:hover {
  top: -2px;
  text-decoration: none !important;
  color: #263240;
  border: 1px solid #263240;
  /*box-shadow: 0px 2px #263240;*/
  transition: all ease 100ms;
}

.button-secondary-white {
  position: relative;
  top: 0;
  display: block;
  line-height: 40px;
  color:var(--white);
  border-radius: 8px;
  border: 1px solid var(--white);
  padding: 0 24px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500 !important;
  width: fit-content;
  transition: all ease 100ms;
}

.button-secondary-white:hover {
  top: -1px;
  text-decoration: none !important;
  color: var(--light_grey);
  border: 1px solid var(--light_grey);
  /*box-shadow: 0px 1px var(--white);*/
  transition: all ease 100ms;
}

.button-secondary-big-white {
  position: relative;
  top: 0;
  display: block;
  line-height: 44px;
  color:var(--white);
  border-radius: 8px;
  border: 1px solid var(--white);
  padding: 0 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500 !important;
  width: fit-content;
  transition: all ease 100ms;
}

.button-secondary-big-white:hover {
  top: -2px;
  text-decoration: none !important;
  color: var(--light_grey);
  border: 1px solid var(--light_grey);
  /*box-shadow: 0px 2px var(--white);*/
  transition: all ease 100ms;
}

.coming-soon {
  display: block;
  line-height: 40px;
  color:var(--white);
  border-radius: 8px;
  /*border: 1px solid var(--black);*/
  /*padding: 0 24px;*/
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500 !important;
  width: fit-content;
}

.button-row a {
  float: left;
  margin-right: 16px;
}

.left-side li {
  float: left;
  margin-right: 16px;
}

#menu li a, #mobile-menu li a {
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}

#design_choices_matter {
  padding: 64px 64px 24px 64px;
  color: var(--black);
}

.cont-mid {
  margin-top: 0;
}

#methods-and-strategy {
  background-color: var(--light_grey);
  padding: 64px 0;
}

.wrap_top {
  height: 100%;
}

.hidden {
  opacity: 0;
  transition: all 1s;
}

.hidden-anim-up {
  opacity: 0;
  transform: translateY(16px);
  transition: all 1s;
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

.step-wizard {
  height: 100%;
  max-width: 1152px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.step-wizard-list{
  list-style-type: none;
  border-radius: 10px;
  display: flex;
  padding: 24px 0;
  position: relative;
  z-index: 10;
  color: var(--black)
}

.step-wizard-item{
  padding: 0 20px;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive:1;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  /*min-width: 170px;*/
  position: relative;
}
.step-wizard-item + .step-wizard-item:after{
  content: "";
  position: absolute;
  left: 32px;
  top: 32px;
  border-top: 1px dotted var(--black);
  width: 100%;
  height: 1px;
  transform: translateX(-50%);
  z-index: -10;
}
.progress-count{
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 400;
  line-height: 130%;
  font-size: 24px;
  margin: 0 auto;
  position: relative;
  z-index:10;
  color: transparent;
}
.progress-count:after{
  content: "";
  height: 64px;
  width: 64px;
  background: var(--light_grey);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -10;
}
.progress-count:before{
  content: "";
  height: 10px;
  width: 20px;
  border-left: 1px dotted var(--black);
  border-bottom: 1px dotted var(--black);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  transform-origin: center center;
}
.progress-label{
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 8px;
}

.progress-subtext {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 8px;
  color: var(--black);
}


.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before{
  display: none;
}
/*.current-item ~ .step-wizard-item .progress-count:after{
  height:10px;
  width:10px;
}
.current-item ~ .step-wizard-item .progress-label{
  opacity: 0.5;
}*/
.current-item .progress-count:after{
  border: 1px dotted var(--black);
}
.current-item .progress-count{
  color: var(--white)
}

.step-wizard-item:nth-child(2) {
  transition-delay: 200ms;
}

.step-wizard-item:nth-child(3) {
  transition-delay: 400ms;
}

.step-wizard-item:nth-child(4) {
  transition-delay: 600ms;
}

/*.portfolio-item:nth-child(1) {
  transition-delay: 200ms;
}

.portfolio-item:nth-child(2) {
  transition-delay: 400ms;
}*/

.portfolio-item-secondary:nth-child(1) {
  transition-delay: 200ms;
}

.portfolio-item-secondary:nth-child(2) {
  transition-delay: 400ms;
}

.animation-sequence:nth-child(1) {
  transition-delay: 100ms;
}

.animation-sequence:nth-child(2) {
  transition-delay: 200ms;
}

.animation-sequence:nth-child(3) {
  transition-delay: 600ms;
}

.animation-sequence:nth-child(4) {
  transition-delay: 800ms;
}

.blog-item:nth-child(1) {
  transition-delay: 200ms;
}

.blog-item:nth-child(2) {
  transition-delay: 400ms;
}

.anim-delay:nth-child(1) {
  transition-delay: 200ms;
}

.anim-delay:nth-child(2) {
  transition-delay: 400ms;
}

#blog {
  background-color: #fafafa;
  border-top: 1px solid #f1f1f1;
}

.blog-item {
  flex: 1;
  padding: 64px 0;
  padding-right: 64px;
  padding-left: 24px;
}

.blog-item h6 {
  font-size: 24px;
}

.blog-heading {
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.align-to-top {
  align-items: normal;
}

.scroll-fix {
  scroll-margin-top: 80px;
}

.button-footer {
  font-size: 14px !important;
}

@media (max-width: 1023px) {
  .flex-container, #about-me {
    flex-direction: column;
  }

  .blog-item {
    padding-left: 0;
  }

  #about-me {
    height: unset;
    padding: 64px;
  }
  .left-side {
    padding-right: unset;
    width: unset;
    margin-left: unset;
  }
  .right-side {
    padding-left: unset;
    width: unset;
  }
  .no-top-padding {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .no-bottom-padding {
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-item {
    padding-right: 0;
  }
  /*#menu {
    display: none;
  }*/

  .hide-on-mobile {
    display: none;
  }
  header {
    height: 80px;
  }
  #hero {
    margin-top: 64px;
    padding-bottom: 64px;
  }
  #hamburger{
    display: table;
  }
  #mobile-menu {
    display: none;
  }
  .scroll-fix {
    scroll-margin-top: 80px;
  }
  .reverse-column {
    flex-direction: column-reverse;
  }
  .max-width {
    max-width: unset;
  }
  .portfolio-full {
    height: unset;
  }
  .portfolio-full {
    padding: 64px 24px;
  }
  .portfolio-item {
    padding: 0;
  }
  #process-and-philosophy {
    padding: 64px 0;
    height: unset;
  }
  .right-side {
    /*opacity: 0.4 !important;
    position: absolute;*/
    display: none;
  }
  #hero {
    height: unset;
  }
  .hide-on-mobile {
    display: none;
  }
  .animation-sequence:nth-child(4) {
    transition-delay: unset;
  }
}

@media (max-width: 767px) {

  #what_was_achieved li,  #what_did_i_learn li {
    margin-left: 16px;
  }

  .break-l {
    height: 32px;
  }

  .break-m {
    height: 16px;
  }

  .break-s {
    height: 16px;
  }

  /*#hero, */#about-me, .overlay {
    padding: 64px 0;
  }
  .button-primary, .button-primary-white, .button-secondary {
    text-align: center;
  }
  #contact_footer {
    padding: 64px 0;
  }
  /*#menu li a {
    padding: 0;
  }*/
  .button-footer {
    /*width: 100% !important;*/
  }
  #menu_footer, .social_links {
    display: none;
  }
  #copyright {
    margin: auto;
  }
  .push-down {
    margin-bottom: 16px;
  }
  .step-wizard-list {
    flex-direction: column;
  }
  .step-wizard-item + .step-wizard-item:after {
    /*display: none;*/
    transform: rotate(90deg);
    left: 0;
    top: -2px;
    opacity: 0.4;
  }
  .step-wizard-item + .step-wizard-item:last-child:after {
    /*display: none;*/
  }
  .step-wizard-item {
    margin-bottom: 64px;
    /*background-color: var(--black);*/
  }
  .step-wizard-list {
    padding: 0;
  }
  #hero {
    height: unset;
  }
  .button-full-width {
    width: 100%;
    text-align: center;
    display: block;
  }
  .portfolio-title-and-paragraph {
    padding: 0;
  }
  .mobile-img-padding-bottom {
    margin-bottom: 64px;
  }
  .small-heading {
    text-align: unset;
    /*margin-left: 24px;*/
    font-size: 24px;
    /*margin-bottom: 0px !important;*/
  }

  .hide-below-768 {
    display: none;
  }
  .flex-container {
    justify-content: unset;
  }
  #process-and-philosophy {
    padding: 64px 0;
    height: unset;
  }
  .portfolio-full {
    padding: 64px 24px;
  }
  .portfolio-item {
    padding: 0;
  }
  .right-side {
    /*opacity: 0.4 !important;
    position: absolute;*/
    display: none;
  }
  /*.no-bottom-padding {
    padding: 0 !important;
  }*/
  header{
    background: rgba(255,255,255,1);
  }
  .container-article {
    margin-top: 128px;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {

  .small-list li {
    text-align: left;
  }

  .align-left {
    text-align: left;
  }

  #what_was_achieved,  #what_did_i_learn {
    margin-left: 24px;
  }

  #what_was_achieved h6,  #what_did_i_learn h6, #what_was_achieved li p,  #what_did_i_learn li p {
    text-align: left;
  }

  .show-above-768 {
    display: none;
  }
  .hide-on-tablet {
    display: none;
  }
  * {
    text-align: center;
  }
  .button-row, .button-primary, .button-primary-big, .button-primary-white, .button-primary-white-big, .button-secondary, .button-secondary-big, .button-secondary-big-white, .button-secondary-white, .coming-soon, .link-arrow {
    display: inline-flex;
  }
  ol li p {
    text-align: left;
  }
  .blog-item {
    margin: auto;
    max-width: 612px;
  }
  .portfolio-title-and-paragraph h3, .portfolio-title-and-paragraph p {
    text-align: left;
  }
  h2 {
    position: unset;
  }
  /*.no-bottom-padding {
    padding: 0 !important;
  }*/
  h1::before {
    display: none;
  }
  .display {
    display: block;
  }
  .hide {
    display: none;
  }
}

@media (min-width: 1023px) {
  .hide-on-desktop {
    display: none;
  }
  .mobile-hero-photo {
    display: none;
  }
  /*#process-and-philosophy div:nth-child(1) {
    padding-right: 64px;
  }*/
}

@media (min-width: 480px) {

}

@media (max-width: 767px) and (min-width: 320px) {
  .mobile-img {
    width: 100%;
  }
  .hide-on-tablet {
    display: none;
  }
  .push-up-title {
    margin-top: -32px !important;
  }
}

@media (max-width: 1024px) and (min-width: 767px) and (max-height: 620px) {
  header {
    position: unset;
  }
  .scroll-fix {
    scroll-margin-top: 0;
  }
  .button-row .button-primary-big {
    display: none;
  }
}

@media (max-width: 329px) {
  #menu .button-primary, .hide-on-tablet {
    display: none;

  }
}