@charset "UTF-8";
@font-face {
  font-family: "HelveticaNeueLTPro-Lt";
  src: url("webfonts/37D676_0_0.eot");
  src: url("webfonts/37D676_0_0.eot?#iefix") format("embedded-opentype"), url("webfonts/37D676_0_0.woff2") format("woff2"), url("webfonts/37D676_0_0.woff") format("woff"), url("webfonts/37D676_0_0.ttf") format("truetype"), url("webfonts/37D676_0_0.svg#wf") format("svg");
}
@font-face {
  font-family: "HelveticaNeueLTPro-Md";
  src: url("webfonts/37D676_1_0.eot");
  src: url("webfonts/37D676_1_0.eot?#iefix") format("embedded-opentype"), url("webfonts/37D676_1_0.woff2") format("woff2"), url("webfonts/37D676_1_0.woff") format("woff"), url("webfonts/37D676_1_0.ttf") format("truetype"), url("webfonts/37D676_1_0.svg#wf") format("svg");
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.clear::before, .clear::after {
  content: " ";
  display: table;
}
.clear::after {
  clear: both;
}

.site-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 425px) {
  .site-container {
    max-width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 30%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding: 2.5%;
}
@media all and (max-width: 425px) {
  nav {
    display: none;
  }
}
nav > div.nav-logo {
  flex-grow: 1;
}
nav > div.nav-links {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
nav > div.nav-links > div {
  flex-grow: 0;
  padding: 0.35em 0;
}
nav > div.nav-links > div.active {
  flex-grow: 1;
  color: black;
}
nav > div.nav-links > div.inactive {
  flex-grow: 0 !important;
  color: #828282 !important;
}

main {
  position: relative;
  float: right;
  width: 70%;
  padding: 2.5%;
}
@media all and (max-width: 425px) {
  main {
    width: 100%;
    padding: 0 1em;
  }
}

section {
  padding: 24px 0 120px 0;
}

section:last-of-type {
  padding-bottom: 35vh;
}

#intro {
  height: 100vh;
  padding-top: 25vh;
}
@media all and (max-width: 425px) {
  #intro {
    padding: 2em 0 0 0;
  }
}

#scroll-indicator-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 50;
}
@media all and (max-width: 425px) {
  #scroll-indicator-wrapper {
    height: 85vh;
  }
}

#scroll-indicator {
  position: absolute;
  width: 15px;
  bottom: 2.5%;
  right: 2.5%;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
@media all and (max-width: 425px) {
  #scroll-indicator {
    right: 1em;
  }
}
#scroll-indicator > svg {
  transform: rotate(90deg);
  transform-origin: right top;
}

.fade {
  opacity: 0 !important;
}

.mobile-nav {
  display: none;
}
@media all and (max-width: 425px) {
  .mobile-nav {
    display: block;
    top: 0;
    width: 100%;
    height: auto;
    padding: 1em 1em 0.5em 1em;
    z-index: 98;
  }
  .mobile-nav > #mobile-nav-logo {
    width: 65%;
    height: auto;
  }
}

@media all and (max-width: 425px) {
  #mobile-nav-logo {
    width: 65%;
    height: auto;
  }
}

.button_container {
  display: none;
}
@media all and (max-width: 425px) {
  .button_container {
    display: block;
    position: fixed;
    top: 1em;
    right: 1em;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
  }
  .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #e20512;
  }
  .button_container.active .middle {
    opacity: 0;
    background: #e20512;
  }
  .button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #e20512;
  }
  .button_container span {
    background: #828282;
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
  }
  .button_container span:nth-of-type(2) {
    top: 11px;
  }
  .button_container span:nth-of-type(3) {
    top: 22px;
  }
}

.overlay {
  position: fixed;
  background: #555555;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 98;
}
.overlay.open {
  opacity: 0.95;
  visibility: visible;
  height: 100vh;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}
.overlay > div.logo {
  width: 100%;
  padding: 1em;
}
.overlay > div.logo > img {
  width: 65%;
  height: auto;
}
.overlay > div.menu {
  width: 100%;
  height: 75%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  flex-wrap: none;
  justify-content: center;
}
.overlay > div.menu > div > ul {
  list-style: none;
}
.overlay > div.menu > div > ul > li {
  display: block;
  height: auto;
  margin: 0;
  padding-bottom: 0.75em;
}
.overlay > div.menu > div > ul > li > a {
  font-family: "HelveticaNeueLTPro-Md";
  font-size: 19.2px;
  color: #c5c5c5;
}
.overlay > div.menu > div.mobile-contact {
  color: #c5c5c5;
  padding: 1em 0 0 0;
  border-top: 1px solid #c5c5c5;
}

.zusatz + .zusatz {
  margin-top: 1em;
}

.credits {
  margin-top: 3em;
}

button.tablinks {
  font-family: "HelveticaNeueLTPro-Md";
  color: #555555;
}

p.links {
  font-family: "HelveticaNeueLTPro-Md";
  color: #828282;
}

button.tablinks.active, button.tablinks:active, button.tablinks:hover, button.tablinks:focus, .red-title, p.red-title, p.intro > span, p.dash > span {
  font-family: "HelveticaNeueLTPro-Md";
  color: #e20512;
}

body {
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
}
body ::selection {
  background: #828282;
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, a:active, a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #e20512;
}

[class*=nav-] > a {
  border: none;
}

.nav-links-links {
  border: none !important;
}

h1, h2, h3, h4, h5, h6, p {
  font-family: "HelveticaNeueLTPro-Lt";
  font-weight: normal !important;
  font-style: normal !important;
  margin-bottom: 1em;
}

h1 {
  font-size: 54px;
  margin: 0;
}
@media all and (max-width: 425px) {
  h1 {
    font-size: 48px;
  }
}
@media all and (max-width: 320px) {
  h1 {
    font-size: 42px;
  }
}

h2 {
  font-size: 24px;
  font-family: "HelveticaNeueLTPro-Md";
  padding: 0.5em 0;
  margin-bottom: 0;
}
h2.red {
  color: #e20512 !important;
}

p {
  font-size: 14.4px;
}

h5 {
  font-size: 14.4px;
  font-family: "HelveticaNeueLTPro-Md";
  color: #828282;
}

.nav-links {
  font-size: 14.4px;
  font-family: "HelveticaNeueLTPro-Md";
  color: #828282;
}

h6 {
  font-size: 15.6px;
  font-family: "HelveticaNeueLTPro-Md";
  color: #e20512;
  margin-bottom: 0.5em;
}

.red {
  color: #e20512;
}

.midgrey {
  color: #828282;
}

.darkgrey {
  color: #555555;
}

p {
  line-height: 135%;
  margin-bottom: 1em;
}
p.dash {
  text-indent: -1.125em hanging;
  padding-left: 1.125em;
}
p.dash + p.dash {
  margin-top: -0.5em;
}
@supports not (text-indent: -1.125em hanging) {
  p.dash {
    padding-left: 0;
  }
}
p.dash > span {
  padding-right: 0.25em;
  margin-left: -0.125em;
}
p.intro > span {
  padding-right: 1em;
}
p.indent {
  text-indent: 1.125em;
}
p.indent + p.indent {
  margin-top: -0.5em;
}
p.red-title {
  margin-bottom: 0;
}
p.black-mid {
  font-family: "HelveticaNeueLTPro-Md";
  color: black !important;
}
p.links {
  margin-top: -0.5em;
}
p.links a {
  border-bottom: 1px solid #828282;
}
p.links a:hover {
  border-bottom: 1px solid #e20512;
}
p.links.verlautbarungen {
  margin-top: 1em;
}
p.links #loadMore {
  margin-top: 2em;
}
p.footnote {
  font-size: 12px;
}
p > .emphasis {
  font-family: "HelveticaNeueLTPro-Md";
  color: black;
}

p.links + p.footnote {
  margin-top: -0.5em;
}

p.intro + p.indent {
  margin-top: -0.5em;
}

p.intro + p.dash {
  margin-top: -0.5em;
}

p + p.dash {
  margin-top: -0.5em;
}

.black-mid {
  font-family: "HelveticaNeueLTPro-Md" !important;
  color: black !important;
}

.table {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.table p {
  margin-bottom: 0;
}

.table-cell {
  flex-grow: 1;
  overflow: hidden;
  list-style: none;
}
.table-cell-25 {
  width: 25%;
  padding-right: 0.75em;
}
.table-cell-40 {
  width: 40%;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #c5c5c5;
}
@media all and (max-width: 425px) {
  .table-cell-40 {
    width: 100%;
  }
}
.table-cell-50 {
  width: 50%;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  padding-right: 0.75em;
  border-bottom: 1px solid #c5c5c5;
}
.table-cell-60 {
  width: 60%;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  padding-right: 0.75em;
  border-bottom: 1px solid #c5c5c5;
}
@media all and (max-width: 425px) {
  .table-cell-60 {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0;
  }
}
.table-cell-75 {
  width: 75%;
}

.niederlassung {
  border-bottom: none;
}

@media all and (max-width: 425px) {
  [class^=table-] {
    width: 100%;
  }
}

.verlautbarung-item {
  display: none;
  border-bottom: 1px solid #c5c5c5;
}
.verlautbarung-item :first-child {
  margin: 1em 0 0 0;
}

.verlautbarung-item:first-of-type {
  margin-top: -0.5em;
}

.stellungnahmen-item {
  display: none;
  border-bottom: 1px solid #c5c5c5;
}
.stellungnahmen-item :first-child {
  margin: 1em 0 0 0;
}

.stellungnahmen-item:first-of-type {
  margin-top: -0.5em;
}

.stellungnahmen-container + p {
  display: none;
}

@keyframes grow-left {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.section-intro {
  margin-bottom: 1.5em;
}
.section-intro.lines:before, .section-intro.lines:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #e20512;
  transform: scaleX(0);
  transform-origin: left;
  animation: grow-left cubic-bezier(0.81, 0.01, 0.19, 0.99) 0.75s forwards;
  animation-delay: 0.125s;
}
.section-intro.lines:after {
  animation-delay: 0.5s;
}

@keyframes translate-nav {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translateY(-200px);
  }
}
.spacer.s0 {
  min-height: 1px;
}

#logo {
  width: 90%;
  padding-bottom: 2em;
}
@media all and (max-width: 425px) {
  #logo {
    width: 75%;
  }
}

/**
 * Accordion container element
 */
.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion > li {
  margin: 0;
}

/**
 * Add zero-width space. needed to ensure Safari + VO respect list semantics.
 * Set the before content to position absolute to negate any visible space
 * the before content could add to the document.
 */
.accordion > li:before {
  content: "​";
  position: absolute;
}

/**
 * Accordion Heading
 */
.accordion__heading {
  font-size: 24px;
  font-family: "HelveticaNeueLTPro-Md";
  margin: 0;
}
.accordion__heading.lines:before {
  content: "";
  display: block;
  margin: -1px 0 0 0;
  height: 1px;
  width: 100%;
  background: #828282;
  transform: scaleX(0);
  transform-origin: left;
  animation: grow-left cubic-bezier(0.81, 0.01, 0.19, 0.99) 1.25s forwards;
  animation-delay: 0.125s;
}
.accordion__heading.accordion-heading-sml {
  font-size: 18px;
  font-family: "HelveticaNeueLTPro-Md";
  margin: 0;
  padding: 0.125em 0;
}
.accordion__heading.accordion-heading-sml:before {
  content: "";
  display: block;
  height: 0px;
  width: 100%;
  background: #828282;
}

.accordion__heading[aria-expanded=true]:after {
  content: "";
  display: block;
  opacity: 0;
}

h3.lines:nth-of-type(1n):before {
  animation-delay: 0.125s;
}

h3.lines:nth-of-type(2n):before {
  animation-delay: 0.25s;
}

h3.lines:nth-of-type(3n):before {
  animation-delay: 0.375s;
}

h3.lines:nth-of-type(4n):before {
  animation-delay: 0.5s;
}

h3.lines:nth-of-type(5n):before {
  animation-delay: 0.625s;
}

h3.lines:nth-of-type(6n):before {
  animation-delay: 0.75s;
}

h3.lines:nth-of-type(7n):before {
  animation-delay: 0.875s;
}

h3.lines:nth-of-type(8n):before {
  animation-delay: 1s;
}

h3.lines:nth-of-type(9n):before {
  animation-delay: 1.125s;
}

h3.lines:nth-of-type(10n):before {
  animation-delay: 1.25s;
}

h3.lines:last-of-type:after {
  content: "";
  display: block;
  margin-bottom: -1px;
  height: 1px;
  width: 100%;
  background: #828282;
  transform: scaleX(0);
  transform-origin: left;
  animation: grow-left cubic-bezier(0.81, 0.01, 0.19, 0.99) 1.25s forwards;
  animation-delay: 0.75s;
  transition: opacity 0.125s ease-in-out;
  opacity: 1;
}
h3.lines:last-of-type:after[aria-expanded=true] {
  opacity: 0 !important;
}

.accordion-heading-sml > .accordion__trigger:after, .accordion-heading-sml > .accordion__trigger:before {
  width: 20px;
}

.accordion__trigger {
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: black;
  cursor: pointer;
  display: block;
  font-size: inherit;
  margin: 0;
  padding-top: 0.55em;
  padding-bottom: 0.5em;
  padding-right: 2em;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}

.accordion__trigger:after {
  bottom: 0;
  content: "";
  margin: auto;
  position: absolute;
  right: 0.5em;
  top: 0;
  transition: opacity 0.125s ease-in-out;
  transform-origin: center center;
  transform: rotate(0deg);
  height: 1px;
  width: 25px;
  background-color: #828282;
  opacity: 1;
}

.accordion__trigger:before {
  bottom: 0;
  content: "";
  margin: auto;
  position: absolute;
  right: 0.5em;
  top: 0;
  transition: transform 0.2s ease-in-out;
  transform-origin: center center;
  transform: rotate(90deg);
  height: 1px;
  width: 25px;
  background-color: #828282;
  opacity: 1;
}

.accordion__trigger[aria-expanded=true]:after {
  background-color: #e20512;
  opacity: 0;
}

.accordion__trigger[aria-expanded=true]:before {
  transform: rotate(180deg);
  background-color: #e20512;
}

/**
 * This is needed to allow a double tap iOS 11
 * Safari + VO to function correctly, if there
 * are multiple elements (wrapper spans) to layout
 * text nodes within the accordion button.

	-- This is not needed if a button only contains text
	   and no other child nodes wrapping the text --

.accordion__trigger > * {
	pointer-events: none;
}
 */
.accordion__trigger:hover,
.accordion__trigger:focus {
  outline: none;
  background-color: none;
  color: black;
  outline: none;
}

.accordion__trigger:hover {
  color: #e20512;
}

.accordion__trigger[aria-disabled=true]:hover {
  background-color: none;
  color: #fff;
  cursor: not-allowed;
}

.accordion__trigger[aria-disabled=true]:focus {
  background-color: #0a2a42;
}

.accordion__panel {
  background-color: inherit;
  max-height: 0vh;
  overflow: hidden;
  padding: 0.001em 0;
  position: relative;
  visibility: hidden;
  z-index: 1;
}
.accordion__panel > p:first-of-type {
  margin-top: -1em;
}
.accordion__panel > p:last-of-type {
  margin-bottom: 0.5em;
}

.accordion__panel--transition {
  transition: max-height 0.1s ease-in-out, padding-top 0.1s ease-in-out, padding-bottom 0.1s ease-in-out;
}

.accordion__panel > :last-child {
  margin-bottom: 0;
}

.accordion__panel[aria-hidden=false] {
  max-height: 10000vh;
  overflow: auto;
  padding: 1em 0 0.5em 0;
  visibility: visible;
}

.accordion__trigger[aria-expanded=true] {
  background: none;
  color: #e20512;
}

.tab {
  margin: -0.5em 0 0.5em 0;
}

.tabcontent {
  display: none;
  animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
button.tablinks {
  display: inline-block;
  border: none;
  padding: 0 0.25em 0 0;
  margin: 0;
  text-decoration: none;
  background: none;
  font-size: 15.6px;
  letter-spacing: 0.5em;
  cursor: pointer;
  text-align: center;
  transition: background 250ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}
button.tablinks:hover, button.tablinks:focus {
  background: none;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.000001) 25%, white);
}

[class^=bg-] {
  transition: 0.25s ease-in;
}

.bg-intro {
  background-color: #f0f0f0;
}

.bg-patentanwaltskammer {
  background-color: #dee2e6;
}

.bg-serviceangebot {
  background-color: #e7f3ed;
}

.bg-patentanwaelte {
  background-color: #f8ece2;
}

.bg-kontakt {
  background-color: #d7d2cf;
}

.bg-impressum {
  background-color: #f3efea;
}

.focus--keyboard, a:focus, button:focus, input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 6px 2px #c5c5c5;
}

.focus--mouse, a.focus--mouse:focus, button.focus--mouse:focus, input.focus--mouse:focus, select.focus--mouse:focus, textarea.focus--mouse:focus {
  border-color: none;
  box-shadow: none;
  outline: none;
}

.mobile-only {
  display: none;
}
@media all and (max-width: 425px) {
  .mobile-only {
    display: inline;
  }
}

@media all and (max-width: 425px) {
  .desktop-only {
    display: none;
  }
}
