@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100..900&display=swap");
body {
  font-family: "Noto Sans Devanagari", sans-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: unset;
}

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

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

h3 {
  font-size: clamp(1.25rem, 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 {
  text-transform: capitalize;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .section__title h5 {
    font-size: 1rem;
  }
}
.section__title h6 {
  border-radius: 1.875rem;
  background: #f9fafb;
  padding: 0.875rem 2.75rem;
  color: #0033A0;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.section__title h1,
.section__title h2 {
  color: #0033A0;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .section__title h1,
  .section__title h2 {
    font-size: 1.625rem;
  }
}
.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: #0033A0;
  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;
}

.empty-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #DC143C;
}

.empty-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
}

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

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}

.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: #DC143C;
  background-color: #DC143C;
}
.l__button--primary:hover {
  border-color: #0033A0;
  color: #ffffff;
  background-color: #0033A0;
}
.l__button--secondary {
  color: #ffffff;
  background-color: #0033A0;
  border-color: #0033A0;
}
.l__button--secondary:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: #DC143C;
}
.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: #DC143C !important;
  background-color: transparent;
  border-color: #DC143C;
}
.l__button--transparent:hover {
  border-color: #0033A0;
  background-color: #0033A0;
  color: #ffffff !important;
}
.l__button--border {
  border-color: #DC143C;
  color: #DC143C;
}
.l__button:hover:before {
  width: 100%;
}
@media (max-width: 480px) {
  .l__button {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }
}

.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;
  color: #ffffff;
}
.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);
}
.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;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
  color: #333333;
}
.main-menu .main-menu__list > li > a:hover {
  color: #c82135;
}
.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 0.9375rem;
}
.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: -1px;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-size: 0.875rem;
  color: #151422;
  font-weight: 700;
  z-index: 1;
  color: #333333;
}
.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: #333333;
  cursor: pointer;
  transition: 500ms;
  display: flex;
  text-decoration: none;
}
.main-menu .mobile-nav__toggler:hover {
  color: #DC143C;
}

.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.25rem 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 {
  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: #333333;
  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: #DC143C;
}

.mobile-nav__content .main-menu__list {
  /* no menu after 2rd level dropdown */
}
.mobile-nav__content .main-menu__list li a.expanded {
  color: #DC143C;
}
.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: #DC143C;
}
.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 #DC143C;
  color: #DC143C;
}
.mobile-nav__social a:hover {
  color: #ffffff;
  background: #DC143C;
}
.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: #333333;
  text-decoration: none;
  transition: 500ms;
}
.mobile-nav__contact li > i {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 1px solid #DC143C;
  color: #DC143C;
  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: #DC143C;
}

.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);
  width: 100%;
}
.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;
  box-shadow: 0 6px 10px rgba(85, 85, 85, 0.2);
  animation: slide-down 0.3s;
  background-color: #ffffff;
}
.main-header__wrapper.sticky .main-menu-two__wrapper-inner {
  padding-block: 0.5rem;
}

.main-menu-two__wrapper-inner {
  padding-block: 0.5rem;
  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: #0033A0;
  border-color: #0033A0;
  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;
  }
}
@media (max-width: 991px) {
  .main-menu-two__right {
    display: block !important;
  }
}
.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: #DC143C;
  color: #333333;
  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: #DC143C;
}
.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: #DC143C;
}
.main-menu-two__btn-box > ul li .profile > ul li a:hover {
  color: #DC143C;
}
.main-menu-two__btn-box .phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  .main-menu-two__btn-box .phone {
    display: none;
  }
}
.main-menu-two__btn-box .phone i {
  font-size: 1.5rem;
  color: #DC143C;
}
.main-menu-two__btn-box .phone .number p {
  margin-bottom: 0px;
  color: #ffffff;
}
.main-menu-two__btn-box .phone .number a {
  text-decoration: none;
  color: #DC143C;
  font-size: 1.375rem;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .main-menu-two__btn-box .phone .number a {
    font-size: 1rem;
  }
}
.main-menu-two__btn-box .phone .number a:hover {
  color: #0033A0;
}
@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;
  }
}
.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;
}
@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 {
  margin-top: 0.5rem;
}
.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 #DC143C;
  color: #DC143C;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.footer__widget--social ul a:hover {
  border-color: #DC143C;
  background-color: #DC143C;
  color: #ffffff;
}
@media (max-width: 991px) {
  .footer__widget--social ul a {
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    font-size: 1.25rem;
  }
}
@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.5rem;
  font-weight: 600;
  color: #333333;
  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: #DC143C;
}
.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 {
  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: 991px) {
  .copyright .copyright__content {
    justify-content: center;
  }
  .copyright .copyright__content .text {
    text-align: center;
  }
  .copyright .copyright__content .developer__logo {
    margin-top: 15px;
  }
}

.program__card {
  min-height: 16rem;
  border-radius: 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgb(238, 230, 226);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.03);
}
.program__card a {
  text-decoration: none;
}
.program__card--img {
  height: 16rem;
  width: 100%;
  overflow: hidden;
  transition: height 0.3s ease;
}
.program__card--img img {
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media (max-width: 991px) {
  .program__card--img {
    height: 13rem;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .program__card--img {
    height: 16rem;
    width: 100%;
    overflow: hidden;
  }
}
.program__card--content {
  padding: 1.5rem 1rem;
  transition: transform 0.3s ease;
}
.program__card--content h3 {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.program__card--content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.program__card.active .program__card--img, .program__card:hover .program__card--img {
  height: 16.3125rem;
}
.program__card.active .program__card--img h3, .program__card:hover .program__card--img h3 {
  transform: translateY(100%);
  height: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .program__card.active .program__card--img, .program__card:hover .program__card--img {
    height: 13.25rem;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .program__card.active .program__card--img, .program__card:hover .program__card--img {
    height: 16.25rem;
    width: 100%;
    overflow: hidden;
  }
}
.program__card.active .program__card--content, .program__card:hover .program__card--content {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.program__card.active .program__card--content h3, .program__card:hover .program__card--content h3 {
  color: #DC143C;
}

.news {
  background-color: #f8f9fa;
}
.news__box {
  padding-bottom: 1rem;
}
.news__card {
  transition: all 0.3s ease;
  border: 1px solid rgb(238, 230, 226);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
  background-color: #ffffff;
}
.news__card a {
  text-decoration: none;
}
.news__card--date {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: end;
  margin-bottom: 1rem;
}
.news__card--content {
  margin-bottom: 1.25rem;
}
.news__card--content h3 {
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__card--content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__card .more-btn a {
  color: #DC143C;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
}
.news__card:hover {
  border-color: #DC143C;
}
.news__card:hover h3 {
  color: #DC143C;
}

.more-btn a {
  color: #DC143C;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}
.more-btn a:hover {
  color: #0033A0;
}

.gallery__card {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.gallery__card--img {
  height: 18rem;
  width: 100%;
  overflow: hidden;
}
.gallery__card--img img {
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.3s ease;
}
.gallery__card--content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.gallery__card--content::before {
  content: "";
  background: linear-gradient(rgba(58, 86, 108, 0), rgb(0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3.125rem;
  width: 100%;
  overflow: hidden;
}
.gallery__card--content a {
  text-decoration: none;
}
.gallery__card--content a h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery__card--content a:hover h5 {
  color: #DC143C;
}
.gallery__card--content h5 {
  text-align: center;
  color: #ffffff;
  z-index: 1;
  position: relative;
  padding-inline: 0.5rem;
}
.gallery__card:hover img {
  transform: scale(1.05);
}

.view-btn {
  margin-top: 1.5rem;
}

.member__table {
  overflow-x: auto;
}
.member__table table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border: none;
}
.member__table table thead th {
  background-color: #DC143C;
  border: 1px solid #DC143C;
  color: #ffffff;
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}
.member__table table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  vertical-align: top;
  background-color: #fafafa;
}
.member__table table tr:nth-child(even) td {
  background-color: #fff;
}
.member__table table strong {
  font-weight: 600;
}

.news-list__card a {
  text-decoration: none;
}
.news-list__card--img {
  height: 16rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
  margin-bottom: 1.5rem;
}
.news-list__card--img img {
  object-fit: cover;
  border-radius: 0.625rem;
}
.news-list__card--date {
  font-size: 0.875rem;
  font-weight: 400;
}
.news-list__card--content {
  padding-block: 0.75rem;
}
.news-list__card--content h5 {
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list__card--content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner {
  height: calc(100vh - 7rem);
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .banner {
    height: 100%;
  }
}
.banner .owl-stage {
  height: 100%;
}
.banner .owl-stage-outer {
  height: 100%;
}
.banner .owl-item {
  height: 100%;
}
.banner__slider {
  height: 100%;
}
.banner__section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  position: relative;
}
@media (max-width: 991px) {
  .banner__section {
    padding-block: 6.25rem;
  }
}
.banner__section::before {
  content: "";
  background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%), linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.9;
  inset: 0;
}
.banner__section--content {
  width: 60%;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .banner__section--content {
    width: 100%;
  }
}
.banner__section--content .content h4 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
}
.banner__section--content .content h1 {
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
}
.banner__section--content .content .subtitle {
  color: #ffffff;
  margin-top: 1rem;
}

.about .short__desc {
  max-width: 62.5rem;
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  margin-inline: auto;
}

.program__index {
  background-color: #f8f9fa;
}

.stats {
  background-color: #ffffff;
}
.stats__detail {
  text-decoration: none;
  list-style: none;
  padding-left: 0px;
}
@media (max-width: 575px) {
  .stats__detail {
    padding: 1rem 2.5rem;
  }
}
.stats__detail--content {
  width: 100%;
  text-align: center;
}
.stats__detail--content .stats-num {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.stats__detail--content .stats-num span {
  font-size: 3rem;
  font-weight: 600;
  position: relative;
  display: block;
}
.stats__detail--content p {
  position: relative;
  font-size: 1.25rem;
}
@media (max-width: 575px) {
  .stats__detail--content p {
    font-size: 1rem;
  }
}

.about__detail--content ol,
.about__detail--content ul {
  padding-left: 0px;
}
.about__detail--content ol li,
.about__detail--content ul li {
  list-style: none;
  margin-bottom: 1rem;
  line-height: 28px;
  padding-left: 1.5rem;
  position: relative;
}
.about__detail--content ol li::before,
.about__detail--content ul li::before {
  content: "";
  background-image: url("/static/site-asset/images/check.svg");
  height: 1rem;
  width: 1rem;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
  background-color: #2563eb;
  border-radius: 50%;
}
.about__detail--content ol li .content,
.about__detail--content ul li .content {
  color: rgb(31, 41, 55);
  display: flex;
  gap: 1rem;
}
.about__detail--content ol li .content i,
.about__detail--content ul li .content i {
  color: #2563eb;
}
.about__detail--content ol li .content span,
.about__detail--content ul li .content span {
  font-weight: 700;
}
.about__detail--content .description {
  text-align: center;
  margin-top: 10px;
}
.about__detail--img {
  height: 32rem;
  width: 100%;
  overflow: hidden;
}
.about__detail--img img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 575px) {
  .about__detail--img {
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
}

.mission__detail--img {
  margin-bottom: 2.5rem;
  height: 36rem;
  width: 100%;
  overflow: hidden;
}
.mission__detail--img img {
  object-fit: cover;
}
@media (max-width: 991px) {
  .mission__detail--img {
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
}
.mission__detail--content {
  text-align: center;
}
.mission__detail--content h3 {
  color: #333333;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.mission__detail .objective {
  padding-top: 1rem;
}
.mission__detail .objective h3 {
  color: #0033A0;
  font-weight: 600;
}

.contact__card {
  text-align: center;
  border: 1px solid #f4f4f4;
  padding: 2.5rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #fbfbfb;
}
@media (max-width: 991px) {
  .contact__card {
    padding: 1.5rem 1rem;
  }
}
.contact__card .icon {
  margin-inline: auto;
  height: 3.125rem;
  width: 3.125rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: rgba(220, 20, 60, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.contact__card .icon i {
  color: #DC143C;
  font-size: 1.5rem;
}
.contact__card .info {
  text-align: center;
  margin-top: 1rem;
}
.contact__card .info span a {
  text-decoration: none;
  color: #DC143C;
}
.contact__card .info span a:hover {
  color: #0033A0;
}
@media (max-width: 991px) {
  .contact__card .info span a {
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.contact__content .title {
  color: #0033A0;
  font-size: clamp(1.625rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.625rem;
  text-transform: capitalize;
}
.contact__content .title span {
  color: #DC143C;
}
.contact__content p {
  margin-bottom: 2.3125rem;
}
.contact__content form {
  border-radius: 10px;
  background: linear-gradient(121deg, #fbfbfb 0%, #f0f0f0 100%);
  padding: 1.5rem;
}
.contact__content form h2 {
  color: #0033A0;
  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.5rem 1rem;
}
.contact__content form .form-control::placeholder {
  color: #5e5e5e;
  font-size: 0.8125rem;
  font-weight: 400;
}
.contact__content form label {
  font-size: 0.875rem;
  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;
  }
}

.gallery-detail__view a img {
  height: 20rem;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}

.news__detail--img {
  height: 26rem;
  width: 100%;
  overflow: hidden;
}
.news__detail--img img {
  object-fit: cover;
}
@media (max-width: 575px) {
  .news__detail--img {
    height: 15rem;
  }
}
.news__detail .content {
  padding-top: 1.5rem;
}
.news__detail .content .meta .date {
  font-size: 14px;
}
.news__detail .content h1 {
  color: black;
}
.news__detail .recent {
  background-color: #f5f5f7;
  position: sticky;
  top: 6.75rem;
  padding: 1rem;
  border-radius: 8px;
}
.news__detail .recent h3 {
  color: #0033A0;
  margin-bottom: 0rem;
}
.news__detail .recent .row-cols-1 > * {
  border-bottom: 1px solid #878787;
}
.news__detail .recent .row-cols-1 > *:last-child {
  border-bottom: none;
}
.news__detail .recent .recent-news__flex--img {
  height: 15rem;
  width: 100%;
  overflow: hidden;
}
.news__detail .recent .recent-news__flex--img img {
  object-fit: cover;
}
.news__detail .recent .recent-news__flex--content a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1rem;
}
.news__detail .recent .recent-news__flex--content a h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__detail .recent .recent-news__flex--content a .arrow-icon {
  color: #DC143C;
  font-size: 1.25rem;
}
.news__detail .recent .recent-news__flex--content a:hover h5 {
  color: #DC143C;
}
.news__detail .recent .recent-news__flex--content a:hover .arrow-icon {
  color: #0033A0;
}

.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: #DC143C;
  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: #0033A0;
  font-weight: 600;
  padding: 9px 15px;
  margin-top: 20px;
  border: 1px solid #DC143C;
}
.careerlist .applybtn:hover {
  background: #0033A0;
  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: #0033A0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  text-decoration: none;
}
.viewallbtn a:hover {
  background: #DC143C;
}

.custom__property {
  margin-bottom: 15px;
}

.document__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgb(238, 230, 226);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.03);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.625rem;
  transition: all 0.3s ease;
}
.document__list a {
  text-decoration: none;
}
.document__list h4 {
  margin-bottom: 0rem;
  color: #333333;
}
.document__list h4:hover {
  color: #DC143C;
}
.document__list .download {
  font-size: 1.5rem;
  color: #DC143C;
}
.document__list .download:hover {
  color: #0033A0;
}
.document__list:hover {
  background-color: #fbfbfb;
  border-color: #DC143C;
}

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