@charset "UTF-8";
/* Source Sans 3 Regular */
@font-face {
  font-family: SourceSans3;
  src: url(/assets/font/SourceSans3-VariableFont_wght.ttf);
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: SourceSans3;
  src: url(/assets/font/SourceSans3-Italic-VariableFont_wght.ttf);
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}
/* variables */
:root {
  --prime: #FFD341;
  --text-prime: #f8f8f8;
  --text-second: #80879C;
  --second: #e9ebf1;
  --black: #212328;
  --borders: 150px;
  --nav-borders: 150px;
}

/* reset */
* {
  font-family: SourceSans3;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-appearance: 0;
     -moz-appearance: 0;
          appearance: 0;
  border: 0;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body, p, a, ul, li, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  text-decoration: none;
  overflow-x: hidden;
  color: var(--black);
}

li {
  list-style-type: none;
}

.grid {
  grid-template-columns: repeat(12, 1fr);
}

/* base styles */
body {
  background: #0B0B0B;
  width: 100vw;
  font-size: 2rem;
}

h1 {
  color: var(--text-prime);
  font-weight: 900;
  font-size: 5.6rem;
}

p {
  font-weight: 600;
  font-size: 2rem;
  line-height: normal;
}

.container-phone {
  max-width: 378px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 16px 20px;
  gap: 10px;
  background-color: var(--prime);
  border: 1px solid #000000;
  border-radius: 10px;
}
.container-phone span {
  height: 32px;
  width: 2px;
  background-color: #d0b045;
}
.container-phone h2 {
  color: #000000;
  font-weight: 700;
  font-size: 2.2rem;
}
.container-phone svg {
  width: 30px;
  height: 30px;
}

.container-phone:hover {
  background-color: var(--text-prime);
}
.container-phone:hover span {
  background-color: var(--black);
}

#consent-overlay {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
  transition: display 0.8s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

#consent-popup {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--text-prime);
  border-radius: 10px;
  border: 1px solid var(--black);
  gap: 5px;
}
#consent-popup p {
  color: var(--black);
}
#consent-popup a {
  color: var(--text-second);
  font-weight: 600;
}
#consent-popup a:hover {
  color: var(--prime);
}
#consent-popup span {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
#consent-popup .consent-button {
  padding: 1rem;
  background: var(--second);
  border-radius: 10px;
  border: 1px solid var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
#consent-popup .consent-button:hover {
  background: var(--prime);
}

/* desktop styles */
#site-nav {
  position: fixed;
  top: 0;
  width: 100vw;
  padding: 20px var(--nav-borders);
  z-index: 10;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  z-index: 1;
}
.nav-content svg {
  width: 128px;
  height: 60px;
}

.menu-container {
  display: flex;
}

#burgermenu {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  gap: 5px;
  overflow: visible;
  z-index: 4;
}
#burgermenu #burger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  background-color: var(--black);
}
#burgermenu #burger-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
}
#burgermenu #burger-icon span:nth-child(3) {
  width: 12px;
}
#burgermenu #overlay {
  z-index: 5;
  width: 40px;
  height: 40px;
  background-color: #fff;
  opacity: 0;
  position: absolute;
}
#burgermenu #rep_menu {
  overflow: visible;
  z-index: 3;
  width: 82vw;
  max-width: 370px;
  flex-direction: column;
  align-items: center;
  background-color: var(--black);
  border: 2px solid #37393E;
  border-radius: 10px;
  padding-bottom: 20px;
}
#burgermenu #rep_menu .active {
  opacity: 1;
}
#burgermenu #rep_menu span {
  width: 90%;
  height: 1px;
  background-color: #37393E;
}
#burgermenu #rep_menu a {
  align-self: flex-start;
}
#burgermenu #rep_menu svg {
  width: 64px;
  height: 30px;
}
#burgermenu li {
  font-weight: 600;
  font-size: 1.8rem;
  padding: 22px;
}
#burgermenu li a {
  color: var(--text-prime);
  opacity: 0.5;
}
#burgermenu li a:hover {
  color: var(--prime);
  opacity: 1;
}

#menu {
  overflow: visible;
  display: flex;
}
#menu .active {
  opacity: 1;
}
#menu li {
  font-weight: 600;
  font-size: 1.8rem;
  padding: 22px;
  opacity: 0.5;
}
#menu li a {
  color: var(--text-prime);
}
#menu li a:hover {
  color: var(--prime);
  opacity: 1;
}

.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 52px;
  background-color: var(--prime);
  border-radius: 10px;
}
.btn-phone svg {
  width: 28px;
  height: 28px;
}

.btn-phone:hover {
  background-color: var(--text-prime);
}

#standort {
  background-color: var(--second);
  display: flex;
}
#standort iframe {
  width: 50%;
  align-self: stretch;
}

#standort-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding: 150px 0;
}
#standort-column h2 {
  max-width: 660px;
  font-weight: 900;
  font-size: 4rem;
  color: var(--black);
}
#standort-column #standort-container {
  width: 100%;
  max-width: 660px;
  padding: 30px;
  background-color: var(--text-prime);
  border-radius: 10px;
}
#standort-column #kontakt-container {
  width: 100%;
  max-width: 660px;
  padding: 30px;
  background-color: var(--text-prime);
  border-radius: 10px;
}
#standort-column .container-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#standort-column .container-row h3 {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--black);
}
#standort-column .container-row .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-second);
  border-radius: 10px;
}
#standort-column .container-row .row-item {
  display: flex;
  gap: 20px;
}
#standort-column .container-row .row-item h4 {
  font-weight: 600;
  font-size: 2rem;
  color: var(--black);
}
#standort-column .container-row .row-item p {
  color: var(--text-second);
}
#standort-column .container-row .row-item a {
  font-weight: 600;
  font-size: 2rem;
  color: var(--black);
}
#standort-column .container-column {
  display: flex;
  gap: 20px;
}
#standort-column .container-column .column-item {
  display: flex;
  flex-direction: column;
}
#standort-column .container-column .column-item h4 {
  font-weight: 600;
  font-size: 2rem;
  color: var(--black);
}
#standort-column .container-column .column-item p {
  color: var(--text-second);
}
#standort-column .container-column .column-item a {
  font-weight: 600;
  font-size: 2rem;
  color: var(--black);
}
#standort-column span {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: var(--second);
  margin: 24px 0 12px 0;
}

#kunden-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 150px var(--borders);
  gap: 150px;
  background-color: #f8f8f8;
}

#kunden {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
#kunden h2 {
  font-weight: 700;
  font-size: 4rem;
  color: var(--black);
}
#kunden #kunden-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#kunden #kunden-row .row-item {
  width: 21%;
  border-top: 1px solid #ced1d9;
  padding: 20px 0;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--black);
}

#notdienst {
  width: 100%;
  background: linear-gradient(180deg, var(--black) 0%, #0B0B0B 100%);
  border-radius: 20px;
  padding: 85px 0;
  overflow: hidden;
}
#notdienst #row-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#notdienst .svg-box {
  width: 1px;
  height: 1px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
#notdienst #lock {
  width: 308px;
  height: 312px;
  flex-shrink: 0;
  position: relative;
  left: 200px;
}
#notdienst #safe {
  width: 247px;
  height: 286px;
  flex-shrink: 0;
  position: relative;
  right: 200px;
}
#notdienst #column-container {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
  overflow: hidden;
  align-self: center;
  justify-self: center;
  width: 100%;
}
#notdienst #column-container #title {
  max-width: 600px;
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
  color: var(--text-prime);
}
#notdienst #row {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
}
#notdienst #row h3 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-prime);
}
#notdienst #row .head-row-item {
  margin: 0;
}

footer {
  background-color: var(--black);
  padding: 100px var(--borders) 0 var(--borders);
}
footer #footer-frame {
  display: flex;
  flex-direction: column;
  gap: 180px;
}
footer #footer-frame #footer-grid {
  display: grid;
  justify-content: center;
}
footer #footer-frame #footer-grid .svg-link {
  width: 201px;
  height: 94px;
  grid-column: 1/4;
  overflow: visible;
}
footer #footer-frame #footer-grid #kontakt-container {
  grid-column: 4/7;
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-wrap: wrap;
}
footer #footer-frame #footer-grid #kontakt-container h3 {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text-second);
}
footer #footer-frame #footer-grid #kontakt-container p {
  color: var(--text-prime);
}
footer #footer-frame #footer-grid #kontakt-container a {
  color: var(--text-prime);
}
footer #footer-frame #footer-grid #leistungen-container {
  grid-column: 7/10;
  flex-wrap: wrap;
}
footer #footer-frame #footer-grid #unternehmen-container {
  grid-column: 10/13;
  flex-wrap: wrap;
}
footer #footer-frame #footer-grid .link-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer #footer-frame #footer-grid .link-container h3 {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text-second);
}
footer #footer-frame #footer-grid .link-container span {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer #footer-frame #footer-grid .link-container span a {
  font-weight: 600;
  font-size: 2rem;
  color: var(--text-prime);
}
footer #footer-frame #footer-rights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 10%;
  -moz-column-gap: 20%;
       column-gap: 20%;
  padding: 62px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
footer #footer-frame #footer-rights h3 {
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--text-second);
}
footer #footer-frame #footer-rights a {
  color: var(--text-prime);
}

/* Section Schlüsseldienst */
#schluesseldienst {
  width: 100vw;
  background-color: #0b0b0b;
}

.svg-frame {
  max-height: 100%;
  height: auto;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.svg-frame svg {
  flex-shrink: 0;
}

#e9WoxEQHi7J2_tr {
  animation: e9WoxEQHi7J2_tr__tr 10000ms linear infinite normal forwards;
}

@keyframes e9WoxEQHi7J2_tr__tr {
  0% {
    transform: translate(1000px, 1000px) rotate(270deg);
    animation-timing-function: steps(360, start);
  }
  100% {
    transform: translate(1000px, 1000px) rotate(630deg);
  }
}
#e9WoxEQHi7J3_tr {
  animation: e9WoxEQHi7J3_tr__tr 10000ms linear infinite normal forwards;
}

@keyframes e9WoxEQHi7J3_tr__tr {
  0% {
    transform: translate(993px, 1007px) rotate(180deg);
    animation-timing-function: steps(360, start);
  }
  100% {
    transform: translate(993px, 1007px) rotate(540deg);
  }
}
#e9WoxEQHi7J4_tr {
  animation: e9WoxEQHi7J4_tr__tr 10000ms linear infinite normal forwards;
}

@keyframes e9WoxEQHi7J4_tr__tr {
  0% {
    transform: translate(1000px, 1000px) rotate(90deg);
    animation-timing-function: steps(360, start);
  }
  100% {
    transform: translate(1000px, 1000px) rotate(450deg);
  }
}
#e9WoxEQHi7J5_tr {
  animation: e9WoxEQHi7J5_tr__tr 10000ms linear infinite normal forwards;
}

@keyframes e9WoxEQHi7J5_tr__tr {
  0% {
    transform: translate(1000px, 1000px) rotate(0deg);
    animation-timing-function: steps(360, start);
  }
  100% {
    transform: translate(1000px, 1000px) rotate(360deg);
  }
}
.head-frame {
  position: relative;
  background-color: #0B0B0B;
  overflow: hidden;
}
.head-frame .head {
  padding: 224px var(--borders) 138px var(--borders);
  display: flex;
  flex-direction: column;
  gap: 35px;
  z-index: 2;
  width: 100%;
  position: relative;
}
.head-frame .head p {
  color: var(--text-second);
  font-size: 2rem;
}

.head-footer-frame {
  padding: 0 var(--borders);
  background-color: var(--text-prime);
  border-bottom: 2px solid var(--second);
}

#head-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 46px 0;
}

.head-row-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.head-row-item svg {
  width: 23px;
  height: 20px;
}
.head-row-item h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
}

.einleitung-frame {
  padding: 0 var(--borders);
  background-color: var(--text-prime);
}

.einleitung {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 100px;
  padding: 100px 0;
  border-bottom: 2px solid var(--second);
}
.einleitung span {
  display: flex;
}
.einleitung img {
  max-width: 760px;
  width: 100%;
  height: auto;
  flex-shrink: 1;
  border-radius: 20px;
  align-self: center;
}

.einleitung-text-container {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 45%;
  justify-content: center;
}
.einleitung-text-container h2 {
  font-weight: 900;
  font-size: 4rem;
  line-height: 5.7rem;
  color: var(--black);
  overflow: visible;
}
.einleitung-text-container p {
  color: var(--text-second);
  overflow: visible;
}

.gedenken-frame {
  padding: 100px var(--borders);
  background-color: var(--second);
}
.gedenken-frame .gedenken {
  display: flex;
  gap: 100px;
}
.gedenken-frame .gedenken img {
  max-width: 760px;
  border-radius: 20px;
  box-shadow: none;
  flex-shrink: 1;
  height: auto;
}
.gedenken-frame .gedenken .gedenken-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.gedenken-frame .gedenken .gedenken-text-container h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.gedenken-frame .gedenken .gedenken-text-container span {
  display: flex;
  flex-direction: column;
}
.gedenken-frame .gedenken .gedenken-text-container span h2 {
  font-size: 4rem;
  font-weight: 900;
}
.gedenken-frame .gedenken .gedenken-text-container span h3 {
  font-size: 2rem;
  font-weight: 900;
}
.gedenken-frame .gedenken .gedenken-text-container .p-span {
  display: flex;
  gap: 60px;
}
.gedenken-frame .gedenken .gedenken-text-container .p-span p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-second);
}

#leistungen-frame {
  background-color: var(--text-prime);
  padding: 100px var(--borders);
}

#leistungen {
  display: flex;
  flex-direction: column;
  gap: 75px;
  align-items: center;
}
#leistungen h2 {
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
}

#leistungen-table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 45px;
}
#leistungen-table .row-item {
  width: 45%;
  max-width: 760px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
#leistungen-table .row-item svg {
  width: 23px;
  height: 20px;
  flex-shrink: 0;
}
#leistungen-table .row-item span {
  display: flex;
  align-items: center;
  gap: 25px;
}
#leistungen-table .row-item span svg {
  width: 60px;
  height: 60px;
}
#leistungen-table .row-item span h3 {
  font-weight: 700;
  font-size: 2.2rem;
  overflow: visible;
}

.sicherheit-frame {
  background-color: var(--second);
  padding: 100px var(--borders);
}

.sicherheit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 75px;
}
.sicherheit h2 {
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
  color: var(--black);
}
.sicherheit a {
  width: 390px;
  padding: 16px 0;
  background-color: var(--prime);
  border: 1px solid #000000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 2rem;
}
.sicherheit a:hover {
  background-color: var(--black);
  color: var(--text-prime);
}

.sicherheit-card-row {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.sicherheit-card-row span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.sicherheit-card {
  min-width: 330px;
  max-width: 390px;
  background-color: var(--text-prime);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  min-height: 493px;
  border-radius: 10px;
  padding: 40px 30px;
}
.sicherheit-card svg {
  width: 80px;
  height: 74px;
}
.sicherheit-card span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.sicherheit-card span h3 {
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--black);
}
.sicherheit-card span h4 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-second);
}
.sicherheit-card p {
  font-weight: 400;
  font-size: 2rem;
  color: var(--text-second);
  max-width: 330px;
  padding: 20px 0;
}

#schluesselschilder-frame {
  background-color: var(--text-prime);
  padding: 150px var(--borders);
}

#schluesselschilder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 150px;
}
#schluesselschilder .text-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
#schluesselschilder .text-container h2 {
  font-weight: 900;
  font-size: 4rem;
  color: var(--black);
}
#schluesselschilder .text-container p {
  color: #6A7080;
}
#schluesselschilder .text-container .container-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#schluesselschilder .text-container .container-list .list-item {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-second);
  padding: 12px 25px;
  background-color: var(--second);
  border-radius: 10px;
}
#schluesselschilder span {
  display: flex;
  width: 45%;
}
#schluesselschilder span img {
  max-width: 760px;
  width: 100%;
  height: auto;
  flex-shrink: 1;
  align-self: center;
  border-radius: 10px;
}
#schluesselschilder #schluessel-container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
#schluesselschilder #schilder-container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

#sicherheitstechnik {
  width: 100vw;
  background-color: #0b0b0b;
}
#sicherheitstechnik .head {
  padding: 224px var(--borders) 138px var(--borders);
}
#sicherheitstechnik .head h2 {
  font-size: 4.2rem;
  font-weight: 600;
  line-height: normal;
  color: var(--text-second);
}
#sicherheitstechnik .head span {
  display: flex;
  gap: 45px;
}
#sicherheitstechnik .head span h3 {
  color: var(--text-prime);
}
#sicherheitstechnik .head p {
  max-width: 75.8rem;
}
#sicherheitstechnik .st-container-phone {
  max-width: 320px;
  padding: 16px 20px;
  background-color: var(--second);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sicherheitstechnik .st-container-phone svg {
  width: 30px;
  height: 30px;
}
#sicherheitstechnik .st-container-phone span {
  height: 32px;
  width: 2px;
  background-color: black;
}
#sicherheitstechnik .st-container-phone h3 {
  color: #000;
  font-size: 2.2rem;
  line-height: normal;
  font-weight: 700;
}
#sicherheitstechnik .st-container-phone:hover svg {
  opacity: 0.6;
}
#sicherheitstechnik .st-container-phone:hover span {
  opacity: 0.6;
}
#sicherheitstechnik .st-container-phone:hover h3 {
  opacity: 0.6;
}
#sicherheitstechnik .st-leistungen-frame {
  background-color: var(--second);
  padding: 100px 80px;
}
#sicherheitstechnik #st-leistungen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 75px;
}
#sicherheitstechnik #st-leistungen h2 {
  font-weight: 900;
  font-size: 4rem;
  line-height: normal;
  overflow: visible;
  text-align: center;
  color: var(--black);
}
#sicherheitstechnik #st-leistungen-card-row {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
#sicherheitstechnik #st-leistungen-card-row span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  flex-wrap: wrap;
  gap: 20px;
}
#sicherheitstechnik .st-leistungen-card {
  min-width: 330px;
  max-width: 380px;
  background-color: var(--text-prime);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 238px;
  border-radius: 10px;
  padding: 25px;
}
#sicherheitstechnik .st-leistungen-card h3 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: normal;
  color: var(--black);
}
#sicherheitstechnik #erstberatung-frame {
  padding: 0 var(--borders);
}
#sicherheitstechnik #erstberatung-frame #erstberatung {
  padding: 75px 0;
  display: flex;
  justify-content: flex-start;
  gap: 75px;
}
#sicherheitstechnik #erstberatung-frame #erstberatung .svg-container {
  width: 172px;
  height: 172px;
}
#sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container h2 {
  font-size: 3.5rem;
  color: var(--text-prime);
}
#sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container p {
  font-size: 2rem;
  color: var(--text-second);
}
#sicherheitstechnik .produkt-frame {
  padding: 0 var(--borders);
  background-color: var(--text-prime);
}
#sicherheitstechnik .produkt-frame .produkt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding-top: 100px;
}
#sicherheitstechnik .produkt-frame .produkt h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
}
#sicherheitstechnik .produkt-frame .produkt #produkt-tabelle {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
#sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row {
  display: flex;
  gap: 300px;
  border-top: 1px solid var(--second);
  padding-top: 23px;
}
#sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .svg-container {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: var(--second);
}
#sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .produkt-text-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .produkt-text-container h3 {
  font-size: 2.8rem;
  line-height: normal;
}
#sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .produkt-text-container p {
  font-size: 1.6rem;
  line-height: normal;
  color: var(--text-second);
}
#sicherheitstechnik .tresor-frame {
  padding: 100px var(--borders);
  background-color: var(--text-prime);
}
#sicherheitstechnik .tresor-frame .tresor {
  display: flex;
  gap: 200px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--black) 0%, #0B0B0B 100%);
  padding: 50px;
  overflow: hidden;
  position: relative;
}
#sicherheitstechnik .tresor-frame .tresor .tresor-text-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#sicherheitstechnik .tresor-frame .tresor .tresor-text-container h2 {
  font-size: 4rem;
  line-height: normal;
  color: var(--text-prime);
}
#sicherheitstechnik .tresor-frame .tresor .tresor-text-container p {
  font-size: 2rem;
  line-height: normal;
  color: var(--text-second);
  max-width: 615px;
}
#sicherheitstechnik .tresor-frame .tresor .svg-container {
  height: 1px;
  width: 1px;
  overflow: visible;
}

#notoeffnung {
  background-color: #0B0B0B;
}
#notoeffnung .head {
  padding: 224px var(--borders) 138px var(--borders);
}
#notoeffnung .head .check-frame {
  display: flex;
  gap: 45px;
}
#notoeffnung .head .check-frame span {
  display: flex;
  gap: 15px;
  align-items: center;
}
#notoeffnung .head .check-frame span svg {
  width: 23px;
  height: 20px;
}
#notoeffnung .head .check-frame span p {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

#kontakt .head {
  padding: 224px var(--borders) 138px var(--borders);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#kontakt .head span {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#kontakt .head span p {
  font-size: 2.2rem;
}

#impressum-text {
  padding: var(--borders);
  background-color: var(--second);
}

#datenschutz-text {
  padding: var(--borders);
  background-color: var(--second);
}

/* large tablets & laptop styles*/
@media screen and (max-width: 1440px) {
  /*Variables*/
  :root {
    --borders:80px;
    --nav-borders:80px;
  }
  /*base styles*/
  #standort {
    flex-direction: column-reverse;
  }
  #standort iframe {
    width: 100%;
    min-height: 660px;
  }
  #standort-column {
    align-items: center;
    padding: 80px var(--borders);
    gap: 40px;
    width: 100%;
  }
  #standort-column h2 {
    text-align: center;
    font-size: 3.6rem;
  }
  #kunden-frame {
    padding: 120px var(--borders);
    gap: 80px;
  }
  #kunden #kunden-row .row-item {
    width: 45%;
  }
  #notdienst {
    padding: 65px 0;
    overflow: hidden;
  }
  #notdienst #safe {
    right: 50px;
  }
  #notdienst #lock {
    left: 50px;
  }
  #notdienst #container-column .container-phone h2 {
    min-width: 270px;
  }
  #notdienst #row {
    flex-wrap: wrap;
  }
  footer #footer-frame #footer-grid .svg-link {
    width: 150px;
    height: 70px;
  }
  footer #footer-frame #footer-grid #kontakt-container h3 {
    overflow: visible;
    font-size: 1.6rem;
  }
  footer #footer-frame #footer-grid #kontakt-container p {
    overflow: visible;
    font-size: 2rem;
  }
  footer #footer-frame #footer-grid #kontakt-container a {
    overflow: visible;
    font-size: 2rem;
    font-weight: 600;
  }
  footer #footer-frame #footer-grid .link-container h3 {
    overflow: visible;
    font-size: 1.6rem;
  }
  footer #footer-frame #footer-grid .link-container span a {
    overflow: visible;
    font-size: 2rem;
  }
  footer #footer-frame #footer-rights {
    justify-content: center;
  }
  /* Content Style*/
  .einleitung {
    padding: 80px 0;
  }
  .einleitung-text-container {
    gap: 40px;
  }
  .einleitung-text-container h2 {
    font-size: 3.6rem;
  }
  .einleitung-text-container p {
    font-size: 1.6rem;
  }
  .gedenken-frame .gedenken {
    flex-direction: column;
  }
  .gedenken-frame .gedenken img {
    align-self: center;
    width: 100%;
  }
  .gedenken-frame .gedenken .gedenken-text-container {
    gap: 45px;
  }
  #leistungen h2 {
    font-size: 3.6rem;
  }
  #leistungen-table .row-item span h3 {
    font-size: 2rem;
  }
  .sicherheit h2 {
    font-size: 3.6rem;
  }
  #schluesselschilder-frame {
    padding: 120px var(--borders);
  }
  #schluesselschilder {
    row-gap: 130px;
  }
  #schluesselschilder .text-container {
    max-width: 590px;
    gap: 25px;
  }
  #schluesselschilder .text-container .container-list {
    gap: 12px;
  }
  #schluesselschilder .text-container .container-list .list-item {
    padding: 10px 20px;
  }
  #schluesselschilder #schluessel-container {
    gap: 60px;
  }
  #schluesselschilder #schilder-container {
    gap: 60px;
  }
  #sicherheitstechnik .produkt-frame .produkt {
    padding-top: 80px;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row {
    gap: 225px;
  }
  #sicherheitstechnik .st-leistungen-frame {
    padding: 80px 80px;
  }
  #sicherheitstechnik #st-leitstungen h2 {
    font-size: 3.6rem;
  }
  #sicherheitstechnik .tresor-frame .tresor {
    gap: 100px;
  }
}
/* small tables styles */
@media screen and (max-width: 1024px) {
  /*Variables*/
  :root {
    --borders:40px;
    --nav-borders:40px;
  }
  /*base styles*/
  #burgermenu {
    display: flex;
  }
  .menu-container {
    display: none;
  }
  .nav-content svg {
    width: 106px;
    height: 50px;
  }
  .btn-phone svg {
    width: 28px;
    height: 28px;
  }
  h1 {
    font-size: 3.1rem;
  }
  #standort iframe {
    min-height: 480px;
  }
  #standort-column h2 {
    font-size: 3.2rem;
    max-width: 400px;
  }
  #kunden-frame {
    padding: 80px var(--borders);
    gap: 80px;
  }
  #kunden h2 {
    font-size: 3.2rem;
  }
  #notdienst {
    padding: 60px 0;
    position: relative;
  }
  #notdienst #safe {
    right: 10px;
  }
  #notdienst #lock {
    left: 10px;
  }
  #notdienst #column-container #title {
    max-width: 500px;
    font-size: 3.2rem;
  }
  #notdienst span h3 {
    font-size: 1.8rem;
  }
  footer {
    padding-top: 0;
  }
  footer #footer-frame {
    gap: 120px;
  }
  footer #footer-frame #footer-grid {
    padding-top: 80px;
  }
  footer #footer-frame #footer-grid .svg-link {
    grid-row: 1;
    grid-column: 1/13;
    justify-self: center;
    margin-bottom: 80px;
  }
  footer #footer-frame #footer-grid #kontakt-container {
    grid-row: 2;
    grid-column: 1/5;
  }
  footer #footer-frame #footer-grid #leistungen-container {
    grid-row: 2;
    grid-column: 6/9;
  }
  footer #footer-frame #footer-grid #unternehmen-container {
    grid-row: 2;
    grid-column: 10/13;
  }
  footer #footer-frame #footer-rights h3 {
    font-size: 1.4rem;
  }
  /* Content Style */
  #sicherheitstechnik .head .title h1 {
    font-size: 3.6rem;
  }
  #sicherheitstechnik .head .title h2 {
    font-size: 2.8rem;
  }
  #sicherheitstechnik .head span .head-row-item svg {
    width: 16px;
    height: 12px;
  }
  #sicherheitstechnik .head span .head-row-item h3 {
    font-size: 1.8rem;
  }
  #sicherheitstechnik .head p {
    font-size: 1.6rem;
  }
  #sicherheitstechnik #st-leistungen h2 {
    font-size: 3.2rem;
  }
  .head p {
    font-size: 1.6rem;
  }
  #head-footer {
    gap: 5px;
  }
  .einleitung {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .einleitung-text-container {
    gap: 15px;
    max-width: 100%;
  }
  .einleitung-text-container h2 {
    width: 100%;
    font-size: 3.2rem;
    line-height: normal;
  }
  .einleitung-text-container p {
    max-width: 100%;
  }
  #leistungen h2 {
    font-size: 3rem;
  }
  #leistungen-table {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 30px;
  }
  #leistungen-table .row-item {
    width: 100%;
    max-width: 100%;
  }
  #leistungen-table .row-item span h3 {
    font-size: 2rem;
  }
  .sicherheit h2 {
    font-size: 3.5rem;
  }
  #schluesselschilder {
    gap: 80px;
    align-items: center;
    justify-content: center;
  }
  #schluesselschilder span {
    width: 100%;
  }
  #schluesselschilder span img {
    align-self: flex-end;
  }
  #schluesselschilder .text-container {
    max-width: 590px;
    gap: 25px;
    width: 100%;
  }
  #schluesselschilder .text-container h2 {
    font-size: 3.6rem;
  }
  #schluesselschilder .text-container p {
    font-size: 1.6rem;
  }
  #schluesselschilder .text-container .container-list {
    gap: 12px;
  }
  #schluesselschilder .text-container .container-list .list-item {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
  #schluesselschilder #schluessel-container {
    flex-direction: column-reverse;
  }
  #schluesselschilder #schilder-container {
    flex-direction: column;
  }
  #sicherheitstechnik .produkt-frame .produkt h2 {
    font-size: 3.2rem;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row {
    gap: 80px;
  }
  #sicherheitstechnik #st-leistungen-card-row {
    flex-wrap: nowrap;
  }
  #sicherheitstechnik .st-leistungen-card {
    min-width: 180px;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container h2 {
    font-size: 3.2rem;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container p {
    font-size: 1.8rem;
  }
  #sicherheitstechnik .tresor-frame {
    padding: 80px var(--borders);
  }
  #sicherheitstechnik .tresor-frame .tresor {
    padding: 40px;
    gap: 0px;
    overflow: hidden;
  }
  #sicherheitstechnik .tresor-frame .tresor .tresor-text-container {
    z-index: 1;
  }
  #sicherheitstechnik .tresor-frame .tresor .tresor-text-container h2 {
    font-size: 3.2rem;
  }
  #sicherheitstechnik .tresor-frame .tresor .tresor-text-container p {
    font-size: 1.8rem;
  }
  #sicherheitstechnik .tresor-frame .tresor .svg-container {
    position: absolute;
    z-index: 0;
    left: 1;
    right: 300px;
  }
  #notoeffnung .head h1 {
    font-size: 3.5rem;
  }
  #notoeffnung .head .check-frame {
    row-gap: 8px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    flex-wrap: wrap;
  }
  #notoeffnung .head .check-frame span svg {
    width: 20px;
    height: 17px;
  }
  #notoeffnung .head .check-frame span p {
    font-size: 1.8rem;
  }
  #kontakt .head svg {
    width: 122px;
    height: 122px;
  }
  #kontakt .head span {
    gap: 25px;
  }
  #kontakt .head span p {
    font-size: 1.6rem;
  }
}
/* mobile styles */
@media screen and (max-width: 600px) {
  /*Variables*/
  :root {
    --borders:10px;
    --nav-borders:20px;
  }
  .svg-frame {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .svg-frame svg {
    height: 100%;
    width: 200%;
    overflow: hidden;
  }
  #site-nav {
    grid-column: 1/25;
  }
  .nav-content {
    grid-column: 2/24;
  }
  .nav-content svg {
    width: 85px;
    height: 40px;
  }
  .btn-phone {
    width: 40px;
    height: 40px;
  }
  .btn-phone svg {
    width: 24px;
    height: 24px;
  }
  #standort iframe {
    min-height: 330px;
  }
  #standort-column {
    padding: 24px var(--borders);
    gap: 24px;
    max-width: 100%;
    justify-self: center;
  }
  #standort-column h2 {
    text-align: center;
    font-size: 2rem;
    max-width: 280px;
  }
  #standort-column .container-column .column-item a {
    font-size: 1.5rem;
  }
  #standort-column .container-row {
    flex-wrap: wrap;
  }
  #standort-column .container-row h3 {
    font-size: 1.8rem;
  }
  #standort-column .container-row .row-item h4, #standort-column .container-row .row-item p {
    font-size: 1.5rem;
  }
  #standort-column .container-column .column-item h4, #standort-column .container-column .column-item p {
    font-size: 1.5rem;
  }
  #standort-column #standort-container {
    padding: 20px;
  }
  #standort-column #kontakt-container {
    padding: 20px;
  }
  #kunden-frame {
    padding: 45px var(--borders);
    gap: 45px;
  }
  #kunden h2 {
    font-weight: 900;
    font-size: 2rem;
  }
  #kunden #kunden-row .row-item {
    width: 45%;
    font-size: 1.5rem;
  }
  #notdienst {
    padding: 60px 0;
  }
  #notdienst #lock {
    left: 300px;
  }
  #notdienst #safe {
    display: none;
  }
  #notdienst #column-container #title {
    max-width: 300px;
    min-width: 100px;
    font-size: 2rem;
  }
  #notdienst #column-container .container-phone {
    width: 300px;
    max-width: 330px;
    padding: 16px;
    height: auto;
  }
  #notdienst #column-container .container-phone span {
    height: 24px;
  }
  #notdienst #column-container .container-phone h2 {
    font-size: 1.6rem;
  }
  #notdienst #column-container .container-phone svg {
    width: 24px;
    height: 24px;
  }
  #notdienst #row {
    flex-direction: column;
  }
  #notdienst #row h3 {
    font-size: 1.5rem;
  }
  #notdienst #row svg {
    width: 18px;
    height: 15px;
  }
  footer #footer-frame #footer-grid .svg-link {
    width: 128px;
    height: 60px;
  }
  footer #footer-frame #footer-grid #kontakt-container {
    grid-row: 2/4;
    grid-column: 1/7;
  }
  footer #footer-frame #footer-grid #kontakt-container h3 {
    font-size: 1.3rem;
  }
  footer #footer-frame #footer-grid #kontakt-container p {
    font-size: 1.4rem;
  }
  footer #footer-frame #footer-grid #kontakt-container a {
    font-size: 1.4rem;
  }
  footer #footer-frame #footer-grid #leistungen-container {
    grid-column: 7/13;
  }
  footer #footer-frame #footer-grid #unternehmen-container {
    grid-row: 3;
    grid-column: 7/13;
  }
  footer #footer-frame #footer-grid .link-container h3 {
    font-size: 1.3rem;
  }
  footer #footer-frame #footer-grid .link-container span a {
    font-size: 1.4rem;
  }
  footer #footer-frame #footer-rights {
    row-gap: 25px;
  }
  footer #footer-frame #footer-rights h3 {
    text-align: center;
  }
  .head {
    padding: 224px var(--borders) 70px var(--borders);
  }
  .head p {
    font-size: 1.4rem;
  }
  #head-footer {
    padding: 24px 0;
    gap: 5px;
  }
  #head-footer h3 {
    font-size: 1.5rem;
  }
  #head-footer svg {
    width: 13px;
    height: 10px;
  }
  .einleitung {
    padding: 40px 0;
  }
  .einleitung-text-container {
    gap: 10px;
  }
  .einleitung-text-container h2 {
    font-size: 2rem;
  }
  .einleitung-text-container p {
    font-size: 1.4rem;
  }
  .container-phone {
    width: 100%;
    padding: 16px;
    max-width: 370px;
  }
  .container-phone span {
    height: 24px;
  }
  .container-phone h2 {
    font-size: 1.8rem;
  }
  .container-phone svg {
    width: 24px;
    height: 24px;
  }
  .gedenken-frame {
    padding: 45px var(--borders);
  }
  .gedenken-frame .gedenken .gedenken-text-container h4 {
    font-size: 1.4rem;
  }
  .gedenken-frame .gedenken .gedenken-text-container span h2 {
    font-size: 2rem;
  }
  .gedenken-frame .gedenken .gedenken-text-container span h3 {
    font-size: 1.5rem;
  }
  .gedenken-frame .gedenken .gedenken-text-container .p-span p {
    font-size: 1.4rem;
  }
  #leistungen-frame {
    padding: 45px var(--borders);
  }
  #leistungen {
    gap: 45px;
  }
  #leistungen h2 {
    font-size: 2rem;
  }
  #leistungen-table {
    gap: 18px;
  }
  #leistungen-table .row-item svg {
    width: 16px;
    height: 14px;
  }
  #leistungen-table .row-item span {
    gap: 18px;
  }
  #leistungen-table .row-item span svg {
    width: 46px;
    height: 46px;
  }
  #leistungen-table .row-item span h3 {
    font-size: 1.5rem;
  }
  .sicherheit-frame {
    padding: 45px var(--borders);
  }
  .sicherheit {
    gap: 45px;
  }
  .sicherheit h2 {
    font-size: 1.9rem;
  }
  .sicherheit a {
    font-size: 2rem;
    width: 100%;
  }
  .sicherheit-card {
    padding: 23px 20px;
    min-height: 261px;
    width: 100%;
    max-width: none;
  }
  .sicherheit-card svg {
    width: 60px;
    height: 55px;
  }
  .sicherheit-card span h3 {
    font-size: 2rem;
  }
  .sicherheit-card span h4 {
    font-size: 1.5rem;
  }
  .sicherheit-card p {
    font-size: 1.4rem;
    padding: 0;
  }
  #schluesselschilder-frame {
    padding: 45px var(--borders);
  }
  #schluesselschilder {
    row-gap: 45px;
  }
  #schluesselschilder #schluessel-container {
    gap: 24px;
  }
  #schluesselschilder #schilder-container {
    gap: 24px;
  }
  #schluesselschilder .text-container {
    max-width: 590px;
    gap: 24px;
    text-align: center;
  }
  #schluesselschilder .text-container h2 {
    font-size: 2rem;
  }
  #schluesselschilder .text-container p {
    font-size: 1.4rem;
  }
  #schluesselschilder .text-container .container-list {
    gap: 12px;
  }
  #schluesselschilder .text-container .container-list .list-item {
    font-size: 1.2rem;
    padding: 6px 16px;
  }
  #schluesselschilder img {
    width: auto;
    height: auto;
    flex-shrink: 1;
  }
  #sicherheitstechnik .st-container-phone {
    font-size: 16px;
  }
  #sicherheitstechnik .st-container-phone span {
    height: 24px;
  }
  #sicherheitstechnik .st-container-phone svg {
    height: 24px;
    width: 24px;
  }
  #sicherheitstechnik .head .title h1 {
    font-size: 3.5rem;
  }
  #sicherheitstechnik .head .title h2 {
    font-size: 2.4rem;
  }
  #sicherheitstechnik .head span {
    flex-direction: column;
    gap: 8px;
  }
  #sicherheitstechnik .head span .head-row-item h3 {
    font-size: 1.5rem;
  }
  #sicherheitstechnik .head p {
    font-size: 1.4rem;
  }
  #sicherheitstechnik .st-leistungen-frame {
    padding: 45px var(--borders);
  }
  #sicherheitstechnik #st-leistungen {
    gap: 45px;
  }
  #sicherheitstechnik #st-leistungen h2 {
    font-size: 2rem;
  }
  #sicherheitstechnik #st-leistungen-card-row {
    gap: 10px;
  }
  #sicherheitstechnik #st-leistungen-card-row span {
    gap: 10px;
  }
  #sicherheitstechnik .st-leistungen-card {
    min-width: 100%;
    padding: 10px;
    min-height: 149px;
  }
  #sicherheitstechnik .st-leistungen-card h3 {
    font-size: 1.5rem;
  }
  #sicherheitstechnik .st-leistungen-card svg {
    width: 46px;
    height: 46px;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0px;
    padding: 45px 0;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung .svg-container {
    display: flex;
    width: 1px;
    height: 1px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung .svg-container svg {
    position: absolute;
    right: 0;
    z-index: 0;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container {
    z-index: 1;
    width: 100%;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container h2 {
    font-size: 2rem;
  }
  #sicherheitstechnik #erstberatung-frame #erstberatung #erstberatung-text-container p {
    font-size: 1.5rem;
  }
  #sicherheitstechnik .produkt-frame .produkt {
    padding-top: 45px;
    gap: 45px;
  }
  #sicherheitstechnik .produkt-frame .produkt h2 {
    font-size: 2rem;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle {
    gap: 45px;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row {
    flex-direction: column;
    gap: 24px;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .svg-container {
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .svg-container svg {
    width: 40px;
    height: 37px;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .produkt-text-container h3 {
    font-size: 2rem;
  }
  #sicherheitstechnik .produkt-frame .produkt #produkt-tabelle .produkt-row .produkt-text-container p {
    font-size: 1.4rem;
  }
  #sicherheitstechnik .tresor-frame {
    padding: 45px var(--borders);
  }
  #sicherheitstechnik .tresor-frame .tresor {
    padding: 40px 20px;
  }
  #sicherheitstechnik .tresor-frame .tresor .tresor-text-container h2 {
    font-size: 2rem;
  }
  #sicherheitstechnik .tresor-frame .tresor .tresor-text-container p {
    font-size: 1.5rem;
    width: 100%;
  }
  #kontakt .head {
    flex-direction: column-reverse;
  }
  #kontakt .head svg {
    width: 80px;
    height: 80px;
  }
  #kontakt .head span {
    gap: 25px;
  }
  #kontakt .head span p {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=styles.css.map */