@import url("https://fonts.googleapis.com/css?family=Manrope");
{% load static %}
.logo-wrapper {
  left: 2rem;
  margin-left: 2rem;
  height: 2rem; }
.logo-wrapper img {
  height: 100%; }

.earth-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden; }
.earth-container canvas {
  display: block;
  width: 100%;
  height: 100%; }

body {
  padding-top: 5.5rem;
  padding-left: 0;
  padding-right: 0;
  background-color: var(--background-color, #d8d8d8);
  display: flex;
  align-items: center;
  flex-direction: column;
}

html, body {
  margin: 0;
  padding: 0; }

body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll; }

section {
  scroll-snap-align: start;
  position: relative;
  /*height: 97vh;*/
  overflow: hidden;
  background-color: var(--section-background, #d8d8d8);
  width: 100%;

}
section .parallax-layer {
  position: absolute;
  width: 110%;
  /* Increase size */
  height: 110%;
  /* Increase size */
  top: -5%;
  /* Adjust to center */
  left: -5%;
  /* Adjust to center */ }
section .parallax-text {
  position: absolute;
  bottom: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--font-color, #ffffff);
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: bolder;
  letter-spacing: -0.7px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  /* Add animation keyframes for the roll effect */ }
section .parallax-text .primary-text {
  font-size: 4.5rem; }
section .parallax-text .secondary-text {
  display: flex;
  font-size: 1.5rem; }
section .parallax-text .oval {
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: thick;
  box-shadow: 0px 0.6rem 1rem rgba(0, 0, 0, 0.8);
  transition: transform 1s ease;
  padding: 0 0.5rem 0 0.5rem;
  transform-origin: center;
  /* Set the origin of transformation */
  transform: translateY(0) scale(1);
  /* Initial state */ }

@keyframes roll-in {
  from {
    transform: translateY(-50%) scale(0.5);
    /* Start from above, smaller */
    opacity: 0;
    /* Start less visible */ }
  to {
    transform: translateY(0) scale(1);
    /* End in the oval, full size */
    opacity: 1;
    /* Fully visible */ } }

@keyframes roll-out {
  from {
    transform: translateY(0) scale(1);
    /* Start in the oval, full size */
    opacity: 1;
    /* Fully visible */ }
  to {
    transform: translateY(50%) scale(0.5);
    /* Move out towards the bottom, smaller */
    opacity: 0;
    /* Less visible */ } }
section .parallax-text-top {
  position: absolute;
  top: 10%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--font-color, #ffffff);
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: bolder;
  letter-spacing: -0.7px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); }
section .parallax-text-top .primary-text {
  font-size: 6rem;
  margin-bottom: 0.5rem; }
section .parallax-text-top .secondary-text {
  font-size: 2.5rem; }

#deep-dive .background, #deep-dive .midground, #deep-dive .foreground, #solution-overview .background, #solution-overview .midground, #solution-overview .foreground, #case-study .background, #case-study .midground, #case-study .foreground, #call-to-action .background, #call-to-action .midground, #call-to-action .foreground, #landing-question .background, #landing-question .midground, #landing-question .foreground {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center; }

#deep-dive .midground, #solution-overview .midground, #case-study .midground, #call-to-action .midground, #landing-question .midground {
  background-size: 40%; }

#deep-dive .foreground, #solution-overview .foreground, #case-study .foreground, #call-to-action .foreground, #landing-question .foreground {
  background-position: 70% 20%;
  background-size: 15%; }

#problems .carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%; }
#problems .carousel-container .carousel-flex-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; }
#problems .carousel-container .carousel-item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 1rem;
  box-sizing: border-box; }

#problems button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none; }
#problems button.left {
  left: 10px; }
#problems button.right {
  right: 10px; }

#deep-dive {
  min-height: 200vh;
  color: var(--font-color, #333);
  font-family: 'Manrope', sans-serif; }
#deep-dive .content-container {
  background-color: #FAFAFA;
  margin: 2rem;
  height: 100vh;
  box-sizing: border-box;
  padding: 2vw 2vh;
  border-radius: 50px; }
#deep-dive .content-container p {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold; }
#deep-dive .comparison-images {
  height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px; }
#deep-dive .comparison-images .card {
  flex: 1;
  max-height: 80vh;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden; }
#deep-dive .comparison-images .card img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain; }
#deep-dive .overlay-text {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: bolder;
  letter-spacing: -0.7px; }
#deep-dive h2, #deep-dive p, #deep-dive .analysis {
  margin-top: 20px;
  max-height: 20vh;
  overflow: auto; }
#deep-dive p {
  font-size: 2.5rem;
  margin: 20px 0;
  font-weight: bold; }
#deep-dive .analysis {
  display: flex;
  margin-top: 30px;
  justify-content: space-between; }
#deep-dive .analysis > div {
  flex: 1;
  margin: 0 10px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px; }
#deep-dive .tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer; }
#deep-dive .tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1; }
#deep-dive .tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -110px;
  opacity: 0;
  transition: opacity 0.3s; }
#deep-dive .tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent; }

#solution-overview .background, #solution-overview .cloud, #solution-overview .foreground {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center; }

#solution-overview .cloud {
  opacity: 0.8; }
#solution-overview .cloud.cloud1 {
  background-size: 20%;
  background-position: 5% 5%; }
#solution-overview .cloud.cloud2 {
  background-size: 32%;
  background-position: 40% 3%; }
#solution-overview .cloud.cloud3 {
  background-size: 15%;
  background-position: 80% 7%; }
#solution-overview .cloud.cloud4 {
  background-size: 26%;
  background-position: 15% 20%; }
#solution-overview .cloud.cloud5 {
  background-size: 18%;
  background-position: 55% 18%; }
#solution-overview .cloud.cloud6 {
  background-size: 28%;
  background-position: 90% 25%; }
#solution-overview .cloud.cloud7 {
  background-size: 14%;
  background-position: 10% 32%; }
#solution-overview .cloud.cloud8 {
  background-size: 22%;
  background-position: 30% 40%; }
#solution-overview .cloud.cloud9 {
  background-size: 24%;
  background-position: 70% 38%; }
#solution-overview .cloud.cloud10 {
  background-size: 19%;
  background-position: 20% 45%; }

#solution-overview .foreground {
  background-position: 70% 20%;
  background-size: 15%; }

#case-study {
  min-height: 100vh;
  color: var(--font-color, #333);
  font-family: 'Manrope', sans-serif; }
#case-study .content-container {
  background-color: #FAFAFA;
  margin: 2rem;
  height: 100vh;
  box-sizing: border-box;
  padding: 2vw 2vh;
  border-radius: 50px; }
#case-study .content-container p {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold; }
#case-study .comparison-images {
  height: 80vh;
  bottom: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px; }
#case-study .comparison-images .card {
  flex: 1;
  max-height: 80vh;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden; }
#case-study .comparison-images .card img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain; }
#case-study .overlay-text {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: bolder;
  letter-spacing: -0.7px; }
#case-study h2, #case-study p, #case-study .analysis {
  margin-top: 20px;
  max-height: 20vh;
  overflow: auto; }
#case-study p {
  font-size: 2.5rem;
  margin: 20px 0;
  font-weight: bold; }
#case-study .analysis {
  display: flex;
  margin-top: 30px;
  justify-content: space-between; }
#case-study .analysis > div {
  flex: 1;
  margin: 0 10px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px; }

#call-to-action {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.1px;
  height: 97dvh;
}
#call-to-action .parallax-card {
  /*background-color: var(--background-color, #d8d8d8);*/
  background-color: #505050;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 40px;
  width: 80dvw;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#call-to-action .parallax-card h3 {
  margin-top: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: center;
  color: var(--font-color, #333); }
#call-to-action .parallax-card p {
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
  color: var(--font-color-shade, #555);
  text-align: center;
}
#call-to-action .parallax-card .form-and-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }
#call-to-action .parallax-card .form-and-details form {
  flex: 1;
  margin-right: 40px; }
#call-to-action .parallax-card .form-and-details .contact-details {
  flex: 1;
  font-family: 'Manrope', sans-serif;
  color: #777;
  font-size: 1.5rem; }
#call-to-action .parallax-card .form-and-details .contact-details div {
  margin-bottom: 20px; }
#call-to-action .parallax-card .form-and-details .contact-details div strong {
  color: var(--font-color); }
#call-to-action .parallax-card .form-group {
  margin-bottom: 20px; }
#call-to-action .parallax-card .form-group input, #call-to-action .parallax-card .form-group textarea {
  font-family: 'Manrope', sans-serif;
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.5rem;
  color: var(--font-color, #333);
  outline: none;
  transition: border-color 0.3s; }
#call-to-action .parallax-card .form-group input ::placeholder, #call-to-action .parallax-card .form-group textarea ::placeholder {
  color: #888; }
#call-to-action .parallax-card .form-group input:focus, #call-to-action .parallax-card .form-group textarea:focus {
  border-color: #555; }
#call-to-action .parallax-card .form-group textarea {
  resize: none;
  height: 150px; }
#call-to-action .parallax-card .form-group button {
  font-family: 'Manrope', sans-serif;
  background-color: #333;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s; }
#call-to-action .parallax-card .form-group button:hover {
  background-color: #555; }

.div-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem; }
.div-container table {
  border-collapse: collapse;
  width: auto;
  /* Ensure the table doesn't expand to full width */ }
.div-container table th, .div-container table td {
  border: 1px solid #000;
  text-align: left;
  padding: 8px;
  vertical-align: top; }
.div-container table tr:nth-child(even) {
  background-color: #f2f2f2; }

.html-class, .mt-body-class {
  margin: 0;
  padding: 0;
  height: 100%; }

.mt-body-class {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  /* Adjust the background color as needed */ }

.mt-container {
  text-align: center; }

.mt-logo img {
  max-width: 100%;
  /* Ensures the logo is responsive */
  height: auto; }

.mt-card {
  background-color: #d9d9d9;
  /* Slightly darker background for the card */
  border-radius: 10px;
  /* Rounded corners */
  padding: 20px;
  margin-top: 20px;
  /* Space between logo and card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: adds subtle shadow */ }
.mt-card h1 {
  margin-top: 0; }
.mt-card p {
  color: var(--font-color, #333);
  /* Adjust text color as needed */ }

* {
  font-family: 'Manrope', sans-serif; }

#image-container {
  flex: 1;
  position: relative;
  height: 60dvh;
}

#image-container img {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  object-position: left;
}

.parallax-container {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  perspective: 1px;
  perspective-origin: 0 0;
}

.parallax-child {
  transform-origin: 0 0;
  transform: translateZ(-5px) scale(3);
}

#starry-night, #earth, #satellite {
  max-height: 100%;
}
#starry-night {
  width: 100%;
}

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

#satellite {
  position: absolute;
  top: 45%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 10dvw;
}


.secondary-text p {
  display: inline;
  font-size: 1.5rem;
  color: var(--font-color-light, #EEE);
}
.primary-text {
  font-size: 2.5rem;
  color: var(--font-color-light, #EEE);
}

footer {
  color: var(--font-color, #333);
  background-color: darkslateblue;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 3dvh 2rem 2dvh 2rem;
  box-sizing: border-box;
  justify-content: space-between;
}

footer > div {
  /*margin-right: 5dvw;*/
  min-width: 10rem;
}

footer > div#footer-first {
  /*margin-right: 22dvw;*/
}
footer .logo {
  width: 20dvw;
}

footer h3 {
  margin-top: 0;
  font-size: xx-large;
  margin-bottom: 0;
}

.parallax-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.parallax-card form :is(input:not([type="submit"]), textarea) {
  margin: 0.5rem;
  padding: 0.5rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #333;
  font-size: 1.5rem;
  outline: none;
}

.parallax-card form input[type="submit"] {
  /*background-color: red;*/
  /*border: 5px solid red;*/
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  background-color: #3498db; /* Default background color */
  transition: background-color 0.3s ease-in-out, transform 0.1s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.parallax-card form input[type="submit"]:hover {
  background-color: #2980b9; /* Darken the button */
  transform: translateY(-2px);
}
.parallax-card form input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

footer div .social-icon {
  width: 3rem;
  margin: 0;
  padding: 0;
}



footer div a {
  margin: 0;
  padding: 0;
  color: var(--font-color, #333);
}

.form-group {
  display: flex;
  flex-direction: row;
  /*flex-wrap: nowrap ;*/
}
footer > div a {
  text-decoration: none;
}

footer > div a:hover {
  /*color: var(--font-color, #333);*/
  /*transform: translateY(-2px);*/
  /*background-color: #e6e6e6;*/
  text-decoration: underline;
}

footer div#footer-first div a {
  margin-right: 1dvw;
}


footer ul {
  list-style: none; /* Remove markers (bullets or numbers) */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}
#featured {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  padding: 4dvh 0;
}
#featured > div {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: large;
}
#featured > h2 {
  margin: 0;
  margin-bottom: 1dvh;
}

#featured > div > div {
  margin: 1dvh 2dvw;
}
#featured > div > div p {
  margin: 5px 0 0 2px;
}
#featured > div > div img {
  width: 16dvw;
  min-width: 250px;
  height: auto;
  border-radius: 10px;
}
#unique-business {
  font-size: 1.5rem;
}

.midground .parallax-card#expert-consult-box {
  width: 58dvw;
}
footer input[type="submit"] {
  /*background-color: red;*/
  /*border: 5px solid red;*/
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--font-color, #333);
  background-color: #3498db; /* Default background color */
  transition: background-color 0.3s ease-in-out, transform 0.1s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer input:not([type="submit"]) {
  /*margin: 0.5rem;*/
  padding: 0.5rem;
  /*width: 100%;*/
  border-radius: 0.5rem;
  border: 1px solid #333;
  /*font-size: 1.5rem;*/
  outline: none;
}

.featured-card a {
  text-decoration: none;
  color: var(--font-color, #333);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--font-color, #333);
}

section:not(.no-flex) > article {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 3dvw;

}
section > article > div {
  margin: 1rem;
  background-color: var(--background-color, #d8d8d8);
}

section > article > div * {
  margin: 0;
}

#our-mission {
  gap: 2dvw;
  padding: 4dvh 7dvw;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  height: auto;
  font-size: large;
  color: var(--font-color, white);
}

section#our-mission h2 {
  margin-top:0;
  margin-bottom: 1dvh;
  /*font-size: 2rem;*/
}

section#our-mission > :first-child {
  /*margin-right: 2dvw;*/
}

#our-mission ul {
  margin-bottom: 0;
}

#our-mission h1 {
  font-size: xx-large;
}

#our-mission img {
  width: 42dvw;
}

#image-slider > div {
  display: flex;
  /*margin-left: var(--left-side-margin, 7dvw);*/
  /*gap: 2dvw;*/
}

#image-slider > div p {
  /*width: 44dvw;*/
  font-size: 1.3rem !important;
  color: var(--font-color, #333);
  /*padding: 0 8dvw 0 0;*/
  /*box-sizing: border-box;*/
  margin: 0;
  /*margin-left: calc(7dvw - 4rem);*/
}

#image-slider {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 4dvh 7dvw;
}

#image1{
  clip-path: inset(0% 0% 0% calc(var(--slider-pos, 20%)*100%));
}

#image2{
  clip-path: inset(0% calc(100% - var(--slider-pos, 20%)*100%) 0% 0%);
}

/*.slider {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 0;*/
/*  background-color: transparent;*/
/*  cursor: ew-resize;*/
/*  !*top: 50%;*!*/
/*  user-select: none;*/
/*}*/

/*.slider:before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 10px;*/
/*  height: 60dvh;*/
/*  background-color: red;*/
/*  cursor: ew-resize;*/
/*  user-select: none;*/
/*  left: var(--slider-pos, 20%);*/
/*  transform: translateX(-50%);*/
/*}*/
.image-container {
  position: relative;
  width: 500px; /* Adjust width as needed */
  height: 300px; /* Adjust height as needed */
  user-select: none;
}
.image-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  user-select: none;
}

article > div img {
  height: 250px;
  width: 250px;
  background-color: lightblue;
  border-radius: 10px;
  object-fit: cover;
}
article > div {
  border-radius: 10px;
}
article > div a {
  text-decoration: none;
  color: inherit;
}

/*article > div p, article > div h3 {*/
/*  padding-left: 1dvw;*/
/*}*/

#image-slider h2 {
  align-self: center;
  font-size: xx-large;
}

@media screen and (max-width: 1200px) {
  footer {
    flex-direction: column;
  }
  #image-slider {
    flex-direction: column;
  }
  #our-mission {
    flex-direction: column;
  }
  #image-slider > div {
    flex-direction: column;;
  }
  #our-mission img {
    width: 100%;
  }
  #paragraph-image-container {
    width: 100% !important;

  }
  #image-container {
    display: none !important;
  }
}

#landing-question {
  height: 100dvh;
  /*border-radius: 0 0 1rem 1rem;*/
  margin-top: 0;
}

hr {
  margin: 0;
  width: calc(100dvw - 2 * var(--left-side-margin, 7dvw));
}

iframe {
  margin: 0;
  padding: 0;
  width:100%;
  height:100%;
  border: 0;
}

ul {
  color: var(--font-color, white);
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  line-height: 1.5;
  margin-top: 2dvh;
  position: relative;
  padding-left: 35px;
  font-size: x-large;
}

p {
  font-size: x-large;

}

a.svg {
  position: relative;
  display: inline-block;
  width: 90%;
}
/*a.svg:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  left:0;*/
/*}*/
li:before {
  content: ""; /* Empty content */
  position: absolute;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../img/tiny_satelite.svg'); /* URL of your background image */
  background-size: cover; /* Adjust as needed */
  margin-right:6px;
}
h2 {
  font-size: xx-large !important;
}
.search-form {
  position: relative;
  /*width: 300px; !* Adjust width as needed *!*/
}

.search-form input[type="email"] {
  width: calc(100% - 100px); /* Adjust button width */
  padding: 10px; /* Adjust padding as needed */
  border: 1px solid #ccc; /* Example border */
  border-radius: 5px; /* Example border radius */
}

.search-form button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%; /* Match input height */
  width: 100px; /* Adjust button width */
  padding: 10px; /* Adjust padding as needed */
  border: none;
  background-color: #007bff; /* Example button color */
  color: #fff; /* Example text color */
  border-radius: 0 5px 5px 0; /* Example border radius */
  cursor: pointer;
}

#watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 137px;
  height: 36px;
  background-color: black;
  z-index:10;
}

#slider {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: #00000000;
  z-index: 100;
}

#slider::-webkit-slider-thumb {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 132px;
  height: 132px;
  border: 0;
  background: url("../img/pointer.svg");
  cursor: pointer;
  transform: translate(-50%, -50%);
  left: calc(var(--slider-pos, 0.20) * (100dvw - 16dvw) / 2);
}

#slider::-moz-range-thumb {
  position: absolute;
  appearance: none;
  width: 132px;
  height: 132px;
  border: 0;
  background: url("../img/pointer.svg");
  cursor: pointer;
  transform: translate(-50%, 0%);
  left: calc(var(--slider-pos, 0.20) * (100dvw - 16dvw) / 2);
}

#paragraph-image-container {
  z-index: 1000;
  background-color: var(--section-background, black);
  font-size: large;
  color: var(--font-color, #333);
  padding: 0 0 0 0;
  box-sizing: border-box;
  width: 44dvw;
  padding-right: 2dvw;
}

#text-holder {
  position: absolute;
  top: 85vh;
  padding-left: 1dvw;
  z-index: 100;
}
strong {
  font-weight: bold;
}