/* ----------------------------------------- */
/* FONTS STACK */
/* ----------------------------------------- */
@font-face {
  font-family: "urbanist";
  src: url("Urbanist-Regular.ttf");
}
@font-face {
  font-family: "urbanistL";
  src: url("Urbanist-Light.ttf");
}
@font-face {
  font-family: "urbanistM";
  src: url("Urbanist-Medium.ttf");
}
@font-face {
  font-family: "urbanistSB";
  src: url("Urbanist-SemiBold.ttf");
}
@font-face {
  font-family: "urbanistB";
  src: url("Urbanist-Bold.ttf");
}
/* ----------------------------------------- */
/* variables */
/* ----------------------------------------- */
:root {
  /* typography */
  --urbanist: "urbanist", "sans-serif";
  --urbanistM: "urbanistM", "sans-serif";
  --urbanistSB: "urbanistSB", "sans-serif";
  --urbanistL: "urbanistL", "sans-serif";
  --urbanistB: "urbanistB", "sans-serif";

  /* section heading */
  --section-heading: 40px/60px var(--urbanist);

  --color-primary: #096899;
  --color-secondary: #60a0f9;

  --color-black: #000;
  --color-white: #fff;
  --text-color-01: #454545;
  --section-spacing: 64px 64px;
  --section-spacing-unit: 64px;
  --transition: all 0.4s ease;

  --nav-bg: linear-gradient(360deg, rgba(255, 255, 255, 0.23) 0%, #ffffff 100%);
  --section-lin-grad: linear-gradient(
    180deg,
    rgba(244, 248, 255, 0.8) 0%,
    rgba(188, 214, 255, 0.544) 100%
  );
}
/* responsive spacing */
:root {
  --section-spacing: 32px 32px;
  --section-spacing-unit: 32px;
}

/* ----------------------------------------- */
/* MISC */
/* ----------------------------------------- */
body {
  background: #fff;
  margin: 0;
  max-width: 1920px;
  margin: 0 auto;
}

html,
body {
  scroll-behavior: smooth;
  font: 18px/25px var(--urbanist);
  color: var(--text-color-01);
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
.section-subtitle {
  font: 12px var(--urbanistM);
  color: var(--color-primary);
  text-transform: uppercase;
  background: #eeeeee;
  border-radius: 55px;
  width: fit-content;
  padding: 6px 18px;
  margin: 0 0 16px;
}
.section-title {
  font: 40px/60px var(--urbanistSB);
  color: var(--color-primary);
  margin: 0;
}
.section-title span {
  display: block;
}
.featured-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  height: 50px;
  font: 18px var(--urbanistM);
  color: var(--color-white);
  padding: 12px 18px;
  background: var(--color-secondary);
  border-radius: 74px;
}
.featured-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary) url(../images/featured-btn-after.svg)
    no-repeat right center;
  border-radius: 74px;
  position: absolute;
  left: 0;
  top: 0;
  background-position-x: 95%;
  z-index: -1;
  transition: var(--transition);
}
.featured-btn:hover,
.featured-btn:focus {
  text-decoration: none;
  color: var(--color-white);
}
.featured-btn:hover::after,
.featured-btn:focus::after {
  transform: translateX(24px);
}

/* ----------------------------------------- */
/* 100% WIDTH */
/* ----------------------------------------- */
.navbar > .navbar-header,
.navbar > .navbar-collapse {
  margin: 0;
}

.container {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.navbar.container {
  max-width: 100%;
}

.row {
  margin: 0;
}

div[class*="banner"] {
  padding: 0;
}

/* ----------------------------------------- */
/* MAIN NAVIGATION */
/* ----------------------------------------- */

.navbar-default {
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(39, 50, 95, 0.2);
}

#navbar {
  margin: 0 !important;
  padding: 12px var(--section-spacing-unit) !important;
  border: 0;
  border-radius: 0;
}

/* .path-frontpage #navbar {

} */

.navbar {
  margin: 0;
}

/* #navbar:hover {
} */

.navbar-header {
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}

.navbar .logo {
  padding: 0;
  margin: 0;
}

/* .navbar .logo img {
  width: 188px;
} */

.navbar-collapse {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  width: 100%;
}

.navbar-nav {
  margin: 0;
  padding: 0;
  text-align: right;
  float: right;
}

.navbar-default .navbar-nav > li {
  margin: 0;
  display: inline-block;
  float: none;
  padding: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.navbar-default .navbar-nav > li > a {
  font: 16px var(--urbanist);
  color: var(--color-black);
  transition: var(--transition);
  text-transform: capitalize;
  position: relative;
}
.navbar-default .navbar-nav > li > a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
  color: var(--color-primary);
}
.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a:focus::after,
.navbar-default .navbar-nav > .active > a::after,
.navbar-default .navbar-nav > .active > a:hover::after,
.navbar-default .navbar-nav > .active > a:focus::after {
  opacity: 1;
  width: 50%;
}
.navbar-default .navbar-nav > .dropdown > a .caret {
  border-top-color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.navbar-nav .dropdown-menu > li > a {
  font: 18px var(--urbanist);
  color: var(--color-black);
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-align: left;
  padding: 5px 10px;
}
.navbar-nav > li > .dropdown-menu {
  background: var(--color-white);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: var(--color-white) !important;
  background-color: var(--color-primary) !important;
}

.navbar-nav .dropdown-menu > li.active > a {
  color: var(--color-white);
}

.navbar-default .navbar-nav li.last .dropdown-menu {
  left: auto;
  right: 0;
}

.navbar-default .navbar-nav > li > a {
  font-size: 16px;
}

.navbar-nav {
  background: transparent;
}

@media screen and (max-width: 767px) {
  #navbar {
    /* flex-wrap: wrap;
    padding: var(--section-spacing) !important; */
  }
  #navbar-collapse {
    width: 100% !important;
  }
  .path-frontpage #navbar {
    position: relative;
    padding: 15px 0 0 !important;
    flex-wrap: wrap;
  }
  .navbar-header {
    width: 100% !important;
    padding: 15px 10px;
  }
  .navbar-nav {
    float: none;
    text-align: center;
  }
  .navbar-nav {
    float: none;
    width: 100%;
    border-radius: 0;
    text-align: left;
  }
  .navbar-default .navbar-nav > li {
    display: block;
    width: 100%;
  }
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus,
  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    background: var(--color-primary);
    color: white;
  }
  .navbar-default .navbar-nav > li > a::after {
    background: transparent;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    font: 18px var(--urbanist);
    color: var(--text-color-01) !important;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    background: var(--color-primary);
    color: white !important;
  }
}
@media screen and (min-width: 768px) {
  .navbar-nav {
    margin: 24px 0;
  }
}
/* ----------------------------------------- */
/* SEARCH */
/* ----------------------------------------- */
/* static search bar */
.region.region-navigation-collapsible {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  row-gap: 24px;
}

.navbar .search-block-form .form-group .input-group #edit-keys {
  background: transparent;
  color: var(--color-black);
  font: 18px var(--urbanist);
  width: auto;
  padding: 0;
  border: none;
  border-bottom: 2px solid var(--color-black);
  border-radius: 0;
  box-shadow: unset;
}

#edit-keys::placeholder {
  font: 18px var(--urbanist);
  color: var(--color-black);
}

.navbar-default input[type="search"]::-webkit-input-placeholder {
  font: 18px var(--urbanist);
  color: var(--color-black);
}

.navbar-default input[type="search"]::-moz-placeholder {
  font: 18px var(--urbanist);
  color: var(--color-black);
}

.navbar-default input[type="search"]:-ms-input-placeholder {
  font: 18px var(--urbanist);
  color: var(--color-black);
}

.navbar-default input[type="search"]:-moz-placeholder {
  font: 18px var(--urbanist);
  color: var(--color-black);
}

.navbar-default .btn-primary {
  background: url("../images/searchicon.png") no-repeat center center;
  border-color: transparent;
  border: none;
  padding: 8px 12px;
  color: transparent;
  position: relative;
  z-index: 10 !important;
}

#block-bootstrap-subtheme-search {
  width: fit-content;
  display: block;
  max-width: 230px;
}

#block-bootstrap-subtheme-main-menu {
  width: calc(100%);
}

@media screen and (max-width: 768px) {
  #block-bootstrap-subtheme-search {
    width: 100% !important;
    max-width: 100% !important;
  }
  .navbar .search-block-form .form-group .input-group #edit-keys {
    width: 95% !important;
  }
}
/* ----------------------------------------- */
/* MAIN BANNER - HOME */
/* ----------------------------------------- */
div[id*="views_slideshow_cycle_div_main_banner-block_1_"],
#views_slideshow_cycle_teaser_section_main_banner-block_1 {
  width: 100% !important;
}
#mb-wrap {
  position: relative;
}
#mb-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--gradient-primary);
  z-index: 1;
}
.mbtext-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.tagline {
  font: 60px var(--albertsansSB);
  color: var(--color-white);
  margin: 0;
  text-transform: capitalize;
  padding: 0 0 0 var(--section-spacing-unit);
}
.tagline > span {
  font: 60px/70px var(--albertsansSB);
  display: block;
  /* animation */
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}
.mbimg-wrap > img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 992px) {
  .mbtext-wrap {
    top: unset;
    bottom: -10%;
  }
  .tagline {
    font: 48px/70px var(--albertsansSB);
  }
  .tagline > span {
    font: 48px/70px var(--albertsansSB);
  }
}
@media screen and (max-width: 992px) {
  .mbtext-wrap {
    bottom: 10%;
    transform: unset;
  }
  .tagline {
    font: 36px / 46px var(--albertsansSB);
  }
  .tagline > span {
    font: 36px / 46px var(--albertsansSB);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------- */
/* LOGIN SECTION  */
/* ----------------------------------------- */
.login-section {
  padding: var(--section-spacing);
  background: var("../images/login-section-bg.png") no-repeat center center /
    cover;
  position: relative;
}
.login-section::after {
  content: "";
  width: 100%;
  height: 450px;
  background: url("../images/wave-bg-image.png") no-repeat center center / cover;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.login-section > img {
  display: block;
  width: 100%;
  height: auto;
}
.login-section .login-btn {
  width: 310px;
  height: 92px;
  background: url("../images/login-btn-bg.png") no-repeat center center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 33px/39px var(--urbanist);
  color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.login-section .login-btn:hover,
.login-section .login-btn:focus {
  text-decoration: none;
  filter: drop-shadow(2px 4px 6px black);
  transform: translate(-50%, calc(-50% - 4px));
}
@media screen and (max-width: 1366px) {
  .login-section .login-btn {
    width: fit-content;
    height: auto;
    padding: 24px 128px;
  }
}
@media screen and (max-width: 992px) {
  .login-section > img {
    min-height: 200px;
  }
}

/* login popup */
.modal-dialog {
  background: url("../images/footer-col-bg.png") no-repeat center center / cover; /* Replace with your image URL */
  color: white; /* Text color for better visibility on the background */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal-content {
  background: rgba(
    0,
    0,
    0,
    0.2
  ); /* Semi-transparent background for the modal content */
  border-radius: 10px;
}

.modal-header {
  border-bottom: 1px solid #ddd;
}

.modal-footer {
  border-top: 1px solid #ddd;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
}

.form-group label {
  color: #f5f5f5; /* Label color for better visibility */
}

.form-control {
  background-color: rgba(
    255,
    255,
    255,
    0.8
  ); /* Semi-transparent background for inputs */
  color: #333; /* Text color inside inputs */
  border-radius: 5px;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
/* ----------------------------------------- */
/* ACADEMICS  */
/* ----------------------------------------- */
.academics-section {
  padding: var(--section-spacing);
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 48px;
}
.header-wrapper .lt {
  width: calc(100% - 300px);
}
.header-wrapper .rt {
  width: 300px;
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 24px;
}
.card-item {
  display: block;
  width: calc(25% - 24px);
  max-width: 340px;
  height: auto;
  min-height: 326px;
  position: relative;
  background: url("../images/card-bg.svg") no-repeat right bottom;
  background-size: cover;
  border-radius: 12px;
  padding: 24px;
  margin: 0 auto;
  transition: var(--transition);
  /* overflow: hidden; */
}
.card-item::after {
  content: "";
  width: 36px;
  height: 36px;
  background: url("../images/card-link-arrow.svg") no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: var(--transition);
}
.card-item:hover,
.card-item:focus {
  text-decoration: none;
  transform: translateY(-4px);
}
.card-item:hover::after,
.card-item:focus::after {
  transform: scale(1.5);
}
.card-item img {
  display: block;
  margin: 0 auto 12px;
}
.card-title {
  font: 26px var(--urbanistSB);
  text-align: center;
  color: var(--color-white);
  margin: 0 0 24px;
}
.card-item p {
  font: 16px var(--urbanistSB);
  color: var(--color-white);
  margin: 0;
  line-height: 26px;
}
@media screen and (max-width: 992px) {
  .header-wrapper {
    flex-wrap: wrap;
  }
  .header-wrapper .lt {
    width: 100%;
    margin: 0 0 48px;
  }
  .header-wrapper .rt {
    width: 100%;
  }
  .cards-container {
    gap: 24px;
  }
  .card-item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 680px) {
  .card-item {
    width: calc(100% - 24px);
  }
}
/* ----------------------------------------- */
/* LEADERSHIP SECTION  */
/* ----------------------------------------- */
.leadership-section {
  padding: var(--section-spacing);
  background: var(--section-lin-grad);
}
.deans-msg-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 36px;
}
.deans-mgs {
  width: calc(100% - 300px);
}
.deans-img {
  width: 230px;
}
.section-title .msg-init {
  font: 24px/36px var(--urbanistM);
  position: relative;
}
.leadership-section .section-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 16px;
  column-gap: 48px;
}
.section-title .msg-init::before {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--color-primary);
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.dmessage-cont p {
  font: 16px/26px var(--urbanist);
  color: var(--text-color-01);
}
.leadership-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.leadership-cards > .leadership-card {
  width: calc(33.33% - 24px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: auto;
  background: var(--color-white);
  border-radius: 30px;
  padding: 24px;
  padding-bottom: 36px;
  position: relative;
  transition: var(--transition);
}
.leadership-cards > .leadership-card:hover,
.leadership-cards > .leadership-card:focus {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(96, 160, 249, 0.5);
}
.leadership-cards > .leadership-card::after {
  content: "";
  width: 39px;
  height: 22px;
  background: url("../images/leadership-card-after.svg") no-repeat center center;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 24px;
  margin: 0 0 24px;
}
.card-header > img {
  width: 64px;
  height: auto;
  display: block;
}
.leadership-title {
  font: 22px/32px var(--urbanistSB);
  color: var(--color-primary);
  margin: 0;
}
.card-content {
  font: 18px/28px var(--urbanist);
  color: var(--text-color-01);
  text-align: justify;
}
.dmessage-cont {
  margin: 0 0 96px;
}
@media screen and (max-width: 992px) {
  .leadership-section .section-title {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .deans-img,
  .deans-mgs {
    width: 100%;
  }
  .deans-img {
    width: fit-content;
    margin: 0 auto 24px;
  }
  .leadership-section .section-title {
    justify-content: center;
  }
  .section-title .msg-init::before {
    background: transparent;
  }
  .leadership-section .section-subtitle {
    margin: 0 auto 24px;
  }
  .leadership-cards > .leadership-card {
    width: 100%;
    margin: 0 0 48px;
  }
}
/* ----------------------------------------- */
/* news and events  */
/* ----------------------------------------- */
#block-views-block-news-events-block-1 {
  padding: var(--section-spacing);
}
.ne-date {
  padding: 8px;
  border-radius: 8px;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ne-month {
  font: 26px/32px var(--urbanistL);
  color: var(--color-white);
  margin: 0;
}
.ne-day {
  font: 21px/32px var(--urbanistB);
  color: var(--color-white);
  margin: 0;
}
.ne-title {
  width: calc(100% - 84px);
  font: 20px/26px var(--urbanistB);
  color: var(--text-color-01);
}
.ne-header {
  margin: 0 0 24px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 24px;
}
.ne-content p {
  font: 16px var(--urbanist);
  color: var(--text-color-01);
  margin: 0;
}
.path-frontpage .news-and-events-item .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 24px;
}
.path-frontpage .news-and-events-item .view-content > div {
  position: relative;
  width: calc(33.33% - 24px);
  height: auto;
  border-radius: 24px;
  background: #f5f9ff;
  padding: 24px;
  max-width: 450px;
  margin: 0 auto;
  transition: var(--transition);
}
.path-frontpage .news-and-events-item .view-content > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(96, 160, 249, 0.3);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.path-frontpage .news-and-events-item .view-content > div:hover,
.path-frontpage .news-and-events-item .view-content > div::after {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(96, 160, 249, 0.4);
}
.path-frontpage .news-and-events-item .view-content > div:hover::after,
.path-frontpage .news-and-events-item .view-content > div::after::after {
  opacity: 1;
}
.ne-content {
  margin: 0 0 24px;
}
.ne-footer {
  overflow: hidden;
}
.ne-footer a {
  font: 18px var(--urbanistB);
  color: var(--color-primary);
  display: block;
  position: relative;
  float: right;
  width: fit-content;
  margin: 0 44px 0 0;
}
.ne-footer a::after {
  content: "";
  width: 20px;
  height: 11px;
  background: url(../images/leadership-card-after.svg) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .path-frontpage .news-and-events-item .view-content > div {
    width: 100%;
    margin: 0 auto 48px;
  }
}
/* #news-evt-wrap {

} */
/* ----------------------------------------- */
/* FOOTER  */
/* ----------------------------------------- */
.footer {
  margin: 0;
  padding: 0;
  border: none;
}
#footer-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.footer-columns {
  background: url("../images/footer-col-bg.png") no-repeat center center / cover;
  padding: var(--section-spacing);
}
.footer-col > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 48px;
}
.address-wrap {
  font: 18px/28px var(--urbanist);
  color: #100045;
  margin: 0 0 48px;
}
.socials-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 24px;
}
.footer-contact {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 24px;
  margin: 0 0 48px;
  min-height: 90px;
}
.footer-contact p {
  font: 24px/34px var(--urbanistSB);
  color: var(--color-primary);
  margin: 0;
}
.footer-nav {
  list-style-image: url("../images/list-item-image.png");
}
.footer-nav > li {
  margin: 0 0 20px;
}
.footer-nav > li > a {
  font: 18px/28px var(--urbanistM);
  color: #2f2550;
  display: block;
}
.footer-iframe-wrapper {
  display: block;
  overflow: hidden;
}
.footer-iframe-wrapper iframe {
  width: 100%;
  height: 186px;
  border-radius: 24px;
}
/* footer bottom */
.footer-bottom {
  background: var(--color-primary);
  padding: 18px var(--section-spacing-unit);
}

.footer-bottom,
.footer-bottom a {
  font: 16px/130% var(--urbanistL);
  color: var(--color-white);
}

.copy-section,
.copy-section a,
.power-sec,
.power-sec a {
  color: var(--color-white);
  opacity: 1;
}

.power-sec {
  text-align: right;
}
.footer-overview > img {
  margin: 0 0 24px;
  display: block;
}
.footer-text {
  font: 16px/130% var(--urbanistL);
  color: var(--color-white);
  text-align: justify;
}
.footer-columns > .footer-col .footer-nav {
  padding-left: 64px;
}

@media screen and (max-width: 767px) {
  .copy-section,
  .copy-section a,
  .power-sec,
  .power-sec a {
    padding: 0;
    text-align: center;
    margin: 0 0 12px;
  }
}
/* ----------------------------------------- */
/* INTERNAL PAGES  */
/* ----------------------------------------- */
.inner-page {
  background: #ededed8f url("../images/internal-page-bg.png") no-repeat center
    center / cover;
  background-size: 100% 100% !important;
  min-height: calc(100vh) !important;
  background-attachment: fixed;
  padding-top: 0;
  padding-bottom: 2em;
}
.views-field-field-career-file a {
  background: url("../images/application-pdf.png") no-repeat center center;
  border-bottom: none !important;
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.inner-page ul {
  list-style-image: url("../images/list-item-image.png");
  padding-left: 64px;
}
.breadcrumb {
  padding: 15px 15px;
  color: var(--color-white);
  width: calc(100% + 30px);
  transform: translateX(-15px);
  border-radius: 0;
  background: var(--color-secondary);
}
.breadcrumb > li a {
  color: var(--color-white);
  border: none !important;
}
.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  color: var(--color-black);
  text-decoration: none;
}
.breadcrumb > .active {
  color: var(--color-black);
}
.breadcrumb > li + li:before {
  color: var(--color-white);
}
#page-title {
  font: var(--section-heading);
  color: var(--color-primary);
  margin: 24px 0;
  border: none;
  padding: 0;
}

.inner-page h2 {
  font: 36px/46px var(--urbanistSB);
  color: var(--color-primary);
}

.inner-page h3 {
  font: 28px/38px var(--urbanistSB);
  color: var(--color-secondary);
}

.inner-page h4 {
  font: 20px/24px var(--urbanistSB);
  color: var(--color-secondary);
}
.inner-page ul li {
  margin: 0 0 12px;
}
.inner-page a {
  font: 16px var(--urbanist);
  color: var(--text-color-01);
  border-bottom: 1px dashed var(--text-color-01);
  width: fit-content;
}
.inner-page a:hover,
.inner-page a:focus {
  text-decoration: none;
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}
/* sitemap */
/*** Sitemap ***/

.sitemap {
  padding: 0 1em;
}
.sitemap h2 {
  display: none;
}
.sitemap-item {
}

.sitemap-item ul {
  padding: 0 0 0 1.5em;
  margin: 0 !important;
  float: none;
  text-align: start;
  list-style: disc;
  display: block;
  background: transparent !important;
  border: 0;
  border-radius: 0;
}

.sitemap-item ul li {
  float: none;
  display: list-item;
}

.sitemap-item ul li a {
  text-decoration: none;
  display: initial;
  font: 16px var(--urbanist);
  color: var(--text-color-01);
  padding: 0;
}

.sitemap-item ul li a:hover,
.sitemap-item ul li a:focus {
  text-decoration: underline;
  background: transparent;
}

.sitemap .caret {
  display: none;
}

.sitemap-item ul li ul {
  position: initial;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  background: transparent;
  background-clip: inherit;
  list-style: circle;
}

.sitemap-item ul li ul li {
  display: list-item;
}

.sitemap-item ul li ul li a,
.sitemap-item .navbar-nav .dropdown-menu > li > a {
  text-decoration: none;
  display: initial;
  font: 16px/22px var(--urbanist);
  color: var(--color-black);
  padding: 0;
}

.sitemap-item ul li ul li a:hover,
.sitemap-item ul li ul li a:focus,
.sitemap-item .navbar-nav .dropdown-menu > li > a:hover,
.sitemap-item .navbar-nav .dropdown-menu > li > a:focus {
  text-decoration: underline;
  background: transparent;
}

.sitemap-item ul li ul li ul {
  display: none;
}

.sitemap-item ul li ul li.expanded ul {
  display: block;
  list-style: square;
}
/* 
      HIGHLIGHTS VIEW
*/
.path-highlights .news-and-events-item .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
.path-highlights .news-and-events-item .view-content > div {
  padding: 24px;
  background: var(--color-white);
  border-radius: 24px;
  width: calc(50% - 24px);
}
/* 
      GALLERY view
*/

.view-gallery[class*="view-display-id-page_"] .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.view-gallery[class*="view-display-id-page_"] .view-content > div {
  margin: 0 0 48px;
}
.gallery-img {
  overflow: hidden;
  width: 100%;
  height: 210px;
  transition: var(--transition);
  margin: 0 0 24px;
}
.gallery-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;

  transition: var(--transition);
}
.gallery-title {
  text-align: center;
}

.view-gallery[class*="view-display-id-page_"]
  .view-content
  > div:hover
  .gallery-img
  img,
.view-gallery[class*="view-display-id-page_"]
  .view-content
  > div:focus
  .gallery-img
  img {
  transform: scale(1.2);
}
/* downloads view */
.views-field-field-attachment a {
  background: url("../images/application-pdf.png") no-repeat center center;
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.path-node .view-empty {
  position: relative;
}
.path-node .view-empty::after {
  content: "No content found. Please try again later.";
  width: 100%;
  text-align: center;
  display: block;
  font: 16px var(--urbanist);
  color: var(--text-color-01);
}

/* a**********
      leadership view
*/
.view-our-leadership[class*="view-display-id-page_"] .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.view-our-leadership[class*="view-display-id-page_"]
  .view-content
  > div:first-child {
  width: 100%;
}
.view-our-leadership[class*="view-display-id-page_"] .view-content > div {
  width: 50%;
}
.core-team-item .profile-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 0 2em;
  background: #fafafa;
  border-radius: 30px;
}

.view-core-team.view-display-id-page_1 .view-content .lt-block {
  width: 30%;
}

.view-core-team.view-display-id-page_1 .view-content .rt-block {
  width: 80%;
  text-align: justify;
}

.core-team-item .profile-wrap {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 0.5em;
}

.core-team-item .profile-wrap img {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px;
}

.core-team-item .name,
.core-team-item .designation {
  text-align: center;
  display: block;
}

.view-core-team.view-display-id-page_1 .view-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}

.view-core-team.view-display-id-page_1 .view-content > div {
  margin: 0 0 2em;
}
@media screen and (max-width: 768px) {
  .view-our-leadership[class*="view-display-id-page_"] .view-content > div {
    width: 100%;
  }
}

/* messages view */
.region.region-content .view-content > div {
  padding-bottom: 1em;
}

.inner-page .view-messages.view-display-id-page_1 .view-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.inner-page .msg-prof-pic {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto 0.5em;
  overflow: hidden;
  border: 4px solid var(--color-primary);
}

.inner-page .msg-prof-pic > img {
  width: 100%;
  height: 100%;
}

.inner-page .pdma-msgs-container {
  background: #fafafa;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none !important;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.inner-page .pdma-message-block .msg-prof-pic {
  float: left;
  margin: 0 12px 12px 0;
}

.inner-page .messages-page-col {
  background: #f6f6f6;
  padding: 12px;
  border-radius: 8px;
  margin: 0 0 2em 0;
  box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.inner-page .msg-name,
.inner-page .msg-designation {
  color: #031e17;
  font-weight: bold !important;
  font: 18px "axiFormaR", sans-serif;
}

/* .inner-page .msg-name {} */

.inner-page .msg-designation {
  font-size: 18px;
  font-style: italic;
}

.inner-page .msg-message {
  text-align: justify;
  color: #031e17;
  font: 16px "axiFormaR", sans-serif;
}

.inner-page .msg-message span {
  color: var(--text-color-01);
}

.inner-page .pdma-msgs-container:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  transform: translateY(-6px);
  border: none !important;
}

.inner-page .pdma-msgs-container:hover .msg-name,
.inner-page .pdma-msgs-container:hover .msg-designation,
.inner-page .pdma-msgs-container:hover .msg-message {
  color: #031e17 !important;
}
/* table responsiveness */
@media (max-width: 768px) {
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
  }

  table {
    width: 100%;
    min-width: 600px; /* Adjust based on your table size */
  }
}
