
  
.star-twelve {
  position: absolute;
  right: 15%;
  top: 25%;
  background-color: #e0c564;
  height: 10vw;
  width: 10vw;
  border: 2px solid #86763b;
  text-align: center;
  transform: rotate(15deg);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.star-twelve::before,
.star-twelve::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #e0c564;
  border: 2px solid #86763b;
  z-index: 21;
}

.star-twelve::before {
  transform: rotate(30deg);
}

.star-twelve::after {
  transform: rotate(60deg);
}

.circle-text-sw {
  color: #ffffff; 
  font-size: 1vw;
  text-align: center;
  max-width: 100%; 
  z-index: 25;
  transform: rotate(-15deg);
  position: relative;
}

.circle-text-dark-sw {
  color: #0e6a55; 
  font-size: 18px; 
  padding: 10px;
  max-width: 100%; 
  padding: 40px;
}

.full-width-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.text-bubble-sw {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #0e6a55;
  border: 2px solid #7bc6b4;
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: inset 0 -3em 3em rgba(255, 255, 255, 0.1), -0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  z-index: 100;
}
  
.text-bubble-sw p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}

.interactive-sw {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: black;
}
h5 {
  position: relative;
  gap: 0;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex; 
}
h5 span {
  position: relative;
  filter: blur(5px);
  padding: 0 5px;
  transition: 0.5s;
}
h5 span:hover {
  filter: blur(0);
  color: darkslategray;
}
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.popup .popuptext {
  visibility: hidden;
  width: 500%;
  background-color: #001510;
  border: 2px solid #288670;
  box-shadow: inset 0 -3em 3em rgba(170, 170, 170, 0.3), -0.5em 0.5em 0.2em #0e6a55;
  color: rgb(158, 180, 158);
  text-align: center;
  border-radius: 25px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%); 
  opacity: 0; 
  transition: opacity 1s, visibility 1s; 
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-height: 300px;
  overflow-y: auto;
}
.popup .popuptext::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #074587 transparent transparent transparent; /* Match popup background color */
}
.popup .show {
  visibility: visible;
  opacity: 1; 
  animation: fadeIn 1s;
  filter: blur(0);
}

.tab {
  overflow: hidden;
  display: flex;
  width: 100%;
}

.tablink {
  background-color: #f1f1f1; 
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 20%;
}

.tablink:hover {
  background-color: #ddd;
}

.tablink.active {
  color: white; 
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}