/*
sm - 576px
md - 768px
lg - 992px
xl - 1200px
xll - 1400px
*/

/* global styles */

:root {
  --colors-purple: RGB(33, 38, 74);
  --colors-purple-secondary: RGB(23, 28, 64);
  --max-container-width: 1800px;
  --content-padding: 1rem;
  --b-radius: 5px;
}

@media (min-width: 768px) {
  :root {
    --content-padding: 25px;
  }
}

@media (min-width: 992px) {
  :root {
    --content-padding: 50px;
  }
}

@media (min-width: 1200px) {
  :root {
    --content-padding: 75px;
  }
}

@media (min-width: 1400px) {
  :root {
    --content-padding: 100px;
  }
}

.news-date-time {
  color: black;
}

.owl-theme .owl-nav {
  display: none;
  margin-top: 0;
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .owl-theme .owl-nav {
    display: block;
  }
}

.owl-nav>button {
  position: absolute;
  top: 25%;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--colors-purple);
}

.owl-nav .owl-prev {
  left: calc(-30px - 1rem);
}

.owl-nav .owl-next {
  right: calc(-30px - 1rem);
}

i.fa-solid {
  font-family: 'Font Awesome 6 Free' !important;
}

i.fa-brands {
  font-family: 'Font Awesome 6 Brands' !important;
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
  background: var(--colors-purple);
}

a,
a:visited {
  color: var(--colors-purple);
}

.btn-t7,
.btn-t7:visited {
  background-color: var(--colors-purple);
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: var(--b-radius);
  border: 1px solid var(--colors-purple);
}

.btn-t7:hover,
.btn-t7:focus,
.btn-t7:active,
.btn-t7.active {
  color: var(--colors-purple);
  background: none;
  border: 1px solid var(--colors-purple);
}

body {
  font-family: "Noto Serif";
}

a:hover,
a:active,
a:focus {
  color: blue;
}

.link-wrap {
  word-wrap: break-word;
}


img {
  border-radius: var(--b-radius);
}

.ratio-3x2 {
  --bs-aspect-ratio: 66%;
}

/* component styles */

.main-container>h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.main-container>h2,
.main-container>h3,
.main-container>h4,
.main-container>h5,
.main-container>h6,
.main-container>h7,
.main-container>h8 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.side-submenu {
  width: 100%;
}

@media (min-width: 992px) {
  .side-submenu {
    width: auto;
  }
}

.navbar {
  background-color: var(--colors-purple) !important;
}

.navbar .navbar-brand img {
  border-radius: 50%;
  border: 2px solid #fff;
}

.navbar a,
.navbar a:visited {
  color: white;
}

.navbar .dropdown-menu[data-bs-popper] {
  background-color: var(--colors-purple);
}

.top-menu-container {
  width: 100%;
  background: var(--colors-purple);
}

.top-menu {
  max-width: var(--max-container-width);
  margin: auto;
  color: #fff;
  padding: 1rem var(--content-padding);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.top-menu .logo {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

.top-menu .logo img {
  height: 115px;
  border-radius: 50%;
  border: 2px solid #fff;
  /* box-shadow: 0 0px 15px 0px #fff; */
}

.top-menu .primary-title {
  font-size: 1.2rem;
}

@media (min-width: 992px) {
  .top-menu .primary-title {
    font-size: 2rem;
  }
}

.top-menu .secondary-title {
  font-size: 0.8rem;
}

@media (min-width: 992px) {
  .top-menu .v-links-container {
    display: flex;
    justify-content: end;
  }
}

.top-menu .v-links {
  display: flex;
  gap: 2rem;
  height: min-content;
  align-items: center;
  white-space: nowrap;
}

.top-menu .v-links a {
  color: white;
  text-decoration: none;
}

.top-menu .bottom {
  font-size: 1rem;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
}

.top-menu .input-wrapper {
  position: relative;
  height: min-content;
}

.navbar input.form-control {
  background: none;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  color: #fff;
}

.top-menu .input-wrapper input {
  background: none;
  border-radius: 15px;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  padding: 5px 10px;
  font-size: 0.9rem;
  color: #fff;
  min-width: 250px;
}

.top-menu .input-wrapper .icon {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  color: #000;
  border-radius: 50%;
  text-align: center;
  height: 33px;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  cursor: pointer;
}

.top-menu .input-wrapper .icon:hover,
.top-menu .input-wrapper .icon:active,
.top-menu .input-wrapper .icon:focus {
  background: none;
  color: #fff;
}

.top-menu .bottom .dropdown .dropdown-menu {
  display: none;
}

.top-menu .bottom .dropdown:last-of-type .dropdown-menu {
  right: 0;
}

.top-menu .bottom .dropdown:hover .dropdown-menu {
  display: block;
}

.top-menu .dropdown a.dropdown-toggle {
  color: white;
  text-decoration: none;
}

.top-menu .dropdown-menu {
  background: var(--colors-purple);
}

.top-menu .dropdown-menu .dropdown-item {
  color: white;
}


@media (max-width: 992px) {
  .menu a,
  .dropdown-menu a {
    white-space: normal !important;

  }

}


.top-menu .dropdown-menu .dropdown-item:hover,
.top-menu .dropdown-menu .dropdown-item:active,
.top-menu .dropdown-menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.3);
}

.main-container {
  max-width: var(--max-container-width);
  padding: 0 var(--content-padding);
  margin: auto;
  margin-top: 1.5rem;
  min-height: calc(100vh - 81px - 419px);
}

@media (min-width: 992px) {
  .main-container {
    min-height: calc(100vh - 155px - 270px);
  }
}

/* .main-container h2 {
  margin-top: 5rem;
  margin-bottom: 2rem;
} */
.slider {
  display: grid;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .slider {
    gap: 3rem;
    grid-template-columns: auto 1fr;
  }
}

/* .slider .sidebar div a {
  color: #fff;
  text-decoration: none;
} */
.slider .sidebar a {
  display: block;
  padding: 1rem 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .slider .sidebar a:last-of-type {
    margin-bottom: 0;
  }
}

.slider .sidebar .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.slider .sidebar .img-wrap img {
  width: 200px;
}

.slider .banner {
  display: none;
  max-width: 100%;
  position: relative;
  min-height: 200px;
  border-radius: var(--b-radius);
  overflow: hidden;
}

@media (min-width: 992px) {
  .slider .banner {
    display: block;
    min-height: max-content;
  }
}

.slider .banner .img {
  width: 100%;
  background-size: cover;
  background-position: 50% 50%;
  /* border-radius: var(--b-radius); */
  height: 100%;
  position: relative;
  z-index: -1;
}

.slider .banner .arrow {
  background: none;
  position: absolute;
  top: calc(50% - 22px);
  border: 1px solid #fff;
  border: none;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

@media (min-width: 992px) {
  .slider .banner .arrow {
    color: #fff;
  }
}

.slider .banner .arrow.left {
  left: -15px;
}

.slider .banner .arrow.right {
  right: -15px;
}

@media (min-width: 992px) {
  .slider .banner .arrow.left {
    left: 15px;
  }

  .slider .banner .arrow.right {
    right: 15px;
  }
}

.slider .banner .text-wrap {
  padding: 2rem;
}

@media (min-width: 992px) {
  .slider .banner .text-wrap {
    color: #fff;
    position: absolute;
    bottom: 0;
    background: linear-gradient(rgba(33, 38, 74, 0),
        rgba(33, 38, 74, 0.3),
        rgba(33, 38, 74, 0.8));
  }
}

.slider .banner .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.carousel-control-prev-icon {
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='RGB(33, 38, 74)'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") */
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: black;
}

@media (min-width: 992px) {

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    color: white;
    width: 64px;
    height: 64px;
  }
}

.text-block {
  margin-top: 1rem;
}

.text-block img {
  border-radius: var(--b-radius);
  margin-right: 1.5rem;
  border: 1px solid var(--colors-purple);
  margin-top: 1rem;
  width: 100%;
}

.text-block.no-title img {
  margin-top: 0;
}

@media (min-width: 992px) {
  .text-block img {
    width: 550px;
    float: left;
  }
}

.text-block .title {
  font-size: 1.8rem;
  font-weight: bold;
}

.text-block .info {
  margin-top: 1.5rem;
}

.in-numbers {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .in-numbers {
    flex-direction: row;
    gap: 2rem;
  }
}

.in-numbers .block {
  flex: 1;
  text-align: center;
}

.in-numbers .num {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--colors-purple);
}

@media (min-width: 1200px) {
  .in-numbers .num {
    font-size: 3.5rem;
  }
}

.in-numbers .ent {
  font-size: 1.2rem;
  font-weight: bolder;
  color: var(--colors-purple);
  margin-top: -0.3rem;
}

.in-numbers .info {
  margin-top: 1.5rem;
}

.special .in-numbers .ent {
  margin-top: 0;
}

.in-numbers .info {
  margin-top: 0;
}

.quota {
  margin-top: 1rem;
  padding: 4rem;
  background: var(--colors-purple);
  color: #fff;
  border-radius: var(--b-radius);
}

.quota .text {
  position: relative;
  text-align: center;
}

.quota .symbol {
  position: absolute;
  opacity: 0.4;
}

.quota .symbol.left {
  top: -3rem;
  left: -2rem;
}

.personas-list {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .personas-list {
    grid-template-columns: 1fr 1fr;
  }
}

.persona {
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-rows: 1fr; */
  gap: 1.5rem;
  border: 1.5px solid var(--colors-purple);
  border-radius: var(--b-radius);
  padding: 0.8rem 0.8rem;
  /* box-shadow: 5px 5px 10px 1px var(--colors-purple); */
  align-items: flex-start;
}

@media (min-width: 992px) {
  .persona {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
  }

  .persona.no-img {
    grid-template-columns: 1fr;
  }
}

.persona .img-wrap {
  height: 150px;
  margin: auto;
}

.persona .img {
  height: 100%;
  width: auto;
}

.persona .desc hr {
  margin: 0.5rem 0;
}

.persona .section {
  font-size: 1rem;
  font-weight: bold;
}

.persona .section.secondary {
  font-size: 0.8rem;
  margin-top: 0rem;
  font-weight: normal;
}

.persona .section.exp {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: 0.9rem;
}

.persona .contact {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.7);
  font-size: 0.8rem;
}

.persona .contact a {
  color: var(--colors-purple);
  text-decoration: none;
}

.departments {
  margin-top: 1rem;
  display: grid;
}

.departments-col {
  display: flex;
  flex-direction: column;
}

.departments,
.departments-col {
  gap: 1rem;
}

@media (min-width: 992px) {
  .departments {
    grid-template-columns: 1fr 1fr;
  }
}

.departments .category,
.category.accordion {
  border: 1.5px solid var(--colors-purple);
  border-radius: var(--b-radius);
  padding: 1rem;
}

.calendar {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.calendar .event,
.calendar .inline-event {
  background: var(--colors-purple);
  color: #fff;
  border-radius: var(--b-radius);
  padding: 1rem;
}

.calendar .selected-event .event {
  /* height: 231px; */
}

.calendar .selected-event .event .title {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.calendar .selected-event .event .info {
  /* height: calc(100% - 24px - 48px - 1rem); */
  /* width: 100%; */
  /* text-overflow: ellipsis; */
  /* overflow: hidden;  */
  /* white-space: nowrap; */
  /* position: relative; */
}

.calendar .event .title,
.calendar .inline-event .title {
  font-weight: bold;
  margin-bottom: 5px;
}

.calendar .event .date,
.calendar .inline-event .date {
  margin-bottom: 5px;
}

.calendar .selected-event {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.calendar .events-list {
  display: none;
}

@media (min-width: 992px) {
  .calendar {
    margin-top: 1rem;
    display: grid;
    gap: 2rem;
    grid-template-areas:
      "a b"
      "c c";
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 384px;
  }
}

@media (min-width: 1400px) {
  .calendar {
    grid-template-columns: auto 350px 1fr;
    grid-template-areas: "a b c";
    grid-template-rows: 384px;
  }

  .calendar .events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
  }

  .calendar .selected-event {
    margin-left: 1rem;
  }
}

.calendar .calendar-widget {
  grid-area: a;
}

.calendar .scrollable-nav {
  grid-area: b;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  overflow-y: auto;
}

.calendar .scrollable-nav .nav-link {
  --bs-nav-link-color: var(--colors-purple);
}

.calendar .scrollable-nav .nav-link:hover {
  --bs-nav-pills-link-active-bg: var(--colors-purple);

  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.calendar .scrollable-content {
  grid-area: c;
}

.calendar .all-events-btn {
  /* grid-area: e; */
}

.calendar .scrollable-nav .nav,
.calendar .scrollable-content {
  overflow-y: auto;
}

/* .calendar .scrollable-content .item {
  border-bottom: 1px solid gray;
}
.calendar .scrollable-content .item:last-of-type {
  border-bottom: none;
} */
@media (max-width: 992px) {
  .calendar .scrollable-content {
    max-height: 300px;
  }
}

.calendar .events-list .inline-event .title {
  /* float: left; */
}

.calendar .events-list .inline-event .date {
  /* float: right; */
}

.calendar .events-list .inline-event .info {
  clear: both;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  height: 1.5rem;
}

.calendar .events-list .inline-event {
  /* display: flex;
  justify-content: space-between; */
}

.calendar .btn-t7 {
  padding: 1rem;
}

.calendar .nav-link.active {
  --bs-nav-pills-link-active-bg: var(--colors-purple);
}

.news {
  margin-top: 1rem;
  display: grid;
  width: 100%;
  gap: 2rem;
  justify-content: center;
}

.news-owl-carousel {
  margin-top: 1rem;
  display: block;
  gap: none;
}

.news .article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 992px) {
  .news {
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
  }

  .news .article {
    max-width: 400px;
  }
}

.news .article a,
.news .article a:visited {
  text-decoration: none;
  color: black;
}

.news .date-block {
  font-size: 1.5rem;
}

.news .img {
  border-radius: var(--b-radius);
  height: 0;
  padding-top: 56%;
  background-size: cover;
  background-position: center center;
}

.news .title {
  font-size: 1.2rem;
  color: var(--colors-purple);
}

.news .info a.read-more {
  color: var(--colors-purple);
}

.gallery {
  margin-top: 1rem;
}

.gallery .owl-nav {
  width: fit-content;
  margin-left: auto;
}

.gallery.with-btn .owl-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 1rem);
}

.gallery .imgs-wrap {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 1rem;
}

@media (min-width: 992px) {
  .gallery .imgs-wrap {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.gallery .article-wrap {
  position: relative;
  border-radius: var(--b-radius);
  overflow: hidden;
}

.gallery .info-text {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 1rem;
  background: linear-gradient(rgba(33, 38, 74, 0),
      rgba(33, 38, 74, 0.3),
      rgba(33, 38, 74, 0.8));
}

.gallery .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.gallery .arrows {
  display: none;
  justify-content: end;
  gap: 1rem;
}

@media (min-width: 992px) {
  .gallery .arrows {
    display: flex;
  }
}

/* .gallery .more-button {
  background-color: var(--colors-purple);
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: var(--b-radius);
}
.gallery .more-button:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
} */
.footer-container {
  background-color: var(--colors-purple);
  width: 100%;
  margin-top: 3rem;
}

.footer {
  color: hsla(0, 0%, 100%, 0.7);
  padding-bottom: 1rem;
  max-width: var(--max-container-width);
  padding: 3rem var(--content-padding);
  margin: auto;
}

.footer .top {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .footer .top {
    grid-template-columns: auto 1fr auto;
  }
}

.footer .text {
  color: #fff;
}

.footer .text div:nth-child(2) {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer .text small {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.7rem;
}

.footer .logo {
  display: none;
}

@media (min-width: 992px) {
  .footer .logo {
    border-radius: 50%;
    height: 90px;
    display: block;
    border: 2px solid white;
  }
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.footer .bottom a {
  font-size: 0.8rem;
  text-decoration: none;
  color: hsla(0, 0%, 100%, 0.7);
}

.footer .right {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .footer .right {
    display: block;
  }
}

.footer .right a {
  font-size: 0.9rem;
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
}

.footer .socials {
  display: flex;
  font-size: 1rem;
  margin-bottom: 1rem;
  gap: 1rem;
  justify-content: end;
}

@media (min-width: 992px) {
  .footer .socials {
    justify-content: start;
  }
}

.category.accordion .accordion-header,
.departments .accordion-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.category.accordion .accordion-button,
.category.accordion .accordion-button:not(.collapsed),
.departments .accordion-button,
.departments .accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: #fff !important;
  box-shadow: none !important;
  font-weight: bold !important;
}

.departments .accordion .accordion .accordion-button,
.departments .accordion .accordion .accordion-button:not(.collapsed) {
  font-weight: normal !important;
}

.calendar-widget {
  background: #fff;
  border-radius: var(--b-radius);
  box-shadow: 0 0 10px rgba(33, 38, 74, 0.5);
  padding: 1.5rem;
  text-align: center;
  width: min-content;
  margin: auto;
  margin-top: 0;
}

.calendar-widget #current-month {
  font-size: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.calendar-header button:hover {
  color: var(--colors-purple);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.calendar-grid button {
  color: var(--color-purple);
  background: #fff;
  padding: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: var(--b-radius);
  position: relative;
}

.calendar-grid button.active-event {
  background: var(--colors-purple);
  color: #fff;
  transition: all 0.1s;
}

.calendar-grid button.active-event:hover,
.calendar-grid button.active-event:focus,
.calendar-grid button.active-event:active {
  border-color: var(--colors-purple);
  background: none;
  color: black;
}

.calendar-grid button.other-month {
  color: #ccc;
}

.calendar-grid button.week-day {
  border: none;
}

.calendar-grid button.empty {
  border: none;
  background: none;
  cursor: default;
}

@media (min-width: 992px) {
  .calendar-grid {
    gap: 0.5rem;
  }

  .calendar-grid button {
    width: 40px;
    height: 40px;
  }
}


