/*html {*/
/*    overflow-x: hidden;*/
/*}*/

body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  
}

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 10%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(216, 22%, 4%);
  --color-black-600: hsl(220, 18%, 3%);
  --color-black-700: hsl(220, 27%, 2%);
  --color-black-800: hsl(180, 20%, 1%);
  --color-blue-100: hsl(214, 95%, 93%);
  --color-blue-200: hsl(213, 97%, 87%);
  --color-blue-300: hsl(212, 96%, 78%);
  --color-blue-400: hsl(213, 94%, 68%);
  --color-blue-500: hsl(217, 91%, 60%);
  --color-blue-600: hsl(221, 83%, 53%);
  --color-blue-700: hsl(224, 76%, 48%);
  --color-blue-800: hsl(226, 71%, 40%);
  --color-blue-900: hsl(224, 64%, 33%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

main {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  /* height: -webkit-fill-available; */
  color: var(--color-white-100);
  background-color: var(--color-black-500);
  width: 100%;
  height: 100vh; /* Make it cover the entire viewport height */
  background: url("../img/holieventimage.jpg") no-repeat center center fixed;
  background-size: cover; /* Ensures the image covers the entire area */
  overflow: hidden;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.448rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  mix-blend-mode: overlay;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  mix-blend-mode: overlay;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  mix-blend-mode: overlay;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-200) !important;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
    margin-left: 3rem;
  }
}
.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.75rem;
}
.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 1024px) {
  main {
    height: auto;
  }
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}

/*---------------- social media -----------------*/
.social-links,
.social-links * {
  box-sizing: content-box; /* Ensure styles inside social-links are not affected by global box-sizing resets */
}

.social-links {
  position: fixed;
  top: 250px; /* Adjust as needed for vertical placement */
  right: 0; /* Change from 'left: 0' to 'right: 0' */
  z-index: 9999;
  height: 0;
}

.social-links ul {
  padding: 0;
  transform: translate(270px, 0); /* Adjust as needed for horizontal placement */
  margin: 0;
}

.social-links ul li {
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 300px;
  text-align: left; 
  padding: 10px;
  border-radius: 30px 0 0 30px; 
  transition: all 1s;
}

.social-links ul li:hover {
  transform: translate(-110px, 0); 
  background: rgba(255, 255, 255, 0.4);
}

.social-links ul li:hover a {
  color: #000;
}

.social-links ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}

.social-links ul li i {
  margin-right: 10px; 
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background: #ffffff;
  transform: rotate(0deg);
}



/*-------------------- Sponsers ------------------------------*/
.sponsers {
  align-items: center;
  /* background: #E3E3E3; */
  display: flex;
  height: 40vh;
  justify-content: center;
}

.sponserheading{
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 2.4rem;
  margin: 10px 0px 20px 10px;
  padding: 20px 0px 0px 0px;
}

/* White Gradient Mixin */
.white-gradient {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 768px){
  .white-gradient{
    background: none;
  }
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* Styling */
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 90%;
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide {
  height: 100px;
  width: 250px;
}


/*--------------------- What we Do ----------------------*/

@import url(https://fonts.googleapis.com/css?family=Raleway:400,200,300,800);
@import url(http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

/* .whatwedo *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

.whatheading{
  display: flex;
  justify-content: left;
  text-align: left;
  margin: 10px 0px 20px 10px;
  padding: 20px 0px 0px 0px;
}

.whatwedo {
  font-family: "Nunito", sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0px 100px 0px;
  margin-top: -50px; */
}

figure.snip0057 {
    font-family: 'Raleway', Arial, sans-serif !important;
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 380px;
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    color: #000000;
}

figure.snip0057 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

figure.snip0057 .image {
    width: 50%;
    overflow: hidden;
    z-index: 1;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

figure.snip0057 .image img {
    position: relative;
    display: block;
    left: -45%;
    z-index: 1;
    -webkit-transform: skew(15deg);
    transform: skew(15deg);
}

figure.snip0057:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 45%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transform: skewX(-17deg);
    transform: skewX(-17deg);
    -webkit-box-shadow: 15px 0px 25px rgba(0, 0, 0, 0.7);
    box-shadow: 15px 0px 25px rgba(0, 0, 0, 0.7);
}

figure.snip0057 figcaption {
    padding: 20px 30px 20px 20px;
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 50%;
}

figure.snip0057 figcaption h2,
figure.snip0057 figcaption p {
    margin: 0;
    text-align: right;
    padding: 10px 0;
    width: 100%;
}

figure.snip0057 figcaption h2 {
    font-size: 1.3em;
    font-weight: 300;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

figure.snip0057 figcaption h2 span {
    font-weight: 800;
}

figure.snip0057 figcaption p {
    font-size: 0.9em;
    opacity: 0.8;
}

figure.snip0057 figcaption .icons {
    width: 100%;
    text-align: right;
}

figure.snip0057 figcaption .icons i {
    font-size: 26px;
    padding: 5px;
    top: 50%;
    color: #000000;
    opacity: 0;
}

figure.snip0057 figcaption a {
    opacity: 0.3;
}

figure.snip0057 figcaption a:hover {
    opacity: 0.8;
}

figure.snip0057 .position {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
    padding: 15px 30px;
    font-size: 0.9em;
    opacity: 1;
    font-style: italic;
    color: #ffffff;
    background: #000000;
}

figure.snip0057.blue .position {
    background: #20638f;
}

figure.snip0057.red .position {
    background: #962d22;
}

figure.snip0057.yellow .position {
    background: #bf6516;
}

figure.snip0057:hover figcaption,
figure.snip0057.hover figcaption {
    bottom: 40px;
}

figure.snip0057:hover .icons i,
figure.snip0057.hover .icons i {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

figure.snip0057:hover:before,
figure.snip0057.hover:before {
    -webkit-animation: shadow 0.6s ease-in-out;
    animation: shadow 0.6s ease-in-out;
}

@media (max-width:1024px){
  .whatwedo{
    width: 100%;
    height: auto;
    /* flex-direction: column; */
    flex-wrap: wrap;
  }
}

@-webkit-keyframes shadow {
    0% {
        left: 0px;
    }

    50% {
        left: -5px;
    }

    100% {
        left: 0px;
    }
}

@keyframes shadow {
    0% {
        left: 0px;
    }

    50% {
        left: -5px;
    }

    100% {
        left: 0px;
    }
}

/*------------------- Why Choose US ------------*/
.hover-card-container {
	position: relative;
	max-width: 560px;
	max-height: 680px;
	cursor: pointer;

}

.why-heading {
  font-size: 2.4rem;
  text-align: left !important;
}

.hover-card-container:before {
	position: absolute;
	content: '';
	display: block;
	top: 40px;
	right: 120px;
	width: 70%;
	height: 100%;
	/* background-image: repeating-linear-gradient(135deg, rgba(12, 134, 255, 0.27) 0px, rgba(181, 181, 181, 0.27) 1px, transparent 1px, transparent 11px), repeating-linear-gradient(45deg, rgba(181, 181, 181, 0) 0px, rgba(181, 181, 181, 0.27) 1px, transparent 1px, transparent 11px), linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); */
}

.hover-card-container .inner {
	position: relative;
	max-width: 400px;
	height: 500px;
	overflow: hidden;
	z-index: 1;
}

.hover-card-container .inner .front {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.hover-card-container .front-card-title {
	position: absolute;
	width: 90%;
	bottom: 0;
	right: 0;
	background: #fff;
	padding: 2rem;
}

.hover-card-container .inner .back {
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	transform: translate(-100%);
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	height: 100%;
	width: 100%;
  color: #000000;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(5px);
	padding: 3rem;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 3rem;
	z-index: 100;
}

.hover-card-container h4 {
	font-size: 2rem;
	font-weight: normal;
}

.hover-card-container img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.hover-card-container:hover .back {
	transform: translate(0);
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

/*------------------- new-menu-item ------------------*/
.new-menu {
  position: fixed;
  top: -100px; /* Initially hidden (animated with transition) */
  left: 0;
  width: 100%;
  background-color: #0056b3;
  color: white;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  z-index: 990;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* padding: 10px 20px; */
  transition: top 0.3s ease-in-out; /* Smooth show/hide transition */
}
.new-menu.visible {
  top: 94px; /* Visible when scrolled past the threshold */
}
.new-menu-item {
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  padding: 8px;
}
.new-menu-item:hover {
  color: #007bff;
  background-color: white;
}
.new-quote-button {
  margin: 0%;
  padding: 3px 15px;
  color: #0056b3;
  background-color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 1.3s ease, color 0.3s ease;
}
.new-quote-button:hover {
  background-color: #ffffff;
}
/* Default visibility */
.new-menu {
  display: flex; /* Ensure it is visible by default */
  flex-wrap: wrap; /* Adjust for responsiveness */
}
/* Hide the menu on screens smaller than 768px */
@media (max-width: 980px) {
  .new-menu {
    display: none; /* Hide the menu */
  }
}

@media (max-width: 768px) {
  .navbar {
    padding-left: 0rem !important;
    padding-right: 1rem !important;
  }
}


/*--------------------- OUR Events ----------------------*/
/* @import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap"); */

body {
  /* font-family: "Baloo 2", cursive; */
  font-size: 16px;
  color: #ffffff;
  text-rendering: optimizeLegibility;
  font-weight: initial;
}

.dark {
  background: #110f16;
}

.light {
  background: #f3f5f7;
}

a, a:hover {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

#ourevents {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #091e3e;;
}

.postcard.dark {
  background-color: #18151f;
}

.postcard.light {
  background-color: #e1e5ea;
}

.postcard.t-dark {
  color: #18151f;
}

.postcard a {
  color: inherit;
}

.postcard h1, .postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.postcard .small {
  font-size: 80%;
}

.postcard__title {
  font-size: 1.75rem;
}

.postcard__img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

.postcard__img_link {
  display: contents;
}

.postcard__bar {
  width: 50px;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}

.postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}

.postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}

.postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}

.postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}

.postcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}

.postcard:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;
  }

  .postcard__title {
    font-size: 2rem;
  }

  .postcard__tagbox {
    justify-content: start;
  }

  .postcard__img {
    max-width: 300px;
    max-height: 100%;
    transition: transform 0.3s ease;
  }

  .postcard__text {
    padding: 3rem;
    width: 100%;
  }

  .postcard__text::before {
    content: "";
    position: absolute;
    display: block;
    background: #18151f;
    top: -20%;
    height: 130%;
    width: 55px;
  }

  .postcard:hover .postcard__img {
    transform: scale(1.1);
  }

  .postcard:nth-child(2n+1) {
    flex-direction: row;
  }

  .postcard:nth-child(2n+0) {
    flex-direction: row-reverse;
  }

  .postcard:nth-child(2n+1) .postcard__text::before {
    left: -12px !important;
    transform: rotate(4deg);
  }

  .postcard:nth-child(2n+0) .postcard__text::before {
    right: -12px !important;
    transform: rotate(-4deg);
  }
}

@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }

  .postcard__text::before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
  }

  .postcard.dark .postcard__text::before {
    background: #18151f;
  }

  .postcard.light .postcard__text::before {
    background: #e1e5ea;
  }
}

/* Colors */

.postcard .postcard__tagbox .green.play:hover {
  background: #79dd09;
  color: black;
}

.green .postcard__title:hover {
  color: #79dd09;
}

.green .postcard__bar {
  background-color: #79dd09;
}

.green::before {
  background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.green:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .blue.play:hover {
  background: #0076bd;
}

.blue .postcard__title:hover {
  color: #0076bd;
}

.blue .postcard__bar {
  background-color: #0076bd;
}

.blue::before {
  background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .red.play:hover {
  background: #bd150b;
}

.red .postcard__title:hover {
  color: #bd150b;
}

.red .postcard__bar {
  background-color: #bd150b;
}

.red::before {
  background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.red:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .yellow.play:hover {
  background: #bdbb49;
  color: black;
}

.yellow .postcard__title:hover {
  color: #bdbb49;
}

.yellow .postcard__bar {
  background-color: #bdbb49;
}

.yellow::before {
  background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

.yellow:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

@media screen and (min-width: 769px) {
  .green::before {
    background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }

  .green:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }

  .blue::before {
    background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }

  .blue:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }

  .red::before {
    background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }

  .red:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }

  .yellow::before {
    background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }

  .yellow:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
}

/*------------------ Upcoming Events -------------------------*/
/* @import url('https://fonts.googleapis.com/css?family=Libre+Franklin:300,400,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300&display=swap'); */

/* Colors */
:root {
    --white-20: rgba(255, 255, 255, 0.2);
    --white-60: rgba(255, 255, 255, 0.6);
    --white: rgba(255, 255, 255, 1);
    --main-color: #ffc107;
    --bg-color: #323232;
}

* {
    outline: none;
}

/* Timeline Carousel */
.timeline-carousel {
    margin: 0;
    background-color: var(--bg-color);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 86px 6.9444% 90px 6.9444%;
    position: relative;
    overflow: hidden;
}

.timeline-carousel:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6.9444%;
    background-color: var(--bg-color);
    z-index: 3;
}

.timeline-carousel:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 6.9444%;
    background-color: var(--bg-color);
    opacity: 0;
    z-index: 3;
}

.timeline-carousel .slick-list {
    overflow: visible;
}

.timeline-carousel .slick-dots {
    bottom: -73px;
}

.timeline-carousel h1 {
    color: var(--white);
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
}

.timeline-carousel p {
    color: var(--white);
    font-weight: 300;
}

.timeline-carousel__image {
    padding-right: 30px;
}

.timeline-carousel__item {
    cursor: grab;
}

.timeline-carousel__item .media-wrapper {
    opacity: 0.4;
    padding-bottom: 71.4%;
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
    width: calc(100% - 30px);
}

.timeline-carousel__item-inner {
    position: relative;
    padding-top: 45px;
}

.timeline-carousel__item-inner:after {
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    content: "";
    border-bottom: 1px solid var(--white-20);
}

.timeline-carousel__item-inner .year {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 36px;
    line-height: 36px;
    color: var(--white);
    display: table;
    letter-spacing: -1px;
    padding-right: 10px;
    background-color: var(--bg-color);
    z-index: 1;
    position: relative;
    margin: -15px 0 20px;
    font-weight: 700;
}

/* Event Details Specific Styles */
.event-details {
  max-width: 600px;
  margin: 0 auto;
  padding: 5px;
  /* background-color: #f8f9fa; */
  border-radius: 8px;
  /* border: 1px solid #dee2e6; */
}

.event-details p {
  margin: 8px 0;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

.event-details p strong {
  /* display: inline-block; */
  width: 90px;
  color: #ffffff;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .event-details p strong {
      width: 100%;
      margin-bottom: 2px;
  }
}

.timeline-carousel__item-inner .year:after {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background-color: var(--bg-color);
    z-index: 3;
}

.timeline-carousel__item-inner .month {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-carousel__item-inner p {
    font-size: 15px;
    line-height: 18px;
    color: var(--white);
    width: 95%;
    font-weight: 400;
    margin-bottom: 5px;
}

.timeline-carousel__item-inner .read-more {
    font-size: 12px;
    color: var(--main-color);
    display: table;
    margin-bottom: 10px;
    font-weight: 900;
    text-decoration: none;
    position: relative;
}

.timeline-carousel__item-inner .read-more:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    border-bottom: 2px solid var(--main-color);
    transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.timeline-carousel__item-inner .read-more:hover:after {
    width: 100%;
}

.timeline-carousel__item-inner .pointer {
    height: 29px;
    position: relative;
    z-index: 1;
    margin: -4px 0 16px;
}

.timeline-carousel__item-inner .pointer:after {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    position: absolute;
    content: "";
}

.timeline-carousel__item-inner .pointer:before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 4px;
    background-color: var(--main-color);
    position: absolute;
    content: "";
}

.timeline-tag__item a{
  background-color: white;
  padding: 8px;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}

.slick-active .media-wrapper {
    opacity: 1 !important;
}

/* Slick Dots */
.slick-dots {
  bottom: 160px;
  list-style: none;
  position: absolute;
  width: 100%;
  
  left: 0;
  text-align: center;
  z-index: 2;
}

.slick-dots li {
  cursor: pointer;
  display: inline-block;
  margin: 0 6px;
  position: relative;
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active button {
  background: var(--main-color);
  border-color: var(--main-color);
}

/* Remove text or numbers from the dots */
.slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--white-60);
  border-color: var(--white-60);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  text-indent: -9999px; /* Hides numbers or text */
  overflow: hidden;     /* Ensures no overflow is visible */
  position: relative;
}

/* Ensure the hover effect is still visible */
.slick-dots li button:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}


/* Link */
.link {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 9999;
}

.link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.link .fa {
    font-size: 28px;
    margin-right: 8px;
    color: #fff;
}

/* Navigation */
.slick-prev, .slick-next {
    position: absolute;
    top: 0;
    z-index: 9;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.slick-prev svg,
.slick-next svg {
    height: auto;
    width: 18px;
    padding-bottom: 2px;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 30px;
}



/*-------------------- Frequently asked Questions ----------------------*/
.faq {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Theme variables */
  --faq-theme-color: rgb(13, 110, 253);
  --faq-theme-color-rgb: 13, 110, 253;
  --faq-item-bg: #ffffff;
  --faq-item-shadow: 0px 4px 44px rgba(159, 190, 218, 0.37);

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .faq {
    padding: 100px 0 ;
  }
}

/* Gray Block Style */
.gray .faq,
.faq.gray {
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .faq,
.faq.dark-gray {
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  --faq-item-bg: rgb(11, 23, 39);
  --faq-item-shadow: 0px 4px 22px rgba(0, 0, 0, 0.2);
}

/* Dark Block Style */
.dark .faq,
.faq.dark {
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  --faq-item-bg: rgb(30, 39, 53);
  --faq-item-shadow: 0px 4px 22px rgba(0, 0, 0, 0.2);
}

.faq-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: var(--bs-body-color);
}

.faq-heading2 {
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .faq-heading {
    font-size: 45px ;
    line-height: 45px ;
  }
}

.faq-sub-heading {
  font-size: 18px;
  line-height: 30px;
  color: var(--bs-body-color);
  opacity: 0.7;
}

.faq-bg-holder {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 150px;
  width: 100%;
  border-radius: 15px;
}

.faq-item {
  background-color: transparent;
  border-radius: 10px;
}

.faq-item * {
  color: var(--bs-body-color);
}

.faq-item .btn {
  white-space: normal;
}

.faq-btn-collapse [class*="fa-"] {
  transition: transform 0.25s ease-in-out;
}

.faq-btn-collapse:focus {
  box-shadow: none;
}

.faq-btn-collapse.active [class*="fa-"],
.faq-btn-collapse[aria-expanded="true"] [class*="fa-"] {
  transform: rotate(-180deg);
}

.faq .collapsing,
.faq .collapse {
  background-color: var(--faq-item-bg);
  box-shadow: var(--faq-item-shadow);
  border-radius: 15px;
}


/*----------------- Contact-Form -------------------*/

/* Centered Heading for Contact Form */
/* .contact-form-heading {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-top: 55px;
  margin-bottom: 20px;
} */

/* Base Styles for Custom Form */
/* .custom-form-container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.custom-form-container {
  font-family: "Nunito", sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0px 100px 0px;
  margin-top: -50px;
}
.custom-form-container .custom-form-left {
  flex: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #004080;
} */
/* .custom-form-container .custom-form-left img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.custom-form-container .custom-form-right {
  flex: 1.5;
  background-color: #fff;
  color: #333;
  padding: 30px;
  border-radius: 8px;
}
.custom-form-container .custom-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.custom-form-container .custom-form-group {
  flex: 1;
  min-width: 45%;
}
.custom-form-container .custom-form-right label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #444;
}
.custom-form-container .custom-form-right input,
.custom-form-container .custom-form-right select,
.custom-form-container .custom-form-right textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #f9f9f9;
}
.custom-form-container .custom-form-right button {
  width: 30%;
  padding: 5px;
  background-color: #ff4b2b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.custom-form-container .custom-form-right button:hover {
  background-color: #e03e20;
} */
/* Responsive Design */
/* @media (max-width: 768px) {
  .contact-form-heading {
    margin-bottom: 40%;
    margin-top: 50px;
  }

  .custom-form-container {
    flex-direction: column;
    gap: 10px;
    padding: 0px;
    margin: 25% 0% 40%;
  }
  .custom-form-container .custom-form-right {
    padding: 20px;
  }
  .custom-form-container .custom-form-group {
    min-width: 100%;
  }
}
@media (max-width: 480px) {
  .custom-form-container .custom-form-left img {
    width: 80%;
  }
  .custom-form-container .custom-form-right input,
  .custom-form-container .custom-form-right select,
  .custom-form-container .custom-form-right textarea {
    padding: 10px;
    font-size: 13px;
  }
  .custom-form-container .custom-form-right button {
    padding: 10px;
    font-size: 14px;
  }
} */

/* Get in touch */

.contact-rows {
  background-color: #F9A826;
}

.contact-rows {
  height: 100vh;
}

.contact-form-control {
  display: block;
  width: 100%;
  min-height: calc(1.5em + .75rem + 2px);
  padding: .575rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 52px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact-card {
  padding: 20px;
  background-color: #eee;
  padding-bottom: 50px;
  padding-top: 50px;
}

.contact-form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #f9a826;
  outline: 0;
  box-shadow: none;
}

.contact-border-rad {
  /* border-top-right-radius: 28px;
  border-bottom-right-radius: 28px; */
  border-radius: 28px;
  color: #fff;
  background-color: #f9a826;
  border-color: #f9a826;
}

.contact-border-rad:hover {
  background-color: #f9a826;
  border-color: #f9a826;
}

.contact-border-rad1 {
  /* border-top-left-radius: 28px;
  border-bottom-left-radius: 28px; */
  border-radius: 28px;
  color: #fff;
  background-color: #f9a826;
  border-color: #f9a826;
}

.contact-border-rad1:hover {
  background-color: #f9a826;
  border-color: #f9a826;
}

.contact-heading {
  font-weight: bold;
  /* font-size: 25px; */
  line-height: 25px;
  /* color: var(--bs-body-color); */
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

      .footer-10 {
        background: linear-gradient(to left, #9545ce, #5fa7e6);
        color: #fff;
        padding: 50px 0;
        transition: 0.2s;
        margin-top: 80px;
        /* margin-bottom: -60px; */
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.8px;
        transition: 0.2s;
      }
      .footer-content-logo-10 {
        text-align: justify;
        line-height: 20px;
        font-size: 14px;
        margin-top: -30px;
      }
      .f-logo-10 {
        margin-top: -40px;
      }
      .footer-heading-span-10 {
        color: aqua;
        margin-left: 30%;
        font-size: 30px;
      }
      #col-f-10 {
        margin-top: 30px;
        text-align: -webkit-center;
      }
      .container-10 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      .column-10 {
        width: 20%;
        padding: 0 15px;
        box-sizing: border-box;
      }

      .column-10 p {
        font-size: 15px;
        width: 210px;
        line-height: 20px;
      }

      .column-10 h3 {
        color: #fff;
        font-size: 20px;
        margin-bottom: 20px;
      }
      .column-10 ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .column-10 ul li {
        margin-bottom: 10px;
        font-size: 17px;
      }

      .column-10 img {
        border-radius: 50%;
      }

      .social-icons-10 {
        margin-top: 20px;
      }
      .column-10 .social-icons-10 a {
        color: #fff;
        margin-right: 10px;
        font-size: 30px;
        transition: transform 0.2s, color 0.2s;
        transition: 0.2s;
      }
      .column-10 .social-icons-10 a:hover {
        transform: translateX(-5px);
        color: #0033ff;
        transition: 0.2s;
      }
      .column-10 a {
        text-decoration: none;
        color: #fff;
        transition: color 0.2s;
      }
      .column-10 a:hover {
        color: gold;
        font-weight: 600;
        transition: 0.2s;
      }
      hr {
        border-top: 2px solid white !important;
        width: 50% !important;
        margin: 20px auto !important;
      }

      .copyright-10 {
        text-align: center;
      }
      .copyright-10 span {
        color: red;
        animation: pulse-10 3s linear infinite;
      }

      @keyframes pulse {
        0% {
          transform: rotate(-45deg) scale(1);
          opacity: 0;
        }
        50% {
          transform: rotate(-45deg) scale(1.3);
          opacity: 1;
        }
        100% {
          transform: rotate(-45deg) scale(1);
          opacity: 1;
        }
      }

      @media only screen and (min-width: 330px) and (max-width: 990px) {
        .container-10 {
          flex-wrap: wrap;
        }

        .column-10 {
          width: calc(50% - 10px);
          margin-bottom: 10px;
          margin-left: 0px;
        }

        .column-10:nth-child(2) {
          margin-top: 102px;
          margin-left: 20px;
        }

        .column-10:last-child {
          margin-right: 0;
        }

        .column-10:nth-child(5) {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .footer-heading-span-10 {
          margin-left: 0;
          text-align: center;
          font-size: 24px;
        }

        hr {
          width: 80%;
        }
      }

      @media only screen and (max-width: 320px) {
        .column-10 {
          width: 100%;
        }

        .footer-heading-span-10 {
          font-size: 24px;
        }

        .column-10:nth-child(5) {
          width: 100%;
        }
        hr {
          width: 80%;
        }
      }

