.elementor-773 .elementor-element.elementor-element-ac591b3{--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-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-773 .elementor-element.elementor-element-0c9f1b6{--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;}/* Start custom CSS for html, class: .elementor-element-67d34a6 */.main-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 20px;
}

.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 */