:root {
  --green: #439c49;
  --dark: #282a2b;
  --text: #222;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh; /*need to test later if this is indeed needed or can be omitted*/
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.title-inner {
  height: 79px
}

.breadcrumb {
  margin: 0;
}

h1{
  margin-top: 9px;
}

@media screen and (max-width: 767px) {
    .title-inner {
        justify-content: center;
        height: 60px;
    }
}