:root {
  --primary-blue: #0652dd;
  --primary-green: #23ffc4;
  --secondary-green: #1dd1a1;
  --bg-dark: #110d40;
  --text-light: #ffffff;
  --transition-speed: 0.1s;
}

/* Animations */
@keyframes doubleBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes smoothBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  40%,
  43% {
    transform: translateY(-15px);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }

  70% {
    transform: translateY(-8px);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }

  90% {
    transform: translateY(-3px);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 6px;
  border: 3px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-green);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-blue);
  color: white;
  padding: 10px 20px;
  z-index: 9999;
  text-decoration: none;
  font-weight: bold;
  transition: top var(--transition-speed) ease;
}

.skip-link:focus {
  top: 0;
}

/* Blog Hero Links Hover */
.blog-hero-section a:hover {
  color: var(--primary-blue) !important;
}

body {
  font-family: Lato2, Arial, sans-serif;
  color: #110d40;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

h1 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 55px;
  line-height: 63px;
  font-weight: 900;
  letter-spacing: -0.02em;
  /*text-shadow: 1px 1px 0 #110d40;*/
}

h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 39px;
  line-height: 47px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h3 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 27px;
  line-height: 35px;
  font-weight: 900;
}

h4 {
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 19px;
  line-height: 23px;
  font-weight: 900;
}

h5 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-family: Lato, sans-serif;
  font-size: 19px;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h6 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 900;
}

p {
  position: relative;
  z-index: 20;
  margin-top: 0px;
  margin-bottom: 12px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-shadow: none;
}

a {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 900;
  text-decoration: none;
  text-shadow: none;
}

a.image {
  border: none;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}

a.image:hover {
  border-bottom: none;
  padding-bottom: 2px;
}

a:hover {
  border-bottom: 2px solid transparent;
  color: #0652dd;
  text-decoration: none;
}

a:visited {
  color: #22197f;
}

ul {
  margin-top: 0px;
  margin-bottom: 20px;
  padding-left: 16px;
}

ol {
  margin-top: 0px;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  margin-bottom: 12px;
  font-weight: 400;
  text-shadow: none;
}

strong {
  font-weight: bold;
}

blockquote {
  margin-bottom: 20px;
  padding: 0px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 16px;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  margin-top: 7px;
  color: #839eb2;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.cursor-help {
  cursor: help;
}

.nav-link {
  height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav-link:hover {
  color: #2196f3;
  border-bottom-style: none;
}

.nav-link.light {
  height: 0px;
  min-height: 36px;
  margin-right: 4px;
  padding: 6px 12px;
  border-bottom-style: none;
  font-family: Lato2, Arial, sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.nav-link.light:hover {
  border-bottom-style: none;
  color: #0652dd;
  text-decoration: none;
  border-bottom-style: none;
}

.nav-link.light.hollow {
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
  border: 2px solid #fff;
  border-radius: 32px;
  -webkit-transition: border 150ms ease, color 150ms ease, background-color 150ms ease;
  transition: border 150ms ease, color 150ms ease, background-color 150ms ease;
}

.nav-link.light.hollow:hover {
  background-color: #fff;
  color: #0652dd;
  text-decoration: none;
}

.navigation-bar {
  position: relative;
  display: block;
  width: 940px;
  max-width: 100%;
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
}

.navigation-menu {
  margin-top: 12px;
}

.brand-name {
  position: relative;
  top: 3px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 16px;
  font-family: Lato2, Arial, sans-serif;
  color: #110d40;
  font-size: 19px;
  line-height: 27px;
  font-weight: 900;
  letter-spacing: 4px;
}

.section {
  position: relative;
  display: block;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding: 120px 10px;
  background-color: #fff;
}

.section.contact {
  display: block;
  background-color: #20e5b1;
  padding: 200px 10px;
}

.section.about-me {
  overflow: hidden;
  padding: 328px 0px 0px;
}

.section.about-me.fixed-nav-offset {
  padding-top: 320px;
}

.section.blog {
  background-color: #e2f9f3;
  background-image: -webkit-linear-gradient(270deg, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
}

.section.case-study-summary {
  overflow: hidden;
  padding-top: 16px;
}

.section.case-study-process.epro {
  background-color: #e5f4ff;
}

.section.case-study-process.auntieknitter {
  background-color: #f5f4f3;
}

.section.case-study-process.muni {
  background-color: #fffaf0;
}

.section.case-study-solution {
  overflow: hidden;
  background-color: #fff;
}

.section.more-case-studies {
  position: relative;
  overflow: hidden;
}

.section.case-study-results {
  padding-top: 128px;
  padding-bottom: 256px;
}

.section.case-study-results.epro {
  background-color: #e5f4ff;
}

.section.case-study-results.auntieknitter {
  background-color: #f5f4f3;
}

.section.case-study-results.muni {
  background-color: #fffaf0;
}

.section.fixed-nav-offset {
  padding-top: 256px;
}

.epro-hero-section {
  position: relative;
  display: block;
  overflow: hidden;
  /*min-height: 1280px;*/
  padding-top: 20px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #e5f4ff;
  font-family: Lato2, Arial, sans-serif;
  color: #001d38;
  font-weight: 700;
}

.heading-hero {
  margin-bottom: 20px;
  padding-left: 0px;
  font-family: Lato2, Arial, sans-serif;
  font-weight: 900;
  text-align: left;
  letter-spacing: -0.03em;
  text-decoration: none;
  text-transform: none;
  /*text-shadow: 1px 1px 0 #110d40;*/
}

h1.heading-hero {
  position: relative;
  z-index: 20;
  font-size: 80px;
  line-height: 86px;
}

h2.heading-hero {
  position: relative;
  z-index: 20;
  font-size: 64px;
  line-height: 72px;
}

.footer {
  display: block;
  padding: 50px 10px;
  background-color: #110d40;
}

.utility-page-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1dd1a1;
  font-family: Lato2, Arial, sans-serif;
}

.utility-page-ontent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

.perex-hero {
  position: relative;
  z-index: 30;
  margin-bottom: 16px;
  padding-left: 50px;
  font-family: Lato2, Arial, sans-serif;
  color: #fff;
  font-size: 21px;
  line-height: 32px;
  font-weight: 300;
  text-align: left;
  text-shadow: 0 0 0 hsla(0, 0%, 100%, .6);
}

.container-hero {
  position: relative;
  z-index: 30;
  overflow: visible;
  text-align: left;
}

.supheading-hero {
  margin-top: 128px;
  margin-bottom: 8px;
  font-family: Lato2, Arial, sans-serif;
  color: #110d40;
  font-size: 39px;
  line-height: 47px;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.epro-hero {
  margin-top: -80px;
}

.epro-hero p,
.auntieknitter-hero p,
.muni-hero p {
  width: 80%;
}

.epro-hero h1.heading-hero,
.auntieknitter-hero h1.heading-hero,
.muni-hero h1.heading-hero {
  font-size: 64px;
  line-height: 72px;
}

.button {
  min-height: 52px;
  min-width: 180px;
  padding-top: 17px;
  border-radius: 32px;
  background-color: #0652dd;
  -webkit-transition: border 150ms ease, color 150ms ease, background-color 150ms ease;
  transition: border 150ms ease, color 150ms ease, background-color 150ms ease;
  direction: ltr;
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.button.blue {
  position: relative;
  z-index: 20;
  min-width: 180px;
  margin-bottom: 12px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 32px;
  font-family: Lato2, Arial, sans-serif;
  color: #fff;
}

.button.blue:hover {
  background-image: -webkit-linear-gradient(0deg, #0652dd, #22197f);
  background-image: linear-gradient(90deg, #0652dd, #22197f);
  text-decoration: none;
  border-bottom-style: none;
}

.button.blue:active {
  background-image: none;
  box-shadow: 0 0 1px 1px #0652dd;
  text-shadow: none;
}

.button.blue.margin-bottom-32 {
  margin-bottom: 32px;
}

.button.blue.submit {
  display: block;
  min-height: 56px;
  margin-right: 0px;
  padding-top: 14px;
}

.button.blue.blog-post-button {
  margin-left: 20px;
}

.button.blue.header-btn {
  margin-right: 10px;
  margin-bottom: 16px;
  margin-left: 0px;
}

.button.green {
  position: relative;
  z-index: 20;
  display: inline-block;
  min-width: 179px;
  margin-bottom: 12px;
  float: none;
  background-color: #23ffc4;
  font-family: Lato2, Arial, sans-serif;
  color: #110d40;
}

.button.green:hover {
  background-image: -webkit-linear-gradient(0deg, #23ffc4, #e2f9f3);
  background-image: linear-gradient(90deg, #23ffc4, #e2f9f3);
  text-decoration: none;
  border-bottom-style: none;
}

.button.green:active {
  background-image: none;
  box-shadow: 0 0 1px 1px #23ffc4;
}

.button.green.float-right {
  float: right;
}

.button.green.header-btn {
  margin-right: 0px;
  margin-bottom: 16px;
  margin-left: 0px;
}

.button.white-hollow {
  position: relative;
  z-index: 20;
  min-width: 180px;
  padding-right: 10px;
  padding-left: 10px;
  border: 2px solid #fff;
  border-radius: 32px;
  background-color: transparent;
  font-family: Lato2, Arial, sans-serif;
  color: #fff;
}

.button.white-hollow:hover {
  background-color: #fff;
  background-image: none;
  color: #0652dd;
  text-decoration: none;
}

.button.white-hollow:active {
  background-image: none;
  box-shadow: 0 0 1px 1px #fff;
  text-shadow: none;
}

.button.white-hollow.instagram-button {
  display: none;
}

.header-buttons {
  position: relative;
  z-index: 30;
  margin-top: 176px;
  margin-bottom: 64px;
}

.perex {
  margin-bottom: 12px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
  text-shadow: none;
}

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

.nav-separator {
  display: inline-block;
  margin-right: 0px;
  padding: 5px 8px 4px;
  color: #fff;
  font-weight: 400;
}

.nav-link-twitter {
  margin-right: 8px;
  padding: 0px;
  border-bottom-style: none;
}

.nav-link-twitter:hover {
  border-bottom-style: none;
}

.nav-link-linkedin {
  border-bottom-style: none;
}

.nav-link-linkedin:hover {
  border-bottom-style: none;
}

.column-my-career {
  padding-top: 320px;
  padding-left: 10px;
}

.margin-bottom-128 {
  margin-bottom: 128px;
}

.italic-decoration {
  font-size: auto;
  line-height: auto;
  font-weight: 400;
}

.about-me-content {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f8f8fa;
}

.supheading-03 {
  margin-bottom: 8px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: 300;
  text-transform: uppercase;
}

.services-list {
  margin-bottom: 24px;
  padding-right: 20px;
  padding-left: 0px;
  list-style-type: none;
}

.service-icon {
  margin-top: 16px;
  margin-bottom: 24px;
}

.services-summary {
  position: relative;
  z-index: 20;
  display: block;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  font-family: Lato2, Arial, sans-serif;
  font-weight: 400;
}

.margin-bottom-96 {
  position: relative;
  margin-bottom: 96px;
}

.continue-reading-arrow {
  position: relative;
  z-index: 20;
  display: block;
  width: 48px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 4px 12px;
  float: right;
  border-bottom-style: none;
  font-family: Lato2, Arial, sans-serif;
  color: #fff;
  font-size: 35px;
  line-height: 43px;
  text-align: center;
  animation: smoothBounce 2s infinite;
}

.continue-reading-arrow:hover {
  color: var(--primary-blue) !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.continue-reading-arrow:visited {
  color: #fff;
}

.continue-reading-arrow.epro {
  display: block;
  width: 48px;
  margin: 80px auto 112px;
  float: none;
  color: #518ac2;
}

.continue-reading-arrow.epro:hover {
  color: #fbbe00 !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.continue-reading-arrow.epro:visited {
  color: #518ac2;
}

.continue-reading-arrow.auntieknitter {
  display: block;
  width: 48px;
  margin: 80px auto 112px;
  float: none;
  color: #818181;
}

.continue-reading-arrow.auntieknitter:hover {
  color: #eaad1a !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.continue-reading-arrow.auntieknitter:focus {
  color: #818181;
}

.continue-reading-arrow.muni {
  display: block;
  width: 48px;
  margin: 80px auto 112px;
  float: none;
  color: #f58e21;
}

.continue-reading-arrow.muni:hover {
  color: #ff6f1a !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.continue-reading-arrow.muni:visited {
  color: #f58e21;
}

.subheading-03 {
  position: relative;
  z-index: 20;
  margin-bottom: 20px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 21px;
  line-height: 29px;
  font-weight: 700;
  text-shadow: 0 0 0 rgba(0, 0, 0, .3);
}

.subheading-03.chosen-works-text {
  padding-left: 2px;
}

.subheading-04 {
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 24px;
  padding-top: 0px;
  padding-bottom: 0px;
  float: none;
  font-size: 14px;
  line-height: 18px;
  font-style: italic;
  font-weight: 400;
}

.subheading-04.learn-more {
  margin-top: 16px;
  margin-right: 16px;
  float: right;
}

.button-note {
  font-weight: 400;
  text-transform: none;
}

.paragraph-last {
  margin-bottom: 28px;
}

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

.perex-last {
  margin-bottom: 28px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
  text-shadow: none;
}

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

.perex-hero-black {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-twitter {
  margin-top: 16px;
  margin-right: 16px;
  float: right;
  border-bottom-style: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-twitter:hover {
  color: #0652dd;
  text-decoration: none;
  border-bottom-style: none;
}

.contact-twitter:visited {
  color: #e2f9f3;
}

.inline-block {
  display: inline-block;
}

.contact-linkedin-icon {
  margin-right: 2px;
  margin-bottom: 4px;
}

.contact-twitter-icon {
  margin-right: 0px;
}

.contact-linkedin {
  margin-top: 16px;
  margin-left: 16px;
  float: none;
  border-bottom-style: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-linkedin:hover {
  color: #0652dd;
  text-decoration: none;
  border-bottom-style: none;
}

.contact-linkedin:visited {
  color: #e2f9f3;
}

.link-white {
  border-bottom-style: none;
  color: #e5f4ff;
  font-weight: 700;
}

.link-white:hover {
  border-bottom-style: solid;
  border-bottom-color: #20e5b1;
  color: #23ffc4;
  text-shadow: none;
}

.link-white:visited {
  color: #1dd1a1;
}

.paragraph-footer {
  color: #fff;
}

.paragraph-footer.copyright {
  margin-top: 12px;
  margin-bottom: 0px;
}

.made-by {
  letter-spacing: 0.25em;
}

.div-block {
  display: none;
}

.blog-posts-list {
  margin-top: 64px;
  padding-right: 1px;
  padding-bottom: 0px;
}

.image-blog-post {
  margin-bottom: 24px;
  border: 8px solid #fff;
  box-shadow: 0 0 50px 13px #f2f2f2;
}

.image-blog-post2 {
  margin-bottom: 24px;
  border: 0px solid #fff;
  box-shadow: none;
}

.blog-posts-right {
  padding-top: 192px;
  padding-left: 10px;
}

.blog-posts-right2 {
  padding-top: 192px;
  padding-left: 10px;
}

.brma-standing {
  position: absolute;
  left: 100%;
  top: -288px;
  z-index: 10;
  margin-left: -447px;
}

.brma-working-photo-01 {
  width: 50%;
  max-width: 960px;
}

.brma-working-photo-02 {
  width: 50%;
  max-width: 960px;
}

.brma-logotype {
  display: inline-block;
  height: auto;
  float: none;
  border-bottom-style: none;
  text-align: left;
}

.brma-logotype:hover {
  border-bottom-style: none;
}

.brma-logotype.w--current {
  display: inline-block;
  height: auto;
  border-style: none;
}

.brma-logotype.w--current:hover {
  border-bottom-style: none;
}

.blog-post-link {
  border-style: none;
  color: #110d40;
}

.blog-post-link:hover {
  text-decoration: none;
  border-bottom-style: none;
}

.brma-logotype-footer {
  margin-top: 8px;
  margin-bottom: 5px;
  float: right;
  border-bottom-style: none;
}

.brma-logotype-footer.w--current {
  margin-top: 8px;
  padding-bottom: 0px;
  float: right;
  border-bottom-style: none;
}

.hero-section {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 940px;
  padding-top: 160px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #1dd1a1;
  font-family: Lato2, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}

.not-sticky .back-home {
  display: none;
}

.back-to-homepage {
  position: static;
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Lato2, Arial, sans-serif;
  color: #1b1464;
  font-size: 19px;
  line-height: 27px;
  font-weight: 900;
  text-align: left;
  letter-spacing: 0px;
  text-shadow: none;
}

.back-to-homepage.epro {
  color: #518ac2;
  border-bottom-style: 2px solid #518ac2;
}

.back-to-homepage.epro:hover {
  color: #fbbe00;
}

.back-to-homepage.auntieknitter {
  color: #818181;
}

.back-to-homepage.auntieknitter:hover {
  color: #eaad1a;
}

.back-to-homepage.muni {
  color: #f58e21;
}

.back-to-homepage.muni:hover {
  color: #ff6f1a;
}

.supheading-01 {
  margin-bottom: 8px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 39px;
  line-height: 47px;
  font-weight: 100;
  /*text-transform: uppercase;*/
}

.supheading-01 a {
  margin-bottom: 8px;
  font-family: Lato2, Arial, sans-serif;
  font-size: 39px;
  line-height: 47px;
  font-weight: 100;
  border: none;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
  color: #110d40;
}

.navigation-bar-case-study {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 400;
  padding-top: 40px;
  padding-left: 40px;
  background-color: transparent;
}

.epro-category-date {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 0px;
  padding-top: 16px;
  float: none;
  border-top: 4px solid #fbbe00;
  color: #518ac2;
  text-shadow: none;
  width: auto !important;
}

.case-study-category {
  text-transform: uppercase;
}

.case-study-content-nav {
  margin-bottom: 80px;
  /*margin-bottom: 156px;*/
  font-style: normal;
  text-align: center;
}

.case-study-content-nav.epro {
  color: #518ac2;
}

.case-study-content-nav.auntieknitter {
  color: #818181;
}

.case-study-content-nav.muni {
  color: #f58e21;
}

.epro {
  color: #001d38;
}

.section-heading {
  margin-bottom: 64px;
  font-size: 27px;
  line-height: 35px;
  font-weight: 100;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-number {
  position: relative;
  top: 5px;
  font-size: 55px;
  line-height: 63px;
  font-weight: 400;
}

.case-study-summary-right {
  margin-top: 265px;
}

.epro-logo {
  position: relative;
  display: none;
  margin-top: -40px;
  margin-bottom: -40px;
  padding-left: 83px;
}

.epro-image-shadow-grey {
  border: 1px none #000;
  box-shadow: 0 0 50px 0 #dedede;
}

.nav-twitter-icon {
  margin-top: 2px;
}

.black-text {
  font-weight: 900;
  letter-spacing: 0em;
}

.epro-phone-in-action {
  position: relative;
  z-index: 3;
  margin-top: -241px;
  float: right;
}

.epro-summary-symbol-01 {
  position: absolute;
  left: auto;
  top: 12%;
  right: 16%;
  z-index: 5;
}

.unordered-list {
  list-style-type: disc;
}

.epro-tablet-in-action {
  float: right;
}

.epro-results-symbol-01 {
  position: relative;
  z-index: 5;
  display: block;
  margin-bottom: 64px;
  clear: none;
}

.epro-results-symbol-03 {
  position: relative;
  z-index: 5;
  display: block;
  margin-top: 192px;
  margin-left: 56%;
}

.epro-results-symbol-02 {
  position: relative;
  z-index: 5;
  margin-top: 64px;
  margin-left: 24%;
}

.margin-bottom-64 {
  position: relative;
  margin-bottom: 64px;
}

.epro-process-symbol-02 {
  position: absolute;
  left: 56%;
  top: 67%;
  z-index: 5;
  display: none;
}

.epro-process-symbol-01 {
  position: absolute;
  left: 32%;
  top: auto;
  z-index: 5;
  display: none;
  margin-top: 24%;
}

.epro-me-working-02 {
  margin-top: -96px;
  padding-top: 0px;
}

.margin-bottom-32 {
  position: relative;
  margin-bottom: 32px;
}

.epro-image-shadow-blue {
  border: 1px none #000;
  box-shadow: 0 0 50px 0 #aac4f3;
}

._64-percent-width {
  width: 64%;
}

.epro-process-symbol-03 {
  position: relative;
  z-index: 5;
  display: none;
  margin-top: 48px;
  margin-left: 25%;
}

.epro-styleguide-assets {
  margin-top: -32px;
}

.epro-styleguide-colours {
  margin-bottom: 20px;
}

.epro-styleguide-icons {
  margin-bottom: 20px;
}

.epro-styleguide-spacing {
  margin-bottom: 20px;
}

.epro-styleguide-typography {
  margin-bottom: 20px;
}

.epro-solution-showcase02 {
  margin-top: -64px;
}

.epro-solution-showcase02.margin-bottom-128 {
  margin-top: 32px;
}

.epro-solution-showcase01 {
  margin-top: 0px;
  margin-bottom: -64px;
}

.other-case-studies-right {
  padding-top: 192px;
}

.other-case-studies-list {
  display: none;
  margin-top: 64px;
  padding-right: 1px;
  padding-bottom: 0px;
}

.other-case-studies-left-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
  display: none;
  width: 50%;
  height: 100%;
  background-color: #f5f4f3;
}

.other-case-studies {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.other-case-studies-right-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 0;
  width: 50%;
  height: 100%;
  background-color: #f2f2f2;
}

.other-case-studies-right-bg.epro {
  background-color: #e5f4ff;
}

.other-case-studies-right-bg.muni {
  background-color: #fffaf0;
}

.other-case-studies-right-bg.auntieknitter {
  background-color: #f5f4f3;
}

.homepage-image-preview,
.homepage-image-preview-polarion,
.homepage-image-preview-epro,
.homepage-image-preview-auntieknitter,
.homepage-image-preview-myamazingprague,
.homepage-image-preview-muni {
  margin-top: 20px;
  border-radius: 8px;
  display: block;
}

.homepage-image-preview-epro {
  margin-top: -100px;
}

.homepage-image-preview-auntieknitter {
  margin-top: -176px;
}

.homepage-image-preview-myamazingprague {
  border: 2px solid #000;
  border-left-width: 4px;
  border-right-width: 4px;
  border-bottom-width: 4px;
}

.homepage-image-preview-muni {
  margin-top: -100px;
}

.scroll-arrow-h3 {
  display: none;
}

.polarion-cs-preview {
  position: relative;
  min-height: 480px;
  padding-top: 128px;
}

.myamazingprague-cs-preview {
  position: relative;
  min-height: 480px;
  padding-top: 128px;
}

.epro-cs-preview {
  position: relative;
  min-height: 480px;
  padding-top: 128px;
}

.epro-cs-preview-image {
  position: absolute;
  left: 20px;
  top: 0px;
}

.epro-cs-summary {
  padding-top: 145px;
  padding-left: 24px;
  background-color: #fff;
}

.epro-cs-summary.auntieknitter {
  background-color: #f5f4f3;
}

.epro-cs-summary.muni {
  background-color: #fffaf0;
}

.epro-cs-summary p,
.auntieknitter-cs-summary p,
.muni-cs-summary p {
  margin-bottom: 8px;
}

.epro-cs-summary p.paragraph-last,
.auntieknitter-cs-summary p.paragraph-last,
.muni-cs-summary p.paragraph-last {
  margin-bottom: 28px;
}

.auntieknitter-cs-preview {
  position: relative;
  min-height: 480px;
  padding-top: 128px;
}

.auntieknitter-cs-preview.margin-bottom-160 {
  margin-bottom: 160px;
}

.auntieknitter-cs-preview-image {
  position: absolute;
  left: 20px;
  top: 0px;
}

.auntieknitter-cs-summary {
  padding-top: 140px;
  padding-left: 24px;
  background-color: #fff;
}

.auntieknitter-cs-summary.epro {
  background-color: #e5f4ff;
}

.auntieknitter-cs-summary.muni {
  background-color: #fffaf0;
}

.muni-cs-preview-image {
  position: absolute;
  left: 20px;
  top: 0px;
}

.muni-cs-summary {
  padding-top: 140px;
  padding-left: 24px;
  background-color: #fff;
}

.muni-cs-summary.epro {
  background-color: #e5f4ff;
}

.muni-cs-summary.auntieknitter {
  background-color: #f5f4f3;
}

.muni-cs-preview {
  position: relative;
  min-height: 480px;
  padding-top: 128px;
}

.epro-summary-symbol-02 {
  position: absolute;
  left: auto;
  top: 80%;
  right: 6%;
  z-index: 5;
}

.epro-summary-symbol-03 {
  position: absolute;
  left: 18%;
  top: 74%;
  right: auto;
  z-index: 5;
}

.epro-in-action-graphics-02 {
  position: relative;
  display: block;
  margin-bottom: 64px;
}

.epro-summary-symbol-04 {
  position: absolute;
  left: auto;
  top: -24%;
  right: 8%;
  z-index: 5;
}

.epro-summary-symbol-05 {
  position: absolute;
  left: 6%;
  top: 36%;
  z-index: 5;
}

.epro-summary-symbol-06 {
  position: absolute;
  left: auto;
  top: auto;
  right: 28%;
  bottom: 5%;
  z-index: 5;
}

.edm-designs {
  display: none;
}

.brma-standing-header {
  position: absolute;
  left: 50%;
  top: -130px;
  z-index: 10;
  margin-left: 0px;
}

.leading-decoration {
  position: absolute;
  left: -29px;
  width: 60px;
  height: 4px;
  margin-top: 14px;
  background-color: #fff;
}

.me-designer-text {
  width: 55%;
}

.heading-blog-post {
  text-decoration: none;
}

.image-radius {
  border-radius: 4px;
}

.epro-me-working-03.image-radius {
  margin-top: -8px;
}

.perex-404 {
  position: relative;
  text-align: left;
}

.brma-standing-header-404 {
  position: absolute;
  left: 50%;
  top: 50%;
  right: 365px;
  bottom: -65px;
  margin-top: -506px;
  margin-left: -70px;
}

.auntieknitter-category-date {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 0px;
  padding-top: 16px;
  float: none;
  border-top: 4px solid #eaad1a;
  color: #818181;
  text-shadow: none;
  width: auto !important;
}

.auntieknitter-hero-section {
  position: relative;
  display: block;
  overflow: hidden;
  /*min-height: 1280px;*/
  padding-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #f5f4f3;
  font-family: Lato2, Arial, sans-serif;
  color: #001d38;
  font-weight: 700;
}

.auntieknitter-hero {
  margin-top: 32px;
}

.auntiknitter-cs-main-image {
  margin-top: -36px;
}

.auntieknitter-woman-with-laptop.auntieknitter-image-shadow-grey {
  box-shadow: 0 0 50px 0 #dedede;
}

.auntieknitter-phone-in-action {
  position: relative;
  z-index: 3;
  margin-top: -206px;
  float: right;
}

.auntieknitter-phone-in-action.image-radius {
  margin-top: -190px;
}

.auntieknitter-man-with-tablet-in-action {
  float: right;
}

.auntieknitter-in-action-graphics-02 {
  display: none;
}

.auntieknitter-image-shadow-grey {
  border: 1px none #000;
  box-shadow: 0 0 50px 0 #dedede;
}

.auntieknitter-logotype-variants {
  margin-top: 0px;
}

.auntieknitter-logo {
  margin-top: 132px;
}

.auntieknitter-process-website-deployment {
  padding-top: 272px;
}

.auntieknitter-homepage-02 {
  position: relative;
  z-index: 20;
}

.auntieknitter-designs-the-story {
  padding-top: 64px;
}

.auntieknitter-homepage-graphics-02 {
  position: relative;
  z-index: 30;
  clear: both;
}

.auntie-knitter-designs-checkout {
  margin-top: 32px;
}

.muni-hero-section {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #fffaf0;
  /*min-height: 1280px;*/
}

.muni-cs-main-image {
  margin-top: -36px;
}

.muni-category-date {
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 0px;
  padding-top: 16px;
  float: none;
  border-top: 4px solid #ff6f1a;
  color: #f58e21;
  text-shadow: none;
  width: auto !important;
}

.auntieknitter-summary-symbol-01 {
  position: absolute;
  left: auto;
  top: 10%;
  right: 16%;
  z-index: 5;
}

.auntieknitter-summary-symbol-03 {
  position: absolute;
  left: 23%;
  top: 87%;
  right: auto;
  z-index: 5;
}

.auntieknitter-summary-symbol-02 {
  position: absolute;
  left: auto;
  top: 62%;
  right: 6%;
  z-index: 5;
}

.auntieknitter-summary-symbol-04 {
  position: absolute;
  left: auto;
  top: -46%;
  right: 17%;
  z-index: 5;
}

.auntieknitter-summary-symbol-05 {
  position: absolute;
  left: 6%;
  top: 36%;
  z-index: 5;
}

.auntieknitter-summary-symbol-06 {
  position: absolute;
  left: auto;
  top: auto;
  right: 27%;
  bottom: -15%;
  z-index: 5;
}

.auntieknitter-results-symbol-01 {
  position: relative;
  z-index: 5;
  display: block;
  margin-bottom: 64px;
  clear: none;
}

.auntieknitter-results-symbol-03 {
  position: relative;
  z-index: 5;
  display: block;
  margin-top: 192px;
  margin-left: 56%;
}

.auntieknitter-results-symbol-02 {
  position: relative;
  z-index: 5;
  margin-top: 64px;
  margin-left: 24%;
}

.auntieknitter-logotype {
  position: relative;
  left: 6%;
  top: -218px;
  display: none;
}

.muni-logo {
  position: relative;
  left: 13%;
  top: -73px;
  display: none;
}

.muni-summary-symbol-03 {
  position: absolute;
  left: 27%;
  top: 88%;
  right: 27px;
  bottom: 88px;
  z-index: 5;
}

.muni-summary-symbol-01 {
  position: absolute;
  left: auto;
  top: 12%;
  right: 14%;
  bottom: 12px;
  z-index: 5;
}

.muni-summary-symbol-02 {
  position: absolute;
  left: auto;
  top: 80%;
  right: 4%;
  z-index: 5;
}

.muni-summary-symbol-04 {
  position: absolute;
  left: auto;
  top: -35%;
  right: 7%;
  z-index: 5;
}

.muni-summary-symbol-05 {
  position: absolute;
  left: 6%;
  top: 27%;
  z-index: 5;
}

.muni-summary-symbol-06 {
  position: absolute;
  left: auto;
  top: auto;
  right: 15%;
  bottom: -4%;
  z-index: 5;
}

.muni-process-technologies-cloud {
  margin-top: 20px;
}

.muni-process-sketches.image-radius {
  margin-top: 256px;
}

.muni-tablet-in-action {
  float: right;
  box-shadow: 0 0 50px 0 #dedede;
}

.muni-in-action-graphics-02 {
  position: relative;
  margin-top: 64px;
}

.muni-3dviewer-01 {
  position: relative;
  z-index: 3;
  margin-top: -206px;
  float: right;
}

.muni-student-with-laptop.muni-image-grey-shadow {
  box-shadow: 0 0 50px 0 #dedede;
}

.muni-3dviewer-03 {
  position: relative;
  z-index: 3;
  margin-bottom: 32px;
  float: right;
}

.muni-3dviewer-03.image-radius {
  float: none;
}

.muni-3dviewer-04 {
  position: relative;
  z-index: 3;
  float: right;
}

.muni-3dviewer-04.image-radius {
  float: none;
}

.muni-3dviewer-05 {
  position: relative;
  z-index: 3;
  float: right;
}

.muni-3dviewer-05.image-radius {
  margin-bottom: 20px;
  float: none;
}

.muni-3dviewer-06 {
  position: relative;
  z-index: 3;
  float: right;
}

.muni-3dviewer-06.image-radius {
  margin-bottom: 20px;
  float: none;
}

.muni-3dviewer-07 {
  position: relative;
  z-index: 3;
  float: right;
}

.muni-3dviewer-07.image-radius {
  float: none;
}

.muni-3dviewer-08 {
  position: relative;
  z-index: 3;
  float: right;
}

.muni-3dviewer-08.image-radius {
  left: 160px;
  margin-bottom: 24px;
  float: none;
  box-shadow: 0 0 50px 0 #dedede;
}

.muni-3dviewer-09 {
  position: relative;
  z-index: 3;
  float: right;
}

.muni-3dviewer-09.image-radius {
  margin-top: 192px;
  float: none;
}

.muni-results-symbol-01 {
  position: relative;
  z-index: 5;
  display: block;
  margin-bottom: 64px;
  clear: none;
}

.muni-results-symbol-03 {
  position: relative;
  z-index: 5;
  display: block;
  margin-top: 192px;
  margin-left: 56%;
}

.muni-results-symbol-02 {
  position: relative;
  z-index: 5;
  margin-top: 64px;
  margin-left: 24%;
}

.muni-cs-process-text-02 {
  padding-top: 128px;
}

.muni-cs-process-text-03 {
  padding-top: 256px;
}

.muni-cs-process-text {
  position: relative;
  top: -80px;
}

.muni-cs-demonstration-text {
  margin-top: 64px;
  padding-right: 80px;
  padding-left: 80px;
}

.muni-cs-designs-features-text {
  padding-top: 156px;
}

.muni-cs-designs-view-text {
  padding-top: 34px;
}

.muni-hero {
  margin-top: 32px;
}

.auntieknitter-knitted-ties-package {
  position: relative;
  z-index: 30;
  margin-top: -223px;
}

.auntieknitter-ui-notes {
  padding-top: 129px;
}

.brma-logotype-symbol {
  display: inline-block;
  vertical-align: middle;
  width: 56px;
  height: 56px;
}

.epro-in-action-graphics-01 {
  position: relative;
  margin-bottom: 128px;
}

.auntieknitter-in-action-graphics-01 {
  position: relative;
  margin-bottom: 128px;
}

.muni-in-action-graphics-01 {
  position: relative;
}

.role-in-project {
  font-style: normal;
  font-weight: 900;
}

.field-password {
  height: 56px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #20e5b1;
}

.case-study-content {
  display: inline-block;
  position: relative;
  z-index: 20;
  font-size: 16px;
  line-height: normal;
  text-shadow: none;
  font-family: Lato2, Arial, sans-serif;
}



.subtle-link-epro {
  color: #518ac2;
  font-weight: 700;
  border-bottom-width: 1px;
  border-bottom-color: #518ac2;
}

.subtle-link-epro:hover {
  border-color: #518ac2;
  color: #518ac2;
  border-bottom-width: 1px;
  border-bottom-color: transparent;
}

.subtle-link-epro:visited {
  color: #518ac2;
}

.subtle-link-auntieknitter {
  color: #818181;
  font-weight: 700;
  border-bottom-width: 1px;
  border-bottom-color: #818181;
}

.subtle-link-auntieknitter:hover {
  border-color: #818181;
  color: #818181;
  border-bottom-width: 1px;
  border-bottom-color: transparent;
}

.subtle-link-auntieknitter:visited {
  color: #818181;
}

.subtle-link-muni {
  color: #f58e21;
  font-weight: 700;
  border-bottom-width: 1px;
  border-bottom-color: #f58e21;
}

.subtle-link-muni:hover {
  border-color: #f58e21;
  color: #f58e21;
  border-bottom-width: 1px;
  border-bottom-color: transparent;
}

.subtle-link-muni:visited {
  color: #f58e21;
}

.epro-appendix-summary {
  margin-bottom: 64px;
}

.epro-appendix-heading {
  margin-bottom: 64px;
}

.epro-appendix-process {
  margin-bottom: 80px;
}

.auntieknitter-designs-01 {
  position: relative;
  margin-bottom: 64px;
}

.auntieknitter-homepage-03 {
  position: relative;
  z-index: 20;
  margin-top: -296px;
}

.services-list-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #dedede;
}

.auntieknitter {
  color: #0f0a26;
}

.muni {
  color: #1a1a1a;
}

.blog-post-text {
  padding-right: 30px;
  padding-left: 30px;
}

.instagram-photos-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0.5;
}

.instagram {
  position: relative;
  display: block;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background-color: #032f7f;
}

.instagram-text {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 100%;
  margin-top: -83px;
  padding-right: 20px;
  padding-left: 20px;
  color: #fff;
  text-align: center;
}

.max-width-1920 {
  position: relative;
  display: block;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

.instagram-vulcano {
  width: 12.5%;
  max-width: 240px;
}

.instagram-lake {
  width: 12.5%;
  max-width: 240px;
}

.instagram-handstands {
  width: 12.5%;
  max-width: 240%;
}

.instagram-baloon {
  width: 12.5%;
  max-width: 240px;
}

.instagram-england {
  width: 12.5%;
  max-width: 240px;
}

.instagram-bike {
  width: 12.5%;
  max-width: 240px;
}

.instagram-scooters {
  width: 12.5%;
  max-width: 240px;
}

.instagram-skialp {
  width: 12.5%;
  max-width: 240px;
}

.instagram-profile {
  margin-top: 0px;
  margin-right: 16px;
  border-bottom-style: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.instagram-profile:hover {
  color: #20e5b1;
  text-decoration: none;
  border-bottom-style: none;
}

.instagram-profile:visited {
  color: #e2f9f3;
}

.instagram-profile-icon {
  margin-right: 4px;
}

.instagram-paragraph {
  margin-top: -12px;
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 27px;
}

.instagram-skyscrapers {
  width: 12.5%;
  max-width: 240px;
}

.instagram-nhl {
  width: 12.5%;
  max-width: 240px;
}

.instagram-sunset {
  width: 12.5%;
  max-width: 240px;
}

.instagram-freeride {
  width: 12.5%;
  max-width: 240px;
}

.gotop,
.gotoproj1,
.gotoproj2,
.gotoproj3,
.gotoproj4,
.gotoproj5 {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 50;
  display: none;
  width: 58px;
  height: 56px;
  padding-top: 7px;
  border-bottom-style: none;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 16px 0 #ebebeb;
  font-family: Lato2, Arial, sans-serif;
  color: #0652dd;
  font-size: 27px;
  line-height: 43px;
  text-align: center;
}

.gotoproj1 {
  bottom: 500px;
}

.gotoproj2 {
  bottom: 435px;
}

.gotoproj3 {
  bottom: 370px;
}

.gotoproj4 {
  bottom: 305px;
}

.gotoproj5 {
  bottom: 240px;
}

.gotop:hover,
.gotoproj1:hover,
.gotoproj2:hover,
.gotoproj3:hover,
.gotoproj4:hover,
.gotoproj5:hover {
  color: #0652dd;
  border-bottom-style: none;
}

.gotop:active,
.gotoproj1:active,
.gotoproj2:active,
.gotoproj3:active,
.gotoproj4:active,
.gotoproj5:active {
  color: #0652dd;
}

.gotop:visited,
.gotoproj1:visited,
.gotoproj2:visited,
.gotoproj3:visited,
.gotoproj4:visited,
.gotoproj5:visited {
  color: #0652dd;
}

.gotop.w--current,
.gotoproj1:w--current,
.gotoproj2:w--current,
.gotoproj3:w--current,
.gotoproj4:w--current,
.gotoproj5:w--current {
  z-index: 50;
  display: none;
}

.instagram-surfing {
  width: 12.5%;
  max-width: 240px;
}

.instagram-vulcanos {
  width: 12.5%;
  max-width: 240px;
}

.instagram-icecream {
  width: 12.5%;
  max-width: 240px;
}

.instagram-icelandcrew {
  width: 12.5%;
  max-width: 240px;
}

.top-bar {
  position: fixed;
  z-index: 200;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgba(32, 229, 177, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 2px 0 rgba(18, 127, 98, .75);
  -webkit-transition: box-shadow 500ms ease, background-color 500ms ease;
  transition: box-shadow 500ms ease, background-color 500ms ease;
}

.top-bar.not-sticky {
  position: absolute;
  padding-top: 96px;
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.top-bar.secondary.not-sticky {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#polarion,
#epro,
#auntieknitter,
#myamazingprague,
#muni3dviewer {
  scroll-margin-top: 80px;
}

#summary,
#process,
#designs,
#client-projects,
#me-designer,
#contact {
  scroll-margin-top: 0px;
}

.top-bar.secondary {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 200;
  width: 100%;
  height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 8px 0 rgba(121, 121, 121, 0.15);
  /*box-shadow: none;
  border-bottom: 1px solid #cecece;*/
  -webkit-transition: box-shadow 500ms ease, background-color 500ms ease;
  transition: box-shadow 500ms ease, background-color 500ms ease;
}

.top-bar.secondary.not-sticky {
  position: absolute;
  top: 44px;
  padding-top: 0px;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
  pointer-events: none;
}


.top-bar.secondary.not-sticky p {
  text-align: right;
  padding-right: 80px;
}

.top-bar.secondary p.case-study-content-nav,
.top-bar.secondary.not-sticky p.case-study-content-nav {
  margin-bottom: 0px;
  pointer-events: auto;
}

.nav-link-close {
  display: none;
  margin-right: 8px;
  padding: 0px;
  border-bottom-style: none;
}

.nav-close-icon {
  margin-top: 2px;
}

.paragraph {
  position: relative;
  z-index: 50;
}

.perex.project-link {
  font-size: 21px;
  line-height: 32px;
}

html.w-mod-js *[data-ix="fade-in-bottom-page-loads"] {
  opacity: 0;
  -webkit-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate(0px, 50px);
}

html.w-mod-js *[data-ix="fade-in-left-scroll-in"] {
  opacity: 0;
  -webkit-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate(-50px, 0px);
}

html.w-mod-js *[data-ix="fade-in-right-scroll-in"] {
  opacity: 0;
  -webkit-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate(50px, 0px);
}

html.w-mod-js *[data-ix="fade-in-top-scroll-in"] {
  opacity: 0;
  -webkit-transform: translate(0px, -50px);
  -ms-transform: translate(0px, -50px);
  transform: translate(0px, -50px);
}

html.w-mod-js *[data-ix="fade-in-bottom-scroll-in"] {
  opacity: 0;
  -webkit-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate(0px, 50px);
}

html.w-mod-js *[data-ix="bounce-in-scroll-in"] {
  opacity: 0;
  -webkit-transform: scale(0.6000000000000005, 0.6000000000000005);
  -ms-transform: scale(0.6000000000000005, 0.6000000000000005);
  transform: scale(0.6000000000000005, 0.6000000000000005);
}

html.w-mod-js *[data-ix="scale-on-scroll"] {
  opacity: 0;
  -webkit-transform: scale(0.01, 0.01);
  -ms-transform: scale(0.01, 0.01);
  transform: scale(0.01, 0.01);
}

@media (max-width: 991px) {
  .nav-link.light.hollow {
    margin-top: 8px;
  }

  .nav-link.light.nav-link-blog {
    display: inline-block;
  }

  .navigation-bar {
    left: 0%;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 20px;
  }

  .hamburger-button:hover {
    color: #2196f3;
    border-bottom-style: none;
  }

  .hamburger-button.w--open {
    background-color: #333;
  }

  .hamburger-button.white {
    padding-top: 12px;
    padding-bottom: 12px;
    color: #fff;
    font-weight: 700;
    text-align: center;
  }

  .navigation-menu {
    position: fixed;
    right: 0px;
    z-index: 10;
    margin-top: 0px;
    padding-top: 80px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #1b1464;
    text-align: left;
  }

  .section {
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .section.about-me {
    padding-top: 256px;
  }

  .section.case-study-process.muni {
    padding-bottom: 112px;
  }

  .epro-hero-section {
    min-height: auto;
  }

  .utility-page-ontent {
    width: 320px;
  }

  .supheading-hero {
    margin-top: 160px;
    font-size: 27px;
    line-height: 35px;
  }

  .epro-hero {
    margin-top: -48px;
  }

  .nav-separator {
    display: block;
    margin-bottom: 32px;
    border-bottom: 1px solid #3e2ee5;
    color: #1b1464;
  }

  .column-my-career {
    padding-top: 512px;
  }

  .about-me-content {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .supheading-03 {
    position: relative;
    z-index: 20;
  }

  .services-summary {
    display: block;
  }

  .margin-bottom-96 {
    margin-bottom: 64px;
  }

  .brma-standing {
    top: -217px;
    margin-left: -381px;
  }

  .brma-logotype.w--current {
    margin-top: 5px;
  }

  .hero-section {
    padding-top: 96px;
  }

  .navigation-bar-case-study {
    padding-left: 30px;
  }

  .case-study-content-nav {
    margin-bottom: 144px;
  }

  .epro-phone-in-action {
    margin-top: -185px;
  }

  .epro-summary-symbol-01 {
    right: 7%;
  }

  .epro-tablet-in-action {
    display: block;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }

  .epro-styleguide-assets {
    margin-top: 2px;
  }

  .epro-cs-preview-image {
    margin-left: -96px;
  }

  .auntieknitter-cs-preview-image {
    margin-left: -112px;
  }

  .muni-cs-preview-image {
    margin-left: -96px;
  }

  .epro-summary-symbol-03 {
    left: 5%;
  }

  .brma-standing-header {
    top: -56px;
    margin-left: 14px;
  }

  .me-designer-text {
    width: 75%;
  }

  .brma-standing-header-404 {
    margin-top: -455px;
  }

  .auntieknitter-hero-section {
    min-height: auto;
    padding-top: 92px;
  }

  .auntieknitter-hero {
    margin-top: 16px;
  }

  .auntieknitter-phone-in-action.image-radius {
    margin-top: -71px;
  }

  .auntieknitter-in-action-graphics-02 {
    margin-top: 96px;
  }

  .muni-hero-section {
    padding-top: 92px;
  }

  .auntieknitter-summary-symbol-03 {
    left: 55%;
    top: 76%;
  }

  .auntieknitter-summary-symbol-02 {
    top: 56%;
  }

  .auntieknitter-logotype {
    left: -5%;
    top: -104px;
  }

  .muni-logo {
    left: 3%;
    top: 42px;
  }

  .muni-summary-symbol-03 {
    left: 14%;
    top: 96%;
  }

  .muni-summary-symbol-01 {
    top: 14%;
    right: 4%;
  }

  .muni-3dviewer-01.image-radius {
    margin-top: -154px;
  }

  .muni-cs-demonstration-text {
    margin-top: 32px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .muni-hero {
    margin-top: 16px;
  }

  .epro-in-action-graphics-01 {
    margin-bottom: 96px;
  }

  .auntieknitter-in-action-graphics-01 {
    margin-bottom: 96px;
  }

  .nav-hamburger-label {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
  }

  .services-hard-break {
    width: 50%;
  }

  .epro-appendix-summary {
    margin-bottom: 16px;
  }

  .epro-appendix-heading {
    margin-bottom: 32px;
  }

  .epro-appendix-process {
    margin-bottom: 32px;
  }

  .auntieknitter-homepage-03 {
    margin-top: -229px;
  }

  .instagram-vulcano {
    display: none;
  }

  .instagram-lake {
    display: none;
  }

  .instagram-handstands {
    display: none;
  }

  .instagram-baloon {
    display: none;
  }

  .instagram-england {
    display: none;
  }

  .instagram-bike {
    display: none;
  }

  .instagram-scooters {
    width: 20%;
  }

  .instagram-skialp {
    width: 20%;
  }

  .instagram-skyscrapers {
    width: 20%;
  }

  .instagram-nhl {
    width: 20%;
  }

  .instagram-sunset {
    width: 20%;
  }

  .instagram-freeride {
    width: 20%;
  }

  .instagram-surfing {
    width: 20%;
  }

  .instagram-vulcanos {
    width: 20%;
  }

  .instagram-icecream {
    width: 20%;
  }

  .instagram-icelandcrew {
    width: 20%;
  }

  .top-bar.not-sticky {
    padding-top: 64px;
  }

  .top-bar.secondary.not-sticky p {
    text-align: right;
    padding-right: 32px;
  }

  .nav-link-close {
    position: absolute;
    top: 12px;
    display: inline-block;
    padding: 6px 10px;
  }
}

@media (max-width: 767px) {
  h1 {
    margin-bottom: 16px;
    font-size: 39px;
    line-height: 47px;
    text-shadow: none;
  }

  h2 {
    position: relative;
    z-index: 20;
  }

  .navigation-bar {
    padding-right: 20px;
    padding-left: 30px;
  }

  .hamburger-button.white {
    padding: 4px 10px;
  }

  .navigation-menu {
    padding-top: 72px;
  }

  .brand-name {
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 3px;
  }

  .section {
    padding: 96px 20px;
  }

  .section.contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section.about-me {
    padding-top: 144px;
  }

  .section.blog {
    padding: 128px 50px;
  }

  .section.case-study-summary {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section.case-study-results {
    padding-top: 64px;
    padding-bottom: 128px;
  }

  .epro-hero-section {
    padding-top: 100px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .heading-hero {
    margin-bottom: 12px;
    font-size: 72px;
    line-height: 78px;
    text-shadow: none;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .perex-hero {
    font-size: 19px;
    line-height: 30px;
  }

  .container-hero {
    padding-right: 10px;
    padding-left: 10px;
  }

  .supheading-hero {
    margin-top: 144px;
  }

  .epro-hero {
    margin-top: 0px;
  }

  .button.green {
    float: none;
  }

  .button.white-hollow {
    margin-right: 20px;
  }

  .header-buttons {
    margin-top: 92px;
    text-align: center;
  }

  .perex.align-center.margin-bottom-96 {
    margin-bottom: 32px;
  }

  .perex.project-link {
    text-align: right;
  }

  .column-my-career {
    padding-top: 32px;
  }

  .margin-bottom-128 {
    margin-bottom: 48px;
  }

  .about-me-content {
    padding: 64px 20px;
  }

  .services-list {
    width: 50%;
    padding-right: 0px;
  }

  .services-summary {
    margin-bottom: 0px;
    padding-left: 100px;
  }

  .margin-bottom-96 {
    margin-bottom: 64px;
  }

  .continue-reading-arrow {
    margin-bottom: 64px;
    float: none;
  }

  .continue-reading-arrow.epro {
    margin-bottom: 80px;
  }

  .continue-reading-arrow.auntieknitter {
    margin-bottom: 80px;
  }

  .continue-reading-arrow.muni {
    margin-bottom: 80px;
  }

  .subheading-03 {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 25px;
  }

  .paragraph-last {
    margin-bottom: 20px;
  }

  .contact-twitter {
    position: relative;
    left: 50%;
    margin-right: 0px;
    margin-left: -66px;
    float: none;
    border-bottom-style: none;
  }

  .contact-linkedin {
    position: relative;
    left: 50%;
    margin-left: -73px;
  }

  .image-blog-post {
    margin-bottom: 16px;
  }

  .image-blog-post2 {
    margin-bottom: 16px;
  }

  .blog-posts-right {
    padding-top: 96px;
  }

  .blog-posts-right2 {
    padding-top: 0px;
  }

  .brma-standing {
    left: 50%;
    top: -111px;
    max-width: 80%;
    margin-top: -11px;
    margin-left: 23px;
  }

  .brma-working-photo-01 {
    width: 100%;
  }

  .brma-working-photo-02 {
    width: 100%;
  }

  .brma-logotype {
    padding-left: 0px;
  }

  .brma-logotype.w--current {
    margin-top: 5px;
  }

  .brma-logotype-footer {
    float: none;
  }

  .brma-logotype-footer.w--current {
    float: left;
  }

  .hero-section {
    min-height: auto;
    padding-top: 32px;
  }

  .supheading-01 {
    margin-bottom: 4px;
    font-size: 27px;
    line-height: 35px;
  }

  .navigation-bar-case-study {
    padding-left: 30px;
  }

  .case-study-content-nav {
    margin-bottom: 96px;
  }

  .case-study-content-nav.auntieknitter {
    margin-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 48px;
    font-size: 22px;
    line-height: 30px;
  }

  .section-number {
    font-size: 39px;
    line-height: 47px;
  }

  .case-study-summary-right {
    margin-top: 32px;
    margin-bottom: -42px;
  }

  .epro-phone-in-action {
    display: block;
    margin-top: 32px;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }

  .epro-summary-symbol-01 {
    top: 40%;
    display: none;
  }

  .epro-results-symbol-03 {
    top: -68px;
  }

  .epro-results-symbol-02 {
    margin-top: 0px;
  }

  .margin-bottom-64 {
    margin-bottom: 32px;
  }

  .epro-process-symbol-02 {
    top: -2%;
  }

  .epro-process-symbol-01 {
    left: 68%;
    margin-top: -23%;
  }

  .epro-me-working-02.margin-bottom-32 {
    margin-top: -32px;
  }

  .epro-me-working-02.margin-bottom-32.image-radius {
    margin-top: 32px;
  }

  .margin-bottom-32 {
    margin-bottom: 24px;
  }

  .epro-me-working01.epro-image-shadow-grey {
    margin-top: 64px;
  }

  .epro-me-working01.epro-image-shadow-grey.image-radius {
    margin-top: 24px;
  }

  ._64-percent-width {
    width: 100%;
  }

  .epro-process-symbol-03 {
    margin-top: 24px;
  }

  .epro-styleguide-assets {
    margin-top: 0px;
  }

  .epro-styleguide-colours {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .epro-styleguide-icons {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .epro-styleguide-spacing {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .epro-styleguide-typography {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .epro-solution-showcase02 {
    position: relative;
    left: -25%;
    max-width: 150%;
  }

  .epro-solution-showcase01 {
    position: relative;
    left: 50%;
    max-width: 125%;
    margin-top: 16px;
    margin-bottom: 0px;
    margin-left: -387px;
  }

  .other-case-studies {
    padding-right: 0px;
    padding-left: 0px;
  }

  .other-case-studies-right-bg.epro {
    background-color: transparent;
  }

  .other-case-studies-right-bg.muni {
    background-color: transparent;
  }

  .other-case-studies-right-bg.auntieknitter {
    background-color: transparent;
  }

  .epro-cs-preview.margin-bottom-128 {
    margin-bottom: 96px;
  }

  .epro-cs-preview-image {
    left: 50%;
    max-width: 150%;
    margin-left: -357px;
  }

  .epro-cs-summary {
    padding-top: 480px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: transparent;
  }

  .epro-cs-summary.auntieknitter {
    background-color: transparent;
  }

  .epro-cs-summary.muni {
    background-color: transparent;
  }

  .auntieknitter-cs-preview {
    margin-top: 0px;
    margin-bottom: -16px;
  }

  .auntieknitter-cs-preview.margin-bottom-160 {
    margin-bottom: 80px;
  }

  .auntieknitter-cs-preview-image {
    left: 50%;
    max-width: 150%;
    margin-left: -356px;
  }

  .auntieknitter-cs-summary {
    padding-top: 513px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: transparent;
  }

  .auntieknitter-cs-summary.epro {
    background-color: transparent;
  }

  .auntieknitter-cs-summary.muni {
    background-color: transparent;
  }

  .muni-cs-preview-image {
    left: 50%;
    max-width: 150%;
    margin-left: -357px;
  }

  .muni-cs-summary {
    padding-top: 512px;
    padding-right: 10px;
    padding-left: 10px;
    background-color: transparent;
  }

  .muni-cs-summary.epro {
    padding-top: 512px;
    background-color: transparent;
  }

  .muni-cs-summary.auntieknitter {
    background-color: transparent;
  }

  .muni-cs-preview {
    margin-top: 64px;
  }

  .epro-summary-symbol-02 {
    top: 88%;
    display: none;
  }

  .epro-summary-symbol-03 {
    left: 11%;
    top: 74%;
    display: none;
  }

  .epro-in-action-graphics-02 {
    margin-top: 96px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .epro-cs-main-image {
    position: relative;
    left: 50%;
    max-width: 200%;
    margin-left: -468px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .brma-standing-header {
    left: 50%;
    top: -74px;
    max-width: 125%;
    margin-left: -47px;
  }

  .leading-decoration {
    margin-top: 8px;
  }

  .me-designer-text {
    padding-right: 30px;
    padding-left: 30px;
  }

  .epro-me-working-03 {
    margin-top: 0px;
  }

  .epro-me-working-03.image-radius {
    margin-top: 0px;
    margin-bottom: 16px;
  }

  .brma-standing-header-404 {
    max-width: 125%;
    margin-top: -416px;
    margin-left: -105px;
  }

  .auntieknitter-hero-section {
    padding-top: 80px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .auntieknitter-hero {
    margin-top: 0px;
  }

  .auntiknitter-cs-main-image {
    position: relative;
    left: 50%;
    max-width: 200%;
    margin-left: -473px;
  }

  .auntieknitter-phone-in-action {
    margin-top: 32px;
  }

  .auntieknitter-phone-in-action.image-radius {
    display: block;
    margin: 32px auto;
    float: none;
  }

  .auntieknitter-in-action-graphics-02 {
    margin-top: 139px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .auntieknitter-logotype-variants {
    margin-bottom: 16px;
  }

  .auntieknitter-logo {
    margin-top: 0px;
  }

  .auntieknitter-website-wireframe {
    width: 150%;
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .auntieknitter-process-website-deployment {
    padding-top: 0px;
  }

  .auntieknitter-homepage-01 {
    margin-bottom: 16px;
  }

  .auntieknitter-designs-the-story {
    margin-bottom: 32px;
    padding-top: 16px;
  }

  .auntieknitter-homepage-graphics-02 {
    top: 0px;
    margin-top: 0px;
  }

  .auntie-knitter-designs-checkout {
    margin-top: 24px;
  }

  .muni-hero-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .muni-cs-main-image {
    position: relative;
    left: 50%;
    max-width: 200%;
    margin-left: -472px;
  }

  .auntieknitter-summary-symbol-01 {
    top: 35%;
    display: none;
  }

  .auntieknitter-summary-symbol-03 {
    left: 22%;
    top: 95%;
    display: none;
  }

  .auntieknitter-summary-symbol-02 {
    top: 83%;
    right: 17%;
    display: none;
  }

  .auntieknitter-results-symbol-03 {
    top: -74px;
  }

  .auntieknitter-results-symbol-02 {
    margin-top: 0px;
  }

  .auntieknitter-logotype {
    left: 0%;
    top: -682px;
    margin-right: auto;
    margin-left: auto;
  }

  .muni-logo {
    left: 50%;
    top: -597px;
    display: none;
    margin-left: -162px;
  }

  .muni-summary-symbol-03 {
    top: 93%;
    display: none;
  }

  .muni-summary-symbol-01 {
    top: -8%;
    right: 22%;
    display: none;
  }

  .muni-summary-symbol-02 {
    top: 81%;
    right: 8%;
    display: none;
  }

  .muni-summary-symbol-04 {
    top: -37%;
    right: 25%;
  }

  .muni-summary-symbol-05 {
    left: 11%;
    top: 65%;
  }

  .muni-process-technologies-cloud {
    margin-top: 42px;
  }

  .muni-process-sketches.image-radius {
    display: block;
    margin-top: 48px;
    margin-right: auto;
    margin-left: auto;
  }

  .muni-in-action-graphics-02 {
    margin-top: 106px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .muni-3dviewer-01 {
    margin-top: 32px;
  }

  .muni-3dviewer-01.image-radius {
    display: block;
    margin-top: 32px;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }

  .muni-student-with-laptop.muni-image-grey-shadow.image-radius {
    box-shadow: none;
  }

  .muni-3dviewer-03 {
    margin-bottom: 8px;
  }

  .muni-3dviewer-04 {
    margin-top: 32px;
  }

  .muni-3dviewer-04.image-radius {
    margin-top: 0px;
  }

  .muni-3dviewer-05 {
    display: block;
    margin: 0px auto 20px;
    float: none;
  }

  .muni-3dviewer-05.image-radius {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .muni-3dviewer-06 {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }

  .muni-3dviewer-06.image-radius {
    display: block;
  }

  .muni-3dviewer-07 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    float: none;
  }

  .muni-3dviewer-07.image-radius {
    display: block;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
  }

  .muni-3dviewer-08 {
    margin-top: 32px;
  }

  .muni-3dviewer-08.image-radius {
    left: 50%;
    margin-bottom: 32px;
    margin-left: -117px;
    box-shadow: none;
  }

  .muni-3dviewer-09 {
    margin-top: 32px;
  }

  .muni-3dviewer-09.image-radius {
    margin-top: 0px;
  }

  .muni-results-symbol-03 {
    top: -76px;
  }

  .muni-results-symbol-02 {
    margin-top: 0px;
  }

  .muni-cs-process-text-02 {
    padding-top: 0px;
  }

  .muni-cs-process-text-03 {
    padding-top: 0px;
  }

  .muni-cs-process-text {
    top: 0px;
    margin-top: 32px;
  }

  .muni-cs-demonstration-text {
    margin-top: 24px;
  }

  .muni-cs-designs-features-text {
    padding-top: 16px;
  }

  .muni-cs-designs-view-text {
    padding-top: 32px;
  }

  .muni-hero {
    margin-top: 16px;
  }

  .column {
    margin-top: 16px;
  }

  .auntieknitter-knitted-ties-package {
    margin-top: 0px;
  }

  .auntieknitter-ui-notes {
    padding-top: 0px;
  }

  .brma-logotype-symbol {
    width: 40px;
    height: 40px;
  }

  .epro-in-action-graphics-01 {
    margin-bottom: 32px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .auntieknitter-in-action-graphics-01 {
    margin-bottom: 32px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .muni-in-action-graphics-01 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .services-hard-break {
    width: 100%;
  }

  .project-link {
    text-align: right;
  }

  .epro-appendix-summary {
    margin-bottom: 0px;
  }

  .auntieknitter-designs-01 {
    margin-bottom: 32px;
  }

  .auntieknitter-homepage-03 {
    margin-top: 0px;
    margin-bottom: 24px;
  }

  .auntieknitter-homepage-03.auntieknitter-image-shadow-grey.image-radius {
    margin-top: 0px;
  }

  .auntieknitter-homepage-03.image-radius {
    margin-top: -240px;
  }

  .instagram-text {
    margin-top: -68px;
  }

  .gotop {
    width: 50px;
    height: 48px;
    padding-top: 5px;
    float: none;
    font-size: 24px;
  }

  .top-bar {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .top-bar.not-sticky {
    padding-top: 32px;
    padding-bottom: 4px;
  }
}

@media (max-width: 479px) {
  .hide-break {
    display: none;
  }

  .navigation-bar {
    padding-right: 10px;
    padding-left: 20px;
  }

  .section {
    padding: 80px 10px;
  }

  .section.contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section.about-me {
    padding-top: 80px;
  }

  .section.blog {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section.case-study-summary {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section.case-study-process {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section.case-study-solution {
    padding-right: 10px;
    padding-left: 10px;
  }

  .section.case-study-results {
    padding-right: 10px;
    padding-left: 10px;
  }

  .epro-hero-section {
    padding-top: 100px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .utility-page-ontent {
    width: 290px;
  }

  .perex-hero {
    padding-left: 0px;
    /*font-size: 14px;
    line-height: 22px;*/
  }

  .container-hero {
    padding-right: 0px;
    padding-left: 0px;
  }

  .supheading-hero {
    margin-top: 64px;
  }

  .button.blue.blog-post-button {
    margin-left: 0px;
  }

  .button.blue.header-btn {
    margin-left: 10px;
  }

  .button.green.header-btn {
    margin-right: 10px;
    margin-left: 10px;
  }

  .button.white-hollow {
    margin-right: 10px;
    margin-left: 10px;
  }

  .header-buttons {
    margin-top: 8px;
    margin-bottom: 32px;
  }

  .perex.align-center.margin-bottom-96 {
    margin-bottom: 0px;
  }

  .about-me-content {
    padding-right: 10px;
    padding-left: 10px;
  }

  .services-list {
    width: 70%;
  }

  .margin-bottom-96 {
    margin-bottom: 32px;
  }

  .continue-reading-arrow {
    margin-bottom: 40px;
    display: none;
  }

  .paragraph-last {
    margin-bottom: 16px;
  }

  .brma-standing {
    left: 50%;
    top: 16px;
    max-width: 120%;
    margin-top: 70px;
    margin-left: -19px;
  }

  .hero-section {
    padding-top: 32px;
  }

  .navigation-bar-case-study {
    padding-left: 20px;
  }

  .epro-category-date {
    margin-top: 8px;
  }

  .case-study-content-nav {
    margin-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .epro-phone-in-action {
    margin-top: 24px;
  }

  .epro-summary-symbol-01 {
    top: 37%;
  }

  .epro-nurse-with-computer.epro-image-shadow-grey.image-radius {
    box-shadow: none;
  }

  .epro-me-working01.epro-image-shadow-blue.image-radius {
    box-shadow: none;
  }

  .epro-me-working01.epro-image-shadow-grey.image-radius {
    box-shadow: none;
  }

  .epro-solution-showcase02 {
    left: -28%;
    max-width: 200%;
  }

  .epro-solution-showcase01 {
    max-width: 175%;
    margin-left: -335px;
  }

  .other-case-studies {
    padding-right: 0px;
    padding-left: 0px;
  }

  .epro-cs-preview.margin-bottom-128 {
    margin-bottom: 0px;
  }

  .epro-cs-preview-image {
    max-width: 250%;
  }

  .auntieknitter-cs-preview {
    margin-top: -16px;
    margin-bottom: -48px;
  }

  .auntieknitter-cs-preview.margin-bottom-160 {
    margin-bottom: 0px;
  }

  .auntieknitter-cs-preview-image {
    max-width: 250%;
  }

  .muni-cs-preview-image {
    max-width: 250%;
  }

  .muni-cs-preview {
    margin-top: 32px;
  }

  .epro-summary-symbol-02 {
    top: 82%;
  }

  .epro-in-action-graphics-02 {
    margin-top: 48px;
  }

  .epro-cs-main-image {
    left: 50%;
    max-width: 200%;
    margin-left: -300px;
  }

  .brma-standing-header {
    top: -1px;
    max-width: 200%;
    margin-left: -96px;
  }

  .leading-decoration {
    left: -59px;
    display: none;
  }

  .me-designer-text {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .epro-me-working-03.image-radius {
    margin-bottom: 8px;
  }

  .brma-standing-header-404 {
    max-width: 200%;
    margin-top: -361px;
    margin-left: -118px;
  }

  .auntieknitter-category-date {
    margin-top: 8px;
  }

  .auntieknitter-hero-section {
    padding-top: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .auntiknitter-cs-main-image {
    left: 50%;
    max-width: 200%;
    margin-left: -300px;
  }

  .auntieknitter-woman-with-laptop.auntieknitter-image-shadow-grey.image-radius {
    box-shadow: none;
  }

  .auntieknitter-phone-in-action.image-radius {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .muni-cs-main-image {
    margin-left: -245px;
  }

  .muni-category-date {
    margin-top: 8px;
  }

  .auntieknitter-summary-symbol-01 {
    top: 22%;
    right: 18%;
  }

  .auntieknitter-summary-symbol-03 {
    top: 33%;
  }

  .auntieknitter-summary-symbol-02 {
    top: 51%;
  }

  .auntieknitter-summary-symbol-04 {
    top: -75%;
  }

  .auntieknitter-summary-symbol-05 {
    top: 11%;
  }

  .auntieknitter-summary-symbol-06 {
    bottom: -8%;
  }

  .auntieknitter-logotype {
    left: 0%;
    top: -12px;
    max-width: 75%;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
  }

  .muni-logo {
    top: -380px;
    margin-left: -70px;
  }

  .muni-summary-symbol-01 {
    top: 10%;
    right: 13%;
  }

  .muni-summary-symbol-02 {
    top: 69%;
    right: 7%;
  }

  .muni-summary-symbol-04 {
    top: -61%;
    right: 23%;
  }

  .muni-summary-symbol-05 {
    top: 59%;
  }

  .muni-summary-symbol-06 {
    bottom: -32%;
  }

  .muni-process-technologies-cloud {
    margin-top: 32px;
  }

  .muni-process-sketches.image-radius {
    margin-top: 32px;
  }

  .muni-3dviewer-01.image-radius {
    margin-top: 16px;
  }

  .muni-student-with-laptop {
    margin-top: 16px;
  }

  .muni-3dviewer-04.image-radius {
    margin-top: -8px;
  }

  .muni-3dviewer-05.image-radius {
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .muni-3dviewer-06.image-radius {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .muni-3dviewer-08.image-radius {
    left: 0%;
    display: block;
    margin: 0px auto 24px;
  }

  .muni-cs-process-text {
    margin-top: 32px;
  }

  .muni-cs-demonstration-text {
    margin-top: 24px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .muni-cs-designs-features-text {
    padding-top: 24px;
  }

  .epro-in-action-graphics-01 {
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .auntieknitter-in-action-graphics-01 {
    margin-top: 64px;
    margin-bottom: 16px;
  }

  .muni-in-action-graphics-01.margin-bottom-128 {
    margin-bottom: 24px;
  }

  .auntieknitter-designs-01 {
    margin-bottom: 32px;
  }

  .auntieknitter-homepage-03.auntieknitter-image-shadow-grey.image-radius {
    box-shadow: none;
  }

  .blog-post-text {
    padding-right: 0px;
    padding-left: 0px;
  }

  .instagram-photos-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .instagram-text {
    margin-top: -78px;
  }

  .instagram-scooters {
    display: none;
  }

  .instagram-skialp {
    display: none;
  }

  .instagram-skyscrapers {
    display: none;
  }

  .instagram-nhl {
    display: none;
  }

  .instagram-sunset {
    display: none;
  }

  .instagram-freeride {
    display: none;
  }

  .instagram-surfing {
    width: 50%;
  }

  .instagram-vulcanos {
    width: 50%;
  }

  .instagram-icecream {
    width: 50%;
  }

  .instagram-icelandcrew {
    width: 50%;
  }

  .top-bar.not-sticky {
    padding-top: 20px;
  }

  .top-bar.secondary.not-sticky {
    display: none;
  }
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-Black.woff2') format('woff2'), url('../fonts/Lato-Black.eot') format('embedded-opentype'), url('../fonts/Lato-Black.woff') format('woff'), url('../fonts/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-Bold.woff2') format('woff2'), url('../fonts/Lato-Bold.eot') format('embedded-opentype'), url('../fonts/Lato-Bold.woff') format('woff'), url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-BoldItalic.woff2') format('woff2'), url('../fonts/Lato-BoldItalic.eot') format('embedded-opentype'), url('../fonts/Lato-BoldItalic.woff') format('woff'), url('../fonts/Lato-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-Italic.woff2') format('woff2'), url('../fonts/Lato-Italic.eot') format('embedded-opentype'), url('../fonts/Lato-Italic.woff') format('woff'), url('../fonts/Lato-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-Light.woff2') format('woff2'), url('../fonts/Lato-Light.eot') format('embedded-opentype'), url('../fonts/Lato-Light.woff') format('woff'), url('../fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-LightItalic.woff2') format('woff2'), url('../fonts/Lato-LightItalic.eot') format('embedded-opentype'), url('../fonts/Lato-LightItalic.woff') format('woff'), url('../fonts/Lato-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-Regular.woff2') format('woff2'), url('../fonts/Lato-Regular.eot') format('embedded-opentype'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lato2';
  src: url('../fonts/Lato-Thin.woff2') format('woff2'), url('../fonts/Lato-Thin.eot') format('embedded-opentype'), url('../fonts/Lato-Thin.woff') format('woff'), url('../fonts/Lato-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}


.epro-cs-preview {
  margin-top: 0px;
  margin-bottom: 0px;
}

.auntieknitter-cs-preview {
  margin-top: 0px;
  margin-bottom: 0px;
}

.muni-cs-preview {
  margin-top: 0px;
  margin-bottom: 0px;
}

.show-break {
  display: none;
}

p.selected-examples-navigation a {
  display: inline-block;
  margin-bottom: 16px;
}

p.selected-examples-navigation .separator-dots {
  visibility: visible;
  display: inline;
}


@media (max-width: 991px) {
  h1.heading-hero {
    font-size: 72px;
    line-height: 72px;
  }

  .gotoproj1,
  .gotoproj2,
  .gotoproj3,
  .gotoproj4,
  .gotoproj5,
  .side-nav-label {
    display: none !important;
  }

  .epro-cs-preview {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .auntieknitter-cs-preview {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .muni-cs-preview {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  p.selected-examples-navigation a {
    display: inline-block;
  }

  p.selected-examples-navigation .separator-dots {
    visibility: hidden;
    display: block;
    height: 0px;
  }

  .polarion-cs-preview,
  .epro-cs-preview,
  .myamazingprague-cs-preview,
  .auntieknitter-cs-preview,
  .muni-cs-preview {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 96px;
  }

  .scroll-arrow-h3 {
    display: block;
  }

  .blog-card h2.heading-hero {
    font-size: 32px;
    line-height: 38px;
  }
}


@media (max-width: 767px) {
  h2.heading-hero {
    font-size: 39px;
    line-height: 47px;
  }

  .blog-card h2.heading-hero {
    font-size: 32px;
    line-height: 38px;
  }

  .supheading-01 a {
    font-size: 27px;
    line-height: 35px;
  }
}


@media (max-width: 479px) {
  .show-break {
    display: block;
  }

  .case-study-not-created {
    display: block;
  }

  .homepage-image-preview-epro {
    margin-top: -60px;
  }

  .homepage-image-preview-auntieknitter {
    margin-top: -60px;
  }

  .homepage-image-preview-muni {
    margin-top: -40px;
  }

  .epro-hero p,
  .auntieknitter-hero p,
  .muni-hero p {
    width: 100%;
  }

  .epro-hero h1.heading-hero,
  .auntieknitter-hero h1.heading-hero,
  .muni-hero h1.heading-hero {
    font-size: 39px;
    line-height: 47px;
  }

  .continue-reading-arrow.epro,
  .continue-reading-arrow.auntieknitter,
  .continue-reading-arrow.muni {
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .epro-cs-main-image {
    margin-top: -160px;
    margin-bottom: -50px;
  }

  .auntiknitter-cs-main-image {
    margin-top: -65px;
    margin-bottom: -40px;
  }

  .muni-cs-main-image {
    margin-top: -120px;
    margin-bottom: -70px;
  }
}

/* Custom Projects Grid Implementation */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 48px;
}

.projects-grid-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.project-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  border-radius: 8px;
  padding: 48px;
}

/* Custom Blog Grid Implementation */
.blog-hero-section {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 20px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #1dd1a1;
  font-family: Lato2, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
}

.blog-hero-section h1.heading-hero {
  color: #110d40 !important;
}

.blog-hero-section h3.subheading-03 {
  color: #fff !important;
  font-weight: normal;
}

.blog-hero-section h3.subheading-03 a {
  color: #fff !important;
  border-bottom: 2px solid #fff;
}

.blog-hero-section h3.subheading-03 a:hover {
  color: var(--primary-blue) !important;
  border-bottom-color: transparent;
}

.blog-hero-section .top-bar.secondary {
  background-color: rgba(32, 229, 177, 0.85) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 2px 0 rgba(18, 127, 98, .75);
  -webkit-transition: box-shadow 500ms ease, background-color 500ms ease;
  transition: box-shadow 500ms ease, background-color 500ms ease;
}

.blog-hero-section .top-bar.secondary.not-sticky {
  background-color: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.blog-hero-section .case-study-content-nav.blog {
  color: #fff !important;
}

.blog-hero-section .subtle-link-blog {
  color: #fff !important;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

.blog-hero-section .subtle-link-blog:hover {
  color: var(--primary-blue) !important;
  border-bottom-color: transparent;
}

.back-to-homepage.blog {
  color: #fff;
}

.back-to-homepage.blog:hover {
  color: var(--primary-blue) !important;
}

.continue-reading-arrow.blog {
  display: block;
  width: 48px;
  margin: 40px auto 80px;
  float: none;
  color: #fff;
  animation: smoothBounce 1.5s infinite;
}

.continue-reading-arrow.blog:hover {
  color: var(--primary-blue) !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.continue-reading-arrow.blog:visited {
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 48px;
}

.blog-grid-container.last {
  margin-bottom: 160px;
}

.blog-grid-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.blog-card.shifted {
  margin-top: 80px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  border-radius: 8px;
  padding: 48px;
  border: 3px solid #23ffc4;
  padding-bottom: 0px;
}

.blog-card h2.heading-hero {
  font-size: 32px;
  line-height: 38px;
}

.blog-images-container {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.blog-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-card p {
  margin-bottom: 20px;
}


/* Individual Card Themes */
#polarion {
  background-color: #000028;
}

#epro {
  background-color: #e5f3ff;
}

.case-study-content a:hover {
  text-decoration: none;
}

.case-study-not-created {
  white-space: nowrap;
}

.case-study-not-created.white {
  color: white;
}

.project-images-container {
  display: flex;
  flex-direction: column;
}

.projects-side-nav {
  visibility: hidden !important;
}

.side-nav-label {
  position: fixed;
  right: 32px;
  bottom: 565px;
  width: 58px;
  z-index: 1000;
  font-family: Lato2, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #110d40;
  display: none;
  /* Controlled by JS or scroll visibility */
}

#auntieknitter {
  background-color: #f4f3f2;
}

#myamazingprague {
  background-color: #fce4c0;
}

#muni3dviewer {
  background-color: #fffaf0;
}

/* Project 1 Dark Theme */
#polarion .supheading-01,
#polarion .supheading-01 a,
#polarion .heading-hero,
#polarion .paragraph-last,
#polarion .case-study-content {
  color: #fff;
}

#polarion .case-study-content a {
  color: #23ffc4;
  border-bottom-color: #23ffc4;
}

#polarion .paragraph-last a {
  color: #23ffc4;
  border-bottom: 2px solid #23ffc4;
  text-decoration: none;
}

#polarion .paragraph-last a:hover {
  border-bottom-color: #fff;
  color: #fff;
}


.project-card .homepage-image-preview {
  display: none;
}

.project-card .homepage-image-preview-epro,
.project-card .homepage-image-preview-auntieknitter,
.project-card .homepage-image-preview-myamazingprague,
.project-card .homepage-image-preview-muni {
  margin-top: 48px;
  width: 100%;
  height: auto;
}

#myamazingprague .homepage-image-preview-myamazingprague {
  display: none;
}

#myamazingprague .homepage-image-preview {
  display: block;
}

/* Adjust margins for grid context */
.project-card .homepage-image-preview-polarion,
.project-card .homepage-image-preview-epro,
.project-card .homepage-image-preview-auntieknitter,
.project-card .homepage-image-preview-muni {
  margin-top: 0;
}

.index-page h2.heading-hero {
  font-size: 56px;
  line-height: 64px;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: 1fr;
    padding-bottom: 0px;
  }

  #epro,
  #myamazingprague {
    margin-top: 0px;
  }

  .blog-card {
    padding-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .index-page h2.heading-hero {
    font-size: 39px;
    line-height: 47px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .blog-card.shifted {
    margin-top: 0px;
  }
}

@media (min-width: 992px) {
  #client-projects {
    padding-bottom: 0px;
  }

  #epro,
  #myamazingprague {
    margin-top: 80px;
  }
}

/* Interactive Hero Dots - Redundancy removed */


/* Side Navigation Overhaul - Tooltips */
.gotoproj1,
.gotoproj2,
.gotoproj3,
.gotoproj4,
.gotoproj5 {
  position: fixed;
  overflow: visible !important;
  /* Allow tooltip to overflow out of circle */
}

.nav-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #110d40;
  color: #fff;
  padding: 8px 14px 4px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(6, 82, 221, 0.15);
  display: block;
}

.nav-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #110d40;
}

.gotoproj1:hover .nav-tooltip,
.gotoproj2:hover .nav-tooltip,
.gotoproj3:hover .nav-tooltip,
.gotoproj4:hover .nav-tooltip,
.gotoproj5:hover .nav-tooltip {
  opacity: 1;
}

@media (max-width: 479px) {

  .project-card,
  .blog-card {
    padding: 20px !important;
    width: 100% !important;
  }

  .blog-card.shifted {
    margin-top: 0px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .blog-grid-container.last {
    margin-bottom: 80px;
  }

  h1.heading-hero {
    font-size: 64px;
    line-height: 64px;
  }

  .index-page h2.heading-hero {
    font-size: 39px;
    line-height: 47px;
  }

  .blog-card h2.heading-hero {
    font-size: 32px;
    line-height: 38px;
  }

  .supheading-01,
  .supheading-01 a {
    font-size: 21px !important;
    line-height: 28px !important;
  }

  .projects-grid-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .project-card img {
    max-width: 100% !important;
    height: auto !important;
  }

  .case-study-content-nav.blog {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Global Transitions Overhaul */
/* Moved to bottom to ensure precedence over Webflow styles */
a,
button,
.button,
.button.blue,
.button.green,
.gotoproj1,
.gotoproj2,
.gotoproj3,
.gotoproj4,
.gotoproj5,
.gotop {
  transition: all var(--transition-speed) ease !important;
}

.button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(17, 13, 64, 0.15) !important;
}

.button.blue:hover {
  background-color: #22197f !important;
}

.button.green:hover {
  background-color: #e2f9f3 !important;
}