/* ################### */
/* 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);
  }

  .stats-wrapper {
    bottom: 0;
    right: 0;
    width: 100vw;
    transform: translateY(100%);
    height: 70svh;
    flex-direction: column;
    box-shadow: none;
  }

  .stat {
    justify-content: end;
  }

  .stat p {
    margin: 0;
    font-size: var(--fontsize-18);
    font-weight: 500;
    line-height: 1;
  }

  .event-wrapper {
    margin-top: 70svh;
    width: 100vw;
  }

  .event-wrapper ul {
    padding-left: 50px;
  }

  .events-nav {
    width: 100svw;
  }

  .feedback-section {
    width: 100vw;
  }

  .feedback-container .header {
    width: 100%;
    align-self: center;
  }

  .feedback-controls-row {
    width: 100%;
  }

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

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

  .socials-wrapper {
    width: 100vw;
  }

  .contact {
    width: 90vw;
    flex-direction: column;
  }

  .contact-img {
    margin: 0;
  }
}

@media screen and (max-width: 568px) {
  .event-wrapper {
    padding: 50px 30px;
  }

  .event-wrapper ul {
    padding-left: 10px;
  }

  .events-nav {
    padding: 0 30px;
  }

  .feedback-section {
    padding: 50px 30px;
  }

  .sticky-note {
    width: 275px;
  }

  .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;
  }
}


@media screen and (min-width: 920px) and (max-width: 1225px) {
  .services ul {
    grid-template-columns: repeat(2, 1fr);
  }
}