@font-face {
  font-family: "anto-regular";
  src: url("../fonts/Anton/Anton-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "lato-regular";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "lato-bold";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
}

/* html,
body {
  overflow-x: hidden;
} */

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}

.marquee span {
  display: inline-block;
  font-family: "anto-regular", sans-serif;
  /* font-size: 40px; */
  color: black;
  padding: 0 12px;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  /* width: 50px;
  height: 50px; */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.background {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: #000;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background-image: linear-gradient(to right, #ff8103, #ff4002);
  box-shadow: 0 0 120px 40px rgba(94, 75, 238, 0.25);
  animation: rotate 12s linear infinite; /* faster */
}

.circle1 {
  top: 0%;
  left: -10%;
}

.circle2 {
  bottom: -3%;
  right: 0%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.text-stroke {
  -webkit-text-stroke: 2px white;
}

.truncate-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.expanded {
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}
.read-more-btn {
  cursor: pointer;
  font-family: "lato-regular";
  font-size: 0.875rem;
  text-decoration: underline;
  margin-top: 4px;
}

.custom-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: white;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: linear-gradient(to right, #ff8103, #ff4002);
  border: 2px solid black;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 0px 0 2px #ff8103;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .text-stroke {
    -webkit-text-stroke: 1px white;
  }
}

@media (min-width: 536px) and (max-width: 768px) {
  .text-stroke {
    -webkit-text-stroke: 2px white;
  }
}

.realResultSwiper .custom-pagination .swiper-pagination-bullet,
.theyStartedSwiper .custom-pagination .swiper-pagination-bullet {
  background: rgba(217, 217, 217, 1);
}

.custom-pagination {
  height: 20px;
}

.realResultSwiper .custom-pagination .swiper-pagination-bullet-active,
.theyStartedSwiper .custom-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(to right, #ff8103, #ff4002);
  border: unset;
}
@media (max-width: 536px) {
  .text-stroke {
    -webkit-text-stroke: 1px white;
  }
}

.sticky-section {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.sticky-header-column {
  background-color: #dbdbdb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  padding-left: 96px;
  padding-right: 96px;
  display: flex;
  position: sticky;
  top: 20px;
}

.sticky-info-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.guideline-wrap-info {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}
.guideline-wrap-info.left-align {
  text-align: left;
  align-items: flex-start;
  height: 120vh;
}

@media screen and (max-width: 991px) {
  .sticky-header-column {
    align-items: center;
    width: 100%;
    height: 60vw;
    padding-left: 35px;
    padding-right: 35px;
    position: static;
  }
}

@media screen and (max-width: 991px) {
  .sticky-section {
    flex-direction: column;
    min-height: auto;
  }
}

@media screen and (max-width: 991px) {
  .sticky-info-column {
    align-items: stretch;
    width: 100%;
    height: auto;
    padding: 10vw 15vw;
  }
}

@media screen and (max-width: 991px) {
  .guideline-wrap-info {
    height: auto;
    padding-top: 7vw;
    padding-bottom: 7vw;
  }
}

@media screen and (max-width: 991px) {
  .guideline-wrap-info.left-align {
    height: auto;
  }
}
