@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --theme-color: #3d1a5c;
  --font-open: "Open Sans", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,html {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  scrollbar-width: none; /* For Firefox */
}

body::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

a {
  text-decoration: none;
  color: inherit;
}
p {
  margin-bottom: 0;
}
.ui-btn {
  background-color: #e12454;
  border-color: #e12454;
  padding: 10px 30px;
  color: #fff;
}

.ui-btn:hover {
  background-color: #c01e4a;
  border-color: #c01e4a;
  color: #fff;
}

.button {
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all ease 0.3s;
}
.button:active {
  scale: 0.9;
}
.h2 {
  font-family: var(--font-open);
  font-weight: 700;
  font-size: 36px;
  color: #333;
  padding-bottom: 10px;
  line-height: 1em;
}
.h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
}
.p-small {
  font-family: var(--font-open);
  font-size: 14px;
  color: #666;
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.p-small-special {
  font-family: var(--font-open);
  font-size: 14px;
  color: #fff;
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.p-large {
  font-family: "mouse-300", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0px;
  width: 100%;
  color: #6a6a6a;
  text-align: left;
}

.p-special {
}

.w-80 {
  width: 80%;
  margin: auto;
}

/* headding section common css  */

.common-headding-container {
  margin: auto;
  margin-bottom: 2rem;
  background: url("../images/about-headding-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
}
.common-headding-wrapper-overley {
  height: 100%;
  width: 100%;
  padding: 2rem 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.pointer-image {
  position: absolute;
  display: inline-block;
  justify-content: center;
  bottom: 0;
  left: calc(50% - 25px);
}
.pointer-image img {
  width: 50px;
  /* height: 100px; */
}

/* scroll to top button styling  */

.scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  /* background-color: #3D1A5C; */
  color: white;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 20px;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover {
  background-color: #5a2e7a;
}
.scorll-to-top-image {
  width: 100%;
  object-fit: cover;
}



/* common marquee style  */

.marquee {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #f8f9fa;
  padding: 10px 0;
  position: fixed; /* Changed to fixed */
  bottom: 0; /* Positioning at the bottom of the screen */
  left: 0; /* Aligning to the left */
  z-index: 1000; /* Ensuring it stays on top */
}
.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 29s linear infinite;
  margin: 0;
}
@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}


@media screen and (max-width: 768px) {
  .h2{
    font-size: 26px;
  }
  .h4{
    font-size: 18px;
  }
  .p-small-special{
    font-size: 12px;
  }
}