:root {
  --text: #e6e6e6;
  --background: #141414;
  --primary: #9956ff;
  --accent: #c8a5ff;
  --primary_background: #201b28;
  --primary_background_accent: #362650;
}

::selection {
  background: var(--accent);
  color: var(--background);
}

@font-face {
  font-family: "Regular";
  src: url("/static/fonts/InterTight-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Light";
  src: url("/static/fonts/InterTight-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SemiBold";
  src: url("/static/fonts/InterTight-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Bold";
  src: url("/static/fonts/InterTight-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--text);

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;

  margin: 0px;
  padding: 0px;
  padding-top: 0px;

  font-family: "Regular", sans-serif;
  font-weight: 100;
  font-style: normal;
  line-height: 150%;
}

a {
  color: inherit;
  text-decoration: inherit;
}

.default_wrapper {
  width: 100vw;
  max-width: 1200px;
}

.policy_page_wrapper {
  margin: 0 auto;
  max-width: 500px;
  padding: 30px;
  background-color: var(--primary_background_accent);
  border-radius: 20px;
}

.Button_CallToAction {
  width: 75%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "SemiBold", sans-serif;
  background-color: var(--primary);
  color: var(--background);
  border-radius: 25px;
  cursor: pointer;
  transition: 0.2s;
}

.Button_CallToAction:hover {
  background-color: var(--accent);
  color: var(--background);
}

.Link_CallToAction {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;

  top: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.header_background {
  height: 120px;
  background-color: rgba(14, 14, 14, 0.5);
  backdrop-filter: blur(20px);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;

  user-select: none;
}

.header_logo {
  height: 60%;
  width: auto;
  margin: 20px;
}
.header_logo img {
  height: 100%;
  width: auto;
}

.header_nav {
  margin: 20px;
}

header nav a {
  padding: 20px;
  font-family: "SemiBold", sans-serif;
  font-weight: 600;
  font-size: 16px;

  transition: 0.2s;
}

header nav a:hover {
  color: #ffffff;
}

section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.header_balloon {
  width: 100%;
  height: 0px;
}

/* FOOTER */

.FooterContainer {
  height: 250px;
  margin-top: 90px;
  display: flex;
  flex-flow: row;
  line-height: 180%;
}

.FooterSubContainer {
  color: var(--text);
  opacity: 50%;
  width: 50%;
  height: auto;
}

.TextAlign_Left {
  text-align: left;
}
.TextAlign_Right {
  text-align: right;
}

/*PERMISSION SCREEN*/
.permissionScreen {
  width: 500px;
  height: 50vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.permissionScreen .Button_CallToAction {
  width: 250px;
}

/* LANDING PAGE */

.heroimage {
  position: relative;
  height: 600px;
  min-height: 500px;
  overflow: hidden;
}

.heroimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Ensure the image is behind the text */
  border-top-right-radius: 0px;
  border-bottom-right-radius: 25px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 25px;
}

.herotext {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white; /* Ensure the text is visible */
  text-shadow: 0px 0px 20px #000000;
  text-align: center;
  font-size: 60px;
  width: 650px;
}

.FeatureCardContainer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
.RemoveMargin_Left {
  margin-left: 0px !important;
}
.RemoveMargin_Right {
  margin-right: 0px !important;
}

.FeatureCard {
  background-color: var(--primary_background);
  width: 313px;
  height: 400px;
  border-radius: 20px;
  margin: 35px;
  padding: 20px;

  text-align: center;
}

.FeatureCard img {
  height: 150px;
  width: auto;
}
.FeatureCardTitle {
  font-family: "SemiBold";
  font-size: 25px;
}

.ExplainerSection {
  background-color: var(--primary_background);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: auto;
  width: 100%;
}
.ExplainerSection .explainer-item {
  padding-left: 25px;
  padding-right: 25px;
}
.ExplainerSection p {
  color: var(--accent);
}
.ExplainerSection .Title {
  font-family: "SemiBold", sans-serif;
  font-size: 20px;
  color: var(--text);
}

.ExplainerSection .Ingress {
  color: var(--text);
}

.ProjectShowcaseSection {
  background-color: var(--primary_background);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  grid-template-rows: 1fr;
  gap: 10px;
  height: auto;
  width: 100%;
}

.ProjectShowcaseSection .showcase-item {
  padding-left: 25px;
  padding-right: 25px;
}

.ProjectShowcaseSection p {
  color: var(--accent);
}
.ProjectShowcaseSection .Title {
  font-family: "SemiBold", sans-serif;
  font-size: 25px;
  color: var(--text);
}

.showcase-image {
  width: calc(100% + 25px);
  height: 100%;
  padding-left: 0px;
  padding-right: 0px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.PricingCardContainer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-flow: row wrap;
}
.TitleContainer {
  width: 100%;
  height: 80px;

  font-family: "Bold";
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 150%;
}
.PricingCard {
  background-color: var(--primary_background);
  width: 330px;
  height: 400px;
  border-radius: 20px;
  margin: 22px;
  padding: 20px;

  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.PricingCardSection {
  width: 100%;
  height: auto;
}

.PricingCardSectionCallToAction {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.PricingCardMostPopular {
  background-color: var(--primary_background_accent);
  height: 450px;
}
.PricingCard ul {
  list-style: none; /* Remove default list style */
  padding-left: 40px; /* Add padding for the image */
  text-align: left;
}

.PricingCard ul li {
  background-image: url("/static/images/tick.png"); /* Set the tick image */
  background-repeat: no-repeat; /* Prevent image repetition */
  background-position: left center; /* Adjust image position */
  background-size: contain; /* Maintain aspect ratio of the image */
  height: 30px; /* Set height of the list item */
  padding-left: 40px; /* Adjust spacing between image and text */
}

.PricingCardTitle {
  font-family: "SemiBold";
  font-size: 25px;
}

.PricingCardComment {
  color: var(--accent);
}
.PricingCardPrice {
  color: var(--accent);
}
.PricingCardTitle {
  font-size: 30px;
}

.ContactContainer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-flow: row wrap;
}

.ContactContainer .FormContainer {
  background-color: var(--primary_background);
  width: 700px;
  height: auto;
  display: flex;
  justify-content: center;
  border-radius: 25px;
}

.ContactContainer .FormContainer form {
  width: 600px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex; /* Use flexbox layout */
  flex-direction: column; /* Stack children vertically */
  align-items: flex-start; /* Center-align items horizontally */
  gap: 10px; /* Add space between items */
  text-align: left;
  overflow: hidden;
}

.ContactContainer .FormContainer select,
.ContactContainer .FormContainer input {
  width: 600px;
  height: 30px;

  background-color: var(--primary_background_accent);
  color: var(--text);

  border-style: none;

  font-family: "Regular", sans-serif;

  border-radius: 15px;
  padding-left: 10px;
}
.ContactContainer .FormContainer textarea {
  width: 100%;
  height: 150px;

  background-color: var(--primary_background_accent);
  color: var(--text);

  border-style: none;

  font-family: "Regular", sans-serif;
  line-height: 150%;

  border-radius: 15px;
  padding-left: 10px;
  padding-right: 10px;

  resize: none;
}

.ContactContainer .FormContainer label {
  align-self: flex-start;
  padding-left: 10px;
}

input,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#userFormattedPrice {
  background-color: var(--primary_background);
  font-family: "SemiBold", sans-serif;
  font-size: 25px;
}

#paymentterms_confirmed_label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#paymentterms_confirmed {
  width: 15px;
  margin-right: 10px;
}

.ContactContainerSectionCallToAction {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  width: 100%;
  margin-top: 40px;
}

.DownloadContainer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  text-align: center;
}

.DownloadContainer .DownloadCard {
  background-color: var(--primary_background);
  width: 500px;
  height: auto;
  display: flex;
  justify-content: center;
  flex-flow: column;
  border-radius: 25px;
}

.DownloadContainer .download_tagline {
  color: var(--accent);
}

.DownloadContainer .download_version {
  font-family: "SemiBold", sans-serif;
  font-size: 30px;
  margin: 0px;
}

.DownloadContainer .download_releasespecs {
  font-family: "Light", sans-serif;
}
.DownloadContainerSectionCallToAction {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* MODAL */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--primary_background_accent);
  color: var(--text);
  margin: 15% auto; /* 15% from the top and centered */
  padding: 80px;
  width: 50%; /* Could be more or less, depending on screen size */
  border-radius: 20px;
}

/* The Close Button */
.close {
  color: var(--accent);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* ACCOUNT DASHBOARD */

.account_dashboard .card_container {
  display: flex;
  flex-direction: column;
}

.account_dashboard .card_container .order_card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;

  background-color: rgb(67, 43, 82);
  width: auto;
  min-height: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  padding: 20px;
}

.account_dashboard .card_container .order_card .title {
  font-family: "Light", sans-serif;
  font-size: 20px;
}

.account_dashboard .card_container .order_card .information {
  font-family: "Light", sans-serif;
  font-size: 15px;
  width: 200px;
}

.account_dashboard .account_container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.account_dashboard .account_container .account_card {
  width: 200px;
  height: 100px;
}

.rightSide {
  text-align: right;
  line-height: 30px;
}

.rightSide img {
  vertical-align: middle; /* Align the image vertically with the text */
  margin-left: 10px; /* Add some space between the icon and the text */
  width: 25px; /* Set the width of the icon */
  height: 25px; /* Set the height of the icon */
}

/* TRAINING VIDEO */

.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  background: #000;

  border-radius: 25px;
}

.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**/
/**/
/*MOBILE VIEW*/
/**/
/**/

@media only screen and (max-width: 1000px) {
  body {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
    overflow-y: scroll; /* Ensures the ability to scroll vertically */
  }

  body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, newer versions of Opera */
  }

  /*HEADER*/

  header {
    position: absolute;
  }

  .header_background {
    height: 250px;
  }

  .header_nav nav {
    display: flex; /* Using flexbox to align the elements */
    flex-direction: column; /* Aligns children vertically */
    align-items: flex-end; /* Aligns items to the start of the nav element */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin */
    line-height: 200%;
  }

  .header_nav nav a {
    display: block; /* Makes each link take up the full width of the nav */
    padding: 0px 8px; /* Adds padding for spacing */
    text-align: right;
  }
  .header_logo img {
    max-width: 50vw;
  }

  .header_balloon {
    height: 50px;
  }

  /*FOOTER */
  .FooterSubContainer {
    padding-left: 30px;
    padding-right: 30px;
  }

  /*LANDING PAGE*/

  .heroimage {
    height: 100vw;
    min-height: 500px;
  }

  .heroimage img {
    object-position: left;
  }

  .herotext {
    top: 80%;
    font-size: 40px;
    width: 500px;
  }

  .RemoveMargin_Left {
    margin-left: 25px !important;
  }
  .RemoveMargin_Right {
    margin-right: 25px !important;
  }

  .ExplainerSection {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 0fr 1fr 1fr;
    height: auto;
    width: 90%;
    margin: auto;
  }

  .ProjectShowcaseSection {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.7fr;
    height: auto;
    width: 90%;
    margin: auto;
    margin-bottom: 50px;
  }

  .showcase-image {
    width: 100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 25px;
    width: calc(100% + 50px);
    transform: translateX(-25px);
  }

  .ContactContainer {
    width: 100%;
    margin: auto;
  }

  .ContactContainer .FormContainer {
    width: 90%;
  }

  .ContactContainer .FormContainer form {
    width: 95%;
  }
  .ContactContainer .FormContainer input {
    width: 97%;
  }

  .ContactContainer .FormContainer textarea {
    width: 95%;
  }
  .ContactContainer .FormContainer label {
    width: 95%;
  }
}

/*SUPER SMALL SCREENS */
@media only screen and (max-width: 450px) {
  .herotext {
    top: 80%;
    font-size: 28px;
    width: 500px;
  }

  .TitleContainer {
    font-size: 25px;
  }
}
