@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed: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&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&family=Port+Lligat+Slab&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&display=swap");
body {
  font-family: "Poppins", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4f4f4f;
  overflow-x: hidden;
  transition: all 0.5s ease;
  background-color: #ffffff;
  line-height: 1.5;
}
body.locked {
  overflow: hidden;
}

p,
small,
span {
  color: #4f4f4f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  color: #213b75;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
}

p {
  font-size: 1rem;
  transition: all 0.5s ease;
  line-height: 1.75rem;
}
p:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  p {
    line-height: normal;
  }
}

li {
  font-size: 16px;
  transition: all 0.5s ease;
}

input {
  outline: none !important;
  box-shadow: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control::placeholder,
input.form-control::placeholder {
  color: #797373;
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.section__title {
  overflow: hidden;
  margin-bottom: 1.875rem;
}
.section__title h5 {
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c82135;
  font-size: 1.125rem;
  font-weight: 500;
}
.section__title h6 {
  border-radius: 1.875rem;
  background: #f9fafb;
  padding: 0.875rem 2.75rem;
  color: #122b47;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.section__title h1,
.section__title h2 {
  color: #213b75;
  font-size: 2.125rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
  text-transform: capitalize;
}
.section__title p {
  font-size: 1rem;
  font-weight: 400;
}
.section__title--border {
  margin-bottom: clamp(1.875rem, 4vw, 4.375rem);
}
.section__title--border h2 {
  position: relative;
  padding-left: 1.625rem;
}
.section__title--border h2::before {
  content: "";
  height: 100%;
  width: 0.375rem;
  overflow: hidden;
  background-color: #213b75;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.625rem;
}

.social__icon {
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.social__icon li {
  list-style: none;
}
.social__icon li:first-child {
  margin-left: 0;
}
.social__icon li a {
  display: block;
  transition: all 0.5s ease;
}

.banner__page {
  position: relative;
}
.banner__page::before {
  content: "";
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(17, 29, 94, 0.8);
}
.banner__page--img {
  height: 22rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner__page--img {
    height: 15.625rem;
  }
}
.banner__page--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.banner__page--text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
.banner__page--text .title {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
}

.breadcrumb__custom {
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 0.5rem 0;
}
.breadcrumb__custom a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0 0.1875rem;
}
@media (max-width: 767px) {
  .breadcrumb__custom a {
    font-size: 1rem;
  }
}
.breadcrumb__custom a span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
}
.breadcrumb__custom a.active, .breadcrumb__custom a:hover {
  color: #ffffff;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.pagination .page-link {
  background-color: #213b75;
  color: #ffffff;
}
.pagination .page-item.active .page-link {
  background-color: #455989;
  border-color: #ffffff;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.toast {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .toast {
    max-width: 18.75rem;
    width: 100%;
  }
}
.toast-header {
  background-color: #213b75;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.toast-header button {
  background: none;
  color: #ffffff;
  opacity: 1;
  font-size: 1rem;
  font-weight: 600;
}
.toast-body .cart-info {
  padding: 0;
  margin: 0;
}
.toast-body .cart-info li {
  list-style: none;
}
.toast-body .cart-info li:last-child {
  border-bottom: none;
}
.toast-body .cart-info li span {
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
}
.toast-body .cart-info li span:first-child {
  width: 40%;
}
.toast-body p {
  font-size: 0.875rem;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.short_desc {
  line-height: normal;
  hyphens: auto;
}

.parttime {
  background: #f8a60c;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
}

.fulltime {
  background: #6aca00;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
}

.freelance {
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  padding: 4px 6px;
}

.l__button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: capitalize;
  border: 2px solid #c82135;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 1.75rem;
  background-color: #c82135;
  display: inline-block;
  transition: all 0.8s ease;
  text-decoration: none;
  text-align: center;
}
.l__button i {
  margin-left: 0.3125rem;
}
.l__button--primary {
  color: #ffffff;
  border-color: #003459;
  background-color: #003459;
}
.l__button--primary:hover {
  border-color: #213b75;
  color: #ffffff;
  background-color: #213b75;
}
.l__button--secondary {
  color: #ffffff;
  background-color: #213b75;
  border-color: #213b75;
}
.l__button--secondary:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: #455989;
}
.l__button--btnColor {
  color: #ffffff;
  background-color: #c82135;
  border-color: #c82135;
}
.l__button--btnColor:hover {
  border-color: #003459;
  color: #ffffff;
  background-color: #003459;
}
.l__button--transparent {
  color: #003459 !important;
  background-color: transparent;
  border-color: #003459;
}
.l__button--transparent:hover {
  border-color: #213b75;
  background-color: #213b75;
  color: #ffffff !important;
}
.l__button--border {
  border-color: #455989;
  color: #455989;
}
.l__button:hover:before {
  width: 100%;
}
@media (max-width: 480px) {
  .l__button {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }
}

.login__img {
  height: 43.75rem;
  width: 100%;
  overflow: hidden;
}
.login__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.login__card h1 {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.login__card .form {
  margin-top: 1.875rem;
}
.login__card .form-label {
  font-size: 1rem;
  font-weight: 500;
}
.login__card .form-pwd {
  position: relative;
}
.login__card .form-pwd .icon {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
}
.login__card .form-control {
  padding-right: 2.5rem;
}
.login__card .form .l__button {
  display: block;
  border-radius: 0.3125rem;
  margin-bottom: 1.25rem;
}
.login__card .form .text-pass {
  color: #db4444;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 1.875rem;
}
.login__card .form .text-login {
  font-size: 1rem;
  font-weight: 400;
}
.login__card .form .text-login a {
  font-weight: 500;
  color: #4f4f4f;
  text-decoration: none;
}
.login__card.forgot-password {
  padding: clamp(1rem, 5vw, 5rem);
  border-radius: 0.9375rem;
  border: 1px solid #e4e3e3;
  background: #fcfcfc;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
}
.login__card.forgot-password > .icon {
  height: 8.4375rem;
  width: 8.4375rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: #ebf5fe;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: auto;
}
.login__card.forgot-password .form {
  width: 100%;
  max-width: 80%;
  margin: auto;
}
@media (max-width: 500px) {
  .login__card.forgot-password .form {
    max-width: 100%;
  }
}
.login__card.forgot-password .form h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}
.login__card.forgot-password .form p {
  font-size: 1rem;
  font-weight: 400;
  color: #9f9a9a;
}

.m__tb {
  margin-top: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.m__tb--t {
  margin-top: clamp(2.5rem, 5vw, 5rem);
}
.m__tb--b {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.p {
  padding: clamp(2.5rem, 5vw, 5rem);
}
.p__tb {
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}
.p__tb--t {
  padding-top: clamp(2.5rem, 5vw, 5rem);
}
.p__tb--b {
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.l__container {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 1rem;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
}

@media (min-width: 992px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  position: relative;
}
.main-menu .main-menu__list > li > ul, .main-menu .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 15.625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(0);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list > li + li {
  margin-left: clamp(1rem, 3vw, 2.5rem);
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 1.5rem;
  }
}
@media (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 1rem;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  color: #383838;
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li > a:hover {
  color: #c82135;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li > a {
    font-size: 0.9375rem;
  }
}
@media (max-width: 1300px) {
  .main-menu .main-menu__list > li > a {
    font-size: 0.9063rem;
  }
}
.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 0.9375rem;
}
.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 52%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-size: 0.875rem;
  color: #151422;
  transform: translateY(-50%);
  font-weight: 700;
  z-index: 1;
}
.main-menu .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}
.main-menu .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}
.main-menu .main-menu__list > li:hover > ul, .main-menu .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > li > ul > li, .main-menu .main-menu__list > li > ul > li > ul > li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(21, 20, 34, 0.1);
}
.main-menu .main-menu__list > li > ul > li:last-child, .main-menu .main-menu__list > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}
.main-menu .main-menu__list > li > ul > li + li, .main-menu .main-menu__list > li > ul > li > ul > li + li {
  border-top: 0;
  margin-top: 0px;
}
.main-menu .main-menu__list > li > ul > li > a, .main-menu .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.875rem;
  color: #151422;
  font-weight: 500;
  display: flex;
  padding: 0.625rem 1.25rem 0.625rem;
  transition: all ease 0.8s;
}
.main-menu .main-menu__list > li > ul > li:hover > a, .main-menu .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: #c82135;
  color: #ffffff;
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 500;
  color: #383838;
  cursor: pointer;
  transition: 500ms;
  display: flex;
  text-decoration: none;
}
.main-menu .mobile-nav__toggler:hover {
  color: #455989;
}

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: all 0.3s ease;
  visibility: hidden;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: all 0.3s ease;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}
.mobile-nav__content {
  width: 18.75rem;
  background-color: #fdfffc;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 1.875rem 0.9375rem;
  visibility: 0;
  opacity: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .logo-box {
  margin-bottom: 2rem;
  display: inline-block;
}
.mobile-nav__content .logo-box img {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 0.9375rem;
  font-size: 1.125rem;
  cursor: pointer;
  margin-top: 25px;
}

.mobile-nav__content .main-menu__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.mobile-nav__content .main-menu__list > li > ul, .mobile-nav__content .main-menu__list > li > ul > li > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}
.mobile-nav__content .main-menu__list > li:not(:last-child), .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child), .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}
.mobile-nav__content .main-menu__list > li > a, .mobile-nav__content .main-menu__list > li > ul > li > a, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  line-height: 1.875rem;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.875rem;
  text-decoration: none;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
  color: #455989;
}

.mobile-nav__content .main-menu__list {
  /* no menu after 2rd level dropdown */
}
.mobile-nav__content .main-menu__list li a.expanded {
  color: #455989;
}
.mobile-nav__content .main-menu__list > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  height: 1.875rem;
  width: 1.875rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: none;
  outline: none;
  text-align: center;
  transition: transform 500ms ease;
  padding: 0;
}
.mobile-nav__content .main-menu__list > li > a > button .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > a > button .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button .fa-minus {
  display: none;
}
.mobile-nav__content .main-menu__list > li > a > button.expanded .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded .fa-minus {
  display: block;
}
.mobile-nav__content .main-menu__list > li > a > button.expanded .fa-plus, .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded .fa-plus, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded .fa-plus {
  display: none;
}
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-bottom: 1.875rem;
}
.mobile-nav__top .main-menu__login a {
  color: #455989;
}
.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.mobile-nav__social a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: #ffffff;
  height: 2.25rem;
  width: 2.25rem;
  overflow: hidden;
  min-width: 2.25rem;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s linear;
  border: 1px solid #455989;
  color: #213b75;
}
.mobile-nav__social a:hover {
  color: #ffffff;
  background: #213b75;
}
.mobile-nav__social a + a {
  margin-left: 1rem;
}
.mobile-nav__contact {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.mobile-nav__contact li {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.mobile-nav__contact li + li {
  margin-top: 0.9375rem;
}
.mobile-nav__contact li a {
  color: #000000;
  text-decoration: none;
  transition: 500ms;
}
.mobile-nav__contact li > i {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 1px solid #455989;
  color: #213b75;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
  font-size: 0.6875rem;
  margin-right: 0.625rem;
  transition: all 0.4s linear;
}
.mobile-nav__contact li:hover i {
  color: #ffffff;
  background-color: #213b75;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.main-header-two {
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02);
}
.main-header-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header__wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.5s;
  z-index: 9;
  width: 100%;
  transition: all 0.5s ease;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.2);
  animation: slide-down 0.7s;
}
.main-header__wrapper.sticky .main-menu-two__wrapper-inner {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.main-menu-two__wrapper-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  z-index: 1;
}
.main-menu-two__logo {
  position: relative;
  display: block;
}
.main-menu-two__logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.main-menu-two__logo a img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 1200px) {
  .main-menu-two__logo a img {
    height: 5rem !important;
  }
}
@media (max-width: 1024px) {
  .main-menu-two__logo a img {
    height: 4.5rem !important;
  }
}
@media (max-width: 991px) {
  .main-menu-two__logo a img {
    height: 4rem !important;
  }
}
@media (max-width: 767px) {
  .main-menu-two__logo a img {
    height: 3.5rem !important;
  }
}
.main-menu-two__left {
  display: block;
}
.main-menu-two__left .btn__group {
  display: none;
}
.main-menu-two__main-menu-box {
  display: block;
}
.main-menu-two__right {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.main-menu-two__right .trip__btn {
  border: 1px solid #212832;
  border-radius: 0.3125rem;
  padding: 0.5625rem 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  color: #212832;
  text-decoration: none;
  transition: all 0.5s ease;
}
.main-menu-two__right .trip__btn:hover {
  background-color: #213b75;
  border-color: #213b75;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .main-menu-two__right .trip__btn {
    padding: 0.5rem;
    font-size: 0.9375rem;
  }
}
@media (max-width: 1400px) {
  .main-menu-two__right .trip__btn {
    font-size: 0.9063rem;
  }
}
.main-menu-two__btn-box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.main-menu-two__btn-box > ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}
.main-menu-two__btn-box > ul li {
  list-style: none;
}
.main-menu-two__btn-box > ul li a {
  text-decoration: none;
  color: #383838;
  display: flex;
  font-size: 1.5rem;
  position: relative;
}
.main-menu-two__btn-box > ul li a span {
  height: 1.0625rem;
  width: 1.0625rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: #455989;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 500;
  position: absolute;
  top: -0.3125rem;
  right: -0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.main-menu-two__btn-box > ul li a:hover {
  color: #455989;
}
.main-menu-two__btn-box > ul li .profile .icon {
  color: #383838;
  font-size: 1.5rem;
}
.main-menu-two__btn-box > ul li .profile .img {
  cursor: pointer;
}
.main-menu-two__btn-box > ul li .profile .img::after {
  display: none;
}
.main-menu-two__btn-box > ul li .profile .img img {
  height: 1.875rem;
  width: 1.875rem;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 50%;
}
.main-menu-two__btn-box > ul li .profile > ul {
  padding: 0;
  overflow: hidden;
}
.main-menu-two__btn-box > ul li .profile > ul li a {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.3125rem 0.875rem;
}
.main-menu-two__btn-box > ul li .profile > ul li a:active {
  background-color: #f8f9fa;
  color: #455989;
}
.main-menu-two__btn-box > ul li .profile > ul li a:hover {
  color: #455989;
}
@media (max-width: 767px) {
  .main-menu-two__btn-box {
    gap: 0.5rem;
  }
  .main-menu-two__btn-box ul {
    gap: 0.5rem;
  }
}

@media (min-width: 992px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}
.main-header-top {
  background-color: #455989;
  padding: 0.75rem 0;
}
.main-header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.main-header-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.main-header-top ul li {
  width: 100%;
}
.main-header-top ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
.main-header-top ul li a span {
  color: #ffffff;
}
.main-header-top ul li a:hover {
  color: #003459;
}
.main-header-top-left ul li a {
  font-size: 1.125rem;
  display: flex;
}
.main-header-top-middle ul {
  gap: 0;
  padding: 0 1rem;
  position: relative;
}
.main-header-top-middle ul::after, .main-header-top-middle ul::before {
  content: "";
  background-image: url("/static/site-asset/images/icon/fire.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.25rem;
  width: 1.25rem;
  overflow: hidden;
  transform: translateY(-50%);
}
.main-header-top-middle ul::before {
  position: absolute;
  top: 50%;
  left: 100%;
}
.main-header-top-middle ul::after {
  position: absolute;
  top: 50%;
  right: 100%;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.search-container .search {
  position: absolute;
  top: 100%;
  right: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: height 0.3s ease;
  border: 1px solid #efefef;
  padding: 0.5rem 1rem;
}
.search-container .search.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.search-container .searchbutton {
  cursor: pointer;
  font-size: 1.5rem;
  color: #383838;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.user-dropdown .dropdown-toggle {
  text-decoration: none;
  color: #c82135;
  padding: 0;
  font-size: 1.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}

.user-dropdown .dropdown-toggle::after {
  display: none !important;
}

.user-dropdown .dropdown-toggle img {
  content: "";
  height: 40px;
  width: 40px;
  overflow: hidden;
  border: 2px solid #c82135;
  border-radius: 50%;
  z-index: -1;
}

.user-dropdown .dropdown-toggle span {
  font-size: 0.875rem;
}

.user-dropdown .dropdown-toggle span strong {
  font-weight: 600;
  color: #555555;
  text-transform: capitalize;
}

.user-dropdown {
  position: relative;
}
.user-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 9999;
  margin-top: 5px;
  transition: opacity 0.2s ease;
}
.user-dropdown .dropdown-menu .dropdown-item {
  border-bottom: 1px solid rgba(21, 20, 34, 0.1);
  padding: 0.625rem 1.25rem 0.625rem;
  font-weight: 500 !important;
  transition: all ease 0.8s;
}
.user-dropdown .dropdown-menu .dropdown-item:hover {
  color: white;
  background-color: #c82135;
}
.user-dropdown:hover .dropdown-menu {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: inherit;
}

.main-menu-two__wrapper-inner .text {
  color: #c82135;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding-inline: 1rem;
  font-family: "Noto Sans Devanagari", "Devanagari Sangam MN", sans-serif;
}
@media (max-width: 767px) {
  .main-menu-two__wrapper-inner .text {
    font-size: 1rem;
    word-break: break-all;
  }
}

.footer {
  background-color: #fbfbfb;
}
.footer__widget .logo img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 1200px) {
  .footer__widget .logo img {
    height: 5rem !important;
  }
}
@media (max-width: 1024px) {
  .footer__widget .logo img {
    height: 4.5rem !important;
  }
}
@media (max-width: 991px) {
  .footer__widget .logo img {
    height: 4rem !important;
  }
}
@media (max-width: 767px) {
  .footer__widget .logo img {
    height: 3.5rem !important;
  }
}
.footer__widget--social ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__widget--social ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #455989;
  color: #213b75;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.footer__widget--social ul a:hover {
  border-color: #003459;
  background-color: #455989;
  color: #ffffff;
}
@media (max-width: 991px) {
  .footer__widget .logo a img {
    display: block !important;
    margin: auto;
  }
  .footer__widget .footer__description {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer__widget .footer__widget--social ul {
    justify-content: center;
  }
}
.footer__description {
  font-size: 1rem;
  font-weight: 400;
  color: #2c3e50;
  margin: 1rem 0;
  line-height: 2.2rem;
}
.footer__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.footer__link {
  padding: 0;
  margin: 0;
}
.footer__link .icon {
  padding-left: 35px;
  position: relative;
}
.footer__link .icon i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #455989;
}
.footer__link li {
  list-style: none;
  padding-bottom: 1rem;
}
.footer__link li a {
  text-decoration: none;
  list-style: none;
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
}
.footer__link li a.mail {
  word-wrap: break-word;
}
.footer__link li a:hover {
  color: #c82135;
}

.copyright {
  border-top: 1px solid #213b75;
  padding: 1rem 0;
  background-color: #c82135;
}
.copyright__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.copyright p {
  color: white;
  margin: 0;
}
.copyright .developer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright .developer__logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 767px) {
  .copyright .copyright__content {
    justify-content: center;
  }
  .copyright .copyright__content .text {
    text-align: center;
  }
  .copyright .copyright__content .developer__logo {
    margin-top: 15px;
  }
}

.gallery__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  overflow: hidden;
}
.gallery__card a {
  text-decoration: none;
}
.gallery__card--img {
  height: 15rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gallery__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  width: 100%;
}
.gallery__card--img span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 1;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.gallery__card--content {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.gallery__card--content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-color: rgba(45, 114, 187, 0.8);
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.gallery__card--content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0;
  padding: 1rem;
  width: 100%;
  text-align: center;
}
.gallery__card:hover .gallery__card--content {
  transform: rotate(0deg);
  visibility: visible;
  opacity: 1;
}
.gallery__card:hover .gallery__card--img span {
  visibility: visible;
  opacity: 1;
}
.gallery__view {
  height: 15rem;
  width: 100%;
  overflow: hidden;
}
.gallery__view img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 0.9375rem;
  width: 100%;
  overflow: hidden;
}
.blog__card:hover img {
  transform: scale(1.1);
}
.blog__card a {
  text-decoration: none;
}
.blog__card--inner {
  box-shadow: 0 5px 10px rgba(16, 17, 21, 0.1);
  transition: all 0.3s ease;
  padding: 1rem;
}
.blog__card--inner:hover {
  transform: translateY(-10px);
}
.blog__card--inner:hover h3 {
  color: #c82135;
}
.blog__card--img {
  height: 15.625rem;
  width: 100%;
  overflow: hidden;
}
.blog__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 991px) {
  .blog__card--img {
    height: 17rem;
  }
}
@media (max-width: 767px) {
  .blog__card--img {
    height: 18.75rem;
  }
}
@media (max-width: 575px) {
  .blog__card--img {
    height: 17rem;
  }
}
.blog__card--content .meta__post {
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog__card--content .meta__post ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.blog__card--content .meta__post ul li {
  list-style: none;
  margin-right: 15px;
  color: #213b75;
}
.blog__card--content .meta__post ul li i {
  margin-right: 5px;
  color: #213b75;
}
.blog__card--content .title {
  transition: color 0.6s ease;
}
.blog__card--content .short_desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__card--content .post__footer {
  border-top: 1px solid #ecf0f3;
  padding-top: 15px;
  margin-top: 15px;
}
.blog__card--content .post__footer .pf-left a {
  text-decoration: none;
  color: #ffffff;
}

.team__card {
  background: linear-gradient(121deg, #fbfbfb 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.2);
  transition: all 0.3s ease;
}
.team__card--img {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  margin: auto;
  margin-top: 1.5rem;
}
.team__card--img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.team__card--content {
  margin: 1.5rem 0;
  text-align: center;
}
.team__card--content h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.team__card--content span {
  font-size: 1rem;
  font-weight: 500;
}
.team__card:hover {
  margin-top: -1rem;
  border-color: #003459;
}
.team__card:hover img {
  transform: scale(1.1);
}
.team__card:hover h3 {
  color: #213b75;
}

.memebers-sec a {
  text-decoration: none;
}
.memebers-sec__inner {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #ffffff;
}
.memebers-sec__card {
  overflow: hidden;
}
.memebers-sec__card--img {
  height: 15.625rem;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
}
.memebers-sec__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  transition: transform 0.3s ease;
}
.memebers-sec__card--content {
  padding-top: 1rem;
  text-align: left;
}
.memebers-sec__card--content .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #455989;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.memebers-sec__card--content span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4f4f4f;
  margin-bottom: 0.5rem;
}
.memebers-sec__card--content p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4f4f4f;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.owl-item {
  height: 100%;
}

.banner .owl-stage {
  display: flex;
}
.banner__section {
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-img);
  background-size: cover;
  z-index: -1;
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  .banner__section {
    min-height: 400px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.banner__section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__section--content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner__section--content .content {
  max-width: 46.25rem;
}
.banner__section--content .title {
  font-size: 4.0625rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .banner__section--content .title {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .banner__section--content .title {
    font-size: 1.5rem;
  }
}
.banner__section--content .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .banner__section--content .subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  .banner__section--content .subtitle {
    font-size: 1rem;
  }
}

.about {
  position: relative;
  z-index: 1;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-bottom: 721px solid #213b75;
  border-right: 960px solid transparent;
  display: none;
  z-index: -1;
}
@media (min-width: 1440px) {
  .about::before {
    display: block;
  }
}
.about__img {
  position: relative;
  height: 40.5rem;
  width: 100%;
  overflow: hidden;
  bottom: 0px;
}
.about__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 991px) {
  .about__img {
    height: auto;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 1199px) {
  .about__right .section__title {
    text-align: center;
  }
}
.about__right .short__desc {
  text-align: justify;
  margin-top: 10px;
  hyphens: auto;
}
@media (max-width: 575px) {
  .about__right .short__desc {
    padding: 20px;
  }
}

.message-section {
  background-color: #fff9f1;
}
.message-section__box {
  position: sticky;
  top: 6.25rem;
  background-color: #ffffff;
  border: 3px solid #c82135;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.message-section__img {
  height: 28.125rem;
  width: 100%;
  overflow: hidden;
}
.message-section__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.message-section .text {
  text-align: center;
  background-color: #c82135;
  padding-block: 1rem;
}
.message-section .text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.message-section .text h5 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
}
.message-section__content {
  background-color: white;
  padding: 20px;
  border-radius: 20px 20px 0px 20px;
}
@media (max-width: 991px) {
  .message-section__content .section__title {
    text-align: center;
  }
}

.event__list .tab__buttons {
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 2rem;
}
.event__list .tab__buttons--btn {
  list-style: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  margin: 0.5rem;
}
.event__list .tab__buttons--btn a {
  text-decoration: none;
  color: #213b75;
  font-size: 2.125rem;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  transition: color 0.3s ease;
}
.event__list .tab__buttons--btn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #213b75;
  transition: width 0.4s ease;
}
.event__list .tab__buttons--btn a:hover::after {
  width: 100%;
}
.event__list .tab__contents--all {
  display: none;
}
.event__list .tab__contents--all.active {
  display: block;
}
.event__card {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.1);
  transition: all 0.3s ease;
}
.event__card--img {
  height: 15.625rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.event__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.event__card--content {
  padding: clamp(1rem, 3vw, 1.5rem);
}
.event__card--content a {
  text-decoration: none;
}
.event__card--content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: color 0.6s ease;
}
.event__card--content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.event__card:hover img {
  transform: scale(1.05);
}
.event__card:hover:hover h3 {
  color: #c82135;
}

.notice {
  background-color: #fff9f1;
}
.notice__card {
  position: relative;
  margin-bottom: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.1);
}
.notice__card a {
  text-decoration: none;
}
.notice__card:last-child {
  margin-bottom: 0;
}
.notice__card--wrapper {
  position: relative;
}
.notice__card--wrapper .notice__date {
  position: absolute;
  bottom: -10px;
  right: 8px;
  background-color: #c82135;
  color: #ffffff;
  padding: 5px;
}
.notice__card--img {
  height: 15.625rem;
  width: 100%;
  overflow: hidden;
}
.notice__card--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .notice__card--img {
    height: 17rem;
  }
}
@media (max-width: 767px) {
  .notice__card--img {
    height: 18.75rem;
  }
}
@media (max-width: 575px) {
  .notice__card--img {
    height: 16rem;
  }
}
.notice__card--content {
  padding: 1rem;
}
.notice__card--content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.6s ease;
}
.notice__card--content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px !important;
}
.notice__card:hover img {
  transform: scale(1.1);
}
.notice__card:hover:hover h3 {
  color: #c82135;
}

.partner__card {
  background-color: #ffffff;
  border-radius: 0.625rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(0, 51, 102, 0.3);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .partner__card {
    padding: 0.5rem;
  }
}
.partner__card img {
  height: 6.25rem;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 767px) {
  .partner__card img {
    height: 4.5rem;
  }
}

.owl-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 15px;
}

.team .owl-stage-outer {
  padding-block: 1.875rem;
}

.mission__img {
  background-image: var(--bg-img);
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .mission__img {
    height: 600px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .mission__img {
    display: none;
  }
}
.mission__content {
  border-top: 0.3125rem solid #e6a4ac;
  border-radius: 1.25rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom-left-radius: 0.3125rem solid #e6a4ac;
  margin-bottom: 10px;
  box-shadow: 0 0 0 2px #f7f5ec;
}

.contact__content .title {
  color: #213b75;
  font-size: clamp(1.625rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.625rem;
  text-transform: capitalize;
}
.contact__content .title span {
  color: #e6a4ac;
}
.contact__content p {
  margin-bottom: 2.3125rem;
}
.contact__content ul {
  padding: 0;
  margin: 0;
}
.contact__content ul .info_card {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.1875rem;
}
.contact__content ul .info_card .icon i {
  color: #213b75;
  font-size: 1.5rem;
}
.contact__content ul .info_card .info span a {
  text-decoration: none;
  color: #213b75;
}
.contact__content form {
  border-radius: 10px;
  background: linear-gradient(121deg, #fbfbfb 0%, #f0f0f0 100%);
  padding: clamp(2rem, 4vw, 3.75rem) clamp(2rem, 4vw, 4.375rem) clamp(2rem, 3vw, 2.375rem) clamp(2rem, 4vw, 4.375rem);
}
.contact__content form h2 {
  color: #213b75;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.375rem;
}
.contact__content form .form-control {
  border-radius: 3px;
  border: 1px solid #ededed;
  background: #fff;
  padding: 0.9375rem 1.25rem;
}
.contact__content form .form-control::placeholder {
  color: #5e5e5e;
  font-size: 0.8125rem;
  font-weight: 400;
}
.contact__content form label {
  font-size: 1rem;
  font-weight: 400;
  color: #5d5b58;
  margin-bottom: 0.4375rem;
}
.contact__content form label span {
  color: #eb5757;
}
.contact__content form textarea {
  height: 10.375rem;
}
@media (max-width: 991px) {
  .contact__content form {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .contact__content {
    padding: 0;
  }
  .contact__content form .form-floating {
    margin-bottom: 1rem;
  }
}

.map iframe {
  height: 20rem;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 0.9375rem;
}
@media (max-width: 991px) {
  .map iframe {
    height: 17rem;
  }
}

.product__list h1 {
  color: #213b75;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.product__list h1 span {
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  padding-left: 0.75rem;
}
.product .filter {
  position: sticky;
  top: 6.25rem;
}
@media (max-width: 991px) {
  .product .filter {
    position: static;
    top: 0;
  }
}
.product .filter .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #213b75;
}
.product .filter .box {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ebeeef;
}
.product .filter .box:last-child {
  border-bottom: none;
}
.product .filter .box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.product .filter .box .form-check {
  margin-bottom: 0.5rem;
}
.product .filter .box .form-check:last-child {
  margin-bottom: 0;
}
.product .filter .box .form-check-group {
  max-height: 12.5rem;
  height: 100%;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.product .filter .box .form-check-group::-webkit-scrollbar {
  width: 0.5rem;
}
.product .filter .box .form-check-group::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.product .filter .box .form-check-group::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background: #213b75;
}
.product .filter .box .form-check-group::-webkit-scrollbar-thumb:hover {
  background: #213b75;
}
@media (max-width: 991px) {
  .product .filter .box .form-check-group {
    max-height: 100%;
  }
}
.product .filter .box .form-check-input {
  cursor: pointer;
}
.product .filter .box .form-check-input:checked {
  background-color: #213b75 !important;
  border-color: #213b75 !important;
}
.product .filter .box .form-check-label {
  cursor: pointer;
  color: #00171f;
  text-transform: capitalize;
  font-size: 0.875rem;
  font-weight: 500;
}
.product .filter .box .form-check:hover .form-check-label {
  color: #213b75;
}
.product .filter-btn {
  border-radius: 0.3125rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  display: inline-flex;
  margin-bottom: 2rem;
  width: auto;
}
.product .filter-btn i {
  font-size: 1.5rem;
}
.product .offcanvas-body {
  border-top: none;
  display: block;
}

.notice__detail--img {
  border-radius: 0.625rem;
  margin-bottom: 2rem;
  background-color: #ffffff;
}
.notice__detail--img img {
  height: 30rem;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
@media (max-width: 575px) {
  .notice__detail--img img {
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
  }
}
.notice__detail .meta {
  margin-bottom: clamp(1.5rem, 3vw, 2.375rem);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.notice__detail .meta img {
  height: auto;
  width: auto;
  overflow: hidden;
}
.notice__detail .meta span {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  color: #100c08;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: capitalize;
}
.notice__detail .meta ul {
  padding: 0;
  margin: 0;
  margin-left: 1rem;
  display: inline-block;
}
.notice__detail .meta ul li {
  display: inline-block;
  list-style: none;
}
.notice__detail .meta ul li a {
  margin-right: 20px;
  color: #c82135;
}
.notice__detail .recent {
  position: sticky;
  top: 5rem;
  background-color: #ffffff;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.3);
  padding: 1rem;
}
.notice__flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.375rem;
  background-color: #ffffff;
}
.notice__flex:last-child {
  margin-bottom: 0;
}
.notice__flex--img {
  height: 9rem;
  width: 8rem;
  overflow: hidden;
  min-width: 8rem;
  border-radius: 0.3125rem;
}
.notice__flex--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.notice__flex--content {
  flex: 1;
}
.notice__flex--content a {
  text-decoration: none;
}
.notice__flex--content h3 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: capitalize;
}
.notice__flex--content span {
  color: #8b8b8b;
  font-size: 0.75rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}
.notice__flex--content p {
  font-size: 0.875rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.notice__flex:hover img {
  transform: scale(1.05);
}
.notice__flex:hover h3 {
  color: #c82135;
}
@media (max-width: 1200px) {
  .notice__flex--img {
    width: 10rem;
    min-width: 10rem;
  }
}
@media (max-width: 767px) {
  .notice__flex {
    flex-direction: column;
  }
  .notice__flex--img {
    height: 18.75rem;
    width: 100%;
    overflow: hidden;
    border-radius: 0.625rem;
  }
  .notice__flex--content {
    background-color: #ffffff;
    padding: 1.5625rem 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    margin: -9.0625rem auto auto auto;
    width: 90%;
  }
}

.listpgwrapper {
  background-color: #fff9f1;
  padding: 50px 0;
}
.listpgwrapper .job__header {
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.1);
}
.listpgwrapper .job__info {
  padding: 25px;
}
.listpgwrapper .job__info--content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .listpgwrapper .job__info--content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.listpgwrapper .job__button {
  cursor: pointer;
}
.listpgwrapper .job__button a {
  text-decoration: none;
  color: white;
}
.listpgwrapper .job__header .contentbox {
  padding: 25px;
}
.listpgwrapper .job__header ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.listpgwrapper .job__header ul li {
  padding: 10px 0 10px 25px;
  position: relative;
}
.listpgwrapper .job__header ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #c82135;
  position: absolute;
  left: 0;
}

.members {
  padding: 4rem 0;
  background-color: #f9f9f9;
}
.members__details {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .members__details {
    flex-direction: column;
  }
}
.members__company--img {
  flex: 0 0 15rem;
  max-width: 15rem;
}
.members__company--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .members__company--img {
    width: 100%;
    max-width: 100%;
  }
}
.members__company--info {
  flex: 1;
}
.members__company--info .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #213b75;
}
.members__company--info p {
  font-size: 1rem;
  font-weight: 400;
  color: #4f4f4f;
  position: relative;
  padding-left: 25px;
}
.members__company--info p i {
  color: #455989;
  position: absolute;
  left: 0;
  top: 5px;
}
.members__company--info p span {
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  margin-right: 5px;
}
.members__company--contact-info {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.members__company--contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #213b75;
  border-bottom: 3px solid #213b75;
}
.members__company--contact-info p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: #4f4f4f;
  position: relative;
  padding-left: 25px;
}
.members__company--contact-info p i {
  color: #455989;
  position: absolute;
  left: 0;
  top: 5px;
}
.members__company--contact-info p span {
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .members__company--contact-info {
    margin-top: 1.5rem;
  }
}

.checkout__box {
  padding: 0;
  margin: 0;
  border: 1px solid #edebeb;
  background: #f7f7f7;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 2rem 0.875rem;
  list-style: none;
}
@media (max-width: 767px) {
  .checkout__box {
    padding: 1rem;
  }
}
.checkout__list {
  margin-bottom: 0.625rem;
  background: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.625rem;
}
.checkout__list:last-child {
  margin-bottom: 0;
}
.checkout__list--img {
  height: 6.125rem;
  width: 6.125rem;
  overflow: hidden;
  min-width: 6.125rem;
  background-color: #eceaea;
  padding: 0.3125rem;
}
.checkout__list--img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  background-color: #ffffff;
}
.checkout__list--content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
}
.checkout__list--content .content {
  flex: 1;
}
.checkout__list--content h3 {
  font-size: 1rem;
  font-weight: 700;
}
.checkout__list--content .box span {
  color: #454141;
  font-size: 0.875rem;
  font-weight: 400;
  display: inline-block;
}
.checkout__list--content .box span:first-child {
  margin-right: 2rem;
}
.checkout__list .btn-group {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.5rem;
  flex-direction: column;
}
.checkout__list .btn-group .del {
  border-radius: 0.25rem;
  background: #ebf5fe;
  height: 2.375rem;
  width: 2.375rem;
  overflow: hidden;
  min-width: 2.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .checkout__list {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .checkout__list {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .checkout__list--img {
    height: 5rem;
    width: 5rem;
    overflow: hidden;
    min-width: 5rem;
  }
  .checkout__list--content {
    flex-direction: column;
    gap: 1rem;
  }
  .checkout__list--content h3 {
    margin-bottom: 0.5rem;
  }
  .checkout__list--content .box span {
    display: block;
    font-size: 0.875rem;
  }
  .checkout__list--content .btn-group {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }
}
.checkout__summary .info li {
  justify-content: space-between !important;
}
.checkout__summary .info li span:last-child {
  text-align: right;
}
.checkout__summary .info li.total span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3d3b3b;
}

.success__modal .modal-body {
  position: relative;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 5rem);
}
.success__modal .modal-body .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #003459;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
  border-radius: 0.3125rem;
  background: #003459;
  color: #ffffff;
  z-index: 1;
  min-width: 2.5rem;
}
.success__modal .modal-body .btn-close:hover {
  background-color: #213b75;
}
.success__modal .modal-body img {
  height: 15.625rem;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.success__modal .modal-body h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.375rem;
}
.success__modal .modal-body .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  .success__modal .modal-body .btn-group {
    flex-direction: column;
  }
}

.dashboard {
  background-color: #fff9f1;
}
.dashboard__nav {
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.2);
  position: sticky;
  top: 120px;
  background-color: #fff;
  z-index: 10;
}
.dashboard__nav ul {
  padding: 0;
  margin: 0;
}
.dashboard__nav ul .nav-link:focus {
  color: #383838;
}
.dashboard__nav ul li {
  list-style: none;
}
.dashboard__nav ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #383838;
  font-size: 1.2rem;
  font-weight: 400;
}
.dashboard__nav ul li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.dashboard__nav ul li:hover, .dashboard__nav ul li:focus {
  background-color: #c82135;
  color: white !important;
}
.dashboard__nav ul li:hover a, .dashboard__nav ul li:focus a {
  color: white;
}

.dashboard__nav ul li.active {
  background-color: #c82135;
}

.dashboard__nav ul li.active a {
  color: white !important;
}

.dashboard__nav ul li a.nav-link:focus,
.dashboard__nav ul li a.nav-link:active {
  color: white !important;
}

.user__navdetails {
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.2);
  background-color: #fff;
}

table thead,
table tr {
  border-width: unset !important;
}
table td button {
  color: #c82135;
  background-color: transparent;
  border: none;
  text-align: center;
  display: block;
  margin: auto;
}
table td a {
  color: #c82135;
  display: block;
  text-align: center;
}

.info {
  margin-bottom: 2rem;
}
.info__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #213b75;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}
.info__row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.info__label {
  flex: 0 0 220px;
  font-weight: 500;
  color: #555;
}
.info__value {
  flex: 1;
  color: #000;
}

@media (max-width: 576px) {
  .info__label {
    flex: 100%;
    margin-bottom: 0.25rem;
  }
  .info__value {
    flex: 100%;
  }
}
.profile-image img {
  width: auto;
  height: 150px;
  display: block;
  margin-bottom: 10px;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.1);
  object-fit: contain;
}

canvas {
  height: 100% !important;
  width: 100% !important;
  object-fit: contain;
}

body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.audio-player {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 100%;
  max-width: 500px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.audio-player:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

audio {
  width: 100%;
  height: 50px;
  outline: none;
  border-radius: 10px;
}

.modal-content {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.containers {
  padding: 66px 16px 66px;
  border: 1px solid #000000;
  text-align: center;
  margin: 0 4% 0 4%;
}

.containers .title {
  font-size: 120px;
}

.containers .description {
  font-size: 48px;
}

.glitch {
  position: relative;
}

.glitch:before {
  content: attr(data-text);
  position: absolute;
  text-shadow: 1px 0 blue;
  top: 0;
  left: -4px;
  color: white;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  -webkit-animation: glitch 3s infinite linear alternate-reverse;
  animation: glitch 3s infinite linear alternate-reverse;
  height: 100%;
  width: 100%;
}

.glitch:after {
  content: attr(data-text);
  position: absolute;
  text-shadow: -1px 0 red;
  top: 0;
  left: 4px;
  color: white;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  -webkit-animation: glitch 2s infinite linear alternate-reverse;
  animation: glitch 2s infinite linear alternate-reverse;
  height: 100%;
  width: 100%;
}

@-webkit-keyframes glitch {
  0% {
    clip: rect(24px, 9999px, 136px, 0);
  }
  5% {
    clip: rect(142px, 9999px, 83px, 0);
  }
  10% {
    clip: rect(82px, 9999px, 37px, 0);
  }
  15% {
    clip: rect(51px, 9999px, 78px, 0);
  }
  20% {
    clip: rect(150px, 9999px, 39px, 0);
  }
  25% {
    clip: rect(66px, 9999px, 122px, 0);
  }
  30% {
    clip: rect(141px, 9999px, 33px, 0);
  }
  35% {
    clip: rect(126px, 9999px, 17px, 0);
  }
  40% {
    clip: rect(125px, 9999px, 124px, 0);
  }
  45% {
    clip: rect(34px, 9999px, 22px, 0);
  }
  50% {
    clip: rect(54px, 9999px, 71px, 0);
  }
  55% {
    clip: rect(34px, 9999px, 135px, 0);
  }
  60% {
    clip: rect(150px, 9999px, 98px, 0);
  }
  65% {
    clip: rect(26px, 9999px, 32px, 0);
  }
  70% {
    clip: rect(50px, 9999px, 2px, 0);
  }
  75% {
    clip: rect(144px, 9999px, 77px, 0);
  }
  80% {
    clip: rect(135px, 9999px, 53px, 0);
  }
  85% {
    clip: rect(131px, 9999px, 143px, 0);
  }
  90% {
    clip: rect(127px, 9999px, 133px, 0);
  }
  95% {
    clip: rect(24px, 9999px, 125px, 0);
  }
  100% {
    clip: rect(30px, 9999px, 147px, 0);
  }
}
@keyframes glitch {
  0% {
    clip: rect(24px, 9999px, 136px, 0);
  }
  5% {
    clip: rect(142px, 9999px, 83px, 0);
  }
  10% {
    clip: rect(82px, 9999px, 37px, 0);
  }
  15% {
    clip: rect(51px, 9999px, 78px, 0);
  }
  20% {
    clip: rect(150px, 9999px, 39px, 0);
  }
  25% {
    clip: rect(66px, 9999px, 122px, 0);
  }
  30% {
    clip: rect(141px, 9999px, 33px, 0);
  }
  35% {
    clip: rect(126px, 9999px, 17px, 0);
  }
  40% {
    clip: rect(125px, 9999px, 124px, 0);
  }
  45% {
    clip: rect(34px, 9999px, 22px, 0);
  }
  50% {
    clip: rect(54px, 9999px, 71px, 0);
  }
  55% {
    clip: rect(34px, 9999px, 135px, 0);
  }
  60% {
    clip: rect(150px, 9999px, 98px, 0);
  }
  65% {
    clip: rect(26px, 9999px, 32px, 0);
  }
  70% {
    clip: rect(50px, 9999px, 2px, 0);
  }
  75% {
    clip: rect(144px, 9999px, 77px, 0);
  }
  80% {
    clip: rect(135px, 9999px, 53px, 0);
  }
  85% {
    clip: rect(131px, 9999px, 143px, 0);
  }
  90% {
    clip: rect(127px, 9999px, 133px, 0);
  }
  95% {
    clip: rect(24px, 9999px, 125px, 0);
  }
  100% {
    clip: rect(30px, 9999px, 147px, 0);
  }
}
.careerlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.careerlist li {
  margin-top: 30px;
}
.careerlist__int {
  background-color: #fff;
  padding: 15px;
  transition: 0.4s ease-in-out;
  min-height: 113px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #fff;
}
.careerlist__int:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border-color: #e6a4ac;
}
.careerlist__int .job__desc {
  color: #000;
  margin-top: 10px;
}
.careerlist__title {
  margin-bottom: 5px;
}
.careerlist__title a {
  font-size: 18px;
  font-weight: 700;
  color: #455989;
  text-decoration: none;
}
.careerlist__title a:hover {
  color: #c82135;
}
.careerlist__desc a {
  color: #2c3e50;
  text-decoration: none;
}
.careerlist .career__btn a {
  text-decoration: none;
}
.careerlist .applybtn {
  background: #fff;
  display: inline-block;
  color: #213b75;
  font-weight: 600;
  padding: 9px 15px;
  margin-top: 20px;
  border: 1px solid #455989;
}
.careerlist .applybtn:hover {
  background: #213b75;
  color: #fff;
  text-decoration: none;
}

a {
  transition: 0.3s ease-in-out;
}
a:focus {
  text-decoration: none;
  outline: 0 solid;
}

.viewallbtn {
  text-align: center;
  margin-top: 40px;
}
.viewallbtn a {
  display: inline-block;
  background: #213b75;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  text-decoration: none;
}
.viewallbtn a:hover {
  background: #455989;
}

.custom__property {
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #ced4da !important;
}

.qr-img {
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: center;
}
.qr-img img {
  height: auto;
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

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