/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

main {
  flex-grow: 1;
}

@media (min-width: 721px) {
  .img-news {
    width: 720px;
    height: auto;
  }
  .img-content-news {
    width: 360px;
    height: auto;
  }
}
@media (max-width: 720px) {
  .img-news {
    width: 100%;
    height: auto;
  }
  .img-content-news {
    width: 180px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  img {
    vertical-align: middle;
    border-style: none;
  }
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  pointer-events: none;
}

.me-2 {
  margin-right: 0.5rem !important;
}
#article-section {
  transition: opacity 0.5s ease;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.visible {
  opacity: 1;
  visibility: visible;
}
.loading {
	border-bottom: 4px solid rgba(0, 0, 0, .2);
	border-left: 4px solid rgba(0, 0, 0, .2);
	border-right: 4px solid rgba(0, 0, 0, .2);
	border-top: 4px solid rgba(0, 0, 0, .5);
	border-radius: 100%;
	height: 32px;
	width: 32px;
	animation: spin .6s infinite linear;
  text-indent: 999em;
  margin:3em auto;
}
@keyframes spin {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}

/* ===== Modern Article Card Styling ===== */

/* Article Section Container */
#article-section {
  transition: opacity 0.5s ease;
}

/* Card Base Styling */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Card Hover Effect */
.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

/* Card Image Styling */
.card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

/* Image Zoom Effect on Hover */
.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Card Body Styling */
.card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Card Title Styling */
.card-title {
  color: #1a1a1a;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  line-height: 1.4;
  margin-bottom: 0.75rem !important;
  transition: color 0.3s ease;
}

/* Card Title Link Hover */
.card-body a:hover .card-title,
.card-title:hover {
  color: #0066cc;
}

/* Card Text Styling */
.card-text {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem !important;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Published Date/Author Styling */
.card-body > p:not(.card-text) {
  color: #888888;
  font-size: 0.85rem;
  margin-bottom: 0.5rem !important;
  font-weight: 500;
}

/* Primary Text (Author/Publisher) */
.text-primary {
  color: #0066cc !important;
  font-weight: 600;
}

/* Read More Link Styling */
.card-body > a[target="_blank"]:last-child {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-body > a[target="_blank"]:last-child:hover {
  color: #0052a3;
  gap: 0.75rem;
}

/* Arrow Icon Animation */
.card-body > a[target="_blank"]:last-child svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 1.1em;
  height: 1.1em;
}

.card-body > a[target="_blank"]:last-child:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .card {
    border-radius: 10px;
  }

  .card-img-top {
    height: 200px;
  }

  .card-title {
    font-size: 1.1rem !important;
  }

  .card-body {
    padding: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  .card {
    border-radius: 8px;
  }

  .card-img-top {
    height: 180px;
  }

  .card-title {
    font-size: 1rem !important;
  }

  .card-body {
    padding: 1rem !important;
  }

  .card-text {
    font-size: 0.9rem;
  }
}

/* Loading State Animation */
.loading {
  animation: spin 0.6s infinite linear;
}

/* Smooth Fade Transitions */
.card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered Animation for Multiple Cards */
.col-md-4:nth-child(1) .card {
  animation-delay: 0.1s;
}

.col-md-4:nth-child(2) .card {
  animation-delay: 0.2s;
}

.col-md-4:nth-child(3) .card {
  animation-delay: 0.3s;
}

.col-md-4:nth-child(n+4) .card {
  animation-delay: 0.4s;
}

/* Focus State for Accessibility */
.card:focus-within {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* Link Styling within Cards */
.card a {
  color: inherit;
  text-decoration: none;
}

.card a:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Article Cards List Container Background Styling ===== */

/* Specific styling for article cards row container only */
.article-cards-container {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 16px;
  padding: 2.5rem !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Add subtle border accent */
.article-cards-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 16px 16px 0 0;
}

/* Responsive adjustments for article cards container */
@media (max-width: 768px) {
  .article-cards-container {
    border-radius: 12px;
    padding: 2rem !important;
  }
}

@media (max-width: 576px) {
  .article-cards-container {
    border-radius: 8px;
    padding: 1.5rem !important;
  }
}

/* ===== Search Input Styling ===== */

.search-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0066cc;
  pointer-events: none;
  transition: color 0.3s ease;
}

.search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1a1a1a;
}

.search-input::placeholder {
  color: #999999;
}

.search-input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  background: #ffffff;
}

.search-input:hover {
  border-color: #0066cc;
}

.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #999999;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-clear:hover {
  color: #0066cc;
  transform: translateY(-50%) scale(1.2);
}

/* ===== Custom Pagination Styling ===== */

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.custom-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  cursor: pointer;
}

.pagination-link:hover {
  border-color: #0066cc;
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

/* Active page styling */
.pagination-active .pagination-link {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  border-color: #0052a3;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  cursor: default;
}

.pagination-active .pagination-link:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Disabled state styling */
.pagination-disabled .pagination-link {
  color: #cccccc;
  border-color: #e0e0e0;
  cursor: not-allowed;
  background: #f5f5f5;
}

.pagination-disabled .pagination-link:hover {
  transform: none;
  box-shadow: none;
  background: #f5f5f5;
  border-color: #e0e0e0;
}

/* Ellipsis styling */
.pagination-ellipsis .pagination-link {
  border: none;
  background: transparent;
  color: #999999;
  cursor: default;
  min-width: auto;
  padding: 0.5rem 0.25rem;
}

.pagination-ellipsis .pagination-link:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}

/* Icon buttons (first, prev, next, last) */
.pagination-first,
.pagination-prev,
.pagination-next,
.pagination-last {
  padding: 0.5rem;
  min-width: 40px;
}

.pagination-first svg,
.pagination-prev svg,
.pagination-next svg,
.pagination-last svg {
  width: 16px;
  height: 16px;
}

/* Smooth transitions for all pagination elements */
.pagination-link {
  position: relative;
  overflow: hidden;
}

.pagination-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 102, 204, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.pagination-link:hover::before {
  left: 0;
}

/* Pagination responsive adjustments */
@media (max-width: 768px) {
  .pagination-list {
    gap: 0.35rem;
  }

  .pagination-link {
    min-width: 38px;
    height: 38px;
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
  }

  .pagination-first,
  .pagination-prev,
  .pagination-next,
  .pagination-last {
    min-width: 38px;
  }
}

@media (max-width: 576px) {
  .search-wrapper {
    max-width: 100%;
  }

  .search-container {
    justify-content: center;
  }

  .pagination-list {
    gap: 0.25rem;
  }

  .pagination-link {
    min-width: 36px;
    height: 36px;
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
  }

  .pagination-first,
  .pagination-prev,
  .pagination-next,
  .pagination-last {
    min-width: 36px;
    padding: 0.4rem;
  }

  .pagination-first svg,
  .pagination-prev svg,
  .pagination-next svg,
  .pagination-last svg {
    width: 14px;
    height: 14px;
  }

  .pagination-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

/* No results message styling */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: #888888;
  font-size: 1rem;
  padding: 2rem;
}

/* Upcoming Events Carousel Section Styling */
.upcoming-events-section {
  margin-bottom: 3rem;
}

.upcoming-events-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.upcoming-events-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #0052a3);
  border-radius: 2px;
}

/* Carousel Styling */
.upcoming-events-carousel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.upcoming-events-carousel {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.carousel-item {
  transition: opacity 0.6s ease-in-out;
  padding: 0;
}

/* Multi-item carousel row layout */
.events-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem;
}

.event-card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-carousel-card {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
}

.event-card-wrapper:hover .event-carousel-card {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.event-carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-wrapper:hover .event-carousel-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.event-carousel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem;
  color: white;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.event-carousel-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-carousel-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.event-carousel-date svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #0066cc;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.event-carousel-description {
  font-size: 0.8rem;
  color: #d0d0d0;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 102, 204, 0.8);
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #0066cc;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-icon {
  width: 24px;
  height: 24px;
  color: white;
  stroke: white;
  flex-shrink: 0;
}

/* Carousel Indicators Wrapper */
.carousel-indicators-wrapper {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 0 0;
  width: 100%;
}

/* Carousel Indicators */
.carousel-indicators {
  position: static;
  display: flex;
  gap: 10px;
  z-index: 20;
  margin: 0;
  padding: 0;
  transform: none;
  bottom: auto;
  left: auto;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0066cc;
  background-color: rgba(0, 102, 204, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  margin: 0;
}

.carousel-indicators button.active {
  background-color: #0066cc;
  border-color: #0066cc;
  width: 32px;
  border-radius: 6px;
}

.carousel-indicators button:hover {
  background-color: rgba(0, 102, 204, 0.6);
}

/* Responsive Design for Upcoming Events Carousel */
@media (max-width: 992px) {
  /* Tablet: 2 events per slide */
  .events-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1rem;
  }

  .event-carousel-card {
    height: 280px;
  }

  .event-carousel-content {
    padding: 1.25rem;
  }

  .event-carousel-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .event-carousel-date {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .event-carousel-description {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .carousel-control-icon {
    width: 20px;
    height: 20px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-indicators-wrapper {
    padding: 1.25rem 0 0 0;
  }

  .carousel-indicators {
    gap: 8px;
  }

  .carousel-indicators button {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators button.active {
    width: 28px;
  }
}

@media (max-width: 768px) {
  .upcoming-events-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Mobile: 1 event per slide */
  .events-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.75rem;
  }

  .event-carousel-card {
    height: 320px;
  }

  .event-carousel-content {
    padding: 1.25rem;
  }

  .event-carousel-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .event-carousel-date {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .event-carousel-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-icon {
    width: 18px;
    height: 18px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-indicators-wrapper {
    padding: 1rem 0 0 0;
  }

  .carousel-indicators {
    gap: 8px;
  }

  .carousel-indicators button {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators button.active {
    width: 28px;
  }
}

@media (max-width: 576px) {
  .upcoming-events-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .events-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .event-carousel-card {
    height: 280px;
  }

  .event-carousel-content {
    padding: 1rem;
  }

  .event-carousel-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .event-carousel-date {
    font-size: 0.75rem;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .event-carousel-date svg {
    width: 14px;
    height: 14px;
  }

  .event-carousel-description {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }

  .carousel-control-icon {
    width: 16px;
    height: 16px;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }

  .carousel-indicators-wrapper {
    padding: 0.75rem 0 0 0;
  }

  .carousel-indicators {
    gap: 6px;
  }

  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }

  .carousel-indicators button.active {
    width: 24px;
  }
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.item-bg {
  width: 300px;
  height: 500px;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s;
  z-index: 0 !important;
}
.item-bg.active {
  left: 0;
  top: 0;
  opacity: 1;
}

.upcoming-events-slider {
  z-index: 2;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .upcoming-events-slider {
    max-width: 1000px;
  }
}
@media screen and (max-width: 576px) {
  .upcoming-events-slider {
    margin-top: 45px;
  }
}
.upcoming-events-slider__wrp {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.upcoming-events-slider__item {
  width: 400px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .upcoming-events-slider__item {
    width: 340px;
  }
}
.upcoming-events-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.upcoming-events-slider__item.swiper-slide-active, .upcoming-events-slider__item.swiper-slide-prev, .upcoming-events-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}
.upcoming-events-slider__ctr {
  position: relative;
  z-index: 12;
}
.upcoming-events-slider__arrow {
  background: #fff;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}
.upcoming-events-slider__arrow:focus {
  outline: none !important;
}
.upcoming-events-slider__arrow .icon-font {
  display: inline-flex;
}
.upcoming-events-slider__arrow.upcoming-events-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}
.upcoming-events-slider__arrow.upcoming-events-slider-next {
  right: 15px;
  transform: translateY(-50%);
}
.upcoming-events-slider__pagination {
  text-align: center;
  margin-top: 50px;
}
.upcoming-events-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #000000;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.upcoming-events-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #000000;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .upcoming-events-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}
.upcoming-events__item {
  padding: 40px;
  color: black;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
}
@media screen and (min-width: 800px) {
  .upcoming-events__item:hover {
    color: #222222;
    transition-delay: 0.1s;
  }
  .upcoming-events__item:hover .upcoming-events-date, .upcoming-events__item:hover .upcoming-events__title, .upcoming-events__item:hover .upcoming-events__txt {
    opacity: 1;
    transition-delay: 0.1s;
  }
  .upcoming-events__item:hover .upcoming-events__img {
    box-shadow: none;
  }
}
.upcoming-events__item.active {
  color: #222222;
}
.upcoming-events__item.active .upcoming-events-date, .upcoming-events__item.active .upcoming-events__title, .upcoming-events__item.active .upcoming-events__txt {
  opacity: 1;
}
.upcoming-events__item.active .upcoming-events__img {
  box-shadow: none;
}
@media screen and (max-width: 992px) {
  .upcoming-events__item {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .upcoming-events__item {
    padding: 20px;
  }
}
.upcoming-events-date {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
  .upcoming-events-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}
.upcoming-events-date__title {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .upcoming-events-date__title {
    margin-right: 10px;
  }
}
.upcoming-events-date__txt {
  font-size: 16px;
}
.upcoming-events__title {
  font-size: 25px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
  .upcoming-events__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.upcoming-events__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.upcoming-events__img {
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  height: 200px;
  margin-top: 30px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
}
@media screen and (max-width: 576px) {
  .upcoming-events__img {
    height: 180px;
    margin-top: 20px;
  }
}
.upcoming-events__img img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
