#section-2 {
  border-bottom: 15px solid var(--secondary-col);
  position: relative;
  overflow: hidden;
}

#section-2::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(45, 45, 45, 0.5) 0%,
    transparent 70%
  );
  z-index: 0;
}

.sec2-img {
  display: block;
  height: 600px;
  width: 550px;
  border-radius: 25px;
}

@media (max-width: 576px) {
  .sec2-img {
    height: 300px;
    width: 350px;
    border-radius: 25px;
  }
}
