@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 80px;
  display: flex;
  flex-direction: row;
  justify-items: center;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(202, 202, 202);
  box-shadow: 0px 2px 0px #b6b4c3;
  z-index: 100;
}
.navbar .brand {
  float: left;
  margin-right: 20px;
  font-weight: 400;
  transition-duration: 0.1s;
  scale: 1;
  color: rgba(0, 0, 0, 0.8980392157);
}
.navbar .brand:hover {
  font-weight: 400;
  transition-duration: 0.2s;
  scale: 1.05;
  color: rgba(0, 0, 0, 0.6);
}
.navbar .brand:active {
  font-weight: 400;
  transition-duration: 0.2s;
  scale: 1;
  color: rgba(0, 0, 0, 0.4);
}
.navbar .nav-container-parent {
  display: flex;
  flex-direction: row;
  gap: 100px;
  justify-items: center;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-container-parent .nav-container-child {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-items: center;
  justify-content: space-between;
}

.tag {
  background-color: #e9e9e9;
  border: solid 1px #b3b3b3;
  border-radius: 4px;
  font-size: 14px;
  padding: 4px 8px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

footer {
  background-color: #1b1a25;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  width: 100%;
  padding: 4px 0px;
}
footer p {
  color: rgba(255, 255, 255, 0.8980392157);
}

.CTA-context {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 52px 0px;
}
.CTA-context .CTA-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

button {
  background-color: #1b1a25;
  font-family: "Sen", sans-serif;
  color: rgba(255, 255, 255, 0.8980392157);
  font-size: 14px;
  border-radius: 4px;
  border: 0px solid;
  padding: 12px 16px;
  box-shadow: 2px 2px #b6b4c3;
  cursor: pointer;
  transition: ease-in-out 0.1s;
}
button:hover {
  background-color: #3b3a46;
  color: rgba(255, 255, 255, 0.8980392157);
  box-shadow: 4px 4px #b6b4c3;
  scale: 105%;
  transition: ease-in-out 0.1s;
}
button:active {
  background-color: #eae7f7;
  color: rgba(0, 0, 0, 0.8980392157);
  scale: 100%;
  transition: ease-in-out 0.1s;
}

p a {
  scale: 100%;
}
p a:hover {
  font-weight: 800;
  transition: ease-in-out 0s;
}

.carousel-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  padding: 20px;
  margin: 0px;
}
.carousel-visual .carousel-page-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 80%;
  height: 80%;
  clip-path: border-box;
  border-radius: 8px;
  overflow: hidden;
}
.carousel-visual .carousel-page-view .carousel-Wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  transition: transform 0.5s ease-in-out;
}
.carousel-visual .carousel-page-view .carousel-Wrapper img {
  width: 100%;
  height: auto;
}
.carousel-visual .carousel-page-view .carousel-Wrapper .carousel-img {
  flex-shrink: 0;
}
.carousel-visual .dot-tracker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  height: 24px;
}
.carousel-visual .dot-tracker .carousel-dot {
  height: 8px;
  width: 8px;
  background-color: #b6b4c3;
  border-radius: 10000px;
  transition-duration: 0.2s;
  cursor: pointer;
}
.carousel-visual .dot-tracker .carousel-dot:hover {
  height: 16px;
  width: 16px;
  background-color: #6e6c7a;
  border-radius: 10000px;
}
.carousel-visual .dot-tracker .active-dot {
  height: 16px;
  width: 16px;
  background-color: #1b1a25;
  border-radius: 10000px;
}
.carousel-visual .buttons-CTA {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 0px;
}

.bolden-highlight {
  font-weight: 800;
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.8980392157);
  cursor: pointer;
}
.bolden-highlight:hover {
  color: rgba(0, 0, 0, 0.6);
}
.bolden-highlight:active {
  color: rgba(0, 0, 0, 0.4);
}

.background-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.background-modal .modal-exit {
  background-color: #ffffff;
  padding: 12px;
  border-radius: 100px;
  position: fixed;
  top: 80;
  right: 40;
  cursor: pointer;
}
.background-modal .modal-exit:hover {
  background-color: #dedede;
  scale: 120%;
  transition: ease-in-out 0.2s;
}
.background-modal .modal-exit:active {
  background-color: #979797;
  scale: 100%;
  transition: ease-in-out 0.2s;
}
.background-modal .image-modal {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}/*# sourceMappingURL=Component-Styling.css.map */