/* CSS Document */
body {
    background: #FFF;
}

html {
    background: #3d1b6c;
}

.section-white.news-page .container {
    margin-top: 30px;
}

/*=========================================== EVENTS SECTION ==============================================*/
.events-section {
  padding: 50px 0;
  background: #3d1b6c;
}
.events-section .container {
  opacity: 1;
}
.events-section.ready .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.events-section .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #fff;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
.events-section h2 {
  color: #fff;
  font-size: 40px;
}
.events-section .link-arrow {
  color: #fff;
}
.events-section .link-arrow:hover:before,
.events-section .link-arrow:focus:before {
 left: 0;
 right: unset;
 width: 100%;
 background-color: #fff;
}
.events-section .grid {
  display: flex;
  justify-content: space-evenly;
  margin: 0 -12px;
  overflow: hidden;
  color: #fff;
}
.events-section .grid .item {
  width: 100%;
  margin: 0 12px;
}
.events-section .grid .item .card-item {
  display: block;
  position: relative;
  border-radius: 5px;
  padding: 15px;
  padding-bottom: 48px;
  background: #fff;
  height: 100%;
}
.events-section .grid .item .card-item .bnn {
  display: block;
  position: relative;
  padding-bottom: 58%;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 0 10px;
}
.events-section .grid .item .card-item .bnn img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 1.3s ease;
}
.events-section .grid .item .card-item:hover .bnn img {
  transform: scale(1.1);
}
.events-section .grid .item .card-item h3 {
  color: #6e6eff;
   
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
.events-section .grid .item .card-item p {
  color: #9F9F9F;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  margin: 0 0 10px;
}
.events-section .grid .item .card-item .link-arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #6e6eff;
}
.events-section .grid .item .card-item:hover .link-arrow:before,
.events-section .grid .item .card-item:focus .link-arrow:before {
 left: 0;
 right: unset;
 width: 100%;
 background-color: #6e6eff;
}

@media (max-width: 1200px) {}
@media (max-width: 991px) {}
@media (max-width: 768px) {
	.events-section .grid {
		flex-wrap: wrap;
		gap: 50px;
		margin: 0;
	}
	.events-section .grid .item {
		min-width: 100%;
		margin: 0;
	}
}

.latest-section.top .grid {
	flex-wrap: wrap;
}
.latest-section.top .grid .item {
	width: 33.3333%;
}
@media (max-width: 1200px) {
	.latest-section.top .grid .item {
		width: 50%;
	}
}
@media (max-width: 991px) {}
@media (max-width: 768px) {
	.latest-section.top .grid .item {
		width: 100%;
	}
}

.exclusive-banner {
    height: 42vw;
}
.exclusive-banner h1 span {
    display: block;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 250% */
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 10px 0 0;
}

.card-item{                     /* already in the template */
    display:block;
    position:relative;
}

/* Date badge */
.date-badge{
    position:absolute;
    top:.75rem;
    left:.75rem;
    z-index:5;                 /* Ã¢â€ Â  add this  */
    background:#fff;
    color:#000;
    text-align:center;
    padding:.25rem .5rem;
    border-radius:4px;
    font-weight:600;
    line-height:1;
    box-shadow:0 1px 3px rgba(0,0,0,.15);
}
.date-badge .day  {display:block;font-size:1.25rem;margin:0}
.date-badge .month{display:block;font-size:.65rem;text-transform:uppercase;letter-spacing:.03em;margin:0}
 
.link-arrow:after {
	content: '\f178';
	font-family: "Font Awesome 6 Pro";
	margin-left: 7px;
}
.link-arrow:before {
  content: '';
  position: absolute;
  top: 100%;
  left: unset;
  right: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: all .3s ease;
}
.link-arrow:hover:before,
.link-arrow:focus:before {
 left: 0;
 right: unset;
 width: 100%;
 background-color: var(--color-3, #1E4382);
}
.link-arrow.hidden {
	display: none
}
.link-arrow.full-specs {
	font-size: 14px;
	color: var(--color-3, #1E4382);
}

/*=========================================== BANNER TOP ======================================================*/
.main-banner {
  overflow: hidden;
  position: relative;
  height: 28vw;
  background: #000;
  padding: 40px 0;
}
.main-banner span.parallax {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.main-banner .banner-video-iframe {
  width: 104%;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.main-banner .banner-video-iframe .iframe-holder {
  width: 104%;
  padding-bottom: 56.25%;
  position: relative;
}
.main-banner .banner-video-iframe .iframe-holder iframe {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.main-banner > .container,
.main-banner > .container-fluid {
  position: relative;
  opacity: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.main-banner.ready > .container,
.main-banner.ready > .container-fluid {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}

.main-banner h1,
.main-banner h2,
.main-banner h3,
.main-banner p,
.main-banner li,
.main-banner a {color: #fff;}
.main-banner h1 {
	color: #FFF;
	text-align: center;
	 
	font-size: 60px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2em; /* 83.333% */
	margin: 30px 0;
}
.main-banner h1 > span {
	color: #FFF;
	text-align: center;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	 
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 0;
}
 
@media screen and (max-width: 1400px) {}
@media screen and (max-width: 991px) {
	.main-banner {
	height: 50vw;
	}
}
@media screen and (max-width: 900px) {}
@media screen and (max-width: 768px) {
  .main-banner .banner-video-iframe {
    display: none;
  }
  .main-banner {
	height: 37vw;
	}
  .main-banner h1 {
	font-size: 38px;
  }
}
@media screen and (max-width: 650px) {}


:root{
  --header-h: 0px;
  --banner-offset-min: 130px;  
  --wp-adminbar-h: 0px;
}

 body.logged-in{
  --banner-offset-min: 0px;  
}

 
.main-banner{
  margin-top: max(var(--banner-offset-min), calc(var(--header-h) + var(--wp-adminbar-h)));
}

    /* Safety: if your banner has absolute layers, ensure it stays contained */
    .main-banner{ position: relative; }

    /* 2) Responsive video wrapper */
    .event-video{
      margin: 28px 0;
    }
    .event-video__wrap{
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 */
      overflow: hidden;
      border-radius: 14px;
    }
    .event-video__wrap iframe,
    .event-video__wrap video,
    .event-video__wrap embed,
    .event-video__wrap object{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

     
    .event-gallery{
      margin-top: 26px;
    }
    .event-gallery__grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
	  margin-bottom: 30px;
    }
    @media (max-width: 1024px){
      .event-gallery__grid{ grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px){
      .event-gallery__grid{ grid-template-columns: repeat(2, 1fr); }
    }
    .event-gallery__item{
      display:block;
      border-radius: 14px;
      overflow:hidden;
    }
    .event-gallery__item img{
      width:100%;
      height:100%;
      display:block;
      object-fit: cover;
    }

  a {
    color: #6e6eff;
}

  a:hover {
    color: #000;
}
