.navigation svg {
  height: 40px !important;
  width: 40px !important;
}


.layout-realisations {
  opacity: 0;
  transform: translateX(-50px);
  animation-name: show_body;
  animation-delay: 0.1s;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes show_body {

  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }

}


/*
.layout-realisations {
  opacity: 0;  
  margin-left: -50px;
  animation-name: show_body;
  animation-delay: 0.1s;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes show_body {

  from {
    opacity: 0;
    margin-left: -50px;
  }

  to {
    opacity: 1;
    margin-left: 0px;
  }

}
*/

.layout-realisations a:not(.wp-block-navigation-item__content) {
  font-family: 'Futura Regular';
  letter-spacing: -0.01em;
}

.layout-realisations a:hover {
  text-decoration: underline;
}

.layout-realisations .layout-nav a:hover {
  text-decoration: none;
}

.layout-realisations p strong {
  font-family: 'Futura Regular';
}


.layout-realisations pre {
  display: block;
  background-color: #222325;
  border-radius: 10px;
  padding: 20px 10px;
  overflow: hidden;
}

.layout-realisations pre code {
  color: #dcdcdc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 0.8em;
  line-height: 1.5;
  max-height: 400px;
  overflow-y: auto;
  background-color: transparent;
}


.layout-realisations pre code .highlight-line {
  background-color: rgba(255, 255, 255, 0.05);
  display: block;
  padding: 0 0.5em;
}


.layout-realisations pre code::-webkit-scrollbar {
  width: 10px;
}

.layout-realisations pre code::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 10px;
}

.layout-realisations pre code::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #1e1e1e;
}

.layout-realisations pre code::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}



@media screen and (max-width:768px) {

  h1.wp-block-post-title {
    font-size: 60px !important;
    line-height: 1 !important;
  }

}

@media screen and (max-width:480px) {

  h1.wp-block-post-title {
    font-size: 50px !important;
    line-height: 1 !important;
  }

}