
/* Support start */

#support {
  background-color: var(--Juoda); /* Black background */
  background-position: center; /* Center the SVG */
  background-size: cover; /* Cover the entire section */
  background-repeat: no-repeat; /* Prevent repetition */
  min-height: 380px; /* Ensure at least 380px height */
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally if needed */
  text-align: center; /* Optional: Center text */
  padding: 20px 0; /* Ensure spacing */
}

#support img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

#support h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  margin-bottom: 16px;
  color: var(--Balta);
}

#support p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  color: var(--Balta);
}




@media screen and (max-width:768px) {
  
  #support {
    padding: 96px 0px 96px 0px;
  }

  #support .row {
    gap: 24px;
  }
}

/* Support end */

