/* ################### */
/* Responsive */
/* ################### */

@media screen and (max-width: 768px) {
  #index {
    padding: 0px 0 50px;
  }

  .hero {
    position: relative;
    height: 90svh;
    max-height: 100dvh;
    padding: 0px;
  }

  .hero-image {
    /* opacity: 0.5; */
    position: absolute;
    top: 100%;
    transform: translateY(-100%);
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: center bottom;
    -webkit-mask-image: radial-gradient(
      circle at 50% 150%,
      black 50%,
      transparent 90%
    );
    mask-image: radial-gradient(circle at 50% 150%, black 40%, transparent 90%);
  }

  .hero-content {
    box-sizing: border-box;
    padding: 30px 0;
    margin: 0 auto;
    max-width: fit-content;
  }

  .hero p {
    line-height: 1.4;
    margin: 15px 0;
    font-size: var(--fontsize-18);
  }

  .events-wrapper {
    width: 100vw;
  }

  .base h1 {
    font-size: 100px;
  }

  .base h2 {
    font-size: calc(var(--fontsize-header) - 10px);
  }

  .socials-wrapper {
    width: 100vw;
  }
}

@media screen and (max-width: 568px) {

  .events-wrapper {
    gap: 0px;
    padding: 50px 30px;
  }

  .events-wrapper li {
    width: 100%;
    max-width: 110%;
    flex: 0 0 105%;
  }

  .base {
    padding: 50px 30px;
  }

  .base h1 {
    font-size: 60px;
  }

  .services {
    margin: 20px auto 0;
  }

  .services li {
    border-left: 0px solid;
    border-right: 0px solid;
  }

  .services li:not(:last-child) {
    border-bottom: 2px solid;
    border-image-source: linear-gradient(
      90deg,
      transparent 0%,
      #ffffff 50%,
      transparent 100%
    );
  }

  .socials-wrapper {
    padding: 50px 30px;
  }
}
