/* =========================================================
   ROOT
========================================================= */

:root {

  --apple-blue: #2997ff;
  --apple-purple: #9b5cff;
  --apple-pink: #ec5f9e;
  --apple-orange: #f5a623;

  --apple-black: #111111;
  --apple-dark: #242424;

  --apple-text: #252525;
  --apple-muted: #707070;

  --apple-border: #e4e4e4;

  --apple-bg: #f7f7f8;
  --apple-white: #ffffff;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  color: var(--apple-text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;

  background: #ffffff;
}


img {
  max-width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.apple-hero {
  width: 100%;

  overflow: hidden;

  background: #f5f5f5;
}


.apple-hero-image {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}


/* =========================================================
   COMMON
========================================================= */

.apple-section-label {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 17px;

  color: #777777;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.6px;

  text-transform: uppercase;
}


.apple-section-label > span {
  width: 35px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #2997ff,
      #9b5cff,
      #ec5f9e,
      #f5a623
    );
}


/* =========================================================
   ABOUT
========================================================= */

.apple-about-section {
  position: relative;

  padding: 105px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(236, 95, 158, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 10% 85%,
      rgba(41, 151, 255, 0.09),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #f8f8f8
    );
}


.apple-about-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  filter: blur(150px);

  pointer-events: none;
}


.apple-glow-left {
  left: -230px;
  bottom: -220px;

  background:
    rgba(41, 151, 255, 0.12);
}


.apple-glow-right {
  top: -220px;
  right: -230px;

  background:
    rgba(226, 82, 144, 0.1);
}


/* Heading */

.apple-section-title {
  margin: 0;

  color: #151515;

  font-size:
    clamp(35px, 3vw, 47px);

  font-weight: 300;

  line-height: 1.05;

  letter-spacing: -1.9px;
}


.apple-section-title strong {
  display: block;

  margin-top: 5px;

  font-weight: 600;

  background:
    linear-gradient(
      90deg,
      #2494f2,
      #925ef0,
      #e75d9f,
      #ef9f21
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.apple-section-intro {
  max-width: 600px;

  margin: 19px auto 0;

  color: #0a0909;

  font-size: 14px;

  line-height: 1.8;
}


.apple-about-row {
  margin-top: 30px;
}


/* =========================================================
   ABOUT CARD
========================================================= */

.apple-about-card {
  height: 100%;

  padding: 38px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 255, 255, 0.09),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #111111,
      #292929
    );

  box-shadow:
    0 30px 75px
    rgba(0, 0, 0, 0.16);
}


.apple-small-label {
  display: block;

  margin-bottom: 15px;

  color:
    WHITE;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.apple-about-card h3 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(36px, 3vw, 35px);

  font-weight: 300;

  line-height: 1.08;

  letter-spacing: -1.3px;
}


.apple-about-card h3 strong {
  display: block;

  margin-top: 5px;

  font-weight: 600;
}


.apple-about-card > p {
  margin: 23px 0 0;

  color:
   white;

  font-size: 16px;

  line-height: 1.8;
}


.apple-about-card > p strong {
  color: #ffffff;
}


/* Highlight */

.apple-about-highlight {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 32px;

  padding: 17px;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  background:
    rgba(255, 255, 255, 0.06);
}


.apple-highlight-icon {
  flex: 0 0 47px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 47px;
  height: 47px;

  color: #111111;

  background:
    linear-gradient(
      135deg,
      #58b5ff,
      #b16cff,
      #ed6b9f,
      #ffc25a
    );
}


.apple-about-highlight span {
  display: block;

  margin-bottom: 4px;

  color:
    white;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.apple-about-highlight strong {
  display: block;

  color: #ffffff;

  font-size: 14px;
}


/* =========================================================
   INSIGHT PANEL
========================================================= */

.apple-insight-panel {
  height: 100%;

  padding: 25px;

  border:
    1px solid #050505;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 28px 65px
    rgba(0, 0, 0, 0.055);
}


.apple-insight-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;
}


.apple-insight-top span {
  display: block;

  margin-bottom: 14px;

  color: #070707;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


.apple-insight-top h3 {
  margin: 0;

  color: #181818;

  font-size:
    clamp(31px, 3vw, 38px);

  font-weight: 350;

  line-height: 1.12;
}


.apple-insight-top h3 strong {
  font-weight: 600;
}


.apple-insight-icon {
  flex: 0 0 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #2997ff,
      #9b5cff,
      #ed6a9c
    );
}


/* Mini Grid */

.apple-mini-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 13px;

  margin-top: 32px;
}


.apple-mini-card {
  display: flex;

  align-items: center;

  gap: 12px;

  min-height: 50px;

  padding: 15px;

  border:
    1px solid #050505;

  background: #fafafa;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.apple-mini-card:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(41, 151, 255, 0.35);

  box-shadow:
    0 15px 32px
    rgba(0, 0, 0, 0.06);
}


.apple-mini-card i {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 39px;
  height: 39px;

  flex: 0 0 39px;

  color: #ffffff;

  background: #1d1d1f;
}


.apple-mini-card span {
  color: #272727;

  font-size: 14px;

  font-weight: 600;
}


.apple-insight-copy {
  margin: 23px 0 0;

  color: #000000;

  font-size: 13px;

  line-height: 1.75;
}


.apple-offers-section {
  position: relative;

  padding: 65px 0;

  overflow: hidden;

  background:
    #f5f5f7;
}


.apple-offers-pattern {
  position: absolute;

  top: -100px;
  right: -70px;

  width: 270px;
  height: 230px;

  opacity: 0.12;

  background:
    radial-gradient(
      circle,
      #2997ff 1px,
      transparent 2px
    );

  background-size: 17px 17px;
}


.apple-offers-title {
  margin: 0;

  color: #1c1c1e;

  font-size:
    clamp(33px, 3vw, 44px);

  font-weight: 300;

  line-height: 1.05;

  letter-spacing: -1.5px;
}


.apple-offers-title strong {
  display: block;

  font-weight: 600;
}


.apple-offers-description {
  max-width: 550px;

  margin: 19px auto 0;

  color: #070606;

  font-size: 14px;

  line-height: 1.75;
}


/* Grid */

.apple-offer-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 16px;

  max-width: 1040px;

  margin:
    50px auto 0;
}


.apple-offer-card {
  position: relative;

  min-height: 170px;

  padding: 25px;

  overflow: hidden;

  border:
    1px solid #030303;

  background: #ffffff;

  box-shadow:
    0 18px 45px
    rgba(0, 0, 0, 0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.apple-offer-card:hover {
  transform:
    translateY(-7px);

  box-shadow:
    0 24px 55px
    rgba(0, 0, 0, 0.075);
}


.apple-offer-number {
  position: absolute;

  right: 20px;
  top: 12px;

  color:
    rgba(0, 0, 0, 0.045);

  font-size: 42px;

  font-weight: 700;
}


.apple-offer-icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 23px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #2997ff,
      #985fff,
      #e75c9c
    );
}


.apple-offer-card h3 {
  margin:
    0 0 10px;

  color: #252525;

  font-size: 22px;

  font-weight: 600;
}


.apple-offer-card p {
  margin: 0;

  color: #000000;

  font-size: 14px;

  line-height: 1.7;
}


.apple-offer-card p strong {
  color: #575454;
}


.apple-offer-wide {
  grid-column: 1 / -1;

  display: flex;

  align-items: center;

  gap: 24px;

  min-height: auto;
}


/* =========================================================
   AGENDA
========================================================= */

.apple-agenda-section {
  position: relative;

  padding: 65px 0;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8f8f8
    );
}


.apple-agenda-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  right: -230px;
  top: 40px;

  border-radius: 50%;

  background:
    rgba(142, 92, 246, 0.08);

  filter:
    blur(150px);
}


.apple-agenda-title {
  margin: 0;

  color: #191919;

  font-size:
    clamp(34px, 3vw, 45px);

  font-weight: 300;

  line-height: 1.05;
}


.apple-agenda-title strong {
  font-weight: 600;
}


.apple-agenda-description {
  max-width: 650px;

  margin:
    20px auto 0;

  color: #110f0f;

  font-size: 15px;

  line-height: 1.75;
}

.apple-agenda-card {
  max-width: 990px;

  margin:
    50px auto 0;

  overflow: hidden;

  border:
    1px solid #e3e3e3;

  background: #ffffff;

  box-shadow:
    0 30px 75px
    rgba(0, 0, 0, 0.06);
}


.apple-agenda-header {
  display: grid;

  grid-template-columns:
    225px 1fr;

  color: #ffffff;

  background: #181818;
}


.apple-agenda-header > div {
  display: flex;

  align-items: center;

  gap: 11px;

  padding:
    15px 20px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.apple-agenda-header > div:first-child {
  border-right:
    1px solid
    rgba(7, 6, 6, 0.13);
}


/* Agenda rows */

.apple-agenda-item {
  display: grid;

  grid-template-columns:
    155px
    55px
    1fr;

  min-height: 85px;

  align-items: center;

  border-bottom:
    1px solid #020202;
}


.apple-agenda-item:last-child {
  border-bottom: 0;
}


.apple-agenda-time {
  padding-left: 27px;
}


.apple-agenda-time span {
  display: block;

  margin-bottom: 4px;

  color: #242424;

  font-size: 15px;

  font-weight: 700;
}


.apple-agenda-time small {
  color: #080808;

  font-size: 13px;
}


/* Line */

.apple-agenda-line {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  height: 100%;
}


.apple-agenda-line::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  width: 1px;

  background:
    #e0e0e0;
}


.apple-agenda-line span {
  position: relative;

  z-index: 2;

  width: 13px;
  height: 13px;

  border:
    3px solid #0c0b0b;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #2997ff,
      #a35ff0,
      #ec6395
    );

  box-shadow:
    0 0 0 1px
    rgba(100, 100, 100, 0.15);
}


/* Content */

.apple-agenda-content {
  position: relative;

  display: flex;

  align-items: center;

  gap: 17px;

  margin:
    10px 18px 10px 0;

  padding: 17px;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}


.apple-agenda-item:hover
.apple-agenda-content {
  transform:
    translateX(5px);

  background: #f8f8f8;
}


.apple-agenda-icon {
  flex: 0 0 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  color: #ffffff;

  background: #1d1d1f;
}


.apple-agenda-category {
  display: block;

  margin-bottom: 4px;

  color: #0e0d0d;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}


.apple-agenda-content h3 {
  margin: 0;

  color: #242424;

  font-size: 16px;

  font-weight: 600;
}


.apple-agenda-index {
  position: absolute;

  right: 18px;

  color:
    rgba(0, 0, 0, 0.045);

  font-size: 35px;

  font-weight: 700;
}


.apple-agenda-featured
.apple-agenda-content {
  background:
    linear-gradient(
      90deg,
      rgba(41, 151, 255, 0.055),
      rgba(163, 95, 240, 0.04),
      rgba(236, 99, 149, 0.035)
    );
}


/* =========================================================
   CLOSING
========================================================= */

.apple-closing-section {
  padding:
    0 0 100px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8f8f8
    );
}


.apple-closing-card {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding:
    38px 42px;

  color: #ffffff;

  background:
    #171717;

  box-shadow:
    0 25px 65px
    rgba(0, 0, 0, 0.12);
}


.apple-closing-card span {
  display: block;

  margin-bottom: 8px;

  color:
    rgba(3, 3, 3, 0.43);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.3px;

  text-transform: uppercase;
}


.apple-closing-card h2 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(29px, 3vw, 34px);

  font-weight: 300;

  line-height: 1.12;
}


.apple-closing-card h2 strong {
  font-weight: 600;
}


.apple-closing-icon {
  flex: 0 0 58px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  color: #121212;

  background:
    linear-gradient(
      135deg,
      #55b4ff,
      #aa6cff,
      #ea6c9c,
      #ffc15b
    );
}


.apple-closing-icon i {
  font-size: 20px;
}


/* =========================================================
   FUTURE PLACEHOLDERS
========================================================= */

.future-section-placeholder:empty {
  display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .apple-about-section,
  .apple-offers-section,
  .apple-agenda-section {
    padding:
      82px 0;
  }


  .apple-offer-grid {
    grid-template-columns: 1fr;
  }


  .apple-offer-wide {
    grid-column: auto;
  }

}


@media (max-width: 767.98px) {

  .apple-about-section,
  .apple-offers-section,
  .apple-agenda-section {
    padding:
      65px 0;
  }


  .apple-section-title,
  .apple-offers-title,
  .apple-agenda-title {
    font-size: 41px;
  }


  .apple-about-card,
  .apple-insight-panel {
    padding:
      30px 24px;
  }


  .apple-mini-grid {
    grid-template-columns: 1fr;
  }


  .apple-agenda-header {
    display: none;
  }


  .apple-agenda-item {
    grid-template-columns:
      92px 28px 1fr;
  }


  .apple-agenda-time {
    padding-left: 13px;
  }


  .apple-agenda-content {
    padding:
      15px 42px 15px 10px;
  }


  .apple-agenda-icon {
    display: none;
  }


  .apple-closing-card {
    padding:
      30px 25px;
  }

}


@media (max-width: 575.98px) {

  .apple-section-title,
  .apple-offers-title,
  .apple-agenda-title {
    font-size: 35px;
  }


  .apple-about-card h3 {
    font-size: 34px;
  }


  .apple-offer-card {
    min-height: auto;

    padding: 25px 21px;
  }


  .apple-offer-wide {
    display: block;
  }


  .apple-offer-wide
  .apple-offer-icon {
    margin-bottom: 18px;
  }


  .apple-agenda-item {
    display: block;

    padding: 18px;
  }


  .apple-agenda-time {
    padding: 0 0 10px;
  }


  .apple-agenda-time span,
  .apple-agenda-time small {
    display: inline;
  }


  .apple-agenda-time small::before {
    content: " – ";
  }


  .apple-agenda-line {
    display: none;
  }


  .apple-agenda-content {
    margin: 0;

    padding:
      15px 42px 15px 14px;

    background: #f8f8f8;
  }


  .apple-agenda-index {
    right: 10px;

    font-size: 32px;
  }


  .apple-closing-card {
    align-items: flex-start;
  }


  .apple-closing-icon {
    flex: 0 0 47px;

    width: 47px;
    height: 47px;
  }

}

/* =========================================================
   REGISTRATION + CONTACT
========================================================= */

.apple-register-section {
  position: relative;

  padding: 55px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(41,151,255,0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(236,95,158,0.08),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #f7f7f8
    );
}


/* Glow */

.apple-register-glow {
  position: absolute;

  width: 300px;
  height: 350px;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(145px);
}


.apple-register-glow-one {
  left: -230px;
  bottom: -220px;

  background:
    rgba(41,151,255,0.13);
}


.apple-register-glow-two {
  top: -220px;
  right: -220px;

  background:
    rgba(236,95,158,0.11);
}


/* =========================================================
   HEADING
========================================================= */

.apple-register-title {
  margin: 0;

  color: #161616;

  font-size:
    clamp(35px,3vw,46px);

  font-weight: 300;

  line-height: 1.05;

  letter-spacing: -1.7px;
}


.apple-register-title strong {
  font-weight: 600;

  background:
    linear-gradient(
      90deg,
      #2997ff,
      #9b5cff,
      #ec5f9e,
      #f5a623
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.apple-register-subtitle {
  max-width: 680px;

  margin: 18px auto 0;

  color: #070606;

  font-size: 16px;

  line-height: 1.75;
}


/* =========================================================
   MAIN SHELL
========================================================= */

.apple-register-shell {
  display: grid;

  grid-template-columns:
    minmax(0,1.35fr)
    minmax(230px,0.65fr);

  max-width: 980px;

  margin:
    52px auto 0;

  overflow: hidden;

  border:
    1px solid #0c0b0b;

  background: #ffffff;

  box-shadow:
    0 32px 85px
    rgba(0,0,0,0.08);
}


/* =========================================================
   LEFT FORM
========================================================= */

.apple-register-form-side {
  padding: 35px;
}


.apple-register-form-heading {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 15px;

  margin-bottom: 28px;

  border-bottom:
    1px solid #e9e9e9;
}


.apple-register-form-heading > div:first-child > span {
  display: block;

  margin-bottom: 7px;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.apple-register-form-heading h3 {
  margin: 0;

  color: #191919;

  font-size:
    clamp(28px,3vw,38px);

  font-weight: 400;

  line-height: 1.15;
}


.apple-register-form-heading-icon {
  flex: 0 0 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #2997ff,
      #985fff,
      #e75d9f
    );
}


/* =========================================================
   FORM FIELDS
========================================================= */

.apple-form-group label {
  display: block;

  margin-bottom: 8px;

  color: #303030;

  font-size: 13px;

  font-weight: 600;
}


.apple-form-group label em {
  color: #2997ff;

  font-style: normal;
}


.apple-input-wrap {
  position: relative;
}


.apple-input-wrap > i {
  position: absolute;

  top: 50%;
  left: 16px;

  z-index: 2;

  color: #777777;

  font-size: 15px;

  transform:
    translateY(-50%);

  pointer-events: none;
}


.apple-input-wrap input {
  display: block;

  width: 100%;
  height: 56px;

  padding:
    12px 14px 12px 45px;

  color: #1f1f1f;

  font-size: 13px;

  border:
    1px solid #dedede;

  border-radius: 0;

  outline: none;

  background: #fafafa;

  transition:
    border-color .3s ease,
    background-color .3s ease,
    box-shadow .3s ease;
}


.apple-input-wrap input::placeholder {
  color: #9c9c9c;
}


.apple-input-wrap input:hover {
  border-color: #cacaca;
}


.apple-input-wrap input:focus {
  border-color: #2997ff;

  background: #ffffff;

  box-shadow:
    0 0 0 3px
    rgba(41,151,255,0.07);
}



.apple-form-note {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  margin-top: 25px;

  padding: 13px 14px;

  color: #050505;

  border:
    1px solid #e8e8e8;

  background: #b4acac;
}


.apple-form-note i {
  color: #2997ff;
}


.apple-form-note p {
  margin: 0;

  font-size: 13px;

  line-height: 1.6;
}


.apple-submit-wrap {
  display: flex;

  justify-content: center;

  margin-top: 20px;
}


.apple-submit-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  min-width: 255px;
  min-height: 44px;

  padding:
    12px 18px;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: .5px;

  text-transform: uppercase;

  border: none;

  background:
    #1d1d1f;

  cursor: pointer;

  box-shadow:
    0 15px 35px
    rgba(0,0,0,0.15);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.apple-submit-btn > i {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  color: #111111;

  background:
    linear-gradient(
      135deg,
      #58b7ff,
      #a76eff,
      #ec6fa0,
      #ffc15c
    );

  transition:
    transform .3s ease;
}


.apple-submit-btn:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 20px 42px
    rgba(0,0,0,0.2);
}


.apple-submit-btn:hover > i {
  transform:
    translateX(4px);
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.apple-register-info-side {
  position: relative;

  padding: 30px 20px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255,255,255,0.08),
      transparent 28%
    ),
    linear-gradient(
      160deg,
      #141414,
      #282828
    );
}


.apple-register-info-side::after {
  content: "";

  position: absolute;

  right: -110px;
  bottom: -110px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255, 252, 252, 0.07);

  box-shadow:
    0 0 0 45px
      rgba(255,255,255,0.018),
    0 0 0 90px
      rgba(255,255,255,0.012);

  pointer-events: none;
}

.apple-register-info-top {
  position: relative;
  z-index: 2;
}


.apple-register-info-top > span {
  display: block;

  margin-bottom: 13px;

  color:
   rgb(255, 255, 255);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.apple-register-info-top h3 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(26px,3vw,25px);

  font-weight: 300;

  line-height: 1.1;
}


.apple-register-info-top h3 strong {
  display: block;

  margin-top: 4px;

  font-weight: 600;
}


.apple-register-info-top p {
  margin: 20px 0 0;

  color:
rgb(255, 255, 255);

  font-size: 13px;

  line-height: 1.75;
}

.apple-register-event-list {
  position: relative;
  z-index: 2;

  display: grid;

  gap: 11px;

  margin-top: 30px;
}


.apple-register-event-item {
  display: grid;

  grid-template-columns:
    42px 1fr;

  column-gap: 12px;

  align-items: center;

  padding: 13px;

  border:
    1px solid
    rgba(0, 0, 0, 0.1);

  background:
    rgba(255,255,255,0.045);
}


.apple-register-event-item > div {
  grid-row:
    1 / span 2;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #5cb9ff,
      #ab72ff,
      #ec72a1,
      #ffc463
    );
}


.apple-register-event-item span {
  color:
    rgb(255, 253, 253);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .9px;

  text-transform: uppercase;
}


.apple-register-event-item strong {
  color: #ffffff;

  font-size: 12px;

  font-weight: 600;
}


.apple-register-info-divider {
  position: relative;
  z-index: 2;

  height: 1px;

  margin: 20px 0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.32),
      rgba(255,255,255,0.06),
      transparent
    );
}


.apple-register-contact {
  position: relative;
  z-index: 2;
}


.apple-register-contact-label {
  display: block;

  margin-bottom: 13px;

  color:
    black;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


.apple-register-contact-item {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 0;

  color: #ffffff;

  text-decoration: none;

  border-bottom:
    1px solid
    rgba(255,255,255,0.08);
}


.apple-register-contact-item > i {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 37px;
  height: 37px;

  flex: 0 0 37px;

  color: #111111;

  background: #ffffff;
}


.apple-register-contact-item span {
  display: block;

  margin-bottom: 2px;

  color:
    rgba(253, 250, 250, 0.4);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .9px;

  text-transform: uppercase;
}


.apple-register-contact-item strong {
  color: #ffffff;

  font-size: 13px;

  font-weight: 600;

  word-break: break-word;
}


/* =========================================================
   INVITE NOTE
========================================================= */

.apple-register-invite-note {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 10px;

  margin-top: 28px;

  padding: 14px;

  border-left:
    3px solid #ffffff;

  background:
    rgba(255,255,255,0.05);
}


.apple-register-invite-note > i {
  color: #ffffff;

  font-size: 15px;
}


.apple-register-invite-note strong {
  display: block;

  margin-bottom: 3px;

  color: #ffffff;

  font-size: 10px;
}


.apple-register-invite-note p {
  margin: 0;

  color:
    rgba(255,255,255,0.43);

  font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .apple-register-section {
    padding: 82px 0;
  }


  .apple-register-shell {
    grid-template-columns: 1fr;
  }


  .apple-register-info-side {
    order: -1;
  }

}


@media (max-width: 767.98px) {

  .apple-register-section {
    padding: 65px 0;
  }


  .apple-register-title {
    font-size: 41px;
  }


  .apple-register-form-side,
  .apple-register-info-side {
    padding:
      30px 24px;
  }


  .apple-register-form-heading-icon {
    display: none;
  }


  .apple-submit-btn {
    width: 100%;

    min-width: 0;
  }

}


@media (max-width: 575.98px) {

  .apple-register-title {
    font-size: 35px;
  }


  .apple-register-subtitle {
    font-size: 13px;
  }


  .apple-register-form-side,
  .apple-register-info-side {
    padding:
      26px 20px;
  }


  .apple-register-info-top h3 {
    font-size: 34px;
  }


  .apple-input-wrap input {
    height: 54px;
  }

}

.footer-section {
  position: relative;

  padding: 45px 0 30px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(41, 151, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(236, 95, 158, 0.12),
      transparent 26%
    ),
    linear-gradient(
      145deg,
      #111111 0%,
      #1d1d1f 55%,
      #111111 100%
    );

  border-top:
    1px solid
    rgba(255, 255, 255, 0.06);
}

.footer-glow {
  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(130px);
}


.footer-glow-one {
  left: -220px;
  bottom: -230px;

  background:
    rgba(41, 151, 255, 0.18);
}


.footer-glow-two {
  top: -230px;
  right: -200px;

  background:
    rgba(236, 95, 158, 0.13);
}


/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
  position: relative;

  z-index: 2;

  width:
    min(
      1200px,
      calc(100% - 40px)
    );

  margin: 0 auto;
}


/* =========================================================
   MAIN FOOTER CONTENT
========================================================= */

.footer-main {
  display: flex;

  align-items: center;
  justify-content: center;
}


.footer-brand {
  width: 100%;

  text-align: center;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo-link {
  display: inline-block;

  margin-bottom: 22px;

  text-decoration: none;
}


.footer-logo {
  display: block;

  width: 180px;
  max-width: 100%;

  height: auto;

  margin: 0 auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 8px 18px
      rgba(0, 0, 0, 0.15)
    );
}



.footer-social {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;
}


.footer-social a {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;

  overflow: hidden;

  color:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 50%;

  text-decoration: none;

  background:
    rgba(255, 255, 255, 0.045);

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.footer-social a::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  opacity: 0;

  transform:
    scale(0.7);

  background:
    linear-gradient(
      135deg,
      #2997ff,
      #9b5cff,
      #ec5f9e,
      #f5a623
    );

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.footer-social a:hover {
  color: #ffffff;

  border-color:
    transparent;

  transform:
    translateY(-4px);

  box-shadow:
    0 12px 25px
    rgba(0, 0, 0, 0.2);
}


.footer-social a:hover::before {
  opacity: 1;

  transform:
    scale(1);
}

.footer-social svg {
  position: relative;

  z-index: 2;

  width: 19px;
  height: 19px;
}


/* YouTube play icon */

.youtube-play {
  fill: #111111;
}


.footer-social a:hover
.youtube-play {
  fill: #ffffff;
}


.footer-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: min(520px, 70%);
  height: 2px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      #2997ff,
      #9b5cff,
      #ec5f9e,
      #f5a623,
      transparent
    );
}

@media (max-width: 767.98px) {

  .footer-section {
    padding:
      45px 0 25px;
  }


  .footer-container {
    width:
      calc(100% - 30px);
  }


  .footer-logo {
    width: 175px;
  }


  .footer-social {
    gap: 8px;
  }


  .footer-social a {
    width: 42px;
    height: 42px;
  }


  .footer-social svg {
    width: 17px;
    height: 17px;
  }

}

@media (max-width: 575.98px) {

  .footer-section {
    padding:
      40px 0 22px;
  }


  .footer-logo {
    width: 155px;
  }


  .footer-social a {
    width: 40px;
    height: 40px;
  }

}