/* css/src/main.scss */
body {
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
}
a {
  text-decoration: none;
}
ul {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
}
p {
  margin: 0;
}
.align-right {
  display: flex;
  justify-content: flex-end;
}
a.arrow-link {
  position: relative;
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
}
a.arrow-link::after {
  content: "";
  display: block;
  width: 100px;
  height: 20px;
  margin-top: 8px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position-x: -50px;
  transition: background-position-x 0.2s;
}
a.arrow-link:hover:after {
  background-position-x: 0;
}
.color-yellow {
  color: #ffed00;
}
.note {
  font-weight: 400;
  font-size: 14px;
  font-family: serif;
}
h2 {
  font-size: 100px;
  line-height: 90px;
  font-family: "balboa-condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.text-container {
  margin-top: 40px;
}
.text-container p {
  font-size: 21px;
  line-height: 1.52;
  font-weight: 300;
}
.text-container p + p {
  margin-top: 20px;
}
.text-container p strong {
  font-weight: 700;
}
.lvl1 {
  background: #1A1800;
  color: white;
}
.lvl2 {
  background: #332F00;
  color: white;
}
.lvl3 {
  background: #4D4700;
  color: white;
}
.lvl4 {
  background: #665F00;
  color: white;
}
html {
  color: white;
  background-color: black;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  overflow-x: hidden;
}
a {
  color: white;
}
section > .wrapper,
footer > .wrapper {
  width: 1050px;
  margin: 0 auto;
}
#top-nav {
  width: 1050px;
  margin: 26px auto 5px auto;
  font-size: 13px;
  line-height: 20px;
}
#top-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
#top-nav ul a {
  font-family: serif;
}
#top-nav ul a.current {
  color: #ffed00;
}
header {
  position: sticky;
  z-index: 100;
  top: 50px;
}
header #main-nav {
  display: flex;
  justify-content: center;
  font-size: 19px;
  margin-top: 0px;
}
header #main-nav ul {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
header #main-nav ul li {
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
header #main-nav ul li a {
  text-transform: uppercase;
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
  transition: color 0.5s;
}
header #main-nav ul li a:hover {
  color: #ffed00;
}
#to_be_secure .wrapper {
  display: grid;
  grid-template-areas: "title video" "description video";
  grid-template-rows: auto 1fr;
  grid-template-columns: 41% 46%;
  gap: 0 13%;
}
#to_be_secure .img-container {
  grid-area: title;
}
#to_be_secure .text-container {
  grid-area: description;
}
#to_be_secure .img-container {
  margin-top: 75px;
}
#to_be_secure .img-container img {
  width: 100%;
}
#to_be_secure h1 {
  position: absolute;
  width: 0ch;
  text-indent: -10000px;
}
#to_be_secure .text-container p {
  font-size: 23px;
  line-height: 31px;
  margin-top: 30px;
}
#to_be_secure .hero-video {
  grid-area: video;
  margin-top: 165px;
  position: relative;
  border: 1px solid white;
  height: 747px;
  transition: opacity 0.5s;
}
#to_be_secure .hero-video:before {
  content: "";
  position: absolute;
  inset: -200px 0px -50px -15rem;
  background-image: url(https://cybersecurity.binsfeld.lu/images/kevinPort.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: 40%;
  z-index: -1;
  transition: opacity 1.5s;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  #to_be_secure .hero-video:before {
    inset: 0 0 0 0;
    width: auto;
  }
}
#to_be_secure .hero-video .hero-cta {
  position: absolute;
  bottom: 58px;
  left: 28px;
  right: 28px;
}
#to_be_secure .hero-video .hero-cta #play-video {
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  background: transparent;
  border-radius: 50%;
  border: 6px solid white;
  margin-bottom: 33px;
}
#to_be_secure .hero-video .hero-cta p {
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 0;
}
#to_be_secure .hero-video video {
  position: fixed;
  top: 5vh;
  left: 50%;
  height: 90vh;
  width: auto;
  transform: translateX(-50%) scale(0);
  z-index: -10;
  background: black;
}
#to_be_secure .hero-video:has(#play-video:hover) {
  transition: opacity 0.5s;
}
#to_be_secure .hero-video:has(#play-video:hover):before {
  opacity: 80%;
}
#to_be_secure .hero-video #play-video:hover {
  transition: background 0.5s, border-color 0.5s;
  background: #ffed00;
  border-color: #ffed00;
}
#to_be_secure .hero-video #play-video:hover .play-icon {
  filter: invert(1);
}
#to_be_secure.prepare-playing-video video {
  z-index: 102;
  animation: video-opening 0.5s ease-in forwards;
}
#to_be_secure.prepare-playing-video .close-video {
  animation: close-opening 0.5s ease-in forwards;
}
#to_be_secure .video-mask {
  content: "";
  z-index: -10;
  background-color: transparent;
  backdrop-filter: blur(0px);
  position: fixed;
  top: 0;
  left: 23px;
  height: 100vh;
  width: calc(100vw - 46px);
  transition: background-color 1s, backdrop-filter 1s;
}
#to_be_secure .close-video {
  display: none;
  opacity: 0;
}
#to_be_secure.prepare-playing-video .close-video {
  display: block;
  position: absolute;
  z-index: 110;
  top: 3rem;
  right: calc(50% - 280px);
  transform: translateX(50%);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #to_be_secure.prepare-playing-video .close-video {
    top: 0px;
    right: calc(50% - 0px);
  }
  #to_be_secure.prepare-playing-video .close-video svg {
    transform: scale(0.4);
  }
}
#to_be_secure.prepare-playing-video .video-mask {
  z-index: 101;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
}
@keyframes video-opening {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes close-opening {
  0% {
    opacity: 0;
    transform: translateX(50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translateX(50%) scale(1);
  }
}
#our-method,
#notre-approche,
#our-approach,
#unser-ansatz {
  overflow-x: hidden;
  margin-top: 90px;
}
#our-method > .wrapper,
#notre-approche > .wrapper,
#our-approach > .wrapper,
#unser-ansatz > .wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-areas: "note note" "title text" "box text" "box cta";
  grid-auto-rows: auto;
}
#our-method .note,
#notre-approche .note,
#our-approach .note,
#unser-ansatz .note {
  grid-area: note;
  margin-bottom: 20px;
}
#our-method h2,
#notre-approche h2,
#our-approach h2,
#unser-ansatz h2 {
  font-size: 90px;
  line-height: 1;
  grid-area: title;
  align-self: flex-start;
}
#our-method .text-container,
#notre-approche .text-container,
#our-approach .text-container,
#unser-ansatz .text-container {
  grid-area: text;
  align-self: flex-start;
}
#our-method .text-container p,
#notre-approche .text-container p,
#our-approach .text-container p,
#unser-ansatz .text-container p {
  font-size: 26px;
  line-height: 36px;
  font-weight: 300;
}
#our-method .text-container p + p,
#notre-approche .text-container p + p,
#our-approach .text-container p + p,
#unser-ansatz .text-container p + p {
  margin-top: 30px;
}
#our-method .checks,
#notre-approche .checks,
#our-approach .checks,
#unser-ansatz .checks {
  grid-area: box;
  align-self: flex-start;
  background: black;
  width: 75%;
  border: 1px solid white;
  padding: 50px 20px 60px 30px;
  box-sizing: border-box;
  margin-top: 70px;
  position: relative;
}
#our-method .checks:before,
#notre-approche .checks:before,
#our-approach .checks:before,
#unser-ansatz .checks:before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  padding-top: 150%;
  border-radius: 50%;
  left: 50%;
  top: 60%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  background: linear-gradient(#ffed00 50%, black);
  filter: blur(200px);
  opacity: 0.4;
}
#our-method .checks h3,
#notre-approche .checks h3,
#our-approach .checks h3,
#unser-ansatz .checks h3 {
  font-size: 32px;
  line-height: 1.27;
  color: #ffed00;
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
  font-weight: 400;
}
#our-method .checks ul,
#notre-approche .checks ul,
#our-approach .checks ul,
#unser-ansatz .checks ul {
  margin-top: 25px;
  list-style-type: none;
}
#our-method .checks ul li,
#notre-approche .checks ul li,
#our-approach .checks ul li,
#unser-ansatz .checks ul li {
  position: relative;
  font-size: 21px;
  line-height: 1.52;
}
#our-method .checks ul li + li,
#notre-approche .checks ul li + li,
#our-approach .checks ul li + li,
#unser-ansatz .checks ul li + li {
  margin-top: 20px;
}
#our-method .ctas,
#notre-approche .ctas,
#our-approach .ctas,
#unser-ansatz .ctas {
  grid-area: cta;
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
#pentest {
  background: #1A1A1A;
  padding: 30px 0 33px 0;
}
@media screen and (max-width: 768px) {
  #pentest {
    margin-bottom: 130px;
  }
}
#pentest h2 {
  display: table;
  width: fit-content;
  margin: 0 auto;
  font-size: 62px;
  font-weight: 1.1;
  position: relative;
}
#pentest h2:before,
#pentest h2:after {
  content: "";
  width: 100vw;
  height: 20px;
  position: absolute;
  background: url(../images/arrow-bottom-yellow.svg);
  top: 45%;
  transform: translateY(-50%);
  background-size: 53px 20px;
}
@media screen and (max-width: 768px) {
  #pentest h2:before,
  #pentest h2:after {
    display: none;
  }
}
#pentest h2:before {
  right: 100%;
  background-position: left;
}
#pentest h2:after {
  left: 100%;
  background-position: right;
}
#pentest details[open] summary {
  visibility: hidden;
}
#pentest details summary {
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: 1.625;
  text-decoration: underline;
  cursor: pointer;
}
#pentest details h3 {
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 100px;
  line-height: 0.9;
  font-family: "balboa-condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
#pentest details p {
  font-size: 26px;
  line-height: 1.36;
}
#pentest details .step {
  color: #ffed00;
  margin-top: 40px;
  font-weight: 300;
}
#pentest details ul {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 30px;
}
#pentest details ul h4 {
  margin: 0;
  font-size: 36px;
  line-height: 1.27;
  font-family: "balboa-condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
#pentest details ul h4 span {
  color: #ffed00;
}
#pentest details ul p {
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.52;
  font-weight: 300;
}
#pentest details .legal {
  font-size: 26px;
  line-height: 1.38;
  margin-top: 45px;
  font-weight: 300;
}
#pentest details .arrow-link {
  display: block;
  margin-top: 45px;
  margin-bottom: 130px;
}
#what-we-do {
  margin-top: 167px;
  position: relative;
  padding: 130px 0 100px 0;
}
#what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 237, 0, 0.1) 0 5px,
      black 5px 10px);
  background-size: 10px 10px;
  background-position: -5px 0;
  mask-image:
    repeating-linear-gradient(
      to bottom,
      black 0 10px,
      transparent 5px 10px);
  -webkit-mask-image:
    repeating-linear-gradient(
      to bottom,
      black 0 5px,
      transparent 5px 10px);
}
#what-we-do > .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#what-we-do > .wrapper .right .work-flow + .work-flow {
  margin-top: 60px;
}
#what-we-do > .wrapper .right .work-flow > h3 {
  font-family: "balboa-condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 15px;
}
#what-we-do > .wrapper .text-container {
  margin-top: 0;
}
#what-we-do #crypted_B {
  width: 250px;
  height: 250px;
  position: sticky;
  top: 200px;
  left: 200px;
  display: grid;
  grid-template-columns: repeat(25, 10px);
  grid-gap: 5px 0px;
}
#what-we-do #crypted_B .cell {
  width: 5px;
  height: 5px;
  background: transparent;
  transition: background 0.3s;
}
#what-we-do #crypted_B .border {
  background: yellow;
}
#what-we-do #crypted_B .intermediate {
  background: yellow;
}
#what-we-do #crypted_B .center {
  background: yellow;
}
#what-we-do .ctas {
  margin-top: 60px;
}
#what-we-do .ctas .arrow-link {
  grid-column: 2;
}
#our-experts,
#nos-experts,
#unsere-experten {
  margin-top: 160px;
  position: relative;
}
#our-experts::before,
#nos-experts::before,
#unsere-experten::before {
  content: "";
  position: absolute;
  top: 420px;
  left: 0;
  right: 0;
  height: 525px;
  z-index: -1;
  background: url(../images/rectangle-black.svg);
  background-size: 10px;
}
#our-experts:after,
#nos-experts:after,
#unsere-experten:after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: -2;
  background: linear-gradient(#ffed00 50%, black);
  filter: blur(200px);
  opacity: 0.3;
}
#our-experts h2,
#nos-experts h2,
#unsere-experten h2 {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
#our-experts .row,
#nos-experts .row,
#unsere-experten .row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
#our-experts .row .left,
#nos-experts .row .left,
#unsere-experten .row .left {
  grid-column: 1;
}
#our-experts .row .left .text-container,
#nos-experts .row .left .text-container,
#unsere-experten .row .left .text-container {
  margin-top: 45px;
}
#our-experts .row .left .arrow-link,
#nos-experts .row .left .arrow-link,
#unsere-experten .row .left .arrow-link {
  margin-top: 30px;
  display: block;
}
#our-experts .row .right,
#nos-experts .row .right,
#unsere-experten .row .right {
  grid-column: 2;
}
#our-experts .row .right ul,
#nos-experts .row .right ul,
#unsere-experten .row .right ul {
  transform: translateY(-87px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
}
#our-experts .row .right ul li img,
#nos-experts .row .right ul li img,
#unsere-experten .row .right ul li img {
  width: 100%;
}
#our-packages,
#nos-packs,
#unsere-pakete {
  margin-top: 140px;
}
#our-packages > .wrapper.title,
#nos-packs > .wrapper.title,
#unsere-pakete > .wrapper.title {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}
#our-packages > .wrapper.title .note,
#our-packages > .wrapper.title h2,
#nos-packs > .wrapper.title .note,
#nos-packs > .wrapper.title h2,
#unsere-pakete > .wrapper.title .note,
#unsere-pakete > .wrapper.title h2 {
  grid-column: 2;
}
#our-packages > .wrapper.title h2,
#nos-packs > .wrapper.title h2,
#unsere-pakete > .wrapper.title h2 {
  margin-top: 15px;
}
#our-packages .text-container,
#nos-packs .text-container,
#unsere-pakete .text-container {
  margin-top: 45px;
}
#our-packages .cards,
#nos-packs .cards,
#unsere-pakete .cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
  margin-top: 50px;
  width: 990px;
}
#our-packages .cards .card,
#nos-packs .cards .card,
#unsere-pakete .cards .card {
  position: relative;
  padding: 35px 20px 35px 35px;
}
#our-packages .cards .card h3,
#nos-packs .cards .card h3,
#unsere-pakete .cards .card h3 {
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 26px;
  text-transform: uppercase;
}
#our-packages .cards .card p,
#nos-packs .cards .card p,
#unsere-pakete .cards .card p {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 20px;
}
#our-packages .cards .card .price,
#nos-packs .cards .card .price,
#unsere-pakete .cards .card .price {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 20px;
}
#our-packages #nota-bene,
#nos-packs #nota-bene,
#unsere-pakete #nota-bene {
  position: relative;
  z-index: 0;
  margin-top: -130px;
  background: #1A1A1A;
  padding: 160px 20px 40px 180px;
  box-sizing: border-box;
}
#our-packages #nota-bene h2,
#nos-packs #nota-bene h2,
#unsere-pakete #nota-bene h2 {
  font-size: 36px;
  line-height: 1.27;
  font-weight: 400;
  position: relative;
}
#our-packages #nota-bene h2::after,
#nos-packs #nota-bene h2::after,
#unsere-pakete #nota-bene h2::after {
  content: "";
  position: absolute;
  right: calc(100% + 20px);
  top: 11px;
  display: block;
  width: 115px;
  height: 20px;
  background-image: url(../images/arrow-right-yellow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#our-packages #nota-bene p,
#nos-packs #nota-bene p,
#unsere-pakete #nota-bene p {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 15px;
}
#our-packages #nota-bene a,
#nos-packs #nota-bene a,
#unsere-pakete #nota-bene a {
  display: block;
  font-size: 18px;
  font-weight: 1.5;
  line-height: 26px;
  margin-top: 20px;
  text-decoration: underline;
}
#our-packages .wrapper-array,
#nos-packs .wrapper-array,
#unsere-pakete .wrapper-array {
  margin-top: 125px;
}
#our-packages .wrapper-array h2,
#nos-packs .wrapper-array h2,
#unsere-pakete .wrapper-array h2 {
  text-align: right;
  font-size: 36px;
  line-height: 46px;
  position: relative;
  z-index: 2;
}
#our-packages .array,
#our-packages .array .lines > .line,
#nos-packs .array,
#nos-packs .array .lines > .line,
#unsere-pakete .array,
#unsere-pakete .array .lines > .line {
  display: grid;
  grid-template-columns: 1fr repeat(4, 14%);
  gap: 0 2px;
}
#our-packages .array.header-mobile,
#our-packages .array .lines > .line.header-mobile,
#nos-packs .array.header-mobile,
#nos-packs .array .lines > .line.header-mobile,
#unsere-pakete .array.header-mobile,
#unsere-pakete .array .lines > .line.header-mobile {
  display: none;
}
#our-packages .array,
#nos-packs .array,
#unsere-pakete .array {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
#our-packages .array .header,
#our-packages .array .lines,
#our-packages .array .footer,
#nos-packs .array .header,
#nos-packs .array .lines,
#nos-packs .array .footer,
#unsere-pakete .array .header,
#unsere-pakete .array .lines,
#unsere-pakete .array .footer {
  display: contents;
}
#our-packages .array .header > div,
#our-packages .array .footer > div,
#nos-packs .array .header > div,
#nos-packs .array .footer > div,
#unsere-pakete .array .header > div,
#unsere-pakete .array .footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
#our-packages .array .header,
#nos-packs .array .header,
#unsere-pakete .array .header {
  position: sticky;
  top: 132px;
  grid-column: 1/6;
  display: grid;
  grid-template-columns: 1fr repeat(4, 14%);
  gap: 0 2px;
  z-index: 2;
  box-shadow: 0 0px 5px black;
}
#our-packages .array .header:before,
#nos-packs .array .header:before,
#unsere-pakete .array .header:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  left: -5px;
  bottom: 0;
  width: calc(100% + 5px);
  height: 200px;
  position: absolute;
  z-index: -1;
}
#our-packages .array .header > div,
#nos-packs .array .header > div,
#unsere-pakete .array .header > div {
  height: 71px;
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 26px;
  text-transform: uppercase;
}
#our-packages .array .header > div.lvl1,
#nos-packs .array .header > div.lvl1,
#unsere-pakete .array .header > div.lvl1 {
  grid-column: 2;
}
#our-packages .array .header > div.lvl2,
#nos-packs .array .header > div.lvl2,
#unsere-pakete .array .header > div.lvl2 {
  grid-column: 3;
}
#our-packages .array .header > div.lvl3,
#nos-packs .array .header > div.lvl3,
#unsere-pakete .array .header > div.lvl3 {
  grid-column: 4;
}
#our-packages .array .header > div.lvl4,
#nos-packs .array .header > div.lvl4,
#unsere-pakete .array .header > div.lvl4 {
  grid-column: 5;
}
#our-packages .array .footer,
#nos-packs .array .footer,
#unsere-pakete .array .footer {
  display: none !important;
}
#our-packages .array .footer > div,
#nos-packs .array .footer > div,
#unsere-pakete .array .footer > div {
  height: 110px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}
#our-packages .array .lines > .line,
#nos-packs .array .lines > .line,
#unsere-pakete .array .lines > .line {
  grid-column: 1/6;
}
#our-packages .array .lines > .line > *,
#nos-packs .array .lines > .line > *,
#unsere-pakete .array .lines > .line > * {
  padding: 20px 0;
}
#our-packages .array .description,
#nos-packs .array .description,
#unsere-pakete .array .description {
  grid-column: 1;
}
#our-packages .array .lvl1,
#nos-packs .array .lvl1,
#unsere-pakete .array .lvl1 {
  grid-column: 2;
}
#our-packages .array .lvl2,
#nos-packs .array .lvl2,
#unsere-pakete .array .lvl2 {
  grid-column: 3;
}
#our-packages .array .lvl3,
#nos-packs .array .lvl3,
#unsere-pakete .array .lvl3 {
  grid-column: 4;
}
#our-packages .array .lvl4,
#nos-packs .array .lvl4,
#unsere-pakete .array .lvl4 {
  grid-column: 5;
}
#our-packages .array .lines > .line,
#nos-packs .array .lines > .line,
#unsere-pakete .array .lines > .line {
  position: relative;
}
#our-packages .array .lines > .line:before,
#nos-packs .array .lines > .line:before,
#unsere-pakete .array .lines > .line:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #3A3A3A;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: plus-lighter;
  z-index: 1;
}
#our-packages .array .lines > .line:last-child:after,
#nos-packs .array .lines > .line:last-child:after,
#unsere-pakete .array .lines > .line:last-child:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #3A3A3A;
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: plus-lighter;
  z-index: 1;
}
#our-packages .array .line .description,
#nos-packs .array .line .description,
#unsere-pakete .array .line .description {
  padding-right: 10px;
}
#our-packages .array .line .description h3,
#nos-packs .array .line .description h3,
#unsere-pakete .array .line .description h3 {
  cursor: pointer;
  font-size: 18px;
  line-height: 1.77;
  font-weight: 300;
}
#our-packages .array .line .description h3 .wp,
#nos-packs .array .line .description h3 .wp,
#unsere-pakete .array .line .description h3 .wp {
  position: relative;
  width: 26px;
  height: 52px;
  margin-bottom: -26px;
  float: left;
  background: url(../images/wp-only.png) no-repeat transparent;
  background-size: contain;
  background-position: 0px 0px;
  margin-right: 15px;
}
#our-packages .array .line .description .detail,
#nos-packs .array .line .description .detail,
#unsere-pakete .array .line .description .detail {
  margin-top: 0px;
  font-size: 15px;
  line-height: 1.53;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s linear;
}
#our-packages .array .line .description .detail > *:first-child,
#nos-packs .array .line .description .detail > *:first-child,
#unsere-pakete .array .line .description .detail > *:first-child {
  margin-top: 30px;
}
#our-packages .array .line .description .detail p + p,
#nos-packs .array .line .description .detail p + p,
#unsere-pakete .array .line .description .detail p + p {
  margin-top: 20px;
}
#our-packages .array .line .description .detail h4,
#nos-packs .array .line .description .detail h4,
#unsere-pakete .array .line .description .detail h4 {
  color: #ffed00;
  margin: 0;
}
#our-packages .array .line .description .detail ul li,
#nos-packs .array .line .description .detail ul li,
#unsere-pakete .array .line .description .detail ul li {
  position: relative;
  padding-left: 15px;
  margin: 15px 0;
}
#our-packages .array .line .description .detail ul li:before,
#nos-packs .array .line .description .detail ul li:before,
#unsere-pakete .array .line .description .detail ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background: #FFED00;
}
#our-packages .array .line .description.active .detail,
#nos-packs .array .line .description.active .detail,
#unsere-pakete .array .line .description.active .detail {
  max-height: 400px;
}
#our-packages .array .line .description:has(.detail) h3,
#nos-packs .array .line .description:has(.detail) h3,
#unsere-pakete .array .line .description:has(.detail) h3 {
  padding-left: 43px;
}
#our-packages .array .line .description:has(.detail),
#nos-packs .array .line .description:has(.detail),
#unsere-pakete .array .line .description:has(.detail) {
  position: relative;
}
#our-packages .array .line .description:has(.detail).active:before,
#nos-packs .array .line .description:has(.detail).active:before,
#unsere-pakete .array .line .description:has(.detail).active:before {
  transform: rotate(-45deg);
  top: 30px;
}
#our-packages .array .line .description:has(.detail):before,
#nos-packs .array .line .description:has(.detail):before,
#unsere-pakete .array .line .description:has(.detail):before {
  pointer-events: none;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 3px;
  top: 25px;
  transform: rotate(135deg);
  display: block;
  border-top: 1px solid #FFED00;
  border-right: 1px solid #FFED00;
}
#our-packages .array .line > div.yes,
#nos-packs .array .line > div.yes,
#unsere-pakete .array .line > div.yes {
  position: relative;
}
#our-packages .array .line > div.yes:before,
#nos-packs .array .line > div.yes:before,
#unsere-pakete .array .line > div.yes:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 31px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: #FFED00;
}
#our-packages .arrow-link,
#nos-packs .arrow-link,
#unsere-pakete .arrow-link {
  margin-top: 55px;
}
#have-you-question,
#contact {
  clear: both;
  margin-top: 60px;
}
#have-you-question h2,
#have-you-question a,
#contact h2,
#contact a {
  font-family: none;
  text-transform: none;
  font-size: 62px;
  line-height: 1;
}
#have-you-question h2,
#contact h2 {
  margin-top: 40px;
  color: #ffed00;
}
#have-you-question a,
#contact a {
  margin-top: 20px;
  display: inline-block;
  color: white;
  position: relative;
}
#have-you-question a:after,
#contact a:after {
  position: absolute;
  left: calc(100% + 27px);
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  content: "";
  display: block;
  width: 100px;
  height: 20px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position-x: -50px;
  transition: background-position-x 0.2s;
}
#have-you-question a:hover:after,
#contact a:hover:after {
  background-position-x: 0;
}
footer {
  margin-bottom: 70px;
  margin-top: 80px;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
}
footer .wrapper ul {
  display: flex;
  gap: 0 25px;
}
footer .copyright a img {
  float: right;
  margin-top: -6px;
  margin-left: 6px;
}
.marquee {
  position: relative;
  width: 100dvh;
  overflow: hidden;
  position: fixed;
  bottom: 0;
}
.marquee.left {
  left: 0;
  transform-origin: left bottom;
  transform: rotate(-90deg) translateY(100%);
}
.marquee.right {
  right: 0;
  transform-origin: right bottom;
  transform: rotate(90deg) translateY(100%);
}
.marquee span {
  display: inline-block;
  font-size: 18px;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-right: 20px;
  font-family:
    "Balboa",
    Helvetica,
    sans-serif;
}
.marquee .group {
  display: block;
  width: max-content;
  white-space: nowrap;
}
.marquee .group2 {
  position: absolute;
  left: calc(100% + 0px);
  top: 0;
}
.marquee .line {
  position: relative;
  display: block;
  width: max-content;
  animation: defilement 30s linear infinite;
}
@keyframes defilement {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
#sticky-pentest {
  display: none;
}
@media screen and (max-width: 1200px) {
  section > .wrapper,
  footer > .wrapper {
    width: calc(90vw - 40px);
  }
  #top-nav {
    width: calc(90vw - 40px);
  }
  #our-packages #nota-bene,
  #nos-packs #nota-bene,
  #unsere-pakete #nota-bene {
    width: 1050px;
  }
}
@media screen and (max-width: 1050px) {
  #our-packages .cards,
  #nos-packs .cards,
  #unsere-pakete .cards {
    width: calc(90vw - 40px);
  }
  #our-packages #nota-bene,
  #nos-packs #nota-bene,
  #unsere-pakete #nota-bene {
    width: calc(100vw - 40px);
  }
}
@media screen and (max-width: 1024px) {
  #our-packages .cards,
  #nos-packs .cards,
  #unsere-pakete .cards {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  #our-packages .array .lines .line,
  #nos-packs .array .lines .line,
  #unsere-pakete .array .lines .line {
    grid-template-columns: 1fr repeat(4, 5%);
    gap: 0;
  }
  #our-packages .array .header,
  #nos-packs .array .header,
  #unsere-pakete .array .header {
    display: none;
  }
  #our-packages .array .lines > .line.header-mobile,
  #nos-packs .array .lines > .line.header-mobile,
  #unsere-pakete .array .lines > .line.header-mobile {
    display: grid;
    grid-template-columns: 1fr repeat(4, 5%);
    font-family:
      "Balboa",
      Helvetica,
      sans-serif;
    font-size: 26px;
    text-transform: uppercase;
  }
  #our-packages .array .lines > .line.header-mobile [class^=lvl],
  #nos-packs .array .lines > .line.header-mobile [class^=lvl],
  #unsere-pakete .array .lines > .line.header-mobile [class^=lvl] {
    grid-column: 2/6;
  }
  #our-packages .array .lines > .line.header-mobile [class^=lvl]:before,
  #nos-packs .array .lines > .line.header-mobile [class^=lvl]:before,
  #unsere-pakete .array .lines > .line.header-mobile [class^=lvl]:before {
    display: none !important;
  }
  #our-packages .array .lines > .line.header-mobile [class^=lvl].yes,
  #nos-packs .array .lines > .line.header-mobile [class^=lvl].yes,
  #unsere-pakete .array .lines > .line.header-mobile [class^=lvl].yes {
    display: block;
  }
  #our-packages .array .lines > .line.header-mobile span,
  #nos-packs .array .lines > .line.header-mobile span,
  #unsere-pakete .array .lines > .line.header-mobile span {
    display: block;
    font-family: initial;
    text-transform: none;
    font-size: 12px;
  }
  #our-packages .array .lines > .line.header-mobile [class^=lvl],
  #nos-packs .array .lines > .line.header-mobile [class^=lvl],
  #unsere-pakete .array .lines > .line.header-mobile [class^=lvl] {
    grid-column: 1;
  }
  #our-packages .array .lines > .line.header-mobile,
  #nos-packs .array .lines > .line.header-mobile,
  #unsere-pakete .array .lines > .line.header-mobile {
    grid-template-columns: 1fr;
    position: sticky;
    top: 132px;
    z-index: 2;
  }
  #our-packages .array .lines > .line.header-mobile > div,
  #nos-packs .array .lines > .line.header-mobile > div,
  #unsere-pakete .array .lines > .line.header-mobile > div {
    display: block;
    text-align: center;
  }
  #our-packages .array [class^=lvl],
  #nos-packs .array [class^=lvl],
  #unsere-pakete .array [class^=lvl] {
    display: none;
  }
  #our-packages .array .lines .line:not(.header-mobile) .description,
  #nos-packs .array .lines .line:not(.header-mobile) .description,
  #unsere-pakete .array .lines .line:not(.header-mobile) .description {
    padding-left: 10px;
  }
  #our-packages .array .lines .line:not(.header-mobile) .description:before,
  #nos-packs .array .lines .line:not(.header-mobile) .description:before,
  #unsere-pakete .array .lines .line:not(.header-mobile) .description:before {
    left: 13px;
  }
  #what-we-do #crypted_B {
    left: unset;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #to_be_secure {
    background: none;
    min-height: auto;
  }
  #to_be_secure .wrapper {
    grid-template-areas: "title" "video" "description";
    grid-template-rows: auto;
    grid-template-columns: 100%;
    gap: 0;
  }
  #to_be_secure .img-container {
    text-align: center;
    margin-top: 45px;
  }
  #to_be_secure .img-container img {
    max-width: 50vw;
  }
  #to_be_secure .hero-video {
    height: calc((90vw - 40px) * 1.15);
    margin-top: 17px;
  }
  #to_be_secure .hero-video .hero-cta {
    bottom: 31px;
  }
  #to_be_secure .hero-video .hero-cta #play-video {
    width: 100px;
    height: 100px;
    margin-bottom: 29px;
  }
  #to_be_secure .hero-video .hero-cta .text-container p {
    font-size: 23px;
    line-height: 1.21;
  }
  #our-method .wrapper,
  #notre-approche .wrapper,
  #our-approach .wrapper,
  #unser-ansatz .wrapper {
    grid-template-areas: "note" "title" "text" "box" "cta";
    grid-template-rows: auto;
    grid-template-columns: 100%;
    gap: 0;
  }
  #our-method h2,
  #notre-approche h2,
  #our-approach h2,
  #unser-ansatz h2 {
    font-size: 60px;
  }
  #our-method .text-container,
  #notre-approche .text-container,
  #our-approach .text-container,
  #unser-ansatz .text-container {
    margin-top: 25px;
  }
  #our-method .text-container p,
  #notre-approche .text-container p,
  #our-approach .text-container p,
  #unser-ansatz .text-container p {
    font-size: 18px;
    line-height: 1.611;
  }
  #our-method .text-container p + p,
  #notre-approche .text-container p + p,
  #our-approach .text-container p + p,
  #unser-ansatz .text-container p + p {
    margin-top: 15px;
  }
  #our-method .checks,
  #notre-approche .checks,
  #our-approach .checks,
  #unser-ansatz .checks {
    margin-top: 45px;
    width: 100%;
  }
  #our-method .checks:before,
  #notre-approche .checks:before,
  #our-approach .checks:before,
  #unser-ansatz .checks:before {
    width: 100%;
    padding-top: 100%;
  }
  #our-method .ctas,
  #notre-approche .ctas,
  #our-approach .ctas,
  #unser-ansatz .ctas {
    margin-top: 50px;
    flex-direction: column;
    gap: 30px;
  }
  #what-we-do {
    margin-top: 90px;
    padding-top: 0;
    padding: 0 0 170px 0;
  }
  #what-we-do:before {
    top: 130px;
  }
  #what-we-do #crypted_B {
    position: unset;
    top: unset;
  }
  #what-we-do > .wrapper {
    grid-template-columns: 1fr;
  }
  #what-we-do > .wrapper .right {
    margin-top: 90px;
  }
  #what-we-do > .wrapper .right .text-container {
    margin-top: 0;
  }
  #what-we-do .row:first-child .work-flow {
    margin-top: 90px;
  }
  #what-we-do .row:first-child .pixel-art {
    display: block;
  }
  #what-we-do .ctas .arrow-link {
    grid-column: unset;
  }
  #our-experts,
  #nos-experts,
  #unsere-experten {
    margin-top: -100px;
  }
  #our-experts:before,
  #nos-experts:before,
  #unsere-experten:before {
    top: 150px;
  }
  #our-experts:after,
  #nos-experts:after,
  #unsere-experten:after {
    bottom: unset;
    top: 250px;
    max-width: 100vw;
  }
  #our-experts .note,
  #nos-experts .note,
  #unsere-experten .note {
    font-size: 14px;
  }
  #our-experts h2,
  #nos-experts h2,
  #unsere-experten h2 {
    font-size: 60px;
    line-height: 1;
  }
  #our-experts .row,
  #nos-experts .row,
  #unsere-experten .row {
    grid-template-columns: 1fr;
  }
  #our-experts .row .left,
  #nos-experts .row .left,
  #unsere-experten .row .left {
    order: 2;
  }
  #our-experts .row .left .text-container p,
  #nos-experts .row .left .text-container p,
  #unsere-experten .row .left .text-container p {
    font-size: 18px;
    line-height: 1.61;
  }
  #our-experts .row .right,
  #nos-experts .row .right,
  #unsere-experten .row .right {
    order: 1;
    grid-column: 1;
  }
  #our-experts .row .right ul,
  #nos-experts .row .right ul,
  #unsere-experten .row .right ul {
    margin-top: 25px;
    transform: none;
    gap: 0 10px;
  }
  #our-packages,
  #nos-packs,
  #unsere-pakete {
    margin-top: 70px;
  }
  #our-packages > .wrapper.title,
  #nos-packs > .wrapper.title,
  #unsere-pakete > .wrapper.title {
    grid-template-columns: 1fr;
  }
  #our-packages > .wrapper.title .note,
  #nos-packs > .wrapper.title .note,
  #unsere-pakete > .wrapper.title .note {
    grid-column: 1;
  }
  #our-packages > .wrapper.title h2,
  #nos-packs > .wrapper.title h2,
  #unsere-pakete > .wrapper.title h2 {
    grid-column: 1;
    font-size: 60px;
    line-height: 60px;
  }
  #our-packages .text-container p,
  #nos-packs .text-container p,
  #unsere-pakete .text-container p {
    font-size: 18px;
  }
  #have-you-question h2,
  #have-you-question a,
  #contact h2,
  #contact a {
    font-size: 42px;
    line-height: 44px;
  }
  footer .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .wrapper ul {
    flex-direction: column;
    gap: 25px 0;
  }
  footer .wrapper .copyright {
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  section > .wrapper,
  footer > .wrapper {
    width: calc(100vw - 40px);
  }
  #top-nav {
    width: calc(100vw - 40px);
  }
  #our-packages .cards,
  #nos-packs .cards,
  #unsere-pakete .cards {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  #our-packages .array .lines > .line.header-mobile,
  #nos-packs .array .lines > .line.header-mobile,
  #unsere-pakete .array .lines > .line.header-mobile {
    top: 0px;
  }
  #our-packages #nota-bene,
  #nos-packs #nota-bene,
  #unsere-pakete #nota-bene {
    padding-left: 40px;
    padding-right: 40px;
    width: 100vw;
  }
  #our-packages #nota-bene h2:after,
  #nos-packs #nota-bene h2:after,
  #unsere-pakete #nota-bene h2:after {
    display: none;
  }
  header {
    display: none;
  }
  #sticky-pentest {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffed00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 21;
    line-height: 30px;
    color: black;
    text-transform: uppercase;
    font-family:
      "Balboa",
      Helvetica,
      sans-serif;
    z-index: 10;
  }
  .marquee {
    display: none !important;
  }
  footer .wrapper .copyright {
    margin-top: 55px;
  }
}
