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

body {
  background-color: #201E1E;
  margin: 0px;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  text-align: center;
}

@supports (text-wrap: balance) {
  p {
    text-wrap: balance;
  }
}

u {
  text-decoration-thickness: 1px;
}

.section {
  scroll-margin-top: 50px;
}

.line-break-desktop {
  display: none;
}

.contact-us a {
  border-bottom: 1px solid #00C5D5;
  padding-bottom: 0.1px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-decoration: none;
}

li {
  margin: 0 0 1vh 5vw;
}

.inline-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-flow: dense;
  gap: 1.5em;
  text-align: left;
  color: #F6F6F6;
  font-family: 'IBM Plex Sans', sans-serif;
  list-style: none;
  padding: 0;
  margin: 10vw auto;
  max-width: 550px;
}

.inline-bullets li {
  max-width: 500px;
  position: relative;
  padding-left: 1.2em;
}

.inline-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: 1.2em;
  color: #F6F6F6;
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-inline: clamp(16px, 5vw, 40px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);

}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding-left: 1rem;
  text-align: left;
  display: block;
  position: absolute;
  bottom: 1rem;
  left: 0;
  margin-left: 5vh;
}

.hero h1 {
  font-family: 'Inter Tight', sans-serif;
  line-height: 1.2;
  margin: 0 0 3rem;
  max-width: 16ch;
  margin-inline: auto;
  text-align: left;
  text-wrap: balance;
  font-weight: 400;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  font-size: 2.5rem;
}

.hero h1 strong {
  font-weight: 700;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 0.5rem;
  font-size: 2.5rem;
}

.hero-logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 150px;
  height: auto;
  z-index: 3;
}

@media (min-width: 430px) {
  .hero-content {
    margin-left: 7vh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 3rem;
  }
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@media (orientation: landscape) {

  .hero-content {
    padding-left: 0;
    font-size: 1.6rem;
  }

}

@media (orientation: landscape) and (height < 450px) {

  .hero h2 {
    display: none;
  }
}


/* MENU */
.menu {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: flex-start;
  border-bottom: 1px solid #343434;
  background-color: #201E1E;
  height: 50px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu::-webkit-scrollbar {
  display: none;
}

.menu-item {
  display: inline-flex;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #ADADAD;
  font-family: 'Space Grotesk', monospace;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item:hover,
.menu-item.active {
  color: #00C5D5;
}

.menu .underline {
  position: absolute;
  bottom: 0;
  height: 4px;
  background-color: #00C5D5;
  transition: width 0.3s ease, left 0.3s ease;
  width: 0;
  left: 0;
}

.menu-scroll-hint {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3rem;
  pointer-events: none;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(to left, rgba(32, 30, 30, 1), rgba(32, 30, 30, 0));
  z-index: 1001;
}

.menu-scroll-hint i {
  color: #F6F6F6;
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* SECTIONS */
#sec1 {
  scroll-margin-top: 100px;
}

#sec1-title,
#sec1-content,
.sec2-p,
.getting-started-steps,
.getting-started-content {
  text-align: center;
  color: #F6F6F6;
  margin-left: auto;
  margin-right: auto;
}

.sec3-p {
  text-align: left;
  color: #F6F6F6;
}

.sec1-container {
  margin-bottom: 50px;
}

#sec1-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 32px;
  margin-top: 60px;
  margin-bottom: 2vw;
  max-width: 90%;
}

#sec1-content {
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  max-width: 600px;
  margin: 5vw auto;
  padding: 0 1rem;
}

#automation-diagram {
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 60px auto 0 auto;
}

.two-titles {
  position: relative !important;
  max-width: 85% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  margin-bottom: 2rem !important;
}

.two-titles h1 {
  position: relative !important;
  z-index: 2 !important;
  font-family: Space Grotesk, sans-serif !important;
  font-size: 40px !important;
  color: #F6F6F6 !important;
  letter-spacing: -1% !important;
  margin-top: 20% !important;
  margin-bottom: 0 !important;
}

@media (min-width: 300px) {
  .two-titles h1 {
    font-size: 7vw;
  }
}

.two-titles h2 {
  position: absolute !important;
  top: -55px !important;
  left: 0 !important;
  right: 0 !important;
  text-align: center !important;
  z-index: 1 !important;
  font-family: IBM Plex Sans, sans-serif !important;
  font-style: italic !important;
  font-size: 40px !important;
  color: #414141 !important;
  letter-spacing: -0.9px !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.graytitle {
  white-space: nowrap;
  margin: 0 auto;
  line-height: 1.1;
}

@media (min-width: 600px) {
  .two-titles h1 {
    font-size: 5vw;
  }

  .two-titles h2 {
    font-size: 4vw;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

#sec2 {
  margin-top: -30px;
}

#sec3 {
  margin-top: -30px;
}

#sec4 {
  margin-top: -30px;
}

@media (min-width: 396px) {

  .two-titles h2 {
    top: -10px;
  }
}

@media (min-width: 872px) {

  .two-titles h1 {
    font-size: 60px;
  }

  .two-titles h2 {
    font-size: 60px;
  }
}

.sec3-block {
  width: fit-content;
  margin: 0 auto;  
  text-align: left;
}

.sec3-li {
  font-family: IBM Plex Sans, sans-serif;
  font-size: 18px;
  color: #F6F6F6;
}

.sec2-p {
  font-family: IBM Plex Sans, sans-serif;
  font-size: 18px;
  padding: 0 1rem;
}

.lottie-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 570px;
  margin: -50px auto;
}

#lottieContainer-venn {
  width: 800px;
}

.getting-started-image {
  display: block;
  width: 90%;
  max-width: 800px;
  margin: auto;
}

#gs-arrow-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#lottieContainer-gsarrow {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}

.gs-step-icon-left,
.gs-step-icon-right {
  position: absolute;
  width: 80px;
  transform: translate(-50%, -50%);
}

.gs-step-icon-left {
  top: 55%;
  left: -25%;
}

.gs-step-icon-right {
  top: 50%;
  left: 126%;
}

#gs-step1 {
  position: absolute;
  top: 12%;
  left: 60%;
  transform: translate(-50%, -50%);
}

#gs-step2 {
  position: absolute;
  top: 28%;
  left: 40%;
  transform: translate(-50%, -50%);
}

#gs-step3 {
  position: absolute;
  top: 45%;
  left: 60%;
  transform: translate(-50%, -50%);
}

#gs-step4 {
  position: absolute;
  top: 61%;
  left: 40%;
  transform: translate(-50%, -50%);
}

#gs-step5 {
  position: absolute;
  top: 77%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.getting-started-steps-left {
  color: #F6F6F6;
  font-family: IBM Plex Sans, sans-serif;
  font-weight: bold;
  font-size: 10px;
  text-align: left;
  margin: 0;
}

.getting-started-title-left {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: #f6f6f6;
  font-size: 20px;
  max-width: 90%;
  text-align: left;
  margin: 0;
}

.getting-started-body-left {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #F6F6F6;
  text-align: left;
  margin: 0;
}

.getting-started-steps-right {
  color: #F6F6F6;
  font-family: IBM Plex Sans, sans-serif;
  font-weight: bold;
  font-size: 10px;
  text-align: right;
  margin: 0;
}

.getting-started-title-right {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: #f6f6f6;
  font-size: 20px;
  text-align: right;
  margin: 0;
}

.getting-started-body-right {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #F6F6F6;
  text-align: right;
  margin: 0;
  max-width: 300px;
}

.gs-step1-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* SEC (sections) */
#sec-container {
  background-color: #201E1E;
  margin-top: 10%;
  padding: 0;
}

.sec2-sec {
  width: 100%;
}

.sec-item {
  width: 100%;
  margin: 0;
  border: none;
  position: relative;
}

.sec-header {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 10vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #201E1E;
  height: 120px;
  cursor: pointer;
}

.sec-header img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}

.sec-header h3 {
  position: relative;
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #F6F6F6;
  padding: 20px 40px;
  margin: 0;
  transition: color .2s ease, text-shadow .2s ease;
}

.sec-header h3:hover {
  color: #00C5D5;
  text-shadow: 0 0 0.01px currentColor
}

.header1 {
  justify-content: flex-end;
}

.header2 {
  justify-content: flex-start;
}

.header3 {
  justify-content: flex-end;
}

.header-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: none;
  object-position: left top;
  z-index: 0;
  position: relative;
  left: 0;
}

.sec-content {
  overflow: hidden;
  height: 0;
}

.sec-inner {
  padding: 20px 20px 0;
  margin-bottom: 10vw;
}

.sec-content img.sec-image {
  display: block;
  max-width: 80%;
  margin: 40px auto;
}

#sec2 h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: #00C5D5;
  margin: 10vh auto 2vw auto;
  max-width: 85%;
}

#sec3 h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  color: #00C5D5;
  margin: 10vh auto 2vw auto;
}

.sec2-grid-2,
.sec2-grid-3,
.sec2-grid-4 {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 2rem;
  margin: 2rem auto 0;
  width: max-content;
}

@media (min-width: 600px) {

  .sec2-grid-2,
  .sec2-grid-3,
  .sec2-grid-4 {
    grid-template-columns: repeat(2, 270px);
    margin: 0 auto 0;
    gap: 0;
  }
}

@media (min-width: 600px) and (max-width: 1099px) {
  .sec2-grid-3 figure:last-child {
    grid-column: span 2;
    justify-self: center;
  }
}


@media (min-width: 1100px) {

  .sec2-grid-2 {
    grid-template-columns: repeat(2, 270px);
    width: max-content;
  }

  .sec2-grid-3 {
    grid-template-columns: repeat(3, 270px);
    width: max-content;
  }

  .sec2-grid-4 {
    grid-template-columns: repeat(4, 270px);
    width: max-content;
  }
}

.sec2-grid-2 figure,
.sec2-grid-3 figure,
.sec2-grid-4 figure {
  text-align: center;
  max-width: 220px;
}

.sec2-grid-2 img,
.sec2-grid-3 img,
.sec2-grid-4 img {
  width: 100%;
  max-width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.sec2-grid-2 figcaption,
.sec2-grid-3 figcaption,
.sec2-grid-4 figcaption {
  margin-top: 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #F6F6F6;
  font-size: 16px;
}

/* sec4 SECTION */
#sec4 {
  scroll-margin-top: 50px;
}

.sec4-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  max-width: 1000px;
  margin-inline: auto;
}

#tobias-image {
  flex: 0 0 250px;
  max-width: 50%;
  height: auto;
  display: block;
}

.sec4-text {
  flex: 0 0 350px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #F6F6F6;
  text-align: center;
}

.sec4-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.sec4-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  width: 250px;
  max-width: 80%;
  height: 60px;
  background: none;
  border: 1px solid #F6F6F6;
  border-radius: 12px;
  color: #4295A4;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

@media (min-width: 470px) {
  .sec4-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }

  .sec4-button {
    font-size: 16px;
    width: 150px;
  }
}

.sec4-line-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

#linkedin-button {
  line-height: 12px;
}

#linkedin-button b {
  color: white;
  letter-spacing: 0.02em;
  line-height: 14px;

}

#linkedin-button i {
  color: white;
}

.sec4-button:hover {
  background-color: #4295A4;
  color: #F6F6F6;
  cursor: pointer;
  transition: 0.3s;
}

.sec4-button:active {
  background-color: #f2f2f2;
  color: #201E1E;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.overlay.hide {
  opacity: 0;
  visibility: visible;
}

.modal {
  background-color: #F6F6F6;
  color: #201E1E;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  box-shadow: none;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay.show .modal {
  opacity: 1;
  transform: scale(1);
}

.overlay.hide .modal {
  opacity: 0;
  transform: scale(0.95);
}

.modal h1 {
  margin-top: 0;
  font-size: 1.8rem;
  font-family: 'Space Grotesk', sans-serif;
}

.modal p {
  margin-bottom: 1.5rem;
  color: #555;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  margin-top: 1rem;
}

#modal-subtitle {
  text-align: left;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 45%;
}

input,
textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #CCC;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #F6F6F6;
  color: #201E1E;
}

input::placeholder,
textarea::placeholder {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  color: #888;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.modal button[type="submit"] {
  padding: 0.75rem 1.5rem;
  background-color: #201E1E;
  color: #F6F6F6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  align-self: flex-end;
  font-family: 'Space Grotesk', sans-serif;
  width: 50%;
}

.modal button[type="submit"]:hover {
  background-color: #333;
}

.contact-form {
  font-family: 'IBM Plex Sans', sans-serif;
  flex-direction: column;
  gap: 1rem;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #201E1E;
}

.close-button:hover {
  color: #FF0000;
  transition: color 0.1s ease;
}

.form-response {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

.form-response h1 {
  margin-top: 0;
  font-size: 1.8rem;
  font-family: 'Space Grotesk', sans-serif;
}

.form-response p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
  text-align: center;
}

.form-response .accept-button {
  padding: 0.75rem 1.5rem;
  background-color: #201E1E;
  color: #F6F6F6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  width: 50%;
}

.form-response .accept-button:hover {
  background-color: #333;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  border-top: 1px solid #343434;
  background-color: #201E1E;
  color: #F6F6F6;
  margin-top: 100px;
}

#footer-content-copyright {
  text-decoration: none;
  color: #ADADAD;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-top: 1rem;
}

#footer-content-links {
  color: #ADADAD;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

#footer-content-links li {
  margin: 10px 0;
}

/* ================================

   BREAKPOINTS

================================= */

@media (min-width: 500px) {

  .line-break-desktop {
    display: block;
  }
}

@media (min-width: 480px) and (orientation: portrait) {
  .hero-content {
    margin-left: 10%;
    margin-bottom: 3vh;
  }
}

@media (min-width: 480px) {


  .hero h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .menu-scroll-hint {
    display: flex;
  }

  .menu {
    overflow-x: visible;
    white-space: normal;
    justify-content: center;
    gap: 5vw;
  }

  .menu-item {
    flex-shrink: 1;
    font-size: 16px;
  }

  .sec-header {
    height: 130px;
  }

  .sec4-info {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  #tobias-image {
    flex: 0 0 clamp(180px, 30vw, 200px);
    max-width: 37%;
    margin-left: clamp(0.5rem, 2vw, 1rem);
  }

  .sec4-text {
    max-width: clamp(300px, 50vw, 350px);
  }

  #footer-content-copyright {
    font-size: 12px;
    font-weight: 300;
    margin-top: 1rem;
    padding: 0;
  }

  #footer-content-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1.2rem 8rem;
    justify-content: center;
  }

  #footer-content-links li {
    margin: 0;
    font-size: 16px;
  }

  .sec4-buttons {
    gap: clamp(3rem, 8vw, 8rem);
  }

  .sec4-button {
    width: 160px;
    height: 60px;
  }

  .footer {
    gap: 0;
  }
}

@media (min-width: 768px) {

  .hero h1,
  .hero h2 {
    margin-left: 2rem;
    margin-bottom: 3rem;
    font-size: 3.5rem;
  }

  #sec1-title {
    margin-top: 100px;
    margin-bottom: 4vw;
  }

  .two-titles h1 {
    margin-top: 70px;
    margin-bottom: 0;
  }

  .sec2-p {
    margin: 0 auto 3vw auto;
    padding: 0 3rem;
  }

  .sec3-p {
    margin: 0 auto 0 auto;
    padding: 0 3rem;
  }

  #lottieContainer-venn {
    width: 90%;
    max-width: 800px;
    margin: 100px auto;
  }

  .sec-header {
    height: 140px;
  }

  .sec-header h3 {
    font-size: 32px;
    padding: 25px 60px;
  }

  #sec3 {
    margin-top: -32px;
  }

  #sec4 {
    margin-top: -32px;
  }

  .sec4-info {
    gap: clamp(2rem, 10vw, 4rem);
    margin-top: clamp(2rem, 5vw, 3rem);
  }

  #tobias-image {
    flex: 0 0 clamp(200px, 25vw, 220px);
    max-width: 30%;
    margin-left: clamp(1rem, 3vw, 2rem);
  }

  .sec4-text {
    max-width: clamp(400px, 60vw, 600px);
  }

  .sec4-buttons {
    gap: clamp(8rem, 12vw, 12rem);
    margin-top: clamp(4rem, 5vw, 6rem);
  }

  .sec4-button {
    width: clamp(220px, 25vw, 260px);
    height: clamp(54px, 7vw, 56px);
    font-size: clamp(16px, 2vw, 18px);
    flex-direction: row;
    gap: 0.5rem;
  }

  .form-row {
    flex-direction: row;
    gap: 1rem;
  }

  .form-row input {
    flex: 1;
  }

  #footer-content-copyright {
    font-size: 12px;
    margin-top: 1rem;
  }

  #footer-content-links li {
    display: inline-block;
    margin: 0;
    font-size: 12px;
  }
}

@media (min-width: 992px) {

  .hero h1,
  .hero h2 {
    font-size: 4rem;
  }

  .sec-header {
    height: 150px;
  }

  .sec-header h3 {
    font-size: 36px;
    padding: 30px 80px;
  }

  .sec4-info {
    gap: clamp(4rem, 8vw, 7rem);
    margin-top: clamp(3rem, 6vw, 5rem);
  }

  #tobias-image {
    flex: 0 0 clamp(220px, 22vw, 300px);
    max-width: 25%;
    margin-left: clamp(1rem, 3vw, 2rem);
  }

  #sec3 {
    margin-top: -34px;
  }

  #sec4 {
    margin-top: -34px;
  }

  .sec4-text {
    max-width: clamp(450px, 65vw, 500px);
  }

  .sec4-content {
    font-size: clamp(15px, 2vw, 17px);
  }

  .sec4-buttons {
    gap: clamp(8rem, 15vw, 16rem);
    margin-top: clamp(2.5rem, 5vw, 3rem);
  }

  .sec4-button {
    width: clamp(200px, 28vw, 240px);
    height: clamp(56px, 8vw, 60px);
    font-size: clamp(17px, 2vw, 19px);
  }

  #footer-content-copyright {
    font-size: 12px;
    margin-top: 1rem;
  }

  #footer-content-links li {
    margin: 40px 0;
    font-size: 17px;
  }

  #footer-content-links {
    display: flex;
    gap: 6rem;
  }

}

@media (min-width: 1200px) {
  .hero-content {
    max-width: 1000px;
  }

  #sec1-title,
  .sec1-list-content,
  .sec2-p,
  .getting-started-steps,
  .getting-started-content {
    max-width: 1000px;
  }

  .sec-header {
    height: 160px;
  }

  #sec3 {
    margin-top: -3vw;
  }

  #sec4 {
    margin-top: -3vw;
  }

  .menu {
    gap: 10vw;
  }

  .sec4-info {
    gap: clamp(5rem, 10vw, 12rem);
    margin-top: clamp(4rem, 6vw, 6rem);
  }

  #tobias-image {
    flex: 0 0 clamp(250px, 20vw, 320px);
    max-width: 18%;
    margin-left: clamp(2rem, 4vw, 3rem);
  }

  .sec4-text {
    max-width: clamp(500px, 70vw, 600px);
  }

  .sec4-content {
    font-size: clamp(18px, 2.5vw, 20px);
  }

  .sec4-buttons {
    gap: clamp(10rem, 18vw, 18rem);
    margin-top: clamp(4rem, 6vw, 6rem);
  }

  .sec4-button {
    width: clamp(220px, 30vw, 280px);
    height: clamp(60px, 8vw, 74px);
    font-size: clamp(18px, 2.5vw, 20px);
  }

  .footer {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }

  #footer-content-copyright {
    font-size: 12px;
    margin-top: 0;
  }

  #footer-content-links {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }

  #footer-content-links li {
    font-size: 18px;
  }
}

@media (min-width: 1400px) {
  .sec-header {
    height: 170px;
  }

  .menu {
    gap: 20vw;
  }

  .sec4-text {
    max-width: clamp(600px, 80vw, 800px);
  }

  .sec4-buttons {
    gap: clamp(10rem, 20vw, 15rem);
    margin-top: clamp(5rem, 7vw, 7rem);
  }

  .sec4-button {
    width: clamp(280px, 32vw, 340px);
    height: clamp(64px, 9vw, 80px);
    font-size: clamp(20px, 2.5vw, 22px);
  }

  .footer {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }

  #footer-content-copyright {
    font-size: 12px;
    margin-top: 1rem;
  }

  #footer-content-links {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    margin-bottom: 0;
  }

  #footer-content-links li {
    font-size: 20px;
  }
}

@media (min-width: 1800px) {
  #tobias-image {
    flex: 0 0 clamp(250px, 20vw, 320px);
    max-width: 14%;
    margin-left: clamp(2rem, 4vw, 3rem);
  }
}