.section-title h3 {
  font-weight: 600;
  /* text-transform: uppercase; */
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 2px;
  color: #010202;
  margin-bottom: 5px;
}

a {
  position: relative;
  pointer-events: auto !important;
  z-index: 1 !important;
}

.featured-icon-box-2 {
  height: 300px !important;
}

* {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

@media (min-width: 768px) {
  .isotope-project {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .project-item-wrapper {
    width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .project-item-wrapper {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
  }
}





.two-column {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 10px;
  /* Adds space between items */
}

.two-column li {
  width: 48%;
  /* Each item takes half of the container width */
  display: flex;
  align-items: center;
}

.two-column li i {
  margin-right: 8px;
  /* Adds space between the icon and text */
}

/* Responsive Page Title Heading Styles */
.page-title-heading h2 {
  padding-top: 10vh;
  padding-bottom: 10vh;
  font-weight: 800;
  text-transform: capitalize;
  font-size: 47px;
  line-height: 57px;
  color: var(--white-color);
}

/* Responsive Design Media Queries */
@media screen and (max-width: 480px) {
  .page-title-heading h2 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .page-title-heading h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .page-title-heading h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .page-title-heading h2 {
    font-size: 42px;
    line-height: 52px;
  }
}

@media screen and (min-width: 1366px) {
  .page-title-heading h2 {
    font-size: 47px;
    line-height: 57px;
  }
}

/* more style  */

.snow-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.snowflake {
  position: fixed;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh) translateX(var(--wind-drift))
      rotate(var(--rotation));
  }
}

.gallery-item-title {
  color: white !important;
}