@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(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3), 0 0 0 30px rgba(0, 220, 130, 0);
    box-shadow: 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3), 0 0 0 30px rgba(0, 220, 130, 0);
  }
}

@keyframes ripple-green {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3), 0 0 0 30px rgba(0, 220, 130, 0);
    box-shadow: 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 20px rgba(0, 220, 130, 0.3), 0 0 0 30px rgba(0, 220, 130, 0);
  }
}

@keyframes ripple-green-small {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.3), 0 0 0 5px rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 220, 130, 0.3), 0 0 0 5px rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 5px rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 15px rgba(0, 220, 130, 0);
    box-shadow: 0 0 0 5px rgba(0, 220, 130, 0.3), 0 0 0 10px rgba(0, 220, 130, 0.3), 0 0 0 15px rgba(0, 220, 130, 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 {
  color: #00DC82;
  background-color: #003C3C;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 32px;
  border: 1px solid #003C3C;
  border-radius: 12px;
  margin-left: 24px;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 1199px) {
  .registaiton_btn a {
    font-size: 14px;
    padding: 8px 20px;
    margin-left: 16px;
  }
}

.registaiton_btn a:hover {
  color: #003C3C;
  background-color: transparent;
}

.registaiton_btn i {
  margin-right: 5px;
}

.section-btn {
  color: #FFFFFF;
  background-color: #003C3C;
  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;
}

@media only screen and (max-width: 575px) {
  .section-btn {
    font-size: 14px;
    padding: 7px 18px;
  }
}

.section-btn:hover {
  color: #003C3C;
  background-color: transparent;
  border: 1px solid #003C3C;
}

.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: #00DC82;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  border: 1px solid #ECF2F0;
  -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: #003C3C;
}

.slider-icon-next,
.slider-icon-prev {
  width: 40.65px;
  height: 40.65px;
  border-radius: 3px;
  background-color: #003C3C;
  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: #00DC82;
  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: #003C3C;
}

.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: 36px;
  width: 36px;
  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;
  border-radius: 5px;
  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: #003C3C;
  color: #FFFFFF;
}

.pagination .page-link.active {
  background: #003C3C;
  color: #FFFFFF;
}

.pagination .page-link:focus {
  box-shadow: none;
  border: none;
}

.pagination .arrow {
  background: #003C3C;
  color: #FFFFFF;
}

.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: #003C3C;
  border-bottom: 1px solid #003C3C;
  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;
}

.form-card {
  padding: 32px;
  border: 1px solid #C8CCD5;
  border-radius: 12px;
}

.form-card-two {
  height: 100%;
  display: flex;
  align-items: center;
}

.form-card-content-wrap {
  width: 100%;
}

@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-family: "Hind Siliguri", serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

@media only screen and (max-width: 575px) {
  .form-card .form_title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.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: 1px solid #C8CCD5;
  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: #003C3C;
}

.gf-input-group .gf-input:focus-visible {
  outline: 0;
}

.gf-input-group .gf-input::placeholder {
  color: #4D4D4D;
}

.gf-form-btn-wrap .gf-form-btn {
  font-family: "Hind Siliguri", serif;
  font-weight: 500;
  font-size: 20px;
  background-color: #003C3C;
  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: #003C3C;
  color: #003C3C;
}

.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: "Playfair Display", serif;
}

.english-font .gf-form-btn {
  font-family: "Playfair Display", serif;
  font-size: 16px;
}

.file-input-container {
  margin-bottom: 24px;
  position: relative;
}

.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: #003C3C;
  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: #003C3C;
  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: #003C3C;
  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;
}

.section__padding {
  padding: 60px 0;
}

@media only screen and (max-width: 1199px) {
  .section__padding {
    padding: 50px 0;
  }
}

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

@media only screen and (max-width: 767px) {
  .section__padding {
    padding: 30px 0;
  }
}

.section__title {
  color: #003C3C;
  text-align: center;
  padding-bottom: 12px;
  width: fit-content;
  padding-right: 25px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  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::after {
  content: "";
  position: absolute;
  background-position: center bottom !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/bottom-arrow.svg) no-repeat;
}

.section__title::before {
  content: "";
  position: absolute;
  background-position: top right !important;
  width: 100%;
  height: 100%;
  top: -10px;
  left: 0;
  z-index: -1;
  background: url(../img/right-arrow.svg) no-repeat;
}

.section__title-white {
  color: #003C3C;
  text-align: center;
  padding-bottom: 12px;
  width: fit-content;
  padding-right: 25px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.section__title-white::after {
  content: "";
  position: absolute;
  background-position: center bottom !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/bottom-center.svg) no-repeat;
}

.section__title-white::before {
  content: "";
  position: absolute;
  background-position: top right !important;
  width: 100%;
  height: 100%;
  top: -10px;
  left: 0;
  z-index: -1;
  background: url(../img/right-top.svg) no-repeat;
}

.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 {
  background: linear-gradient(90deg, #003C3C 35.54%, #067B3F 177.68%);
  position: relative;
}

.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/Group.svg) no-repeat;
}

.footer__wrap {
  position: relative;
  z-index: 11;
}

.footer-widget-1 p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  color: #ffffff;
  margin: 32px 60px 32px 0;
}

.footer-logo {
  width: 100% !important;
}

@media (min-width: 768px) {
  .footer-logo {
    width: 90% !important;
  }
}

@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: 500;
  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: 400;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 20px;
  display: flex;
}

@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: #00DC82;
}

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

.copyright__section {
  background: #003C3C;
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid #005858;
}

@media only screen and (max-width: 575px) {
  .copyright__section {
    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: #00DC82;
}

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

.header-area {
  background: #FFFFFF;
  position: relative;
}

.header-bottom.sticky {
  position: fixed;
  z-index: 999;
  width: 100%;
  background-color: transparent;
  top: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  animation: sticky 1s;
  left: 0;
}

.header-bottom-two.sticky {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 2px 17px 0px #0000001F;
  box-shadow: 0px 2px 17px 0px #0000001F;
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

/*navbar here*/
.header-bottom {
  position: absolute;
  width: 100%;
  top: 60px;
  z-index: 222;
}

@media only screen and (max-width: 991px) {
  .header-bottom {
    top: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .header-bottom {
    top: 35px;
  }
}

.header-bottom-two {
  position: inherit;
  top: 0;
}

.header-menu-wrap {
  background: #FFFFFF;
  padding: 3px 32px;
  border-radius: 12px;
  box-shadow: 0px 2px 17px 0px #0000001F;
}

.header-bottom-two .header-menu-wrap {
  box-shadow: none;
}

@media only screen and (max-width: 1199px) {
  .header-menu-wrap {
    padding: 3px 14px;
  }
}

.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: 260px;
  }
}

.m-logo {
  background-color: #FFFFFF;
  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: #003C3C;
  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: #003C3C;
  background-color: #ECF2F0;
}

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

.header-horizontal-menu .menu-content li .sub-menu {
  box-shadow: 0px 2px 8px 0.56px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: absolute;
  top: 100%;
  width: 200px;
  right: 0;
  -webkit-transform-origin: 0% 0%;
  -webkit-transform-style: preserve-3d;
  transform: rotateX(-90deg);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: hidden;
  border-radius: 12px;
  border-top: 4px solid #003C3C;
}

.header-horizontal-menu .menu-content li .sub-menu li {
  margin-left: 0;
  padding: 0;
  display: block;
  position: relative;
  border-bottom: 1px solid #D6E2DE;
}

.header-horizontal-menu .menu-content li .sub-menu li a {
  color: #003C3C;
  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: #003C3C;
}

.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;
}

.header-horizontal-menu .menu-content li .sub-menu li:hover .sub-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

/*=========== Mobile  ========================================*/
.mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 12px;
}

@media only screen and (max-width: 575px) {
  .mobile-toggle {
    border-radius: 5px;
  }
}

.mobile-toggle a {
  color: #003C3C;
  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: #003C3C;
  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: #00DC82;
  padding: 0 24px;
}

.mobile-canvas-close p {
  color: #003C3C;
  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: #ECF2F0;
  color: #003C3C;
}

.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-container {
  max-width: 1740px !important;
}

.header__top {
  background: linear-gradient(180deg, #003c3c 0%, #067b3f 208.33%);
  padding: 16px 0 50px;
}

@media only screen and (max-width: 991px) {
  .header__top {
    padding: 15px 0 37px;
  }
}

@media only screen and (max-width: 575px) {
  .header__top {
    padding: 15px 0 56px;
  }
}

.header__top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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;
  padding-right: 20px;
  display: inline-block;
}

.header__top-wrap .number-gmail a i {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .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;
    padding-right: 5px;
  }
}

.header__top-wrap .number-gmail a:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  border-right: 1px solid #FFFFFF;
}

.header__top-wrap .number-gmail a:not(:first-child) {
  padding: 0 0 0 24px;
}

@media only screen and (max-width: 575px) {
  .header__top-wrap .number-gmail a:not(:first-child) {
    padding: 0 0 0 5px;
  }
}

.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;
  }
}

.notice__board__section .notice-board {
  margin: 0;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .notice__board__section .notice-board {
    margin-bottom: 38px;
  }
}

@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board {
    margin-bottom: 32px;
  }
}

.notice__board__section .notice-board__title {
  margin: 0 0 24px 0;
}

.notice__board__section .notice-board__card {
  background: #003C3C;
  border-radius: 12px;
  padding: 46px 24px;
  position: relative;
  z-index: 1;
}

.notice__board__section .notice-board__card .content {
  max-height: 430px;
  min-height: 430px;
}

@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 .content {
    max-height: 335px;
    min-height: 200px;
  }
}

.notice__board__section .notice-board__card .swiper {
  width: 100%;
  height: 100%;
}

.notice__board__section .notice-board__card .swiper-slide {
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.notice__board__section .notice-board__card .swiper-scrollbar.swiper-scrollbar-vertical,
.notice__board__section .notice-board__card .swiper-vertical>.swiper-scrollbar {
  width: 12px;
  background: #005858;
  right: 0;
}

@media only screen and (max-width: 575px) {

  .notice__board__section .notice-board__card .swiper-scrollbar.swiper-scrollbar-vertical,
  .notice__board__section .notice-board__card .swiper-vertical>.swiper-scrollbar {
    width: 8px;
  }
}

.notice__board__section .notice-board__card .swiper-scrollbar-drag {
  background: #00DC82;
}

.notice__board__section .notice-board__card::after {
  content: "";
  position: absolute;
  background: url(../img/notice-board-bg-effect.svg) no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.notice__board__section .notice-board__card .card-scroll-wrap .item {
  display: flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #005858;
  padding-bottom: 12px;
  margin-right: 24px;
}

@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .card-scroll-wrap .item {
    gap: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board__card .card-scroll-wrap .item {
    gap: 10px;
  }
}

.notice__board__section .notice-board__card .card-scroll-wrap .item__icon {
  position: relative;
  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 .card-scroll-wrap .item__icon {
    background-size: 24px !important;
  }
}

@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board__card .card-scroll-wrap .item__icon {
    width: 26px;
    height: 26px;
  }
}

.notice__board__section .notice-board__card .card-scroll-wrap .item:hover .item__icon {
  background: url(../img/right-arrow-icon-light.svg) no-repeat;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .card-scroll-wrap .item:hover .item__icon {
    background-size: 24px !important;
  }
}

.notice__board__section .notice-board__card .card-scroll-wrap .item:hover .title {
  color: #00DC82;
  transition: color 0.3s ease-in-out;
}

.notice__board__section .notice-board__card .card-scroll-wrap .item:hover .date-style {
  color: #00DC82;
  transition: color 0.3s ease-in-out;
}

.notice__board__section .notice-board__card .card-scroll-wrap .item:not(:last-child) {
  margin-bottom: 24px;
}

@media only screen and (max-width: 575px) {
  .notice__board__section .notice-board__card .card-scroll-wrap .item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.notice__board__section .notice-board__card .card-scroll-wrap .item__text-title {
  margin-bottom: 8px;
}

.notice__board__section .notice-board__card .card-scroll-wrap .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 .card-scroll-wrap .item__text-title .title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .notice__board__section .notice-board__card .card-scroll-wrap .item__text-title .title {
    font-size: 16px;
  }
}

.notice__board__section .notice-board__card-page {
  background: none;
  padding: 0;
}

.notice__board__section .notice-board__card-page::after {
  background: none;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item {
  background: #D6E2DE;
  padding: 12px;
  border-bottom: none;
  margin-right: 0;
  border-radius: 12px;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item__icon {
  background: url(../img/gray-light-arrow.svg) no-repeat;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item:hover .item__icon {
  background: url(../img/right-arrow-icon.svg) no-repeat;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item:hover .title {
  color: #FFFFFF;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item:hover .date-style {
  color: #FFFFFF;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item:hover {
  background: #003C3C;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item:not(:last-child) {
  margin-bottom: 24px;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item__text-title {
  margin-bottom: 8px;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item__text-title .title {
  color: #1A1A1A;
}

.notice__board__section .notice-board__card-page .card-scroll-wrap .item__text .date-style {
  color: #1A1A1A;
}

.notice__board__section .scolorship-exam__title {
  margin: 0 0 24px 0;
}

.notice__board__section .scolorship-exam__card {
  background: #003C3C;
  border-radius: 12px;
  padding: 24px;
}

@media only screen and (max-width: 1199px) {
  .notice__board__section .scolorship-exam__card {
    padding: 18px;
  }
}

.notice__board__section .scolorship-exam__card .card-item-wrap:not(:last-of-type) {
  margin-bottom: 20px;
  display: block;
}

.notice__board__section .scolorship-exam__card .card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border: 1px solid #005858;
  border-radius: 12px;
  transition: all 0.3s;
}

@media only screen and (max-width: 1199px) {
  .notice__board__section .scolorship-exam__card .card-item {
    padding: 14px 18px;
  }
}

@media only screen and (max-width: 575px) {
  .notice__board__section .scolorship-exam__card .card-item {
    padding: 10px 16px;
  }
}

.notice__board__section .scolorship-exam__card .card-item:hover {
  background: #00DC82;
}

.notice__board__section .scolorship-exam__card .card-item:hover .title {
  color: #003C3C !important;
}

.notice__board__section .scolorship-exam__card .card-item:hover .item-right-arrow {
  color: #003C3C !important;
}

.notice__board__section .scolorship-exam__card .card-item .item-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice__board__section .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) {
  .notice__board__section .scolorship-exam__card .card-item .item-title .title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .notice__board__section .scolorship-exam__card .card-item .item-title .title {
    font-size: 16px;
  }
}

.notice__board__section .scolorship-exam__card .card-item .item-right-arrow {
  color: #FFFFFF;
  font-size: 20px;
  transition: all 0.3s;
}

.advisors__section {
  background-color: #ECF2F0;
  position: relative;
  z-index: 1;
}

.advisors__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/circle-bg-arrow.png) no-repeat;
  left: 44px;
  width: 90px;
  height: 92.57px;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  left: 90px;
  animation: rotate 20s infinite linear;
}

.advisors__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/advisor-scquare-arrow.png) no-repeat;
  width: 80px;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  right: 90px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.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 {
  padding-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
  .advisors__section .advisor__item-wrap {
    margin-bottom: 32px;
  }
}

.advisors__section .advisor__item {
  position: relative;
  transition: all 0.4s;
}

.advisors__section .advisor__item:hover {
  transform: translateY(-10px);
}

.advisors__section .advisor__item:hover .advisor__designation {
  background-color: #003C3C;
}

.advisors__section .advisor__item:hover .name {
  color: #FFFFFF;
}

.advisors__section .advisor__item:hover .sub-title {
  color: #FFFFFF;
}

.advisors__section .advisor__image img {
  width: 100%;
  max-height: 312px;
}

.advisors__section .advisor__designation {
  position: absolute;
  bottom: -40px;
  background: #FFFFFF;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  margin: 0 6%;
  width: 88%;
  transition: all 0.4s;
}

.advisors__section .advisor__designation .name {
  font-size: 16px;
  font-weight: 400;
  color: #4D4D4D;
  margin-bottom: 8px;
}

.advisors__section .advisor__designation .sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #003C3C;
}

@media only screen and (max-width: 991px) {
  .advisors__section .advisor__designation .sub-title {
    font-size: 17px;
  }
}

.faq__section {
  background: linear-gradient(90deg, #003C3C 35.54%, #067B3F 177.68%);
  position: relative;
}

.faq__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/home-page/faq-pattern-bg.svg) no-repeat;
  opacity: 20%;
}

.faq__section .faq-wrap {
  position: relative;
  z-index: 11;
}

.faq__section .faq-wrap .faq {
  margin: 48px 0;
}

@media only screen and (max-width: 991px) {
  .faq__section .faq-wrap .faq {
    margin: 36px 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;
  background: #005858;
}

.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: #FFFFFF;
  background-color: #005858;
}

@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: #00DC82;
  border: none;
}

.faq__section .faq-wrap .faq .faq__accordion .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f054";
  transform: rotate(90deg);
  color: #00DC82;
}

.faq__section .faq-wrap .faq .faq__accordion .accordion-body {
  background-color: #005858;
  color: #FFFFFF;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-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 {
  color: #003C3C;
  background-color: #FFFFFF;
}

.faq__section .faq-section-btn:hover {
  color: #00DC82;
  border-color: #00DC82;
  background-color: transparent;
}

.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: 48px 0;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .head__inst-section .head-inst {
    margin: 24px 0;
  }
}

.head__inst-section .head-inst__item:hover .head-inst__designation {
  background-color: #003C3C;
}

.head__inst-section .head-inst__item:hover .sub-title {
  color: #00DC82;
}

.head__inst-section .head-inst__item:hover .title-name {
  color: #FFFFFF;
}

.head__inst-section .head-inst__item:hover img {
  transform: scale(1.1);
}

.head__inst-section .head-inst__image {
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
}

.head__inst-section .head-inst__image img {
  width: 100%;
  max-height: 312px;
  min-height: 312px;
  border-radius: 8px 8px 0px 0px;
  transition: all 0.3s;
  object-fit: cover;
}

.head__inst-section .head-inst__designation {
  background-color: #FFFFFF;
  padding: 16px 12px 16px 12px;
  border-radius: 0px 0px 8px 8px;
  text-align: center;
  transition: all 0.3s;
}

.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: #4D4D4D;
  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-next {
  right: -100px;
  border: 1px solid #003C3C;
}

@media only screen and (max-width: 1550px) {
  .head__inst-section .head-inst-next {
    right: -20px;
  }
}

@media only screen and (max-width: 575px) {
  .head__inst-section .head-inst-next {
    right: -10px;
  }
}

.head__inst-section .head-inst-prev {
  left: -100px;
  border: 1px solid #003C3C;
}

@media only screen and (max-width: 1550px) {
  .head__inst-section .head-inst-prev {
    left: -20px;
  }
}

@media only screen and (max-width: 575px) {
  .head__inst-section .head-inst-prev {
    left: -10px;
  }
}

.photo-gallery__section {
  background-color: #ECF2F0;
  position: relative;
  z-index: 1;
}

.photo-gallery__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 44px;
  left: 44px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.photo-gallery__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 44px;
  right: 44px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.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 {
  border-radius: 12px;
  overflow: hidden;
}

.photo-gallery__section .photo-gallery-wrap .photo-gallery__item .image img {
  width: 100%;
  border-radius: 12px;
}

.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: #4D4D4D;
}

@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;
}

.contact-info-area .info-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #C8CCD5;
}

@media only screen and (max-width: 575px) {
  .contact-info-area .info-item {
    padding-bottom: 16px;
    gap: 16px;
  }
}

.contact-info-area .info-item__left .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #4D4D4D;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #003C3C;
  -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: #003C3C;
  color: #FFFFFF;
}

@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;
}

@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: #4D4D4D;
}

@media only screen and (max-width: 575px) {
  .contact-info-area .info-item__right .value {
    font-size: 14px;
  }
}

.page__title {
  background: url(../img/page-title-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 52px 0;
}

@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: #00DC82;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 6px;
  content: "\f111";
  margin: 7px 8px 0;
}

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

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

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

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

.member-details {
  position: relative;
}

.member-details::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/wave.png) no-repeat;
  bottom: 240px;
  right: 125px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: mover 5s infinite ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .member-details::after {
    display: none;
  }
}

.member-details .image-wrap {
  width: 100%;
  background-color: #ECF2F0;
  border-radius: 12px;
  padding: 60px;
}

@media only screen and (max-width: 1199px) {
  .member-details .image-wrap {
    padding: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .member-details .image-wrap {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .member-details .image-wrap {
    width: 250px;
    margin-bottom: 32px;
  }
}

@media only screen and (max-width: 575px) {
  .member-details .image-wrap {
    width: 195px;
    margin-bottom: 24px;
  }
}

.member-details .image-wrap .image {
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .member-details .image-wrap .image {
    overflow: hidden;
  }
}

.member-details .image-wrap .image img {
  width: 100%;
  border-radius: 16px;
}

.member-details .image-wrap .image::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: -10px;
  left: -20px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.member-details .image-wrap .image::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: -20px;
  right: -20px;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.member-details .content .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #003C3C;
}

@media only screen and (max-width: 575px) {
  .member-details .content .name {
    font-size: 20px;
    line-height: 26px;
  }
}

.member-details .content .title-neme {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 6px 0 24px;
  color: #4D4D4D;
}

.member-details .content .title-neme .sub-title {
  display: block;
  margin-bottom: 6px;
}

@media only screen and (max-width: 575px) {
  .member-details .content .title-neme {
    font-size: 16px;
    line-height: 20px;
    margin: 4px 0 14px;
  }
}

.member-details .content .description,
.member-details .content .description p,
.member-details .content .description * {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1A1A1A;
}

@media only screen and (max-width: 575px) {

  .member-details .content .description,
  .member-details .content .description p,
  .member-details .content .description * {
    font-size: 14px;
    line-height: 22px;
  }
}

.member-details .content .description p:not(:last-child) {
  margin-bottom: 10px;
}

.head-inst-page__section {
  position: relative;
}

.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 {
  position: relative;
}

.photo-gallery-page__section::after {
  top: 382px;
  left: 115px;
}

.photo-gallery-page__section::before {
  bottom: 382px;
  right: 115px;
}

.faq-page__section {
  background: none;
  position: relative;
}

.faq-page__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 10%;
  left: 6%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.faq-page__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 20%;
  right: 6%;
  width: 70px;
  height: 70px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.faq-page__section .accordion-button {
  color: #003C3C !important;
  background-color: #ECF2F0 !important;
}

.faq-page__section .accordion-button:not(.collapsed) {
  color: #00DC82 !important;
  background-color: #005858 !important;
}

.rules-details__section {
  position: relative;
}

.rules-details__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 25%;
  left: 7%;
  width: 13.16px;
  height: 53.06px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.rules-details__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/wave-two.png) no-repeat;
  top: 25%;
  right: 10%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.custom-card {
  background-color: #ECF2F0;
  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;
  }
}

.about-us__section {
  position: relative;
}

.about-us__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 25%;
  left: 7%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.about-us__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 7%;
  right: 21%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.result-form-section {
  position: relative;
}

.result-form-section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 25%;
  left: 7%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

@media only screen and (max-width: 991px) {
  .result-form-section::after {
    display: none;
  }
}

.result-form-section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 7%;
  right: 21%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

@media only screen and (max-width: 991px) {
  .result-form-section::before {
    display: none;
  }
}

.rules {
  background-color: #ECF2F0;
  border-radius: 6px;
  padding: 0 24px 32px;
}

@media only screen and (max-width: 575px) {
  .rules {
    padding: 0 16px 16px;
  }
}

.rules__item .title {
  font-family: "Hind Siliguri", serif;
  color: #003C3C;
  font-weight: 400;
  font-size: 20px;
  display: block;
  border-bottom: 1px solid #D6E2DE;
  padding: 12px;
  margin-top: 32px;
  -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: 24px;
  }
}

@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: #D6E2DE;
  border-radius: 8px;
}

.rules__item .title::before {
  content: "\f0a4";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 12px;
}

.notice-board-page__section {
  position: relative;
}

.notice-board-page__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 15%;
  left: 4%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

@media only screen and (max-width: 767px) {
  .notice-board-page__section::after {
    width: 25px;
    height: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .notice-board-page__section::after {
    display: none;
  }
}

.notice-board-page__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 25%;
  right: 4%;
  width: 70px;
  height: 70px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

@media only screen and (max-width: 575px) {
  .notice-board-page__section::before {
    display: none;
  }
}

.notice-board-page__section .pagination {
  margin-top: 24px;
}

@media only screen and (max-width: 1199px) {
  .notice-board-page__section .pagination {
    margin-bottom: 0;
  }
}

.result-card {
  padding: 48px 80px;
  border-radius: 16px;
  background: linear-gradient(90deg, #003C3C 35.54%, #067B3F 177.68%);
  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.svg) no-repeat;
  z-index: -1;
}

.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: 24px;
  font-weight: 700;
  color: #00DC82;
  margin-bottom: 20px;
}

.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 {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #00DC82;
  background: linear-gradient(90deg, #003C3C -16.46%, #067B3F 71.68%);
  margin-top: 32px;
}

@media only screen and (max-width: 575px) {
  .result-card__bottom-card {
    padding: 16px;
  }
}

.result-card__bottom-card .info-item {
  font-family: #003C3C;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .result-card__bottom-card .info-item {
    font-size: 16px;
  }
}

.result-card__bottom-card .info-item:not(:last-child) {
  margin-bottom: 16px;
}

@media only screen and (max-width: 575px) {
  .result-card__bottom-card .info-item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.syllabus-item {
  margin-bottom: 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: 575px) {
  .syllabus-item {
    margin-bottom: 16px;
  }
}

.syllabus-item:hover {
  transform: translateY(-7px);
}

.syllabus-item__title {
  font-family: "Hind Siliguri", serif;
  font-size: 20px;
  font-weight: 500;
  color: #003C3C;
  min-height: 60px;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .syllabus-item__title {
    font-size: 17px;
  }
}

.syllabus-item__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.syllabus-item__buttons .syllabus-btn {
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #003C3C;
  font-family: "Hind Siliguri", serif;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid transparent;
  text-align: center;
  -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 #003C3C;
  color: #003C3C;
}

.syllabus-item__buttons .syllabus-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.setplan__item {
  display: flex;
  align-items: center;
  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;
  -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) {
  .setplan__item {
    flex-direction: column;
    gap: 20px;
  }
}

.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__title {
  font-family: "Hind Siliguri", serif;
  font-size: 20px;
  font-weight: 500;
  color: #003C3C;
}

.setplan__item__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.setplan__item__buttons .setplan-btn {
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #003C3C;
  font-family: "Hind Siliguri", serif;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid transparent;
  text-align: center;
  -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) {
  .setplan__item__buttons .setplan-btn {
    padding: 10px 10px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .setplan__item__buttons .setplan-btn {
    padding: 8px 10px;
    font-size: 14px;
  }
}

.setplan__item__buttons .setplan-btn:hover {
  background: #ffffff;
  border: 1px solid #003C3C;
  color: #003C3C;
}

.setplan__item__buttons .setplan-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.blog__section .blog__search .search-input {
  margin-bottom: 32px;
}

.blog__section .blog__search .search-input .search .input-group-text,
.blog__section .blog__search .search-input .search .form-control {
  background: #ECF2F0;
  border-radius: 8px;
  border: 0;
  padding: 12px 0 12px 24px;
  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: 575px) {

  .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 {
  box-shadow: unset;
}

.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: #003C3C;
  border: none;
}

@media only screen and (max-width: 575px) {
  .blog__section .blog__search .search-input .search .input-group-text {
    padding: 14px;
  }
}

.blog__section .blog__search .category-container {
  padding: 16px 12px;
  border-radius: 8px;
  background-color: #ECF2F0;
  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: 575px) {
  .blog__section .blog__search .category-container .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.blog__section .blog__search .category-container .category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #4D4D4D;
  padding: 6px 12px;
  border-bottom: 1px solid #4D4D4D;
  transition: all 0.3s;
  cursor: pointer;
}

@media only screen and (max-width: 575px) {
  .blog__section .blog__search .category-container .category-item {
    font-size: 14px;
    padding: 4px 12px;
  }
}

.blog__section .blog__search .category-container li:not(:last-child) .category-item {
  margin-bottom: 12px;
}

.blog__section .blog__search .category-container .category-item.selected,
.blog__section .blog__search .category-container .category-item:hover {
  border-color: transparent;
  background: #D6E2DE;
  border-radius: 5px;
  color: #003C3C;
}

.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.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: 94px;
  height: 71px;
  border-radius: 3px;
}

@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: 3px;
}

.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:hover .recent-title,
.blog__section .blog__search .category-container .recent-blog-content .recent-blog-post:hover a {
  color: #003C3C;
}

.blog__section .blog__search .recent-blog-card {
  margin-top: 0;
}

@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%;
  min-height: 188px;
  max-height: 188px;
  border-radius: 5px 5px 0 0;
  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%;
  border-radius: 5px 5px 0 0;
  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: #003C3C;
}

.blog__section .blog__content .date-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.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;
  }
}

.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: #003C3C;
}

@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: #003C3C;
}

.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 {
  position: relative;
}

.genius-club__section::after {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  bottom: 25%;
  left: 7%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.genius-club__section::before {
  content: "";
  position: absolute;
  background: url(../img/image-gallery/gallery-bg-arrow.png) no-repeat;
  top: 7%;
  right: 10%;
  width: 45px;
  height: 45px;
  z-index: -1;
  animation: updown 5s infinite ease-in-out;
}

.genius-club__section .main-title .title {
  color: #003C3C;
}

.genius-club__section .genious-btn {
  padding: 4px 16px;
  font-family: "Hind Siliguri", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1A1A1A;
  background-color: #D6E2DE;
  margin-right: 24px;
}

@media only screen and (max-width: 575px) {
  .genius-club__section .genious-btn {
    padding: 4px 14px;
    font-size: 14px;
    line-height: 20px;
    margin-right: 12px;
  }
}

.genius-club__section .genious-btn.active,
.genius-club__section .genious-btn:hover {
  color: #00DC82;
  background-color: #003C3C;
}

.genius-club__section .genious-club {
  margin-top: 24px;
  position: relative;
}

.genius-club__section .genious-club .row>* {
  max-width: 100%;
}

@media only screen and (max-width: 575px) {
  .genius-club__section .genious-club .row>* {
    max-width: 310px;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .genius-club__section .genious-club {
    margin: 24px 0;
  }
}

.genius-club__section .genious-club__item {
  transition: all 0.3s;
  background-color: transparent;
}

.genius-club__section .genious-club__item:hover .genious-club__designation {
  background-color: #003C3C;
}

.genius-club__section .genious-club__item:hover .sub-title {
  color: #00DC82;
}

.genius-club__section .genious-club__item:hover .title-name {
  color: #FFFFFF;
}

.genius-club__section .genious-club__item:hover {
  transform: translateY(-5px);
}

.genius-club__section .genious-club__image {
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
}

.genius-club__section .genious-club__image img {
  width: 100%;
  max-height: 294px;
  min-height: 294px;
  border-radius: 8px 8px 0px 0px;
  transition: all 0.3s;
  object-fit: cover;
}

.genius-club__section .genious-club__designation {
  padding: 16px 12px 16px 12px;
  border-radius: 0px 0px 8px 8px;
  text-align: center;
  transition: all 0.3s;
}

.genius-club__section .genious-club__designation .sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #003C3C;
  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: #4D4D4D;
  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;
  border: 1px solid #c8ccd5;
}

@media only screen and (max-width: 575px) {
  .admit-card {
    padding: 32px 24px;
  }
}

.admit-card__image {
  width: 184px;
  height: 184px;
  border-radius: 16px;
}

.admit-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.admit-card__content {
  margin: 24px 0;
}

.admit-card__content .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #003C3C;
}

@media only screen and (max-width: 575px) {
  .admit-card__content .name {
    font-size: 22px;
    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 .admit-card-btn {
  border-radius: 12px;
  padding: 12px 16px;
  background-color: #003C3C;
  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 #003C3C;
  color: #003C3C;
}

.admit-card__buttons .admit-card-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.custom-confirm-btn {
  font-family: "Hind Siliguri", serif;
}

.payment__section .custom-card {
  padding: 40px 48px;
}

@media only screen and (max-width: 767px) {
  .payment__section .custom-card {
    padding: 32px;
  }
}

@media only screen and (max-width: 575px) {
  .payment__section .custom-card {
    padding: 28px 24px;
  }
}

.payment__section .user-image {
  width: 184px;
  height: 184px;
  border-radius: 16px;
}

@media only screen and (max-width: 575px) {
  .payment__section .user-image {
    width: 150px;
    height: 150px;
  }
}

.payment__section .user-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.payment__section .payment__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}

@media only screen and (max-width: 575px) {
  .payment__section .payment__details {
    gap: 16px;
    margin: 16px 0;
  }
}

.payment__section .payment__details .item {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (max-width: 575px) {
  .payment__section .payment__details .item {
    font-size: 14px;
    line-height: 20px;
  }
}

.payment__section .payment-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.payment__section .payment-btn-wrap .payment-btn {
  color: #FFFFFF;
  background-color: #003C3C;
  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;
  flex: 1;
  padding: 12px 20px;
}

@media only screen and (max-width: 575px) {
  .payment__section .payment-btn-wrap .payment-btn {
    font-size: 14px;
    padding: 7px 18px;
  }
}

.payment__section .payment-btn-wrap .payment-btn:hover {
  color: #003C3C;
  background-color: transparent;
  border: 1px solid #003C3C;
}

.payment__section .payment-btn-wrap .payment-btn:hover .icon {
  background-color: #003C3C;
}

.payment__section .payment-btn-wrap .payment-btn-outline {
  color: #FFFFFF;
  background-color: #003C3C;
  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;
  background-color: transparent;
  color: #003C3C;
  border-color: #003C3C;
  flex: 1;
  padding: 12px 20px;
}

@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: #003C3C;
}

.payment__section .payment-btn-wrap .payment-btn-outline:hover .icon {
  background-color: #FFFFFF;
}


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