/*
Theme Name:         Uni Pro PU
Theme URI:          https://pipilikasoft.com/
Description:        A Responsive Theme for PU.
Version:            1.0.3
Author:             Pipilika Soft Team
Author URI:         http://pipilikasoft.com/
Text Domain:        university
License:            GNU General Public License v3 or later
License URI:        http://www.gnu.org/licenses/gpl-3.0.html
Domain Path:        /lang/

CONTENTS
-------------
- Global resets
- Global typography & layout rules
- Page styles
- Post styles
- General bits
- Media queries
 
*/
/* -------------------------------------------- Style Start ----------------------------------------- */
/* 
Theme Name: LUSA
Author: pipilika Soft 
Verstion: 2025
*/

/* !!! Custom Css for Uni start */
:root {
  --font: "Poppins", Arial, sans-serif;
  --accent-color: #072446;
  --secondary-color: #c77026;
  --lightSecondary-color: #ffc28e;
  --black-color: #000;
  --white-color: #fff;
  --dark-color: #160c0c;
  --blue-color: rgb(0, 97, 223);
  --gray-color: rgb(218, 218, 218);
}

html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 8px;
  /* transition: background 0.8s all ease-in-out; */
}

::-webkit-scrollbar-track {
  background: #a8d0dd;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 12px;
}

/* Use the font */
body {
  /* font-family: var(--font); 
  margin: 0;
  padding: 0;
  height: 100vh; */
  font-family: var(--font);
  background: #fdfdfd;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #333;
}
a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #333;
}
a.underline-animate {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

a.underline-animate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--accent-color);
  width: 42%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  justify-self: anchor-center;
}

a.underline-animate:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s ease;
}

a.underline-animate:not(:hover)::after {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s ease;
}

a {
  text-decoration: none;
}
.section-title {
  margin-bottom: 40px;
  color: #404751;
}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: 0.3s all ease-in-out;
}

img {
  max-width: 100%;
}
/* ! THeme */

.content-box * {
}

.content-box {
  /* overflow: auto; */
  text-align: justify;
}
.content-box img,
.content-box img[class*="wp-image-"] {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  overflow: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.content-box table {
  border: 1px solid #ddd;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  background-color: transparent;
  border-spacing: 0;
  border-collapse: collapse;
  text-align: left;
}
.content-box table th {
  background-color: var(--secondary-color);
  color: white;
}
.content-box table > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.content-box table > tbody > tr > td,
.content-box table > tbody > tr > th,
.content-box table > tfoot > tr > td,
.content-box table > tfoot > tr > th,
.content-box table > thead > tr > td,
.content-box table > thead > tr > th {
  border: 1px solid #ddd;
  padding: 10px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
  text-align: left;
}
.content-box ul i,
.content-box ol i {
  padding: 8px 0px 8px 0px;
}
/* ! THeme */
/* ? Title */
.titleContainer {
  display: flex;
  justify-content: space-between;
  margin: 30px 0px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgb(228, 228, 228);
}
.titleContainer .title-icon-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  padding-left: 35px;
}
.titleContainer .title-icon-list-items i {
  color: var(--secondary-color);
  margin-right: 5px;
}
.titleContainer .title-icon-list-items ::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 30px;
  height: 5px;
  background: url(./assets/images/et-3-sub-title-vector.svg) center center
    no-repeat;
  background-size: 100% 100%;
}
.titleContainer .elementor-icon-list-text {
  text-transform: uppercase;
  /* letter-spacing: 1.2px; */
  font-family: "Kalam", cursive;
  color: var(--secondary-color);
}
.mainTitleContainer h2 {
  font-weight: bold;
  font-family: auto;
}
.btn-title {
  background-color: var(--secondary-color);
  color: white;
  /* !opposite white button */
  /* background-color: white;
  color: var(--secondary-color); */
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  /* line-height: 1.3em; */
  letter-spacing: 1.5px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--secondary-color);
  border-radius: 8px;
  font-family: fangsong;
  padding: 13px 18px;
  transition: 0.3s all ease-in-out;
}
.btn-title:hover {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background: linear-gradient(45deg, #cbeaff, transparent);
  /* !opposite white button */
  /* background-color: var(--secondary-color);
  color: white; */
}

/* Medium Screens (Tablets and Small Laptops: 768px - 1024px) */
@media (max-width: 1024px) {
  .btn-title {
    padding: 11px 13px;
    font-size: 14px;
    border-radius: 8px;
  }
}

/* Small Screens (Mobile Phones: 480px - 767px) */
@media (max-width: 767px) {
  .btn-title {
    padding: 10px 9px;
    font-size: 12px;
  }
  .carousel-indicators {
    display: none;
  }
  .margin-top-30 {
    margin-top: -30px;
  }
}

/* Extra Small Screens (Very Small Devices: below 480px) */
@media (max-width: 480px) {
  .btn-title {
    padding: 6px 11px;
    font-size: 9px;
    letter-spacing: normal;
    border-radius: 4px;
  }
  .titleContainer .elementor-icon-list-text {
    font-size: 12px;
    letter-spacing: 1.1px;
  }
  .mainTitleContainer h2 {
    font-size: 22px;
  }
  .titleContainer .title-icon-list-items {
    margin-bottom: 3px;
  }
}
.titleBtnSide {
  align-content: center;
}
.mt-100 {
  padding: 110px 0;
}
@media (max-width: 500px) {
  .mt-100 {
    padding: 50px 0;
  }
}
.py-60 {
  padding: 60px 0;
}
.gallerySection {
  background: url(./assets/images/about_bg.053b6557.png);
  background-size: cover;
}
.newsSection {
  background: url(./assets/images/faq_bg.16e7ef8e.png);
  background-size: cover;
}
/* button test  */
.button-container-1 {
  position: relative;
  /* width: 100px; */
  /* height: 50px; */
  margin-left: auto;
  margin-right: auto;
  /* margin-top: 6vh; */
  overflow: hidden;
  border: 1px solid var(--secondary-color);
  font-size: 20px;
  transition: 0.5s;
  /* letter-spacing: 1px; */
  border-radius: 12px;
}
.button-container-1 a {
  width: 101%;
  height: 100%;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  background: var(--secondary-color);
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  border: none;
  color: #ffffff;
  cursor: pointer;
  -webkit-animation: ani2 0.7s steps(22) forwards;
  animation: ani2 0.7s steps(22) forwards;
}
.button-container-1 a:hover {
  -webkit-animation: ani 0.7s steps(22) forwards;
  animation: ani 0.7s steps(22) forwards;
}

@-webkit-keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@-webkit-keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

.btn-primary:hover {
  background-color: white;
  color: var(--secondary-color);
}

.btn-reverse {
  background-color: white;
  color: var(--secondary-color);
}
.btn-reverse:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* ! Animataion */
.teacherSection {
  background: url(./assets/images/about_bg.053b6557.png);
  background-size: cover;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
/* .newsEventSection {
  background: url(./assets/images/faq_bg.16e7ef8e.png);
  background-size: cover;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
} */

.text-black {
  color: #222222 !important;
}

/* Border Effect */

.borderCard {
  position: relative;
}

.borderCard span {
  position: absolute;
  border-radius: 100vmax;
}

.top {
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent 50%,
    rgba(255, 49, 49, 0.5),
    rgb(255, 49, 49)
  );
}

.bottom {
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgb(57, 255, 20),
    rgba(57, 255, 20, 0.5),
    transparent 50%
  );
}

.right {
  top: 0;
  right: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(21, 0, 255, 0.5),
    rgb(47, 0, 255)
  );
}

.left {
  left: 0;
  bottom: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    180deg,
    rgb(255, 255, 113),
    rgba(255, 255, 113, 0.5),
    transparent 70%
  );
}

.top {
  animation: animateTop 3s ease-in-out infinite;
}

.bottom {
  animation: animateBottom 3s ease-in-out infinite;
}

.right {
  animation: animateRight 3s ease-in-out infinite;
}

.left {
  animation: animateLeft 3s ease-in-out infinite;
}

@keyframes animateTop {
  25% {
    width: 100%;
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@keyframes animateBottom {
  0%,
  50% {
    opacity: 0;
    width: 0;
  }

  75% {
    opacity: 1;
    width: 100%;
  }

  76%,
  100% {
    opacity: 0;
  }
}

@keyframes animateRight {
  0%,
  25% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 100%;
  }

  55%,
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes animateLeft {
  0%,
  75% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}

/*!!! Testing start */

body .wrap a {
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-family: "Oswald";
  flex-grow: 1;
  cursor: pointer;
  border-radius: 6px;
}
body .wrap a:before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: calc(2px / -1);
  left: calc(2px / -1);
  border-radius: 6px;
  background: linear-gradient(
      to right,
      var(--accent-color) 0%,
      var(--accent-color) 100%
    ),
    linear-gradient(to top, var(--accent-color) 50%, transparent 50%),
    linear-gradient(to top, var(--accent-color) 50%, transparent 50%),
    linear-gradient(to right, var(--accent-color) 0%, var(--accent-color) 100%),
    linear-gradient(to left, var(--accent-color) 0%, var(--accent-color) 100%);
  background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
  background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
  background-repeat: no-repeat, no-repeat;
  transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out,
    background-size 0.3s ease-in-out;
  transform: scaleX(0) rotate(0deg);
  transition-delay: 0.6s, 0.3s, 0s;
}
body .wrap a:hover:before {
  background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
  background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
  transform: scaleX(1) rotate(0deg);
  transition-delay: 0s, 0.3s, 0.6s;
}
mark {
  background: linear-gradient(270deg, #d42f4a 0%, #f82bbf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #0000;
  -webkit-box-decoration-break: clone;
}
/* ! image hover scale up effect */
.imgHoverScale {
  transition: all 0.5s ease-in-out;
}
/* .imgHoverScale:hover {
  transform: scale(1.2);
} */
.imgHoverScale::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; /* copies the parent's background image/props */
  transform: scale(1);
  transition: transform 1s ease-in-out; /* slower zoom */
  will-change: transform;
}
.imgHoverScale:hover::before {
  transform: scale(1.15); /* zoom amount */
}
/* ! image hover scale up effect */

/* -----------------------------  main menu js nav  start */

/*Menu CSS*/
.jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > li > a {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  text-decoration: none;
  border-color: var(--accent-color);
  font-size: 16px;
  height: 30px;
  padding: 0 13px;
  line-height: 30px;
  color: #232323;
  font-weight: 500;
  border-radius: 15px;
}
.jsnav-header .jsnav-header-wrapper .main-site-menu > ul > li > a {
  color: #232323;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > li > a:focus,
.jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > li > a:hover {
  /* text-shadow: 0.5px 0.5px #1e1e1e; */
  /* color: #565656; */
  /* background: linear-gradient(to bottom, #a5a5a5, #6c757d); */
  /* background: #343c56; */
  color: #004d40;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul li {
  /* border-left: 1px solid #ffffff !important;
  border-left-width: 1px;
  border-left-style: solid; */
  position: relative;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul li:first-child {
  border-left: none !important;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul li > ul li {
  border: none;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul ul li > a {
  color: #5c5c5c;
  font-size: 14px;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu {
  /* float: left !important; */
  width: 100%;
  margin: auto;
  text-align: center;
  margin-top: 5px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: #fff;
}

.burger-menu {
  padding-top: 10px;
  margin-left: 15px;
  position: revert;
  display: inline-block;
  background: transparent;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu li > ul {
  padding-inline-start: 22px;
  transition-duration: 0.5s;
  border: 1px solid lightgray;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul ul li > a {
  padding: 5px 15px 5px 10px;
  border-bottom: 1px solid #cfcfcf;
  text-align: left;

  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul ul li > a:hover {
  background: #dfdfdf;
}

.jsnav-header .jsnav-header-wrapper .jsnav-menu ul ul ul li > a {
  padding: 5px 15px 5px 10px;
}

/* From Here the Mobile Menu coding start / on mobile show */
.mobile-menu {
  display: block;
  text-align: right;
}
.jsnav-header .jsnav-header-wrapper .jsnav-menu {
  text-align: left;
}
.menuShowOnMobile {
  display: block;
}
.menuHideOnMobile {
  display: none;
}
.mobileDisplayFlex {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.tdWidthForMenu {
  display: block;
  width: fit-content;
}

@media (max-width: 1200px) {
  .tdWidthForMenu {
    order: 3;
  }
  .applyOnline {
    display: none;
  }
  /* .jsnav-header {
    margin-top: 10px;
    border-top: 1px solid gray;
  } */
  .jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > li > a {
    border: 1px solid #c1c1c1;
    margin-bottom: 8px;
  }
  .dropdown-plus::after,
  .dropdown-plus::before {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 13px;
    height: 2px;
    content: "";
    background-color: #c1c1c1;
  }
}
/* From Here the Mobile Menu coding End */

@media (min-width: 1200px) {
  .jsnav-header .jsnav-header-wrapper .jsnav-menu li:hover > ul {
    z-index: 1000;
  }

  .jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > li > a {
    padding: 0 9px;
  }

  .jsnav-header .jsnav-header-wrapper .logo {
    padding: 7px 40px 7px 0;
  }

  .jsnav-header .jsnav-header-wrapper {
    height: 42px;
    padding-right: 0px;
  }

  .jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > .dropdown_menu::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--accent-color);
    margin-bottom: 3px;
    text-align: right;
    position: absolute;
    right: 0px;
    top: 12px;
  }
  /* .jsnav-header .jsnav-header-wrapper .jsnav-menu > ul > .dropdown_menu::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid grey;
    margin-bottom: 3px;
    text-align: right;
    position: absolute;
    right: 2px;
    top: 14px;
  } */

  .jsnav-header .jsnav-header-wrapper .jsnav-menu ul ul li > a {
    display: block;
    background: #ffffff;
    /* background: linear-gradient(to bottom, #a5a5a5, #6c757d);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF127E43', endColorstr='#FF217246');*/
    color: #424242;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    padding: 3px 10px 3px 10px !important;
    line-height: 27px;
    text-decoration: none;
    text-transform: none;
    vertical-align: baseline;
    transition: 0.5s;
  }

  .jsnav-header .jsnav-header-wrapper .jsnav-menu li > ul {
    padding: 0px 0;
  }

  .jsnav-header
    .jsnav-header-wrapper
    .jsnav-menu
    li
    > ul
    > .dropdown_menu::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-left: 5px solid grey;
    border-bottom: 4px solid transparent;
    margin-bottom: 3px;
    text-align: right;
    position: absolute;
    right: 8px;
    top: 12px;
  }

  .jsnav-header .jsnav-header-wrapper .jsnav-menu li > ul ul {
    top: 0px;
  }

  .mobile-menu {
    display: none;
  }
  .menuShowOnMobile {
    display: none;
  }
  .menuHideOnMobile {
    display: block;
  }
}
@media (max-width: 576px) {
  /*  .mobile-menu {*/
  /*  display: block;*/
  /*  text-align: right;*/
  /*background: red; */
  /*  z-index: 5000;*/
  /*  position: absolute;*/
  /* width: 100px; */
  /* height: 100px; */
  /*  top: -65px;*/
  /*  right: 15px;*/
  /*}*/
  .jsnav-header {
    /* padding-top: 5px; */
    background: #e7ecff !important;
  }
  /* .jsnav-header .jsnav-header-wrapper .jsnav-menu ul li {
    border-left: 1px solid black !important;
  } */
  .jsnav-header .jsnav-header-wrapper .jsnav-menu > ul {
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  #header-top-row-menu .menu-item {
    /*margin: 0px 0px;*/
    font-size: 9px;
    /*padding: 0 !important;*/
  }
  #header-top-row-menu .menu-item a {
    font-size: 9px;
    color: var(--accent-color);
    /* letter-spacing: 1px; */
  }
}
/* ----------------------------------  main menu js nav style end*/

.text-black {
  color: #222222 !important;
}
.grid {
  display: grid;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-etBlack {
  --tw-text-opacity: 1;
  color: rgb(24 24 24 / var(--tw-text-opacity));
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 4px;
  transition: 0.4s ease;
}
.text-etBlack:hover {
  --tw-text-opacity: 1;
  color: rgb(18 96 254 / var(--tw-text-opacity));
}
.text-etGray {
  --tw-text-opacity: 1;
  color: rgb(88 89 91 / var(--tw-text-opacity));
  font-size: 16px;
}
.bg-etBlue {
  background-color: var(--accent-color);
}
.td_page_heading {
  min-height: 250px;

  /* ! old  */
  /* position: relative;
  padding: 20px 0;
  margin-top: 100px;
  background-color: #2c2c2c; */
  /* ? new */
  background-color: #291859;
  background-image: url(./assets/images/singlePageHeader.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  outline-color: #fff;
  /* padding-block: 2rem !important; */
}
@media (min-width: 768px) {
  .td_page_heading {
    /* background-position-x: right; */
    min-height: 280px;
  }
}
.td_heading_bg {
  background-color: var(--heading-color);
}
.td_gap_y_50 {
  gap: 50px 0;
}
.td_gap_y_30 {
  gap: 30px 0;
}

.td_row_gap_30 {
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (min-width: 992px) {
  .td_height_140 {
    height: 140px;
  }
  .td_height_120 {
    height: 120px;
  }
}
@media screen and (max-width: 991px) {
  .td_height_lg_80 {
    height: 80px;
  }
}
@media screen and (min-width: 992px) {
  .td_height_60 {
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .td_height_lg_40 {
    height: 40px;
  }
}

.seven h2 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  width: fit-content;
  text-align: center;
  margin: auto;
  white-space: nowrap;
  border: 2px solid #222;
  padding: 5px 11px 3px 11px;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--accent-color);
}
.seven h2:before,
.seven h2:after {
  background-color: #c50000;
  position: absolute;
  content: "";
  height: 7px;

  width: 7px;
  border-radius: 50%;
  bottom: 12px;
}
.seven h2:before {
  left: -20px;
}
.seven h2:after {
  right: -20px;
}
/* Pagination start */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  font-family: "Segoe UI", "Roboto", sans-serif;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #2a2a2a;
  background-color: #ffffff;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-width: 42px;
  text-align: center;
}

.pagination a:hover {
  background-color: var(--accent-color); /* Deep blue */
  color: #ffffff;
  border-color: var(--accent-color);
}

.pagination .current {
  background-color: var(--accent-color); /* Deep red */
  color: white;
  border-color: var(--accent-color);
  font-weight: 600;
}
.pagination .prev,
.pagination .next {
  font-weight: 500;
}
.active > .page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.cardContainer-colorTop {
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}

/* Pagination end */

/* Employee archive/loop page Title */
.group-emp-title {
  font-family: "Playfair Display", "Bookman", serif;
  font-size: 40px !important;
  color: #383838;
}

@media screen and (max-width: 730px) {
  .group-emp-title {
    margin-bottom: -10px;
    font-size: 27px !important;
    letter-spacing: 0px !important;
  }
}

@media screen and (max-width: 567px) {
  .group-emp-title {
    margin-bottom: -10px;
    font-size: 18px !important;
    letter-spacing: 0px !important;
  }
}

@media screen and (max-width: 450px) {
  .group-emp-title {
    margin-bottom: -10px;
    font-size: 16px !important;
    letter-spacing: 0px !important;
  }
}
/* Employee archive/loop page Title */
.td_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.td_bg_filed {
  background-size: cover;
  background-position: center;
}

.td_bg_filed,
.td_btn.td_style_2,
select.td_form_field {
  background-repeat: no-repeat;
}

.td_hover_layer_1,
.td_hover_layer_2,
.td_hover_layer_3,
.td_hover_layer_4,
.td_hover_layer_5 {
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: perspective(600px) translate3d(0, 0, 0);
  transform: perspective(600px) translate3d(0, 0, 0);
}

.td_page_heading .td_page_heading_shape_1 {
  left: 0;
  top: 42%;
  background: linear-gradient(291deg, #ebeced 98.22%, #868687 168.65%);
  opacity: 0.03;
  width: 186px;
  height: 186px;
  border-radius: 50%;
}

.td_white_color {
  color: var(--white-color);
}

/*.td_fs_48 {*/
/*    font-size: 48px;*/
/*    line-height: 1.33em;*/
/*}*/
.td_page_heading_in h1 {
  font-weight: 700;
  font-size: 32px;
}
@media (max-width: 768px) {
  .td_page_heading_in h1 {
    font-weight: 700;
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .td_page_heading_in h1 {
    font-weight: 700;
    font-size: 24px;
  }
  .page-archive-data-social-link-area a i {
    font-size: 24px !important;
  }
}
.breadcrumb {
  /* justify-content: center; */
}

.breadcrumb li,
.breadcrumb li a,
.breadcrumb-item + .breadcrumb-item::before {
  font-size: 20px;
  color: lightgray;
  font-weight: 700;
}

.breadcrumb .active {
  /* opacity: 0.74; */
  color: whitesmoke;
}

.breadcrumb li a:hover {
  /* color: var(--secondary-color); */
  opacity: 0.74;

  transition: 0.5s;
}
/* ? Single Page Header */

.td_page_heading {
  position: relative;
}

.small-banner__bg-border {
  z-index: 10;
  position: absolute;
  content: "";
  overflow: hidden;
  left: -1.5em;
  bottom: 0;
  right: 0;
}

.small-banner__bg::before {
  width: 100%;
  height: 0.5em;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #de1648;
  z-index: 1;
}

.small-banner__bg-border-inner {
  width: 38.9375em;
  height: 1.5625em;
  background-color: #fff;
  position: relative;
}

@media (max-width: 1199.98px) {
  .small-banner__bg-border-inner {
    width: 25em;
  }
}

@media (max-width: 767.98px) {
  .small-banner__bg-border-inner {
    width: 243px;
  }
}

.small-banner__bg-border-inner::before {
  content: "";
  background-color: #de1648;
  height: 1.375em;
  width: 1.4375em;
  position: absolute;
  right: -3.5em;
  bottom: -1px;
  -webkit-transform: skewX(69deg);
  -ms-transform: skewX(69deg);
  transform: skewX(69deg);
}

.small-banner__bg-border-inner:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.625em 0 0 3.8125em;
  border-color: transparent transparent transparent #fff;
  left: 100%;
  top: 0;
}

@media only screen and (max-width: 1300px) {
  .small-banner__inner {
    padding: 0.625em 0 0 1.875em;
  }
}
.mb-10 {
  margin-bottom: 150px;
}
@media (max-width: 600px) {
  .mb-10 {
    margin-bottom: 100px;
  }
}
/* ? Single Page Header */
