@import url("https://fonts.googleapis.com/css2?family=Prociono&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --themesbg:#dc3545;
  --blueBg:#3f53d9;
  --gBg:linear-gradient(-90deg, #fee6c2, #e2e1f2);
  --tbg:#916faf;
  --dbg:#171717;
  --wbg:#fff;
  --hFonts:'Prociono", serif';
  --bc:#003b6e;
  --greenBg:#007075;
  --bg1:#a41480;
  --text:#050038;
  --lightBlueBgColor:#e9ecff;
}

body {
  font-family: "Roboto", serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.header {
  background: var(--gBg);
}

.member_home {
  padding: 2em 0;
}
.member_home .mem_list {
  text-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}
.member_home .mem_list h6 {
  margin: 10px 0 0 0;
  padding: 0;
  font-weight: 600;
}
.member_home .mem_list img {
  height: 250px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.titleStyle span {
  color: var(--themesbg);
  text-transform: uppercase;
}
.titleStyle h1 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 3.2em;
}
.titleStyle h3 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 2.8em;
}

.darkTitle {
  max-width: 50%;
  margin: auto;
  text-align: center;
}
.darkTitle span {
  color: var(--themesbg);
}
.darkTitle h3 {
  font-family: var(--hFonts);
  font-weight: 700;
  color: #fff;
  font-size: 2.8em;
}
.darkTitle p {
  color: #fff;
}

.homeAbout {
  padding: 3em 0;
  position: relative;
}
.homeAbout p {
  text-align: justify;
}
.homeAbout img {
  border-radius: 0.4em;
  z-index: 3;
  max-height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.homeAbout .col-md-6 {
  position: relative;
}
.homeAbout .pageImgbox {
  max-width: 550px;
  height: auto;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

.shape {
  background: rgba(0, 0, 0, 0.253);
  -webkit-mask-image: url(../images/slide-shape-3.svg);
          mask-image: url(../images/slide-shape-3.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 20px;
  right: 15px;
  width: 135px;
  height: 61px;
  opacity: 0.5;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
.shape img {
  width: 100%;
  height: auto;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.shapesp {
  width: 4em;
  height: 4em;
  border: 1em solid rgba(255, 255, 255, 0.431);
  border-top: 1em solid rgba(25, 0, 255, 0.671);
  border-left: 1em solid rgba(8, 0, 77, 0.561);
  border-bottom: 1em solid rgba(133, 0, 126, 0.541);
  border-radius: 90%;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: -1;
  transition-property: transform;
  animation-name: rotate;
  animation-duration: 17s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btnBorder {
  border-color: var(--themesbg) !important;
  color: var(--themesbg) !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
}
.btnBorder::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnBorder:hover {
  background-color: var(--themesbg) !important;
  color: #fff !important;
}
.btnBorder:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.btnDark {
  border-color: var(--themesbg) !important;
  color: var(--themesbg) !important;
  background-color: var(--themesbg) !important;
  padding: 0.7em 3em;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff !important;
}
.btnDark::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  opacity: 0;
  display: inline-block;
  transition: transform 250ms;
  position: absolute;
}
.btnDark:hover {
  background: var(--wbg) !important;
  color: var(--themesbg) !important;
}
.btnDark:hover::after {
  opacity: 1;
  transform: translateX(8px);
}

.form-control {
  padding: 0.7rem 0.75rem;
}

.sBox {
  background: var(--tbg);
  padding: 3em 0;
  position: relative;
}
.sBox .rBox {
  position: relative;
  overflow: hidden;
  display: block;
}
.sBox .shape {
  background: rgba(255, 255, 255, 0.226);
}

.circleBx {
  animation-name: myanimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  position: absolute;
  left: 10px;
  bottom: 60px;
}

@keyframes myanimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.home_about {
  padding: 4em 0;
  background: #000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  color: #fff;
}
.home_about::after {
  position: absolute;
  background: rgba(0, 31, 40, 0.9);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  z-index: -1;
}
.home_about h1 {
  text-transform: uppercase !important;
}
.home_about h1 span {
  color: #69fe7c;
}
.home_about .border_about {
  border: #fff 0.2em solid;
  border-radius: 1em;
}
.home_about h3 {
  color: #fff;
}
.home_about p {
  color: white;
}

.footerBx {
  background: #09212b;
  padding: 3em 0;
  color: var(--wbg);
}
.footerBx h4 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 1.8em;
  color: var(--wbg);
}
.footerBx p {
  font-weight: 300;
}
.footerBx ul {
  margin: 0;
  padding: 0;
}
.footerBx ul li {
  display: block;
  color: var(--wbg);
  font-weight: 300;
  padding: 0.2em 0;
}
.footerBx ul li:hover a {
  color: rgba(255, 255, 255, 0.699);
  display: block;
}
.footerBx ul li a {
  color: var(--wbg);
  text-decoration: none;
  display: inline-block;
}

.borderBott::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.294);
  transition: width 0.3s;
}
.borderBott:hover::after {
  width: 100%;
}

.footerB {
  padding: 0.5em 0;
}
.footerB a {
  color: var(--dbg);
  text-decoration: none;
  font-weight: 600;
}
.footerB a:hover {
  color: var(--themesbg);
}

.go-top {
  right: 1em;
  bottom: 2em;
  color: #fff;
  text-decoration: none;
  background: var(--themesbg);
  border-radius: 5px;
  border-radius: 50px;
  position: fixed;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

@media (min-width: 768px) {
  .breaking-caret:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-left: 10px solid #dc3545;
    border-bottom: 16px solid transparent;
    position: absolute;
    right: -10px;
    top: 0;
  }
}
@media (max-width: 768px) {
  .headerStyles .headTop {
    font-size: 0.7em;
  }
  .btnstl span {
    padding-left: 1em !important;
    padding-right: 1em !important;
    font-size: 0.8em;
  }
}
.eventBx {
  position: relative;
  z-index: 0;
  background: var(--greenBg);
  padding: 1em 0 1.5em 0;
}
.eventBx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}
.eventBx .event_list {
  color: #fff;
}
.eventBx .event_list h5 {
  margin: 0;
  font-weight: bold;
  margin-bottom: 0.3em;
}
.eventBx .event_list p {
  margin: 0;
  line-height: 18px;
}
.eventBx .date_style {
  background: #c1ad26;
  text-align: center;
  padding: 0.8em 0.5em;
  width: 80px;
  color: #fff;
}
.eventBx .date_style .date_s {
  font-size: 2em;
  font-weight: bold;
  line-height: 32px;
}

.club_activities h2 {
  text-transform: uppercase;
}
.club_activities .club_list {
  text-align: center;
}
.club_activities .club_list img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border: #fff 4px solid;
}
.club_activities .club_list h5 {
  margin-top: 0.5em;
}

.pageBanner {
  position: relative;
  padding: 0.2em 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  background-color: #292929;
}
.pageBanner h1 {
  color: #fff;
  font-family: var(--hFonts);
  font-weight: 700;
  position: relative;
  padding-left: 25px;
  margin: 0;
  text-align: center;
}

.contactInn {
  text-align: center !important;
  border: var(--lightBlueBgColor) 1px solid;
  padding: 1.5em;
  border-radius: 0.5em;
}
.contactInn h4 {
  font-family: var(--hFonts);
  font-weight: 700;
  font-size: 2em;
}
.contactInn i {
  font-size: 4em;
}
.contactInn p {
  text-align: center !important;
}
.contactInn .cnd {
  display: none !important;
}
.contactInn a {
  color: var(--dbg);
}

.gallerImg {
  cursor: pointer;
}
.gallerImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 10/7;
}

.required {
  font-size: 12px;
  color: #dc3545;
}

.rating {
  float: left;
}

.rating > input {
  display: none;
}

.rating > label:before {
  margin: 5px;
  display: inline-block;
}

.rating > label {
  color: #ddd;
  margin: 0 1px;
}

/***** CSS Magic to Highlight Stars on Hover *****/
.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ff9b00;
} /* hover previous stars in list */
.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}

.textm_rating i {
  color: #ff9b00;
}

label.cabinet {
  display: block;
  cursor: pointer;
  max-width: 150px;
}

label.cabinet input.file {
  position: relative;
  height: 100%;
  width: auto;
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  margin-top: -30px;
}

#upload-demo {
  width: 90px;
  height: 90px;
}

.gambar {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

.textrs h2 {
  font-size: 3rem;
  font-family: arial;
  font-weight: 900;
  color: transparent;
  overflow: hidden;
  background: linear-gradient(45deg, black 30%, transparent 30%, transparent 70%, black 70%), linear-gradient(-45deg, black 30%, transparent 30%, transparent 70%, black 70%), linear-gradient(90deg, crimson 30%, transparent 30%, transparent 70%, crimson 70%) red;
  background-size: 20px 20px, 20px 20px, 1px 1px;
  background-position: 0 0, 0 0, 0 0;
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px white;
  filter: drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 1px black) drop-shadow(0 0 2px crimson);
  animation: bg-shift 1s ease-in-out infinite alternate-reverse, swing 2s ease-in-out infinite;
}
.textrs h2::before {
  content: "Editorial Board";
  position: absolute;
  background: linear-gradient(transparent 30%, white, transparent 70%);
  -webkit-background-clip: text;
  animation: bg-shift2 2s ease-in-out infinite alternate-reverse;
  -webkit-text-stroke: 2px red;
}
@keyframes bg-shift {
  from {
    background-position: 0 50px;
  }
}
@keyframes bg-shift2 {
  0% {
    background-position: 0 50px;
  }
  50% {
    background-position: 0 -50px;
  }
  100% {
    background-position: 0 50px;
  }
}
@keyframes swing {
  0% {
    transform-origin: top;
    transform: perspective(550px) rotatex(55deg);
  }
  50% {
    transform: perspective(550px) rotatex(-55deg);
  }
  100% {
    transform-origin: top;
    transform: perspective(550px) rotatex(55deg);
  }
}

.headerStyles .dropdown-item:hover {
  color: var(--tbg);
  background: rgba(0, 59, 110, 0.1);
}

.btnstl a {
  display: inline-block;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.09);
  font-style: italic;
}

.btnstl span {
  display: block;
  padding: 5px 2em;
  border: #585858 1px solid;
}

.btnstl a::before,
.btnstl a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

.btnstl span::before,
.btnstl span::after {
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

.btnstl a:hover::before,
.btnstl a:hover::after {
  width: 100%;
}

.btnstl a:hover span::before,
.btnstl a:hover span::after {
  height: 100%;
}

/*----- button 6 -----*/
.btn-6::before {
  left: 50%;
  top: 0;
  transition-duration: 0.4s;
}

.btn-6::after {
  left: 50%;
  bottom: 0;
  transition-duration: 0.4s;
}

.btn-6 span::before {
  left: 0;
  top: 50%;
  transition-duration: 0.4s;
}

.btn-6 span::after {
  right: 0;
  top: 50%;
  transition-duration: 0.4s;
}

.btn-6:hover::before,
.btn-6:hover::after {
  left: 0;
}

.btn-6:hover span::before,
.btn-6:hover span::after {
  top: 0;
}

.page_photo {
  position: relative;
  width: 100%;
  padding-bottom: 76.25%;
  overflow: hidden;
}
.page_photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.affiliated_Clubs .club_header {
  margin: auto;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  overflow: hidden;
  position: relative;
}
.affiliated_Clubs .club_header img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.affiliated_Clubs .club_header iframe {
  width: 100%;
  height: 212px;
}
.affiliated_Clubs .club_header::after {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.288);
  content: "";
  z-index: 9;
  width: 100%;
  height: 100%;
}
.affiliated_Clubs ul {
  margin: 0;
  padding: 0;
}
.affiliated_Clubs ul li {
  display: flex;
  padding: 2px 0;
  color: #505a6e;
  font-size: 14px;
  gap: 8px;
}
.affiliated_Clubs ul li i {
  color: #f00;
}
.affiliated_Clubs ul li a {
  color: #09212b;
}
.affiliated_Clubs ul li a:hover {
  color: #f00;
}

.header.header-1.navbar-fixed {
  z-index: 999;
  top: 0;
}

.footer-1 {
  background-size: cover !important;
  position: relative;
  z-index: 1;
}
.footer-1::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about_img_bx {
  position: relative;
  width: 200px;
  height: 200px;
}
.about_img_bx::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border: 2px dashed #FDA31B;
  border-radius: 50%;
  animation: rotateBorder 30s linear infinite;
  z-index: 0;
}
.about_img_bx .img-2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseBorder {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}
.img-box1 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.img-box1 .vs-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: borderColorChange 3s infinite;
}

.vs-circle {
  width: var(--circle-size, 315px);
  height: var(--circle-size, 315px);
  border: var(--circle-border-size, 50px) solid var(--circle-border-color, #ffd600);
  border-radius: var(--circle-radius, 50%);
  animation: borderColorChange 3s infinite;
}

.mega-hover img {
  transition: all 2s ease;
  transform: scale(1.001);
}

.img-box1 [class*=img-] img {
  width: 100%;
}

.mega-hover:before {
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mega-hover:after, .mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: rotate(5deg);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.mega-hover:hover img {
  transform: scale(1.05);
}

.mega-hover {
  position: relative;
  overflow: hidden;
}

.img-box1 .img-1 {
  border-radius: var(--radius-outer, 119px) var(--radius-inner, 50px) 0 var(--radius-inner, 50px);
}

.img-box1 .img-2 {
  border-radius: var(--radius-inner, 50px) var(--radius-outer, 119px) var(--radius-inner, 50px) 0;
}

.img-box1 .img-3 {
  border-radius: var(--radius-inner, 50px) 0 var(--radius-inner, 50px) var(--radius-outer, 119px);
}

.img-box1 .img-4 {
  border-radius: 0 var(--radius-inner, 50px) var(--radius-outer, 119px) var(--radius-inner, 50px);
}

@media (max-width: 767px) {
  .vs-circle {
    --circle-size: 200px;
    --circle-border-size: 30px;
  }
}
@media (max-width: 767px) {
  .img-box1 {
    gap: 15px;
    --radius-outer: 80px;
    --radius-inner: 30px;
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1);
    transition: transform 20000ms linear 0s;
  }
  100% {
    transform: scale(1.4);
    transition: transform 20000ms linear 0s;
  }
}
/* Carousel Wrapper */
.kb-carousel {
  overflow: hidden;
  max-height: 650px;
}

/* Carousel Items */
.kb-carousel .carousel-item {
  transition: transform 0.6s ease-in-out 0s, opacity ease-in-out 0.6s;
}

.kb-carousel .carousel-item.active {
  transition: transform 0.6s ease-in-out 0s, opacity ease-in-out 0.6s;
}

.kb-carousel > .carousel-inner > .carousel-item > img,
.kb-carousel > .carousel-inner > .carousel-item > a > img {
  opacity: 0.8;
  animation: kenburns 20000ms linear 0s infinite alternate;
}

.kb-carousel .carousel-item-next.carousel-item-start .carousel-caption,
.kb-carousel .carousel-item-prev.carousel-item-end .carousel-caption {
  z-index: 0;
  opacity: 0;
}

/* Carousel Captions */
.kb-caption {
  right: 7%;
  left: 7%;
  bottom: 25%;
  padding: 0;
  width: 80%;
}

.kb-caption-left {
  margin-right: auto;
}

.kb-caption-right {
  margin-left: auto;
}

.kb-caption-center {
  margin: auto;
}

.kb-caption h1,
.kb-caption h3 {
  padding: 0.5rem 0;
  margin-bottom: 0;
}

.kb-caption h1 {
  animation-delay: 1s;
  color: #bf392b;
  background: #fff;
}

.kb-caption h3 {
  animation-delay: 1.5s;
  color: #fff;
  font-weight: bold;
}

@media (min-width: 768px) {
  .kb-caption {
    bottom: 37%;
  }
  .kb-caption h3 {
    font-size: 4em;
  }
}
@media (min-width: 1200px) {
  .kb-caption {
    bottom: 45%;
  }
}
/* Controls */
.kb-control-prev,
.kb-control-next {
  width: 3.5rem;
  height: 3.5rem;
  margin: auto 0;
  opacity: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}

.kb-carousel:hover .kb-control-prev,
.kb-carousel:hover .kb-control-next {
  opacity: 1;
}

.kb-control-prev {
  left: 1%;
}

.kb-control-next {
  right: 1%;
}

.kb-control-prev:hover,
.kb-control-prev:focus,
.kb-control-next:hover,
.kb-control-next:focus {
  color: #fff;
  background: rgb(0, 0, 0);
}

/* Support for dark mode */
[data-bs-theme=dark] .carousel .carousel-control-next-icon,
[data-bs-theme=dark] .carousel .carousel-control-prev-icon {
  filter: none;
}

/* Carousel Captions end */
.colorful-circle {
  width: 100px;
  height: 100px;
  border: 6px solid #3498db;
  border-radius: 50%;
  animation: borderColorChange 3s infinite;
  position: absolute;
  bottom: 50%;
  left: -150px;
}

@keyframes borderColorChange {
  0% {
    border-color: #3498db;
  }
  33% {
    border-color: #e67e22;
  }
  66% {
    border-color: #9b59b6;
  }
  100% {
    border-color: #3498db;
  }
}
.pulse_style {
  width: 100px;
  height: 100px;
  background-color: #e74c3c;
  border-radius: 50%;
  animation: pulseAnim 2s infinite;
  bottom: 10%;
  left: -150px;
  position: absolute;
}

@keyframes pulseAnim {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.about {
  position: relative;
}

.circle_style {
  width: 20px;
  height: 20px;
  border: 8px solid #acacac;
  border-top: 8px solid transparent; /* Creates a spinner effect */
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.glow-circle {
  width: 50px;
  height: 50px;
  background-color: rgba(108, 92, 231, 0.1764705882);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(108, 92, 231, 0.7);
  animation: glowPulse 2s infinite;
  right: 1%;
  position: absolute;
  top: 5%;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(108, 92, 231, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
  }
}/*# sourceMappingURL=styles_new.css.map */