@charset "UTF-8";
:root {
  /* FONT SIZE */
  --font_size_doc: 16px;
  --font_size_p_regular: 1.0rem;
  --font_size_p_small: 0.875rem;
  --font_size_h1: 3.0rem;
  --font_size_h2: 1.50rem;
  --font_size_h3: 1.17rem;
  --icon_size_standard: 1.50rem;
  --icon_size_small: 1.17rem;
  /* BOX DIMENSIONS */
  --inline_offset: 13rem;
  --major_box: 8.0rem;
  --medium_box: 3.0rem;
  --minor_box_standard: 1.50rem;
  --minor_box_small: 1.0rem;
  /* GAP */
  --gap_regular: 1.0rem;
  --gap_large: 2.0rem;
  --block_cta: 0.75rem;
  /* COLOR VARIABLES */
  --bg_color: rgba(6, 6, 6, 1);
  --white_color: rgba(247, 248, 248, 1);
  --color_p: rgba(208, 214, 224, 1);
  --border_color: rgba(39, 40, 43, 1);
  --on_hover_color: rgba(138, 143, 152, 1);
  --blue_gradient: linear-gradient(92.88deg, rgb(69, 94, 181) 9.16%, rgb(86, 67, 204) 43.89%, rgb(103, 63, 215) 64.72%);
  --radial_gradient: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.1), transparent);
  /* --radial_gradient: radial-gradient(800px circle at 100px 100px,rgba(255, 255, 255, 0.06),transparent 40%);*/
  --clr_transparent: transparent;
  --black_transparent: hsla(0 0% 0% / 0.12);
  /* SHADOW VARIABLES */
  --text_shadow: rgba(0, 0, 0, 0.25) 0px 3px 8px;
  /* BORDER RADIUS */
  --border_radius_pill: 100vmax;
  --border_radius_card: 0.75rem;
  /* CARD */
  --card_aspect_ratio: 328/280;
  --bg_color: rgba(6, 6, 6, 1);
  --card_shadow: rgb(0 0 0 / 12%) 0px 12px 12px;
  --card_bg: rgba(255, 255, 255, 0.12);
  --general_transition: all 0.30s ease-out;
  --none_transition: none;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font_size_doc);
  /*------------ scrollbar styling ------------*/
  /* width */
  /* track */
  /* handle */
  /* handle on hover */
}
html * {
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: var(--bg_color) var(--clr_transparent); /* scroll thumb and track "blue orange" */
}
html .vertical-scroll::-webkit-scrollbar {
  width: 2rem;
  height: 1rem;
}
html ::-webkit-scrollbar {
  width: 0.6rem;
}
html ::-webkit-scrollbar-track {
  background: var(--clr_transparent);
}
html ::-webkit-scrollbar-thumb {
  background: var(--border_color);
  border-radius: var(--border_radius_pill);
}
html ::-webkit-scrollbar-thumb:hover {
  background: var(--blue_gradient);
}

*, ::before, ::after {
  box-sizing: border-box;
  transition: var(--general_transition);
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

body {
  font-family: "Poppins";
  background: var(--bg_color);
  overflow-x: hidden;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Uncut Sans";
}

*.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--blue_gradient);
  color: var(--color_p);
  font-weight: 600;
  padding-block: var(--block_cta);
  padding-inline: calc(var(--block_cta) * 2);
  border-radius: var(--border_radius_pill);
  text-shadow: var(--text_shadow);
}
*.cta:hover {
  box-shadow: 0px 2px 48px 1px rgba(86, 67, 204, 0.5);
  transition: var(--none_transition);
}

header {
  display: flex;
  flex-direction: column;
  gap: var(--major_box);
}
header nav {
  display: flex;
  flex-direction: column;
  padding-inline: var(--major_box);
  width: 100%;
  background-color: var(--black_transparent);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
}
header nav div.content_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: var(--minor_box_small);
  border-bottom: 1.5px solid var(--border_color);
}
header nav div.content_wrapper ul.links {
  display: flex;
  align-items: center;
  gap: var(--gap_large);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header nav div.content_wrapper ul.links li {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  isolation: isolate;
}
header nav div.content_wrapper ul.links li a, header nav div.content_wrapper ul.links li button {
  color: var(--white_color);
  text-decoration: none;
  text-transform: capitalize;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font_size_p_regular);
  font-weight: 500;
}
header nav div.content_wrapper ul.links li button {
  font-family: "Poppins";
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
}
header nav div.content_wrapper ul.links li button i {
  font-size: var(--icon_size_standard);
}
header nav div.content_wrapper ul.links li button:hover i {
  transform: rotate(180deg);
}
header nav div.content_wrapper ul.links li div.dropdown_menu {
  background-color: var(--bg_color);
  display: flex;
  flex-direction: column;
  width: 200%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.35rem;
  border-radius: var(--border_radius_card);
  border: 1.5px solid var(--border_color);
  position: absolute;
  inset: 110% auto auto auto;
  scale: 0.8;
  opacity: 0;
  pointer-events: none;
}
header nav div.content_wrapper ul.links li div.dropdown_menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 100%;
  color: var(--on_hover_color);
  padding: 0.5rem;
  border-radius: calc(var(--border_radius_card) / 2);
}
header nav div.content_wrapper ul.links li div.dropdown_menu a i {
  font-size: var(--icon_size_small);
}
header nav div.content_wrapper ul.links li div.dropdown_menu a p {
  font-size: var(--font_size_p_small);
}
header nav div.content_wrapper ul.links li div.dropdown_menu a:hover {
  color: var(--white_color);
  background: var(--border_color);
}
header nav div.content_wrapper ul.links li:hover a.reg_link {
  color: var(--on_hover_color);
}
header nav div.content_wrapper ul.links li:hover div.dropdown_menu {
  scale: 1;
  opacity: 1;
  pointer-events: all;
}
header section {
  padding-inline: var(--inline_offset);
  display: flex;
  flex-direction: column;
  gap: var(--major_box);
  padding-top: calc(var(--major_box) + var(--minor_box_small));
}
header section div.section_content_desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header section div.section_content_desc div.desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--minor_box_standard);
  color: var(--white_color);
}
header section div.section_content_desc div.desc h1 {
  font-size: var(--font_size_h1);
  text-transform: capitalize;
  background-image: linear-gradient(to right, rgb(232, 78, 56), rgb(186, 44, 184));
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}
header section div.section_content_desc div.desc h1::marker {
  content: "✝ ";
  font-size: 1.2em;
}
header section div.section_content_desc div.desc p {
  font-size: var(--font_size_p_regular);
  max-width: 70ch;
}
header section div.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
header section div.cards div.cards_wrapper {
  width: inherit;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap_regular);
}
header section div.cards div.cards_wrapper div.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
  aspect-ratio: var(--card_aspect_ratio);
  width: 328px;
  background: var(--card_bg);
  box-shadow: var(--card_shadow);
  padding: var(--minor_box_standard);
  border-radius: var(--border_radius_card);
  flex: none;
  overflow: hidden;
}
header section div.cards div.cards_wrapper div.card div.card_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: transparent;
  padding: 10px;
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  z-index: -999;
}
header section div.cards div.cards_wrapper div.card div.image {
  width: 100%;
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
}
header section div.cards div.cards_wrapper div.card div.image img {
  width: 100%;
}
header section div.cards div.cards_wrapper div.card div.card_content_desc {
  color: var(--white_color);
  display: flex;
  align-items: flex-start;
  gap: var(--gap_regular);
}
header section div.cards div.cards_wrapper div.card div.card_content_desc i {
  font-size: var(--icon_size_standard);
}
header section div.cards div.cards_wrapper div.card div.card_content_desc div.desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap_regular);
}
header section div.cards div.cards_wrapper div.card div.card_content_desc div.desc h3 {
  font-size: var(--font_size_h3);
  font-weight: 500;
  text-transform: capitalize;
}
header section div.cards div.cards_wrapper div.card div.card_content_desc div.desc p {
  font-size: var(--font_size_p_small);
  opacity: 0.8;
}
header section div.cards div.cards_wrapper div.card a.overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  inset: 0 0 0 0;
  position: absolute;
  background: transparent;
  color: transparent;
  text-decoration: none;
  z-index: 2;
}
header section div.cards div.cards_wrapper div.card::before, header section div.cards div.cards_wrapper div.card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -99;
  opacity: 0;
  inset: 0 auto auto 0;
  transition: opacity 0.3s;
}
header section div.cards div.cards_wrapper div.card::before {
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.05), transparent 40%);
}
header section div.cards div.cards_wrapper div.card::after {
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.1), transparent 40%);
}
header section div.cards div.cards_wrapper div.card:hover::before {
  opacity: 1;
}
header section div.cards::before, header section div.cards::after {
  content: "";
  position: absolute;
  z-index: -99;
  pointer-events: none;
  scale: 1.8;
}
header section div.cards::before {
  background: radial-gradient(circle farthest-side at center, rgba(232, 78, 56, 0.1), transparent);
  inset: 0 50% 0 0;
  translate: 0 -10%;
}
header section div.cards::after {
  background: radial-gradient(circle farthest-side at center, rgba(186, 44, 184, 0.1), transparent);
  inset: 0 0 0 50%;
  translate: 0 10%;
}
header section div.cards:hover div.cards_wrapper div.card::after {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */