.elementor-718 .elementor-element.elementor-element-5e12c7b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-animated-headline .elementor-headline-dynamic-wrapper path{stroke:var( --e-global-color-accent );}.elementor-widget-animated-headline .elementor-headline-plain-text{color:var( --e-global-color-secondary );}.elementor-widget-animated-headline .elementor-headline{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-animated-headline{--dynamic-text-color:var( --e-global-color-secondary );}.elementor-widget-animated-headline .elementor-headline-dynamic-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-718 .elementor-element.elementor-element-f0b31cb{--iteration-count:infinite;--animation-duration:1200ms;--dynamic-text-color:#FFFFFF;}.elementor-718 .elementor-element.elementor-element-f0b31cb .elementor-headline{text-align:center;}.elementor-718 .elementor-element.elementor-element-f0b31cb .elementor-headline-dynamic-wrapper path{stroke:#61CE70;stroke-linecap:round;stroke-linejoin:round;}.elementor-718 .elementor-element.elementor-element-f0b31cb .elementor-headline-plain-text{color:#FF0000;}.elementor-718 .elementor-element.elementor-element-ead8ac3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-718 .elementor-element.elementor-element-f0b31cb .elementor-headline{text-align:center;}}/* Start custom CSS for html, class: .elementor-element-6df09d1 */@media only screen and (min-width: 768px) {
    .vdo {
      display: none;
    }
  }

/*----------------------*/
.image-container {
  width: 15vw; /* Using viewport width to scale the circles */
  height: 15vw; /* Keeping the aspect ratio square for circular shape */
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .image-container {
    width: 12vw; /* Decreasing circle size proportionally */
    height: 12vw;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 12vw; /* Further decrease the circle size */
    height: 12vw;
  }
}

@media (max-width: 480px) {
  .image-container {
    width: 14vw; /* Further decrease for smaller screens */
    height: 14vw;
  }
}

/*---------------------------------*/


.container {
  position: relative;
  width: 100%;
  height: auto;
  background: radial-gradient(circle, rgba(50, 0, 100, 1), rgba(0, 0, 0, 1)); /* Universe background color */
  overflow: hidden;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 20px;
}

.card {
  background-color: transparent; /* Transparent background */
  color: white;
  border: 1px solid green; /* Red border */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: 300px;
}

.card-img {
  width: 100%;
  height: 50px;
  object-fit: cover;
}

.card-text {
  padding: 10px;
  font-size: 18px;
}

.card a {
  text-decoration: none;
  color: inherit;
}

.snowfall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.snow {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  animation: fall 5s infinite;
}

@keyframes fall {
  0% {
    top: -10px;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 80%;
  }
}

@media (min-width: 769px) {
  .card {
    width: 30%;
  }
}/* End custom CSS */