@charset "UTF-8";
/* main heading font */
@font-face {
  font-family: "whitneysemibold";
  src: url("font/whitneysemibold-webfont.woff2") format("woff2"),
    url("font/whitneysemibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* body font */
@font-face {
  font-family: "Whitney";
  src: url("font/Whitney-Medium.woff2") format("woff2"),
    url("font/Whitney-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Whitney";
  src: url("font/Whitney-Light.woff2") format("woff2"),
    url("font/Whitney-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Whitney";
  src: url("font/Whitney-Bold.woff2") format("woff2"),
    url("font/Whitney-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: 73, 23, 109;
  --secondary-color: 255, 196, 37;
  --body-text-color: #595959;
  --white-color: #ffffff;
  --black-color: #1f0a2e;
  --primary-font: "Whitney";
  --primary-font-heading: "whitneysemibold";
  --box-shadow: 10px 16px 24px 0px rgba(0, 0, 0, 0.08);
  --box-shadow-btn-hover: 0px 7px 18px 0px rgba(37, 17, 124, 0.16);
  --alpha: 0.8;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
}

*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 62.5%;
}

body {
  font-family: var(--primary-font);
  color: var(--body-text-color);
  font-size: 2rem;
  line-height: 1.5;
  font-weight: normal;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
p:empty {
  display: none;
}
b,
strong {
  font-family: "whitneysemibold";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font-heading);
  color: rgba(var(--primary-color));
  font-weight: 500;
  position: relative;
  letter-spacing: 0;
  /*   line-height: 1.5; */
  margin-bottom: 20px;
}

h1,
.h1 {
  font-family: var(--primary-font-heading);
  font-size: 9.6rem;
}

h2,
.h2 {
  font-family: var(--primary-font-heading);
/*   font-size: 8rem; */
	font-size: 5.6rem;
}

h3,
.h3 {
  font-family: var(--primary-font-heading);
/*   font-size: 6.2rem; */
	font-size: 4.6rem;
}

h4,
.h4 {
  font-family: var(--primary-font-heading);
  font-size: 3.6rem;
}

h5,
.h5 {
  font-family: var(--primary-font-heading);
  font-size: 2.4rem;
}

h6,
.h6 {
  font-family: var(--primary-font-heading);
  font-size: 2rem;
}
.sml-heading {
  color: rgba(var(--primary-color));
  font-weight: 700;
  font-family: var(--primary-font-heading);
  font-size: 1.8rem;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: underline;
  opacity: 1;
}

p {
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  position: relative;
  list-style: none;
}
figure {
  width: 100% !important;
  text-align: center;
}
button:focus {
  border: none !important;
}

a {
  color: rgba(var(--primary-color));
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: rgba(var(--primary-color));
  text-decoration: underline;
}

p a,
ol li a {
  word-wrap: break-word;
}

hr,
.hr-line {
  margin: 50px 0;
  border-top: 2px solid #e7e1ec;
}

iframe {
  width: 100%;
}

iframe:focus,
iframe:focus-within {
   outline: 2px solid #000; 
}

.primary-text-color {
  color: rgba(var(--primary-color));
}

.primary-bg-color {
  background-color: rgba(var(--primary-color));
  background: linear-gradient(90.28deg, #34104d -36.87%, #49176d 81.49%);
}

.secondary-bg-color {
  background-color: rgba(var(--secondary-color));
}

.gray-bg {
  background-color: #e7e1ec;
}

.light-gray-bg {
  background-color: #f8f6f9;
}

.light-yellow-bg {
  background-color: #ffd76d;
}

.text-white {
  color: var(--white-color);
}

.primary-line {
  height: 2px;
  width: 65px;
  background-color: rgba(var(--primary-color));
  margin: 20px 0;
}

.secondary-line {
  height: 2px;
  width: 65px;
  background-color: rgba(var(--secondary-color));
  margin: 20px 0;
}

.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

img {
  max-width: 100%;
  height: auto;
}

.aligncenter,
.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.layout-pd {
  padding-top: 0px;
  padding-bottom: 80px;
}

.layout-t-pd {
  padding-top: 80px;
}

.layout-t-30 {
  padding-top: 30px;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.text-black-100 {
  color: var(--black-color) !important;
}

.searchform input {
  border-radius: 0px !important;
  width: 100%;
  padding: 12px 48px 12px 12px !important;
  border: none !important;
  transition: all 0.5s;
  letter-spacing: 0.05em;
}
form#searchform {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s;
  width: 100%;
  padding: 12px 30px 20px 30px;
  display: none;
  z-index: 999999;
  background-color: rgba(var(--secondary-color));
}
.close-btn {
  cursor: pointer;
  text-align: right;
  margin-bottom: 10px;
/*   float: right; */
  padding: 0px 5px;
  line-height: normal;
}
.close-btn em {
  color: rgba(var(--primary-color)) !important;
  margin-left: 0 !important;
}
.searchform #clear-search {
  transform: none;
}
.searchform #clear-search em {
  color: rgba(var(--primary-color)) !important;
}
/*============================== Site Button Style ==============================*/
button {
  background: transparent;
}
.btn {
  padding: 10px 20px;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: bold;
  text-decoration: none !important;
  min-width: 150px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.primary-btn {
  background: rgba(var(--secondary-color));
  color: var(--black-color);
  border: 2px solid rgba(var(--secondary-color));
}

.primary-btn:hover,
.primary-btn:focus {
  border: 2px solid rgba(var(--primary-color));
  background: transparent;
  color: var(--white-color);
}
.primary-btn i,
.primary-btn em {
  margin-left: 5px;
}
.secondary-btn {
  background-color: rgba(var(--primary-color));
  border: 2px solid rgba(var(--primary-color));
  color: var(--white-color);
}

.secondary-btn:hover {
  background-color: var(--white-color);
  color: rgba(var(--primary-color));
  text-decoration: none;
  box-shadow: var(--box-shadow-btn-hover);
}

.secondary-btn:focus {
  background-color: var(--white-color);
  color: rgba(var(--primary-color));
  text-decoration: none;
  box-shadow: var(--box-shadow-btn-hover);
}

.secondary-btn i {
  font-size: 12px;
  margin-left: 5px;
}

.tertiary-btn {
  background-color: var(--white-color);
  border: 2px solid var(--white-color);
  color: rgba(var(--primary-color));
}

.tertiary-btn:hover {
  background-color: rgba(var(--primary-color));
  color: var(--white-color);
  text-decoration: none;
  box-shadow: var(--box-shadow-btn-hover);
}

.tertiary-btn:focus {
  background-color: rgba(var(--primary-color));
  color: var(--white-color);
  text-decoration: none;
  box-shadow: var(--box-shadow-btn-hover);
}

.btn-callout {
  font-family: var(--primary-font-heading);
  color: #1f0a2e;
/*   border-bottom: 2px solid rgba(var(--secondary-color)); */
  border-bottom: 2px solid #7529AB;
  padding-bottom: 8px;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: normal;
}

.btn-callout i,
.btn-callout em {
  font-size: 14px;
  margin-left: 5px;
}

.btn-callout:hover {
  border-bottom: 2px solid rgba(var(--primary-color));
}
.btn-callout-white {
  font-family: var(--primary-font-heading);
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 8px;
  display: inline-block;
  font-size: 1.6rem;
}

.btn-callout-white i,
.btn-callout-white em {
  font-size: 14px;
  margin-left: 10px;
}

.btn-callout-white:hover {
  color: #fff;
  border-bottom: 2px solid rgba(var(--primary-color));
}
.play-btn {
  background-color: transparent;
}
.btn-section {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

/* ============================== Site Header Style ============================ */

.header-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  background-color: rgba(var(--primary-color), 0.96);
}

.logo-section {
  width: 285px;
  text-align: center;
  padding: 10px;
  margin-top: 0;
  font-size: initial;
}

.search-section {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.search-section em,
.search-section span {
  color: var(--white-color);
  margin-left: 10px;
}

.search-icon {
  background-color: transparent;
  border-right: 1px solid #b5b5b5;
  height: 100%;
  display: flex;
  align-items: center;
}

.search-icon,
.hamburger-menu,
.header-a-z-section {
  padding: 20px 20px;
  cursor: pointer;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  background-color: transparent;
}

.header-a-z-section {
  background-color: transparent;
  border-right: 1px solid #b5b5b5;
  height: 100%;
  display: flex;
  align-items: center;
}

.header-a-z-section a {
  font-family: "whitney";
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.slide-menu-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  overflow-y: auto;
}

.slide-menu-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.top-menu-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#scroll-bar-style::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

#scroll-bar-style::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

#scroll-bar-style::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(var(--primary-color));
}

.menu-close-icon {
  padding-right: 10px;
  padding-left: 10px;
  background: transparent;
}

.menu-close-icon em {
  color: var(--white-color);
  cursor: pointer;
}

#full-bg-opacity.bg-show {
  background: #0e1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  top: 0;
}

#full-bg-opacity {
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 50;
}

.slide-bottom-section {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 40px;
}

.slide-bottom-section .image-section {
  width: 100%;
  background-size: cover;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 10%;
  padding: 40px 30px;
  text-decoration: none !important;
}

.slide-bottom-section .image-section span {
  font-weight: bold;
  font-size: 2.8rem;
  color: var(--black-color);
  position: relative;
}

.slide-bottom-section .image-section:nth-of-type(1) span,
.slide-bottom-section .image-section:nth-of-type(2) span {
  color: var(--white-color);
}

.slide-bottom-section .image-section:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
}

.slide-bottom-section .image-section:nth-of-type(1):before {
  background-color: rgba(var(--primary-color), 0.7);
}

.slide-bottom-section .image-section:nth-of-type(2):before {
  background-color: rgba(var(--primary-color), 0.9);
}

.slide-bottom-section .image-section:nth-of-type(3):before {
  background-color: rgba(var(--secondary-color), 0.7);
}

.slide-bottom-section .image-section:nth-of-type(4):before {
  background-color: rgba(var(--secondary-color), 0.8);
}

.slide-menu-area .menu-section ul {
  display: flex;
}

.slide-menu-area .menu-section ul li {
  margin: 0 25px;
}

.slide-menu-area .menu-section ul li a {
  color: var(--white-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 15px;
}
.skip-content-box {
  background: #000;
  color: #fff !important;
  position: absolute;
  top: -53px;
  left: 0;
  z-index: 9999;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
}
.skip-content-box:focus {
  top: 0;
  outline: 2px solid #ffc425;
}
.skip-carousel-slider {
    background: #000;
    color: #fff !important;
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
    position: absolute;
    top: 110px;
    opacity: 0;
    z-index: 9;
}
.skip-carousel-slider:focus {
	opacity: 1;
	outline: 2px solid #ffc425;
}
.skip-tag-cloud-box {
    background: #000;
    color: #fff !important;
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
    position: absolute;
    top: -51px;
	opacity: 0;
}
.skip-tag-cloud-box:focus {
	opacity: 1;
	outline: 2px solid #ffc425;
}
.skip-image-carousel {
	background: #000;
    color: #fff !important;
/*     position: absolute; */
/*     top: -53px; */
/*     left: 0; */
/*     z-index: 9999; */
	opacity: 0;
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
}
.skip-image-carousel:focus {
	opacity: 1;
	outline: 2px solid #ffc425;
}
/* ============================== Site Menu Style =============================== */
.menu-content .h3 {
  font-size: 3.6rem;
  margin-top: 0px;
}

.menu-content ul {
  margin-top: 0;
}

.menu-content ul li {
  margin: 15px 0;
  list-style: none;
}

.menu-content li a {
  font-size: 1.6rem;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
}

.menu-content ul li a:hover {
  font-weight: bold;
}
.menu-content li .h3 a {
  color: rgba(var(--primary-color));
  font-size: inherit;
}
/* ============================== Site Banner Style ============================= */
.apply-btn-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 25px 0;
}
.heading-font {
  font-family: var(--primary-font-heading);
}

.home-banner-bg {
  background-repeat: no-repeat;
  min-height: 80vh;
  position: relative;
  background-size: cover !important;
}

.home-banner-bg #myVideo {
  object-fit: cover;
  display: block;
  position: absolute;
  width: 100%;
  /* height: 100%; */
  left: 0;
  top: 0;
  z-index: -9;
}

.banner-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
}

.home-banner-bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100px;
  height: 100vh;
  width: 285px;
  background-color: rgba(var(--primary-color), 0.8);
}

.home-banner-bg h1 {
  font-weight: 500;
  font-size: 142px;
  text-transform: capitalize;
  line-height: 150px;
  width: 100%;
  margin-top: 450px;
}

.slider-section .carousel .carousel-inner img {
  /* height: 650px; */
  object-fit: cover;
  object-position: top;
}

.slider-section .carousel-item {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
/*   background-position-y: 100px; */
  background-position-x: center;
}
.slider-section .carousel-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%) 50%
    50%;
}

.slider-section .carousel-caption {
  text-align: left;
  padding-right: 13%;
  padding-bottom: 60px;
}

.slider-section .carousel a {
  color: var(--white-color);
  text-decoration: none;
  opacity: 1;
}

.slider-section .carousel a:hover {
  text-decoration: underline;
}
.slider-section .carousel a:focus {
	text-decoration: underline;
  border: 1px solid #fff;
}

.slider-section .carousel-caption h2 {
  color: var(--white-color);
  font-size: 6.9rem;
  line-height: 84px;
  margin-top: 0;
}
.slider-section .carousel-caption p {
  color: var(--white-color);
  font-size: 2rem;
}
.slider-section .carousel-control-next-icon,
.slider-section .carousel-control-prev-icon {
  background-image: none;
  height: 70px;
  width: 70px;
  line-height: 65px;
}

.slider-section .carousel-control-prev,
.slider-section .carousel-control-next {
  z-index: 99999999;
  right: 0;
  top: initial;
  width: auto;
  left: initial;
}

.slider-section .carousel-control-prev {
  bottom: 70px;
  background-color: rgba(var(--primary-color));
  background-color: #34104d;
}

.slider-section .carousel-control-next {
  background-color: rgba(var(--primary-color));
}
.slider-section #carouselControlBtn1 {
	right: 14px;
    top: auto;
    bottom: 154px;
    color: #fff;
    background-color: #34104d;
    width: 35px;
    height: 35px;
	position: absolute;
	    z-index: 9999;
}
.slider-section .carousel-indicators {
	bottom: 30px;
}
.slider-section .carousel-indicators li {
    box-shadow: none;
    border: 0px solid RGBA(0, 0, 0, 1);
    border-radius: 50px;
	background: #402552;
    border: 2px solid RGBA(255, 255, 255, 1);
	width: 12px;
    height: 12px;
}
/* .carousel-inner {
  z-index: 99;
} */
/* ================================ Site Body Style ============================= */

.director-area {
  padding-top: 45px;
  padding-bottom: 10px;
  position: relative;
  border-top: 3px solid rgba(var(--secondary-color));
  margin-top: 50px;
}

.director-area h3 {
  /* padding-right: 95px;*/
  font-size: 5rem;
  /* margin-top: 60px; */
  margin-bottom: 0;
}

.bg-section-yellow::after {
  content: "";
  float: left;
  height: 40%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  background: rgba(var(--secondary-color));
}

.director-area .director-bottom-txt p {
  color: var(--black-color);
  margin-top: 30px;
  font-size: 2rem;
}

.director-area .column-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.director-area .yellow-box-content {
  padding-left: 20px;
}

.director-area .yellow-box-content p {
  color: var(--black-color);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.director-area .director-details {
  color: var(--black-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

/* =============== scroll section ======================== */
.tech-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 15px;
}

.tech-section .tech-row {
  position: relative;
  overflow: hidden;
  height: 75px;
}

.tech-section .tech-row .tech-stack ul {
  display: flex;
/*   min-width: 200%; */
  justify-content: center;
}

.tech-section .tech-row .tech-stack ul li a {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 65px;
  padding-right: 60px;
  color: rgba(var(--primary-color));
  text-decoration: none;
/*   display: ruby-text; */
}

.tech-section .tech-row .tech-stack ul li a:hover {
  color: rgba(var(--primary-color));
  font-weight: bold;
}

@keyframes slide_to_left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animate-slide-to-left {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}
.tech-stack.animate-slide-to-left ul {
  animation: slide_to_left 50s linear infinite;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  position: initial;
}
.tech-stack.animate-slide-to-left:hover ul,
.tech-stack.animate-slide-to-right:hover ul {
  animation-play-state: paused;
}


/*  for slider tab pause */
.tech-stack:focus-within ul {
  animation-play-state: paused !important;
}

/*  for slider tab pause */

@keyframes slide_to_right {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.tech-stack.animate-slide-to-right ul {
  animation: slide_to_right 50s linear infinite;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  position: initial;
}
.animate-slide-to-right {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
}

/* Mobile-specific speed increase */
@media (max-width: 768px) {
  .tech-section .tech-row .tech-stack ul li a {
    font-size: 3rem;
    padding-right: 30px;
  }

  .tech-section .tech-row {
    height: 60px;
  }
}
/* ==================================================================================== */
.number-area h2,
.calendar-section h2 {
  margin-bottom: 50px;
  margin-top: 0;
}
.number-big-img .number-left-img {
	width: 100%;
}

.number-area p {
  font-size: 1.8rem;
}

.number-spacing {
  padding: 75px 30px 75px 70px;
  text-align: center;
}

.number-detail-2 .number-spacing2 {
  padding: 98px 30px 98px 70px;
  text-align: center;
}

.number-spacing h3 {
  font-size: 8rem;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 10px !important;
}

.number-spacing p {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.number-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.number-area .img-80 img {
  max-width: 100%;
  height: 320px;
/*   object-position: 0 -70px; */
}

.number-img-area {
  position: relative;
}

.number-para {
  padding: 50px;
}

.number-img,
.number-detail-holder {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.number-detail-holder .number-spacing {
  padding-left: 30px;
}

.number-detail {
  max-width: 230px;
  margin: 0 auto;
}

.number-detail-2 {
/*   max-width: 320px; */
  justify-content: center;
  display: flex;
  align-items: center;
}
.scroll-btn-section .btn-items {
  justify-content: center;
  display: flex;
  align-items: center;
}
/* ==================================================================================== */
.source-area {
  transition: all 0.3s ease 0s;
}

.source-area h3 {
  margin-top: 0;
}

.source-area p {
  font-size: 2rem;
}

.source-area .source-area-items {
  display: flex;
  flex-direction: row;
}

.source-area .single-source,
.source-area .source-img {
  overflow: hidden;
  position: relative;
}
.source-area .source-img img {
  margin-bottom: 0;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.source-area .single-source:last-child {
  margin-right: 0;
}

.source-area .single-source .img-title-bg {
  background-color: rgba(var(--secondary-color), 0.9);
}

.source-area .single-source:nth-of-type(2) .img-title-bg,
.source-area .single-source:nth-of-type(5) .img-title-bg {
  background-color: rgba(var(--primary-color), 0.9);
}

/*.source-area .single-source:nth-of-type(3) .img-title-bg {
  background-color: rgba(0, 104, 216, 0.8);
} */

.source-area .img-title-bg > p {
  color: var(--white-color);
  margin-bottom: 0;
}

.source-area .source-img > a::before,
.source-area .source-img > .img-item::before {
  content: "";
  opacity: 0.9;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.source-area .single-source .source-img > a::before,
.source-area .single-source .source-img > .img-item::before {
  background: rgba(var(--secondary-color)) none repeat scroll 0 0;
}

.source-area .single-source:nth-of-type(2) .source-img > a::before,
.source-area .single-source:nth-of-type(5) .source-img > a::before,
.source-area .single-source:nth-of-type(2) .source-img > .img-item::before,
.source-area .single-source:nth-of-type(5) .source-img > .img-item::before {
  background: rgba(var(--primary-color)) none repeat scroll 0 0;
}

/*.source-area .single-source:nth-of-type(3) .source-img > a::before {
  background: #0068d8 none repeat scroll 0 0;
} */

.single-source:hover .source-img a::before,
.single-source:focus .source-img a::before,
.single-source:focus-within .source-img a::before,
.single-source:hover .source-img .img-item::before,
.single-source:focus .source-img .img-item::before, 
.single-source:focus-within .source-img .img-item::before {
  height: 100%;
  width: 100%;
}

.source-area .single-source:hover .source-details,
.source-area .single-source:focus .source-details, 
.source-area .single-source:focus-within .source-details {
  opacity: 1;
}

.source-area .single-source:hover .img-title-bg,
.source-area .single-source:focus .img-title-bg,
.source-area .single-source:focus-within .img-title-bg{
  opacity: 0;
}

.source-area .img-title-bg {
  bottom: 0;
  left: 50%;
  opacity: 0.8;
  overflow: hidden;
  padding: 40px 0;
  position: absolute;
  text-align: center;
  width: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 1;
  transition: all 0.3s ease 0s;
}

.source-area .source-details {
  left: 0;
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease 0s;
  padding: 20px 30px;
}

.source-area .source-details > .h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--black-color);
  text-transform: initial;
}

.source-area .source-details > p {
  font-size: 1.4rem;
  color: var(--black-color);
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.source-area .single-source:nth-of-type(2) .source-details > .h3,
.source-area .single-source:nth-of-type(2) .source-details > p,
.source-area .single-source:nth-of-type(5) .source-details > .h3,
.source-area .single-source:nth-of-type(5) .source-details > p {
  color: var(--white-color);
}

/* ====== source section style for mobile */
.source-area-mobile {
  display: none;
}
.source-area-mobile .source-item {
  display: flex;
}
.source-area-mobile .source-item .source-details,
.source-area-mobile .source-item .source-img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.source-area-mobile .source-item .source-details {
  background: rgba(var(--secondary-color));
  padding: 40px 20px;
}
.source-area-mobile .source-item .source-details .h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--black-color);
  text-transform: initial;
}
.source-area-mobile .source-item .source-details .heading-font {
  font-size: 1.4rem;
  color: var(--black-color);
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.source-area-mobile .source-item:nth-of-type(2) .source-details,
.source-area-mobile .source-item:nth-of-type(5) .source-details {
  background-color: rgba(var(--primary-color));
}
.source-area-mobile .source-item:nth-of-type(2) .source-details .h3,
.source-area-mobile .source-item:nth-of-type(2) .source-details p,
.source-area-mobile .source-item:nth-of-type(5) .source-details .h3,
.source-area-mobile .source-item:nth-of-type(5) .source-details p {
  color: var(--white-color);
}
.source-area-mobile .source-item .source-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.source-area-mobile .source-item:nth-of-type(2) .source-details,
.source-area-mobile .source-item:nth-of-type(5) .source-details {
  -ms-flex-order: 1;
  order: 1;
}

.calendar-section h5,
.calendar-section .h5,
.calendar-section .h6,
.calendar-section p,
.calendar-section .cal-gap p a {
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--primary-font);
  text-decoration: none;
  display: block;
  margin-top: 0;
}
.calendar-section .h6 {
  margin-top: 5px;
}
.calendar-section p {
  font-size: 1.8rem;
  font-weight: 300;
}

.calendar-section h3 {
  color: rgba(var(--secondary-color)) !important;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.calendar-section a:hover {
  text-decoration: underline;
}

.calendar-section .cal-gap {
  border-left: 1px solid #fbfafc;
  padding-left: 32px;
  margin-left: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calendar-section .cal-gap .month {
  font-weight: 300;
  font-size: 1.6rem;
}

.calendar-section .cal-gap .date {
  font-weight: bold;
  font-size: 3.2rem;
  margin-top: 0;
  margin-bottom: 0;
  line-height: normal;
}

.calendar-section .cal-gap .month,
.calendar-section .cal-gap .date {
  color: rgba(var(--secondary-color));
}

.calendar-section .cal-gap .h5 {
  margin-bottom: 10px;
  color: var(--white-color);
  text-decoration: none;
  display: block;
}

.calendar-section .cal-gap .h5:hover {
  text-decoration: underline;
}

.calendar-section .cal-gap .cal-new p, 
.calendar-section .cal-gap .cal-new p a {
  font-weight: 300;
  margin-bottom: 0;
  float: left;
  padding-right: 5px;
} 

.calendar-section .column img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.calendar-section .primary-btn:hover, 
#footer .primary-btn:hover,
.number-area .primary-btn:hover,
.apply-btn-content .primary-btn:hover {
	border: 2px solid rgba(var(--secondary-color));
}
.calendar-section .primary-btn:focus, 
#footer .primary-btn:focus,
.number-area .primary-btn:focus,
.apply-btn-content .primary-btn:focus {
	border: 2px solid #fff;
}

/* ================================ Inner page Style ============================= */
.left-content-section {
  padding-right: 60px;
}
.inner-page-top-section {
  margin-top: 100px;
  position: relative;
}
.inner-page-top-section:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 285px;
  background-color: rgba(var(--primary-color), 0.8);
  z-index: 9;
}
.inner-page-top-section h1 {
  font-size: 8rem;
  /* text-transform: capitalize; */
}
.inner-full-page-top-section {
  position: relative;
  min-height: 520px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center center; */
  /*   height: 50vh; */
  padding-bottom: 100px;
}
.department-page {
  min-height: auto;
  height: auto;
/*   padding: 25px 0 130px 0; */
}
.inner-full-page-top-section:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 285px;
  background-color: rgba(var(--primary-color), 0.8);
}

.inner-full-page-top-section h1 {
  color: var(--white-color);
  font-size: 8rem;
  /* text-transform: capitalize; */
  background-color: rgba(var(--primary-color));
  padding: 20px 80px 45px 60px;
  margin-left: 85px;
  margin-right: 70px;
  display: inline-block;
  margin-bottom: 0;
  line-height: 84px;
}

.full-banner-content {
  margin-top: 160px;
  position: relative;
}

.full-banner-content p {
  color: var(--black-color);
  padding: 20px 55px;
  background-color: rgba(var(--secondary-color));
  margin-left: 145px;
  margin-top: -34px;
  margin-bottom: 0;
  font-size: 2rem;
  position: relative;
}
.inner-top {
  padding-left: 341px;
}

.light-heading,
.right-section .light-heading a {
  /*   color: #8a8a85; */
  color: rgba(var(--primary-color));
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb {
  font-family: "whitneysemibold";
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: transparent;
}
/*.breadcrumbs a::after {
  content: "/";
  padding-right: 0.5625rem;
  color: rgba(var(--secondary-color));
  padding-left: 6px;
}*/
.breadcrumbs {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.breadcrumbs a {
  color: var(--black-color) !important;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: normal;
}
.breadcrumbs .separator {
  padding-right: 0.5625rem;
  /* color: rgba(var(--secondary-color)); */
  color: #595959;
  padding-left: 6px;
}
.breadcrumbs .current {
  color: rgba(var(--primary-color));
  color: #212529 !important;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.breadcrumb a {
	color: var(--black-color);
    font-size: 1.4rem;
    text-transform: uppercase;
}
.breadcrumb span {
	color: #212529 !important;
    font-size: 1.4rem;
    text-transform: uppercase;
}
.blockquote {
  margin-bottom: 50px;
/*   border-left: 5px solid rgba(var(--secondary-color)); */
  border-left: 5px solid #7529AB;
  padding: 10px 20px 10px 30px;
}
.blockquote p {
  font-size: 2.5rem;
}
.blockquote-footer {
  color: var(--black-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.inner-banner-bg {
  background-repeat: no-repeat;
  min-height: 520px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
  background-position-x: center;
  height: 50vh;
}
.inner-page-style h2 {
  /* text-transform: capitalize; */
  line-height: 84px;
}

.inner-page-style ul,
.inner-page-style ol {
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 30px;
}

.inner-page-style ul ul,
.inner-page-style ol ol {
  margin-top: 10px;
  margin-bottom: 0;
}
.inner-page-style ul ol li {
  list-style: none;
}
.inner-page-style ol ul li:after {
	display: none;
}
.inner-page-style ol li ol li {
  list-style: lower-alpha;
}

.inner-page-style ul li,
.inner-page-style ol li {
  margin-bottom: 10px;
  word-wrap: break-word;
  list-style-type: square;
}
.inner-page-style ol li {
  list-style: decimal;
}
.inner-page-style ul li::marker {
    color: rgba(var(--primary-color));
	font-size: 22px;
 }
/* .inner-page-style ul > li > ul > li::marker {
	color: rgba(var(--secondary-color));
	font-size: 22px;
} */
/* .inner-page-style ul li:after {
  content: "\f0c8";
  font: normal normal normal 8px / 1 FontAwesome;
  font-weight: 900;
  color: rgba(var(--primary-color));
  position: absolute;
  top: 12px;
  left: -16px;
}

.inner-page-style ul li ul li:after {
  content: "\f0c8";
  font: normal normal normal 8px / 1 FontAwesome;
  font-weight: 900;
  color: rgba(var(--secondary-color));
  position: absolute;
  top: 9px;
  left: -16px;
} */

.inner-page-style ul li a,
.inner-page-style ol li a {
  word-wrap: break-word;
}

.inner-page-style figcaption {
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 5px;
/*   border-left: 2px solid rgba(var(--secondary-color)); */
	border-left: 2px solid rgba(var(--primary-color));
  color: var(--black-color);
  margin-bottom: 20px;
  text-align: left;
}
.inner-page-style img {
  margin-bottom: 0px;
  /* height: 310px;
  width: 100%; */
  object-fit: cover;
  object-position: top;
}
.inner-page-style .check-list-section ul li,
.inner-page-style .quick-list-section ul li, 
.right-section.right-links-click ul li,
.right-section ul li {
	list-style-type: none;
}
.table-style {
  background-color: #f8f6f9;
  padding: 15px;
  margin-bottom: 30px;
}

table {
  color: var(--body-text-color) !important;
  margin-bottom: 0 !important;
  caption-side: top;
}

table caption {
  font-family: var(--primary-font-heading) !important;
  color: rgba(var(--primary-color));
  margin-left: 0px;
  margin-top: 0px;
  margin-bottom: 10px;
  padding-top: 0px;
  caption-side: top;
  font-weight: 500;
}

table tr > td,
table tr > th {
  padding: 10px 15px !important;
  text-align: left !important;
}

table tr > th , table tr > th a {
  font-family: var(--primary-font-heading) !important;
  background-color: rgba(var(--primary-color)) !important;
  color: #ffffff !important;
  text-align: left !important;
  vertical-align: middle;
  border: none !important;
}

table tr:nth-child(even) {
  background-color: #e7e1ec;
}
table img {
  width: auto;
  height: auto !important;
  display: block;
}
table p {
  margin-bottom: 10px !important;
}
.table-style .wpdt-c.wpDataTableContainerSimpleTable {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0 20px 0 20px;
}
.table-style tbody tr.wpdt-cell-row:nth-child(even) {
  background-color: #e7e1ec;
}
.table-style tbody tr td {
  background-color: transparent !important;
  border: none !important;
  text-align: left !important;
}
.table-style thead tr th {
  font-family: var(--primary-font-heading) !important;
  background: rgba(var(--primary-color)) !important;
  color: #ffffff;
  vertical-align: middle;
  border: none !important;
  text-align: left !important;
}
.table-style thead tr th a {
  color: #ffffff;
}
td.wpdt-cell.wpdt-align-center {
  text-align: left !important;
}
.no-border-table {
  margin-bottom: 50px;
}
.no-border-table tr > td,
.no-border-table tr > th {
  padding: 5px 0 !important;
}
.no-border-table tr,
.no-border-table th {
  background-color: transparent !important;
}
.no-border-table th {
  color: rgba(var(--primary-color));
}

.no-border-table td {
  border: none !important;
}
.no-border-table caption {
  margin-left: 0;
}

.wpDataTables caption {
  display: none;
}

#wpdtSimpleTable-218 thead th {
  width: 33.3% !important;
}

.wpDataTables {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.callout-box {
  background-color: rgba(var(--primary-color));
  padding: 30px;
  border-top: 5px solid rgba(var(--secondary-color));
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.callout-box .callout-heading {
  font-family: var(--primary-font-heading);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
}
.callout-box p,
.callout-box a {
  color: var(--white-color);
  margin-bottom: 0;
  word-wrap: break-word;
}

/* =============== accordion styles ============== */
#accordion-section {
  margin-bottom: 50px;
}

#accordion-section .card {
  margin-bottom: 20px;
  border: 0;
}

#accordion-section .card .card-header {
  border: 0;
  padding: 0;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  margin-bottom: auto;
}

#accordion-section .card .card-header .btn-header-link {
  background: rgba(var(--primary-color));
  color: #fff;
  display: block;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  word-break: initial;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: initial;
  box-shadow: none !important;
  border-radius: 0px;
  border: 2px solid #f8f6f9;
}

#accordion-section .card .card-header .btn-header-link:hover {
/*   border: 2px solid rgba(var(--secondary-color)); */
	border: 2px solid #7529AB;
}
#accordion-section .card .card-header .btn-header-link:focus {
  border: 2px solid rgba(var(--primary-color));
}

#accordion-section .card .card-header .btn-header-link:after {
  content: "-";
  font-family: IcoFont;
  font-weight: 900;
  float: right;
  font-size: 1.375em;
}

#accordion-section .card .card-header .btn-header-link.collapsed {
  font-family: var(--primary-font-heading);
  background: #f8f6f9;
  color: var(--body-text-color);
  display: flex;
}

#accordion-section .card .card-header .btn-header-link.collapsed:after {
  content: "+";
  color: rgba(var(--primary-color));
  font-family: IcoFont;
  padding-left: 5px;
}

#accordion-section .card .card-body {
  font-size: 1em;
  line-height: 22px;
  background-color: #fff;
  padding-top: 20px;
}

#accordion-section .card .card-body a.btn-callout {
  text-decoration: none;
}

#accordion-section .card .card-body p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

#accordion-section .card .collapsing {
  background: #f4f4f4;
  line-height: 30px;
}

#accordion-section .card .collapse {
  border: 0;
}

#accordion-section .card .collapse.show {
  background: #fff;
  line-height: 30px;
  color: #222;
}
#accordion-section .card-body img {
	float: left;
    margin-right: 10px;
}

.check-list-section,
.quick-list-section {
  margin-bottom: 50px;
}

.check-listed,
.quick-listed {
  margin-left: 0 !important;
  display: flex;
  flex-wrap: wrap;
}

.check-listed li {
  list-style: none;
  background: url("/wp-content/uploads/2024/07/checklist-icon.png") no-repeat;
  background-position-y: 4px;
  color: var(--body-text-color);
  padding-left: 30px;
  width: 50%;
  padding-right: 10px;
}

.check-listed li::after,
.quick-listed li::after {
  display: none;
}

.quick-listed li {
  list-style: none;
  margin-bottom: 20px !important;
  width: 50%;
  padding-right: 15px;
}

.quick-listed li a {
  padding-bottom: 15px;
  display: flex;
  align-items: baseline;
  border-bottom: 2px solid #e7e1ec;
  height: 100%;
}

.quick-listed li a i,
.quick-listed li a em {
  font-size: 14px;
/*   color: rgba(var(--secondary-color)); */
	color: #7529AB;
  margin-right: 12px;
}

.quick-list-section .quick-link-item {
  margin-bottom: 10px;
}

.product-card {
  background-color: #f8f6f9;
  border-top: 8px solid rgba(var(--primary-color));
  box-shadow: var(--box-shadow);
  margin-bottom: 50px;
}
.product-card .product-card-wrapper {
  padding: 60px 0 60px 30px;
}
.product-card .product-card-wrapper h4 {
  font-size: 3.6rem;
}
.product-card .product-image {
  height: 100%;
  margin-bottom: 0;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}
.product-card .product-image figure {
	margin-bottom: 0;
}
.cta-banner {
  margin-bottom: 30px;
  background-color: rgba(var(--primary-color));
  position: relative;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.cta-banner .p-5 {
  padding-right: 140px !important;
}
.cta-banner p {
  margin-bottom: 0;
  color: var(--white-color);
}
.cta-banner .cta-heading {
  font-size: 2.4rem;
  font-family: var(--primary-font-heading);
  margin-bottom: 8px;
  word-wrap: break-word;
}
.cta-banner-btn {
  background-color: rgba(var(--secondary-color));
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  text-decoration: none !important;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
}
.cta-banner-btn i,
.cta-banner-btn em {
  color: rgba(var(--primary-color));
  font-size: 40px;
}
.cta-banner-btn:hover {
  background-color: transparent;
}
.cta-banner-btn:hover i,
.cta-banner-btn:hover em {
  color: rgba(var(--secondary-color));
}

.factoids-section {
  margin-bottom: 50px;
}
.factoids-left-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.factoids-section .factoids-left-section,
.factoids-section .factoids-right-section {
  width: 50%;
}

.factoids-section .factoids-heading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2rem;
}
.factoids-section p, .factoids-section li {
  color: var(--black-color);
}
.factoids-section .primary-bg-color p, 
.factoids-section .primary-bg-color li {
  color: var(--white-color);
}
.factoids-section li::marker {
    color: rgba(var(--white-color)) !important;
    font-size: 22px;
}
.factoids-left-section .h-50 {
  overflow-y: auto;
}
.factoids-left-section .primary-bg-color a {
  color: #fff;
}
.staff-contact-section {
  border: 1px solid #e7e1ec;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: 100%;
}
.staff-contact-section .staff-lft-content {
  width: 75%;
}
.staff-contact-section .staff-name {
  font-weight: bold;
  font-size: 28px;
  color: rgba(var(--primary-color));
  text-transform: capitalize;
}
.staff-title {
  color: #464646;
  font-size: 18px;
  text-transform: capitalize;
  display: block;
}

.staff-period {
  display: block;
}
.staff-contact-section i,
.staff-contact-section em {
  width: 32px;
  color: rgba(var(--primary-color));
}
.staff-contact-section span {
  color: #363535;
}
.staff-contact-section span a {
  color: #363535;
  font-weight: normal;
  text-decoration: underline;
}
.staff-img {
  background-color: rgba(var(--primary-color));
  width: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-contact-section img {
  margin-bottom: 0;
  width: 204px;
  /* height: 282px; */
  height: 100%;
  object-fit: cover;
}
.staff-img .no-img {
  width: auto;
  height: auto;
}
.side-staff {
  height: auto;
  margin-bottom: 20px;
}

.photo-gallery-section {
  margin-bottom: 50px;
}
.photo-gallery-section img {
  height: 270px;
  width: 100%;
  object-position: top;
  object-fit: cover;
}

.gallery-item {
  display: inline-block;
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 15px;
}

/* .gallery-content .col-12:nth-child(n + 4) {
  display: none;
}
.gallery-content2 .col-12:nth-child(n + 4) {
  display: none;
} */

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--primary-color), 0.9);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.gallery-item:hover .img-overlay,
.gallery-item:focus .img-overlay {
  height: 100%;
}
.img-overlay .gallery-inner-content {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: baseline;
  height: 100%;
}
.img-overlay .gallery-inner-content img {
  height: auto;
  width: auto;
}
.img-overlay p {
  color: #fff;
  margin-top: 15px;
  font-size: 1.6rem;
  width: 100%;
  font-weight: 500;
}

.more-btn,
.less-btn {
  font-family: var(--primary-font-heading);
  clear: both;
  color: rgba(var(--primary-color));
  cursor: pointer;
  display: block;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin: 0 auto;
}

/* .more-btn:after {
  content: "+";
  color: rgba(var(--secondary-color));
  font-weight: 900;
  font-size: 1.345em;
  font-family: IcoFont;
  padding-left: 10px;
}
.less-btn:after {
  content: "-";
  color: rgba(var(--secondary-color));
  font-weight: 900;
  font-size: 1.345em;
  font-family: IcoFont;
  padding-left: 10px;
} */
.more-btn em {
/*   color: rgba(var(--secondary-color)); */
	color: #7529AB;
  margin-left: 10px;
}

.photo-gallery-section-without-link {
	margin-bottom: 30px;
}
.video-gallery-section {
  margin-bottom: 50px;
}
.video-gallery-section .col-md-6 {
  margin-bottom: 10px;
}
.image-and-text-section {
  margin-bottom: 50px;
}
.image-and-text-section img {
  margin-bottom: 0;
  height: auto;
}
.testimonial-section {
  margin-bottom: 50px;
}
.testimonial-section .carousel {
  background-color: rgba(var(--primary-color));
}
.testimonial-section .carousel-item {
  color: #999;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-height: 290px;
}
.testimonial-section .carousel .bg-white {
  position: absolute;
  width: 100%;
  height: 50px;
}
.testimonial-section .carousel .testimonial-content {
  padding: 0 70px;
}
.testimonial-section .carousel .item .img-box {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.testimonial-section .carousel .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.testimonial-section .carousel .testimonial-heading {
  font-family: var(--primary-font-heading);
  color: var(--white-color);
  font-size: 2.4rem;
  margin-top: 30px;
}
.testimonial-section .carousel p {
  color: var(--white-color);
  padding: 0px 0 10px;
  margin-bottom: 5px;
}
.testimonial-section .carousel .overview {
  font-family: var(--primary-font-heading);
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 1.5rem;
  margin-bottom: 50px;
}
.testimonial-section .carousel .carousel-control {
  width: 28px;
  height: auto;
  background-color: rgba(var(--secondary-color));
  opacity: 1;
  top: 50px;
}
.testimonial-section .carousel .carousel-control:focus {	
  outline: auto; 
	    color: #0c0c0c;
}

.testimonial-section .carousel-control i,
.testimonial-section .carousel-control em {
  font-size: 26px;
  line-height: 42px;
  position: absolute;
  display: inline-block;
  color: rgba(var(--primary-color));
}
.testimonial-section .carousel-indicators li {
  list-style: none;
}
.testimonial-section .carousel .carousel-indicators {
  display: none;
  margin-bottom: 15px;
  margin-right: 0;
  margin-left: 0;
}
.testimonial-section .carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
#carouselControlBtn {
  margin-left: 35px;
    position: absolute;
    top: 60px;
    z-index: 9999;
}
#carouselControlBtn.btn {
	    min-width: auto;
	    padding: 10px 10px;
}
#carouselControlBtn.btn em {
	color: #fff;
	font-size: 14px;
}
.social-media-section {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
.social-media-section a {
  width: 50%;
  margin-bottom: 15px;
}
.social-media-section i,
.social-media-section em {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c7b7d2;
  color: rgba(var(--primary-color));
}
.social-media-section span {
  color: rgba(var(--primary-color));
}
.social-media-section a:hover i,
.social-media-section a:hover em {
  background-color: rgba(var(--primary-color));
  color: var(--white-color);
}
.social-media-section a:hover span {
  color: var(--black-color);
}
/* 2 column photo section */
.photo-block-2-column {
  margin-bottom: 50px;
  transition: all 0.3s ease 0s;
}

.photo-block-2-column .source-area-items {
  display: flex;
  flex-direction: row;
}

.photo-block-2-column .single-source,
.photo-block-2-column .source-img {
  overflow: hidden;
  position: relative;
}
.photo-block-2-column .source-img img {
  margin-bottom: 0;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}
.photo-block-2-column .single-source {
  margin-right: 0px;
  width: 50%;
}

.photo-block-2-column .single-source:last-child {
  margin-right: 0;
}

.photo-block-2-column .single-source .img-title-bg {
  color: rgba(var(--primary-color));
  font-family: var(--primary-font-heading);
  font-size: 36px;
  background-color: rgba(var(--secondary-color), 0.9);
  text-transform: capitalize;
}

.photo-block-2-column .single-source:nth-of-type(2) .img-title-bg {
  color: var(--white-color);
  background-color: rgba(var(--primary-color), 0.9);
}

.photo-block-2-column .img-title-bg > p {
  color: var(--white-color);
  margin-bottom: 0;
}

.photo-block-2-column .single-source:hover .img-title-bg, 
.photo-block-2-column .single-source:focus .img-title-bg,
.photo-block-2-column .single-source:focus-within .img-title-bg {
  opacity: 0;
}

.photo-block-2-column .source-img::before {
  content: "";
  opacity: 0.9;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 0;
  height: 0;
  left: 0;
  top: initial;
  right: 0;
  bottom: 0;
  margin: auto;
}

.photo-block-2-column .single-source .source-img::before {
  background: rgba(var(--secondary-color)) none repeat scroll 0 0;
}

.photo-block-2-column .single-source:nth-of-type(2) .source-img::before {
  background: rgba(var(--primary-color)) none repeat scroll 0 0;
}

.photo-block-2-column .single-source:hover .source-img::before, 
.photo-block-2-column .single-source:focus .source-img::before,
.photo-block-2-column .single-source:focus-within .source-img::before {
  height: 60%;
  width: 100%;
}

.photo-block-2-column .single-source:hover .source-details,
.photo-block-2-column .single-source:focus .source-details,
.photo-block-2-column .single-source:focus-within .source-details {
  opacity: 1;
}

.photo-block-2-column .img-title-bg {
  bottom: 0;
  left: 50%;
  opacity: 0.8;
  overflow: hidden;
  padding: 30px 30px;
  position: absolute;
  text-align: center;
  width: 100%;
  opacity: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}

.photo-block-2-column .source-details {
  left: 0;
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease 0s;
  padding: 0px 30px 20px 30px;
  transform: translateY(-5%);
  -webkit-transform: translateY(-5%);
  -moz-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  -o-transform: translateY(-5%);
}

.photo-block-2-column .source-details > .h3 {
  font-family: var(--primary-font-heading);
  font-size: 3.6rem;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--black-color);
  text-transform: capitalize;
}

.photo-block-2-column .source-details > p {
  font-size: 1.8rem;
  color: var(--black-color);
  margin-bottom: 20px;
  text-transform: none;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.photo-block-2-column .single-source:nth-of-type(2) .source-details > .h3,
.photo-block-2-column .single-source:nth-of-type(2) .source-details > p,
.photo-block-2-column .single-source:nth-of-type(2) .source-details > a, 
.photo-block-2-column .single-source:nth-of-type(2) .source-details > .btn-callout {
  color: var(--white-color);
}
.photo-block-2-column .single-source:nth-of-type(2) .source-details > .btn-callout {
	border-bottom: 2px solid #fff;
}
.photo-block-2-column .single-source:nth-of-type(2) .source-details > .btn-callout:hover {
	    border-bottom: 2px solid #fff;
}

/* 3 column photo section */
.photo-block-3-column {
  margin-bottom: 50px;
  transition: all 0.3s ease 0s;
}

.photo-block-3-column .source-area-items {
  display: flex;
  flex-direction: row;
}

.photo-block-3-column .single-source,
.photo-block-3-column .source-img, 
.photo-block-3-column .single-source .single-source-link {
  overflow: hidden;
  position: relative;
}
.photo-block-3-column .source-img img {
  margin-bottom: 0;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}
.photo-block-3-column .single-source {
  margin-right: 0px;
  width: 50%;
}

.photo-block-3-column .single-source:last-child {
  margin-right: 0;
}

.photo-block-3-column .single-source .img-title-bg {
  color: var(--white-color);
  font-family: var(--primary-font-heading);
  font-size: 36px;
  background-color: rgba(var(--primary-color), 0.9);
  /* text-transform: capitalize; */
  text-align: left;
  line-height: normal;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 30px 30px;
  position: absolute;
  text-align: center;
  width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.photo-block-3-column .single-source:nth-of-type(2) .img-title-bg {
  background-color: rgba(117, 90, 171, 0.9);
}
.photo-block-3-column .single-source:nth-of-type(3) .img-title-bg {
  color: var(--black-color);
  background-color: rgba(var(--secondary-color), 0.9);
}

.photo-block-3-column .img-title-bg > p {
  color: var(--white-color);
  margin-bottom: 0;
}
.photo-block-3-column .single-source:hover .img-title-bg {
  opacity: 0;
}

.photo-block-3-column .source-details {
  left: 0px;
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px 30px 40px 30px;
  background-color: rgba(var(--primary-color), 0.9);
}

.photo-block-3-column .single-source:nth-of-type(2) .source-details {
  background: rgba(117, 90, 171, 0.9);
}

.photo-block-3-column .single-source:nth-of-type(3) .source-details {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
}

.photo-block-3-column .source-details > a, 
.photo-block-3-column .source-details > .btn-callout {
  color: var(--white-color);
  border-bottom: 2px solid #fff;
}

.photo-block-3-column .source-details > .h3 {
  font-family: var(--primary-font-heading);
  font-size: 3.6rem;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--white-color);
  /*text-transform: capitalize; */
}

.photo-block-3-column .source-details p {
  font-size: 1.8rem;
  color: var(--white-color);
  margin-bottom: 20px;
  text-transform: none;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.photo-block-3-column .single-source:nth-of-type(3) .source-details .h3,
.photo-block-3-column .single-source:nth-of-type(3) .source-details p,
.photo-block-3-column .single-source:nth-of-type(3) .source-details a, 
.photo-block-3-column .single-source:nth-of-type(3) .source-details .btn-callout {
  color: var(--black-color);
}
.photo-block-3-column .single-source:nth-of-type(3) .source-details .btn-callout {
	    border-bottom: 2px solid rgba(var(--primary-color));
}


/* .photo-block-3-column .single-source:hover .source-details, 
.photo-block-3-column .single-source:focus .source-details {
  opacity: 0.9;
  background: rgba(var(--primary-color)) none repeat scroll 0 0;
}
.photo-block-3-column .single-source:nth-of-type(2):hover .source-details {
  opacity: 0.9;
  background: #755aab none repeat scroll 0 0;
}
.photo-block-3-column .single-source:nth-of-type(3):hover .source-details {
  opacity: 0.9;
  background: rgba(var(--secondary-color)) none repeat scroll 0 0;
} */

/* Hover and Focus States */
.photo-block-3-column .single-source:hover .source-details,
.photo-block-3-column .single-source:focus .source-details,
.photo-block-3-column .single-source:focus-within .source-details {
  opacity: 1;
}

.photo-block-3-column .single-source:hover .img-title-bg,
.photo-block-3-column .single-source:focus .img-title-bg,
.photo-block-3-column .single-source:focus-within .img-title-bg {
  opacity: 0;
}

/* Focus Outline for Accessibility */
.single-source:focus {
  outline: 2px solid #007bff;
}

.news-section {
  margin-bottom: 50px;
}
.news-section img {
  height: 246px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
	object-position: top;
}
.news-section .date-item {
  color: var(--black-color);
  font-family: var(--primary-font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 15px 0px 15px;
}
.news-section p {
  color: var(--black-color);
  overflow: hidden;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 55px;
}
.news-section .upcoming-event-meta {
/*   position: absolute; */
  bottom: 0;
}
.news-section .upcoming-event-wrapper .content-item {
  margin-bottom: 90px;
}
.news-section .upcoming-event-wrapper .content-item p {
  margin-bottom: 20px;
}
.news-section .upcoming-event-wrapper .h4 {
	overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.news-details-page p img,
.news-details-page figure {
  float: right;
  display: block;
  width: 300px;
  clear: both;
  margin-left: 20px;
  margin-bottom: 20px;
}
.news-details-page table figure {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.news-details-page table figure figcaption {
  margin-bottom: 0;
}
#newsTitle {
  line-height: normal;
}
#newsTitle:focus-within {
	outline: 1px solid #49176d;
}
.right-img-left-cont {
  background-color: #f8f6f9;
  margin-bottom: 50px;
}
.right-img-left-cont .product-card-wrapper {
  padding: 30px 20px 30px 20px;
}
.right-img-left-cont .product-card-wrapper h4 {
  font-size: 3.6rem;
}
.right-img-left-cont p {
  margin-bottom: 10px;
  /*   overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical; */
}
.right-img-left-cont .product-image {
  height: 100% !important;
  margin-bottom: 0;
}
.right-img-left-cont .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}
.right-img-left-cont .product-image figure {
	margin-bottom: 0;
}
.img-block-half img {
  height: 373px;
  width: 100%;
  object-fit: cover;
}
.img-block-half .col-md-6 img {
/*   height: auto; */
/*   width: auto; */
  margin-bottom: 0px;
}
/* .two-column-img img {
  height: auto;
} */
.full-width-product .product-image {
  /*   height: 350px; */
  object-position: top;
}
.full-half-img-cta-section {
  position: relative;
  padding: 70px 0;
}
.full-half-img-cta-section .h2 {
  font-size: 5.6rem;
}
.bg-image-wrap-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background-position: center center; */
  background-size: cover;
  width: 50%;
  display: block;
}
.full-half-img-cta-section p {
  color: var(--black-color);
}
.full-half-img-cta-section .full-img-content {
  padding: 0 0 0 50px;
}

/* image carousel gallery slider */
.image-carousel-section {
  margin: 60px 0 130px;
}
.cascade-slider_container {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 25px auto;
  padding-top: 150px;
}
.cascade-slider_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0.3);
  transition: all 1s ease;
  opacity: 0;
  z-index: -1;
  text-align: center;
}
.cascade-slider_item.next {
  left: 50%;
  transform: translateY(-50%) translateX(-135%) scale(0.8);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 1;
  z-index: 1;
}
.cascade-slider_item.prev {
  left: 50%;
  transform: translateY(-50%) translateX(35%) scale(0.8);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 1;
  z-index: 1;
}
.cascade-slider_item.now {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
}
.cascade-slider_arrow {
  position: absolute;
  top: 11px;
  cursor: pointer;
  z-index: 5;
  height: 100%;
  width: 40px;
  background-color: rgba(var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}
.cascade-slider_arrow i,
.cascade-slider_arrow em {
  font-size: 26px;
  line-height: 42px;
  display: inline-block;
  color: rgba(var(--secondary-color));
}
.cascade-slider_arrow-left {
  left: 20px;
}
.cascade-slider_arrow-right {
  right: 20px;
}

.cascade-slider_indicators {
    display: flex;
    justify-content: center; 
    gap: 10px;
    margin-top: 170px; 
    position: relative;
    z-index: 10; 
}

.cascade-slider_indicator {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #49176d;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.cascade-slider_indicator.active-indicator {
    background-color: #49176d;
    border-color: #49176d;
}

.card-item {
  width: 450px;
  height: 215px;
  transition: all 1s 0s;
  vertical-align: middle;
}
.photo {
  display: inline;
}
.photo img {
  transform: translateY(-35px) translateX(-10px);
  margin-bottom: 0;
  height: 313px;
  object-fit: cover;
}

/* code added to hide the scrolling */
@media (min-width: 320px) and (max-width: 768px) {
	.course-scrolling{
		display: none;
	}
}

/* code added to hide the scrolling */

@media (min-width: 460px) and (max-width: 768px) {
	
  .cascade-slider_item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.3);
    transition: all 1s ease;
    opacity: 0;
    z-index: -1;
    text-align: center;
  }
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-90%) scale(0.4);
    filter: brightness(70%);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(-10%) scale(0.4);
    filter: brightness(70%);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_item.now {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.6);
    opacity: 1;
    z-index: 5;
  }
  .cascade-slider_arrow-left img {
    height: 30px;
    left: 30px;
  }
  .cascade-slider_arrow-right img {
    height: 30px;
    left: 30px;
  }
  .cascade-slider_nav {
    display: none;
  }
}
@media (max-width: 460px) {
  .cascade-slider_item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.3);
    transition: all 1s ease;
    opacity: 0;
    z-index: -1;
    text-align: center;
  }
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-80%) scale(0.3);
    filter: brightness(70%);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(-20%) scale(0.3);
    filter: brightness(70%);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_item.now {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.5);
    opacity: 1;
    z-index: 5;
  }
  .cascade-slider_arrow-left img {
    height: 30px;
    left: 30px;
  }
  .cascade-slider_arrow-right img {
    height: 30px;
    left: 30px;
  }
  .cascade-slider_nav {
    display: none;
  }
}
/* right side accordion menu */

ul#nav-tabs {
  padding-left: 0;
  list-style: none none inside;
  /* overflow: hidden; */
  margin-left: 0;
}

ul#nav-tabs li {
  position: relative;
  margin-bottom: 14px;
}
ul#nav-tabs li .h6 {
  color: #1f0a2e;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
ul#nav-tabs li .h6 a {
  color: #1f0a2e;
  text-decoration: none;
}
ul#nav-tabs li .h6 .glyph-wrapper {
  /* position: absolute; */
  width: 12px;
  height: 12px;
  right: 1rem;
  top: 6px;
  margin-left: 15px;
  transition: all 0.3s 0.1s ease;
  -webkit-transition: all 0.3s 0.1s ease;
  -moz-transition: all 0.3s 0.1s ease;
  -ms-transition: all 0.3s 0.1s ease;
  -o-transition: all 0.3s 0.1s ease;
}
ul#nav-tabs li .h6 .glyph-wrapper span {
  position: relative;
  left: 50%;
  top: 50%;
  display: block;
  background-color: #1f0a2e;
  transition: inherit;
  transform-origin: center;
}
ul#nav-tabs li .h6 .glyph-wrapper span.line-h {
  width: inherit;
  height: 2px;
  transform: translate(-50%, calc(-50% + 1px));
}
ul#nav-tabs li .h6 .glyph-wrapper span.line-v {
  width: 2px;
  height: inherit;
  transform: translate(-50%, calc(-50% - 1px));
}
ul#nav-tabs li .h6.active {
  background-color: rgba(var(--secondary-color));
  padding: 8px 8px 8px 12px;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

ul#nav-tabs li .h6.active .glyph-wrapper {
  top: 14px;
}

.side-bar-list-item {
  list-style: none none inside;
  margin-left: 0 !important;
}
.side-bar-list-item li {
  margin-bottom: 0px !important;
}
.side-bar-list-item li:after {
  display: none;
}
.side-bar-list-item li a {
  color: #595959;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 8px 0 8px 1rem;
/*   border-left: 2px solid rgba(var(--secondary-color)); */
	 border-left: 2px solid rgba(var(--primary-color));
}
.side-bar-list-item li a:hover {
  color: #49176d;
/*   border-left: 2px solid #49176d; */
	border-left: 2px solid #7529AB;
  text-decoration: none;
}
.side-bar-list-item li ul {
  margin-top: 0 !important;
}
.side-bar-list-item li ul li a {
  border-left: none !important;
}
.accordion {
  overflow: hidden;
  transition: all 0.4s ease;
}
.active + .accordion {
  margin-bottom: 1rem;
}
.inactive + .accordion {
  max-height: 0;
  transition: all 0.4s ease;
}
.accordion li {
  max-height: 0;
  margin: 0 0 0 0 !important;
  border-left: none;
  border-right: none;
  transition: all 0.4s ease;
}
.accordion li a {
  color: #595959 !important;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 8px 0 8px 1rem;
  border-left: 2px solid rgba(var(--primary-color));
}
.accordion li a:hover {
  border-left: 2px solid #7529AB;
  color: rgba(var(--primary-color)) !important;
  text-decoration: none;
}
.active + .accordion li {
  max-height: 200px;
  transition: all 0.4s ease;
}
.accordion li + li {
  border-top: none;
  border-bottom: none;
}
.accordion-note {
  color: #595959;
  font-size: 1.6rem;
}
ul#nav-tabs li:after,
.accordion li::after {
  display: none;
}
.error-page-section {
  margin-top: 60px;
}
.error-page-section h2 {
  line-height: 95px;
}
.error-page-section p {
  font-size: 2.8rem;
  color: #595959;
}
.error-page-section .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  line-height: 2.375rem;
  text-align: center;
  color: #aaa;
  top: 48px;
  left: 10px;
}
.error-page-section button {
  background-color: transparent;
}
.error-page-section .btn {
  padding: 10px 55px;
}
.error-page-section .form-control {
  font-size: 1.6rem;
  padding: 25px 20px 25px 40px;
  width: 280px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.form-search::placeholder {
  font-family: "whitneysemibold";
  font-size: 18px;
  color: rgba(var(--primary-color)) !important;
  opacity: 1;
}

.form-search::-ms-input-placeholder {
  font-family: "whitneysemibold";
  font-size: 18px;
  color: rgba(var(--primary-color)) !important;
  opacity: 1;
}
.form-search::-ms-input-placeholder {
  font-family: "whitneysemibold";
  font-size: 18px;
  color: rgba(var(--primary-color)) !important;
  opacity: 1;
}
.heading-two-column-text .small-heading {
  font-family: "whitneysemibold";
  font-size: 28px;
  color: rgba(var(--primary-color)) !important;
  margin-bottom: 20px;
}
.heading-two-column-text p {
  column-count: 2;
  column-gap: 50px;
}
.two-column-para p {
  column-count: 2;
  column-gap: 50px;
}
.two-col-right-img figure {
	text-align: left;
	float: right;
    width: 360px !important;
    height: auto;
    margin-left: 25px;
    margin-bottom: 10px;
    object-fit: contain;
}
.two-col-right-img img {
  margin-bottom: 0px;
  height: auto !important;
}
.two-col-right-img p {
  margin-bottom: 10px;
}
.two-col-right-img p.image-caption-text {
/*   border-left: 2px solid rgba(var(--secondary-color)); */
	 border-left: 2px solid #7529AB;
  padding: 10px;
}

.follow-us ul {
  margin-top: 20px;
}
.follow-us ul li a {
  color: var(--body-text-color);
  font-weight: 600;
}

/* ===== Programs page style ====== */
.top-search-section {
  background-color: rgba(var(--secondary-color));
  padding: 30px;
}
.search-content {
  display: flex;
  align-items: center;
}
.search-heading {
  color: rgba(var(--primary-color));
  font-family: var(--primary-font-heading);
  font-size: 16px;
  text-transform: uppercase;
}
.searchInputWrapper {
  position: relative;
  background: #fff;
  padding: 3px 10px 3px 20px;
  width: 100%;
  display: flex;
}
.search-btn {
  background-color: transparent;
}
.searchInput {
  width: 100%;
  border: none;
  margin-left: 5px;
  padding: 10px;
}
.inner-heading-padding h2 {
  padding-right: 250px;
  line-height: 84px;
}
.course-accordion {
  margin-bottom: 50px;
  max-height: 1365px;
}
.course-accordion .left-date-time {
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.course-accordion .left-date-time img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}
.course-accordion .right-content {
  display: flex;
  align-items: center;
}
.course-accordion .right-date-time {
  width: 100%;
}
.course-accordion .right-date-time .tag-name {
  font-family: "whitneysemibold";
  color: rgba(var(--primary-color));
  border: 1px solid #c7b7d2;
  padding: 5px 10px;
  text-transform: uppercase;
  margin-right: 10px;
}
.course-accordion .card {
  border: 1px solid #c7b7d2;
  margin-bottom: 10px;
}

.course-accordion .card .card-header {
  background: #fff;
  border: 0;
  padding: 15px 20px 15px 30px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  margin-bottom: auto;
	display: flex;
    align-items: center;
    justify-content: space-between;
}


.course-accordion .card .card-header .btn-header-link {
  display: block;
  text-align: left;
display: flex; 
justify-content: center;
align-items: center;
  text-transform: initial;
  box-shadow: none !important;
  border-radius: 0px;
  padding: 0;
  overflow: visible;
	min-width: 30px;
    width: 30px;
    height: 30px;
	    line-height: 0;
}

.course-accordion .card .card-header .btn-header-link:after {
  content: "-";
  font-family: IcoFont;
  font-weight: 900;
  float: right;
  font-size: 30px;
}

.course-accordion .card .card-header .btn-header-link.collapsed {
  background: #fff;
/*   display: flex; */
}
.course-accordion .card .card-header .btn-header-link:focus {
	outline: 1px solid rgba(var(--primary-color));
}
.course-accordion .card .card-header .btn-header-link.collapsed:after {
  content: "+";
  font-family: IcoFont;
  padding-left: 5px;
  color: rgba(var(--primary-color));
}

.course-accordion .card .card-header .btn-header-link.collapsed h3 {
  color: rgba(var(--primary-color));
}

.course-accordion.card .collapse {
  border: 0;
}

.course-accordion .card .card-body {
  font-size: 1em;
  line-height: 22px;
  padding-top: 20px;
  padding-left: 30px;
  padding-bottom: 0;
  padding-right: 0;
}

.course-accordion .card .card-body p {
  font-size: 2rem;
  color: rgba(var(--primary-color));
  margin-bottom: 20px;
}

.tag-item {
  background-color: rgba(var(--secondary-color));
  color: rgba(var(--primary-color));
  font-size: 15px;
  letter-spacing: 1px;
  font-family: var(--primary-font-heading);
  text-transform: uppercase;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
  margin-right: 10px;
}

/* ======== right side filter section ========= */

.filter-accordion {
  overflow: hidden;
  padding: 0;
  margin-left: 0 !important;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
}

.filter-accordion li {
  list-style-type: none;
  padding: 0;
  margin-bottom: 15px !important;
}

.acc_ctrl {
  font-family: var(--primary-font-heading);
  font-size: 16px;
  color: rgba(var(--primary-color));
  letter-spacing: 1px;
  background: #ede8f0;
  border: none;
  border-bottom: solid 1px #f2f2f2;
  cursor: pointer;
  display: block;
  outline: none;
  padding: 13px 10px 13px 20px;
  position: relative;
  text-align: left;
  width: 100%;
  text-transform: uppercase;
}

.acc_ctrl:before {
  background: rgba(var(--primary-color));
  content: "";
  height: 2px;
  margin-right: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 14px;
}

.acc_ctrl:after {
  background: rgba(var(--primary-color));
  content: "";
  height: 2px;
  margin-right: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
}

.acc_ctrl.active-itm:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.acc_ctrl.active-itm span,
.acc_ctrl:focus span {
  position: relative;
}

/* .acc_ctrl:focus {
  outline: 1px dotted;
  outline: none;
} */

.acc_panel {
  display: none;
  overflow: hidden;
  margin-top: 10px;
  max-height: 265px;
  overflow-y: auto;
	position: relative;
}

.checkbox-style .form-group {
  display: block;
  margin-bottom: 5px !important;
  margin-left: 5px;
}

.checkbox-style .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
/*   display: none; */
	cursor: pointer;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.checkbox-style .form-group label {
  font-family: "Whitney";
  position: relative;
  cursor: pointer;
  color: var(--black-color);
  font-weight: 500;
  font-size: 1.6rem;
}

.checkbox-style .form-group label:before {
  content: "";
  background-color: transparent;
  border: 1px solid #85649d;
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  -webkit-appearance: none;
}

.checkbox-style .form-group input:checked + label::before {
  background-color: rgba(var(--primary-color));
}

.checkbox-style .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 7px;
  width: 7px;
  height: 12px;
  border: solid rgba(var(--secondary-color));
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-style .form-group input:focus + label:before, 
.checkbox-style .form-group input:focus-within + label:before {
	outline: 1px solid #49176d;
}

/* .chk-items {
  max-height: 190px;
  overflow-y: auto;
  overflow-x: hidden;
} */
.chk-items::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}

.chk-items::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #a9a7a9;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.radiobutton-style [type="radio"]:checked,
.radiobutton-style [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radiobutton-style [type="radio"]:checked + label,
.radiobutton-style [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 33px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--black-color);
}
.radiobutton-style [type="radio"]:checked + label:before,
.radiobutton-style [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background: rgba(var(--primary-color));
}
.radiobutton-style [type="radio"]:checked + label:after,
.radiobutton-style [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ffc425;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radiobutton-style [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.radiobutton-style [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.radiobutton-style .form-group {
  margin-bottom: 5px !important;
}
/* ======== Department Components style ========= */
.department-banner-top {
  margin-top: 100px;
  position: relative;
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.department-banner-top:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 285px;
  background-color: rgba(var(--primary-color), 0.8);
}
.department-banner-top .image-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  width: 50%;
  display: block;
}
.department-banner-top .full-img-content h2 {
  color: var(--white-color);
  text-transform: capitalize;
  background-color: rgba(var(--primary-color));
  padding: 20px 60px 45px 60px;
  display: inline-block;
  margin-bottom: 0;
  line-height: 84px;
}
.department-banner-top .full-img-content p {
  color: var(--black-color);
  padding: 30px 55px;
  background-color: rgba(var(--secondary-color));
  margin-left: 64px;
  margin-top: -24px;
  margin-bottom: 0;
  font-size: 2rem;
  position: relative;
}
.equal-height-column p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* Flexbox layout for equal-height columns */
.equal-height-container {
  display: flex;
}

.equal-height-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1; /* Make both columns take equal width */
  padding: 20px; /* Add some padding for design consistency */
}

.content-section {
  overflow: hidden; /* Content will be hidden if it overflows */
  flex-grow: 1; /* This allows the content section to take up remaining space naturally */
}

.button-section {
  margin-top: 20px; /* Ensure there's space between content and button */
}
.banner-bottom-bar {
  background-color: rgba(var(--primary-color));
  padding: 20px 0;
  border-top: 1px solid #ab94bc;
}
.banner-bottom-bar .filter-accordion {
  margin-top: 0 !important;
}
.banner-bottom-bar .filter-accordion .acc_ctrl {
  color: rgba(var(--secondary-color));
  background-color: transparent;
  border-bottom: none;
  padding: 0 !important;
}
.banner-bottom-bar .filter-accordion .acc_ctrl:after,
.banner-bottom-bar .filter-accordion .acc_ctrl:before {
  background: rgba(var(--secondary-color));
}
.banner-bottom-bar .filter-accordion .acc_ctrl img {
  margin-right: 15px;
}
.banner-bottom-bar .filter-accordion .acc_ctrl:focus {
	border: 1px solid rgba(var(--secondary-color)) !important;
}
.banner-bottom-bar .filter-accordion li {
  margin-bottom: 0 !important;
}
.left-brd-list-items {
  margin-left: 40px;
  margin-top: 20px;
  padding-bottom: 30px;
}
.left-brd-list-items li a {
  color: var(--white-color);
  font-weight: normal;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 8px 0 8px 1rem;
  border-left: 2px solid rgba(var(--secondary-color));
}
.left-brd-list-items li a:hover {
  color: #c7b7d2;
  text-decoration: none;
  border-left: 2px solid var(--white-color);
}
.feature-block {
  margin: 50px 0;
  padding: 40px;
}
.feature-block .product-card {
  margin-bottom: 0;
}
.feature-block .product-card .product-image img {
  height: 100%;
  object-position: top;
  position: absolute;
}

/* == hover image opacity == */

.hover-image-opacity {
  margin-bottom: 50px;
}
.box-link {
  text-decoration: none !important;
}
.hover-box-item-color1,
.hover-box-item-color2,
.hover-box-item-color3 {
  padding: 57px 40px;
  position: relative;
  z-index: 1;
}
.hover-box-item-color3 {
  padding: 57px 24px;
  height: 100%;
  display: flex;
  align-items: center;
}
.hover-box-item-color1 *,
.hover-box-item-color2 *,
.hover-box-item-color3 * {
  position: relative;
}
.hover-box-item-color1::before,
.hover-box-item-color2::before,
.hover-box-item-color3::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hover-box-item-color1::before {
  background: rgba(var(--primary-color));
}
.hover-box-item-color2::before {
  background: rgba(var(--secondary-color));
}
.hover-box-item-color3::before {
  background: #ede8f0;
}
.hover-box-item-color1:hover::before,
.hover-box-item-color2:hover::before,
.hover-box-item-color3:hover::before {
  opacity: 0;
}
.hover-box-item-color1 .hover-box-item-bg::before,
.hover-box-item-color2 .hover-box-item-bg::before,
.hover-box-item-color3 .hover-box-item-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hover-box-item-color1 .hover-box-item-bg::before {
  background: rgba(var(--primary-color), 0.9);
}
.hover-box-item-color2 .hover-box-item-bg::before {
  background: rgba(var(--secondary-color), 0.9);
}
.hover-box-item-color3 .hover-box-item-bg::before {
  background: rgba(237, 232, 240, 0.9);
}
.hover-box-item-color1 .hover-box-item-bg,
.hover-box-item-color2 .hover-box-item-bg,
.hover-box-item-color3 .hover-box-item-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.hover-box-item-color1 .hover-box-item-bg img,
.hover-box-item-color2 .hover-box-item-bg img,
.hover-box-item-color3 .hover-box-item-bg img {
  width: 100%;
}
.hover-box-item-color1 .item-title,
.hover-box-item-color2 .item-title,
.hover-box-item-color3 .item-title {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-box-item-color1 .item-title {
  color: rgba(var(--secondary-color));
}
.hover-box-item-color2 .item-title {
  color: var(--black-color);
}
.hover-box-item-color3 .item-title {
  color: var(--black-color);
}
.hover-box-item-color1 .item-name,
.hover-box-item-color2 .item-name,
.hover-box-item-color3 .item-name {
  font-family: "whitneysemibold";
  font-size: 2.4rem;
  font-weight: 500;
}
.hover-box-item-color1 .item-name {
  color: #fff;
}
.hover-box-item-color2 .item-name {
  color: rgba(var(--primary-color));
}
.hover-box-item-color3 .item-name {
  color: rgba(var(--primary-color));
}
.hover-box-item-color1 .right-arrow-box,
.hover-box-item-color2 .right-arrow-box {
  visibility: hidden;
  width: 28px;
  height: 100%;
  opacity: 1;
  position: absolute !important;
  top: 0px;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hover-box-item-color1 .right-arrow-box {
  background-color: rgba(var(--secondary-color));
}
.hover-box-item-color2 .right-arrow-box {
  background-color: rgba(var(--primary-color));
}
.hover-box-item-color2 .right-arrow-box i,
.hover-box-item-color2 .right-arrow-box em {
  color: var(--white-color);
}

.hover-box-item-color1:hover .right-arrow-box,
.hover-box-item-color2:hover .right-arrow-box {
  visibility: visible;
}
.right-arrow-box .fa-angle-right {
  font-size: 30px;
}

.source-area2 {
  margin-bottom: 50px;
}
.source-area2 .single-source .img-title-bg {
  background-color: rgba(var(--primary-color), 0.9);
}
.source-area2 .single-source:nth-of-type(2) .img-title-bg {
  background-color: rgba(var(--secondary-color), 0.9);
}
.source-area2 .single-source .source-img > a::before,
.source-area2 .single-source .source-img > .img-item::before {
  background: rgba(var(--primary-color)) none repeat scroll 0 0;
}
.source-area2 .single-source .source-details > .h3,
.source-area2 .single-source .source-details > p {
  color: var(--white-color);
}
.source-area2 .single-source:nth-of-type(2) .source-img > a::before,
.source-area2 .single-source:nth-of-type(2) .source-img > .img-item::before {
  background: rgba(var(--secondary-color)) none repeat scroll 0 0;
}
.source-area2 .single-source:nth-of-type(2) .source-details > .h3,
.source-area2 .single-source:nth-of-type(2) .source-details > p {
  color: var(--black-color);
}
.source-area2 .source-details p:nth-of-type(1) {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
  text-transform: initial;
}
.source-area2 .source-details a {
  color: #fff;
}

.source-area2 .source-details a.icon-link,
.source-area2 .source-details .icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(var(--secondary-color));
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.source-area2 .source-details a svg,
.source-area2 .source-details .icon-link svg {
  fill: rgba(var(--primary-color));
}

.source-area2 .single-source:nth-of-type(2) .source-details a.icon-link,
.source-area2 .single-source:nth-of-type(2) .source-details .icon-link {
  background: rgba(var(--primary-color));
}
.source-area2 .single-source:nth-of-type(2) .source-details a {
  color: #000;
  background-color: transparent;
}
.source-area2 .single-source:nth-of-type(2) .source-details a svg,
.source-area2 .single-source:nth-of-type(2) .source-details .icon-link svg {
  fill: rgba(var(--secondary-color));
}

.curriculum-section {
  margin-bottom: 50px;
}
.curriculum-section #accordion-section {
  margin-bottom: 0;
}
.curriculum-section
  #accordion-section
  .card
  .card-header
  .btn-header-link.collapsed {
  font-family: "whitneysemibold";
  color: rgba(var(--primary-color));
}
/* == course section style == */
.course-section {
  margin-bottom: 50px;
}
.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  color: var(--white-color);
  padding: 67px 30px 47px 30px;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%) 50%
    50%;
  min-height: 470px;
  text-decoration: none !important;
}
.info-box .info-tag {
  position: absolute;
  top: 50px;
  background-color: rgba(var(--secondary-color));
  color: rgba(var(--primary-color));
  font-size: 15px;
  letter-spacing: 1px;
  font-family: var(--primary-font-heading);
  text-transform: uppercase;
  padding: 2px 10px;
  display: inline-block;
}
.info-box-inner .info-content {
  height: 120px;
}

.info-box .heading-pre-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.info-box .heading-title {
  font-family: "whitneysemibold";
  color: var(--white-color);
  font-size: 30px;
  line-height: 40px;
  text-decoration: none !important;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  z-index: -1;
}

.hide-desktop {
  display: none;
}
.right-section .light-heading {
  border-bottom: 2px solid #e7e1ec;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.right-section-menu .light-title {
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-family: var(--primary-font-heading);
  font-size: 1.9rem;
}
.right-section .side-bar-list-item {
  margin-top: 0px;
  margin-bottom: 25px;
}
.right-section #nav-tabs {
  margin-bottom: 30px;
}
/* ==== form style ==== */
.form-control,
.qsm-page input[type="text"],
.page-template-flexible_template input[type="text"],
.page-template-flexible_template input[type="tel"],
.page-template-flexible_template input[type="email"],
.page-template-flexible_template textarea,
.page-template-flexible_template select {
  border: 1px solid #e1e8eb;
  padding: 25px 15px;
  background-color: #f6f8f9;
  border-radius: 12px;
  font-size: 1.8rem;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.red-color {
  color: #ee3524;
}
.qsm-page input[type="text"],
.page-template-flexible_template input[type="text"],
.page-template-flexible_template input[type="tel"],
.page-template-flexible_template input[type="email"],
.page-template-flexible_template textarea,
.page-template-flexible_template select {
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 20px;
}
.form-style .form-group {
  margin-bottom: 30px;
}
.qsm-btn,
.page-template-flexible_template input[type="submit"] {
  background: rgba(var(--secondary-color));
  color: var(--black-color);
  border: none;
  padding: 10px 20px;
  font-size: 1.6rem;
  text-transform: capitalize;
  font-weight: bold;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.qsm-pagination .border {
  border: none !important;
}
.form-label {
  font-size: 1.4rem;
  color: #5f606c;
  margin-bottom: 0;
}
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}
.form-style select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: url(/wp-content/uploads/2024/09/dropdown-icon.png) no-repeat right
    #f6f8f9;
  -webkit-appearance: none;
  background-position-x: 96%;
  height: auto;
  padding: 10px 15px;
}
/* ==== alert style ==== */
.alert-section {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  background: #d1002c;
  display: flex;
}
.alert-section .icon {
  text-align: center;
  width: 90px;
  height: 100%;
  position: absolute;
}
.alert-section .icon,
.alert-section .icon:after {
  background: #8a001d;
}
.alert-section .icon span {
  font-family: "whitneysemibold";
  font-size: 44px;
  color: #fff;
  /* Rotate from top left corner (not default) */
  position: absolute;
  top: 142px;
  left: 27px;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}
.alert-section .alert-content {
  padding: 30px 95px 30px 135px;
  width: 100%;
  min-height: 200px;
}
.alert-heading {
  font-family: "whitneysemibold";
  font-size: 22px;
  color: #fff;
}
.alert-section .alert-content p {
  font-family: "Whitney";
  font-size: 18px;
  color: #fff;
  padding-right: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.alert-close {
  background-color: #fff;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 25px;
  top: 13px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.alert-close em {
  color: #d1002c;
  font-size: 18px;
}
.alert-section .slider-arrow-icons {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
}
.alert-section .carousel-control-next-icon,
.alert-section .carousel-control-prev-icon {
  width: 16px;
  height: 15px;
}
.alert-section .carousel-control-next,
.alert-section .carousel-control-prev {
  position: initial;
  opacity: 1;
  display: block;
  top: -15px;
  width: fit-content;
}
/* .alert-section .carousel-control-prev::after {
  content: "/";
  font-size: 20px;
  font-weight: 100;
  margin-left: 5px;
} */
.alert-section .carousel-control-prev {
  right: 40px;
  left: initial;
}
.alert-section .carousel-control-next {
  right: 12px;
}
.alert-section .carousel-control-next-icon {
  background-image: url(/wp-content/uploads/2024/08/arrow-right-white.png);
}
.alert-section .carousel-control-prev-icon {
  background-image: url(/wp-content/uploads/2024/08/arrow-left-white.png);
}
.alert-section .carousel-control-prev:focus,
.alert-section .carousel-control-next:focus {
	border: 1px solid #fff;
}
.alert-section .arrow-divide {
	font-size: 20px;
    font-weight: 100;
    margin-left: 5px;
	margin-right: 5px;
	color: #fff;
}

.search-page-style .mb-5 {
  margin-bottom: 50px !important;
}
.search-page-style h2 {
	line-height: normal;
}
.search-page-style .content-block {
	margin-bottom: 20px;
}
.max-h-auto {
  max-height: initial;
}

.news-top-half-img {
  position: relative;
  padding: 50px 0;
}
.news-top-half-img .full-img-content {
  padding: 0 0 0 15px;
}
.news-top-half-img .full-img-content p {
	color: var(--black-color);
}
.full-img-content span {
  font-family: "whitneysemibold";
  font-size: 1.5rem;
  color: rgba(var(--primary-color));
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.news-item-section h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.news-item-section p {
  font-size: 1.8rem;
  color: #363535;
}
.next-prev-section {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
}
.next-prev-section a {
  font-family: var(--primary-font-heading);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.next-prev-section .prev-btn img {
  margin-right: 8px;
}
.next-prev-section .next-btn img {
  margin-left: 8px;
}
.next-prev-section .page-numbers.current {
  font-size: 1.6rem;
  color: rgba(var(--primary-color));
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(var(--primary-color));
  padding: 2px 7px;
  line-height: normal;
}
.next-prev-section .next {
  position: relative;
}
.next-prev-section .prev:before {
/*   content: url(/wp-content/uploads/2024/09/prev-icon.png); */
  padding-right: 8px;
  position: relative;
  top: 1px;
}
.next-prev-section .next:after {
/*   content: url(/wp-content/uploads/2024/08/next-icon.png); */
  padding-left: 8px;
  position: relative;
  top: 1px;
}
.right-section .form-control {
  font-family: "whitneysemibold";
  border: 2px solid #ede8f0;
  background-color: transparent;
  color: var(--black-color);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.input-box .search-btn {
  position: absolute;
  top: 10px;
  left: 12px;
}
.input-box .form-control {
  padding-left: 35px;
}

.right-section .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "whitneysemibold";
  color: var(--black-color);
}
.right-section .form-control::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "whitneysemibold";
  color: var(--black-color);
}
.right-section .form-control:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "whitneysemibold";
  color: var(--black-color);
}
.right-section .form-control:-moz-placeholder {
  /* Firefox 18- */
  font-family: "whitneysemibold";
  color: var(--black-color);
}
.news-details-heading {
  font-size: 5rem !important;
/*   line-height: 60px; */
}
.small-line {
  width: 80px;
  height: 2px;
  background-color: #ede8f0;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* === staff directory page style === */
.top-search-section .select-dropdown {
  background-color: #fff;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(/wp-content/uploads/2024/09/dropdown-icon-2.png) no-repeat
    right #f6f8f9;
  -webkit-appearance: none;
  background-position-x: 96%;
}
.top-search-section label {
  font-family: "whitneysemibold";
  color: rgba(var(--primary-color));
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.alphabet-line {
  display: flex;
  align-items: center;
}
.all-link {
  margin-right: 20px;
}
.alphabet-line .all-link a {
  font-weight: 500;
  color: var(--black-color) !important;
  border-bottom: 2px solid #fff;
  text-decoration: none !important;
}
.alphabetNav {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: wrap row;
  padding: 0.5rem;
}

.alphabetNav a {
  padding: 3px 8px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  color: var(--black-color);
  /* border-right: 1px solid rgba(var(--primary-color), 0.25); */
  position: relative;
  width: 28px;
}

.alphabetNav a:hover {
  background: var(--white-color);
  color: var(--black-color);
}
.alphabetNav a::after {
  content: " ";
  position: absolute;
  right: -8px;
  top: 0px;
  color: rgba(var(--primary-color), 0.25);
  width: 1px;
  height: 25px;
  background-color: rgba(var(--primary-color), 0.25);
}
.alphabetNav a:last-child:after {
  display: none;
}
.alphabetNav .active {
  background: var(--white-color);
}
.alphabetNav span {
  color: rgba(var(--primary-color), 0.25);
}
.contact-section {
  margin-bottom: 50px;
  border-left: 2px solid #ede8f0;
  padding-left: 20px;
  padding-bottom: 10px;
}
.contact-section i {
  width: 26px;
  font-size: 1.6rem;
  color: rgba(var(--secondary-color));
}
.contact-section i.fa.fa-mobile {
   font-size: 2.5rem;
}
.contact-section p {
  font-size: 1.8rem;
}
.contact-section span,
.contact-section a {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--primary-font);
  color: var(--black-color);
}
.contact-section a {
  text-decoration: underline;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .input {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 35px;
  height: 35px;
  max-width: 100%;
  padding: 1px 7px;
  border: 2px solid #e4e4e4;
  font-family: "whitneysemibold";
  text-align: center;
  margin-right: 10px;
  color: var(--black-color);
  font-size: 1.6rem;
}
.pagination .button {
  background-color: rgba(var(--secondary-color));
  width: 36px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .button.prev {
  margin-right: 15px;
}
.pagination .button.next {
  margin-left: 15px;
}
.pagination .pagination-text {
  font-family: "whitneysemibold";
  color: var(--black-color);
  font-size: 1.6rem;
  text-transform: uppercase;
}
.pagination .page-link {
  background-color: transparent;
  border: none;
}
.pagination .button img {
  height: auto;
  width: auto;
  margin-top: -5px;
}
/* ==== about page style ==== */
.about-page .bg-section-blue h1 {
  color: #fff;
}
.about-page {
  height: auto;
}
.about-page .searchform {
  display: none;
}
.two-column-large-text {
  margin-bottom: 30px;
}
.two-column-large-text p {
  color: rgba(var(--primary-color));
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 33px;
  column-count: 2;
  column-gap: 50px;
}
.about-bottom-section {
  padding: 130px 0;
}
.about-search .search-form-submit {
  display: none;
}
.image-with-txt-bg {
  margin-bottom: 50px;
}
.image-with-txt-bg img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
.image-with-txt-bg .content-bg {
  padding: 30px 25px;
}
.image-with-txt-bg .content-bg p {
  color: var(--black-color);
  margin-bottom: 60px;
}
.image-with-txt-bg .content-wrapper {
  background-color: #f8f6f9;
  height: 100%;
  position: relative;
}
.image-with-txt-bg .content-wrapper .cta-link {
  position: absolute;
  left: 25px;
  bottom: 30px;
}

.about-img-text .content-bg .content-section {
  margin-bottom: 60px;
}
.about-img-text .content-bg .content-section p {
  margin-bottom: 20px;
}
.about-middle-section {
  margin-bottom: 50px;
}
.about-middle-section .bg-image-wrap-item {
  right: 0;
  left: auto;
  width: 44%;
}
.about-middle-section .full-img-content {
  padding-left: 0;
}
.menu-list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.menu-list .text-item {
  font-family: inherit;
  text-align: left;
  padding: 2px 0;
  padding-right: 20px;
  display: inline;
  background: rgba(var(--primary-color));
  font-size: 2rem;
  color: #fff;
  text-transform: initial;
  margin-bottom: 0;
}
.menu-list .number {
  font-family: inherit;
  padding-left: 20px;
  margin: 5px 0;
  background: rgba(var(--primary-color));
  font-size: 2rem;
  color: #fff;
  text-transform: initial;
}
.menu-list .line-bg {
  border-top: solid 1px #fff;
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  z-index: -1;
}
.primary-bg-color2 {
  background: rgba(var(--primary-color));
}

.bg-section-yellow2::after {
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  background: rgba(var(--secondary-color));
  z-index: -1;
}
.bg-section-yellow2 {
	margin-top: -96px;
}
.bg-section-yellow2 .h4 {
  padding: 20px 0 20px 30px;
  color: var(--black-color);
}
.bg-section-blue {
/*   top: 390px; */
	margin-top: -119px;
}
.bg-section-blue::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  padding: 30px;
  background: rgba(var(--primary-color));
}
.bg-section-blue h2,
.bg-section-blue h1 {
  padding: 50px 0px;
  z-index: 1;
  margin: 0;
  background-color: transparent;
  color: #fff;
}
.slide-box-content {
  margin-bottom: 50px;
}
.slide-box-content .acc_ctrl {
  font-size: 3.6rem;
  text-align: left;
  background: transparent;
  border: none;
  text-transform: initial;
  padding-left: 0;
}
.slide-box-content .acc_panel p {
  font-size: 2rem;
  color: rgba(var(--primary-color));
  margin-bottom: 0;
}
/* ==== carousel ==== */
.ag-carousel-arrow_box {
  white-space: nowrap;
  display: flex;
}

.ag-carousel_box {
  margin: 0 -6% 0 calc(50% - 595px);
  position: relative;
}

.ag-carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  border: 1px solid #49176d;
  background-color: #49176d;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  position: relative;
}
.ag-carousel-arrow:hover {
  border: 1px solid #49176d;
  background-color: #49176d;
}
.js-ag-carousel-arrow_prev {
  margin: 0 12px 0 0;
}
.js-ag-carousel-arrow_prev:hover,
.js-ag-carousel-arrow_next:hover {
  stroke: #000;
}
.svg-arrow-left,
.svg-arrow-right {
  height: 18px;
  width: 10px;
  margin: -8px 0 0 -5px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.ag-carousel_item {
  padding: 0 0px 0 0;
}

.ag-carousel_info {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  min-height: 270px;
  padding: 10px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.ag-carousel_info h3 {
  margin-top: 10px;
  font-size: 2.4rem;
}
.ag-carousel-arrow_box .js-play-pause-btn {
	padding: 5px;
	margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .video-gallery-section {
    margin-bottom: 20px;
  }
  .video-gallery-section iframe {
    max-width: fit-content;
    height: auto;
  }
	.bg-section-blue h1 {
		font-size: 5.6rem;
	}
  .bg-section-blue {
    top: 0;
	margin-top: 0;
  }
	.bg-section-blue::after,
	.bg-section-yellow2::after {
		width: 100%;
	}
	.bg-section-yellow2 {
     margin-top: 0px; 
}
	.bg-section-yellow2 .h4 {
		padding-left: 0;
	}
}
@media only screen and (max-width: 767px) {
	iframe {		
 		height: auto;
	}
  .department-page {
    padding: 0 !important;
  }
  .error-page-section {
    padding-top: 70px !important;
  }
  .alert-section .carousel-control-next,
  .alert-section .carousel-control-prev {
    top: -30px;
  }
  .inner-banner-bg,
  .inner-full-page-top-section {
    height: auto;
  }
  .top-menu-section {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .top-menu-section .menu-section {
    margin-top: 20px;
  }
  .slide-menu-area .ptb-30 {
    padding: 10px 0;
  }
  .slide-menu-area .menu-section ul {
    display: flex;
    flex-wrap: wrap;
  }
  .slide-menu-area .menu-section ul li {
    padding: 0 37px 15px 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 112px;
    text-align: left !important;
  }
  .top-menu-section .menu-close-icon {
    position: absolute;
    right: 0;
    top: 30px;
  }
  .slide-menu-area .ptb-20 {
    padding-bottom: 10px;
  }
  .ag-format-container {
    width: 90%;
  }

  .ag-lesson-block {
    padding-bottom: 0;
  }
  .ag-lesson_box {
    padding: 0 0 30px;
  }

  .ag-carousel_box {
    width: 90%;
    margin: 0 auto;
  }
  .ag-carousel_list {
    margin: 0;
  }
  .ag-carousel_item {
    padding: 0;
  }
  .source-area-mobile {
    display: block;
  }
  .source-desktop {
    display: none;
  }
  .news-section .news-heading {
    display: block !important;
  }
  .equal-height-container .equal-height-column {
    flex: none;
  }
	
  .two-column-large-text p {
    column-count: auto;
  }
  .bg-section-yellow2::after {
    width: 100%;
  }
  .bg-section-yellow2 .h4 {
    padding: 20px 0 20px 0px;
  }
  .about-bottom-section {
    padding: 50px 0;
  }
  .feature-block .product-card .product-image img {
    height: 320px;
    position: initial;
  }

  .all-news-page img {
    margin-bottom: 10px;
    height: 210px;
    width: 100%;
  }
  .video-gallery-section iframe {
    max-width: fit-content;
    height: auto;
  }
}

@media only screen and (max-width: 639px) {
  .ag-lesson_box {
    padding: 0 0 27px;
  }

  .ag-carousel_info {
    padding: 30px 20px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 750px;
  }

  .ag-lesson_box {
    padding: 0 0 30px;
  }

  .ag-carousel_box {
    width: 750px;
    margin: 0 auto;
  }
  .ag-carousel_list {
    margin: 0 -26px 0 0;
  }
}

@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }

  .ag-carousel_box {
    width: 960px;
    margin: 0 auto;
  }
  .ag-carousel_list {
    margin: 0 -26px 0 0;
  }
}
/* ========= slick slider ========= */
.hover-left-slide-image {
  margin-bottom: 50px;
}
.hover-left-slide-image a:hover {
  text-decoration: none;
}
.hover-image-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 210px;
  background-color: #e7e1ec;
  text-align: left;
}
.hover-image-section * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.hover-image-section img {
  max-width: 100%;
  vertical-align: top;
  position: relative;
}
.hover-image-section img {
  position: absolute;
  right: -78%;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.hover-image-section .behind-content {
  background-color: #e7e1ec;
  width: 100%;
  height: 100%;
  padding: 40px 100px 30px 25px;
}
.hover-image-section .behind-content h4,
.hover-image-section .behind-content p {
  margin: 0 0 0px;
  text-decoration: none;
}
.hover-image-section .behind-content h4 {
  font-family: var(--primary-font-heading);
  font-size: 2.4rem;
  color: var(--black-color);
  font-weight: 400;
  margin-bottom: 10px;
}
.hover-image-section .behind-content p {
  color: rgba(var(--primary-color));
  line-height: 25px;
  font-size: 1.8rem;
}
.hover-image-section a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
.hover-image-section:hover img,
.hover-image-section.hover img {
  transform: translateX(-78%);
  -webkit-transform: translateX(-78%);
}

.news-details-page .alignright {
  float: right;
  margin: 5px 0 20px 20px;
  width: auto;
}
.news-details-page .alignright img {
  width: auto;
  margin-left: 0;
}
.news-details-page .alignright p {
  margin-left: 20px;
}

.news-details-page .wp-caption.alignright p {
  margin-bottom: 0;
}

.address-section a {
  font-size: 1.8rem;
}
.address-section p {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}
.right-section .right-menu-content .accordion {
  margin-left: 15px !important;
}
.img-block-full img {
  height: 560px;
  width: 100%;
  margin-bottom: 0px;
}

.list-pages-section .alphabetical-list {
  padding: 0;
}

.list-pages-section .h3 {
  margin-top: 20px;
  font-size: 32px;
  color: #333;
  margin-bottom: 5px;
}

.list-pages-section ul {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
}

.list-pages-section li {
  padding: 2px 0;
  list-style: disc;
  margin-left: 20px;
  page-break-inside: avoid;
  break-inside: avoid-column;
}

.list-pages-section .letter-section {
  border-bottom: 2px solid #e7e1ec;
  padding-bottom: 30px;
}

.list-pages-section li a {
  font-family: "Whitney";
  color: rgba(var(--primary-color));
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.list-pages-section li a:hover {
  text-decoration: underline;
}
.az-index-alphabet {
  margin: 30px 0;
  text-align: center;
}
.az-index-alphabet li {
  list-style: none;
  display: inline;
  margin-left: 0;
}
.az-index-alphabet li a {
  border: 2px solid #e7e1ec;
  padding: 5px;
  margin-left: 0;
  line-height: 15px;
  min-width: 30px;
  display: inline-block;
}
nav.navigation.pagination {
  margin-bottom: 50px;
}
#suggestions-box {
  width: 100% !important;
}

.tribe-events-event-meta {
  display: block !important;
}
.tribe-events-meta-group {
  width: 100% !important;
}
.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
  padding: 11px 0 !important;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown,
.tribe-events .tribe-events-c-subscribe-dropdown {
  margin: 0 !important;
}

/* style for cross */
.search-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.searchInput {
  width: 100%;
  padding-right: 30px;
}
.clear-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) !important;
  cursor: pointer;
  font-size: 18px;
  color: #49176d;
  visibility: hidden;
}
.clear-btn.visible {
  visibility: visible;
}
.clear-btn:hover {
  color: #333;
}
.search-input-box .input-field {
	margin-bottom: 0 !important;
}

.news-details-page h2 {
	line-height: normal;
}
/* ============================== Site Footer Style ============================== */

footer {
  background-color: rgba(var(--primary-color));
  background: linear-gradient(90.28deg, #34104d -36.87%, #49176d 81.49%);
  padding: 80px 0 40px 0;
}

.footer-address img {
  margin-bottom: 30px;
}

.footer-address p {
  margin-bottom: 15px !important;
  font-size: 1.6rem;
  color: var(--white-color) !important;
}

.footer-address p a {
  color: var(--white-color) !important;
  font-weight: 500;
}

footer .social-content {
  margin-top: 30px;
  margin-bottom: 30px;
}

footer .social a {
  display: inline-block;
  text-align: center;
  margin-right: 18px;
  color: var(--white-color);
  text-decoration: none;
  word-wrap: break-word;
  transition: all 0.3s ease;
  font-size: 1.8rem;
}

footer .social a:hover em {
  color: rgba(var(--secondary-color));
}

footer .quick-link {
  column-count: 2;
  margin-top: 0;
}

footer .quick-link li {
  margin-bottom: 25px;
  line-height: initial;
  list-style: none;
}

footer .quick-link li a {
  font-family: var(--primary-font-heading);
  color: var(--white-color);
  font-size: 1.8rem;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: initial;
}

footer .quick-link li a:hover {
  color: rgba(var(--secondary-color));
}

footer h3 {
  color: var(--white-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

footer .support-section p {
  margin-bottom: 15px !important;
  font-size: 1.6rem;
  color: var(--white-color) !important;
  margin-bottom: 25px !important;
}

.bottom-footer p {
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: 300;
}

.bottom-footer-links a {
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  margin-right: 15px;
}

.bottom-footer-links a:hover {
  text-decoration: underline;
}

#go-top-btn {
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 85px;
  right: 18px;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  cursor: pointer;
}

#go-top-btn.show-btn {
  opacity: 1;
  visibility: visible;
}
.slider-hero-home .swiper-navigation .swiper-button-prev::before {
  border-top: 1rem solid transparent !important;
  border-bottom: 1rem solid transparent !important;
  border-right: 1rem solid #fff !important;
}
.slider-hero-home .swiper-navigation .swiper-button-next::before {
  border-top: 1rem solid transparent !important;
  border-bottom: 1rem solid transparent !important;
  border-left: 1rem solid #fff !important;
}
.slider-hero-home-item .hero-home-item {
  background-color: rgb(21 21 21 / 40%);
  /* z-index: -1; */
}

#suggestions-box {
  z-index: 9999;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
}

#suggestions-box a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

#suggestions-box a:hover {
  background-color: #f0f0f0;
}

/* for multiple images in post */

.content-image-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Ensures vertical alignment */
  margin-bottom: 20px;
}

.content-left {
  flex: 1;
  margin-right: 20px;
}

.image-right {
  flex-shrink: 0;
}

.image-right img {
  max-width: 100%;
  height: auto;
}

#suggestions-box {
  width: 215px;
}
#suggestions-box a {
  font-size: 16px;
}

/* ==== news details table responsive ==== */

.news-details-page table {
  width: 100% !important;
  border-collapse: collapse;
}

.news-details-page table td {
  padding-left: 0px !important;
  vertical-align: top;
  border: none !important;
  background-color: transparent !important;
}
.news-details-page .post-table-style table td,
.news-details-page .wpDataTables table td {
  padding: 15px !important;
}

.news-details-page .post-table-style .row,
.news-details-page .wpDataTables.row {
  margin-right: 0;
  margin-left: 0;
}
.news-details-page .wpDataTables {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/*.news-details-page table td:nth-of-type(1) {
  width: 70%;
}
.news-details-page table td:nth-of-type(2) {
  width: 30%;
}  */

.news-details-page table img {
  max-width: 100%;
  height: auto;
  float: none;
}
section.no-results.not-found {
  padding-top: 130px;
  padding-bottom: 37px;
  max-width: 1210px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
h1.page-title {
  font-size: 48px;
}
.heading2withimage, 
.heading3withimage, 
.heading6withimage {
	margin-bottom: 30px;
}
.heading3withimage .alignleft, 
.heading3withimage img,
.heading6withimage .alignleft, 
.heading6withimage img,
.heading2withimage img,
.heading2withimage .alignleft {
	float: left;
    margin-right: 20px;
	/*width: 300px;
    height: 220px;*/
}
.heading3withimage::after,.heading2withimage::after,.heading6withimage::after {
    content: "";
    display: table;
    clear: both;
}
.heading6withimage .alignright,
.heading3withimage .alignright,
.heading2withimage .alignright {
	float: right;
	margin-left: 20px;
/* 	width: 300px;
    height: 220px; */
}
.heading6withimage .aligncenter,
.heading3withimage .aligncenter,
.heading2withimage .aligncenter {
	float: none;
    margin: 0 auto;
}
.factoids-section img {
	float: left;
    margin-right: 20px;
/* 	width: 150px;
    height: 110px;; */
}
.factoids-section .alignright {
	float: right;
	margin-left: 20px;
/* 	width: 150px;
    height: 110px; */
}
.factoids-section img::after {
	content: "";
    display: table;
    clear: both;
}

.factoids-section::after {
      content: "";
      display: table;
      clear: both;
    }
.factoids-section .light-yellow-bg {
	overflow: hidden;
}

/* ============================== Media Query =============================== */

/* @media (min-width: 1601px) and (max-width: 1920px) {
	.home-banner-bg #myVideo {
		height: 100%;
	}
}*/
@media (min-width: 992px) and (max-width: 1199px) {
  .home-banner-bg h1 {
    font-size: 88px;
    line-height: 103px;
    margin-top: 460px;
  }
  .number-left-img {
    width: 35.7%;
  }
  .card-item {
    width: 335px;
  }
  .address-section a {
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .inner-banner-bg {
    min-height: auto;
    position: relative;
    padding: 130px;
  }
  .home-banner-bg #myVideo {
    height: 100%;
    z-index: auto;
  }
  .btn {
    padding: 10px 12px;
  }
  .home-banner-bg h1 {
    font-size: 120px;
    line-height: 110px;
    margin-top: 520px;
  }
  .director-area h3 {
    font-size: 3rem;
  }
  .bg-section-yellow::after {
    content: "";
    float: left;
    height: 55%;
  }
  .slider-section .carousel-caption {
    padding-right: 0;
  }
  .slider-section .carousel-caption h2 {
    color: var(--white-color);
    font-size: 4rem;
    line-height: 50px;
  }
  .number-left-img {
    width: 36.3%;
  }
  .number-spacing {
    padding: 50px 30px 50px 30px;
  }

  footer .quick-link li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .inner-full-page-top-section {
    padding-bottom: 0;
  }
  .inner-full-page-top-section h1 {
    font-size: 5rem;
    margin-left: 0;
    margin-right: 0;
    line-height: 60px;
  }
  .menu-content .h3 {
    font-size: 3rem;
  }
  .slide-menu-area .menu-section ul li {
    margin: 0 20px;
    text-align: center;
    line-height: 22px;
  }
  .inner-page-top-section:before {
    width: 153px;
  }
  .inner-top {
    padding-left: 170px;
  }
  .inner-heading-padding h2 {
    padding-right: 0;
    line-height: 70px;
  }
  .department-banner-top .full-img-content p {
    margin-right: 30px;
  }
  .department-page h1 {
    font-size: 6rem;
    margin-left: 0;
    margin-right: 0;
  }
  .department-page {
    padding: 25px 0 50px 0;
  }
  .calendar-section .cal-items .d-flex {
    display: block !important;
    padding-bottom: 10px !important;
  }
  .calendar-section .cal-items .date-item {
    text-align: left !important;
    text-align: left !important;
    display: flex;
    align-items: baseline;
  }
  .calendar-section .cal-items .date-item .month {
    font-weight: 600;
    margin-right: 5px;
  }
  .calendar-section .cal-items .date-item .month,
  .calendar-section .cal-items .date-item .date {
    font-size: 2rem;
  }

  .calendar-section .cal-items .d-flex .ml-5 {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .left-content-section {
    padding-right: 0px;
  }
  .right-section {
    margin-bottom: 30px;
  }
  .department-banner-top .full-img-content h2 {
    padding: 20px 20px 40px 20px;
    line-height: normal;
  }
  .calendar-section .cal-items {
    display: flex;
  }
  .calendar-section .cal-gap {
    margin-top: 40px;
    margin-left: 0;
    border-left: none;
    border-top: 1px solid #fff;
    padding-left: 0px;
    padding-top: 30px;
    display: block;
  }
  .number-spacing h3 {
    font-size: 6rem;
  }
  .number-para {
    padding-right: 30px;
  }
  .number-detail-2 {
    max-width: 50%;
  }
  footer .hr-line {
    display: none;
  }
  .bottom-footer p {
    margin-bottom: 10px !important;
  }
  .director-area h3 {
    padding-right: 0;
    font-size: 5rem;
  }
  .right-section.right-links-click .light-heading::after,
  .right-section .right-dropdown-arrow-click.light-heading::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 800;
    padding-left: 5px;
    color: rgba(var(--primary-color));
  }
  .right-section.right-links-click.arrow-up-down .light-heading::after,
  .right-section
    .right-dropdown-arrow-click.arrow-up-down.light-heading::after {
    content: "\f106";
    color: rgba(var(--primary-color));
  }
  .right-section .light-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .about-bottom-section {
    padding: 60px 0;
  }
  .full-half-img-cta-section .full-img-content {
    padding: 0 0 0 15px;
  }
  .department-page h1 {
    font-size: 4rem;
    margin-left: 0;
    margin-right: 0;
    line-height: 56px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  footer .quick-link {
    border-top: 1px solid #7d7d7d;
    padding: 30px 0 20px;
    column-count: 5;
  }
  footer .quick-link li {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .search-icon,
  .hamburger-menu {
    padding: 20px 22px;
  }
  h2,
  .h2 {
    font-size: 7rem;
  }
  h3,
  .h3 {
    font-size: 6rem;
  }
  .home-banner-bg #myVideo {
    height: 100%;
    z-index: auto;
  }
  .apply-btn-content {
    position: initial;
  }
  .inner-page-top-section:before {
    width: 50px;
  }
  .inner-top {
    padding-left: 50px;
  }

  .source-area .source-img img {
    width: 100%;
  }

  .news-section .upcoming-event-wrapper {
    margin-bottom: 30px;
  }

  .box-border-img .product-card-wrapper {
    padding-left: 20px;
  }

  .search-content {
    display: block;
  }
  .searchInputWrapper {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .inner-top h1 {
    font-size: 6rem;
  }
  .inner-banner-bg {
    min-height: auto;
    position: relative;
    padding: 85px;
  }
  .logo-section {
    width: 220px;
  }
  .hamburger-menu {
    padding-left: 10px;
  }
  .slide-bottom-section {
    flex-direction: column;
  }
  .alert-close {
    right: 6px;
    top: 8px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: normal;
	word-break: break-word;
  }
  h2,
  .h2 {
    font-size: 6rem;
  }
  h3,
  .h3 {
    font-size: 5rem;
  }
  h4,
  .h4 {
    font-size: 3rem;
  }
  h5,
  .h5 {
    font-size: 2rem;
  }
  h6,
  .h6 {
    font-size: 1.7rem;
  }
  .inner-page-style h2 {
    line-height: normal;
  }
  .ptb-80,
  .ptb-60 {
    padding: 30px 0;
  }
  .pb-30 {
    padding-bottom: 30px;
  }
  .layout-t-pd {
    padding-top: 30px;
  }
  .home-banner-bg h1 {
    font-size: 80px;
    line-height: 90px;
  }

  .slider-section .carousel-caption {
    padding: 0 20px;
    right: 0%;
    left: 6%;
    bottom: initial;
    top: 30%;
  }

  .slider-section .carousel-caption h2 {
    font-size: 2.5rem;
    line-height: 35px;
  }

  .slider-section .carousel .carousel-inner img {
/*     min-height: 100vh; */
  }
  .slider-section .carousel-control-prev {
    bottom: 0;
  }
  .slider-section .carousel-control-next {
    bottom: 70px;
  }
  .bg-section-yellow::after {
    display: none;
  }
  .director-area {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .bg-yellow-quote {
    background: rgba(var(--secondary-color));
    margin-bottom: 30px;
  }

  .director-area .director-bottom-txt p {
    margin-top: 20px;
  }

  .director-area .yellow-box-content {
    padding: 20px;
    background: rgba(var(--secondary-color));
  }

  .director-area h3 {
    font-size: 5rem;
    text-align: center;
    margin-top: 20px;
  }

  .number-spacing, .number-detail-2 .number-spacing2 {
    padding: 30px;
  }
  .number-area h2,
  .calendar-section h2 {
    font-size: 4.5rem;
    margin-bottom: 30px;
  }

  .number-area h2 {
    text-align: center;
  }

  .number-area .img-80 img {
    max-width: 100%;
    height: 100%;
  }
  .number-big-img {
    display: none !important;
  }
  .number-img,
  .number-detail-holder {
    width: 100%;
  }

  .number-detail-2,
  .number-detail {
    max-width: 100%;
  }

  .number-para {
    padding-left: 30px;
    padding-right: 30px;
  }
  .number-para {
    text-align: center;
  }
  .number-area .bttom-section {
    display: flex;
  }
  .source-area h3,
  .source-area .col-md-5 p {
    text-align: center;
    margin-bottom: 20px !important;
  }
  .calendar-section .cal-gap {
    display: block;
  }
  .calendar-section {
    padding-bottom: 40px;
  }
  .scroll-btn-section .text-center {
    display: flex;
    flex-direction: column;
  }

  .scroll-btn-section .text-center .btn {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .source-area .source-area-items,
  .photo-block-2-column .source-area-items,
  .photo-block-3-column .source-area-items {
    display: flex;
    flex-direction: row;
    flex-direction: column;
  }
  .photo-block-3-column .single-source {
    margin-right: 0px;
    width: 100%;
  }

  .source-area .single-source {
    margin-bottom: 20px;
  }

  .calendar-section .column {
    margin-bottom: 40px;
  }

  .staff-contact-section .p-5 {
    padding: 10px !important;
  }
  .photo-block-2-column .single-source,
  .photo-block-3-column .single-source {
    width: 100%;
    margin-bottom: 20px;
  }
  .bg-image-wrap-item {
    display: none;
  }
  .full-half-img-cta-section .full-img-content {
    padding-left: 0;
  }
  .cascade-slider_arrow {
    top: 68px;
    height: 50%;
    width: 30px;
  }
  .card-item {
    width: 350px;
  }
  .news-section p {
    margin-bottom: 20px;
  }
  .news-section .upcoming-event-meta {
    position: initial;
    bottom: 0;
  }
  .check-listed li,
  .quick-listed li {
    width: 100%;
  }
  .photo-block-2-column .img-title-bg {
    text-align: left;
  }

  .heading-two-column-text p,
  .two-column-para p {
    column-count: auto;
  }

  .staff-contact-section img {
    width: 100%;
  }
  .product-card .product-card-wrapper {
    padding: 20px;
  }
  .social-media-section a {
    width: 100%;
  }
  .factoids-section .d-flex {
    display: block !important;
  }
  .factoids-section .factoids-left-section,
  .factoids-section .factoids-right-section {
    width: 100%;
  }
  .factoids-section .factoids-heading {
    font-size: 1.6rem;
  }
  .image-and-text-section img {
    margin-bottom: 10px;
    width: auto;
    height: 290px;
  }
  .hide-mobile {
    display: none;
  }
  .hide-desktop {
    display: block;
  }
  .director-bottom-txt p {
    text-align: center;
  }
  .btn-section {
    margin-bottom: 20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .btn-section .btn {
    margin-bottom: 15px;
  }
  .full-banner-content {
    margin-top: 0;
  }
  .inner-full-page-top-section .col-md-12 {
    padding: 0;
  }
  .inner-full-page-top-section {
    background-color: #49176d;
    background-image: none !important;
    margin-top: 100px;
    min-height: auto;
  }
  .inner-full-page-top-section h1 {
    margin-left: 0;
    display: block;
    font-size: 4rem;
    margin-right: 0;
    padding: 50px 20px 20px 20px;
    line-height: normal;
  }
  .full-banner-content p {
    margin-left: 0px;
    margin-top: 0;
    padding: 20px 20px;
  }
  .testimonial-section .carousel .carousel-control {
    display: none;
  }

  .testimonial-section .carousel .testimonial-content {
    padding: 0 40px;
  }
  .testimonial-section .carousel .carousel-indicators {
    display: flex;
  }
  .testimonial-section .carousel {
    padding-bottom: 20px;
  }
  .cta-banner {
    margin-bottom: 25px;
  }
  .cta-banner-btn {
    padding: 20px 15px;
  }
  .cta-banner .p-5 {
    padding-right: 100px !important;
  }
  .check-list-section,
  .quick-list-section,
  #accordion-section {
    margin-bottom: 30px;
  }
  .news-top-half-img .full-img-content {
    padding: 0 0 0 60px;
  }
  .news-item-section img {
    margin-bottom: 10px;
  }
  .news-item-section .hr-line {
    margin: 30px 0;
  }
  .news-details-page .wp-caption.alignright {
    float: none;
    margin-left: 0;
  }
  footer .quick-link {
    margin: 10px 0;
  }
  footer {
    padding: 40px 0;
  }
  footer .social-content {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  footer .support-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #7d7d7d;
    padding-bottom: 30px;
  }
  .support-section .btn {
    width: 100%;
  }

  #go-top-btn {
    bottom: 40px;
  }

  /* alert style */
  .alert-section .alert-content {
    padding: 40px 20px 30px 110px;
  }
  .alert-section .alert-content p {
    padding-right: 15px;
  }
  .alert-section .carousel-inner {
    padding-top: 30px;
  }
  .alert-section .carousel-control-prev {
    left: 0;
  }
  .alert-section .carousel-control-next {
    left: 35px;
  }
  .feature-block {
    padding: 30px 10px;
  }

  .news-details-page p img,
  .news-details-page figure {
    float: none;
    margin-left: 0;
  }
  .news-details-page figure {
    margin-bottom: 80px;
  }
  .img-block-full img,
  .img-block-half img {
    height: auto;
    width: 100%;
  }
  .full-half-img-cta-section .h2 {
    font-size: 4rem;
  }

  .list-pages-section ul {
    -webkit-column-count: initial;
  }
	.heading6withimage .alignleft,
	.heading3withimage .alignleft, 
	.heading2withimage .alignleft {
		  float: none;
		  margin-right: 0;
		  width: 100%;
	}
	.heading6withimage .alignright,
	.heading3withimage .alignright,
	.heading2withimage .alignright {
		float: none;
        margin-right: 0px;       
		width: 100%;
        margin-left: 0;
		margin-bottom:10px;
	}
	.factoids-section img {
		float: none;
		margin-right: 0px;
		width: 100%;
        height: auto;
	}
	.factoids-section .alignright {
		float: none;
		margin-left: 0px;
		width: 100%;
        height: auto;
	}
	.two-col-right-img figure {
		float: none;
		margin-left: 0;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
}
@media (max-width: 575px) {
  .header-a-z-section {
    padding: 20px 8px;
  }
  .header-a-z-section a {
    font-size: 14px;
  }
  h2,
  .h2,
  .inner-top h1 {
    font-size: 3.2rem;
  }
  h3,
  .h3 {
    font-size: 4rem;
  }
  .social-media-section {
    column-count: auto;
  }
  .tech-section .tech-row .tech-stack ul li a {
    padding-right: 25px;
  }
  .apply-btn-content .primary-btn {
    margin-bottom: 10px;
  }
  .gallery-content2 .col-12.col-sm-6.col-md-4.col-lg-3,
  .gallery-content .col-12.col-sm-6.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .photo-gallery-section img {
    height: auto;
  }
  .search-icon {
    padding-left: 10px;
    padding-right: 10px;
  }
  .search-section .search-icon span {
    display: none;
  }
  .staff-contact-section {
    flex-direction: column;
  }
  .staff-contact-section .staff-lft-content {
    width: 100%;
    order: 2;
  }
  .staff-contact-section .staff-img {
    width: 100%;
  }
  .staff-contact-section .staff-img img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
  }
}



@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1210px;
  }
}

@media (max-width: 776px) {
  .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .news-details-page .post-table-style table,
  .news-details-page .wpDataTables table {
    display: table;
    width: 100%;
  }
  .news-details-page .wpDataTables tbody {
    display: contents;
  }
  .news-details-page .post-table-style tr,
  .news-details-page .wpDataTables tr {
    display: table-row;
  }

  .news-details-page .post-table-style table td,
  .news-details-page .wpDataTables table td,
  .news-details-page .wpDataTables table th {
    display: table-cell;
    width: 100% !important;
  }

  .news-details-page table,
  .news-details-page tbody,
  .news-details-page tr,
  .news-details-page td {
    display: block;
    width: 100%;
  }

  .news-details-page table td {
    display: flex;
    flex-direction: column;
    width: 100% !important;
  }

  .news-details-page table td img {
    margin-top: 10px !important;
    margin-left: 0 !important;
    float: none !important;
    width: fit-content !important;
  }
  .content-image-wrapper {
    display: block;
  }
}

/* ===== mega menu style ===== */

.mega-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: unset;
}

.mega-menu > li {
  position: unset;
  display: inline-block;
}

.mega-menu button,
.mega-menu > li > a {
  display: block;
  padding: 10px 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500 !important;
  text-decoration: none;
}

.sub-menu {
  /* display: none; */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 100%;
  padding: 30px 0 0;
}

/* .mega-menu > li:hover .sub-menu,
.mega-menu > li:focus-within .sub-menu {
  display: block;
} */

.mega-menu .mega-menu-columns-3 {
  float: left;
  min-height: 1px;
  width: 25%;
  padding: 0 30px;
  vertical-align: top;
  display: inline-block;
}
@media (max-width: 768px) {
  .menu-content ul > li {
    margin: 0px 0;
  }
  .menu-content ul li {
    margin: 15px 0;
  }
  .mega-menu button,
  .mega-menu > li > a {
    padding: 10px 10px;
  }
}
@media (max-width: 767px) {
  .mega-menu {
    margin-top: 15px !important;
  }
/*   .menu-content .mega-menu-columns-3 .h3::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 800;
    padding-left: 5px;
    color: rgba(var(--primary-color));
  }
  .menu-content .mega-menu-columns-3 .h3.arrow-up-down::after {
    content: "\f106";
    color: rgba(var(--primary-color));
  } */
	.menu-content .mega-menu-columns-3 .h3 i.arrow-up-down {
    transform: rotate(180deg);
    transition: 0.3s ease;
}
  .menu-content .mega-menu-columns-3 {
    border-bottom: 1px solid #ede8f0;
  }
  .menu-content .mega-menu-columns-3 .h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mega-menu .mega-menu-columns-3 {
    width: 100%;
    margin-bottom: 15px;
    padding: 0 15px 15px 15px;
  }
  .menu-content .h3 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .menu-content ul li {
    margin: 5px 20px 5px 0;
  }
  .mega-menu button,
  .mega-menu > li > a {
    padding: 5px 0px;
  }
  .slide-bottom-section {
    flex-direction: column;
    margin-top: 0px;
  }
  /*   .search-section {
	position: initial;
  } */
  /*   form#searchform {
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
  } */
  /*   .searchform input {
    padding: 8px 5px 8px 10px;
	width: 100%;
  } */
}
@media screen and (min-width: 769px) and (max-width: 1129px) {
  .mega-menu button,
  .mega-menu > li > a {
    padding: 10px 12px;
  }
  .menu-content ul li {
    margin: 0px 0;
  }
}

@media print {
  body {
    font-family: arial !important;
  }
  a {
    text-decoration: none !important;
  }
  a[href]:after {
    content: none !important;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100% !important;
  }
  .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .header-top {
    position: static !important;
  }
  a.skip-content-box {
    display: none;
  }
  .tertiary-btn {
    background-color: #fff !important;
  }
  .primary-btn {
    background-color: #ffc425 !important;
  }
  .alert-section {
    display: none;
  }
  .calendar-section .cal-gap {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .source-area .source-area-items {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: row !important;
  }
  .mega-menu .mega-menu-columns-3 {
    float: left;
    width: 25%;
    padding: 0px 30px;
  }
  .scroll-btn-section .btn-items {
    justify-content: center !important;
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: center !important;
    width: 100%;
  }
  .inner-page-top-section {
    margin-top: 0;
  }
  .calendar-section .cal-gap {
    border-left: none;
  }
  .inner-banner-bg {
    min-height: 300px !important;
    height: initial !important;
  }
  .right-section .right-dropdown-arrow-click.light-heading::after {
    display: none !important;
  }
  .cta-banner {
    background-color: #49176d;
  }
  .callout-box {
    background-color: #49176d;
  }
}



#sb_instagram {
  background: linear-gradient(90.28deg, #34104d -36.87%, #49176d 81.49%) !important;
}
.sbi_header_palette_custom_1 {
	background: transparent !important;
}
#sb_instagram a h3 {
	color: #fff !important;
}
.sbi_feedtheme_header_text h3,
.sbi_feedtheme_header_text p {
  color: rgba(var(--primary-color)) !important;
}

#sb_instagram.sbi_col_4 #sbi_images {
  gap: 0px !important;
}

#sb_instagram #sbi_images {
  padding: 0 !important;
}
#sb_instagram .sbi_follow_btn a {
  background: rgba(var(--secondary-color)) !important;
  color: var(--black-color) !important;
}
#sb_instagram .sbi_follow_btn a:hover,
#sb_instagram .sbi_follow_btn a:focus {
  box-shadow: none !important;
  background: var(--white-color) !important;
}

#sb_instagram #sbi_load {
  margin-top: 20px !important;
}
#sb_instagram .sbi_photo:focus {
  border: 2px solid #fff;
}
.skip-to-content {
  background: #000;
  color: #fff !important;
  position: absolute;
  top: 0px;
  left: -160px;
  z-index: 9999;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
}
.skip-to-content:focus {
  left: 0;
}
.menu-close-icon {
   order: 2;
}

.gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
}

/* Lightbox styling */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 5px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: white;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 50%;
}

.lightbox-close:hover {
  background: white;
  color: black;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  cursor: pointer;
}

.lightbox-nav:hover {
  background: white;
  color: black;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}





/*  adding this for new requirement os side by side */
.acf-sbs {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.acf-sbs img {
    margin-right: 40px;
    height: auto;
}

.ada-message-box {
    background: #fff;
    color: #000 !important;
    position: absolute;
    top: -53px;
    left: 50%;
    z-index: 9999;
    padding: 10px;
    font-weight: 500;
    font-size: 14px;
    transform: translateX(-50%);
}
.ada-message-box:focus {
  top: 0;
  outline: 2px solid #ffc425;
}

.tech-section2 ul {
    display: flex;
    flex-wrap: wrap; 
    padding: 0;
    margin: 0;
    list-style: none;
	justify-content: center;
}
.tech-section2 ul li {
	display: inline-block;
    text-align: center;
	margin: 10px 20px;
}
.tech-section2 ul li a {
	font-size: 3.4rem;
    font-weight: 500;
    color: rgba(var(--primary-color));
    text-decoration: none;
	display: block;
}
.tech-section2 ul li a:hover {
	font-weight: bold;
}

.tech-section2 .load-more-btn {
    font-family: var(--primary-font-heading);
    clear: both;
    color: rgba(var(--primary-color));
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    border-bottom: 2px solid #ffc425;
}


@media (max-width: 600px) {
    .tech-section2 li {
        flex: 1 1 100%; 
    }
	.tech-section2 ul li {
    margin: 5px 10px;
}
	.tech-section2 ul li a {
    font-size: 25px;
	}
	
}




/* hide the logo  */
#silktide-cookie-icon {
  display: none !important;
}

/* hide the free info */
a[href*="silktide.com/consent-manager"] {
  display: none !important;
}


/* Hide arrow icon by default (desktop) */
.mega-menu-columns-3 .h3 i {
    display: none;
}

/* Show arrow icon only on mobile */
@media (max-width: 767px) {
    .mega-menu-columns-3 .h3 i {
        display: inline-block;
		font-size: 24px;
    }
}



