:root {
  --tezo-red: #e54a59;
  --tezo-white: #ffffff;
  --tezo-black: #1e1e1e;
  --tezo-lilac: #b0a8fe;
  --tezo-blue: #4e3aad;
  --tezo-beige: #e8dccc;
}

@font-face {
  font-family: Gilroy-Bold;
  src: url(https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/font/Gilroy-ExtraBold.otf) format("truetype");
}

@font-face {
  font-family: Gilroy-Light;
  src: url(https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/font/Gilroy-Light.otf) format("truetype");
}

@font-face {
  font-family: Gilroy-Medium;
  src: url(https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/font/Gilroy-Medium.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy-Regular;
  src: url(https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/font/Gilroy-Regular.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy-SemiBold;
  src: url(https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/font/Gilroy-SemiBold.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy-ExtraBold;
  src: url(https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/font/Gilroy-ExtraBold.otf) format("truetype");
}



.font-gilory-bold {
  font-family: Gilroy-Bold;
}


html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background: url("https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/background-img.png");
  background-size: 100% 110%;
  background-attachment: scroll;
  position: relative;
  z-index: 1;
}


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

/* #region: gradient patch */
.ellipse-patch {
  position: absolute;
}

.ellipse-patch.patch-1 {
  left: 0;
  top: 2%;
}

.ellipse-patch.patch-2 {
  right: 0;
  top: 10%;
}

.ellipse-patch.patch-3 {
  left: 0;
  top: 20%;
}

.ellipse-patch.patch-4 {
  right: 0;
  top: 50%;
}


/* #endregion */

.sub-title {
  font-size: 20px !important;
}




/* #region: title and sub-title */
.logo-container {
  position: relative;
}

.header-tags {
  border-radius: 8px;
  background-color: var(--tezo-beige);
  padding: 5px 12px;
  position: absolute;
}

.header-tags p {
  font-family: Gilroy-Medium;
  font-weight: 400;
  font-size: 18px;
  line-height: 35.15px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 0 !important;
  color: var(--tezo-blue);
}

.header-tags.tag-1 {
  left: 15%;
  transform: rotate(-16deg);
}

.header-tags.tag-2 {
  top: 30px;
  right: 10%;
  transform: rotate(16deg);

}

.header-tags.tag-3 {
  bottom: 2%;
  left: 10%;
}

.header-tags.tag-text p {
  color: var(--tezo-white) !important;

}

.header-tags.tag-text {
  background-color: var(--tezo-red) !important;
  right: 5%;
  bottom: 48%;
}

.header-tags.tag-text::before {
  border-left: 0.6em solid transparent;
  border-right: 0.6em solid transparent;
  border-top: 0.6em solid var(--tezo-red);
  transform: translate(-0.1em, 0.1em);
  z-index: 0;
}

.header-tags.tag-text::before,
.header-tags.tag-text::after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 1em;
  width: 0;
  height: 0;
}

@media (max-width: 1024px) {
  .header-tags.tag-text {
    bottom: 20%;
  }
}

@media (max-width: 768px) {

  .header-tags p {
    font-size: 7.27px;
    line-height: 18.26px;
  }

  .header-tags.tag-text {
    bottom: 15%;
    right: 2%;
  }

  .header-tags.tag-1 {
    left: 5%;
  }

  .header-tags.tag-2 {
    right: 5%;

  }


}

/* #endregion */

/* #region: title and sub-title */

.title {
  font-family: Parkinsans;
  font-weight: 700;
  font-size: 48px;
  line-height: 80px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--tezo-blue);
}

.sub-title {
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 3%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .title {
    font-size: 32px;
    line-height: 48px;
  }

  .sub-title {
    font-size: 14px !important;
    line-height: 24px;
  }
}

/* #endregion */

/* #region: Floating btn */
.floating-btn-container {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 10;
  visibility: hidden;
}

.floating-btn {
  position: relative;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tezo-blue);
  color: white;
  font-size: 30px;
  border: none;
  transition: transform 0.2s;
  cursor: pointer;
}

/* .floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn-container:hover .floating-btn-top {
  transform: translateX(0);
} */

.floating-btn-top {
  position: absolute;
  bottom: 80px;
  right: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: var(--tezo-blue);
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* transform: translateX(100%);  */
  /* transition: transform 0.3s ease; */
  cursor: pointer;
}

/* #endregion */


/* #region: previous edition link dropdown and changes in few section */
.dropdown-content a {
  display: block;
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  margin-bottom: 15px;
}

.dropdown-content a:last-child {
  margin-bottom: 0;
  color: #676767;
}

.dropdown-content a:hover {
  color: var(--blue);
  font-weight: 600;
}

.show {
  display: block !important;
}

.last-edition-button {
  background: transparent;
  border: none;
}

.feedback-stars {
  margin-bottom: 30px !important;
}

.modal-section .modal {
  padding-top: 50px !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: unset;
  color: black !important;
}

/* #endregion */


.marquee-container {
  background-color: var(--tezo-blue);
}

/* #region: Banner*/

.logo-container {
  gap: 20px;
  padding: 120px 0 120px 0;
}

.edition-name {
  font-family: Gilroy-Medium;
  font-weight: 400;
  font-size: 34.74px;
  line-height: 30.4px;
  text-align: center;
}

.edition-info {
  font-family: Gilroy-Bold;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}

.edition-logo {
  width: clamp(430px, 40%, 600px);
}

@media (max-width: 768px) {
  .edition-logo {
    width: 70%;
  }

  .edition-name {
    font-size: 20px;
    line-height: 25px;
  }

  .edition-info {
    font-size: 12px;
    line-height: 15px;
  }

  .logo-container {
    padding: 80px 0 80px 0;
  }
}


/* #endregion */



/* #region: Breakthrough Beyond*/

.breakthrough-section-content {
  position: relative;
  border: 3px solid var(--tezo-red);
  background-color: var(--tezo-beige);
  padding: 60px;
  border-radius: 32px;
}

.breakthrough-section-content .title-wrapper {
  width: 50%;
}

.breakthrough-section-content .title {
  width: min-content;
  gap: 32px;
}

.breakthrough-section-content .title p {
  border-radius: 16px;
  background-color: var(--tezo-red);
  font-family: Parkinsans;
  font-weight: 700;
  font-size: 48px;
  line-height: 80px;
  letter-spacing: 0%;
  color: var(--tezo-beige);
  padding: 4px 8px;
  width: min-content;
  white-space: nowrap;
}

.breakthrough-section-content .content {
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 3%;
  text-align: justify;

}

.breakthrough-section-content .red-border {
  background-color: var(--tezo-red);
  color: var(--tezo-black);
  border-radius: 16px;
  font-family: Gilroy-Bold;
  padding: 12px 8px;
  width: min-content;
  white-space: nowrap;
}

.breakthrough-beyond-img {
  position: absolute;
  width: 40%;
  right: 0;
  top: -299px;
}

@media (max-width: 1024px) {
  .breakthrough-beyond-img {
    top: -24%;
    width: 30%;
  }

  .breakthrough-section-content .title p {
    font-size: 40px;
    line-height: 60px;
  }
}

@media (max-width: 991px) {
  .breakthrough-section-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .breakthrough-beyond-img {
    top: -20%;
    width: 30%;
  }

  .breakthrough-section-content .title p {
    font-size: 30px;
    line-height: 48px;
  }

  .sales-frontlines-section-content .title-wrapper {
    width: 100%;
  }

  .breakthrough-section-content .content {
    font-size: 14px;
    line-height: 24px;
  }

}

@media (max-width: 540px) {
  .breakthrough-beyond-img {
    top: -10%;
    width: 30%;
  }

  .breakthrough-section-content {
    padding: 20px;
  }

  .breakthrough-section-content .title p {
    font-size: 21px;
    line-height: 34px;
  }
}
@media (max-width: 540px) {
  .breakthrough-section-content .title p{
    white-space: unset ;
  }
}

/* #endregion */

/* #region: Sales Frontlines Section */

@media (max-width:768px) {
  .sales-frontlines-section-content .title-wrapper {
    width: 100% !important;
  }

}

.sales-frontlines-section-content {
  gap: 56px;
  position: relative;
}

.sales-frontlines-section-content .sales-frontline-decor-img {
  position: absolute;
  height: 350px;
  bottom: 0.2%;
  right: -2.5%;
  border-radius: 32px;
  z-index: 1;
}

.sales-frontlines-section-content .sales-frontline-content-images {
  position: absolute;
  right: 0;
  top: 0;
  flex-wrap: wrap;
  width: 40%;
  /* min-width: 516px; */
}

.sales-frontlines-section-content .title-wrapper {
  width: 60%;
  gap: 12px;
  align-self: center;
}

.sales-frontlines-section-content .frontline-box {
  position: relative;
  border: 3px solid var(--tezo-red);
  border-radius: 16px;
  background-color: var(--tezo-blue);
  padding: 64px 56px;
}

.sales-frontlines-section-content .frontline-box .text-content {
  width: 60%;
}

.sales-frontlines-section-content .frontline-box .text-content p {
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 3%;
  text-align: justify;
  color: var(--tezo-white);
}

.sales-frontlines-section-content .frontline-box .table-content {
  width: 75%;
}

.sales-frontlines-section-content .frontline-box .table-content .content {
  border-radius: 16px;
  background-color: var(--tezo-beige);
  padding-inline: 1.5rem;
  flex-grow: 1;
}


.sales-frontlines-section-content .frontline-box .table-content .content .text-container:nth-child(1) {
  border-top: none;
}

.sales-frontlines-section-content .frontline-box .table-content .content .text-container {
  border-top: 1px solid var(--tezo-blue);
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3%;
  padding: 0.8rem 0;
  flex-grow: 1;
  height: 25%;
  display: flex;
  justify-content: start;
  align-items: center;
}

.sales-frontlines-section-content .frontline-box .table-content .header {
  border-radius: 16px;
  background-color: #FFFFFFCC;
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 3%;
  text-align: justify;
  color: var(--tezo-black);
  text-align: center;
  padding: 12px 0;
}

.sales-frontlines-section-content .frontline-box .table-content>div:nth-child(3) .header {
  background-color: var(--tezo-white);
}

.sales-frontlines-section-content .frontline-box .table-content>div:nth-child(3) .content {
  background-color: var(--tezo-lilac) !important;
}

.table-content-item {
  padding-top: 24px;
}

.table-content-item-1 {
  min-width: 206px;
  width: calc(25% - 8px);
}

.table-content-item-2 {
  min-width: 276px;
  width: calc(33% - 8px);
  ;
}

.table-content-item-3 {
  min-width: 340px;
  width: calc(41% - 8px);
}

@media (max-width: 991px) {
  .sales-frontlines-section-content .sales-frontline-content-images {
    position: static;
    width: 100%;
    justify-content: flex-start !important;
  }

  .sales-frontlines-section-content .frontline-box .table-content {
    width: 100%;
  }

  .sales-frontlines-section-content .frontline-box .text-content {
    width: 100%;
  }

  .sales-frontlines-section-content .sales-frontline-decor-img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .sales-frontlines-section-content .sales-frontline-content-images img:not(:last-child) {
    width: 45%;
  }

  .sales-frontlines-section-content .sales-frontline-content-images img:last-child {
    width: auto;
  }

  .sales-frontlines-section-content .frontline-box {
    padding: 32px 24px;
  }

  .sales-frontlines-section-content .sales-frontline-decor-img {
    height: unset;
    width: clamp(150px, 50%, 250px);
  }
}

@media (max-width: 768px) {
  .table-content-item-1 {
    min-width: unset;
    width: calc(40% - 8px);
  }

  .table-content-item-2 {
    min-width: unset;
    width: calc(60% - 8px);

  }

  .table-content-item-3 {
    /* min-width: 310px; */
    width: calc(50% - 8px);
  }
}

@media (max-width: 450px) {
  .table-content-item-3 {
    min-width: unset;
    width: 100%;
  }
}

/* #endregion */

/* #region: Build for world Section */
.built-for-world-section-content {
  gap: 56px;
}

.built-for-world-section-content .title-wrapper {
  width: 80%;
  gap: 12px;
  align-self: center;
}

.built-for-world-section-content .build-for-the-world-img {
  border-radius: 24px;
}

/* #endregion */


/* #region: Office Offline Section */
.office-offline-section-content {
  gap: 56px;
}

.office-offline-section-content .author p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
}

.office-offline-section-content .author-experience {
  gap: 24px;
}

.office-offline-section-content .author-experience p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: justify;
}



.office-offline-section-content .author-experience .highlighted-text {
  border-width: 0 4px 0 4px;
  padding: 0 24px 0 24px;
  border-style: solid;
  border-color: #4B3BA7;
  color: #4B3BA7;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: justify;
}

.office-went-offline-img {
  min-width: 280px;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .image-set-2 {
    flex-direction: row !important;
  }
}

@media (max-width: 768px) {
  .office-gossips-content-wrapper {
    flex-direction: column-reverse;
    gap: 0px !important;
  }

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

  .author>div {
    align-items: flex-start;
  }

  .author img {
    width: 95px;
  }

  .office-offline-section-content .author-experience {
    gap: 8px;
  }


  .office-went-offline-img {
    min-width: unset;
    width: 48%;
  }

  .office-offline-section-content .author-experience p,
  .office-offline-section-content .author-experience .highlighted-text {
    font-size: 16px;
    /* line-height: 2px; */
  }
}

/* #endregion */


/* #region: Charting Course Section */

.charting-course-section-content {
  gap: 56px;
}

.charting-course-section-content .quote {
  background-image: url("https://tezoofficial.blob.core.windows.net/express-app/images/2025/june/charting-course-bg.png");
  width: 100%;
  max-width: 1200px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px;
}

.charting-course-section-content .quote .quotes-imgs {
  position: absolute;
  bottom: -28px;
  right: 19px;
  height: 37%;
}

.charting-course-section-content .quote .text-container {
  gap: 30px;
}

.charting-course-section-content .quote .text-container p {
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.5px;
  text-align: justify;
  color: var(--tezo-white);
}

.charting-course-section-content .quote .text-container .font-highlight {
  font-family: Gilroy-SemiBold;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.5px;
}

.charting-course-section-content .quote .text-container .font-semihighlight {
  font-family: Gilroy-ExtraBold;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
  .charting-course-section-content .quote .quotes-imgs {
    bottom: -13px;
    right: 20px;
    width: 20%;
  }

  .quote-img {
    width: 50% !important;
  }
}

@media (max-width: 768px) {
  .charting-course-author-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .charting-course-section-content .quote {
    padding: 32px;
  }

  .charting-course-section-content .quote .text-container p,
  .charting-course-section-content .quote .text-container .font-semihighlight {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 540px) {
  .charting-course-section-content .quote {
    padding: 24px;
  }

  .charting-course-section-content .quote .text-container p,
  .charting-course-section-content .quote .text-container .font-semihighlight {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .author-img {
    width: 72px;
  }

  .charting-course-author-wrapper {
    gap: 8px !important;
  }

  .charting-course-section-content .quote .text-container {
    gap: 16px !important;
  }

  .charting-course-section-content {
    gap: 24px;
  }

}

/* #endregion */

/* #region: next-byte */
.next-byte-content {
  padding: 56px 56px 56px 156px;
  border: 2px solid var(--tezo-red);
  max-width: 1200px;
  background: #E8DDCC;
}

.next-byte-highlight .title-wrapper {
  width: 60%;
}

@media (max-width: 768px) {

  .next-byte-highlight .title-wrapper {
    width: 100%;
  }
}

.next-byte-content-wrapper {
  padding: 0 60px;
}

.next-byte-content-header {
  font-family: Gilroy-Bold;
  font-weight: 400;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 3%;
  color: #4B3BA7;
  margin-bottom: 2rem;
}

.next-byte-text {
  font-family: Gilroy-Regular;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: .5px;
  text-align: justify;
}

.next-byte-text-highlight {
  color: var(--tezo-red);
  font-weight: bold;
}

.next-byte-image-wrapper {
  width: 222px;
  border: 2px solid var(--tezo-red);
  overflow: hidden;
}

.next-byte-image-wrapper:nth-child(1) {
  max-height: 299px;

}

.next-byte-image-wrapper:nth-child(2) {
  max-height: 219px;
}

.next-byte-image-1 {
  width: 700px;
}

.next-byte-image-2 {
  width: 350px;
}


.next-byte-highlight-img {
  bottom: -10px;
  left: -10%;
  z-index: 10;
  width: 25%;
}

@media screen and (max-width: 991px) {
  .next-byte-content {
    padding: 56px 24px;
    max-width: 100%;
  }


  .next-byte-content-header {
    font-size: 32px;
    line-height: 40px;
  }

  .image-wrapper {
    flex-direction: column !important;
  }

  .next-byte-image-container {
    flex-direction: row !important;
    justify-content: end;
  }

  .next-byte-image-wrapper:nth-child(1) {
    max-height: 250px;

  }

  .next-byte-image-wrapper:nth-child(2) {
    max-height: 250px;
  }

  /* .footer .marquee-container {
    bottom: clamp(-450px, -100vh, -450px);
  } */
}

/* 768 */
@media screen and (max-width: 768px) {
  .next-byte-highlight-img {
    left: -20px;
  }

  .next-byte-content-wrapper {
    padding: unset;
  }

  .next-byte-text {
    font-size: 16px;
    line-height: 28px;
  }
}

/* #endregion */

/* #region: game */
.game-section {
  margin-bottom: 60px;
  position: relative;
  /* padding-top: 130px; */
}


.game-section .container-fluid {
  width: 90%;
}

.game-section .game-wrapper {
  margin: 0 auto;
  border-radius: 25px;
}

@media screen and (max-width: 768px) {
  .question-box-img {
    width: clamp(350px, 100%, 550px);
    height: auto;
  }

  .question-box .question-list-wrapper {
    gap: 24px;
  }

  .questions {
    font-size: 14px !important;
    line-height: 24px !important;
  }

  .list-btns-wrapper img {
    scale: 0.8;
  }

  .game-section .container-fluid {
    width: 96% !important;
  }

  .double-btns-wrapper {
    gap: 16px;
  }

  .double-btns-wrapper img {
    width: 45%;
  }
}

@media screen and (max-width: 540px) {
  .question-box-img {
    width: clamp(250px, 100%, 550px);
    height: auto;
  }

  .question-box .question-list-wrapper {
    gap: 16px;
  }

  .questions {
    font-size: 11px !important;
    line-height: 18px !important;
  }

  .list-btns-wrapper img {
    scale: 0.7;
  }

  .game-section .container-fluid {
    width: 100% !important;
  }

}

/* #endregion */


/* #region: gg section */
.gg-section-content {
  border: 4px solid #4B3BA7;
  border-radius: 32px;
  padding: 124px 53px 100px 70px;
  background-color: #E8DDCC;
}

.gg-text {
  font-family: Gilroy-Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .5px;
  width: 43%;
  margin-left: 32px;
}

.gg-text p:first-child {
  margin-bottom: 32px;
}

.gg-checklist {
  background: var(--tezo-blue);
  right: 53px;
  top: -56px;
  width: calc(100% - 56px);
  max-width: 410px;
  min-height: calc(100% + 100px);
}

.gg-checklist-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.checklist-text {
  font-family: Gilroy-Regular;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.5px;
}

.gg-checklist-item {
  flex-grow: 1;
}

.gg-section-img {
  position: absolute;
  left: -50px;
  top: -50px;
}
.gg-checklist-responsive{
  display: none !important;
}

@media (max-width: 991px) {
  .gg-section-content {
    padding: 64px 24px;
  }

  .gg-text {
    width: 100%;
  }

  .gg-section-img {
    width: 35%;
  }

  .gg-checklist {
    left: 48px;
    top: calc(100% - 56px);
    width: calc(100% - 96px);
    max-width: unset;
    min-height: unset;
  }
  .gg-checklist-responsive{
    display: block !important;
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .gg-text {
    font-size: 16px;
    line-height: 24px;
  }

  .gg-checklist-item {
    padding: 12px 8px 12px 16px;
  }

  .checklist-text {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 540px) {
  .gg-section-img {
    left: -20px !important;
  }

  .gg-section-img {
    width: 45% !important;
  }

  .gg-section-content {
    padding: 50px 16px !important;
  }
  .gg-section{
    padding-right: 24px !important;
  }
  .gg-text{
    margin-left: 0 !important;
  }
}
@media (max-width: 425px) {
  .gg-checklist{
    left: 16px;
    top: calc(100% - 56px);
    width: calc(100% - 32px);
  }
}

.gg-section-img{
  top: -20px !important;
}
/* #endregion */

/* #region: Extra Text */
.footer .marquee-container {
  position: relative;
}

.footer .marquee-container .extra-img {
  position: absolute;
  right: 1%;
  z-index: 100;
}

.footer .marquee-container .extra-img .tooltip-text {
  position: absolute;
  visibility: hidden;
  width: 80vw;
  left: -80vw;
  background-color: var(--tezo-lilac);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0 5px;
  z-index: 100;
  opacity: 0;
  word-wrap: break-word;
  /* Ensures long words break to the next line */
  word-break: break-word;
  /* Force breaking words when necessary */
  white-space: normal;
  /* Allows the text to wrap */
  box-sizing: border-box;
  height: auto;
}


.footer .marquee-container .extra-img:hover .tooltip-text {
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

/* #endregion */

.question-list-wrapper .questions {
  font-family: Press Start 2P;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.dropdown-menu {
  transform: translate3d(-60px, -500px, -100px) !important;
}

.bottom-base {
  z-index: 0 !important;
}