<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* hero */
.home-hero,
.home-swiper {
  height: 60vh;
  background-color: var(--main-color-dark);
  overflow: hidden;
}

.home-hero .swiper {
  width: 100%;
  height: 100%;
}

.home-hero .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hero .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .controls {
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 12px;
}
.home-hero .swiper-pagination {
  position: relative;
  text-align: start;
  padding-left: 32px;
  padding-right: 32px;
  width: fit-content;
  display: flex;
}

.home-hero .navi {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  width: fit-content;
  min-width: 130px;
}

.home-hero .navi &gt; * {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-color: #fff;
  margin: 6px;
  border: 1px solid #f4f4f4;
}

.home-hero .swiper .swiper-wrapper .swiper-slide::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 60vh;
  content: "";
  z-index: 2;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(60deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(60deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(60deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.home-hero .HeroContent {
  position: absolute;
  bottom: 20%;
  left: 32px;
  z-index: 4;
}

.home-hero .navi &gt; .swiper-button-next::after,
.home-hero .navi &gt; .swiper-button-prev::after {
  font-size: 16px !important;
  color: #000;
}

.swiper-pagination-bullet {
  background-color: var(--background-neutral-200);
}

.home-hero .navi &gt; .swiper-button-next.active::after,
.home-hero .navi &gt; .swiper-button-prev.active::after {
  color: #fff;
}
.home-hero .navi &gt; .swiper-button-next.active,
.home-hero .navi &gt; .swiper-button-prev.active {
  background-color: var(--main-color);
}

/* initiative */
.initiative {
  background-color: var(--main-color-dark);
}

.initiative .item {
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
}

.initiative .item:hover {
  background-color: white;
}

.initiative .item:hover .btn {
  background-color: #0d121c;
  border-color: #0d121c;
  color: white !important;
}

.initiative .item:hover * {
  color: black !important;
  transition: color 0.3s;
}

.initiative .item:hover button {
  /* background-color: black; */
  color: white !important;
}

/* home services */
.home-services {
  background-color: #f9fafb;
}

.news img {
  height: 250px;
  object-fit: contain;
  background-color: #f4f4f4;
}

/* swiper */
.swiper-slide .item {
  border-radius: 15px;
  padding-inline: 13px;
}
.swiper-slide .item &gt; div {
  width: 50px;
  height: 50px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

/* events */
/* section.events  img{
  height: 400px
} */

/* mega events */
.mega-events .navigation-btn {
  position: absolute;
  top: 55%;
  background-color: #f4f4f4;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mega-events .navigation-btn:hover {
  background-color: var(--main-color);
  color: white;
}

.mega-events .navigation-btn.prev {
  left: -50px;
  z-index: 5;
}
.mega-events .navigation-btn.next {
  right: -50px;
  z-index: 5;
}

.mega-events .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}

.mega-events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

@media (max-width: 767px) {
  .mega-events .navigation-btn {
    position: static;
  }
}
</pre></body></html>