body {
  overflow-x: hidden;
}

a {
  color: unset;
}

p,
ol,
ul {
  font-size: 13px;
  font-weight: 400;
  color: #585858;
  line-height: 23px;
}
.ex-flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.ex-flex-wrap {
  flex-wrap: wrap;
  flex-flow: row wrap;
}

.ex-vertical {
  top: 50%;
  transform: translateY(-50%);
}

.ex-transition {
  transition: all 0.6s ease;
}

.ex-transition-medium {
  transition: all 1.2s ease;
}

.ex-transition-large {
  transition: all 1.8s ease;
}

/*--------------------------------------- Mixins Ends -------------------------------------*/
/*------------------------------------ Site Wide Starts -----------------------------------*/
body.open-nav {
  overflow: hidden;
}
body.open-nav .nav-section {
  left: 75%;
  right: 0;
  transition: all 0.5s ease;
}

.bg {
  background-color: #581845 !important;
}

/*------------------------------------- Site Wide Ends ------------------------------------*/
/*--------------------------------- Header Wrapper Starts ---------------------------------*/
.top-header {
  border: 1px solid #f2f2f2;
  padding: 8px 0;
}
.top-header p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  margin-right: 32px;
}

.header-btn {
  border: 1px solid #581845;
  border-radius: 4px;
  padding: 10px 30px;
  font-size: 12px;
  line-height: 17px;
}

.header-btn img {
  object-fit: contain;
}
.header-list .footer-box i {
  color: #fff;
  /* font-size: 12px; */
}
#header-wrapper {
  z-index: 10;
  width: 100%;
  position: relative;
  background-color: #fff;
}
#header-wrapper .logo-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container {
  display: flex;
  align-items: center;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .login-container ul {
  display: flex;
  align-items: center;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .login-container ul li {
  margin-right: 55px;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .login-container ul li a {
  text-transform: uppercase;
  color: #581845;
  font-family: 'Poppins', sans-serif;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .toggle-container {
  display: flex;
  align-items: center;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .toggle-container .toggle-item .inner {
  display: flex;
  flex-direction: column;
  width: 50px;
  margin-right: 10px;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .toggle-container .toggle-item .inner span {
  height: 1px;
  width: 100%;
  display: inline-block;
  background-color: #581845;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .toggle-container .toggle-item .inner span:not(:last-of-type) {
  margin-bottom: 8px;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .toggle-container .toggle-item .inner span:nth-of-type(2) {
  width: 70%;
}
#header-wrapper .logo-nav-wrapper .login-toggle-container .toggle-container .toggle-item h6 {
  text-transform: uppercase;
  color: #581845;
  font-family: 'Poppins', sans-serif;
}
#header-wrapper .nav-container ul li {
  display: inline-block;
  vertical-align: top;
}
#header-wrapper .nav-container ul li a {
  font-size: 14px;
  display: block;
  color: #fff;
  text-transform: uppercase;
}
#header-wrapper .nav-container ul li:last-of-type a {
  display: flex;
  align-items: center;
}
#header-wrapper .nav-container > ul > li {
  position: relative;
}
#header-wrapper .nav-container > ul > li:not(:last-of-type) {
  margin-right: 65px;
}
#header-wrapper .nav-container > ul > li > a {
  padding: 18px 0;
}
#header-wrapper .nav-container > ul > li > ul {
  box-shadow: 0 0 8px rgba(39, 39, 39, 0.0705882353);
  min-width: 230px;
  position: absolute;
  left: -22px;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
#header-wrapper .nav-container > ul > li > ul:after {
  content: '';
  position: absolute;
  top: -7px;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}
#header-wrapper .nav-container > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-left: 2px solid transparent;
  background-color: rgba(0, 0, 0, 0.5019607843);
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li a {
  font-size: 12px;
  padding: 15px 20px;
  text-align: left;
  line-height: 1.5em;
  color: #fff;
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li:hover {
  border-left: 2px solid #581845;
  background-color: #e8f6ff;
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li:hover > a {
  color: #581845;
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li:hover ul {
  opacity: 1;
  pointer-events: initial;
  transition: opacity 0.5s ease;
}
#header-wrapper .nav-container > ul > li > ul > li ul {
  position: absolute;
  width: 230px;
  left: 100%;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
#header-wrapper .nav-container > ul > li > ul > li ul li {
  width: 100%;
  display: block;
  border-left: 2px solid transparent;
  background-color: rgba(0, 0, 0, 0.5019607843);
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li ul li a {
  color: #fff;
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li ul li:hover {
  border-left: 2px solid #581845;
  background-color: #e8f6ff;
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li > ul > li ul li:hover > a {
  color: #581845;
  transition: all 0.6s ease;
}
#header-wrapper .nav-container > ul > li.has-sub-menu > a {
  position: relative;
  padding-right: 15px;
}
#header-wrapper .nav-container > ul > li.has-sub-menu > a:after {
  content: '';
  height: 8px;
  width: 8px;
  background-image: url('../img/icons/icon_down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}
#header-wrapper .nav-container > ul > li:hover > ul {
  opacity: 1;
  pointer-events: initial;
  transition: opacity 0.5s ease;
}
#header-wrapper .bottom-header-section {
  background-color: #581845;
}
#header-wrapper .bottom-header-section .nav-container {
  text-align: center;
}
#header-wrapper.hide-menu {
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s ease;
}
.bottom-header-section.nav-scroll {
  width: 100%;
  position: fixed;
  background-color: #fff;
  top: 0;
  -webkit-animation: slide-down 0.7s;
  animation: slide-down 0.7s;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .common-logo-container a {
  filter: brightness(100%) invert(0);
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container ul li a {
  color: #581845;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container > ul > li.has-sub-menu > a:after {
  filter: brightness(1) invert(0);
  transition: all 0.4s ease;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container > ul > li > ul:after {
  opacity: 0;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container > ul > li > ul > li {
  position: relative;
  background-color: #fff;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container > ul > li > ul > li:hover > a {
  background-color: #e8f6ff;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container > ul > li > ul > li ul li {
  background-color: #fff;
}
#header-wrapper.nav-scroll .logo-nav-wrapper .nav-container > ul > li > ul > li ul li:hover > a {
  background-color: #e8f6ff;
}

/*--------------------------------- Header Wrapper Starts ---------------------------------*/
.nav-section {
  position: fixed;
  height: 100vh;
  background-color: #581845;
  top: 0;
  right: -1000px;
  z-index: 10;
  overflow-x: hidden;
  transition: all 0.5s ease-in;
}
.sidebar-contact {
  position: absolute;
  bottom: 7%;
}
.sidebar-contact p {
  font-size: 12px;
}
.nav-section .navigation {
  padding: 155px 60px;
  position: relative;
  height: 100vh;
}
.nav-section .navigation .close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
}
.nav-section .navigation .close-btn span {
  background-color: #fff;
  padding: 5px;
  border-radius: 20px;
}
.nav-section .navigation .close-btn span i {
  padding: 6px;
}
.nav-section .navigation ul li a {
  font-size: 14px;
  line-height: 2.5em;
  text-transform: capitalize;
  color: #fff;
}
.nav-section .navigation ul li a i {
  font-size: 12px;
}
.Home-menu-wrapper li {
  margin-bottom: 8px;
}
.nav-section .navigation ul li.open ul.sub-menu {
  max-height: 520px;
  overflow: hidden;
  transition: all 0.8s ease;
}
.nav-section .navigation ul li ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.8s ease;
}
.nav-section .navigation .mobile-menu-wrapper {
  display: none;
}

.toggle-container {
  z-index: 12;
}
.toggle-container .toggle-item .inner {
  color: #fff;
}

/*----------------------------------- Navigation Starts -----------------------------------*/
/*------------------------------------ Navigation Ends ------------------------------------*/

/*--------------------------------- Content Wrapper Ends ----------------------------------*/
/*--------------------------------- Footer Wrapper Starts ---------------------------------*/
#footer-wrapper .top-footer-section {
  color: #fff;
  background-color: #581845;
}
#footer-wrapper .top-footer-section .top-footer-wrapper {
  display: flex;
  justify-content: space-between;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item {
  max-width: 310px;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .title h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: capitalize;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .content ul li {
  padding-block: 8px;
  transition: transform 0.5s ease;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .content ul li:hover {
  transform: translateX(5px);
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .content ul li a {
  color: #fff;
  text-transform: capitalize;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .content .social-container ul {
  display: flex;
  align-items: center;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .content .social-container ul li:not(:last-of-type) {
  margin-right: 8px;
}
#footer-wrapper .top-footer-section .top-footer-wrapper .top-footer-item .content .social-container ul li span {
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}
#footer-wrapper .bottom-footer-section .custom-container {
  padding-block: 20px;
}
#footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper {
  text-align: center;
}
#footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper .common-logo-container {
  margin-bottom: 8px;
}
/* #footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper p {
  font-size: 14px;
  line-height: 1.6em;
} */
#footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper p:not(:last-of-type) {
  margin-bottom: 8px;
}
#footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper p a {
  color: #581845;
  cursor: pointer;
  font-weight: 600;
}
#footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper p a span {
  transition: all 0.3s ease-in-out;
}
#footer-wrapper .bottom-footer-section .custom-container .bottom-footer-wrapper p a span:hover {
  transition: all 0.3s ease-in-out;
  color: #238b28;
}

/*---------------------------------- Footer Wrapper Ends ----------------------------------*/
/*----------------------------------- Components Starts -----------------------------------*/
.common-banner-section .banner-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 155px);
  position: relative;
}
.common-banner-section .banner-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.common-banner-section .banner-wrapper .text-container {
  z-index: 2;
  position: absolute;
  top: 10%;
}
.common-banner-section .banner-wrapper .text-container .title h1 {
  color: white;
  text-transform: uppercase;
  line-height: 1;
}
.common-banner-section .banner-wrapper .text-container .title h1 a,
.common-banner-section .banner-wrapper .text-container .title h1 span {
  color: #ed4701;
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
}
.common-banner-section .banner-wrapper .text-container .description-scrollbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-banner-section .banner-wrapper .text-container .description-scrollbar-container .description-wrapper {
  width: 80%;
}
.common-banner-section .banner-wrapper .text-container .description-scrollbar-container .description-wrapper .description p {
  color: white;
  width: 90%;
  font-weight: 300;
  letter-spacing: 1px;
}
.common-banner-section .banner-wrapper:after {
  z-index: 0;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4117647059);
  position: absolute;
  top: 0;
  right: 0;
}
.common-banner-section.small-height {
  background-image: url('../img/background/small-height-background.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.common-banner-section.small-height .text-container {
  height: 30vh;
  display: flex;
  align-items: center;
}
.common-banner-section.small-height .text-container h1 {
  text-transform: capitalize;
}
.common-banner-section.small-height .text-container ul {
  display: flex;
  align-items: center;
}
.common-banner-section.small-height .text-container ul li:not(:last-of-type) {
  position: relative;
  margin-right: 20px;
}
.common-banner-section.small-height .text-container ul li:not(:last-of-type):after {
  position: absolute;
  content: '/';
  font-family: 'fontawesome';
  font-size: 16px;
  right: -12px;
}
.common-banner-section.small-height .text-container ul li a {
  color: #581845;
}
.common-banner-section .image-container img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.common-block-container {
  display: flex;
  flex-wrap: wrap;
  margin: -25px -15px;
}
.common-block-container .block-item {
  width: 25%;
  padding: 25px 15px;
}
.common-block-container .block-item .inner .image-container a {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.common-block-container .block-item .inner .image-container a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(1);
  transition: all 1.4s ease;
}
.common-block-container .block-item .inner .text-container .title {
  margin: 30px 0 15px;
}
.common-block-container .block-item .inner .text-container .title a {
  color: #581845;
}
.common-block-container .block-item .inner:hover .image-container a img {
  transform: scale(1.05);
  transition: all 1.4s ease;
}

.common-content-wrapper {
  display: flex;
  margin: -80px;
}
.common-content-wrapper .common-content-item {
  padding: 80px;
}
.common-content-wrapper .common-content-item:first-of-type {
  width: 70%;
}
.common-content-wrapper .common-content-item:first-of-type .inner h1,
.common-content-wrapper .common-content-item:first-of-type .inner h2 {
  font-family: 'VAG Rounded Next', sans-serif;
}
.common-content-wrapper .common-content-item:first-of-type .inner h2,
.common-content-wrapper .common-content-item:first-of-type .inner h3,
.common-content-wrapper .common-content-item:first-of-type .inner h5,
.common-content-wrapper .common-content-item:first-of-type .inner ul {
  margin-bottom: 32px;
}
.common-content-wrapper .common-content-item:first-of-type .inner h3 {
  font-weight: 500;
  font-family: 'Playfair Display';
  font-size: 32px;
}
.common-content-wrapper .common-content-item:first-of-type .inner p {
  line-height: 3;
  color: #585858;
}
.common-content-wrapper .common-content-item:first-of-type .inner p:not(:last-of-type) {
  margin-bottom: 32px;
}
.common-content-wrapper .common-content-item:first-of-type .inner h3 {
  text-transform: capitalize;
}
.common-content-wrapper .common-content-item:first-of-type .inner .profile-text-container {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  margin: -10px;
}
.common-content-wrapper .common-content-item:first-of-type .inner .profile-text-container .image-container {
  padding: 10px;
}
.common-content-wrapper .common-content-item:first-of-type .inner .profile-text-container .text-container {
  padding: 10px;
}
.common-content-wrapper .common-content-item:first-of-type .inner .profile-text-container .text-container h6 {
  color: #581845;
}
.common-content-wrapper .common-content-item:first-of-type .inner .profile-text-container .text-container h6:not(:last-of-type) {
  margin-bottom: 8px;
}
.common-content-wrapper .common-content-item:first-of-type .inner p {
  font-size: 14px;
}
.common-content-wrapper .common-content-item:first-of-type .inner ul.social-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.common-content-wrapper .common-content-item:first-of-type .inner ul.social-container li:not(:last-of-type) {
  margin-right: 16px;
}
.common-content-wrapper .common-content-item:first-of-type .inner ul.social-container li p {
  text-transform: uppercase;
  color: #581845;
  font-size: 16px;
  font-weight: 600;
}
.social-container {
  display: flex;
  gap: 15px;
}
.social-container .social-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.social-container .social-icon:hover {
  opacity: 0.85;
}
.common-content-wrapper .common-content-item:first-of-type .inner .description {
  margin-block: -20px;
}
.common-content-wrapper .common-content-item:first-of-type .inner .description p {
  font-size: 18px;
  line-height: 2.5;
  color: #434343;
  margin-bottom: 0;
}
.common-content-wrapper .common-content-item:first-of-type .inner .description p:not(:first-of-type) {
  font-size: 16px;
}
.common-content-wrapper .common-content-item:first-of-type .inner .description p a {
  text-decoration: underline;
  color: #0056b3;
}
.common-content-wrapper .common-content-item:first-of-type .inner .description p img {
  width: 100%;
}
.common-content-wrapper .common-content-item:last-of-type {
  width: 30%;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner {
  padding: 56px 32px;
  background: #f9f9f9;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner .title h3 {
  text-transform: capitalize;
  margin-bottom: 24px;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper {
  display: flex;
  flex-direction: column;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper li a {
  font-size: 15px;
  text-transform: capitalize;
  color: #000;
  cursor: pointer;
  position: relative;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper li a:after {
  content: '\f178';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'fontawesome';
  font-size: 14px;
  color: #581845;
  display: none;
  transition: all 0.4s ease;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper li a.active {
  color: #581845;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper li a:hover {
  padding-left: 20px;
  color: #581845;
  transition: all 0.4s ease;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper li a:hover:after {
  transition: all 0.4s ease;
  display: inline-block;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.about-wrapper li:not(:last-of-type) {
  margin-bottom: 20px;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper {
  display: flex;
  flex-direction: column;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  cursor: pointer;
  position: relative;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper li a:after {
  content: '\f178';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'fontawesome';
  font-size: 14px;
  color: #581845;
  display: none;
  transition: all 0.4s ease;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper li a.active {
  color: #581845;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper li a:hover {
  padding-left: 20px;
  color: #581845;
  transition: all 0.4s ease;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper li a:hover:after {
  transition: all 0.4s ease;
  display: inline-block;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner ul.scholarship-wrapper li:not(:last-of-type) {
  margin-bottom: 20px;
}
.common-content-wrapper .common-content-item:last-of-type .common-inner:not(:last-of-type) {
  margin-bottom: 65px;
}

.common-faq-container .card {
  width: 100%;
  border: 0;
  background-color: transparent;
}
.common-faq-container .card:not(:last-of-type) {
  margin-bottom: 30px;
}
.common-faq-container .card .card-inner .card-header {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.common-faq-container .card .card-inner .card-header button {
  width: 100%;
  line-height: 1em;
  position: relative;
  display: flex;
  outline: none;
  text-align: left;
  border: 0;
  padding: 28px 45px;
}
.common-faq-container .card .card-inner .card-header button:active,
.common-faq-container .card .card-inner .card-header button:focus {
  outline: none;
}
.common-faq-container .card .card-inner .card-header button span {
  display: block;
}
.common-faq-container .card .card-inner .card-header button span:nth-of-type(1) {
  width: 30px;
  font-weight: bold;
}
.common-faq-container .card .card-inner .card-header button span:nth-of-type(2) {
  width: calc(100% - 30px);
  margin-top: -2px;
}
.common-faq-container .card .card-inner .card-body {
  padding: 30px 45px;
}

.common-logo-container a {
  width: 160px;
  display: inline-block;
}
.common-logo-container a img {
  width: 100%;
  max-width: 100%;
  height: 70px;
  object-fit: contain;
}

.common-explore-btn {
  margin-top: 40px;
}
.common-explore-btn a {
  display: inline-block;
  background-color: #581845;
  color: #fff;
  padding: 10px 35px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.common-explore-btn a.type-white {
  color: #fff;
}
.common-explore-btn a.type-white::before {
  background: #fff;
}

.common-explore-btn a:hover.purple-background {
  color: #fff;
}

.common-title {
  max-width: 265px;
  margin-bottom: 60px;
}
.common-title h3 {
  font-family: 'Playfair Display', serif;
}
.common-title h3.type-white {
  color: #fff;
}
.common-title h3.type-line {
  display: inline-block;
  position: relative;
}
.common-title h3.type-line:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
  background-color: #fff;
  display: inline-block;
}

.common-toggle {
  display: none;
}

.common-form .fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.common-form .fields .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 0 10px;
}
.common-form .fields .form-group:not(:last-of-type) {
  margin-bottom: 25px;
}
.common-form .fields .form-group.half-width {
  width: 50%;
}
.common-form .fields .form-group.has-error input,
.common-form .fields .form-group.has-error select,
.common-form .fields .form-group.has-error textarea {
  border: 1px solid #e74c3c;
}
.common-form .fields .form-group.has-error label {
  color: #e74c3c;
}
.common-form .fields .form-group.has-error .floating-label {
  color: #e74c3c;
}
.common-form .fields .form-group label {
  font-weight: bold;
  font-size: 14px;
}
.common-form .fields .form-group input,
.common-form .fields .form-group select,
.common-form .fields .form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1em;
  width: 100%;
  padding: 14px 15px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 0;
}
.common-form .fields .form-group textarea {
  height: 200px;
}
.common-form .fields .form-group .floating-label {
  font-size: 15px;
  display: inline-block;
  padding: 2px 6px;
  line-height: 1em;
  pointer-events: none;
  color: black;
  position: absolute;
  left: 11px;
  top: 16px;
  transition: 0.2s ease all;
  background: black;
}
.common-form .fields .form-group input:focus ~ .floating-label,
.common-form .fields .form-group select:focus ~ .floating-label,
.common-form .fields .form-group textarea:focus ~ .floating-label,
.common-form .fields .form-group input:not(:focus):valid ~ .floating-label,
.common-form .fields .form-group select:not(:focus):valid ~ .floating-label,
.common-form .fields .form-group textarea:not(:focus):valid ~ .floating-label {
  top: -7px;
  transform: translateY(0);
  font-size: 13px;
}
.common-form .form-action {
  margin-top: 45px;
}

.common-remove-tab-style {
  border-bottom: 0;
}
.common-remove-tab-style li a {
  padding: 0;
  background-color: transparent;
  border: 0;
}
.common-remove-tab-style li a:focus,
.common-remove-tab-style li a:hover {
  background-color: transparent;
  border: 0;
}
.common-remove-tab-style li.active a {
  background-color: transparent;
  border: 0;
}
.common-remove-tab-style li.active a:focus,
.common-remove-tab-style li.active a:hover {
  background-color: transparent;
  border: 0;
}

.common-back-top {
  z-index: 21;
  position: fixed;
  bottom: 20px;
  right: 50px;
  border-radius: 50%;
  background: rgba(110, 193, 228, 0.6);
}
.common-back-top a {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-back-top a i {
  font-size: 20px;
  color: #fff;
}
.blog {
}
.blog-box img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.blog-desc {
  background-color: #fff;
  box-shadow: 0px 4px 20px rgb(166 166 166 / 25%);
  margin-top: -135px;
  margin-bottom: 60px;
  position: relative;
  margin-left: 54px;
  padding: 30px;
  transition: all 0.5s ease;
}
.blog-desc:hover {
  background-color: #581845;
}
.blog-desc:hover .blog-time {
  color: #fff;
}
.blog-desc:hover .blog-head h2 {
  color: #fff;
}
.blog-desc:hover .blog-head p {
  color: #fff;
}
.blog-desc:hover .blog-arrow {
  color: #581845;
  background-color: #fff;
}

.blog-head h2 {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 10px;
}
.blog-head p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #686868;
  margin: 10px 0 20px 0;
}
.blog-time {
  color: #808080;
}
.blog-time span {
  font-size: 15px;
  margin-left: 10px;
}

.blog-time i {
  font-size: 11px;
}

.blog-arrow {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #581845;
}
.blog-desc a {
  color: unset;
}
.news-header h3 {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  text-transform: capitalize;
}

.img-container img {
  max-width: 100%;
}

.news-content .img-container img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  margin-bottom: 10px;
}
.news-content p {
  font-size: 14px;
  line-height: 21px;
  color: #291f20;
}
.news-detail-wrapper .common-content-item {
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 4px;
  margin-top: 120px;
}
.news-detail-wrapper .common-content-item .title h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.04em;
}
.about-wrapper li:not(:last-child) {
  margin-bottom: 10px;
}

.gallery-box {
  position: relative;
  overflow: hidden;
  margin: 20px;
  height: 400px;
}
.gallery-box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(47.17deg, #ec1b98 36.14%, #2fa7ff 75.88%);
  background-image: -moz-linear-gradient(47.17deg, #ec1b98 36.14%, #2fa7ff 75.88%);
  background-image: -ms-linear-gradient(47.17deg, #ec1b98 36.14%, #2fa7ff 75.88%);
  background-image: -o-linear-gradient(47.17deg, #ec1b98 36.14%, #2fa7ff 75.88%);
  background-image: linear-gradient(47.17deg, #ec1b98 36.14%, #2fa7ff 75.88%);
  opacity: 0;
}

.gallery-box:hover.gallery-box::before {
  opacity: 0.5;
}
.gallery-box:hover .gallery-title {
  bottom: 30px;
}
.gallery-box:hover .gallery-title p {
  text-decoration: underline;
}

.gallery-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-box img:hover {
  transform: scale(1.05);
}

.gallery-title {
  position: absolute;
  bottom: 0;
  padding: 25px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000e3 100%); */
  transition: all 0.3s ease;
}
.gallery-title h4 {
  font-size: 18px;
}

.gallery-list-image {
  position: relative;
  margin-bottom: 20px;
}
.gallery-list-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.number-list {
  position: absolute;
  top: 20px;
  right: 0;
}
.number-list h6 {
  background: #581845;
  color: #fff;
  border-radius: 50px 0px 0px 50px;
  padding: 15px 30px;
  font-size: 14px;
}
/* .gallery-category ul li .nav-link{
  font-size: 24px;
}

.gallery-category ul li .nav-link.active {
  color: #581845;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 20px;
} */
.gallery-category {
  margin-bottom: 50px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play-btn img {
  height: 65px;
  cursor: pointer;
}

.our-recent-news-section .img-text-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.our-recent-news-section .img-text-wrapper .text-item {
  margin-left: 25px;
  margin-top: 10px;
  width: 50%;
}

@media (max-width: 752px) {
  .our-recent-news-section .img-text-wrapper .text-item {
    width: 100%;
    margin-left: 0;
  }
}
.our-recent-news-section .img-text-wrapper .text-item h4 {
  color: #291f20;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.our-recent-news-section .img-text-wrapper .text-item p {
  color: #585858;
  font-size: 14px;
}
.our-recent-news-section .img-text-wrapper .text-item .date span {
  color: #b8b8b8;
  font-size: 14px;
}
.our-recent-news-section .img-text-wrapper .text-item .date i {
  color: #b8b8b8;
}

.news-list {
  margin-bottom: 30px;
}
.news-list-content p {
  color: #777777;
  font-size: 12px;
}

.table > thead {
  vertical-align: bottom;
  background: #581845;
  color: #fff;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 4rem;
}
.bg {
  background-color: #f6f7f9;
}

.we-do .main-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 40px;
}
.card-content {
  margin-top: 25px;
}
.card-content h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}
.card-content p {
  font-size: 13px;
  font-weight: 400;
  color: #585858;
}

.we-do .main-card .img-container {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #f6f7f9;
  display: grid;
  place-items: center;
}
.main-row .col:not(:last-child) .main-card {
  margin-bottom: 30px;
}
.we-do .main-row {
  padding: 0 0 0 120px;
  position: relative;
}
.we-do .main-row::before {
  position: absolute;
  content: '';
  height: 513px;
  width: 1px;
  background-color: #c1c1c1;
  left: 6%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .we-do .main-row::before {
    display: none;
  }
}
.staff-slider .slick-center .inner {
  background-color: #581845 !important;
  padding: 60px 100px;
}
.staff-slider .slick-center .inner h6 {
  color: #fff !important;
}

.our-story-wrapper p {
  font-size: 14px;
  color: #585858;
  text-transform: capitalize;
  line-height: 3;
  font-weight: 400;
}
.our-story-wrapper .img-container img {
  height: 710px;
  width: 100%;
  object-fit: cover;
}
.about-mission-list li {
  font-size: 13px;
  color: #585858;
  text-transform: capitalize;
  font-weight: 400;
}

.about-mission h4 {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: 24px;
  color: #291f20;
  padding: 10px 0;
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 8px;
}

/* team css */

.team-section .section-title .title h3 {
  font-family: 'Playfair Display';
  font-size: 32px;
}
.team-wrapper .team-item:hover {
  border: 1px solid #b8b8b8;
  cursor: pointer;
}
/* contact css */

.contact-left {
  background-color: #581845;
  padding: 50px 120px;
  color: #fff;
  min-height: 100%;
}

@media (max-width: 992px) {
  .contact-left {
    padding: 50px;
  }
}

.contact-list {
  display: flex;
  align-items: center;
}

.contact-icon {
  height: 65px;
  width: 65px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon .fas {
  color: #581845;
  font-size: 25px;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.contact-left p {
  color: #fff;
}

.contact-left .teacher-social {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 50px;
}

.contact-right {
  background-color: #fff;
  padding: 50px 120px 50px 50px;
}

.contact-field .form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 30px !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.social-box {
  background-color: #e5e5e5;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  color: #383838;
  transition: all 0.3s ease;
}
.social-box:hover {
  background-color: #581845;
  color: #fff;
  border: 1px solid #fff;
}
.button-main {
  background-color: #581845;
  color: #fff;
  padding: 10px 20px;
  border: none;
  outline: none;
}
.map iframe {
  width: 100%;
}

.footer-box {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
}
.footer-social .footer-box:not(:last-child) {
  margin-right: 12px;
}

/*------------------------------------ Components Ends ------------------------------------*/
/*---------------------------------- Slick Slider Starts ----------------------------------*/
.common-banner-section .banner-slider .banner-item:not(:first-of-type) {
  display: none;
}

.common-banner-section .banner-slider.slick-initialized .banner-item {
  display: block;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  z-index: 1;
  height: 45px;
  width: 32px;
  bottom: -50px;
  top: initial;
}
.slick-slider .slick-prev:after,
.slick-slider .slick-next:after {
  content: '';
  height: inherit;
  width: inherit;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  display: none;
}
.slick-slider .slick-prev {
  left: 0;
}
.slick-slider .slick-prev:after {
  background-image: url('../img/icons/left-arrow.png');
}
.slick-slider .slick-next {
  right: initial;
  left: 45px;
}
.slick-slider .slick-next:after {
  background-image: url('../img/icons/right-arrow.png');
}
.slick-slider .slick-dots li {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  margin: 0;
  background-color: #d9d9d9;
}
.slick-slider .slick-dots li.slick-active {
  background-color: #581845;
}
.slick-slider .slick-dots li:not(:last-of-type) {
  margin-right: 10px;
}
.slick-slider .slick-dots li button {
  height: 8px;
  width: 8px;
  padding: 0;
  opacity: 0;
}
.slick-slider.slick-dotted {
  margin-bottom: 0;
}
.slick-dots {
  bottom: 0;
}
/* .slick-slider.slick-dotted .slick-dots {
  bottom: 50px;
} */

/*----------------------------------- Slick Slider Ends -----------------------------------*/
/*-------------------------------------- Modal Starts -------------------------------------*/
.modal .modal-dialog {
  max-width: 650px;
  margin: 70px auto;
}
.modal .modal-dialog .modal-header {
  padding: 0;
  border: 0;
}
.modal .modal-dialog .modal-header button {
  z-index: 1;
  height: 40px;
  width: 36px;
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 1;
  outline: none;
  position: absolute;
  top: 0;
  right: 0;
}
.modal .modal-dialog .modal-header button i {
  color: black;
  font-size: 13px;
}
.modal .modal-dialog .modal-header button button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}
.modal .modal-dialog .modal-content {
  background: #fff;
  border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 30px 26px;
}
.modal .modal-dialog .modal-content .modal-body .modal-loading-gif {
  height: 130px;
  position: relative;
}
.modal .modal-dialog .modal-content .modal-body .modal-loading-gif img {
  width: 30px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.modal .modal-dialog .modal-content .modal-body .modal-loading-area .title {
  margin-bottom: 30px;
}
.modal .modal-dialog .modal-content .modal-body .modal-close-btn {
  position: absolute;
  right: -35px;
  top: -9px;
  color: #fff;
  font-size: 35px;
  width: 35px;
  height: 35px;
  text-shadow: none;
  outline: none !important;
  opacity: 1;
}

/*--------------------------------------- Modal Ends --------------------------------------*/
/*------------------------------------ Animation Starts -----------------------------------*/
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}
.animation-area .ani-reveal-left {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 1s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88);
}

.animation-area .ani-reveal-left.normal {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: 1s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88);
}

/*  */

.pd-t {
  padding: 64px 0;
}

.site-header h3 {
  font-size: 24px;
  color: #291f20;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 32px;
}

.site-header p {
  font-size: 13px;
  font-weight: 400;
  color: #585858;
  line-height: 23px;
}

.site-header {
  margin-bottom: 40px;
}

.about-us .img-container.position-sticky {
  top: 65px;
}

.about-us .img-container img {
  height: 540px;
  object-fit: cover;
  width: 100%;
}

.about-us .text-container {
  padding-left: 30px;
}
.sm-title {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #581845;
}

.latest-notice .sm-title {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-decoration: underline;
  text-underline-offset: 13px;
}

.notice-list li a {
  font-size: 12px;
  line-height: 18px;
  text-transform: capitalize;
}

.notice-list li a:hover,
.notice-list li a.active {
  color: #581845;
}

.notice-list li {
  border-bottom: 1px dashed #c4c4c4;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.latest-notice {
  padding-left: 80px;
}

.main-btn {
  padding: 10px 30px;
  border: 1px solid #581845;
  border-radius: 4px;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  line-height: 17px;
  margin-bottom: 5px;
}

.main-btn i {
  vertical-align: middle;
  margin-left: 5px;
}

/* course */
.courses-list {
  padding: 64px 32px;
  border: 1px solid #fff;
  border-radius: 8px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.course-section .site-header h3 {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.title h3 {
  font-size: 20px;
}

.courses-wrapper .content {
  margin: 24px 0 48px 0;
  height: 180px;
  overflow: hidden;
}

.courses-wrapper {
  color: #fff;
  padding-bottom: 40px;
}
.courses-wrapper p {
  color: #fff;
}

.join-btn button,
.join-btn a {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 88px;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.we-do .img-container img {
  height: 40px;
  object-fit: contain;
}

/* news */

.news .img-text-wrapper {
  display: flex;
  margin-bottom: 24px;
}

.news .img-text-wrapper .img-item {
  margin-right: 24px;
}
.news .img-text-wrapper .img-item img {
  max-width: 300px;
  aspect-ratio: 16/12;
  object-fit: cover;
}
.text-item h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.text-item h4:hover {
  color: #581845;
}

.date span {
  color: #581845;
  font-size: 13px;
}

.bg-light {
  background: #f6f7f9 !important;
}

.staff-post-wrapper .inner {
  background: #f6f7f9;
  padding: 60px 100px;
}

.staff-post-wrapper .inner p {
  color: #585858;
}
.staff-slider .slick-center .inner {
  background-color: #581845 !important;
  padding: 60px 100px;
}
.staff-slider .slick-center .inner p {
  color: #fff;
}

.slick-dots {
  bottom: -10px;
}

.gallery .site-header {
  width: 50%;
  margin-inline: auto;
}
.gallery-title p {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.main-banner {
  background-image: url(../img/background/small-height-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.breadcrumbs li:not(:last-of-type):after {
  position: absolute;
  content: '/';
  font-family: 'fontawesome';
  font-size: 16px;
  right: -12px;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li {
  margin-right: 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
}

.main-banner .text-container {
  height: 16rem;
  display: flex;
  align-items: center;
}

.profile-text-container .image-container {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #eee;
}

.profile-text-container .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-text-container .text-container p {
  color: #581845;
  font-size: 13px;
}
.nav-tabs .nav-item > .nav-link {
  border: none;
  border-radius: none;
  padding: 5px;
  color: #000;
  background-color: transparent;
  margin-right: 20px;
  border-bottom: 1px solid transparent;
}

.nav-tabs .nav-item > .nav-link.active {
  color: #fff;
  color: #581845;
  border-bottom-color: #581845;
}

.obj li {
  font-size: 13px;
  font-weight: 400;
  list-style: decimal;
}

.main-card img {
  width: 100%;
}
.news-list .img-container img {
  height: 233px;
  object-fit: cover;
  border-radius: 8px;
}
.card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.card-content h3:hover {
  color: #581845;
}

.img-container {
  position: relative;
}
.img-tag {
  background-color: #581845;
  border-radius: 88px;
  padding: 6px 22px;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 16px;
  text-align: center;
}

.gallery-list .img-container img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.academics .text-container h1,
.academics .text-container h2,
.academics .text-container h3,
.academics .text-container h4,
.academics .text-container h5,
.academics .text-container h6 {
  margin-bottom: 0.8rem;
}

.table i {
  color: #581845;
}

th {
  font-size: 13px;
}
.contact ul li {
  font-size: 13px;
  font-weight: 400;
}

.contact .site-header h3 {
  margin-bottom: 16px;
}

.contact .main-btn {
  background-color: transparent;
}

.staff-post-section .slick-dots {
  bottom: -30px;
}

.staff-post-section .profile-container {
  margin: 0 auto;
}

#content-wrapper #home-page .staff-post-wrapper .staff-post-item .inner .profile-container {
  width: 105px;
}

#content-wrapper #home-page .staff-post-wrapper .staff-post-item .inner .profile-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
}

.img-container iframe {
  width: 100%;
  aspect-ratio: 16/12;
}

.common-form.submitting {
  pointer-events: none;
  opacity: 0.5;
}

.common-form.submitting .main-btn::after {
  content: 'ting...';
}

@media (min-width: 767px) {
  .common-form {
    padding-left: 160px;
  }

  .staff-post-section .slick-slider .slick-slide {
    padding: 0 100px;
  }
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.2rem;
  --bs-pagination-color: #581845;
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: #581845;
  --bs-pagination-active-border-color: #581845;
  --bs-pagination-hover-color: #581845;
}

/* HOVER CSS */

.header-btn,
.main-btn,
.join-btn a {
  transition: all 0.3s ease;
}

.header-btn:hover,
.main-btn:hover {
  background-color: #581845;
  color: #fff;
}

.join-btn a:hover {
  background-color: #fff;
  color: #581845;
}
