.shadow-image {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  margin-bottom: 13px;
}

/* GENERAL OVERRIDES */

body {
  /*overflow-x: hidden;*/
}

a {
  text-decoration: none;
}

a:hover {
  color: #585FDF;
}

/* NAVIGATION BAR */

#navigation-bar {
  height: 107px;
  padding-left: 35px;
  padding-right: 35px;
}

#navigation-bar .navbar-link {
  margin-right: 20px;
}

.nav-bar-button {
  font-family: 'Avenir Next Demi';
  font-size: 16px;
  color: #1f1f1f;
  margin-right: 14px;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}

/* HERO SECTION */

.about-section {
  position: relative;
  height: 80vh;
}

.articles-section {
  position: relative;
  padding-bottom: 70px;
}

.work-section {
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 107px;
  margin-bottom: -130px;
  padding-bottom: 140px;
  min-height: calc(100vh - 107px);
}

.crafting-line {
  font-size: 14px;
  color: #1f1f1f;
  font-family: 'Avenir Next';
}

.hero-headline {
  font-family: 'Avenir Next Demi';
  font-size: 35px;
  line-height: 41.5px;
  letter-spacing: 1px;
  color: #1f1f1f;
  margin-bottom: 18px;
}

.hero-image {
  width: 80%;
}

@media (min-width: 576px) {
  .hero-image {
    width: 500px;
  }
}

.highlighted-word-designed {
  margin-left: 10px;
}

.highlighted-word-designed:before {
  content: url('/assets/img/assets/marker-1.png');
  position: absolute;
  z-index: -10;
  margin-left: -7px;
  margin-top: -4px;
  animation: highlight 0.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}

.highlighted-word-better {
  margin-left: 10px;
}

.highlighted-word-better:before {
  content: url('/assets/img/assets/marker-2.png');
  position: absolute;
  z-index: -10;
  margin-left: -8px;
  margin-top: -4px;
  animation: highlight 0.2s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}

/* CASE STUDY#1 SECTION */

.casestudy1-section {
  height: 100vh;
  position: relative;
}

.laptop-lid {
  margin-right: -474px;
  margin-bottom: 0px;
  margin-left: -400px;
}

/* ANIMATIONS: this section contains all the animations */

@keyframes highlight {
  0% {
    clip-path: inset(0% 100% 0% 0% round 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0% round 0%);
  }
}

/* Imprint */

.imprint-section {
  padding-top: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
}

.imprint-section h1 {
  font-size: 40px;
  font-family: 'Avenir Next Demi';
  color: #1f1f1f;
  text-align: center;
  align-self: center;
  margin-top: 30px;
  margin-bottom: 80px;
}

.imprint-block {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 850px;
  width: 100%;
  margin-bottom: 30px;
}

.imprint-block-title {
  font-size: 17px;
  color: #1f1f1f;
  font-family: 'Avenir Next Demi';
  margin-bottom: 7px;
  opacity: 0.9;
}

.imprint-block-paragraph {
  font-size: 20px;
  font-family: 'Avenir Next';
  color: #1f1f1fcc;
  line-height: 29px;
}

.imprint-block-paragraph span {
  font-size: 20px;
  font-family: 'Avenir Next Demi';
  color: #1f1f1fcc;
  opacity: 0.90;
  line-height: 29px;
}

.imprint-block a {
  color: #0a58ca;
}

.imprint-section .navbar-link::after {
  top: 85%;
}

/* NAVIGATION */

#hamburger-menu {
  width: 250px;
}

.sidebar-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hamburger-button {
  border-color: rgba(31,31,31,0) !important;
  border-radius: 0;
}

.hamburger-toggler-icon {
  background-image: url("/assets/img/hamburger-icon.svg") !important;
}

.hamburger-header {
  justify-content: flex-end;
}

.sidebar-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /*justify-content: space-between;*/
  justify-content: flex-start;
  padding-top: 50px;
}

.sidebar-links {
  font-family: 'Avenir Next Demi';
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 40px;
}

.sidebar-contact-button {
  margin-bottom: 20px;
}

