/**
 * Dark theme variables
 */
:root {
  --base-color: #120F1A;
  --header-color: #120F1A;
  --border: solid 2px #292929;
  --selection-background: rgba(219, 219, 219, 0.99);
  --selection-text: #000;
  --background-color: #f1f2f9;
  --text-color: var(--base-color);
  --placeholder-color: rgba(0, 0, 0, 0.5);
  --link-color: var(--base-color);
  --raisin-black: #120F1A;
  /* yoinkt from Material Design 2014, Deep Purple A200 */
  --purple: #7C4DFF;
  --light-purple: #A998ED;
  --mid-purple: #473C68;
  --dark-purple: #241846;
  --light-teal: #6DD4F1;
  --mid-teal: #02CAF2;
  --dark-teal: #01586A;
  --void-teal: #00191E;
  --pink: #F048B5;
  --light-grey: #9A9A9A;
  --mid-grey: #292929;
  --dark-grey: #120F1A;
  --ghost-white: #f1f2f9;
  --code-color-1: #aaaaaa;
  --code-color-2: #ffffcc;
  --code-color-3: #F00000;
  --code-color-4: #F0A0A0;
  --code-color-5: #b38aff;
  --code-color-6: #5ba711;
  --code-color-7: #e4e477;
  --code-color-8: #000080;
  --code-color-9: #05ca05;
  --code-color-10: #888888;
  --code-color-11: #555555;
  --code-color-12: #800080;
  --code-color-13: #00d4d4;
  --code-color-14: #00c1c1;
  --code-color-15: #ed9d13;
  --code-color-16: #1e90ff;
  --code-color-17: #800000;
  --code-color-18: #bbbbbb;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
}
html, body {
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("/assets/base/waitlist-static.jpeg") no-repeat center center;
  background-size: cover;
  transform: scaleX(-1);
  z-index: -1;
  opacity: 0.9; /* Optional: slightly fade background */
}

body {
  position: relative;
  background-color: var(--ghost-white);
  margin: 0 auto;
  padding: 0 auto;
  font-family: "Inter", monospace;
  font-size: clamp(1.25rem, 2.5vw, 1.4rem);
  color: var(--raisin-black);
  text-align: left;
  line-height: 1.5 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.video-background-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  z-index: -1;
  transform: scaleX(-1);
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.9;
}

.logo img {
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

h1 {
  font-size: clamp(3rem, 10vw, 4.8rem);
  line-height: clamp(5rem, 10vw, 5.8rem);
  margin-bottom: 0rem;
  margin-top: 0rem;
  color: #242526;
}

.fade-in {
  opacity: 0;
  animation: fadeIn ease 1.1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.3s;
}

.subtext, .subtext-thanks {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  background: rgba(232, 246, 253, 0.6);
  border-radius: 1rem;
  box-shadow: 0 0 30px 20px rgba(232, 246, 253, 0.7);
}

.subtext {
  max-width: 550px;
  margin-bottom: 20rem;
}

.subtext-thanks {
  max-width: 410px;
  margin-bottom: 22rem;
}

.info-block, .info-block-thanks {
  font-size: 1rem;
  text-transform: uppercase;
  max-width: 300px;
  margin-right: 25rem;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block-thanks {
  margin-bottom: 7rem;
}

.spaced-text {
  display: inline-block;
  margin-right: 1.25rem;
}

.waitlist-form {
  width: min(90%, 500px);
}

.email-form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid var(--raisin-black);
  border-radius: 999px;
  padding: 0.25rem;
  max-width: 400px;
  width: 100%;
  background: white;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.email-input {
  flex: 1;
  font-size: 1.25rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  padding: 0.25rem;
  max-width: 400px;
  width: 100%;
  background: white;
  margin-left: 0.5rem;
}

.email-input:focus {
  outline: none !important;
  border: none !important;
}

.submit-btn {
  background-color: var(--raisin-black);
  color: var(--ghost-white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn .arrow {
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}

.submit-btn .arrow:hover {
  transform: translateX(2.5px);
}

.footer {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 10vw, 1rem);
  color: #242526;
  display: flex;
  word-spacing: 50%;
  justify-content: center;
}

.footer-mobile {
  display: none;
}

.distrust-link-subtext, .distrust-link-footer {
  text-decoration: underline;
}

.distrust-link-subtext:hover {
  color: var(--pink);
}

.distrust-link-footer:hover {
  color: var(--pink);
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1600px) {
  .subtext {
    margin-bottom: 15rem;
  }
  .subtext-thanks {
    margin-bottom: 17rem;
  }
}
@media (max-width: 1080px) {
  .subtext {
    margin-bottom: 13rem;
  }
  .subtext-thanks {
    margin-bottom: 15rem;
  }
}
@media (max-width: 770px) {
  .body {
    background-color: #e2effc;
  }
  .logo img {
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
    height: 1.7rem;
  }
  .video-background {
    top: 425px;
  }
  .subtext {
    max-width: 350px;
    margin-bottom: 17rem;
    margin-top: 0rem;
  }
  .subtext-thanks {
    max-width: 320px;
    margin-bottom: 25rem;
    margin-top: 0rem;
  }
  .info-block, .info-block-thanks {
    display: none;
  }
  .input-wrapper {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
  .footer {
    display: none;
  }
  .footer-mobile {
    display: block;
    word-spacing: 30%;
    text-align: center;
    color: #636363;
    max-width: 340px;
    font-size: 0.9rem;
    margin-bottom: 5rem;
  }
}
/* body > div.container {
	flex: 1;
}

h1 {
	font-size: clamp(3rem, calc(7vw + 1rem), 7.5rem) !important;
	line-height: 0.9 !important;
	font-weight: 400 !important;
}

h2 {
	font-size: clamp(3rem, calc(7vw + 1rem), 5.6rem) !important;
	line-height: 0.9 !important;
	font-weight: 400 !important;
	width: 100% !important;
}

h3 {
	font-size: clamp(1.5rem, 10vw, 3.5rem) !important;
	line-height: 0.9 !important;
	width: 100% !important;
}

h4 {
	font-size: 32px;
}

h5 {
	font-weight: 400 !important;
	font-size: 22px !important;
}

h6 {
	font-weight: 400 !important;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	margin-top: 0px;
	margin-bottom: 12px;
	font-weight: 400;
	color: var(--header-color);
}

p {
	//font-size: $base-font-size;//
	font-size: clamp(1.25rem, 2.5vw, 1.4rem);
}

p,
ul,
ol {
	margin: 0px;
	color: var(--text-color);
}

a {
	color: var(--link-color);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	color: var(--background-color);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

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

.divider {
	margin-top: 3rem;
}

/*

.gradient-text {
	font-size: 48px;
	font-weight: bold;
	background: linear-gradient(100deg, var(--raisin-black), var(--ghost-white));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gradient-text-inverse {
	font-size: 48px;
	font-weight: bold;
	background: linear-gradient(-100deg, var(--raisin-black), var(--ghost-white));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.hero-p {
	max-width: 800px;
}

.hero-header {
	padding-bottom: 20px;
}

h3.gradient-text.center {
	overflow: visible;
}

.capsule-header {
	margin-top: 80px;
	margin-bottom: 30px;
}

.card {
	transition: border 0.3s ease-in-out;
	background: var(--dark-grey);
	border: 1px solid var(--mid-purple);
	border-radius: 20px;
	padding: 45px;
	margin: 20px;
	min-height: 150px;
	max-width: 550px;
}

.card:hover {
	border: 1px solid var(--light-purple);
}

.text-description-desktop {
	display: block;
}

.text-description-mobile {
	display: none;
}

@mixin capsule {
	font-weight: 400;
	font-size: 16px;
	border-radius: 30px;
	padding: 1px;
	width: 130px;
	margin: auto;
	text-align: center;
}

.capsule {
	color: var(--light-purple);
	background: var(--dark-purple);
	border: 1px solid var(--dark-purple);
	@include capsule;
}

.capsule-grey {
	color: white;
	background: #262626;
	border: 1px solid #262626;
	@include capsule;
}

.capsule-yellow {
	color: var(--background-color);
	background: var(--dark-teal);
	border: 1px solid var(--dark-teal);
	filter: brightness(190%);
	@include capsule;
}

.capsule-green {
	color: var(--background-color);
	background: var(--light-purple);
	border: var(--light-purple);
	@include capsule;
}

.capsule-teal {
	color: var(--light-teal);
	background: var(--dark-teal);
	border: 1px solid var(--dark-teal);
	@include capsule;
}

.capsule-transparent {
	background: var(--light-grey);
	color: var(--dark-grey);
	border: 1px solid var(--light-grey);
	margin: 0px 0px 0px 5px !important;
	width: 100px !important;
	filter: brightness(70%);
	@include capsule;
}

.component-links {
	display: flex;
	flex-wrap: wrap;
}

.component-section {
	display: flex;
	justify-content: left;
}

.live-tool-name {
	font-size: 2.5rem;
	font-weight: bolder;
}

.kanban-column {
	border:1px solid #282D38;
	padding: 20px 20px !important;
	flex-direction: column;
	justify-content: flex-start !important;
	min-height: 860px;
}

.kanban-column a {
	width: 100%;
}

.mini-card {
	border: 1px solid #232730;
	margin-bottom: 20px;
	padding: 20px 30px;
	min-height: 150px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	filter: brightness(60%);
	transition: filter 0.3s ease;
}

.mini-card:hover {
	filter: brightness(100%);
}

.mini-card p {
	margin: 0px;
	font-size: 1rem !important;
	color: var(--light-grey);
}

.mini-card {
	font-size: 1rem !important;
}

.mini-card b {
	font-size: 1.3rem;
	color: white;
}

.mini-card a {
	font-size: 1rem;
}

#kanban h4 {
	margin-bottom: 40px;
	font-weight: 600;
}

.floating-card {
	position: relative;
}

.column-backlog .mini-card:hover {
	border: 1px solid white;
}

.column-progress .mini-card:hover {
	border: 1px solid var(--light-purple);
}

.column-active .mini-card:hover {
	border: 1px solid var(--light-teal);
}

.kanban-column a:hover {
	background: none;
}

#roadmap {
	margin-bottom: 60px;
}

.roadmap .text-well {
	margin: auto;
}

.component-text {
	line-height: 26px;
	margin-right: 10px;
}

.roadmap-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.roadmap-header-capsule {
	display: flex;
	vertical-align: center;
	margin-left: 20px;
}

.roadmap-title-container {
	display: flex;
}

.roadmap-card:hover {
	border: 1px solid var(--light-teal);
}

.roadmap-card-teal:hover {
	border: 1px solid var(--light-teal) !important;
}

.roadmap-item-name {
	color: white !important;
	font-size: 40px !important;
	font-weight: 600;
}

.roadmap-tagline-line {
	font-size: 30px !important;
	line-height: 2.2;
	color: var(--light-grey) !important;
}

.roadmap-tagline {
	font-size: 40px !important;
	color: var(--light-grey) !important;
}

.roadmap p {
	max-width: 700px;
}

.threat-model {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}

.narrow-list > li > p {
	margin-top: 0px;
}

.arrow-link {
	display: inline-flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 4px;
	margin-left: 0px;
	padding-left: 0px;
}

.arrow {
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.3s ease;
}

.blog-link:hover .arrow {
	transform: translateX(5px);
	background: none !important;
	background-color: var(--base-color);
	color: white !important;
}

.arrow-link:hover .arrow {
	transform: translateX(5px);
	background: none !important;
	background-color: var(--base-color);
	color: white !important;
}

.live-tools-cards .arrow-link:hover .arrow {
	color: var(--light-teal) !important;
}

.mini-card:hover .arrow {
	transform: translateX(5px);
}

.arrow-link:hover {
	background: none !important;
	background-color: var(--base-color);
	color: white !important;
}

.roadmap .flex-container .flex-container-inner .text-well {
	border: 1px solid grey;
	padding: 40px;
	max-width: 1000px;
	min-height: 360px;
	transition: transform 0.7s ease, background-color 0.3s ease;
}

.roadmap .flex-container .flex-container-inner .text-well:hover .learn-more {
	color: #F048B5;
}

.learn-more {
	font-weight: 600;
}

.roadmap .flex-container .flex-container-inner .text-well p {
	margin-top: 0px;
	margin-bottom: 0px;
}

.roadmap .flex-container .flex-container-inner .text-well h5 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.roadmap .flex-container .flex-container-inner h3 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.roadmap .flex-container {
	margin-top: 50px;
	margin-bottom: 50px;
}

.powered-by .card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--mid-grey);
	min-height: 400px;
	padding: min(2.5em,8%);
	background: none;
	width: 100%;

}

.powered-by .card:hover {
	border: 1px solid var(--light-grey)
}

.powered-by img {
	width: 100%;
	max-width: 200px;
}

.powered-by .img-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 60px;
}

.powered-by a {
	margin-top: auto;
}

.live-tools-cards .card {
	display: flex;
	flex-direction: column;
	min-height: 360px;
	padding: 35px;
	background: none;
	border: 1px solid var(--light-teal);
}

.live-tools-cards .arrow-link {
	margin-top: 0.75rem;
}

.live-tools-cards .card:hover {
	box-shadow: 0 0 15px var(--dark-teal);
}

.video-background {
	left: 85%;
	width: 200px !important;
}

.video-background-container {
	position: absolute;
	width: 100%;
	height: 800px;
	overflow: hidden;
	top: 100px;
	left: 0;
	z-index: -1;
}

.gradient-overlay {
	background: linear-gradient(to bottom, #0f0f0f 0%, rgba(15, 15, 15, 0) 25%, rgba(15, 15, 15, 0) 75%, #0f0f0f 100%), linear-gradient(to right, rgb(15, 15, 15) 30%, rgba(15, 15, 15, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.video-background {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: -1;
	object-fit: cover;
}

.video-content {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 2rem;
}

.video-background-philosophy, .video-background-our-approach {
	left: 85%;
	width: 200px !important;
}

.video-background-building-blocks {
	right: 80%;
	width: 100% !important;
}

.video-background-container-philosophy {
	position: absolute;
	width: 100%;
	height: 800px;
	overflow: hidden;
	top: 2950px;
	left: 0;
	z-index: -1;
}

.video-background-container-our-approach {
	position: absolute;
	width: 100%;
	height: 800px;
	overflow: hidden;
	top: 1850px;
	left: 0;
	z-index: -1;
	transform: scaleY(-1)
}

.video-background-container-building-blocks {
	position: absolute;
	width: 100%;
	height: 800px;
	overflow: hidden;
	top: 2170px;
	left: 0;
	z-index: -1;
}

.gradient-overlay-philosophy, .gradient-overlay-our-approach {
	background: linear-gradient(to bottom, #0f0f0f 0%, rgba(15, 15, 15, 0) 25%, rgba(15, 15, 15, 0) 75%, #0f0f0f 100%), linear-gradient(to left, rgb(15, 15, 15) 0%, rgba(15, 15, 15, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.gradient-overlay-building-blocks {
	background: linear-gradient(to bottom, #0f0f0f 0%, rgba(15, 15, 15, 0) 25%, rgba(15, 15, 15, 0) 75%, #0f0f0f 100%), linear-gradient(to right, rgb(15, 15, 15) 40%, rgba(15, 15, 15, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.video-background-philosophy, .video-background-our-approach {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: -1;
	object-fit: cover;
}

.video-background-building-blocks {
	position: absolute;
	top: 50%;
	left: 70%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: -1;
	object-fit: cover;
}

.video-content-philosophy, .video-content-our-approach, .video-content-building-blocks {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 2rem;
}

.video-content-building-blocks .why-distrust {
	font-size: 70px !important;
	line-height: 70px !important;
}

.video-content-building-blocks {
	margin-top: 15rem;
	margin-bottom: 15rem;
}

.why-choose-distrust .properties .flex-container-inner {
	border-top: 1px solid var(--light-purple);
	margin-right: 40px;
}

.flex-container.properties {
	display: flex;
	flex-wrap: wrap;
}

.flex-container.properties .flex-container-inner {
	flex: min-content;
	max-width: 40%;
	box-sizing: border-box;
}

.threatmodel-cta .properties .flex-container-inner {
	border-top: 1px solid var(--pink);
	margin-right: 40px;
}

.why-choose-distrust svg, .threatmodel-cta svg {
	margin-top: 20px;
}

.threatmodel-cta-columns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 15rem;
  }


  .flex-container-inner {
	flex: 1;
	min-width: 250px;
  }

  .flex-container-inner .card .landing-offerings {
	min-height: 480px;
  }

  .threatmodel-cta-right-column .button-container {
	flex-shrink: 0;
	display: block;
  }

  .threatmodel-cta-bottom .button-container {
	display: none;
  }

  .threatmodel-cta-right-column .mega.button, .threatmodel-cta-bottom .mega.button {
	border: 2px solid var(--pink);
	box-shadow: 0 0 18px var(--pink);
	background-color: #2A0A1F;
  }

  .threatmodel-cta-right-column .mega.button:hover, .threatmodel-cta-bottom .mega-inverted.button:hover {
	border: 2px solid var(--pink);
	box-shadow: 0 0 18px var(--pink);
	background-color: var(--pink);
  }


  .button-container.center {
	display: flex;
	justify-content: flex-end;
  }

.live-tools .properties .flex-container-inner {
	border-top: 1px solid var(--light-purple);
	margin-right: 40px;
}

.live-tools svg {
	margin-top: 20px;
}

//@media only screen and (max-device-width: 500px) {
	//* {
		//font-size: $mobile-font-size;//
	//}//
//}//

.container {
	width: $container-width;
	max-width: $container-max-width;
	margin-right: auto;
	margin-left: auto;
}

p {

	word-wrap: break-word;
	word-break: break-word;
	white-space: pre-wrap;

margin-top: 16px;
margin-bottom: 16px;
}

footer {
	color: var(--raisin-black);
	background-color: color-mix(in srgb, var(--background-color), white 1.5%);
	border-top: 2px solid var(--purple);
	padding: 60px 0px 40px 0px;
	text-align: right;
	margin-top: 80px;
	font-size: 1rem;
}

.footer {
	display: flex;
}

.footer-description-mobile {
	display: none;
}

.footer-logo img {
	float: left;
	width: 270px;
}

.footer-logo img:hover {
	filter: brightness(0.8)
}

.footer-divider {
	width: 30rem;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-logo {
	flex: 1 1 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start
}

.footer-description {
	font-size: 1.3rem;
	line-height: 1.5;
	text-align: left;
}

.footer-links {
	display: flex;
	gap: 6rem;
	margin-top: 0.5rem;
	line-height: 2.5rem !important;
}

.footer-links div {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 9.5rem;
}

.footer-links a {
	font-size: 1.5rem;
	text-align: left;
	transition: opacity 0.2s ease;
}

.footer-links a:hover {
	color: var(--purple);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2rem;
	font-size: 1rem;
}

.footer-social a {
	vertical-align: middle;
}

.footer-social a img {
	height: 20px;
	width: 20px;
	margin-left: 0.5rem;
	filter: invert(1) grayscale(1) brightness(0.5);
	transition: filter 0.2s ease;
	vertical-align: sub;
}

.footer-social a img:hover {
	filter: invert(1) grayscale(0) brightness(1);
}


header {
	padding: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	background-color: color-mix(in srgb, var(--background-color), white 1.5%);
}

header p {
	text-align: left;
	margin: 0;
}

hr {
	margin-top: 20px;
}


 .inline-email-form .form-row {
	display: flex;
	align-items: center;
	gap: 10px;
  }

  .form-input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
  }

  .circle-btn {
	background-color: black;
	color: white;
	border: none;
	border-radius: 50%;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
  }

  .circle-btn:hover {
	background-color: #333;
  }

  .btn-arrow {
	font-weight: bold;
  }

  .landing-logo-container {
	text-align: center;
	margin: auto;
  }

.menu {
	max-width: 1280px;
	margin: auto;
}

.menu-logo {
	height: clamp(1.5rem, 10vw, 5rem);
	margin-top: 2rem;
}

#home-link:hover {
	background: none;
	text-decoration: none;
}

.header-page-links li:before {
	content: ''
}

.header-page-links a {
	color: var(--light-grey);
	display: inline-block;
	margin: 0px 4px;
	font-size: 1.1rem;
	text-decoration: none;
}

.header-page-links a.active {
	color: var(--raisin-black);
}

.header-page-links a:hover {
	background-color: transparent;
	color: (--raisin-black);
}

.left-menu {
	display: flex;
	align-items: center;
	transition: transform 0.5s ease;
	filter: brightness(0.8);
	will-change: filter;
}

.left-menu:hover {
	filter: brightness(1.0);
}

.left-menu img {
	display: flex;
}

.right-menu {
	width: 74%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#menu-toggle {
  display: none;
}

.hamburger-wrapper {
  position: relative;
  z-index: 100;
  width: 50px;
  height: 50px;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 22px;
  z-index: 2;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  left: 0;
  transition: transform 0.4s, top 0.4s, opacity 0.4s;
}

.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 9px; }
.hamburger-menu span:nth-child(3) { top: 18px; }

#menu-toggle:checked + .hamburger-menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
#menu-toggle:checked + .hamburger-menu span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger-menu span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.menu-content {
  border-bottom: 1px solid var(--light-grey);
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background: var(--background-color, #222);
  z-index: 50;
  padding: 20px 0;
	display: none;
}

#menu-toggle:checked ~ .menu-content {
	display: block;
}

.inner-menu-content {
  margin: 20px 30px;
}

.inner-menu-content a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.inner-menu-content a:hover {
  color: #ccc;
}


.why-distrust {
	text-align: left;
	padding-bottom: 15px;
}


.about-special h2 {
	font-weight: 600 !important;
	margin: 0px;
	padding-bottom: 20px;
}

.about-special {
	padding-left: 0px;
	margin-top: 80px;
}

.team .card {
	border-radius: 0px;
	padding: 20px;
	min-height: 120px;
	min-width: unset;
	height: 165px;
	border: 1px solid var(--mid-grey);
	margin-left: 0px;
	background: radial-gradient(circle, rgba(41, 41, 41, 0.6) 20%, #120F1A 100%);
	box-shadow:
	0px 4px 6px rgba(0, 0, 0, 0.5),
	0px 10px 30px rgba(0, 0, 0, 0.3);
}

.team span {
	font-size: 0.8rem;
}

.team .title {
	text-transform: unset;
}

.team p, .team a {
	font-size: 15px;
	margin-top: 0px;
	margin-bottom: 0px;
	color: var(--light-grey);
}

.team a {
	color: var(--light-purple);
}

.team a:hover {
	text-decoration: underline;
}

.team img {
	height: 130px;
	border: 1px solid teal;
}

.team .flex-container {
	justify-content: flex-start;
}
.team h5 {
	font-size: 20px !important;
}

.team .flex-container-inner {
	margin-bottom: 0px;
	margin-right: 20px;
}


 @media (max-width: 1390px) {

	.flex-container.properties .flex-container-inner {
		flex: 100rem;
	}

	.powered-by .card {
		min-height: 360px;
	}
 }

@media (max-width: 1020px) {

	.right-menu {
		width: 40px;
		height: 40px;
	}

	.menu-button-container {
		display: flex;
	}

	#menu-toggle~.menu li {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	#menu-toggle:checked~.menu li {
		border: 1px solid #333;
		height: 2.5em;
		padding: 0.5em;
		transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	}

	.menu>li {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: 0.5em 0;
		width: 100%;
		color: white;
		background-color: #222;
	}

	.menu>li:not(:last-child) {
		border-bottom: 1px solid #444;
	}

	.values-container {
		font-size: 23px !important;
	}

	.live-tools-cards .card {
		min-height: 430px;
	}
}

.button {
	display: inline-block;
	padding: 10px 20px 9px 20px;
	border-radius: 30px;
	margin-top: 10px;
	color: var(--base-color);
	background-color: var(--background-color);
	border: 2px solid white;
	text-decoration: none;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button:hover {
	background-color: var(--base-color);
	color: var(--background-color);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

@mixin mega {
	border-radius: 30px;
	font-weight: 400;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.mega-inverted.button {
	border: 1px solid var(--mid-grey);
	background: var(--mid-grey);
	color: white;
	@include mega;
}

.mega-inverted.button:hover {
	transform: translateY(0px);
	background: var(--purple);
	color: var(--base-color);
}

.mega.button {
	background-color: var(--dark-purple);
	color: var(--base-color);
	border: 2px solid var(--light-purple);
	box-shadow: 0 0 18px rgba(42,106,255,0.6);
	@include mega;
}

.mega.button:hover {
	background: var(--purple);
	color: var(--base-color);
	border: 2px solid var(--purple);
}

.mega-teal.button {
	background-color: var(--dark-teal);
	color: var(--base-color);
	border: 2px solid var(--light-teal);
	box-shadow: 0 0 18px rgba(42,106,255,0.6);
	@include mega;
}

.mega-teal.button:hover {
	background: var(--mid-teal);
	color: var(--base-color);
	border: 2px solid var(--mid-teal);
}

.button-container {
	padding-top: min(1em, 50%);
}

.contact-button {
	margin-top: 15px;
	cursor: pointer;
	font-size: 19px;
	width: 100%;
	border-radius: 10px;
	height: 60px;
	background: var(--purple);
	color: white;
	border: 1px solid var(--light-purple);
}

.contact-button:hover {
	box-shadow: 0 0 18px rgba(42,106,255,0.6);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.two-column-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
	justify-content: space-between;
  }

.contact-info {
	flex: 1 1 45%;
	max-width: 500px;
  }

.logo-grid-container {
	margin-top: 40px;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 35px 70px;
	list-style: none;
	padding: 0;
	margin: 0;
	align-items: center;
	justify-items: start;
	opacity: 0.9;
	padding-top: 1.5rem;
  }

  .logo-grid img {
	max-width: 100%;
	max-height: 30px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
  }


::selection {
	background: var(--selection-background);
	color: var(--selection-text);
}

::-moz-selection {
	background: var(--selection-background);
	color: var(--selection-text);
}



.right-menu>ul>li:before {
	content: "" !important;
	margin-right: 4px;
}


.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu ul {
	padding-left: 0px;
	list-style-type: none;
	text-align: right;
}

.menu ul li {
	display: inline;
	margin-left: 10px;
}


input,
select,
textarea {
	padding: 0;
	margin: 0;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border: none;
}

input[type=text],
select,
textarea {
	width: 100%;
	resize: none;
	background-color: white;
	color: black;
	caret-color: black;
}

input,
select,
textarea,
textarea::-webkit-input-placeholder {
	text-indent: 0px;
}

::placeholder {
	color: var(--placeholder-color);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--placeholder-color);
}

::-ms-input-placeholder {
	color: var(--placeholder-color);
}

input[type=submit] {
	font-size: $base-font-size;
	font-family: $base-font-family;
	line-height: $base-line-height;
	cursor: pointer;
	color: var(--link-color);
	background-color: var(--background-color);
}

input[type=submit]:hover {
	color: var(--background-color);
	background-color: var(--base-color);
}

.submit-policy {
	max-width: 500px;
	margin-top: 9px;
	font-size: 0.8rem !important;
	filter: brightness(80%);
}

*:focus {
	outline: none;
}

textarea {
	vertical-align: top;
}


.required:after {
	content: "*";
	color: var(--ghost-white);
}

.placeholder:after {
	color: grey;
}

.form-container {
	max-width: 700px;
	margin: auto;
	margin-left: 8rem;
}

.form-container.card {
	background: var(--ghost-white);
	min-height: 150px !important;
}

.form-label {
	display: block;
	margin-bottom: 5px;
	margin-top: 6px;
}

.form-input,
.form-select,
.form-textarea {
	border: 1px solid grey;
	border-radius: 10px;
	font-size: 16px;
	caret-color: black !important;
	color: var(--ghost-white) !important;
	background: var(--background-color) !important;
	height: 50px;
	width: 100%;
	padding: 8px;
	margin-bottom: 10px;
}

.form-textarea {
	height: 100px !important;
}

.form-checkbox-container {
	display: flex;
	flex-direction: column;
}

.form-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
  }

  .form-half {
	flex: 1;
	min-width: 200px;
  }


.particles-wrapper {
	background-color: #222;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.flex-container {
	padding-left: 0px;
	padding-right: 0px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.flex-container-inner {
	width: 100%;
}

section {
	width: 100%;
	margin-top: 100px;
	margin-bottom:100px;
}

.mid-tall-section {
	margin: 150px 0px;
}

.tall-section {
	margin: 250px 0px;
}

.extra-spacing {
   margin-top: 70px;
   margin-bottom: 70px;
}

.companies {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0px;
}

.companies div {
	width: 27%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	border-bottom: 1px solid;
}

.companies a img {
	height: 45px;
	filter: grayscale(100%);
	text-align: center;
}

.companies a:hover {
	background-color: none;
	background: none;
	text-decoration: none;
}

.values-container {
	font-size: 30px;
	text-align: right;
	direction: rtl;
}

.text-well {
	max-width: 100%;
}


.lineno {
	color: var(--code-color-1);
	margin-right: 15px;
}

figure.highlight {
	margin: 5px 0;
}

pre {
	background-color: var(--background-color);
	border: none;
	padding: 0;
	margin: 0;
	overflow: auto;
	font-size: $base-font-size;
	color: var(--text-color);
	line-height: 1.7 !important;
	font-family: $base-font-family !important;
}

.highlight .hll {
	background-color: var(--code-color-2);
}

.highlight .c {
	color: var(--code-color-1);
	font-style: italic
}


.highlight .err {
	color: var(--code-color-3);
	background-color: var(--code-color-4);
}


.highlight .k {
	color: var(--code-color-5);
}


.highlight .cm {
	color: var(--code-color-1);
	font-style: italic
}


.highlight .cp {
	color: var(--code-color-6);
}


.highlight .c1 {
	color: var(--code-color-1);
	font-style: italic
}


.highlight .cs {
	color: var(--code-color-5);
	font-style: italic
}


.highlight .gd {
	color: var(--code-color-7);
}


.highlight .ge {
	font-style: italic
}


.highlight .gr {
	color: var(--code-color-7);
}

.highlight .gh {
	color: var(--code-color-8);
	font-weight: bold
}


.highlight .gi {
	color: var(--code-color-9);
}


.highlight .go {
	color: var(--code-color-10);
}


.highlight .gp {
	color: var(--code-color-11);
}


.highlight .gs {
	font-weight: bold
}


.highlight .gu {
	color: var(--code-color-12);
	font-weight: bold
}


.highlight .gt {
	color: var(--code-color-7);
}


.highlight .kc {
	color: var(--code-color-5);
}


.highlight .kd {
	color: var(--code-color-5);
}


.highlight .kn {
	color: var(--code-color-5);
}


.highlight .kp {
	color: var(--code-color-5);
}


.highlight .kr {
	color: var(--code-color-5);
}


.highlight .kt {
	color: var(--code-color-13);
}


.highlight .m {
	color: var(--code-color-14);
}


.highlight .s {
	color: var(--code-color-15);
}

/* Literal.String *
.highlight .na {
	color: var(--code-color-16);
}

/* Name.Attribute *
.highlight .nb {
	color: var(--code-color-13);
}

/* Name.Builtin *
.highlight .nc {
	color: var(--code-color-9);
	text-decoration: underline
}

/* Name.Class *
.highlight .no {
	color: var(--code-color-7);
}

/* Name.Constant *
.highlight .nd {
	color: var(--code-color-10);
}

/* Name.Decorator *
.highlight .ni {
	color: var(--code-color-17);
	font-weight: bold
}

/* Name.Entity *
.highlight .nf {
	color: var(--code-color-9);
}

/* Name.Function *
.highlight .nn {
	color: var(--code-color-13);
	text-decoration: underline
}

/* Name.Namespace *
.highlight .nt {
	color: var(--code-color-16);
	font-weight: bold
}

/* Name.Tag *
.highlight .nv {
	color: var(--code-color-7);
}

/* Name.Variable *
.highlight .ow {
	color: var(--code-color-5);
}

/* Operator.Word *
.highlight .w {
	color: var(--code-color-18);
}

/* Text.Whitespace *
.highlight .mf {
	color: var(--code-color-14);
}

/* Literal.Number.Float *
.highlight .mh {
	color: var(--code-color-14);
}

/* Literal.Number.Hex *
.highlight .mi {
	color: var(--code-color-14);
}

/* Literal.Number.Integer *
.highlight .mo {
	color: var(--code-color-14);
}

/* Literal.Number.Oct *
.highlight .sb {
	color: var(--code-color-15);
}

/* Literal.String.Backtick *
.highlight .sc {
	color: var(--code-color-15);
}

/* Literal.String.Char *
.highlight .sd {
	color: var(--code-color-15);
}

/* Literal.String.Doc */
.highlight .s2 {
  color: var(--code-color-15);
}

/* Literal.String.Double *
.highlight .se {
	color: var(--code-color-15);
}

/* Literal.String.Escape *
.highlight .sh {
	color: var(--code-color-15);
}

/* Literal.String.Heredoc *
.highlight .si {
	color: var(--code-color-15);
}

/* Literal.String.Interpol *
.highlight .sx {
	color: var(--code-color-15);
}

/* Literal.String.Other *
.highlight .sr {
	color: var(--code-color-14);
}

/* Literal.String.Regex *
.highlight .s1 {
	color: var(--code-color-15);
}

/* Literal.String.Single *
.highlight .ss {
	color: var(--code-color-5);
}

/* Literal.String.Symbol *
.highlight .bp {
	color: var(--code-color-13);
}

/* Name.Builtin.Pseudo *
.highlight .vc {
	color: var(--code-color-7);
}

/* Name.Variable.Class *
.highlight .vg {
	color: var(--code-color-7);
}

/* Name.Variable.Global *
.highlight .vi {
	color: var(--code-color-7);
}

/* Name.Variable.Instance *
.highlight .il {
	color: var(--code-color-14);
}

/* Literal.Number.Integer.Long *

.hide {
	display: none;
	width: 100%;
}

.show {
	display: inline-block;
}

/**
 * Companies Carousel
 *

.logo-section {
	width: 100%;
	overflow: hidden;
	padding: 20px 0;
	filter: brightness(50%);
	mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.logo-slider {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	transform: translateX(0);
}

.logo-slider img {
	height: 50px;
	margin-right: 80px;
	filter: grayscale(100%);
	opacity: 0.8;
	transition: opacity 0.3s;
}

/**
 * Carousel
 *

.carousel-container {
	padding-left: 80px;
}

#carousel {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	height: 320px;
	padding-left: 100px;
	position: relative;
}

.carousel-item {
	display: flex;
	justify-content: center;
	align-items: start;
	max-width: 400px;
	height: 80px;
	width: 100%;
	font-size: 16px;
	opacity: 0.5;
	margin: 5px 0;
	position: absolute;
	left: 0;
	right: 0;
	transition: transform 1s ease, font-size 1s ease, opacity 1s ease;
	transform-origin: center;
	visibility: hidden;
	overflow: hidden;
}

.carousel-link {
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
	max-height: 2.4em;
	width: 100%;
	margin: 0 10px;
	white-space: normal;
}

.carousel-item.active {
	transform: translateY(0) scale(1.2);
	font-size: 20px;
	opacity: 1;
	visibility: visible;
}

.carousel-title {
	font-weight: 400;
	font-size: 22px;
	color: var(--light-grey);
}

.container-our-approach {
	margin: auto;
	max-width: 700px;
	margin-top: 80px;
}

/** end carousel */
/**
 * Blog
 *

.blog {
	margin: auto;
	max-width: 700px;
	margin-top: 80px;
}

.post {
	max-width: 700px;
	margin: 100px 0px;
}

.post img {
	max-width: 100%;
}

#lp-post-img {
	max-width: 100%;
}

#lp-post-img {
   max-width: 100%;
}

.entry {
	font-size: 1.2rem;
}

.date h4 {
	font-size: 1rem !important;
}

#blog-header {
	margin: 80px 0px;
}

.blog-header-title {
	display: inline-block;
	font-size: 3.2rem;
	text-align: center;
	width: 100%;
	margin-top: 80px;
}

.blog-header-subtitle {
	text-align: center;
	font-size: 1.5rem;
	color: var(--light-grey);
}

.blog h1 {
	font-size: 2rem !important;
	line-height: 2rem !important;
	font-weight: 600 !important;
}

.blog h2 {
	font-size: 1.8rem !important;
	font-weight: 600 !important;
}

.blog h3 {
	font-size: 1.6rem !important;
	font-weight: 600 !important;
}

.blog h4 {
	font-size: 1.4rem !important;
	font-weight: 600 !important;
}

.blog h5 {
	font-size: 1.2rem !important;
	font-weight: 600 !important;
}

.blog hr {
	margin: 80px 0px;
}

.post a {
	color: var(--light-teal);
}

.post a:hover {
	text-decoration: underline;
}

.blog-details {
	display: flex;
	flex-direction: left;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.blog-details-date {
	background: var(--light-grey);
	color: var(--background-color);
	border-radius: 5px;
	padding: 2px 10px;
}

.blog-details-read-time {
	padding: 2px 10px;
	margin-left: 15px;
	color: white;
}

/** end blog */
/** TESTIMONIALS **

.testimonials {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 3rem 1.5rem;
	background-color: #0d0d0d;
  }

  .testimonial-card {
	background-color: #121212;
	padding: 2rem;
	border-radius: 1rem;
	width: 320px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
  }

  .testimonial-logo {
	height: 32px;
  }

  .testimonial-quote {
	color: #fff;
	font-size: 1rem;
	line-height: 1.6;
	font-style: italic;
  }

  .testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
  }

  .testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
  }

  .testimonial-name {
	font-weight: 600;
	color: #fff;
	margin: 0;
  }

  .testimonial-title {
	font-size: 0.875rem;
	color: #aaa;
	margin: 0;
  }

//* TESTIMONIALS *

*,
	*::before,
	*::after {
		box-sizing: border-box;
	}

	.wrapper {
		background: linear-gradient(60deg, #420285, #08BDBD);
		height: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.title {
		text-transform: uppercase;
		font-size: 20px;
		margin-top: 10px;
	}

	.who-we-are {
		margin-left: 70px;
	}

	/**
	 * media queries
	 *
@media (max-width: 1500px) {

	 .video-background-container-our-approach {
		top: 2190px;
	}
}

@media (max-width: 1380px) {
	.vertical-line-container {
		display: none;
	}
	.roadmap-tagline {
		font-size: 30px !important;
		line-height: 30px;
		margin-bottom: 15px;
	}
}

@media (max-width: 1258px) {
	  .logo-grid {
		display: none;
	  }
}

@media (max-width: 1150px) {
	.roadmap-title-container {
		flex-direction: column;
	}
	.roadmap-tagline-line {
		display: none;
	}
	.component-section {
		flex-direction: column;
	}
	.component-links {
		max-width: 100%;
	}

	footer {
		padding: 50px 0px 30px 0px;
	}

	.footer-links {
		gap: 5rem;
		padding-right: 0rem;
	}

	.footer {
		flex-direction: column;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-logo img {
		width: 115%;
	}

	.footer-description, .footer-links a {
		font-size: 1.2rem !important;
	}

	.footer-description {
		margin-bottom: 1.2rem;
	}

	.footer-links {
		gap: 5rem;
		flex-direction: row;
		line-height: 2rem !important;
	}

	.footer-links a:hover {
		color: var(--purple);
	}

	.footer-footer {
		font-size: 0.75rem;
	}

	.footer-bottom {
		margin-top: 2rem;
	}

	.footer-social a img {
		height: 20px;
		margin-left: 0rem;
		width: 20px;
	}

}

@media (max-width: 1020px) {
	.flex-container-inner {
		width: 100% !important;
		min-height: auto;
		margin: 0;
		margin-bottom: 20px;
	}

	.text-description-desktop {
		display: none;
	}

	.text-description-mobile {
		display: block;
	}

	.hamburger-menu {
		display: inline-block;
	}

	.hide {
		display: inline-block;
	}

	.show {
		display: none;
	}

	.who-we-are-section {
		flex-direction: column-reverse;
	}

	.team .flex-container-inner {
		margin-bottom: 30px;
	}

	.threatmodel-cta-columns .flex-container-inner, .threatmodel-cta-columns h2 {
		margin-bottom: 0px;
	}

	h1 {
		//font-size: 80px !important;//
		line-height: 80px !important;
	}

	h2 {
		//font-size: 60px !important;//
		//line-height: 60px !important;//
	}

	.video-background-container-our-approach {
		top: 2400px;
		transform: scaleX(-1);
	}
}

@media (max-width: 850px) {

.flex-container.properties .flex-container-inner {
	max-width: 40%;
}

.why-choose-distrust .flex-container.properties .flex-container-inner {
	height: 15rem !important;
}

.video-background-container-our-approach {
	top: 2150px;
}

}

@media (max-width: 730px) {
	footer {
		padding: 50px 0px 20px 0px;
		margin-top: 1rem;
	}

	.divider {
		display: none;
	}

	.flex-container.properties .flex-container-inner {
		max-width: 100%;
		max-height: 9rem;
	}

	.why-choose-distrust .flex-container.properties .flex-container-inner {
		max-width: 100%;
		padding-bottom: 12rem !important;
	}

	.card {
		margin: 5px;
	}

	.software-cta .gradient-text.center {
		font-size: 40px;
	}

	.threatmodel-cta-columns {
		margin-top: 2rem !important;
	}

	.threatmodel-cta-right-column .button-container {
		display: none;
	}

	.threatmodel-cta-bottom .button-container {
		display: block;
	}

	.threatmodel-cta {
		margin-top: 0px !important;
	}

	.video-content-building-blocks .why-distrust {
		font-size: 40px !important;
		line-height: 45px !important;
		min-height: 150px;
	}

	.video-content-building-blocks {
		margin-top: 1rem;
		margin-bottom: 2rem;
	}

	.video-background-container-building-blocks {
		top: 2800px;
	}

	.video-background-container-philosophy {
		top: 3430px;
	}

	.why-distrust, .video-content-philosophy .why-distrust {
		font-size: 55px !important;
		line-height: 50px !important;
	}
}

@media (max-width: 600px) {

	.live-tools-cards .card {
		min-height: 300px;
	}

	.mini-card {
		padding: 20px 20px !important;
		filter: brightness(100%) !important;
	}

	.kanban-column {
		border: none !important;
		padding: 0px !important;
	}

	#kanban {
		flex-direction: column-reverse;
	}

	#kanban h4 {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.column-backlog .mini-card {
		border: 1px solid white;
	}

	.column-progress .mini-card {
		border: 1px solid var(--light-purple);
	}

	.column-active .mini-card {
		border: 1px solid var(--light-teal);
	}

	.flex-container {
		flex-direction: column;
	}

	.form-container.card {
		padding: 20px 15px;
	}

	.who-we-are-section {
		flex-direction: column-reverse;
	}

	section {
		margin-top: 80px;
		margin-bottom: 80px;
	}

	.companies {
		flex-wrap: wrap;
	}

	.companies div {
		width: 100%;
		height: 170px;
		border-bottom: none;
	}

	.carousel-container {
		padding-top: 50px;
		padding-left: 10px;
	}

	//footer on mobile//

	.footer {
		flex-direction: column;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}

	footer {
		padding: 50px 10px 15px 10px;
	}

	.footer-logo img {
		width: 100%;
	}

	.footer-description-desktop {
		display: none;
	}

	.footer-description-mobile {
		display: block;
	}

	.footer-description {
		font-size: 1rem !important;
		margin-bottom: 1.2rem;
	}

	.footer-links {
		width: 100%;
		gap: 3rem;
		flex-direction: row;
		line-height: 1.7rem !important;
	}

	.footer-links a {
		font-size: 1.1rem !important;
	}

	.footer-links a:hover {
		color: var(--purple);
	}

	.footer-footer {
		font-size: 0.75rem;
	}

	.footer-bottom {
		margin-top: 2rem;
	}

	.footer-social a img {
		height: 20px;
		margin-left: 0rem;
		width: 20px;
	}

	//footer//

	.tall-section {
		margin: 100px 0px;
	}

	.mid-tall-section {
		margin: 20px 0px;
	}

	.about-special {
		margin-top: 0px;
	}

	p {
		//font-size: 1.1rem !important;//
		margin-bottom: 0px;
	}

	h1 {
		//font-size: 55px !important;//
		line-height: 50px !important;
	}

	h2 {
		//font-size: 55px !important;//
		//line-height: 50px !important;//
	}

	h3 {
		//font-size: 30px !important;//
		//line-height: 30px !important;//
	}

	.roadmap-header {
		flex-direction: column;
	}

	.roadmap-header-capsule {
		margin: 0;
	}

	.capsule-yellow, .capsule-green, .capsule-grey {
		margin: 0px;
	}

	.capsule-transparent {
		margin: 5px 5px 0px 0px !important;
	}

	.hero-p {
		font-size: 1.1rem;
	}

	.landing-page-header {
		margin-top: 20vh;
		margin-bottom: 20vh;
	}

	.video-background {
		left: 50% !important;
	}

	.gradient-overlay {
		background: linear-gradient(to bottom, #0f0f0f 0%, rgba(15, 15, 15, 0) 25%, rgba(15, 15, 15, 0) 75%, #0f0f0f 100%), linear-gradient(to right, rgb(15, 15, 15) 0%, rgba(15, 15, 15, 0) 100%)
	}

	.carousel-title {
		font-size: 1rem;
	}

	.footer-container {
		flex-direction: column-reverse;
	}

	.footer-link div {
		margin-bottom: 20px;
	}

	.footer-link div a {
		font-size: 1rem !important;
	}

	.quote {
		font-size: 1.5rem;
		line-height: 1.7rem;
	}

	.values-container {
		text-align: left;
		direction: ltr;
	}
}

@media (max-width: 400px) {

	.footer-description-mobile {
		display: none;
	}

	.footer-logo img {
		margin-bottom: 1.5rem;
	  }
}
	  */

/*# sourceMappingURL=main-dark.css.map */