/* Variables */

:root {
  --master-radius: 28px;
  --master-width: 1250px;
  --base-background: #f0f0f0;
  --base-color: #122027;
  --feature-background: #fff;
  --bold-heading: #122027;
  --heading: #7a7f82;
  --header-height: 57px;
}

.dark_mode {
  --base-background: #222;
  --base-color: #fff;
  --feature-background: #111;
  --bold-heading: #122027;
  --heading: #7a7f82;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

p
{
	font-weight: 500;
}

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

/* General page styles*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  margin: 0;
  padding: 0;
  letter-spacing:-.05em !important;
  font-kerning:normal;
  font-feature-settings: "kern" 1, "liga" 1;
}

body {
	border: 0;
	font-family: Inter, sans-serif;
	font-size: 12pt;
	margin: 0;
	padding: 0;
	background: var(--base-background);
	color: var(--base-color);
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

b {
  font-weight: 600;
}

.smallprint {
	font-size: .65em;
	margin-top: 40px;
	font-weight: 400;
}

.invisible {
  opacity: 0;
}

.hidden {
  opacity: 0;
  transition: all .3s;
}

.visible {
  opacity: 1;
  transition: all .3s;
}

/* header */
/**********/

#header {
	box-sizing: border-box;
	height: var(--header-height);
	overflow: hidden;
	position: fixed;
	width: var(--master-width);
	z-index: 10020;
	left: calc(50% - (var(--master-width)/2));
	top: 10px;
	border-radius: var(--master-radius);
}

.header_transparent {
	color: #fff;
	transition: background .3s;
}

.header_white {
	backdrop-filter: blur(9px);
	background: #fffa;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3),inset 0 0 7px 4px #fff4;
	color: #111;
	transition: background .3s;
}

.frostedglasspane {
  backdrop-filter: blur(4px);
  background-color: #fff8;
  border-radius: 29px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3),inset 0 0 7px 4px #fff4;
  color: #111;
  padding: 50px;
}

.menu__logo-img {
	filter: drop-shadow(0 0 5px #fff2);
	padding-left: 25px;
	width: 150px;
}

#header_buttons {
	padding-top: 12.5px;
	position: absolute;
	right: 15px;
	top: 0;
	display: flex;
	gap: 10px;
}

.top_menu {
	left: calc(50% - 260px);
	padding-top: 19.5px;
	position: absolute;
	top: 0;
}

.menu a {
	border-radius: 50px;
	font-size: 0.9em;
	font-weight: 600;
	margin-right: 2px;
	padding: 6px 36px 6px 24px;
	text-decoration: none;
	transition: all .2s;
	line-height: 0px;
	cursor: pointer;
}

.menu a:hover {
	background: #fff8;
	color: #122027;
	transition: all .2s;
}

.top_menu_item .material-symbols-outlined {
  font-size: 14pt;
  position: absolute;
}

.header_expand {
	transition: all .3s;
	background: #ffffffe5 !important;
}

.header_contract
{
	transition: all .3s;
	height: var(--header-height) !important;
}

.menu__logo {
	display: flex;
	align-items: center;
	height: var(--header-height);
	justify-content: center;
	position: absolute;
}

#menu-viewport {
	position: relative;
	display: flex;
	transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	width: var(--master-width);
	overflow: hidden;
	padding-bottom:20px;
	top: var(--header-height);
}

/* Subpages */
/**************/

#page_container {
	border-bottom-left-radius: var(--master-radius);
	border-bottom-right-radius: var(--master-radius);
	box-sizing: border-box;
	margin: auto;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 25px 75px 0px #0e00b487;
	padding-bottom: 60px;
}

#sub_text {
	padding-top: 35px;
	position: relative;
}

#video_outer, #screenshot_outer
{
	position:relative;
	width:100%;
}

#video_inner, #screenshot_inner {
	backdrop-filter: blur(6px);
	background: #fff4;
	background: linear-gradient( 90deg, rgba(255, 255, 255, .30) 3.25%, rgba(255, 255, 255, .04) 96.75% );
	border: 1.5px solid rgba(255, 255, 255, .22);
	border-radius: 16.5px;
	box-shadow: 0 0 150px #00003eba;
	overflow: hidden;
	padding: 6px;
	position: relative;
	margin-top: 25px;
	z-index: 9999;
	margin-bottom: 25px;
	height: 600px;
	display: inline-block;
}

/* Hero image */
/**************/

#hero_container {
	border-bottom-left-radius: var(--master-radius);
	border-bottom-right-radius: var(--master-radius);
	box-sizing: border-box;
	margin: auto;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 25px 75px 0px #0e00b487;
	padding-bottom: 30px;
}

#hero_text {
  filter: blur(12px);
  opacity: 0;
  padding-top: 45px;
  padding-bottom: 0px;
  transform: scale(.97);
}

#hero_text.visible {
	filter: blur(0);
	opacity: 1;
  padding-top: 25px;
  padding-bottom: 20px;
	transform: scale(1);
	transition: all 1.2s ease-out;
}

.fadeOut {
  opacity: 0;
  transition: opacity .3s;
}

.fadeIn {
  opacity: 1;
  transition: opacity .3s;
}

.hero_text_gradient {
  background: linear-gradient( 325deg, rgb(60, 175, 108) 0, rgb(190, 188, 65) 50%, rgb(16, 149, 229) 100% );
  -webkit-background-clip: text;
  filter: brightness(125%) contrast(145%);
  font-style: normal;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px #0055;
  z-index: 200;
}

.hero_text_gradient {
	/*animation: huerotate 20s infinite;
  animation-timing-function: linear;*/
	background: linear-gradient( 325deg, rgb(60, 175, 108) 0, rgb(190, 188, 65) 50%, rgb(16, 149, 229) 100% );
	-webkit-background-clip: text;
	filter: brightness(125%) contrast(145%);
	font-style: normal;
	font-weight: 700;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 40px #0079;
}

@keyframes huerotate
{
  0%
  {
  	filter: brightness(150%);
    filter: hue-rotate(0);
  }

  100%
  {
  	filter: brightness(150%);
    filter: hue-rotate(360deg);
  }
}

.si_gradient {
	background: linear-gradient( 325deg, rgb(54, 159, 98) 0, rgb(178, 177, 62) 50%, rgb(17, 139, 212) 100% );
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	filter: brightness(125%) contrast(145%);
	animation: si_grad_in 1s normal forwards;
	animation-timing-function: linear;
}

@keyframes si_grad_in {
  0%
  {
		filter: contrast(0%) brightness(0%);
  }

  100%
  {
		filter: contrast(115%) brightness(115%);
  }
}


/* Colours */
/* ******* */

.green-yellow-red-gradient {
  background:
    linear-gradient(
      120deg,
      rgb(89, 146, 159) 0,
      rgb(169, 151, 97) 50%,
      rgb(197, 126, 126) 100%), linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0,
      rgba(238, 238, 238, 0) 15%,
      rgba(238, 238, 238, .1) 50%,
      rgba(238, 238, 238, .2) 80%,
      rgba(238, 238, 238, .3) 90%), url(../images/assets/noise2.svg
    );
}

.bright-blue-purple-gradient {
	background: linear-gradient( 120deg, rgb(89, 146, 159) 0, rgb(97, 112, 169) 50%, rgb(197, 126, 126) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(238, 238, 238, 0) 15%, rgba(238, 238, 238, .1) 50%, rgba(238, 238, 238, .2) 80%, rgba(238, 238, 238, .3) 90%), url(../images/assets/noise2.svg);
}

.blue-purple-gradient {
	background: linear-gradient( 160deg, rgb(0, 18, 47) 0, rgb(120, 65, 174) 50%, rgb(88, 46, 169) 80%, rgb(55, 34, 113) 100%);
	/* background-blend-mode: color; */
	/* filter: contrast(110%) brightness(110%); */
	/* height: 100%; */
	/* width: 100%; */
}

.shadow0
{
	box-shadow:0px 0px 0px #0000 !important;
}

.grad3 {
	background: linear-gradient( 0deg, #a0a0a0 0, #b0b0b0 100%), url(../images/assets/noise2.svg);
	filter: contrast(110%) brightness(120%);
	color: #616365 !important;
	/* background-blend-mode: color; */
}

/* ******* */

#hero_gradient {
  position: absolute;
  top: 0;
}

.h1-hero {
	color: #fff;
	font-feature-settings: "liga" off,"clig" off;
	font-size: 48px;
	font-size: 46px;
	font-weight: 700;
	margin: 0;
	text-align: center;
	text-shadow: 0 0 7px #0007;
	user-select: none;
	width: 100%;
}

.h2-hero {
  display: block;
  border: 0;
  color: #fff;
  font-size: 1.1em !important;
  font-weight: 500 !important;
  margin: 0;
  text-align: center !important;
  text-shadow: 0 0 7px #0007;
  user-select: none;
}

.desktop_video {
	border-radius: 9px;
	overflow: hidden;
	top: 0;
	height: 600px;
}

.mobile_video {
	border-radius: 9px;
	height: 430px;
}

#sub_video_container {
	backdrop-filter: blur(6px);
	background: #fff4;
	background: linear-gradient( 90deg, rgba(255, 255, 255, .30) 3.25%, rgba(255, 255, 255, .04) 96.75% );
	border: 1.5px solid rgba(255, 255, 255, .22);
	border-radius: 16.5px;
	box-shadow: 0 0 50px #00003eba;
	box-sizing: border-box;
	left: calc(50% + 270px);
	overflow: hidden;
	padding: 6px;
	position: absolute;
	top: 495px;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: baseline;
}

/* Buttons */
/***********/

.primary_button:hover {
  filter: brightness(75%);
  transition: all .3s;
}

.primary_button, .secondary_button {
	display: inline-block;
	backdrop-filter: blur(5px);
	border-radius: 50px;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 15px;
	font-weight: 570;
	padding: 6px 18px 7px 18px;
	text-decoration: none;
	transition: all .3s;
	min-width: 116px;
	text-align: center;
	line-height: 1;
}

.primary_button {
	background: #4177a7;
	border: 2px solid #4177a7;
	color: #fff;
}

.secondary_button {
	background: #fff2;
	border: 2px solid #fff0;
	color: #fff;
	padding: 7.5px 34px 9px 16px
}

.arrow_button {
	display: inline-block;
	backdrop-filter: blur(6px);
	background: #dddd;
	border-radius: 100px;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 24px;
	line-height: 0;
	padding: 10px;
	text-decoration: none;
	transition: all .3s;
}

.arrow_button:hover {
  background-color: #122027;
  color: #fff !important;
  transition: all .3s;
}

.arrow_button.lightbackground {
  color: #122027;
}

.no_button_icon {
	padding: 6px 18px 7px 18px;
}

.secondary_button.lightbackground {
	color: #122027;
	box-shadow: 0px 0px 7px #0002;
}

.secondary_button span.material-symbols-outlined {
	font-size: 26px;
	font-weight: 300;
	line-height: 0;
	margin: 0;
	margin-left: 1px;
	margin-top: 9.5px;
	padding: 0;
	position: absolute;
}

.secondary_button:hover {
  background-color: #fff;
  color: #555;
  transition: all .3s;
}

.secondary_button.lightbackground:hover {
	transition: all .3s;
	background: #000;
	color: #fff;
}

/* Page Layout */
/***************/

.section_outer {
  display: block;
  position: relative;
  width: 100%;
}

.collapse_top {
  padding-top: 0 !important;
}

.purple {
  background: #82389e;
  color: #fff;
}

.blue {
	color: #fff;
	background: linear-gradient( 180deg, rgb(25, 111, 166) 0, rgb(101, 15, 92) 95% ), linear-gradient( 180deg, rgba(255, 255, 255, 0) 0, rgba(238, 238, 238, 0) 15%, rgba(238, 238, 238, .1) 50%, rgba(238, 238, 238, .2) 80%, rgba(238, 238, 238, .3) 90%), url(../images/assets/noise2.svg);
	/* background-blend-mode: multiply; */
}

.darkblue
{
	background: rgb(25, 111, 166);
}

.black {
	background: #122027;
	color: #fff;
}

.section_inner {
  border-bottom-left-radius: var(--master-radius);
  border-bottom-right-radius: var(--master-radius);
  font-size: 1.3em;
  line-height: 1.4;
  margin: auto;
  max-width: var(--master-width);
  padding-bottom: 40px;
  padding-top: 50px;
  position: relative;
  text-align: center;
}

.section_inner.wide {
  max-width: 100%;
  width: 100%;
}

.section_inner h2 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.section_inner h2.white {
  color: #fff;
}

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

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

.section_inner h3 {
  color: #777;
  font-weight: 500;
  padding-bottom: 20px;
}

.section_inner > p, .section_p {
  padding: 10px 0;
}

.section_p {
	width: var(--master-width);
	left: calc(50% - (var(--master-width)/2));
	position: relative;
}

.statement {
  padding: 80px 0 50px 0;
}

.statement_left h2 {
  text-align: left;
}

.statement_right h2 {
  text-align: right;
}

/* Section background colour */
/*****************************/

.light_grad {
  background: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0,
      rgba(238, 238, 238, 1) 100%
    );
}

.grey_grad {
  background: #fff;
  background-blend-mode: normal;
}

.light {
  background-color: #eee;
}

.grey {
	background: #f0f0f0;
}

.gradient {
	background: linear-gradient( 135deg, rgb(63, 91, 133) 0, rgb(122, 97, 169) 50%, rgb(197, 126, 181) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(238, 238, 238, 0) 15%, rgba(238, 238, 238, .1) 50%, rgba(238, 238, 238, .2) 80%, rgba(238, 238, 238, .3) 90%), url(../images/assets/noise2.svg
    );
	/* background-blend-mode: difference; */
	color: #fff;
	/* filter: contrast(120%) brightness(120%); */
}

.promo_box_small {
  display: inline-block;
  border-radius: var(--master-radius);
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, .15);
  box-sizing: border-box;
  height: 200px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 40px;
  overflow: hidden;
  padding: 10px 10px;
  text-align: center;
  transform: scale(.95);
  transition: all .3s;
  width: 200px;
}

.promo_box_small h3 {
	color: #fff;
	font-size: 0.9em;
}

.promo_box_small img {
	height: 38px;
	padding-top: 15px;
}

.promo_box a,.promo_box_no_link a {
  margin-top: 20px;
}

/* Menu bar */
/************/

.menu_tag {
	background: #4177a7;
	display: inline-flex;
	padding: 1px 6px;
	margin: 0px 0px 0px 4px;
	font-size: 0.55em;
	color: #fff;
	position: relative;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 50px;
	top: -2px;
}


.menu_tag.contact_centre, .key.contact_centre
{
	background: #5a85fe;
	color: #fff;
}

.menu_tag.website, .key.website
{
	background: #0de189;
	color: #fff;
}

.menu_tag.social, .key.social
{
	background: #ffac1d;
	color: #fff;
}

.menu_tag.voice, .key.voice
{
	background: #35d8f2;
	color: #fff;
}

.menu_tag.bot, .key.bot
{
	background: #7990ac;
	color: #fff;
}

.menu_tag.knowledge, .key.knowledge
{
	background: #ea4c89;
	color: #fff;
}

.menu-panel {
	color: #555;
	display: inline-flex;
	flex-shrink: 0;
	align-items: flex-start;
	height: 0px;
	padding-top: 5px;
	position: relative;
}

.menu_column {
	display: inline-flex;
	position: relative;
	margin: 0px;
	flex-direction: column;
	width: calc(var(--master-width) / 3);
	box-sizing: border-box;
}

.menu-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.column_heading {
	color: #122027;
	font-weight: 700;
	margin: 0 10px;
	padding: 0 15px 6px 15px;
	font-size: 1.1em;
}

.item_heading {
	color: #122027;
	font-weight: 700;
}

.menu_item {
	color: #555;
	font-size: .95;
	font-size: .9em;
	line-height: 1.4;
	margin: 0 10px;
	padding: 12px 15px;
	position: relative;
	font-weight: 570;
	border-radius: 12px 15px;
	transition: all .2s;
	text-decoration: none;
}

.menu_item:hover {
	background: #d5d5f3;
	cursor: pointer;
	transition: all .2s;
}

.menu_item_unfilter {
	opacity:1;
	transition: all .2s;
}

.menu_item_filter {
	opacity:0.2;
	transition: all .2s;
}

.menu_icon {
  display: inline-block;
  padding-right: 10px;
  position: relative;
  width: 20px;
}

.menu_option {
  display: inline-block;
  cursor: pointer;
}

.menu-text {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.menu-key {
	position: absolute;
	top: 448px;
	left: 20px;
	display: inline-flex;
	flex-direction: row;
	gap: 10px;
	padding: 10px;
	background: #ccc3;
	border-radius: 50px;
}

.key {
	background: #f00;
	border-radius: 50px;
	padding: 5px;
	position: absolute;
	margin-left: -15px;
	/* margin-top: 1px; */
}

.key_button {
	display: inline-block;
	border-radius: 50px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 570;
	padding: 3px 10px 3px 22px;
	line-height: 1;
	transition: all .3s;
	background: #fff;
	box-shadow: 0px 0px 5px #0002;
}

.key_button.selected  {
	background: #000;
	color:#fff;
	transition: all .3s;
}

/* Scroll events / rollover events */
/***********************************/

.grow {
  transition: all .3s;
}

.grow:hover {
  transform: scale(1.05);
}

.grow_to_normal {
  opacity: 1 !important;
  transform: scale(1.0) !important;
}

/* Calculator */
/**************/

#calc {
  background-color: #eee;
  border-radius: 4px;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  width: 90%;
}

#visitors {
  display: block;
  border: 0 solid #bbb;
  border-radius: 4px;
  border-radius: 10000px;
  color: #585858;
  font-family: Inter, sans-serif;
  font-size: 2em;
  font-weight: 500;
  margin: 0 auto;
  padding: 14px;
  text-align: center;
  width: 240px;
}

.visitor_normal {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.visitor_highlight {
  box-shadow: 0px 0px 25px 5px rgba(111, 62, 158, 0.5);
}

#metrics {
  margin-top: 20px;
}

.metric {
  display: block;
}

.val {
	color: #fff;
	font-size: 2em;
	font-weight: 600;
	line-height: 1.3;
}

#deflection_calculator {
  padding-bottom: 20px;
}

/* Logo Carousel */
/****************/

#logo_carousel {
	position: relative;
	margin-top: 50px;
}

.carousel {
  display: inline-block;
  box-sizing: border-box;
  filter: drop-shadow(0 0 5px #0074);
  margin: 0 25px;
  overflow: hidden;
  position: relative;
  width: 200px;
}

.carousel img {
  width: 96%;
}

#carousel_inner {
	display: flex;
	position: absolute;
}

#carousel_outer {
	height: 90px;
	-webkit-mask-image: linear-gradient( 90deg, transparent 0, #000 15%, #000 85%, transparent 100% );
	mask-image: linear-gradient( 90deg, transparent 0, #000 15%, #000 85%, transparent 100% );
	overflow: hidden;
}

/* Testimonials */
/****************/

.testimonial {
	display: inline-block;
	background-color: #fff;
	border-radius: var(--master-radius);
	box-shadow: 0 0 15px #5551;
	box-sizing: border-box;
	color: #8b8c8e;
	font-size: 13pt;
	height: 260px;
	line-height: 130%;
	margin: 20px 20px;
	overflow: hidden;
	padding: var(--master-radius);
	position: relative;
	text-align: left;
	transition: all .3s;
	width: 356px;
	font-weight: 570;
}

.testimonial_attribution {
	bottom: 30px;
	color: #122027;
	font-weight: 700;
	position: absolute;
}

.testimonial_logo {
  display: flex;
  align-items: center;
  background-color: #eee;
  border-radius: 50%;
  bottom: 15px;
  height: 60px;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  right: 20px;
  text-align: center;
  width: 60px;
}

.testimonial_logo img {
  width: 80%;
}

#testimonials_inner_top, #testimonials_inner_bottom {
  display: flex;
  height: 260px;
  position: absolute;
}

/* Feature box */
/***************/

.feature_box {
	display: inline-block;
	border-radius: var(--master-radius);
	box-shadow: 0 0 15px #5551;
	box-sizing: border-box;
	color: #7a7f82;
	font-size: 15pt;
	font-weight: 570;
	height: 250px;
	line-height: 130%;
	margin: 15px;
	overflow: hidden;
	padding: var(--master-radius);
	position: relative;
	text-align: left;
	text-align: left;
	width: 350px;
	min-width: 350px;
	scroll-snap-align: start;
	padding-top: 70px;
}

.feature_box img {
	position: absolute;
	left: var(--master-radius);
	top: 25px;
	width: 36px;
	height: 36px;
	opacity: 0.8;
}

.feature_box b {
  color: #122027;
}

.typereveal, .type_normal {
  color: #7a7f82;
  font-weight: 570 !important;
  line-height: 130%;
}

#ai_features_outer {
  height: 260px;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
  overflow: hidden;
  padding-bottom: 40px;
  position: relative;
}

#ai_features_inner
{
  scrollbar-width: none;        
  -ms-overflow-style: none;
}

#ai_features_inner::-webkit-scrollbar
{
   display: none;
}

#ai_features_inner {
	display: flex;
	height: 315px;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

#ai_slider_controls {
  margin-top: 5px;
}

#ai_slider_controls a {
  margin: 5px;
}

#testimonials_inner_bottom {
  top: 300px;
}

#testimonials_outer {
  height: 580px;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent 0,
      #000 15%,
      #000 85%,
      transparent 100%
    );
  overflow: hidden;
  padding-bottom: 40px;
  position: relative;
}

.logo img {
  height: 65px;
  padding-top: 20px;
}

/* Footer styles */
/*****************/

.footer_indent {
	padding-left: 10px;
}

.footer_bold {
	font-weight:700;
}

#footer {
	position: relative;
	display: flex;
	width: var(--master-width);
	left: calc(50% - (var(--master-width)/2));
} 

#footer_column1 {
	border-right: 1px solid #fff5;
}

.footer_column {
	position: relative;
	display: inline;
	width: calc(var(--master-width) / 5);
	text-align: left;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 11pt;
	font-weight: 400;
	line-height: 2;
}

.footer_column h3 {
	color: #aaa;
	font-size: 12pt;
	padding-bottom: 7px;
	padding-top: 0px !important;
	/* background-color: #f00; */
	margin-top: 0px;
	display: block;
	line-height: 1;
	font-weight: 700;
}

.footer_column a
{
	display: block;
	cursor: pointer;
	text-decoration: none;
	transition: all .3s;
	color: #fff;
}

.footer_column a:hover {
  filter: brightness(75%);
  transition: all .3s;
}

#footer_column1 img {
	width: 100px;
	display: block;
	padding-bottom: 4px;
}

#final_words {
	position: relative;
	display: block;
	width: var(--master-width);
	left: calc(50% - (var(--master-width)/2));
	color: #fff;
	padding-top: 25px;
	font-size: 9pt;
	opacity: 0.5;
}

#final_words p
{
	display:block;
	padding-top:25px;
}

#hero_canvas {
	mix-blend-mode: overlay;
	opacity: .8;
	position: absolute;
	left: 0px;
	width: 100%;
	top: 0px;
}

#contact_canvas {
	/* height: 100%; */
	mix-blend-mode: normal;
	opacity: .15;
	position: absolute;
	left: 0px;
	width: 100%;
}

#particle_canvas {
	height: 70px;
	opacity: 0.25;
	position: absolute;
	top: 0;
	width: 360px;
	z-index: 990;
	margin-top: -15px;
	margin-left: -15px;
	box-sizing: border-box;
}

#si_anim {
	z-index: 1000;
}

.ftext_message {
  color: #444;
  font-size: 25px;
  text-align: left;
}

.ftext_cta {
	display: block;
	padding-bottom: 5px;
	padding-top: 34px;
}

.featurebox {
  position: relative;
}

.featurebox.centre {
	background: var(--feature-background);
	border-radius: var(--master-radius);
	box-shadow: 0 0 15px #5551;
	box-sizing: border-box;
	height: 100%;
	overflow: hidden;
	padding: 50px 50px 50px 50px;
	position: relative;
	width: var(--master-width);
	left: calc(50% - (var(--master-width)/2));
}

.featurebox.left .fimage_container {
  height: 600px;
  margin-left: 50%;
  overflow: hidden;
  position: relative;
}

.featurebox.right .fimage_container {
  height: 600px;
  margin-right: 50%;
  overflow: hidden;
  position: relative;
}

.featurebox.left .fimage {
  background-blend-mode: difference;
  border-bottom-left-radius: var(--master-radius);
  border-top-left-radius: var(--master-radius);
  filter: contrast(150%) brightness(120%);
  height: 600px;
  overflow: hidden;
}

.featurebox.right .fimage {
  background-blend-mode: difference;
  border-bottom-right-radius: var(--master-radius);
  border-top-right-radius: var(--master-radius);
  filter: contrast(150%) brightness(120%);
  height: 600px;
  overflow: hidden;
}

.featurebox.left .fimage_container img {
  border-radius: var(--master-radius);
  left: 100px;
  -webkit-mask-image:
    linear-gradient(
      150deg,
      #000 0,
      #000 30%,
      transparent 70%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      150deg,
      #000 0,
      #000 30%,
      transparent 70%,
      transparent 100%
    );
  position: absolute;
  top: 100px;
  width: 1100px;
}

.featurebox.right .fimage_container img {
  border-radius: var(--master-radius);
  -webkit-mask-image:
    linear-gradient(
      30deg,
      transparent 0,
      transparent 30%,
      #000 80%,
      #000 100%
    );
  mask-image:
    linear-gradient(
      30deg,
      transparent 0,
      transparent 30%,
      #000 70%,
      #000 100%
    );
  position: absolute;
  right: 100px;
  top: 100px;
  width: 1200px;
}

.featurebox.left .ftext {
  display: flex;
  background: #fff;
  border-bottom-left-radius: var(--master-radius);
  border-top-left-radius: var(--master-radius);
  box-shadow: 0 0 15px #5551;
  box-sizing: border-box;
  flex-direction: column;
  height: 100%;
  justify-content: left;
  left: calc(50% - (var(--master-width)/2));
  overflow: hidden;
  padding: 100px 160px 100px 120px;
  position: absolute;
  right: calc(50% - 40px);
  text-align: left;
}

.featurebox.right .ftext {
  display: flex;
  background: #fff;
  border-bottom-right-radius: var(--master-radius);
  border-top-right-radius: var(--master-radius);
  box-shadow: 0 0 15px #5551;
  box-sizing: border-box;
  flex-direction: column;
  height: 100%;
  justify-content: left;
  left: calc(50% - 40px);
  overflow: hidden;
  padding: 100px 120px 100px 160px;
  position: absolute;
  right: calc(50% - (var(--master-width)/2));
  text-align: left;
}

.logo-carousel {
  animation: scroll-left 100s linear infinite;
  will-change: transform;
}

.top-track {
  animation: scroll-left 200s linear infinite;
  will-change: transform;
}

.bottom-track {
  animation: scroll-left 200s linear infinite reverse;
  will-change: transform;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

#wave_contact {
	/* opacity: 0.5; */
	padding-top: 30px;
	display: block;
	mix-blend-mode: luminosity;
}

.removebottompadding
{
	overflow:hidden;
	padding-bottom:0px;
	display:block;
}

#contact_icon_strip {
	line-height: 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 25px;
	justify-content: center;
}

#ai_icon_strip {
	line-height: 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 25px;
	top: 5px;
}

#security_logos_strip {
	line-height: 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0px;
	justify-content: center;
}

#security_logos_strip img {
	width: 260px;
	display: inherit;
	object-fit: contain;
	opacity: 0.70;
	filter: grayscale(100%);
}

#contact_icon_strip img {
	width: 50px;
	mix-blend-mode: color-dodge;
	display: inherit;
	padding: 20px;
	/* background: #fff1; */
	border-radius: 12px;
	object-fit: contain;
	height: 50px;
	/* filter: brightness(105%) contrast(105%); */
}

#underline {
	display: inline;
	position: absolute;
	width: 130px;
	margin-top: 19px;
	margin-left: -3px;
}

#theotherguys
{
	opacity:0.25;
}

#linkedin_link {
	top: 12px;
	position: relative;
}

#latest_news_wrapper {
	position: relative;
	margin-top: 100px;
	width: var(--master-width);
	text-align: center;
	display: flex;
	justify-content: center;
	left: calc(50% - (var(--master-width)/2));
	z-index: 9999;
	cursor: pointer;
}

#latest_news_box {
	background: #fff2;
	backdrop-filter: blur(5px);
	font-size: 0.75em;
	display: flex;
	color: #fff;
	padding: 4px;
	border-radius: 50px;
	font-weight: 570;
}

#news_legend {
	background: #4177a7;
	padding: 0px 10px;
	border-radius: 50px;
	font-size: 0.75em;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	font-weight: 700;
}

#news_headline {
	padding: 0px 10px 1px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
}

#news_link {
	padding: 0px;
	scale: 0.75;
}

#add_on_list {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;

}

.add_on_container {
	display: inline-flex;
	background-color: #fff;
	padding: var(--master-radius);
	border-radius: var(--master-radius);
	box-shadow: 0 0 15px #5551;
	margin: 15px;
	width: 29%;
	align-items: flex-start;
	box-sizing: border-box;
}

.add_on_icon {
	display: block;
	min-width: 85px;
}

.add_on_icon img {
	width:100%
}

.add_on_text_container {
	display: block;
	overflow: hidden;
}

.add_on_title {
	display: block;
	padding: 0px 20px;
	font-weight: 700;
	text-align: left;
	font-size: 12pt;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.add_on_description {
	display: block;
	padding: 10px 20px;
	border-radius: 15px;
	font-size: 11pt;
	text-align: left;
	height: 200px;
	max-height: 200px;
	overflow: hidden;
}

.text_grad_vert {
	-webkit-mask-image: linear-gradient( 90deg, transparent 0, #000 15%, #000 85%, transparent 100% );
	mask-image: linear-gradient( 180deg, #000 0, #000 50%, transparent 100% );
	overflow: hidden;
}

/* Changes for mobile */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
		
	:root
	{
		--master-radius: 16px;
		--master-width: 100%;
	}
	
  #hero_screenshot_container {
    display: none;
  }

  #header {
    display: none;
  }

  .h1-hero {
    font-size: 42px !important;
  }

  .h2-hero {
    font-size: 1.5em !important;
  }

  .section_inner {
    font-size: .6em;
    max-width: 340px;
    padding-top:20px;
  }

  .section_inner h2 {
    font-size: 2.3em;
  }

  .testimonial {
    font-size: 9pt;
    height: 150px;
    margin: 15px 15px;
    padding: 15px 15px;
    width: 230px;
  }

  #testimonials_layer_left {
    display: none;
  }

  #testimonials_layer_right {
    display: none;
  }
  
  #logo_carousel {
		top: 640px;
	}
  
  .carousel img {
		width: 100%;
	}
	
	.carousel {
		width: 100px;
	}

	.fimage_container {
	display: none;
	}
	
	.ftext {
		left: 5% !important;
		padding: 15px !important;
		position: relative !important;
		width:90%;
		border-radius:16px;
	}
	
	.ftext_message {
		font-size: 16pt;
	}
	
	.typereveal h2, .type_heading {
		font-size: 26px !important;
	}
	
	.feature_box {
		font-size: 12pt;
		height: 175px;
		line-height: 130%;
		margin: 15px;
		width: 300px;
		min-width: 300px;
		padding-top: 50px;
	}
	
	.feature_box img {
		position: absolute;
		left: var(--master-radius);
		top: 15px;
		width: 27px;
		height: 27px;
		opacity: 0.8;
		}
	
	#particle_canvas {
		height: 50px;
		width: 198px;
		margin-top: -15px;
		margin-left: -8px;

	}

	.featurebox.centre {
		padding: 50px 0px 50px 0px;
	}
	
	.promo_box_small {
		height:140px;
	}
	
	.promo_box_small img {
		height: 38px;
	}
	
	#security_logos_strip img {
		width: 100px;
	}
	
	#contact_icon_strip img {
		width: 30px;
		padding: 00px;
		height: 30px;
	}
	
	.footer_column {
		line-height: 1.4;
		width: 100%;
	}
	
	#footer_column2,#footer_column3,#footer_column4,#footer_column5
	{
		display:none;
	}
	
	#ai_features_outer {
		height: 180px;
	}
	
	#ai_features_outer {
		height: 180px;
		height: 290px;
		-webkit-mask-image: none;
		mask-image: none;
		padding-bottom: 40px;
	}
	
	#testimonials_inner_bottom {
		top: 200px;
	}

	#testimonials_outer {
		height: 381px;
	}
	
	
}

