#index {
  margin: 0 auto;
  height: fit-content;

  display: flex;
  flex-direction: column;
}

.hero {
  box-sizing: border-box;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  background: var(--primary);
  min-height: 80svh;
  max-height: 100dvh;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  height: 100%;
  object-position: left bottom;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(
    circle at 85% 50%,
    black 40%,
    transparent 90%
  );
  mask-image: radial-gradient(circle at 85% 50%, black 40%, transparent 90%);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-content {
  width: 90%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-size: 22px;
  color: white;
  font-weight: 400;
}

.hero-title {
  font-size: var(--fontsize-header);
  line-height: 0.8;
  color: white;
  font-weight: 700;
}

.hero-p {
  line-height: 1.25;
  margin: 30px 0;
  font-size: var(--fontsize-20);
  line-height: 1.1;
  color: white;
  font-weight: 400;
}

.hero-button {
  border-radius: 9999px;
  padding: 13px 20px;
  height: fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 10px;
  color: white;
  align-items: center;
  font-size: var(--fontsize-16);
  font-weight: 400;
}

.hero-button::before {
  transform: translateX(50%);
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background: linear-gradient(90deg, #4d5efb00 0%, #4d5dfb 50%, #67e1fb 100%);
  width: 150%;
  height: 100%;
  transition: var(--apple-animation);
  opacity: 1;
}

.hero-button .material-symbols-outlined {
  transform: translateX(-50%) rotate(-90deg);
  font-size: 22px;
  transition: var(--apple-animation);
}

.hero-button:hover::before {
  transform: translateX(-50%);
  transition: var(--apple-animation);
  opacity: 1;
}

.hero-button:hover .material-symbols-outlined {
  transform: translateX(0%) rotate(-90deg);
  transition: var(--apple-animation);
}

.events-wrapper {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 100px 50px;
  width: 90vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.events-wrapper ul {
  display: flex;
  gap: 30px;
  padding: 15px 10px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-wrapper ul::-webkit-scrollbar {
  display: none;
}

.events-wrapper li {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  flex: 0 0 100%;
  scroll-snap-align: start;
  transition: var(--apple-animation);
}

.events-wrapper li::before {
  background: 0 0;
  border-top: 10px solid #fff;
  border-right: 10px solid #fff;
  border-top-right-radius: 30px;
  content: " ";
  display: block;
  height: 18px;
  position: absolute;
  right: -10px;
  top: 20px;
  width: 21px;
  z-index: 0;
}

.events-wrapper li::after {
  background: 0 0;
  border-top: 10px solid #fff;
  border-right: 10px solid #fff;
  border-top-right-radius: 20px;
  content: " ";
  display: block;
  height: 18px;
  position: absolute;
  right: 110px;
  top: -10px;
  width: 21px;
  z-index: 0;
}

.events-wrapper li img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;
}

.events-wrapper li h3 {
  padding: 5px 0;
  line-height: 1;
  font-size: var(--fontsize-18);
  font-weight: 600;
}

.events-wrapper li p {
  text-transform: uppercase;
  border-bottom-left-radius: 10px;
  text-align: center;
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: white;
  height: 35px;
  width: 125px;
  font-size: var(--fontsize-16);
  font-weight: 500;
  color: var(--dark);
}

.events-wrapper li:hover {
  transform: scale(1.01);
  transition: var(--apple-animation);
}

.events-nav {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.events-nav a {
  cursor: pointer;
  border-radius: 50%;
  height: 40px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--primary);
}

.disabled-btn {
  pointer-events: none;
  opacity: 0.3;
  background-color: var(--dark) !important;
}

.base {
  box-sizing: border-box;
  padding: 100px 50px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}

.base h1 {
  font-size: 180px;
  color: white;
  font-weight: 600;
  letter-spacing: 5%;
  line-height: 1;
  user-select: none;
}

.base h2 {
  text-align: center;
  font-size: var(--fontsize-header);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 1%;
}

.base h2 span {
  color: white;
  font-weight: 600;
}

.services {
  width: 90%;
  margin: 50px auto 0;
}

.services ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services li {
  border-left: 2px solid;
  border-right: 2px solid;
  border-image-source: linear-gradient(
    180deg,
    transparent 0%,
    #ffffff 50%,
    transparent 100%
  );
  border-image-slice: 1;

  box-sizing: border-box;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
}

.services li h3 {
  text-align: center;
  font-size: var(--fontsize-18);
  font-weight: 600;
}

.services li span {
  font-size: 50px !important;
  user-select: none;
}

.services li p {
  text-align: center;
  font-size: var(--fontsize-16);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.socials-wrapper {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 100px 50px;
  width: 90vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.socialList {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.socialList li {
  min-width: 200px;
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 70svh;
  max-width: 400px;
  transition: var(--apple-animation);
}

.socialList li a video,
.socialList li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.socialList li:hover {
  flex-grow: 2;
  transition: var(--apple-animation);
}

.socialList li a i {
  position: absolute;
  top: 20px;
  right: 10px;
  font-size: 30px;
  color: white;
}
