@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
.hide {
  display: none;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* CSS Custom Properties */
:root {
  --font-family-primary: Inter, Helvetica, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --letter-spacing-emphasis: 0.1em;
}

/* Base HTML & Body Styles - Keeping your original 10px system */
html {
  overflow-y: scroll;
  font-size: 10px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--colour-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base Element Styles */
.section {
  width: 100%;
  padding: 4rem;
  margin: auto;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .section {
    padding: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .section {
    padding: 2rem 1rem;
  }
}

.section--dark {
  background: linear-gradient(to bottom, #190c05, #000000);
}

.container {
  max-width: 140rem;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .container {
    padding: 0rem;
  }
}

/* List Styles */
ol li::marker {
  font-weight: 500;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}
/* Focus styles for better accessibility */
:focus-visible {
  outline: 2px solid var(--colour-primary);
  outline-offset: 2px;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #969696;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #7d7d7d;
}

/* Utility Classes */
.hide {
  display: none;
}

@media (max-width: 1080px) {
  .mobile-hide {
    display: none;
  }
}

h1 {
  font-size: 3.6rem;
  color: #121212;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.6rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

h2 {
  font-size: 3.2rem;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 1080px) {
  h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #121212;
  letter-spacing: 0.3px;
  margin-bottom: 2rem;
}
@media (max-width: 1280px) {
  h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.9rem;
  }
}

h4 {
  font-size: 1.8rem;
  color: #121212;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.6rem;
  }
}

h5 {
  font-size: 1.6rem;
  color: #121212;
  margin-bottom: 1rem;
  line-height: 1.4;
}

h6 {
  font-size: 1.6rem;
  color: #121212;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.heading--light {
  color: #f0f0f0;
}

@media (max-width: 1080px) {
  .main-content {
    padding: 5rem 2rem 2rem 2rem;
  }
}
.main-content__heading {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .main-content__heading {
    margin-bottom: 4rem;
  }
}

p {
  margin-bottom: 2rem;
  letter-spacing: 0.25px;
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #121212;
}
p:last-child {
  margin-bottom: 0;
}
p.large {
  font-size: 2rem;
}
p.small {
  font-size: 1.4rem;
}
p.xs {
  font-size: 1.2rem;
}
p.lead {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: #121212;
}
@media (max-width: 1080px) {
  p.lead {
    font-size: 2rem;
  }
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 1.4rem;
  line-height: 1.4;
}

mark {
  background-color: #e86e2c;
  color: #ffffff;
  padding: 0.1em 0.3em;
  border-radius: 4px;
}

.text-highlight--primary {
  color: #e86e2c;
}

.text-highlight--secondary {
  color: #330B95;
}

a {
  color: #330B95;
  text-decoration: none;
  transition: 0.2s;
}
a:hover, a:focus {
  text-decoration: none;
  transform: translateY(-1px);
}
a:focus-visible {
  outline: 2px solid #e86e2c;
  outline-offset: 2px;
}
a.text-link {
  color: #121212;
}
a.primary-link {
  color: #e86e2c;
  font-weight: 500;
  letter-spacing: 0.1em;
}
a.primary-link:hover {
  color: #d64600;
}

ul li a {
  color: #191919 !important;
  text-decoration: none;
  background-color: transparent;
}
ul li a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin-bottom: 2rem;
  list-style-type: none;
}
ul li,
ol li {
  margin-bottom: 1.8rem;
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #121212;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

ul.unstyled,
ol.unstyled {
  list-style: none;
  padding-left: 0;
}

ul.inline,
ol.inline {
  padding-left: 0;
  list-style: none;
}
ul.inline li,
ol.inline li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0;
}
ul.inline li:last-child,
ol.inline li:last-child {
  margin-right: 0;
}

blockquote {
  border-left: 4px solid #e86e2c;
  padding: 2rem 3rem;
  margin: 3rem 0;
  background-color: #ededed;
  font-style: italic;
}
blockquote p {
  margin-bottom: 1rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  font-style: normal;
  font-size: 1.4rem;
  color: #7d7d7d;
  margin-top: 1rem;
}
blockquote cite::before {
  content: "— ";
}

code {
  font-family: "Inter", "Helvetica", "sans-serif";
  font-size: 0.9em;
  background-color: #ededed;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  color: #121212;
}

pre {
  background-color: #ededed;
  padding: 2rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 2rem;
}
pre code {
  background: none;
  padding: 0;
  font-size: 1.4rem;
}

hr {
  border: none;
  height: 1px;
  background-color: #f0f0f0;
  margin: 4rem 0;
}
hr.thick {
  height: 2px;
  background-color: #c8c8c8;
}
hr.primary {
  background-color: #e86e2c;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-primary {
  color: #e86e2c;
}

.text-secondary {
  color: #330B95;
}

.text-muted {
  color: #7d7d7d;
}

.text-white {
  color: #ffffff;
}

.text-black {
  color: #121212;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.line-height-tight {
  line-height: 1.2;
}

.line-height-normal {
  line-height: 1.4;
}

.line-height-relaxed {
  line-height: 1.5;
}

.letter-spacing-normal {
  letter-spacing: normal;
}

.letter-spacing-wide {
  letter-spacing: 0.1rem;
}

.letter-spacing-wider {
  letter-spacing: 1px;
}

@media (max-width: 1080px) {
  .text-center-mobile {
    text-align: center;
  }
  .text-left-mobile {
    text-align: left;
  }
}
.sidebar {
  height: 100vh;
  width: 270px;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
  overflow-y: auto;
}
@media (max-width: 1080px) {
  .sidebar {
    display: none;
  }
}

.sidebar-mobile {
  display: none;
}
@media (max-width: 1080px) {
  .sidebar-mobile {
    display: block;
    height: 100vh;
    width: 260px;
    position: fixed;
    left: -260px;
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    overflow-y: auto;
    background-color: rgba(243, 243, 243, 0.9);
    transition: left 0.3s ease-in-out;
    backdrop-filter: blur(2px);
    z-index: 999;
  }
}
.sidebar-mobile.show {
  left: 0;
}

.help-menu {
  display: none;
}
@media (max-width: 1080px) {
  .help-menu {
    display: block;
    position: fixed;
    top: 60px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
  }
  .help-menu .help-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000000;
    margin-bottom: 5px;
    transition: transform 0.2s ease-in-out;
  }
  .help-menu .help-icon img {
    width: 26px;
    height: auto;
    transition: transform 0.2s ease-in-out;
  }
  .help-menu .help-icon img:active {
    transform: scale(0.99) translateY(1px);
  }
}

body:has(.main-content) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.help-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.help-page .main-content {
  flex: 1;
}
.help-page .nav-bottom {
  margin-top: 0;
}
@media (max-width: 768px) {
  .help-page .nav-bottom {
    margin-top: 0;
  }
}

.main-content {
  margin-top: 5rem;
  margin-left: 27rem;
  padding: 2rem;
  width: calc(100% - 27rem);
  min-height: calc(100vh - 4.6rem);
}
@media (max-width: 1080px) {
  .main-content {
    width: 100%;
    margin-left: 0;
    padding: 5rem 2rem 2rem 2rem;
  }
}

.content-area {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  list-style-type: none;
}
.content-area__section {
  margin-bottom: 6rem;
}
.content-area__section p {
  margin-right: 2rem;
  font-weight: var(--font-weight-normal);
}
.content-area__section a {
  color: #007bff;
  text-decoration: underline;
}
.content-area__section a:hover {
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  color: #007bff;
}
.content-area__section__sub {
  margin-bottom: 3rem;
}
.content-area__ul {
  list-style: none;
  padding: 0;
}
.content-area__ul li {
  margin-left: 2rem;
}
.content-area__ul li .dropdown-btn {
  background: rgba(243, 243, 243, 0.8);
  padding: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 1.25rem;
  width: 100%;
  text-align: left;
  transition: background-color 0.2s, border-radius 0.2s;
  font: inherit;
  outline: none;
  appearance: none;
}
.content-area__ul li .dropdown-btn:focus-visible {
  outline: 2px solid var(--colour-primary);
  outline-offset: 2px;
}
.content-area__ul li .dropdown-btn:hover, .content-area__ul li .dropdown-btn:active {
  background: #f3f3f3;
}
.content-area__ul li .dropdown-btn.active {
  border-radius: 1.25rem 1.25rem 0 0;
}
.content-area__ul li .dropdown-btn strong {
  display: block;
  width: 100%;
}
.content-area__ul li .dropdown-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem;
  border-radius: 0 0 1.25rem 1.25rem;
  background: #f3f3f3;
  transition: max-height 0.2s, opacity 0.2s, padding 0.2s;
  will-change: max-height, opacity, padding;
}
.content-area__ul li .dropdown-content p,
.content-area__ul li .dropdown-content ul {
  padding-bottom: 0.8rem;
  margin: 0;
}
.content-area__ul li .dropdown-content.active {
  opacity: 1;
  max-height: 50rem;
  padding: 1rem;
  transition: max-height 0.2s, opacity 0.2s, padding 0.2s;
}

.help-section .section-title {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 0.5rem;
}
.help-section .section-content,
.help-section ul {
  padding-left: 0;
}
.help-section ul {
  list-style: none;
}
.help-section ul li {
  margin-bottom: 0.5rem;
}
.help-section ul li a {
  display: block;
  padding: 1.6rem;
  text-decoration: none;
  font-size: 1.4rem;
  transition: font-weight 0.2s;
}
.help-section ul li a:hover {
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 1080px) {
  .help-section ul li a {
    font-size: 1.6rem;
  }
}

.faq-container {
  padding: 2rem;
}

.faq-section {
  margin-bottom: 1.5rem;
}

.hidden {
  display: none;
}

.please-note {
  color: #f75200 !important;
}

.highlight {
  font-weight: bold;
  color: #333;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.cta {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  appearance: none;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 0.7rem 5rem;
  border-radius: 2.5em;
  font-size: 1.8rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease-in, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.cta:hover, .cta:focus-visible {
  background-color: #1a1a1a;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}
.cta:active {
  transform: scale(0.99) translateY(1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1280px) {
  .cta {
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
}

.scroll-down-arrow-container {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
}
@media (max-width: 1280px) {
  .scroll-down-arrow-container {
    left: 48%;
    bottom: 40px;
  }
}
@media (max-width: 1080px) {
  .scroll-down-arrow-container {
    display: none;
  }
}

.scroll-down-arrow {
  width: 160px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
}
@media (max-width: 1440px) {
  .scroll-down-arrow {
    width: 110px;
  }
}
@media (max-width: 1280px) {
  .scroll-down-arrow {
    width: 103px;
  }
}
.scroll-down-arrow svg path {
  stroke: #191919;
  stroke-width: 1.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 2px 4px #7d7d7d;
  animation: bounce 1.4s infinite ease-in-out;
  width: 100%;
  height: 80%;
}
.scroll-down-arrow.clicked {
  transform: translateY(-5px);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.4) !important;
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4) !important;
  }
}
.intro__cta {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  appearance: none;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 0.7rem 5rem;
  border-radius: 2.5em;
  font-size: 1.8rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease-in, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.intro__cta:hover, .intro__cta:focus-visible {
  background-color: #1a1a1a;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}
.intro__cta:active {
  transform: scale(0.99) translateY(1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1280px) {
  .intro__cta {
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 1440px) {
  .intro__cta {
    font-size: 2rem;
  }
}
@media (max-width: 1280px) {
  .intro__cta {
    font-size: 1.6rem;
  }
}
@media (max-width: 1080px) {
  .intro__cta {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 72%;
  }
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}
.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.social-icons img:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 15, 15, 0.9);
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
  height: 60%;
  border-radius: 30px;
  animation: zoom 0.3s;
}
@media (max-width: 1280px) {
  .modal-content {
    height: 80%;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .modal-content {
    height: 80%;
    border-radius: 20px;
  }
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: 400;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .modal-close {
    top: 30px;
    right: 55px;
  }
}

@keyframes zoom {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  justify-content: center;
  align-items: center;
  animation: fadeInOverlay 0.2s ease-in-out;
}
.popup-container.show {
  display: flex;
}
.popup-container .popup-content {
  background-color: #f0f0f0;
  padding: 4rem 5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: -12px 38px 33px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
  animation: popupSlideIn 0.3s ease;
  transform: scale(1);
}
@media (max-width: 768px) {
  .popup-container .popup-content {
    padding: 3rem 4rem;
    max-width: 350px;
    width: 95%;
  }
}
@media (max-width: 480px) {
  .popup-container .popup-content {
    padding: 2rem 3rem;
    max-width: 300px;
    width: 95%;
  }
}
.popup-container > img:first-child {
  max-width: 80px;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .popup-container > img:first-child {
    max-width: 60px;
    margin-bottom: 3rem;
  }
}
.popup-container > p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #121212;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .popup-container > p {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .popup-container > p {
    font-size: 1.6rem;
  }
}
.popup-container > .cta {
  margin-top: 2rem;
  padding: 1rem 3rem;
}
@media (max-width: 768px) {
  .popup-container > .cta {
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
  }
}
.popup-container img {
  max-width: 80px;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .popup-container img {
    max-width: 60px;
    margin-bottom: 3rem;
  }
}
.popup-container p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #121212;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .popup-container p {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .popup-container p {
    font-size: 1.6rem;
  }
}
.popup-container .cta {
  margin-top: 2rem;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popupSlideIn {
  0% {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@media (max-width: 1080px) {
  .mobile-hide {
    display: none;
  }
}

.cards_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0rem !important;
}
@media (max-width: 768px) {
  .cards_heading h2 {
    margin-bottom: 2rem;
  }
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  margin: auto;
  justify-content: center;
}
@media (max-width: 1080px) {
  .cards-section {
    grid-template-columns: 1fr;
  }
}

#cards-section {
  margin-top: -8rem;
}
@media (max-width: 768px) {
  #cards-section {
    margin-top: -4rem;
  }
}

.card {
  aspect-ratio: 1/1;
  margin: 1rem;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-1.3px);
  transform: scale(1.01);
}
@media (max-width: 1080px) {
  .card {
    margin: 0 0 2rem 0;
  }
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
}
.card-inner.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
}

.card-front {
  font-weight: 600;
  color: #222;
  padding: 3rem 1rem 1rem 1rem;
  overflow: hidden;
  justify-content: flex-start !important;
}
@media (max-width: 768px) {
  .card-front {
    padding: 1rem 1rem 1rem;
  }
}
.card-front h3 {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 1080px) {
  .card-front h3 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .card-front h3 {
    margin-bottom: 1rem;
  }
}

.card-back {
  color: #fff;
  transform: rotateY(180deg);
}
.card-back h3 {
  color: white;
  padding: 30px;
}
@media (max-width: 480px) {
  .card-back h3 {
    margin-bottom: 0;
  }
}

#card-back-1 {
  background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(0, 0, 0, 0.8)), url("/img/card-img-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#card-back-2 {
  background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(0, 0, 0, 0.8)), url("/img/card-img-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#card-back-3 {
  background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(0, 0, 0, 0.8)), url("/img/card-img-3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#card-back-4 {
  background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(0, 0, 0, 0.8)), url("/img/card-img-4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#card-back-5 {
  background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(0, 0, 0, 0.8)), url("/img/card-img-5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#card-back-6 {
  background: linear-gradient(to bottom, rgba(41, 41, 41, 0.8), rgba(0, 0, 0, 0.8)), url("/img/card-img-6.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-image {
  height: 85%;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-image:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1080px) {
  .card-image {
    height: 65%;
  }
}
@media (max-width: 768px) {
  .card-image {
    height: 80%;
  }
}

.card-dark {
  background: linear-gradient(to top, #e2e2e2, #efefef);
}

.card-light {
  background: linear-gradient(to bottom, #121212, #000000);
  border: 0.667px solid #474747;
}
.card-light h3 {
  color: #f0f0f0;
}

.card-coloured {
  background: linear-gradient(to bottom, rgba(244, 80, 0, 0.3), rgba(51, 11, 149, 0.3));
}
.card-coloured h3 {
  color: #121212;
}

.flip-btn {
  padding: 1rem 4rem;
  border: 0.667px solid #330B95;
  background: none;
  color: #e0e0e0;
  font-size: 1.6rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 2rem;
  margin-bottom: 2rem;
  transition: background 0.3s;
}
.flip-btn:hover {
  transform: scale(1.01);
  background: #330B95;
}
.flip-btn:active {
  transform: scale(0.99) translateY(1px);
}
@media (max-width: 1080px) {
  .flip-btn {
    margin-top: 1.2rem;
    padding: 0.6rem 2rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .flip-btn {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0.6rem 2rem;
    font-size: 1.4rem;
  }
}

.top-navbar {
  background-color: rgba(243, 243, 243, 0.3);
  backdrop-filter: blur(0.2rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.top-navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 120rem;
  margin: 0 auto;
  height: 5.6rem;
}
@media (max-width: 1280px) {
  .top-navbar .nav-container {
    height: 5rem;
  }
}
@media (max-width: 1080px) {
  .top-navbar .nav-container {
    display: none;
    padding: 0 2rem;
    height: 3.6rem;
  }
}
.top-navbar .nav-container .nav-logo {
  font-size: 1.8rem;
  color: #000000;
  text-decoration: none;
}
.top-navbar .nav-container .nav-links {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  max-width: 50%;
}
.top-navbar .nav-container .nav-links a {
  color: #191919;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.1s ease-in-out, font-weight 0.1s ease-in-out;
}
@media (max-width: 1280px) {
  .top-navbar .nav-container .nav-links a {
    font-size: 1.6rem;
  }
}
@media (max-width: 1080px) {
  .top-navbar .nav-container .nav-links a {
    font-size: 1.6rem;
  }
}
.top-navbar .nav-container .nav-links a:hover {
  color: #000000;
  font-weight: 600;
}
.top-navbar .nav-container .social-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.top-navbar .nav-container .social-links > * {
  font-size: 3.6rem;
  line-height: inherit;
  color: #e86e2c;
}
.top-navbar .nav-container .social-links a i {
  font-size: 2.6rem !important;
  color: #e86e2c;
  transition: transform 0.2s ease-in-out;
}
.top-navbar .nav-container .social-links a i:hover {
  transform: scale(1.1);
}
.top-navbar .nav-container .social-links a i:active {
  transform: scale(0.95);
}
@media (min-width: 1081px) {
  .top-navbar .nav-container .social-links .mobile-only,
  .top-navbar .nav-container .social-links .app-store-icon,
  .top-navbar .nav-container .social-links .app-store-link {
    display: none !important;
  }
}

.logo-icon {
  height: 4rem;
  width: auto;
}
@media (max-width: 1280px) {
  .logo-icon {
    height: 2.8rem;
    width: auto;
  }
}
@media (max-width: 768px) {
  .logo-icon {
    height: 3.4rem;
    width: auto;
  }
}

.hamburger-menu {
  display: none;
}
@media (max-width: 1080px) {
  .hamburger-menu {
    display: block;
    position: fixed;
    top: 1.6rem;
    right: 2rem;
    cursor: pointer;
    z-index: 1000;
  }
  .hamburger-menu .hamburger-icon {
    transition: transform 0.2s ease-in-out;
  }
  .hamburger-menu .hamburger-icon:active {
    transform: scale(0.99) translateY(1px);
  }
  .hamburger-menu .hamburger-icon span {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background-color: #000000;
    margin-bottom: 0.5rem;
  }
}

.mobile-nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(2px);
  z-index: 999;
  transition: top 0.3s ease-in-out;
  overflow: hidden;
}
.mobile-nav.show {
  top: 0;
}
@media (max-width: 1280px) {
  .mobile-nav {
    display: block;
  }
  .mobile-nav .mobile-nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    height: 100%;
    position: relative;
  }
  .mobile-nav .mobile-nav-container .nav-logo {
    font-size: 2rem;
    color: #000000;
    text-decoration: none;
    margin-bottom: 4rem;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-links a {
    color: #191919;
    font-weight: 500;
    text-decoration: none;
    font-size: 2rem;
    margin-bottom: 3rem;
    transition: color 0.1s ease-in-out, font-weight 0.1s ease-in-out;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-links a:hover {
    color: #000000;
    font-weight: 600;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-social-links a {
    text-decoration: none;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-social-links a i {
    font-size: 2.8rem !important;
    color: #e86e2c;
    transition: transform 0.2s ease-in-out;
  }
  .mobile-nav .mobile-nav-container .mobile-nav-social-links a i:hover {
    transform: scale(1.1);
  }
  .mobile-nav .mobile-nav-container .mobile-nav-social-links a i:active {
    transform: scale(0.95);
  }
}

.nav-bottom {
  background: #000000;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 5rem;
  padding: 0rem 4rem;
}
.nav-bottom .nav-container {
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  max-width: 120rem;
  margin: 0 auto;
}
.nav-bottom .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23rem;
}
@media (max-width: 768px) {
  .nav-bottom .nav-links {
    justify-content: space-between;
    max-width: 100%;
    gap: 2rem;
  }
}
.nav-bottom .nav-links a {
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #121212;
  text-decoration: none;
  color: #7d7d7d;
  font-weight: 700;
  letter-spacing: 1.3;
  transition: font-weight 0.2s ease;
}
@media (max-width: 768px) {
  .nav-bottom .nav-links a {
    font-weight: 200;
  }
}
.nav-bottom .nav-links a:last-child {
  margin-right: 0;
}
.nav-bottom .nav-links a:hover {
  font-weight: 700;
}
@media (max-width: 768px) {
  .nav-bottom .nav-links a {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 1080px) {
  .nav-bottom {
    width: 100%;
    left: 0;
  }
  .nav-bottom .nav-links {
    justify-content: space-between;
  }
  .nav-bottom .nav-links a {
    width: auto !important;
    text-align: center;
    flex-grow: 1;
    font-size: 1.6rem;
  }
}

.bx {
  height: 2.8rem;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media (max-width: 1080px) {
  .mobile--remove {
    display: none !important;
  }
}
.hero-section {
  height: calc(100vh - 5rem);
  max-height: 80rem;
  position: relative;
  margin-top: 5rem;
  max-width: 144rem;
}
@media screen and (max-width: 1280px) {
  .hero-section {
    overflow: hidden;
  }
}
@media screen and (max-width: 1080px) {
  .hero-section {
    max-height: auto;
    margin-top: 9rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-section {
    height: 100vh;
    max-height: none;
    margin-top: 0;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
    padding: 1rem;
  }
}
.hero-column {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10rem;
}
@media screen and (max-width: 1280px) {
  .hero-column {
    margin-top: 4rem;
  }
  .hero-column .hero-app--mobile {
    order: 1;
  }
  .hero-column .hero-inner {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .hero-column {
    position: static;
    top: auto;
    transform: none;
    margin-top: 0;
    height: 100%;
    padding: 2rem;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .hero-column {
    padding: 1rem;
    row-gap: 3rem;
    grid-template-rows: auto 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .hero-column .hero-inner {
    order: 1;
  }
  .hero-column .hero-app--desktop {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .hero-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
.hero-text {
  font-size: 2.2rem;
}
@media screen and (max-width: 1280px) {
  .hero-text {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .hero-text {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .hero-cta {
    text-align: center;
  }
}
.hero-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  justify-self: center;
  z-index: 990;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-image.fade-in {
  opacity: 1;
  transform: scale(1);
}
.hero-app--desktop {
  display: block;
  max-width: 58rem;
}
@media screen and (max-width: 1080px) {
  .hero-app--desktop {
    display: none;
  }
}
.hero-app--mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero-app--mobile {
    display: block;
    max-width: 100vw;
    max-height: 50vh;
  }
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .hero-inner {
    padding: 2rem 5rem;
    row-gap: 2.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .hero-inner {
    row-gap: 3rem;
    padding: 0rem 2rem 1.5rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-inner .cta {
    align-self: center;
  }
}
.hero-link {
  position: fixed;
  display: grid;
  bottom: 55%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 1.4rem;
  visibility: visible;
  z-index: 1000;
  opacity: 0.8;
}
@media screen and (min-width: 1440px) {
  .hero-link {
    right: calc(50vw - 140rem/2 + 1.5rem);
  }
}
@media screen and (max-width: 1280px) {
  .hero-link {
    bottom: 35%;
  }
}
@media screen and (max-width: 768px) {
  .hero-link {
    font-size: 1.6rem;
    bottom: 13%;
    right: 1.7rem;
  }
}
@media screen and (min-width: 769px) {
  .hero-link .fa-apple,
  .hero-link .fa-google-play {
    display: none !important;
  }
}
.hero-link > * {
  font-size: 3.6rem;
  line-height: inherit;
  color: #e86e2c;
  z-index: 11;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-link > * {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .hero-link > * {
    font-size: 2.8rem;
  }
}
.hero-link::before, .hero-link::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 2px;
  transform: rotate(90deg);
  background: #e86e2c;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .hero-link::before, .hero-link::after {
    width: 2.8rem;
  }
}
.hero-link::before {
  top: -3rem;
}
.hero-link::after {
  bottom: -3rem;
}

#landscape-festival, #landscape-trip, #portrait-party, #portrait-wedding {
  position: absolute;
  z-index: -99;
}
@media (max-width: 768px) {
  #landscape-festival, #landscape-trip, #portrait-party, #portrait-wedding {
    display: none;
  }
}
#landscape-festival img, #landscape-trip img, #portrait-party img, #portrait-wedding img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.95);
  z-index: -99;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#portrait-wedding {
  height: 65%;
  width: auto;
  top: 0;
  left: 0;
}
#portrait-party {
  height: 65%;
  width: auto;
  bottom: 0;
  right: 0;
}

#landscape-trip {
  height: 44%;
  width: auto;
  top: 0;
  right: 21%;
}
#landscape-trip img {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#landscape-festival {
  height: 38%;
  width: auto;
  bottom: 0;
  left: 25%;
}

.intro {
  padding: 0;
}

.intro__container {
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  gap: 3rem;
}
@media (max-width: 1080px) {
  .intro__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}

.intro__heading h2 {
  text-align: center;
}

.intro__title {
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 480px) {
  .intro__title {
    margin-bottom: 2rem;
  }
}

.intro__image {
  flex: 0 0 auto;
  text-align: center;
  padding-right: 0;
  max-height: 45rem;
  display: flex;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .intro__image {
    max-height: 35rem;
    margin-bottom: 2rem;
  }
}
.intro__image img {
  max-height: 100%;
  height: auto;
  width: auto;
  max-width: 35rem;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
@media (max-width: 1280px) {
  .intro__image img {
    max-width: 300px;
  }
}
@media (max-width: 1080px) {
  .intro__image img {
    max-width: 80%;
    width: 300px;
  }
}
@media (max-width: 768px) {
  .intro__image img {
    padding-right: 0;
    max-height: 35rem;
  }
}
@media (max-width: 1080px) {
  .intro__image {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.intro__text {
  flex: 1;
  max-width: 55%;
  margin-bottom: 6%;
}
.intro__text p {
  padding: 3.2rem;
  margin-bottom: 2.4rem;
  background-color: #ededed;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.intro__text p:hover {
  transform: translateY(-1.2px);
  transform: scale(1.01);
  border-color: #1a1a1a;
}
@media (max-width: 1440px) {
  .intro__text {
    max-width: 60%;
  }
}
@media (max-width: 1080px) {
  .intro__text {
    max-width: 100%;
    display: contents;
  }
}

.intro__text a {
  margin: 2rem;
}

.intro__description {
  font-size: 2rem;
  color: #191919;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: justify;
}
@media (max-width: 1440px) {
  .intro__description {
    font-size: 1.8rem;
  }
}
@media (max-width: 1280px) {
  .intro__description {
    font-size: 1.6rem;
  }
}

#features-section {
  background-color: #190c05;
}

.sign-up__container {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .sign-up__container {
    padding: 0;
  }
}

.sign-up__heading {
  font-weight: 500;
  color: #f0f0f0;
  line-height: 1.3;
  text-align: center;
  margin-top: 0rem !important;
  margin-bottom: 3rem;
}
@media (max-width: 1280px) {
  .sign-up__heading {
    font-size: 4.2rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .sign-up__heading {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}

.sign-up__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .sign-up__content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}
@media (min-width: 1440px) {
  .sign-up__content {
    gap: 8rem;
    max-width: 114rem;
    margin: 0 auto;
  }
}

.sign-up__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sign-up__text {
    align-items: flex-start;
    text-align: center;
    padding: 4rem 2rem;
  }
}

.sign-up__description {
  color: #e0e0e0;
  margin-bottom: 3rem;
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
}

.sign-up__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-up__image img {
  max-height: 58rem;
  width: auto;
  object-fit: contain;
  margin-top: 4rem !important;
  margin-right: 8rem;
}
@media (max-width: 1280px) {
  .sign-up__image img {
    max-height: 46rem;
    width: auto;
  }
}
@media (max-width: 768px) {
  .sign-up__image img {
    display: none;
  }
}

.sign-up__form2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}
.sign-up__form2 input {
  background: none;
  letter-spacing: 1.25px;
}
.sign-up__form2 input[type=text],
.sign-up__form2 input[type=email],
.sign-up__form2 button {
  margin-bottom: 1.2rem;
  transition: border 0.3s ease-in-out;
  border: 0.667px solid #c8c8c8;
  color: #f0f0f0;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 12px;
  letter-spacing: 1px;
}
.sign-up__form2 input[type=text]:focus,
.sign-up__form2 input[type=email]:focus,
.sign-up__form2 button:focus {
  outline: none;
}
.sign-up__form2 button {
  text-decoration: none;
  font-size: 1.6rem;
  white-space: nowrap;
  border: 0.667px solid #330B95;
  background: none;
  color: #e0e0e0;
}
.sign-up__form2 button:hover {
  background: #330B95;
}
@media (max-width: 1080px) {
  .sign-up__form2 {
    width: 100%;
    margin: 0 auto;
  }
}

.countdown__timer--second {
  display: none;
  position: absolute;
  top: 32%;
  left: 30%;
  max-width: 33.333%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #121212;
  font-family: "Inter", "Helvetica", sans-serif;
  color: #e86e2c;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .countdown__timer--second {
    top: 25%;
    left: 37%;
    font-weight: 700;
  }
}
@media (max-width: 1280px) {
  .countdown__timer--second {
    top: 30%;
    left: 27%;
    font-size: 1.1rem;
    font-weight: 600;
  }
}
@media (max-width: 1080px) {
  .countdown__timer--second {
    top: 18%;
    left: 31%;
    font-size: 1.3rem;
    text-align: left;
  }
}

.countdown__timer--second_time-unit {
  display: inline-block;
  width: 2em;
  text-align: center;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.popup-container .popup-content {
  background-color: #ffffff;
  padding: 4rem 6rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: -12px 38px 33px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.popup-container .popup-content img {
  max-width: 80px;
  margin-bottom: 4rem;
}
.popup-container .popup-content p {
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #121212;
  margin-bottom: 3rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-primary {
  font-family: inherit;
  font-size: 12.4rem;
  font-weight: 500;
  line-height: 1.15;
}
@media screen and (max-width: 1080px) {
  .title-primary {
    font-size: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .title-primary {
    font-size: 7.2rem;
    margin-bottom: 0;
  }
}
.title-secondary {
  font-family: inherit;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
}
@media screen and (max-width: 1080px) {
  .title-secondary {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .title-secondary {
    font-size: 2.8rem;
    margin-bottom: 0;
  }
}

.text-small {
  font-family: inherit;
  font-size: 1.36rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
}
.text-medium {
  font-family: inherit;
  font-size: 1.84rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 2.08rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.56rem;
  padding-block: 0.8rem;
  padding-inline: 2rem;
  border-radius: 4.8rem;
  transition: all 0.25s ease;
}
.btn-primary {
  color: var(--colour-800);
  background-color: var(--colour-blue-300);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  color: var(--colour-dark-300);
  background-color: var(--colour-800);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  color: var(--colour-800);
  background-color: var(--colour-dark-100);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 1080px) {
  .unique-features-section {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .unique-features-section {
    padding: 2rem 0;
  }
}
.unique-features-container {
  max-width: 140rem;
  margin: 0 auto;
  overflow: visible;
}
@media (max-width: 768px) {
  .unique-features-container {
    padding: 2rem 1rem;
  }
}
.unique-features-header {
  text-align: center;
  margin: 0 auto 6rem;
}
@media (max-width: 1080px) {
  .unique-features-header {
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .unique-features-header {
    margin-bottom: 3rem;
  }
}
.unique-features-title {
  margin-bottom: 0;
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 4.2rem;
  font-weight: 500;
  color: #121212;
}
@media (max-width: 1080px) {
  .unique-features-title {
    text-align: center;
  }
}
@media (max-width: 1080px) {
  .unique-features-title {
    font-size: 4.2rem;
  }
}
@media (max-width: 768px) {
  .unique-features-title {
    font-size: 2.8rem;
  }
}
.unique-features-carousel {
  position: relative;
  margin-bottom: 6rem;
  overflow: visible;
}
@media (max-width: 768px) {
  .unique-features-carousel {
    margin-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .unique-features-carousel {
    margin-bottom: 2rem;
  }
}
.unique-features-grid {
  display: flex;
  gap: 2.4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.unique-features-grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .unique-features-grid {
    gap: 2rem;
  }
}
.unique-features-card {
  background: linear-gradient(to top, #e2e2e2, #efefef);
  border-radius: 1.2rem;
  padding: 2.4rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
  width: 33rem;
}
.unique-features-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  border-color: #1a1a1a;
}
@media (max-width: 768px) {
  .unique-features-card {
    padding: 2rem;
  }
}
.unique-features-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border: 1px solid #330B95;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #1a1a1a;
  transition: opacity 250ms ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.unique-features-nav:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}
.unique-features-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.unique-features-nav-prev {
  left: -2rem;
}
.unique-features-nav-next {
  right: -2rem;
}
.unique-features-nav:disabled {
  opacity: 1;
  cursor: default;
  background: rgba(255, 255, 255, 0.9);
}
.unique-features-nav:disabled:hover {
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.unique-features-nav.is-faded {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .unique-features-nav {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
  .unique-features-nav-prev {
    left: -0.5rem;
  }
  .unique-features-nav-next {
    right: -0.5rem;
  }
}
.unique-features-icon {
  width: 4rem;
  height: 4rem;
  color: #474747;
  margin-bottom: 1.6rem;
  font-size: 4rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
.unique-features-icon.accent {
  color: #e86e2c;
}
@media (max-width: 480px) {
  .unique-features-icon {
    font-size: 3.2rem;
  }
}
.unique-features-card-description {
  font-family: "Inter", "Helvetica", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #121212;
  color: #474747;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.25px;
}
@media (max-width: 480px) {
  .unique-features-card-description {
    font-size: 1.8rem;
  }
}
.unique-features-cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .unique-features-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
.unique-features-cta-buttons .cta {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  appearance: none;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 0.7rem 5rem;
  border-radius: 2.5em;
  font-size: 1.8rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease-in, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.unique-features-cta-buttons .cta:hover, .unique-features-cta-buttons .cta:focus-visible {
  background-color: #1a1a1a;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}
.unique-features-cta-buttons .cta:active {
  transform: scale(0.99) translateY(1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1280px) {
  .unique-features-cta-buttons .cta {
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .unique-features-cta-buttons .cta {
    width: 100%;
    max-width: 28rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background-color: var(--colour-dark-400);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: baseline;
  column-gap: 1.6rem;
  width: 100%;
  height: 6.4rem;
  margin-inline: auto;
}

.brand {
  font-family: inherit;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--colour-800);
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 6.4rem;
  background-color: var(--colour-dark-400);
  transition: all 0.3s ease;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--colour-800);
}
.menu-block {
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 3.2rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 3.2rem;
  }
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 2.4rem;
  height: 1.6rem;
  user-select: none;
  visibility: visible;
}
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--colour-800);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.8rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1.6rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.8rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1.6rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.8rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.overlay.is-active {
  display: block;
}

/*# sourceMappingURL=compiled.css.map */
