/***********************Colors**********************/
:root {
  --cs-primary: #3c04b9;
  --cs-secondary: #4e05f0;
  --cs-tertiary: rgb(20, 3, 104);
  --cs-background: #efefef;
  --cs-background1: #5b8cf62e;
  --cs-background2: rgb(101, 101, 101);
  --cs-shadow: rgba(0, 0, 0, 0.6);
  --cs-background-text: white;
  --cs-foreground-text: black;
  --cs-border: solid rgba(0, 0, 0, 0.084) 1px;
  --css-navbar: #ffffff;
  --cs-blurredBg: rgba(255, 255, 255, 0.5);

  --cs-primary-rgb: 126, 9, 216;

  --cs-heading: black;
  --cs-heading1: #2a0382;
  --cs-heading2: #290382c3;
  --cs-heading2Alternate: rgba(148, 148, 172, 0.873);
  --cs-heading3: orange;
}
/***********************Effects**********************/
::selection {
  background: none !important;
  color: var(--cs-primary) !important;
}

.dynamicBackdropHue {
  backdrop-filter: hue-rotate(0deg);
}
.coloredBackdropHue {
  backdrop-filter: hue-rotate(0deg);
}
html,
body {
  scroll-behavior: smooth !important;
  width: 100% !important;
  background-color: var(--cs-background);
  overflow-x: hidden !important;
}
.shadow-sm {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px !important;
}
.shadow-subtel {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.heading1 {
  color: var(--cs-heading1);
}

.heading2 {
  color: var(--cs-heading2);
}

.heading3 {
  color: var(--cs-heading3);
}
.primaryText {
  color: var(--cs-primary);
}

.primaryButton {
  background-color: var(--cs-primary);
  color: var(--cs-background-text);
}

.primaryButton:hover {
  background-color: var(--cs-secondary);
  color: var(--cs-background-text);
}

.secondaryButton {
  background-color: var(--cs-secondary);
  color: var(--cs-background-text);
}

.secondaryButton:hover {
  background-color: var(--cs-primary);
  color: var(--cs-background-text);
}

.btnNoOutline {
  outline: none;
}

.dotsBackground {
  background: url(../images/dots.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.blobBackground {
  background: url(../images/dots.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.horizontalWaveBackground {
  background: url(../images/horizontalwave.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.animatedBlobBackground {
  background: url(../images/animatedBlob.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .horizontalWaveBackgroundOverlay {
  background-color: #ffffff4b;
} */

.backgroundbluroverlay {
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hoverScaleEffect {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.hoverScaleEffect:hover {
  transform: scale(1.02);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/***********************Preloader**********************/
.preloader {
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 3px;
  border-top-color: var(--cs-primary);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #ffffff;
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.preloader .preloader-circle2 {
  border-top-color: #0078ff;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.preloader .preloader-img img {
  max-width: 55px;
}

.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}
/***********************Popup notice**********************/
.popupNotice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000090;
  overflow: hidden;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.popupNoticeCloseButton {
  position: fixed;
  top: 1rem;
  right: 3%;
  width: 5rem;
  height: 1rem;
  padding: 1rem;
  z-index: 9999;
}

.popupNoticeImage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 35rem !important;
  width: 60%;
  border-radius: 10px;
}

.popupNoticeText {
  background-color: white;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 35rem !important;
  width: 40%;
}

@media (max-width: 860px) {
  .popupNoticeImage {
    width: 95%;
  }

  .popupNoticeText {
    width: 99%;
  }
}

/***********************homepage-swiper Swiper**********************/
.homepage-swiper .swiper {
  width: 100%;
  height: 100%;
  background: #000;
}

.homepage-swiper .swiper-slide {
  font-size: 18px;
  color: var(--cs-background-text);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 23rem 60px;
  height: 100%;
  backdrop-filter: brightness(60%);
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.homepage-swiper .swiper-slide .title {
  font-size: 2.5rem;
  font-weight: 500;
}

.homepage-swiper .swiper-slide .text {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  max-width: 35rem;
  line-height: 1.3;
}

/***********************HomePage**********************/
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--cs-primary);
  color: var(--cs-background-text);
}
.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.dropdown-menu .dropdown-submenu-right {
  left: 100%;
  right: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

#navBarLinks {
  display: flex;
}

@media only screen and (max-width: 575px) {
  .dropdown-menu li {
    position: relative;
  }

  .dropdown-menu .dropdown-submenu {
    display: none;
    position: relative;
    left: 100%;
    top: -7px;
  }

  #websiteNavLogo {
    width: 1.3rem;
    height: 1.5rem;
  }
  #navBarLinks {
    display: none !important;
  }
}

#websiteNavLogo {
  width: 2.1rem;
  height: 2.2rem;
}

#heroDiv {
  height: 10.3rem;
  position: absolute;
  color: var(--cs-background-text) !important;
  background-position: center;
  z-index: 40;
}

.navbarWithGlassMorphism {
  background-color: var(--cs-blurredBg) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.sidebarWithGlassMorphism {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floatingNavBar {
  position: absolute;
  top: 8rem;
  box-shadow: 0 1px 10px 0px var(--cs-shadow);
  width: 80%;
  z-index: 50;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.floatingNavBar * {
  color: var(--cs-foreground-text);
}

.floatingAnimation {
  animation: float 5s ease-in-out infinite;
}

.floatingAnimation:hover {
  animation-play-state: paused;
}

.dropdown-menu.show {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.325);
}

.dropdown:hover > .dropdown-menu {
  display: block;
}
#navBarLinks .nav-item:hover .nav-link {
  color: var(--cs-heading1);
  transform: translateY(-5%);
}

#navBarLinks .nav-item a {
  -webkit-transition: all 0.1s 0s ease-in-out;
  -moz-transition: all 0.1s 0s ease-in-out;
  -o-transition: all 0.1s 0s ease-in-out;
  transition: all 0.1s 0s ease-in-out;
}

@media (max-width: 575.98px) {
  #nav-item-logo {
    display: none;
  }
  .floatingNavBar {
    top: 9.3rem;
    width: 85%;
  }
}

.nav-bar-scrolled {
  position: fixed;
  width: 100%;
  top: 0rem;
}

/* ScrollBar */
::-webkit-scrollbar {
  width: 0px;
  height: 5px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--cs-secondary);
  border: 0px none #ffffff;
  border-radius: 64px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

::-webkit-scrollbar-thumb:active {
  background: #000000;
}

::-webkit-scrollbar-track {
  background: #66666600;
  border: 31px none #ffffff;
  border-radius: 33px;
}

::-webkit-scrollbar-track:hover {
  background: #666666;
}

::-webkit-scrollbar-track:active {
  background: #333333;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* ScrollBar */

.glowButton {
  padding: 0.3rem 1rem;
  color: var(--cs-background-text) !important;
  background-color: var(--cs-secondary);
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin: 0;
}

.glowButton:hover {
  background-color: var(--cs-primary);
  box-shadow: 0px 5px 20px var(--cs-primary);
  color: var(--cs-background-text) !important;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
  }

  50% {
    box-shadow: 0 15px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }

  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
  }
}

/* --------------------------------------------Offcanvas Section-------------------------------------- */
.offcanvasMenu {
  width: 80% !important;
}

.offcanvasMenu i {
  float: right;
}

.offcanvasMenu li {
  list-style: none;
}

.offcanvasMenu .submenu {
  padding: 0.3rem 0.5rem;
}

.offcanvasMenu .submenu .nav-link {
  background-color: var(--cs-heading1) !important;
}

.offcanvasMenu .nav-link {
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background-color: var(--cs-primary);
  color: var(--cs-background-text) !important;
}
/* --------------------------------------------Homepage Section-------------------------------------- */

.homepage-carousel-container {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  background-color: var(--cs-background);
}

#homepageCarouselImage {
  height: 28rem;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-radius: 25% 5% 20% 25% / 0% 27% 70% 0%;
}

@media (max-width: 575.98px) {
  #homepageCarouselImage {
    height: 20rem;
    border-radius: 10px;
  }

  .homepage-carousel .card {
    height: 25rem !important;
  }
}

.owl-dots {
  display: none;
}

.homepage-carousel-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: large;
  font-weight: 400;
}

.homepage-carousel .card {
  height: 28rem;
  border: none;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.homepageCarouselButton {
  position: absolute;
  z-index: 99;
  top: 16rem;
  background-color: var(--cs-primary);
  border-radius: 50%;
  opacity: 0.3;
}

.homepageCarouselButton:hover {
  opacity: 1;
}

.homepageCarouselButtonleft {
  left: -0.5rem;
}

.homepageCarouselButtonright {
  right: -0.5rem;
}

/* --------------------------------------------News Section-------------------------------------- */
.news-carousel a {
  text-decoration: none;
}
.news-carousel p {
  text-align: justify;
}
.news-carousel a * {
  color: var(--cs-foreground-text);
}

.news-carousel .container-fluid {
  background-color: var(--cs-background);
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.news-carousel .item {
  margin: 0.3rem 0.3rem;
}

.news-carousel-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 15rem;
  object-fit: cover;
}

.dateBox {
  background-color: var(--cs-secondary);
  text-align: center;
  min-width: 3rem;
  padding: 0.5rem;
  color: var(--cs-background-text);
  border-radius: 1rem;
}

/* --------------------------------------------AboutUS Section-------------------------------------- */
.aboutIcon {
  width: 2rem;
  height: 2rem;
}

/* --------------------------------------------News Section-------------------------------------- */
.aboutUsItem {
  border: var(--cs-border);
  border-radius: 10px;
  padding: 1rem;
}

.newsCard {
  margin-top: 5%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-radius: 15px;
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  background-color: white;
}

.newsCard .btn {
  opacity: 0;
  position: absolute;
  background-color: var(--cs-primary);
  color: var(--cs-background-text);
  left: 50%;
  top: 110%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-radius: 10px;
  padding: 0.8rem 1.7rem;
  border: none;
}

.newsCard:hover .btn {
  opacity: 1;
  top: 100%;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.newsCard:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.newsCard h5 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.7rem;
  opacity: 0;
  text-shadow: 1px 1px 2px black;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.newsCard:hover h5 {
  opacity: 1;
  font-size: 3rem;
}

.newsCard .btn:hover {
  color: white;
  border: none;
}

.newsCard img {
  filter: blur(0px);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-radius: 15px;
  height: 18rem;
  object-fit: cover;
}

.newsCard:hover img {
  filter: brightness(10%);
  filter: blur(4px);
}

.testimonial {
  padding: 100px 0;
}

.testimonial .row .tabs {
  all: unset;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}

.testimonial .row .tabs li {
  all: unset;
  display: block;
  position: relative;
}

.testimonial .row .tabs li.active::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-color: var(--cs-primary);
  border-radius: 50%;
}

.testimonial .row .tabs li.active::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--cs-primary);
  border-radius: 50%;
}

.testimonial .row .tabs li:nth-child(1) {
  align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(1)::before {
  left: 64%;
  bottom: -50px;
}

.testimonial .row .tabs li:nth-child(1)::after {
  left: 97%;
  bottom: -81px;
}

.testimonial .row .tabs li:nth-child(1) figure img {
  margin-left: auto;
}

.testimonial .row .tabs li:nth-child(2) {
  align-self: flex-start;
}

.testimonial .row .tabs li:nth-child(2)::before {
  right: -65px;
  top: 50%;
}

.testimonial .row .tabs li:nth-child(2)::after {
  bottom: 101px;
  border-radius: 50%;
  right: -120px;
}

.testimonial .row .tabs li:nth-child(2) figure img {
  margin-right: auto;
  max-width: 300px;
  width: 100%;
  margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3) {
  align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(3)::before {
  right: -10px;
  top: -66%;
}

.testimonial .row .tabs li:nth-child(3)::after {
  top: -130px;
  border-radius: 50%;
  right: -46px;
}

.testimonial .row .tabs li:nth-child(3) figure img {
  margin-left: auto;
  margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3):focus {
  border: 10px solid red;
}

.testimonial .row .tabs li figure {
  position: relative;
}

.testimonial .row .tabs li figure img {
  display: block;
}

.testimonial .row .tabs li figure::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid var(--cs-primary);
  border-radius: 50%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.testimonial .row .tabs li figure:hover::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.testimonial .row .tabs.carousel-indicators li.active figure::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.testimonial .row .carousel > h3 {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial .row .carousel h1 {
  font-size: 40px;
  line-height: 1.225;
  margin-top: 23px;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial .row .carousel .carousel-indicators {
  all: unset;
  padding-top: 43px;
  display: flex;
  list-style: none;
}

.testimonial .row .carousel .carousel-indicators li {
  background: #000;
  background-clip: padding-box;
  height: 2px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
  margin-top: 42px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
  font-size: 18px;
  line-height: 1.72222;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
  color: #000;
  font-weight: 700;
  margin-top: 37px;
  font-size: 20px;
  line-height: 1.45;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .testimonial .row .tabs {
    margin-right: 25px;
  }
}

.animatedContainer {
  background: white;
  cursor: pointer;
  border-radius: 15px;
  position: relative;
  padding: 25px 30px;
  color: var(--cs-foreground-text);
}

.animatedContainer::after {
  content: "";
  background: var(--cs-primary);
  border-radius: 15px;
  opacity: 0.8;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  clip-path: circle(10% at 0% 0%);
  transition: all 0.3s ease-in;
}

.animatedContainer .content {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in;
}

.animatedContainer:hover::after {
  clip-path: circle(100%);
}

.animatedContainer:hover .content {
  color: var(--cs-background-text);
}

.downloadAppSection * {
  color: var(--cs-background-text);
}

.storeicon {
  height: 3rem;
  width: 8.5rem;
  margin-top: 0.8rem;
}

.newsLetter * {
  color: var(--cs-background-text);
}

.newsLetter a,
.newsLetter a:visited,
.newsLetter a:hover {
  color: inherit;
  text-decoration: none;
}

.newsLetter .search-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 60px;
  border-radius: 120px;
  margin: 0 auto;
}

.newsLetter .search-icon,
.newsLetter .go-icon {
  position: absolute;
  top: 0;
  height: 60px;
  width: 86px;
  line-height: 61px;
  text-align: center;
}

.si-rotate {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.go-icon {
  right: 0;
  pointer-events: none;
  font-size: 1.38em;
  will-change: opacity;
  cursor: default;
  opacity: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: opacity 190ms ease-out,
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: opacity 190ms ease-out,
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 190ms ease-out,
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 190ms ease-out,
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.go-in {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transition: opacity 190ms ease-out,
    transform 260ms 20ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: opacity 190ms ease-out,
    transform 260ms 20ms cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 190ms ease-out,
    transform 260ms 20ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 190ms ease-out,
    transform 260ms 20ms cubic-bezier(0.19, 1, 0.22, 1);
}

.search-border {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 60px;
}

.border {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  stroke-miterlimit: 10;
}

.border {
  stroke-dasharray: 740;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99);
  -webkit-transition: stroke-dashoffset 400ms
    cubic-bezier(0.6, 0.04, 0.735, 0.99);
  -moz-transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99);
  -o-transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99);
}

.border-searching .border {
  stroke-dasharray: 740;
  stroke-dashoffset: 459;
  transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1);
  -webkit-transition: stroke-dashoffset 650ms
    cubic-bezier(0.755, 0.15, 0.205, 1);
  -moz-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1);
  -o-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1);
}

#search {
  font-family: "Montserrat Alternates", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 120px;
  border: none;
  background: rgba(255, 255, 255, 0);
  padding: 0 68px 0 68px;
  color: #ffffff;
  font-size: 1.32em;
  font-weight: 400;
  letter-spacing: -0.015em;
  outline: none;
}

#search::-webkit-input-placeholder {
  color: #ffffff;
}

#search::-moz-placeholder {
  color: #ffffff;
}

#search:-ms-input-placeholder {
  color: #ffffff;
}

#search:-moz-placeholder {
  color: #ffffff;
}

#search::-moz-selection {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
}

#search::selection {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
}

.gallery-container {
  color: #35373a;
  min-height: 100vh;
  padding: 30px 50px;
}

.gallery-container h1 {
  text-align: center;
  margin-top: 50px;
  font-family: "Droid Sans", sans-serif;
  font-weight: bold;
}

.gallery-container p.page-description {
  text-align: center;
  margin: 25px auto;
  font-size: 18px;
  color: #999;
}

.tz-gallery {
  padding: 1rem;
}

.tz-gallery .row div {
  padding: 2px;
}

.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  content: "\1F50D";
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}

.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}

.baguetteBox-button {
  background-color: transparent !important;
}

/* ********************Footer******************************** */
.new_footer_area {
  background-color: #f1f1f14b;
  padding-top: 1rem;
}
.new_footer_top {
  padding: 20px 0px 240px;
  position: relative;
  overflow-x: hidden;
}

.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 20px;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 27px 0px;
}

.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: var(--cs-secondary);
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: var(--cs-primary);
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}

.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}

.new_footer_top .f-title {
  margin-bottom: 25px;
  color: #263b5e;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}

.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("../images/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("../images/walkingStudent.gif") no-repeat center center;
  width: 330px;
  height: 90px;
  background-size: 30%;
  position: absolute;
  bottom: 0;
  left: -45%;
  z-index: 20;
  -webkit-animation: myfirst 27s linear 3s infinite;
  animation: myfirst 27s linear 3s infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("../images/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  z-index: 30;
  -webkit-animation: myfirst 20s linear infinite;
  animation: myfirst 20s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_three {
  background: url("../images/transparentBus.gif") no-repeat center center;
  width: 280px;
  height: 120px;
  background-size: 80%;
  bottom: 0;
  left: -20%;
  position: absolute;
  z-index: 10;
  -webkit-animation: schoolBus 35s linear 5s infinite;
  animation: schoolBus 35s linear 5s infinite;
  animation-direction: reverse;
}

.new_footer_top .footer_bg .footer_bg_four {
  background: url("../images/baloongif.gif") no-repeat center center;
  width: 100px;
  height: 100px;
  transform: scale(1);
  background-size: 50%;
  bottom: 0;
  left: 38%;
  position: absolute;
  z-index: 0;
  -webkit-animation: baloon 45s linear infinite;
  animation: baloon 45s linear infinite;
  animation-direction: reverse;
}

@media (max-width: 600px) {
  .new_footer_top .footer_bg .footer_bg_one {
    -webkit-animation: myfirst 17s linear 3s infinite;
    animation: myfirst 17s linear 3s infinite;
  }

  .new_footer_top .footer_bg .footer_bg_two {
    -webkit-animation: myfirst 12s linear infinite;
    animation: myfirst 12s linear infinite;
  }

  .new_footer_top .footer_bg .footer_bg_three {
    display: none;
    -webkit-animation: none;
    animation: none;
  }
}

@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

@-moz-keyframes baloon {
  0% {
    left: 0%;
    bottom: 30%;
  }
  50% {
    bottom: 60%;
  }

  100% {
    bottom: 30%;
    left: 100%;
  }
}

@-webkit-keyframes baloon {
  0% {
    left: 0%;
    bottom: 30%;
  }
  50% {
    bottom: 60%;
  }

  100% {
    bottom: 30%;
    left: 100%;
  }
}

@keyframes baloon {
  0% {
    left: 0%;
    bottom: 30%;
  }
  50% {
    bottom: 60%;
  }

  100% {
    bottom: 30%;
    left: 100%;
  }
}

@-moz-keyframes schoolBus {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes schoolBus {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

@keyframes schoolBus {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* *************************Hierarchy************************************* */
.nodeExample::after {
  content: "";
  background: var(--cs-primary);
  border-radius: 10px;
  opacity: 0.1;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  clip-path: circle(25% at 0% 0%);
  transition: all 0.3s ease-in;
}

.nodeExample * {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in;
  text-decoration: none;
}

.nodeExample:hover::after {
  opacity: 1;
  color: white;
  clip-path: circle(100%);
}

.nodeExample:hover * {
  color: white;
}

.nodeExample:hover .content {
  color: var(--cs-background-text);
}

.collapse-switch {
  display: none !important;
}

.node-name {
  font-size: 1.15rem;
  padding-top: 0.5rem;
  font-weight: bold;
}

.node-designation {
  font-size: 0.9rem;
}

.nodeExample {
  text-decoration: none;
  color: black;
  padding: 0.5rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  width: 19rem;
  font-family: Tahoma;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nodeExample img {
  margin-right: 10px;
  border-radius: 10px;
  width: 6.5rem;
  height: 7rem;
}

/* *************************Hierarchy************************************* */

/* *************************SignIn Modal************************************* */
#signInModal.modal.fade .modal-dialog {
  transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#signInModal .modal-content {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#signInModal .modal-content * a {
  color: var(--cs-secondary);
}

#signInModal.modal.fade.show .modal-dialog {
  transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  animation-timing-function: ease-in;
  opacity: 1;
}

/* *************************Contact Form************************************* */
.contactForm {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.customShadow {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
/* *************************About Us************************************* */

.aboutUsCardSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.aboutUsCardSwiper .swiper-slide img {
  object-fit: cover;
}

.aboutUsImages {
  width: 38rem;
  height: 30rem;
}

/* *************************Committe Staff Timeline************************************* */
.timeline {
  position: relative;
  margin: auto;
  padding: 40px 0;
  width: 80rem;
  box-sizing: border-box;
}

.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 95%;
  background: #c5c5c5;
}

.timeline ul {
  padding: 0;
  margin: 0;
}

.timeline ul li {
  list-style: none;
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

.timeline .content {
  padding-bottom: 20px;
}

.timeline ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  right: -6px;
  background: var(--cs-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--cs-secondary);
}

.timeline ul li:nth-child(even):before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  left: -4px;
  background: var(--cs-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--cs-secondary);
}

.timeline ul li h3 {
  padding: 0;
  margin: 0;
  color: var(--cs-heading1);
  font-weight: 600;
}

.timeline ul li p {
  margin: 10px 0 0;
  padding: 0;
}

.timeline ul li .time h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.timeline ul li:nth-child(odd) .time {
  position: absolute;
  top: 12px;
  right: -165px;
  margin: 0;
  padding: 8px 16px;
  background: var(--cs-primary);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px var(--cs-secondary);
}

.timeline ul li:nth-child(even) .time {
  position: absolute;
  top: 12px;
  left: -165px;
  margin: 0;
  padding: 8px 16px;
  background: var(--cs-primary);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px var(--cs-secondary);
}

@media (max-width: 1000px) {
  .timeline {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .timeline {
    width: 100%;
    padding-bottom: 0;
  }

  .timeline:before {
    left: 20px;
    height: 95%;
  }

  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-bottom: 50px;
  }

  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before {
    top: -18px;
    left: 16px;
  }

  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time {
    top: -30px;
    left: 50px;
    right: inherit;
  }
}
/* *************************Almuni************************************* */

#almuniRegisterBox i {
  opacity: 0;
  -webkit-transition: all 0.1s 0s ease-in-out;
  -moz-transition: all 0.1s 0s ease-in-out;
  -o-transition: all 0.1s 0s ease-in-out;
  transition: all 0.1s 0s ease-in-out;
}

#almuniRegisterBox:hover i {
  opacity: 1;
}

.single_advisor_profile {
  position: relative;
  margin-bottom: 50px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  z-index: 1;
  border-radius: 15px;
}

.single_advisor_profile .advisor_thumb {
  position: relative;
  z-index: 1;
  border-radius: 15px 15px 0 0;
  margin: 0 auto;
  overflow: hidden;
}

.single_advisor_profile .advisor_thumb img {
  width: 100%;
  height: 18rem;
}

.single_advisor_profile .advisor_thumb::after {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  width: 150%;
  height: 60px;
  bottom: -45px;
  left: -25%;
  content: "";
  background-color: #ffffff;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

@media only screen and (max-width: 575px) {
  .single_advisor_profile .advisor_thumb::after {
    height: 160px;
    bottom: -145px;
  }
}

.single_advisor_profile .advisor_thumb .social-info {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  right: 30px;
  text-align: right;
}

.single_advisor_profile .advisor_thumb .social-info a {
  font-size: 14px;
  color: #020710;
  padding: 0 5px;
}

.single_advisor_profile .advisor_thumb .social-info a:hover,
.single_advisor_profile .advisor_thumb .social-info a:focus {
  color: var(--cs-heading1);
}

.single_advisor_profile .advisor_thumb .social-info a:last-child {
  padding-right: 0;
}

.single_advisor_profile .single_advisor_details_info {
  position: relative;
  z-index: 1;
  padding: 30px;
  text-align: right;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border-radius: 0 0 15px 15px;
  background-color: #ffffff;
}

.single_advisor_profile .single_advisor_details_info::after {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 3px;
  background-color: var(--cs-secondary);
  content: "";
  top: 12px;
  right: 30px;
}

.single_advisor_profile .single_advisor_details_info a {
  margin-bottom: 0.25rem;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_advisor_profile .single_advisor_details_info a {
    font-size: 14px;
  }
}

.single_advisor_profile .single_advisor_details_info p {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 0;
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_advisor_profile .single_advisor_details_info p {
    font-size: 12px;
  }
}

.single_advisor_profile:hover .advisor_thumb::after,
.single_advisor_profile:focus .advisor_thumb::after {
  background-color: var(--cs-primary);
}

.single_advisor_profile:hover .advisor_thumb .social-info a,
.single_advisor_profile:focus .advisor_thumb .social-info a {
  color: #ffffff;
}

.single_advisor_profile:hover .advisor_thumb .social-info a:hover,
.single_advisor_profile:hover .advisor_thumb .social-info a:focus,
.single_advisor_profile:focus .advisor_thumb .social-info a:hover,
.single_advisor_profile:focus .advisor_thumb .social-info a:focus {
  color: #ffffff;
}

.single_advisor_profile:hover .single_advisor_details_info,
.single_advisor_profile:focus .single_advisor_details_info {
  background-color: var(--cs-primary);
}

.single_advisor_profile:hover .single_advisor_details_info::after,
.single_advisor_profile:focus .single_advisor_details_info::after {
  background-color: #ffffff;
}

.single_advisor_profile:hover .single_advisor_details_info a,
.single_advisor_profile:focus .single_advisor_details_info a {
  color: #ffffff;
}

.single_advisor_profile:hover .single_advisor_details_info p,
.single_advisor_profile:focus .single_advisor_details_info p {
  color: #ffffff;
}

.custom-file-label.rounded-pill {
  border-radius: 50rem;
}

.custom-file-label.rounded-pill::after {
  border-radius: 0 50rem 50rem 0;
}

/* *************************Program Details************************************* */
.programList .list-group-item {
  background-color: var(--cs-heading2);
  color: var(--cs-background-text);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.programList .list-group-item:hover {
  background-color: var(--cs-heading1);
}
.semesterList .active {
  border: solid var(--cs-primary) 1px;
}

/* *************************Student Registration************************************* */
.card-registration .select-input.form-control[readonly]:not([disabled]) {
  font-size: 1rem;
  line-height: 2.15;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.card-registration .select-arrow {
  top: 13px;
}

.studentRegistration .active {
  background-color: transparent !important;
  color: var(--cs-heading1) !important;
  border-bottom: solid var(--cs-heading1) 2px;
  border-radius: 0% !important;
}

.studentRegistrationSwiper img {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  height: 64rem !important;
}

/* *************************Terms and Condition************************************* */
#terms > li {
  color: var(--cs-heading2);
  font-size: 1.3rem;
}

#terms > li ol {
  margin: 0.4rem auto;
  color: black;
  font-size: 1.1rem;
}

/* *************************Careers ************************************* */
.category .job {
  height: 280px;
  border: 1px solid transparent;
  padding: 30px 19px 25px 19px;
  border-radius: 5px;
}

.category .job:hover {
  /* border: 1px solid #0d6efd; */
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.category .job span {
  padding: 6px 20px;
  font-weight: 400;
  border-radius: 26px;
  display: inline-block;
}

.category h5 a {
  color: var(--cs-heading1);
}

.category .job .colors1 {
  font-weight: 800;
  color: #f27e42;
  background: #f27e4242;
}

.category .job .colors2 {
  font-weight: 800;
  color: #4294f2;
  background: rgba(66, 148, 255, 0.26);
}

.category .job .colors3 {
  font-weight: 800;
  color: #2eb98d;
  background: rgba(46, 185, 141, 0.127);
}

.category .job .colors4 {
  font-weight: 800;
  color: #6a42f2;
  background: rgba(106, 66, 242, 0.07);
}

.category .job .colors5 {
  font-weight: 800;
  color: #f162bc;
  background: rgba(241, 98, 188, 0.07);
}

.category .job .colors2 {
  font-weight: 800;
  color: #4294f2;
  background: rgba(66, 148, 255, 0.26);
}

.category li {
  list-style-type: none;
  margin-top: 1rem;
}

.category a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: #071112;
  text-transform: capitalize;
  margin-bottom: 17px;
  display: block;
}

.place {
  display: flex;
  align-items: center;
  font-size: 12px;
  padding-left: 0px;
  color: #76787a;
}

/*************************Donor*************************/
.staffContainer * a {
  text-decoration: none;
  color: var(--cs-foreground-text);
}

.staffImage {
  width: 9rem;
  height: 9rem;
}

.social-link {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.shadowBorder {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(91, 91, 91, 0.15) 0px 0px 0px 1px;
}

.donorContainer .card {
  width: 450px;
  height: 250px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin: 1.5rem;
}
@media (max-width: 575px) {
  .donorContainer .card {
    transform: scale(0.9);
    padding: 0;
    margin: 0;
  }
  .donorContainer .colGroups {
    display: flex;
    padding: 0;
    margin: 0;
  }
  .donorContainer .general {
    transform: scaleX(0.8);
    right: -26px !important;
  }
  .donorContainer .card .additional .more-info {
    width: auto !important;
  }
}

.donorContainer .card:hover .donorContainer .card {
  transform: scale(1.01);
}

.donorContainer .card h1 {
  text-align: center;
}

.donorContainer .card .headings {
  text-align: center;
  color: var(--cs-background-text);
}

.donorContainer .card .additional {
  position: absolute;
  width: 150px;
  height: 100%;
  background: linear-gradient(var(--cs-primary), var(--cs-heading1));
  transition: width 0.4s;
  overflow: hidden;
  z-index: 2;
}

.donorContainer .card:hover .additional {
  width: 100%;
  border-radius: 0 5px 5px 0;
}

.donorContainer .card .additional .user-card {
  width: 150px;
  height: 100%;
  position: relative;
  float: left;
}

.donorContainer .card .additional .user-card img {
  width: 8rem;
  height: 50%;
  border-radius: 50%;
  border: solid var(--cs-background-text) 2px;
  position: relative;
  /* float: left; */
}

.donorContainer .card .additional .user-card::after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  right: -2px;
  height: 80%;
  border-left: 2px solid rgba(0, 0, 0, 0.025);
}

.donorContainer .card .additional .user-card .level,
.donorContainer .card .additional .user-card .points {
  top: 15%;
  color: var(--cs-background-text);
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 500;
  /* font-weight: bold; */
  /* background: rgba(0, 0, 0, 0.15); */
  padding: 0.125rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

.donorContainer .card .additional .user-card .points {
  top: 85%;
}

.donorContainer .card .additional .user-card svg {
  top: 50%;
}

.donorContainer .card .additional .more-info {
  width: 300px;
  float: left;
  position: absolute;
  left: 150px;
  height: 100%;
}

.donorContainer .card .additional .more-info h1 {
  color: #fff;
  margin-bottom: 0;
}

.donorContainer .card.green .additional .more-info h1 {
  color: #224c36;
}

.donorContainer .card .additional .coords {
  margin: 0 1rem;
  color: #fff;
  font-size: 1rem;
}

.donorContainer .card.green .additional .coords {
  color: #325c46;
}

.donorContainer .card .additional .coords span + span {
  float: right;
}

.donorContainer .card .general {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  box-sizing: border-box;
  padding: 1rem;
  padding-top: 0;
}

.donorContainer .card .general .more {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.9em;
}
/********************Scholar Ships*************************/
.scholarships .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid #e6e4e9;
  border-radius: 10px;
  background: #ffffffcc;
}

.scholarships .card-body:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  overflow: hidden;
  transform: scale(1.01);
  background-color: white;
  border-radius: 10px;
}

.scholarships .card .card-header.no-border {
  border: 0;
}

.scholarships .card .card-header {
  background: none;
  padding: 0 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  min-height: 50px;
}

.scholarships .widget .widget-title-wrapper {
  display: flex;
  align-items: center;
}

.scholarships .widget .widget-title-wrapper .widget-date-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--cs-background1);
}

.scholarships
  .widget
  .widget-title-wrapper
  .widget-date-primary
  .widget-date-day {
  color: var(--cs-primary);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.scholarships
  .widget
  .widget-title-wrapper
  .widget-date-primary
  .widget-date-month {
  color: var(--cs-primary);
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.scholarships .widget .widget-title-wrapper .widget-meeting-info {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.scholarships
  .widget
  .widget-title-wrapper
  .widget-meeting-info
  .widget-pro-title {
  color: #3c4142;
  font-size: 1.4rem;
}

.scholarships
  .widget
  .widget-title-wrapper
  .widget-meeting-info
  .widget-meeting-time {
  color: #b1bac5;
  font-size: 13px;
}

.scholarships .widget .widget-meeting-points {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.scholarships .widget .widget-meeting-points .widget-meeting-item {
  display: list-item;
  color: #727686;
}

.scholarships .widget .widget-meeting-points .widget-meeting-item .item-title {
  font-weight: 500;
}

.scholarships .widget .widget-meeting-points .widget-meeting-item span {
  margin-left: 0.1rem;
}

.scholarships .widget .widget-meeting-action {
  text-align: right;
}

.scholarships .widget .widget-meeting-action a {
  text-transform: uppercase;
}

/***********************Enrolled Students*****************************/
.resultList {
  padding: 0.3rem;
  border-radius: 10px;
  background-color: var(--cs-background-text);
}

.resultList .tableImage {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
/***********************Notice*****************************/
.noticeDateBox {
  background-color: var(--cs-secondary);
  color: var(--cs-background-text);
  width: 5rem;
}

.noticeBody:hover,
.noticeBody:hover * {
  background-color: var(--cs-secondary);
  color: var(--cs-background-text);
}

.noticeBody:hover .noticeDateBox,
.noticeBody:hover .noticeDateBox span {
  background-color: var(--cs-background-text);
  color: var(--cs-secondary);
}

.noticeBody {
  -webkit-transition: all 0.4s 0s ease-in-out;
  -moz-transition: all 0.4s 0s ease-in-out;
  -o-transition: all 0.4s 0s ease-in-out;
  transition: all 0.4s 0s ease-in-out;
}
