@keyframes scaling {
  0% {
    transform: scale(0.7);
    border-color: #5f449b;
  }
  100% {
    transform: scale(2);
    border-color: rgba(95, 68, 155, 0);
  }
}
@keyframes bganimate {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 100vw 100%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes menu {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.otherPages {
  position: relative;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.otherPages .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../../images/other/banner.jpg);
  filter: grayscale(1) brightness(0.1) blur(0px);
  background-size: contain;
  animation: bganimate 80s linear infinite reverse;
}
.otherPages .container {
  position: relative;
  z-index: 1;
}
.otherPages .otherPagesSec {
  padding: 40px 0;
  text-align: center;
  max-width: 530px;
  margin: 0 auto;
}
.otherPages .otherPagesSec .logo {
  margin-bottom: 20px;
}
.otherPages .otherPagesSec .logo img {
  max-width: 95px;
  display: block;
  margin: 0 auto;
}
.otherPages .otherPagesSec h1 {
  color: var(--white);
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 22px;
}
.otherPages .otherPagesSec p {
  font-size: 16px;
  color: #bababa;
  line-height: 24px;
  font-weight: 500;
}
.otherPages .otherPagesSec ul {
  margin: 15px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 675px) {
  .otherPages .otherPagesSec ul {
    display: block;
  }
}
.otherPages .otherPagesSec ul li {
  display: inline-block;
}
@media only screen and (max-width: 675px) {
  .otherPages .otherPagesSec ul li {
    margin: 5px;
  }
}
.otherPages .otherPagesSec ul li a {
  display: block;
  color: var(--white);
}

.shadeAnim {
  background-color: var(--white);
}

.privacyPolicy-pag {
  padding: 30px 0;
}
.privacyPolicy-pag .container {
  max-width: 1000px;
}
.privacyPolicy-pag .content h1, .privacyPolicy-pag .content h2, .privacyPolicy-pag .content h3, .privacyPolicy-pag .content h4, .privacyPolicy-pag .content h5, .privacyPolicy-pag .content h6 {
  color: var(--blue);
  margin: 30px 0 10px;
}
.privacyPolicy-pag .content h2 {
  font-size: 22px;
  line-height: 1.4;
}
@media only screen and (max-width: 675px) {
  .privacyPolicy-pag .content h2 {
    font-size: 20px;
  }
}
.privacyPolicy-pag .content p, .privacyPolicy-pag .content ul {
  margin-bottom: 30px;
}
.privacyPolicy-pag .content p, .privacyPolicy-pag .content li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  text-align: justify;
}
@media only screen and (max-width: 675px) {
  .privacyPolicy-pag .content p, .privacyPolicy-pag .content li {
    font-size: 14px;
    line-height: 20px;
  }
}
.privacyPolicy-pag .content p a, .privacyPolicy-pag .content li a {
  color: var(--purple);
  text-decoration: underline;
}
.privacyPolicy-pag .content p b, .privacyPolicy-pag .content li b {
  font-weight: 600;
}
.privacyPolicy-pag .content ul {
  padding-left: 50px;
}
@media only screen and (max-width: 675px) {
  .privacyPolicy-pag .content ul {
    padding-left: 20px;
  }
}
.privacyPolicy-pag .content ul li {
  display: block;
  position: relative;
  margin: 12px 0;
}
@media only screen and (max-width: 675px) {
  .privacyPolicy-pag .content ul li {
    list-style: disc;
    display: list-item;
  }
}
@media only screen and (max-width: 675px) {
  .privacyPolicy-pag .content ul li::marker {
    color: var(--blue);
  }
}
.privacyPolicy-pag .content ul li::before {
  content: "";
  position: absolute;
  left: -25px;
  width: 10px;
  height: 10px;
  top: 5px;
  background: var(--purple);
  border-radius: 20px;
}
@media only screen and (max-width: 675px) {
  .privacyPolicy-pag .content ul li::before {
    display: none;
  }
}/*# sourceMappingURL=other.css.map */