@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@-webkit-keyframes ripple-green {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3), 0 0 0 30px rgba(220, 37, 255, 0);
    box-shadow: 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3), 0 0 0 30px rgba(220, 37, 255, 0);
  }
}
@keyframes ripple-green {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3), 0 0 0 30px rgba(220, 37, 255, 0);
    box-shadow: 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 20px rgba(220, 37, 255, 0.3), 0 0 0 30px rgba(220, 37, 255, 0);
  }
}
@keyframes ripple-green-small {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 37, 255, 0.3), 0 0 0 5px rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(220, 37, 255, 0.3), 0 0 0 5px rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 5px rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 15px rgba(220, 37, 255, 0);
    box-shadow: 0 0 0 5px rgba(220, 37, 255, 0.3), 0 0 0 10px rgba(220, 37, 255, 0.3), 0 0 0 15px rgba(220, 37, 255, 0);
  }
}
/* animation start*/
.updown {
  animation: updown 5s infinite ease-in-out;
}

.move-left {
  animation: rotate 20s infinite linear;
}

.rotate {
  animation: rotate 20s infinite linear;
}

.move-on {
  animation: mover 5s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes updown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes mover {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* animation end */
/*
0px - 575px    :         Phone
576px - 767px  :         Tablet
768px - 991px  :         Small-Laptop
992px - 1200px :         Big-Laptop Or Desktop
1201px +       :         Extra Big Screen*/
/*
-- phone
-- tablet
-- sm-laptop
-- bg-laptop
-- bg-desktop*/
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Hind Siliguri", serif;
  font-weight: normal;
  font-style: normal;
}

a,
button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.4s;
  -webkit-transition: all 0.3s linear;
}

a:hover {
  text-decoration: none;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

.site {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

.paragraph-size {
  font-size: 16px;
  font-weight: 400;
}

.registaiton_btn a {
  display: block;
  padding: 12px 35px;
  color: #FFFFFF;
  font-weight: 500;
  background: linear-gradient(90deg, #dc25ff 0%, #3c016f 100%);
  border-radius: 12px;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: linear-gradient(90deg, #dc25ff 0%, #3c016f 100%), linear-gradient(90deg, #3c016f 0%, #dc25ff 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1199px) {
  .registaiton_btn a {
    font-size: 14px;
    padding: 8px 20px;
    margin-left: 16px;
  }
}
.registaiton_btn a:hover {
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.registaiton_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c016f, #dc25ff);
  z-index: -1;
  transition: all 0.4s ease;
}
.registaiton_btn a:hover::before {
  left: 0;
}
.registaiton_btn a i {
  margin-right: 5px;
}

.section-btn {
  mix-blend-mode: screen;
  color: #FFFFFF;
  background: #3C006F;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 8px 20px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s;
  border: 1px solid transparent;
  transition: all 0.4s;
}
@media only screen and (max-width: 575px) {
  .section-btn {
    font-size: 14px;
    padding: 7px 18px;
  }
}
.section-btn:hover {
  background: #FFFFFF;
  border-color: #3C016F;
  color: #3C016F;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.2509803922);
}
.section-btn i {
  margin-left: 5px;
}

/*Scroll Area*/
.scroll-area {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: none;
}
@media only screen and (max-width: 767px) {
  .scroll-area {
    bottom: 60px;
  }
}

.scroll-area i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #DC25FF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  border: 1px solid #FBF9EA;
  -webkit-animation: ripple-green 1s linear infinite;
  animation: ripple-green 1s linear infinite;
}
@media only screen and (max-width: 767px) {
  .scroll-area i {
    width: 30px;
    height: 30px;
    font-size: 14px;
    animation: ripple-green-small 1s linear infinite;
  }
}

.scroll-area i:hover {
  background: #3C016F;
}

.slider-icon-next,
.slider-icon-prev {
  width: 40.65px;
  height: 40.65px;
  border-radius: 3px;
  background-color: #3C016F;
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .slider-icon-next,
  .slider-icon-prev {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-icon-next,
  .slider-icon-prev {
    width: 30px;
    height: 30px;
  }
}

.slider-icon-next::after,
.slider-icon-prev::after {
  font-size: 16px !important;
  color: #DC25FF;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .slider-icon-next::after,
  .slider-icon-prev::after {
    font-size: 14px !important;
  }
}

.slider-icon-next:hover,
.slider-icon-prev:hover {
  transform: rotate(90deg);
  background-color: #FFFFFF;
}

.slider-icon-next:hover::after,
.slider-icon-prev:hover::after {
  transform: rotate(-90deg);
  color: #3C016F;
}

.slider-icon-prev {
  left: 90px;
}
@media only screen and (max-width: 767px) {
  .slider-icon-prev {
    left: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-icon-prev {
    left: 30px;
  }
}

.slider-icon-next {
  right: 90px;
}
@media only screen and (max-width: 767px) {
  .slider-icon-next {
    right: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-icon-next {
    right: 30px;
  }
}

.hero-slider .swiper-slide {
  max-height: 600px;
}
@media only screen and (max-width: 767px) {
  .hero-slider .swiper-slide {
    max-height: 272px;
  }
}
.hero-slider .swiper-slide img {
  width: 100%;
}

.pagination {
  justify-content: center;
  gap: 10px;
}
.pagination .page-link {
  height: 32.83px;
  width: 32.83px;
  border-radius: 50px !important;
  border: none;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.1019607843);
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .pagination .page-link {
    font-size: 14px;
    height: 32px;
    width: 32px;
  }
}
.pagination .page-link:hover {
  background: #3C016F;
  color: #FFFFFF;
}
.pagination .page-link.active {
  background: #3C016F;
  color: #FFFFFF;
  z-index: 0;
}
.pagination .page-link:focus {
  box-shadow: none;
  border: none;
}
.pagination .arrow {
  background: #3C016F;
  color: #FFFFFF;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-area-card p,
.text-area-card * {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #474f55;
}
@media only screen and (max-width: 575px) {
  .text-area-card p,
  .text-area-card * {
    font-size: 14px;
    line-height: 22px;
  }
}
.text-area-card p {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .text-area-card p {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .text-area-card p {
    margin-bottom: 14px;
  }
}
.text-area-card img {
  max-width: 100%;
}
.text-area-card h1,
.text-area-card h2,
.text-area-card h3,
.text-area-card h4,
.text-area-card h5,
.text-area-card h6 {
  font-weight: 500;
  color: #4D4D4D;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .text-area-card h1,
  .text-area-card h2,
  .text-area-card h3,
  .text-area-card h4,
  .text-area-card h5,
  .text-area-card h6 {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .text-area-card h1,
  .text-area-card h2,
  .text-area-card h3,
  .text-area-card h4,
  .text-area-card h5,
  .text-area-card h6 {
    margin-bottom: 14px;
  }
}
.text-area-card h1 {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 575px) {
  .text-area-card h1 {
    font-size: 20px;
  }
}
.text-area-card h2 {
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (max-width: 575px) {
  .text-area-card h2 {
    font-size: 18px;
    line-height: normal;
  }
}
.text-area-card h3 {
  font-size: 18px;
}
@media only screen and (max-width: 575px) {
  .text-area-card h3 {
    font-size: 16px;
  }
}
.text-area-card h4 {
  font-size: 16px;
}
@media only screen and (max-width: 575px) {
  .text-area-card h4 {
    font-size: 14px;
  }
}
.text-area-card h5 {
  font-size: 14px;
}
@media only screen and (max-width: 575px) {
  .text-area-card h5 {
    font-size: 13px;
  }
}
.text-area-card h6 {
  font-size: 12px;
}
@media only screen and (max-width: 575px) {
  .text-area-card h6 {
    font-size: 12px;
  }
}
.text-area-card ul li {
  position: relative;
  padding: 0 0 6px 20px;
}
.text-area-card ul li::after {
  content: "\f111";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 6px;
}

.about-us-description .text-area-card h1,
.about-us-description .text-area-card h2,
.about-us-description .text-area-card h3,
.about-us-description .text-area-card h4,
.about-us-description .text-area-card h5,
.about-us-description .text-area-card h6 {
  font-weight: 700;
  color: #1a1a1a;
}
.about-us-description .text-area-card h1 {
  color: #3C016F;
  border-bottom: 1px solid #3C016F;
  display: inline-block;
}
.about-us-description .text-area-card h1::before {
  content: "\f0a4";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 12px;
}
.about-us-description ul li::after {
  content: "\f2d1";
}

.form-card {
  padding: 32px;
  background: #F4F0FC;
  border-radius: 12px;
}
@media only screen and (max-width: 991px) {
  .form-card {
    padding: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .form-card {
    padding: 20px;
  }
}
.form-card .form_title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1A1A1A;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .form-card .form_title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .form-card .form_title {
    font-size: 16px;
  }
}
.form-card .form_title--leftAlign {
  text-align: left;
}

.gf-input-group {
  margin-bottom: 24px;
}
@media only screen and (max-width: 575px) {
  .gf-input-group {
    margin-bottom: 16px;
  }
}
.gf-input-group .gf-input {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  font-family: "Hind Siliguri", serif;
  background: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .gf-input-group .gf-input {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.gf-input-group .gf-input:focus {
  border-color: #3C016F;
}
.gf-input-group .gf-input:focus-visible {
  outline: 0;
}
.gf-input-group .gf-input::placeholder {
  color: #4D4D4D;
}

.gf-input-group textarea {
  min-height: 120px;
}

.gf-form-btn-wrap .gf-form-btn {
  font-family: "Hind Siliguri", serif;
  font-weight: 500;
  font-size: 20px;
  background-color: #3C016F;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
  color: #FFFFFF;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
  .gf-form-btn-wrap .gf-form-btn {
    padding: 14.5px 12px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .gf-form-btn-wrap .gf-form-btn {
    padding: 11.5px 12px;
    font-size: 16px;
  }
}
.gf-form-btn-wrap .gf-form-btn:hover {
  background: #FFFFFF;
  border-color: #3C016F;
  color: #3C016F;
}
.gf-form-btn-wrap .gf-form-btn:hover i {
  margin-left: 10px;
}
.gf-form-btn-wrap .gf-form-btn i {
  margin-left: 5px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.english-font .gf-input-group .gf-input {
  font-family: "Poppins", serif;
}
.english-font .gf-form-btn {
  font-family: "Poppins", serif;
  font-size: 16px;
}

.file-input-container {
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.file-input-container .file-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-input-container .file-input-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid #C8CCD5;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  font-family: "Hind Siliguri", serif;
  background: #FFFFFF;
}
.file-input-container .file-input-button {
  background-color: #3C016F;
  color: white;
  padding: 10.5px 24px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
}
@media only screen and (max-width: 575px) {
  .file-input-container .file-input-button {
    padding: 9px 12px;
    font-size: 14px;
  }
}
.file-input-container .file-input-text {
  color: #555;
}

.photo-gallery-detail {
  width: 100%;
  margin: 20px auto;
  columns: 4;
  column-gap: 20px;
}
@media only screen and (max-width: 1199px) {
  .photo-gallery-detail {
    columns: 3;
  }
}
@media only screen and (max-width: 767px) {
  .photo-gallery-detail {
    columns: 2;
  }
}
@media only screen and (max-width: 480px) {
  .photo-gallery-detail {
    columns: 1;
  }
}
.photo-gallery-detail .photo-gallery-item {
  width: 100%;
  margin-bottom: 10px;
  break-inside: avoid;
}
.photo-gallery-detail .photo-gallery-item img {
  width: 100%;
  border-radius: 12px;
}
.photo-gallery-detail .photo-gallery-item a {
  position: relative;
  display: block;
}
.photo-gallery-detail .photo-gallery-item a::after {
  content: "\f067";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  background: #3C016F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 2;
}
.photo-gallery-detail .photo-gallery-item a:hover::after {
  visibility: visible;
  opacity: 1;
}
.photo-gallery-detail .photo-gallery-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: #3C016F;
  border-radius: 12px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}
.photo-gallery-detail .photo-gallery-item a:hover::before {
  visibility: visible;
  opacity: 0.4;
}

.mfp-bottom-bar {
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 0 0 8px 8px;
}

.mfp-bottom-bar .mfp-title {
  color: #000;
}

.payment__section .custom-card {
  padding: 40px 48px;
  background: #BF9CFF;
}
@media only screen and (max-width: 767px) {
  .payment__section .custom-card {
    padding: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .payment__section .custom-card {
    padding: 24px 20px;
  }
}
.payment__section .custom-card .item input {
  font-family: "Poppins", serif;
  color: #4D4D4D;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .payment__section .custom-card .item input {
    font-size: 14px;
  }
}
.payment__section .custom-card .img-upload {
  margin-top: 15px;
  display: none;
}
.payment__section .payment-card {
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 1199px) {
  .payment__section .payment-card {
    flex-direction: column;
  }
}
.payment__section .user-image-wrap .user-image {
  width: 280px;
  padding: 24px;
  border: 1px solid #FAF8FF;
  border-radius: 12px;
  overflow: hidden;
}
@media only screen and (max-width: 1400px) {
  .payment__section .user-image-wrap .user-image {
    width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .payment__section .user-image-wrap .user-image {
    width: 225px;
    padding: 16px;
    margin: 0 auto;
  }
}
.payment__section .user-image-wrap .user-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.payment__section .save-button {
  mix-blend-mode: screen;
  color: #FFFFFF;
  background: #3C006F;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 8px 20px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s;
  border: 1px solid transparent;
  transition: all 0.4s;
  width: 100%;
  font-family: "Poppins", serif;
  background: green;
  color: #FFFFFF;
  padding: 12px 20px;
  margin-top: 24px;
  border-radius: 12px;
  mix-blend-mode: normal;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 575px) {
  .payment__section .save-button {
    font-size: 14px;
    padding: 7px 18px;
  }
}
.payment__section .payment-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.payment__section .payment-btn-wrap .payment-btn-outline {
  mix-blend-mode: screen;
  color: #FFFFFF;
  background: #3C006F;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  padding: 8px 20px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s;
  border: 1px solid transparent;
  transition: all 0.4s;
  font-family: "Poppins", serif;
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  color: #FFFFFF;
  border-color: #3C016F;
  flex: 1;
  padding: 12px 20px;
  margin-top: 24px;
  border-radius: 12px;
  mix-blend-mode: normal;
}
@media only screen and (max-width: 575px) {
  .payment__section .payment-btn-wrap .payment-btn-outline {
    font-size: 14px;
    padding: 7px 18px;
  }
}
.payment__section .payment-btn-wrap .payment-btn-outline:hover {
  color: #FFFFFF;
  background-color: #3C016F;
}
.payment__section .payment-btn-wrap .payment-btn-outline .icon {
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  -webkit-mask-image: url("/assets/img/image-gallery/edit.svg"); /* Absolute Path */
  mask-image: url("/assets/img/image-gallery/edit.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 0.3s ease-in-out;
}
.payment__section .payment-btn-wrap .payment-btn-outline:hover .icon {
  background-color: #FFFFFF;
}
.payment__section .user-details-wrap {
  width: 100%;
}
.payment__section .user-details-wrap .payment__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid #FAF8FF;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .payment__section .user-details-wrap .payment__details {
    padding: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .payment__section .user-details-wrap .payment__details {
    gap: 16px;
  }
}
.payment__section .user-details-wrap .payment__details .item {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 575px) {
  .payment__section .user-details-wrap .payment__details .item {
    font-size: 14px;
    line-height: 20px;
  }
}

.faq__section {
  background: #FBF9EA;
}
.faq__section::after {
  z-index: 0 !important;
}
@media only screen and (max-width: 1600px) {
  .faq__section::after {
    display: none;
  }
}
.faq__section::before {
  z-index: 0 !important;
}
@media only screen and (max-width: 1600px) {
  .faq__section::before {
    display: none;
  }
}
.faq__section .faq-wrap .faq {
  margin: 48px 0;
}
@media only screen and (max-width: 991px) {
  .faq__section .faq-wrap .faq {
    margin: 36px 0;
  }
}
@media only screen and (max-width: 767px) {
  .faq__section .faq-wrap .faq {
    margin: 20px 0;
  }
}
.faq__section .faq-wrap .faq .faq__accordion {
  --bs-accordion-border-color: transparent !important;
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-item {
  border-radius: 9px;
  border: none;
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-item:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 575px) {
  .faq__section .faq-wrap .faq .faq__accordion .accordion-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.faq__section .faq-wrap .faq .faq__accordion .faq-second-column {
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .faq__section .faq-wrap .faq .faq__accordion .faq-second-column {
    margin-top: 16px;
  }
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-button {
  font-size: 16px;
  font-weight: 400;
  font-family: "Hind Siliguri", serif;
  border-radius: 8px;
  color: #1A1A1A;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .faq__section .faq-wrap .faq .faq__accordion .accordion-button {
    font-size: 14px;
    padding: 12px 16px;
  }
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-button:focus {
  box-shadow: none;
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-button::after {
  position: absolute;
  display: inline-block;
  right: 10px;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: none;
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-button:not(.collapsed) {
  color: #3C016F;
  border: none;
  border-radius: 8px 8px 0 0;
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f054";
  transform: rotate(90deg);
  color: #1A1A1A;
}
.faq__section .faq-wrap .faq .faq__accordion .accordion-body {
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media only screen and (max-width: 575px) {
  .faq__section .faq-wrap .faq .faq__accordion .accordion-body {
    font-size: 14px !important;
    padding: 10px 16px;
  }
}
.faq__section .faq-section-btn {
  mix-blend-mode: normal;
}

.section__padding {
  padding: 48px 0;
}
@media only screen and (max-width: 1199px) {
  .section__padding {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 991px) {
  .section__padding {
    padding: 32px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section__padding {
    padding: 24px 0;
  }
}

.section__title {
  color: #3C016F;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .section__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .section__title {
    font-size: 20px;
  }
}

.section__title-white {
  color: #3C016F;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF !important;
}
@media only screen and (max-width: 767px) {
  .section__title-white {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .section__title-white {
    font-size: 20px;
  }
}

.date-style {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s;
}
@media only screen and (max-width: 575px) {
  .date-style {
    font-size: 13px;
  }
}

.simple-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #D6E2DE;
}
@media only screen and (max-width: 991px) {
  .simple-card {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .simple-card {
    padding: 16px;
  }
}

/* footer section */
.footer_section {
  border-top: 1px solid #7800BB;
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  position: relative;
  z-index: 1;
}

.footer_section::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: url(../img/footer-bg-noise.svg) no-repeat;
  mix-blend-mode: overlay;
  background-size: cover;
  z-index: -1;
}

.footer__wrap {
  position: relative;
  padding-right: 32px;
  padding-left: 32px;
  border: 1px solid #7800BB;
  border-bottom: 0;
  border-top: 0;
  z-index: 11;
}
@media only screen and (max-width: 1199px) {
  .footer__wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer-widget-1 p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  color: #ffffff;
  margin: 32px 60px 32px 0;
}
@media only screen and (max-width: 575px) {
  .footer-widget-1 p {
    font-size: 14px;
    margin: 24px 0;
  }
}

.footer_menu {
  display: flex;
  padding: 0;
  margin: 0;
}

.footer_menu li {
  margin-right: 16px;
}

.footer_menu li a {
  color: #FFFFFF;
  font-size: 16px;
}

.footer_section .widget_title {
  font-size: 16px;
  color: #FFFFFF;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #FFFFFF;
  width: fit-content;
}
@media only screen and (max-width: 991px) {
  .footer_section .widget_title {
    margin-bottom: 18px;
    margin-top: 16px;
  }
}

.widget_menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 20px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .widget_menu li a {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
  }
}

.widget_menu li a:hover {
  color: #DC25FF;
}

.widget_menu li a i {
  margin-right: 14px;
}

.copyright__section {
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  text-align: center;
  border-top: 1px solid #7800BB;
  position: relative;
}
.copyright__section::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: url(../img/footer-bg-noise.svg) no-repeat;
  mix-blend-mode: overlay;
  background-size: cover;
}
.copyright__section .c-pr-wrap {
  padding: 28px 0;
  border-right: 1px solid #7800BB;
  border-left: 1px solid #7800BB;
  position: relative;
  z-index: 11;
}
@media only screen and (max-width: 575px) {
  .copyright__section .c-pr-wrap {
    padding: 20px 0;
  }
}
.copyright__section .title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .copyright__section .title {
    font-size: 14px;
    line-height: 20px;
  }
}
.copyright__section .title a {
  color: #DC25FF;
}

/*Header*/
.logo {
  max-width: 493px;
}

.header-area {
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  position: relative;
  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.168627451);
  z-index: 2;
}

.header-bottom.sticky {
  position: fixed;
  z-index: 999;
  width: 100%;
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  top: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.168627451);
  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.168627451);
  animation: sticky 1s;
  left: 0;
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
/*navbar here*/
.header-menu-wrap {
  padding: 10px 0;
}

.header-menu {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1400px) {
  .desktop_logo {
    width: 290px;
  }
  .desktop_logo img {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .desktop_logo {
    width: 185px;
  }
}

.m-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.m-logo a {
  font-size: 13px;
}

.header-horizontal-menu .menu-content li {
  display: inline-block;
  position: relative;
}

.header-horizontal-menu .menu-content li a {
  display: block;
  padding: 4px 11px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 12px;
  color: #FFFFFF;
  line-height: 24px;
  transition: all 0.3s linear;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-horizontal-menu .menu-content li a {
    font-size: 14px;
  }
}

.header-horizontal-menu .menu-content li a:hover {
  color: #DC25FF;
}

/* Hover or Active State for Main Menu */
.header-horizontal-menu .menu-content li:hover > a,
.header-horizontal-menu .menu-content li.active > a {
  color: #DC25FF;
}

.header-horizontal-menu .menu-content li .sub-menu {
  box-shadow: 0px 2px 8px 0.56px rgba(0, 0, 0, 0.1);
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  border: 1px solid #7601B9;
  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.168627451);
  position: absolute;
  top: 100%;
  width: 200px;
  left: 0;
  -webkit-transform-origin: 0% 0%;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-90deg);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: hidden;
  border-top: 4px solid #3C016F;
}

.header-horizontal-menu .menu-content li .sub-menu li {
  margin-left: 0;
  padding: 0;
  display: block;
  position: relative;
}
.header-horizontal-menu .menu-content li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #7601B9;
}

.header-horizontal-menu .menu-content li .sub-menu li a {
  color: #FFFFFF;
  line-height: 40px;
  height: auto;
  display: block;
  letter-spacing: 0;
  font-size: 16px;
  padding: 0 25px;
  font-weight: 400;
  position: relative;
  text-align: center;
}

.header-horizontal-menu .menu-content li .sub-menu li a i {
  position: absolute;
  top: 0;
  right: 25px;
  line-height: 40px;
}

.header-horizontal-menu .menu-content li .sub-menu li:hover > a {
  border-radius: 0;
  color: #DC25FF;
}

.header-horizontal-menu .menu-content li .sub-menu li .sub-menu {
  top: 20px;
  left: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

/*=========== Mobile  ========================================*/
.mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-toggle a {
  color: #FFFFFF;
  line-height: 39px;
  font-size: 24px;
  padding: 5px;
  display: inline;
}
@media only screen and (max-width: 575px) {
  .mobile-toggle a {
    font-size: 18px;
    padding-right: 10px;
  }
}

.mobile-toggle .call_button a {
  font-size: 16px;
  margin-left: 0;
}

/*OVERLY Start*/
.overlay {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  z-index: 99;
  visibility: visible;
  opacity: 0;
  visibility: hidden;
}

.overlay.open {
  opacity: 0.6;
  visibility: visible;
}

/*END OVERLY*/
.mobile-off-canvas-menu {
  position: fixed;
  top: 0;
  left: -350px;
  background: #3C016F;
  z-index: 999;
  width: 350px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.mobile-off-canvas-menu.open {
  left: 0;
}

.mobile-canvas-close {
  background: #DC25FF;
  padding: 0 24px;
}

.mobile-canvas-close p {
  color: #3C016F;
  line-height: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  pointer-events: none;
  position: relative;
}

.mobile-canvas-close p i {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 6;
}

.mobile-main-menu .menu-content li {
  position: relative;
}

.mobile-main-menu .menu-content li a {
  display: block;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 35px;
  padding-right: 50px;
  line-height: 30px;
  text-transform: capitalize;
  border-top: 1px solid #e5e5e5;
}
@media only screen and (max-width: 575px) {
  .mobile-main-menu .menu-content li a {
    font-size: 14px;
    padding: 4px 24px;
    line-height: 30px;
  }
}

.mobile-main-menu .menu-content li.active a,
.mobile-main-menu .menu-content li a:hover {
  background-color: #FBF9EA;
  color: #3C016F;
}

.mobile-main-menu .menu-content li a i {
  display: none;
}

.mobile-main-menu .menu-content li .mobile-menu-expand {
  position: absolute;
  right: 35px;
  top: 13px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.mobile-main-menu .menu-content li .mobile-menu-expand::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobile-main-menu .menu-content li .mobile-menu-expand::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #FFFFFF;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mobile-main-menu .menu-content li.active-expand > .mobile-menu-expand::after {
  height: 0;
}

.mobile-main-menu .menu-content li .sub-menu li a {
  font-weight: 400;
  padding-left: 50px;
}

.mobile-main-menu .menu-content li .sub-menu li .submenu-item li a,
.mobile-main-menu .menu-content li .sub-menu li .sub-menu li a {
  padding-left: 65px;
}

.mobile-main-menu .menu-content li .sub-menu li img {
  padding: 10px;
  padding-right: 20px;
}

.header-horizontal-menu .menu-content li:hover .sub-menu,
.header-horizontal-menu .menu-content li:hover .mega-sub-menu {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__top {
  mix-blend-mode: screen;
  border-bottom: 1px solid #3C006F;
}
.header__top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__top-wrap .top-box {
  mix-blend-mode: screen;
  padding: 8px 16px;
  border: 1px solid #3C006F;
  border-top: 0;
  border-bottom: 0;
  height: 40px;
}
.header__top-wrap .number-gmail {
  display: flex;
}
.header__top-wrap .number-gmail a {
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .header__top-wrap .number-gmail a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .header__top-wrap .number-gmail a {
    font-size: 11px;
  }
}
.header__top-wrap .icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media only screen and (max-width: 575px) {
  .header__top-wrap .icon-wrap {
    gap: 5px;
  }
}
.header__top-wrap .icon-wrap a {
  color: #FFFFFF;
  padding: 4px;
}
@media only screen and (max-width: 767px) {
  .header__top-wrap .icon-wrap a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .header__top-wrap .icon-wrap a {
    font-size: 10px;
  }
}

.hero-slider .swiper-pagination {
  bottom: 48px !important;
}
.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  opacity: 1;
}
.hero-slider .swiper-pagination-bullet-active {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #FFFFFF 4px, transparent 4px);
  border: 1px solid #FFFFFF;
}

.notice__board__section .notice-board {
  margin: 0;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  z-index: 1;
}
.notice__board__section .notice-board::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: url(../img/notice-bg-noise.svg) no-repeat;
  mix-blend-mode: overlay;
  background-size: cover;
  z-index: -1;
}
.notice__board__section .notice-board__title {
  margin: 0 0 24px 0;
}
.notice__board__section .notice-board__card {
  padding: 46px 24px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card {
    padding: 32px 24px;
  }
}
@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board__card {
    padding: 32px 8px 32px 16px;
  }
}
.notice__board__section .notice-board__card .item {
  mix-blend-mode: screen;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid #3C016F;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .item {
    gap: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board__card .item {
    gap: 10px;
    margin-bottom: 16px;
  }
}
.notice__board__section .notice-board__card .item:hover {
  background: #3C016F;
}
.notice__board__section .notice-board__card .item__icon {
  background: url(../img/right-arrow-icon.svg) no-repeat;
  top: 0 !important;
  left: 0 !important;
  width: 30px;
  height: 30px;
  transition: background 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .item__icon {
    background-size: 24px !important;
  }
}
@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board__card .item__icon {
    width: 26px;
    height: 26px;
  }
}
.notice__board__section .notice-board__card .item__text-title {
  margin-bottom: 8px;
}
.notice__board__section .notice-board__card .item__text-title .title {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .item__text-title .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .item__text-title .title {
    font-size: 16px;
  }
}

.scolorship__section {
  background: #F4F0FC;
  padding: 32px 0;
}
@media only screen and (max-width: 575px) {
  .scolorship__section {
    padding: 24px;
  }
}

.scolorship-exam .title {
  margin: 0 0 24px 0;
  font-weight: 500;
  font-size: 32px;
  color: #3C016F;
}
@media only screen and (max-width: 767px) {
  .scolorship-exam .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .scolorship-exam .title {
    font-size: 24px;
  }
}
.scolorship-exam__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.scolorship-exam__card .card-item {
  background: #3C016F;
  padding: 46px 24px;
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .scolorship-exam__card .card-item {
    padding: 14px 18px;
  }
}
@media only screen and (max-width: 575px) {
  .scolorship-exam__card .card-item {
    padding: 10px 16px;
  }
}
.scolorship-exam__card .card-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #DC25FF 0%, #3C016F 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.scolorship-exam__card .card-item:hover::before {
  opacity: 1;
}
.scolorship-exam__card .card-item .item-title {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.scolorship-exam__card .card-item .item-title .title {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .scolorship-exam__card .card-item .item-title .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .scolorship-exam__card .card-item .item-title .title {
    font-size: 16px;
  }
}
.scolorship-exam__card .card-item .item-right-arrow {
  color: #FFFFFF;
  font-size: 20px;
  transition: all 0.3s;
}

.advisors__section {
  background: linear-gradient(270deg, #4F0187 0%, #3C016F 49.72%, #4F0187 100%);
  position: relative;
  z-index: 1;
}
.advisors__section::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: url(../img/advisor-bg-noise.svg) no-repeat;
  mix-blend-mode: overlay;
  background-size: cover;
  z-index: -1;
}
.advisors__section .advisor {
  margin: 48px 0;
}
@media only screen and (max-width: 575px) {
  .advisors__section .advisor .row > * {
    width: 300px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1199px) {
  .advisors__section .advisor {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .advisors__section .advisor {
    margin: 32px 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .advisors__section .advisor {
    margin-top: 24px;
  }
}
.advisors__section .advisor__item-wrap {
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #7800BB;
  transition: all 0.4s;
}
@media only screen and (max-width: 1199px) {
  .advisors__section .advisor__item-wrap {
    margin-bottom: 32px;
  }
}
.advisors__section .advisor__item-wrap:hover {
  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.4);
}
.advisors__section .advisor__image img {
  width: 100%;
  max-height: 400px;
}
.advisors__section .advisor__designation {
  margin-top: 16px;
  text-align: center;
  transition: all 0.4s;
}
.advisors__section .advisor__designation .name {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.advisors__section .advisor__designation .sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .advisors__section .advisor__designation .sub-title {
    font-size: 17px;
  }
}

.head__inst-section .head-inst-wrap {
  max-width: 100%;
}
@media only screen and (max-width: 575px) {
  .head__inst-section .head-inst-wrap {
    max-width: 310px;
    margin: 0 auto;
  }
}
.head__inst-section .head-inst {
  margin: 32px 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .head__inst-section .head-inst {
    margin: 24px 0;
  }
}
.head__inst-section .head-inst__item {
  background: #F4F0FC;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #D8CBF0;
  transition: all 0.4s;
}
.head__inst-section .head-inst__item:hover {
  background: #D8CBF0;
}
.head__inst-section .head-inst__item:hover .sub-title {
  color: #3C016F;
}
.head__inst-section .head-inst__item:hover .title-name {
  color: #3C016F;
}
.head__inst-section .head-inst__image {
  border-radius: 12px;
  overflow: hidden;
}
.head__inst-section .head-inst__image img {
  width: 100%;
  border-radius: 12px;
  transition: all 0.3s;
  object-fit: cover;
}
.head__inst-section .head-inst__designation {
  text-align: center;
  margin-top: 16px;
}
.head__inst-section .head-inst__designation .sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: all 0.3s;
}
@media only screen and (max-width: 575px) {
  .head__inst-section .head-inst__designation .sub-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.head__inst-section .head-inst__designation .title-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1A1A1A;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .head__inst-section .head-inst__designation .title-name {
    font-size: 14px;
    line-height: 21px;
  }
}
.head__inst-section .head-inst__designation .title-name .name {
  display: inline-block;
}
.head__inst-section .head-inst-slider {
  padding-bottom: 48px;
}
.head__inst-section .head-inst-slider .swiper-pagination {
  bottom: 1px !important;
}
.head__inst-section .head-inst-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #DC25FF;
  opacity: 1;
}
.head__inst-section .head-inst-slider .swiper-pagination-bullet-active {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .head__inst-section .head-inst-slider .swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
  }
}
.head__inst-section .head-inst-slider .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(90deg, #DC25FF 0%, #3C016F 100%);
  animation: pulse-border 2s infinite ease-in-out;
  -webkit-mask: radial-gradient(#fff 4px, transparent 4px) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.head__inst-section .heads-section-btn {
  mix-blend-mode: normal;
}

.photo-gallery__section {
  background: linear-gradient(270deg, #4F0187 0%, #3C016F 49.72%, #4F0187 100%);
  position: relative;
  z-index: 1;
}
.photo-gallery__section .photo-gallery-wrap {
  margin: 34px 0;
}
@media only screen and (max-width: 575px) {
  .photo-gallery__section .photo-gallery-wrap .photo-gallery .row > * {
    max-width: 310px;
    margin: 0 auto;
  }
  .photo-gallery__section .photo-gallery-wrap .photo-gallery .row > *:not(:last-child) {
    margin-bottom: 12px;
  }
}
.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .image {
  overflow: hidden;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.3215686275);
}
.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .image img {
  width: 100%;
}
.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .text {
  margin-top: 14px;
}
.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .text .img-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFFFFF;
  transition: all 0.3s;
}
@media only screen and (max-width: 575px) {
  .photo-gallery__section .photo-gallery-wrap .photo-gallery__item .text .img-title {
    font-size: 14px;
    line-height: 20px;
  }
}
.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .text .img-title .name {
  display: inline-block;
}
.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .text:hover .img-title {
  color: #DC25FF;
}

@keyframes pulse-border {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
.contact-info-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}
.contact-info-area .info-item {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 46px 24px;
  border-radius: 12px;
  background: #3C016F;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-info-area .info-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #dc25ff 0%, #3c016f 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.contact-info-area .info-item:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .contact-info-area .info-item {
    padding: 32px 24px;
    justify-content: start;
  }
}
@media only screen and (max-width: 575px) {
  .contact-info-area .info-item {
    padding: 24px 20px;
    gap: 16px;
  }
}
.contact-info-area .info-item__left .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.contact-info-area .info-item__left .icon-box:hover {
  background: #FFFFFF;
  color: #3C016F;
}
@media only screen and (max-width: 575px) {
  .contact-info-area .info-item__left .icon-box {
    width: 35px;
    height: 35px;
  }
}
.contact-info-area .info-item__right .title {
  font-family: "Hind Siliguri", serif;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .contact-info-area .info-item__right .title {
    font-size: 16px;
  }
}
.contact-info-area .info-item__right .value {
  font-family: "Hind Siliguri", serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .contact-info-area .info-item__right .value {
    font-size: 14px;
  }
}

.form_title-two {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .form_title-two {
    font-size: 20px;
  }
}

.page__title {
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  padding: 52px 0;
  position: relative;
  z-index: 1;
}
.page__title::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: url(../img/page-title-bg.png);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .page__title {
    padding: 36px 0;
  }
}
@media only screen and (max-width: 575px) {
  .page__title {
    padding: 20px 0;
  }
}

.breadcrumb-background {
  padding: 8px 16px;
  border-radius: 8px;
  width: 100%;
}

.page-breadcrumb {
  justify-content: center;
  align-items: center;
}

.breadcrumb-item {
  font-size: 16px;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-item {
    font-size: 14px;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  color: #FFFFFF;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 6px;
  content: "\f111";
  margin: 7px 8px 0;
}

.page-breadcrumb .breadcrumb-link {
  color: #FFFFFF;
  transition: all 0.3s;
}

.page-breadcrumb .breadcrumb-link img {
  margin-bottom: 4px;
}

.page-breadcrumb .breadcrumb-link:hover {
  color: #DC25FF;
}

.page-breadcrumb .breadcrumb-item.active {
  color: #FFFFFF;
}

.member-details .personal-details-card {
  background: #F4F0FC;
  border-radius: 12px;
  padding: 24px;
}
@media only screen and (max-width: 575px) {
  .member-details .personal-details-card {
    padding: 20px;
  }
}
.member-details .personal-details-card .profile-wrap {
  display: flex;
  align-items: center;
  gap: 61px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .member-details .personal-details-card .profile-wrap {
    text-align: center;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .member-details .personal-details-card .profile-wrap {
    gap: 32px;
  }
}
.member-details .personal-details-card .profile-wrap .profile-image {
  max-width: 280px;
  background: #D8CBF0;
  border-radius: 16px;
}
@media only screen and (max-width: 575px) {
  .member-details .personal-details-card .profile-wrap .profile-image {
    max-width: 225px;
  }
}
.member-details .personal-details-card .profile-wrap .profile-image img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  top: 16px;
  right: -16px;
}
.member-details .personal-details-card .profile-wrap .profile-data .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #3C016F;
}
@media only screen and (max-width: 575px) {
  .member-details .personal-details-card .profile-wrap .profile-data .name {
    font-size: 20px;
    line-height: 26px;
  }
}
.member-details .personal-details-card .profile-wrap .profile-data .title-neme {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 6px 0 24px;
  color: #1A1A1A;
}
.member-details .personal-details-card .profile-wrap .profile-data .title-neme .sub-title {
  display: block;
  margin-bottom: 6px;
}
@media only screen and (max-width: 575px) {
  .member-details .personal-details-card .profile-wrap .profile-data .title-neme {
    font-size: 16px;
    line-height: 20px;
    margin: 4px 0 14px;
  }
}
.member-details .personal-details-card .content .description,
.member-details .personal-details-card .content .description p,
.member-details .personal-details-card .content .description * {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1A1A1A;
}
@media only screen and (max-width: 575px) {
  .member-details .personal-details-card .content .description,
  .member-details .personal-details-card .content .description p,
  .member-details .personal-details-card .content .description * {
    font-size: 14px;
    line-height: 22px;
  }
}
.member-details .personal-details-card .content .description p:not(:last-child) {
  margin-bottom: 10px;
}

.head-inst-page__section {
  position: relative;
  background: #FFFFFF;
}
.head-inst-page__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 150px;
  left: 112px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}
@media only screen and (max-width: 767px) {
  .head-inst-page__section::after {
    top: 83px;
    left: 11px;
    width: 25px;
    height: 25px;
  }
}
.head-inst-page__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/circle-small.png) no-repeat;
  bottom: 373px;
  right: 115px;
  width: 70px;
  height: 70px;
  z-index: -1;
  animation: rotate 15s infinite ease-in-out;
}

.photo-gallery-page__section {
  background: #F4F0FC;
}
.photo-gallery-page__section::after {
  background: none !important;
}
.photo-gallery-page__section .img-title {
  color: #4D4D4D !important;
}
.photo-gallery-page__section .photo-gallery {
  margin-top: 0;
}
@media only screen and (max-width: 575px) {
  .photo-gallery-page__section .photo-gallery {
    margin-top: 24px;
  }
}

.rules-details__section .main-title {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .rules-details__section .main-title {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .rules-details__section .main-title {
    margin-bottom: 20px;
  }
}
.rules-details__section .main-title .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .rules-details__section .main-title .title {
    font-size: 20px;
    line-height: normal;
  }
}
@media only screen and (max-width: 575px) {
  .rules-details__section .main-title .title {
    font-size: 18px;
  }
}

.custom-card {
  background-color: #FBF9EA;
  padding: 32px 24px;
  border-radius: 12px;
}
@media only screen and (max-width: 575px) {
  .custom-card {
    padding: 24px 16px;
  }
}
.custom-card .main-title {
  margin-bottom: 32px;
}
.custom-card .main-title .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .custom-card .main-title .title {
    font-size: 20px;
    line-height: normal;
  }
}
@media only screen and (max-width: 575px) {
  .custom-card .main-title .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .custom-card .main-title {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .custom-card .main-title {
    margin-bottom: 14px;
  }
}

.back-arrow {
  position: relative;
}
.back-arrow::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/back-arrow.png) no-repeat;
  top: 140px;
  left: 100px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}
@media only screen and (max-width: 991px) {
  .back-arrow::before {
    display: none;
  }
}
.back-arrow::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/back-arrow.png) no-repeat;
  bottom: 219px;
  right: 100px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}
@media only screen and (max-width: 991px) {
  .back-arrow::after {
    display: none;
  }
}

.scolorship-back-arrow {
  position: relative;
}
.scolorship-back-arrow::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/back-arrow.png) no-repeat;
  top: 32px;
  left: 126px;
  width: 45px;
  height: 45px;
  animation: updown 5s infinite ease-in-out;
}
@media only screen and (max-width: 1600px) {
  .scolorship-back-arrow::before {
    display: none;
  }
}
.scolorship-back-arrow::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/back-arrow.png) no-repeat;
  bottom: 10px;
  right: 126px;
  width: 45px;
  height: 45px;
  animation: updown 5s infinite ease-in-out;
}
@media only screen and (max-width: 1600px) {
  .scolorship-back-arrow::after {
    display: none;
  }
}

.about-us-card {
  border: 1px solid #D8CBF0;
  padding: 24px;
}
@media only screen and (max-width: 767px) {
  .about-us-card {
    padding: 16px;
  }
}

.rules__item .title {
  background: #F4F0FC;
  border-radius: 8px;
  font-family: "Hind Siliguri", serif;
  color: #1A1A1A;
  font-weight: 400;
  font-size: 20px;
  padding: 18px 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 1199px) {
  .rules__item .title {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .rules__item .title {
    margin-top: 18px;
    padding: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .rules__item .title {
    font-size: 16px;
    margin-top: 12px;
  }
}
.rules__item .title:hover {
  background-color: #DFCFFF;
}

.notice-board-page__section .pagination .page-link {
  border: 1px solid #7602B9;
  background-color: #4F0187;
  box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.1019607843);
  color: #FFFFFF;
}
.notice-board-page__section .pagination .page-link:hover {
  background: #7502B8;
  color: #FFFFFF;
}
.notice-board-page__section .pagination .page-link.active {
  background: #7502B8;
  color: #FFFFFF;
}
.notice-board-page__section .pagination .arrow {
  background: #7502B8;
  color: #FFFFFF;
}

.notice-details-card {
  padding: 41px 24px;
  border-radius: 12px;
  background: #F4F0FC;
}
@media only screen and (max-width: 767px) {
  .notice-details-card {
    padding: 32px 24px;
  }
}
@media only screen and (max-width: 575px) {
  .notice-details-card {
    padding: 24px 16px;
  }
}

.result-card {
  padding: 48px 64px;
  border-radius: 16px;
  background: linear-gradient(270deg, #4F0187 38.65%, #3C016F 100%);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .result-card {
    padding: 24px;
  }
}
.result-card::after {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: url(../img/result-bg-noise.svg) no-repeat;
  z-index: -1;
  mix-blend-mode: overlay;
}
.result-card .result-inside {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #3C006F;
  mix-blend-mode: screen;
}
.result-card__top {
  text-align: center;
}
.result-card__top img {
  margin-bottom: 32px;
}
.result-card__top .greeting-title {
  font-family: "Hind Siliguri", serif;
  font-size: 40px;
  font-weight: 700;
  color: #DC25FF;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .result-card__top .greeting-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .result-card__top .greeting-title {
    font-size: 26px;
  }
}
.result-card__top .greeting-subtitle {
  font-family: "Hind Siliguri", serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .result-card__top .greeting-subtitle {
    font-size: 20px;
  }
}
.result-card__bottom-card {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .result-card__bottom-card {
    margin-top: 24px;
  }
}
.result-card__bottom-card .info-item {
  font-family: #3C016F;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 575px) {
  .result-card__bottom-card .info-item {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.syllabus-item {
  background: #D8CBF0;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1215686275);
  border: none;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 575px) {
  .syllabus-item {
    gap: 16px;
  }
}
.syllabus-item:hover {
  transform: translateY(-7px);
}
.syllabus-item .stllabus-title-wrap {
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 12px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .syllabus-item .stllabus-title-wrap {
    padding: 12px;
  }
}
.syllabus-item__title {
  font-family: "Hind Siliguri", serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 60px;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .syllabus-item__title {
    font-size: 14px;
  }
}
.syllabus-item__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.syllabus-item__buttons .syllabus-btn {
  border-radius: 12px;
  padding: 10px 16px;
  background-color: #3C016F;
  font-family: "Hind Siliguri", serif;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid transparent;
  text-align: center;
  text-wrap: nowrap;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 1400px) {
  .syllabus-item__buttons .syllabus-btn {
    padding: 10px 10px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .syllabus-item__buttons .syllabus-btn {
    padding: 9px;
    font-size: 14px;
  }
}
.syllabus-item__buttons .syllabus-btn:hover {
  background: #ffffff;
  border: 1px solid #3C016F;
  color: #3C016F;
}
.syllabus-item__buttons .syllabus-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.setplan__item {
  background: #d8cbf0;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 12px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.setplan__item:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 575px) {
  .setplan__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.setplan__item:hover {
  transform: translateY(-7px);
}
.setplan__item .sit-plan-inside {
  border-radius: 12px;
  border: 1px solid #FFFFFF;
  padding: 24px;
}
@media only screen and (max-width: 1199px) {
  .setplan__item .sit-plan-inside {
    padding: 16px;
  }
}
.setplan__item__title {
  font-family: "Hind Siliguri", serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
}
.setplan__item__buttons {
  margin-top: 12px;
}
.setplan__item__buttons .setplan-btn {
  border-radius: 12px;
  padding: 10px 16px;
  background-color: #3C016F;
  font-family: "Hind Siliguri", serif;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid transparent;
  text-align: center;
  display: inline-block;
  margin-right: 12px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 991px) {
  .setplan__item__buttons .setplan-btn {
    padding: 10px 10px;
    font-size: 13px;
    margin-right: 6px;
  }
}
@media only screen and (max-width: 575px) {
  .setplan__item__buttons .setplan-btn {
    padding: 8px 10px;
  }
}
.setplan__item__buttons .setplan-btn:hover {
  background: #ffffff;
  border: 1px solid #3C016F;
  color: #3C016F;
}
.setplan__item__buttons .setplan-btn i {
  margin-right: 8px;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .blog__section .blog__search {
    margin-bottom: 24px;
  }
}
.blog__section .blog__search .search-container {
  padding: 16px 12px;
  border-radius: 8px;
  background-color: #F9F9FF;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__search .search-container {
    padding: 0;
  }
}
.blog__section .blog__search .search-input {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__search .search-input {
    margin-bottom: 24px;
  }
}
.blog__section .blog__search .search-input .search .input-group-text,
.blog__section .blog__search .search-input .search .form-control {
  background: #FFFFFF;
  border-radius: 8px;
  border: 0;
  padding: 12px 0 12px 24px;
  border: 1px solid transparent;
  border-right: none;
  font-family: "Hind Siliguri", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__search .search-input .search .input-group-text,
  .blog__section .blog__search .search-input .search .form-control {
    padding: 9px 0 9px 21px;
    font-size: 14px;
    line-height: 20px;
  }
}
.blog__section .blog__search .search-input .search .input-group-text:focus,
.blog__section .blog__search .search-input .search .form-control:focus {
  border-color: #3C016F;
  box-shadow: none;
}
.blog__section .blog__search .search-input .search .input-group-text::placeholder,
.blog__section .blog__search .search-input .search .form-control::placeholder {
  color: #757b80;
}
.blog__section .blog__search .search-input .search .input-group-text {
  padding: 16px;
  color: #FFFFFF;
  background-color: #3C016F;
  border: none;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__search .search-input .search .input-group-text {
    background: #DC25FF;
    padding: 14px;
  }
}
.blog__section .blog__search .category-container {
  padding: 16px 12px;
  border-radius: 8px;
  background-color: #F9F9FF;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__search .category-container {
    margin-bottom: 24px;
  }
}
.blog__section .blog__search .category-container .title {
  font-weight: 500;
  font-size: 20px;
  color: #19232B;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__search .category-container .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.blog__section .blog__search .category-container .category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  padding: 6px 12px;
  border-bottom: 1px dashed #D8CBF0;
  transition: all 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .blog__section .blog__search .category-container .category-item a {
    font-size: 14px;
    padding: 4px 12px;
  }
}
.blog__section .blog__search .category-container .category-item a.selected, .blog__section .blog__search .category-container .category-item a:hover {
  color: #3C016F;
}
.blog__section .blog__search .category-container .category-item:not(:last-child) {
  margin-bottom: 12px;
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
  padding-bottom: 12px;
  border-bottom: 1px dashed #D8CBF0;
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post:not(:last-child) {
  margin-bottom: 24px;
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .resent-blog-image {
  width: 110px;
  height: 82px;
  border-radius: 12px;
}
@media only screen and (max-width: 575px) {
  .blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .resent-blog-image {
    width: 87px;
    height: 60px;
  }
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .resent-blog-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .recent-blog-title .recent-title, .blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .recent-blog-title a {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  transition: all 0.3s;
  display: block;
}
@media only screen and (max-width: 575px) {
  .blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .recent-blog-title .recent-title, .blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .recent-blog-title a {
    font-size: 14px;
  }
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post .recent-blog-title .date-style {
  color: #1A1A1A;
}
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post:hover .recent-title, .blog__section .blog__search .category-container .recent-blog-content .recent-blog-post:hover a {
  color: #3C016F;
}
.blog__section .blog__search .recent-blog-card {
  margin-top: 0;
  border: 1px solid #D8CBF0;
}
@media only screen and (max-width: 1199px) {
  .blog__section .blog__search .recent-blog-card {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .blog__section .blog__search .recent-blog-card {
    margin-top: 24px;
  }
}
.blog__section .blog__content-item .blog-details-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.blog__section .blog__content-item .blog-details-image a {
  display: block;
}
.blog__section .blog__content-item .blog-details-image:hover img {
  transform: scale(1.1);
}
.blog__section .blog__content-item .blog-details-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.3s;
}
.blog__section .blog__content-item .blog-title {
  margin-top: 12px;
}
.blog__section .blog__content-item .blog-title .title, .blog__section .blog__content-item .blog-title a {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #1A1A1A;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__content-item .blog-title .title, .blog__section .blog__content-item .blog-title a {
    font-size: 17px;
    line-height: 23px;
  }
}
.blog__section .blog__content-item .blog-title .title:hover, .blog__section .blog__content-item .blog-title a:hover {
  color: #3C016F;
}
.blog__section .blog__content .date-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #D8CBF0;
}
.blog__section .blog__content .date-title .date-style {
  color: #4d4d4d;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__content .date-title .date-style {
    font-size: 14px;
  }
}
.blog__section .blog__content .date-title .blog-user {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
}
@media only screen and (max-width: 767px) {
  .blog__section .blog__content .date-title .blog-user {
    font-size: 14px;
    line-height: 20px;
  }
}
.blog__section .blog__content .date-title i {
  color: #3C016F;
}

.notice-blog-description .notice-title {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .notice-blog-description .notice-title {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .notice-blog-description .notice-title {
    margin-bottom: 20px;
  }
}
.notice-blog-description .notice-title .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .notice-blog-description .notice-title .title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .notice-blog-description .notice-title .title {
    font-size: 20px;
    line-height: 30px;
  }
}
.notice-blog-description .blog-title {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .notice-blog-description .blog-title {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .notice-blog-description .blog-title {
    margin-bottom: 20px;
  }
}
.notice-blog-description .blog-title .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1a1a1a;
}
@media only screen and (max-width: 767px) {
  .notice-blog-description .blog-title .title {
    font-size: 22px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .notice-blog-description .blog-title .title {
    font-size: 20px;
    line-height: 30px;
  }
}
.notice-blog-description .thumbnail-image {
  border-radius: 12px;
}
.notice-blog-description .thumbnail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.notice-blog-description .date-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.notice-blog-description .date-title .date-style {
  color: #4d4d4d;
}
.notice-blog-description .date-title .blog-user {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
}
@media only screen and (max-width: 575px) {
  .notice-blog-description .date-title .blog-user {
    font-size: 14px;
    line-height: 20px;
  }
}
.notice-blog-description .notice-description-card,
.notice-blog-description .blog-description-card {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .notice-blog-description .notice-description-card,
  .notice-blog-description .blog-description-card {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .notice-blog-description .notice-description-card,
  .notice-blog-description .blog-description-card {
    margin-top: 20px;
  }
}
.notice-blog-description .notice-description-card .text-area-card h1,
.notice-blog-description .notice-description-card .text-area-card h2,
.notice-blog-description .notice-description-card .text-area-card h3,
.notice-blog-description .notice-description-card .text-area-card h4,
.notice-blog-description .notice-description-card .text-area-card h5,
.notice-blog-description .notice-description-card .text-area-card h6 {
  color: #1A1A1A;
}
.notice-blog-description .notice-description-card .text-area-card h2 {
  font-weight: 700;
}
.notice-blog-description .blog-description-card .text-area-card h1,
.notice-blog-description .blog-description-card .text-area-card h2,
.notice-blog-description .blog-description-card .text-area-card h3,
.notice-blog-description .blog-description-card .text-area-card h4,
.notice-blog-description .blog-description-card .text-area-card h5,
.notice-blog-description .blog-description-card .text-area-card h6 {
  color: #1A1A1A;
}
.notice-blog-description .blog-description-card .text-area-card h2 {
  font-weight: 700;
}

.genius-club__section .main-title .title {
  font-weight: 700;
  font-size: 24px;
  color: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .genius-club__section .main-title .title {
    font-size: 20px;
  }
}
.genius-club__section .nav-pills {
  background: #f9f9ff;
  border: 1px solid #d8cbf0;
  border-radius: 24px;
  width: fit-content;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.genius-club__section .genious-btn {
  padding: 12px 20px;
  border-radius: 24px;
  font-family: "Hind Siliguri", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1A1A1A;
  background-color: transparent;
  transition: all 0.4s;
}
@media only screen and (max-width: 767px) {
  .genius-club__section .genious-btn {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 20px;
  }
}
.genius-club__section .genious-btn.active, .genius-club__section .genious-btn:hover {
  color: #FFFFFF;
  background-color: #3C016F;
}
.genius-club__section .genious-club {
  margin-top: 24px;
}
.genius-club__section .genious-club__item {
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid #d8cbf0;
  border-radius: 12px;
  box-shadow: 0px 2px 37px 0px rgba(0, 0, 0, 0.0705882353);
  background: #f9f9ff;
  transition: all 0.3s;
  background-color: transparent;
}
@media only screen and (max-width: 575px) {
  .genius-club__section .genious-club__item {
    gap: 16px;
  }
}
.genius-club__section .genious-club__item:hover .sub-title {
  color: #3C016F;
}
.genius-club__section .genious-club__item:hover {
  transform: translateY(-5px);
}
.genius-club__section .genious-club__item:hover .genious-img-wrap {
  background: #3C016F;
}
.genius-club__section .genious-club .genious-img-wrap {
  background: #d8cbf0;
  width: 312px;
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s;
}
@media only screen and (max-width: 1400px) {
  .genius-club__section .genious-club .genious-img-wrap {
    width: 250px;
  }
}
@media only screen and (max-width: 1400px) {
  .genius-club__section .genious-club .genious-img-wrap {
    width: 210px;
    padding: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .genius-club__section .genious-club .genious-img-wrap {
    width: 108px;
    padding: 7px;
  }
}
.genius-club__section .genious-club__image {
  border-radius: 8px;
  overflow: hidden;
}
.genius-club__section .genious-club__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: all 0.3s;
  object-fit: cover;
}
.genius-club__section .genious-club__designation {
  transition: all 0.3s;
}
.genius-club__section .genious-club__designation .sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 8px;
  transition: all 0.3s;
}
@media only screen and (max-width: 575px) {
  .genius-club__section .genious-club__designation .sub-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.genius-club__section .genious-club__designation .title-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1A1A1A;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .genius-club__section .genious-club__designation .title-name {
    font-size: 14px;
    line-height: 21px;
  }
}
.genius-club__section .genious-club__designation .title-name .name,
.genius-club__section .genious-club__designation .title-name .scolor,
.genius-club__section .genious-club__designation .title-name .school {
  display: block;
}

.admit-card {
  padding: 40px 48px;
  border-radius: 16px;
  background-color: #F4F0FC;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .admit-card {
    padding: 32px 24px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 575px) {
  .admit-card {
    padding: 24px 20px;
  }
}
.admit-card .admit-image-wrap {
  width: 312px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #D8CBF0;
}
@media only screen and (max-width: 1400px) {
  .admit-card .admit-image-wrap {
    width: 250px;
  }
}
@media only screen and (max-width: 1400px) {
  .admit-card .admit-image-wrap {
    width: 210px;
    padding: 16px;
  }
}
.admit-card__image {
  border-radius: 16px;
}
.admit-card__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
.admit-card__content {
  margin: 24px 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .admit-card__content {
    margin-top: 0;
    text-align: center;
  }
}
.admit-card__content .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #3C016F;
}
@media only screen and (max-width: 575px) {
  .admit-card__content .name {
    font-size: 20px;
    line-height: 24px;
  }
}
.admit-card__content .profile-details {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #4d4d4d;
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .admit-card__content .profile-details {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .admit-card__content .profile-details {
    font-size: 16px;
    line-height: 22px;
    margin-top: 8px;
  }
}
.admit-card__buttons {
  display: flex;
  justify-content: center;
}
.admit-card__buttons .admit-card-btn {
  border-radius: 12px;
  padding: 12px 16px;
  background-color: #3C016F;
  font-family: "Hind Siliguri", serif;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid transparent;
  text-align: center;
  display: inline-block;
  margin-right: 12px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 1400px) {
  .admit-card__buttons .admit-card-btn {
    padding: 10px 10px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .admit-card__buttons .admit-card-btn {
    padding: 9px;
    font-size: 14px;
  }
}
.admit-card__buttons .admit-card-btn:hover {
  background: #ffffff;
  border: 1px solid #3C016F;
  color: #3C016F;
}
.admit-card__buttons .admit-card-btn i {
  margin-right: 8px;
  font-size: 18px;
}

/*# sourceMappingURL=style.css.map */
