/* Template: Leno - Mobile App HTML Landing Page Template
   Author: Inovatik
   Created: Mar 2019
   Description: Master CSS file
*/

/*****************************************
Table Of Contents:

01. General Styles
02. Preloader
03. Navigation
04. Header
05. Features
06. Video
07. Details 1
08. Details 2
09. Details Lightboxes
10. Screenshots
11. Download
12. Statistics
13. Contact
14. Footer
15. Copyright
16. Back To Top Button
17. Extra Pages
18. Media Queries
19. Lens AppIQ
******************************************/

/*****************************************
Colors:

- Text, navbar links - white #f1f1f8
- Buttons, bullets, icons - primary-color
- Navbar - navbar-color
- Backgrounds - dark-bg
- Backgrounds - light-dark-bg
******************************************/

:root{
  --lens-blue-color: #3d90ce;
  --lens-magenta-color: #c93dce;
  --lens-golden-color: #ffc63d;
  --lens-green-color: #4caf50;
	
	--primary: var(--lens-blue-color);
  --primary-lighten: #5fb1ef;
  	
	--navbar-color: #1e2124;
	--massive-dark-bg: linear-gradient(
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	),
	url('../images/header-background.png') repeat;
	--hyper-dark-bg: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.0)
    ),
    url('../images/header-background.png') repeat;
	--hyper-dark-bg-reverse: linear-gradient(
		rgba(0, 0, 0, 0.0),
		rgba(0, 0, 0, 0.5)
	),
	url('../images/header-background.png') repeat;
  --super-dark-bg: url('../images/header-background.png') repeat;
  --dark-bg: linear-gradient(
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.025)
    ),
    url('../images/header-background.png') repeat;
  --light-dark-bg: linear-gradient(
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    ),
    url('../images/header-background.png') repeat;
  --header-bg: linear-gradient(180deg, 
  	  rgba(61,144,206,0) 50%,
	  rgba(61,144,206,0.02) 60%, 
	  rgba(61,144,206,0.04) 70%, 
	  rgba(61,144,206,0.08) 80%, 
	  rgba(61,144,206,0.16) 90%, 
	  rgba(61,144,206,0.32) 100%
	),
	url('../images/header-background.png') repeat;
	--k0s-header-bg: linear-gradient(180deg, 
		rgba(61,144,206,0) 50%,
		rgba(61,144,206,0.01) 60%, 
		rgba(61,144,206,0.02) 70%, 
		rgba(61,144,206,0.04) 80%, 
		rgba(61,144,206,0.08) 90%, 
		rgba(61,144,206,0.16) 100%
	),
	url('../images/header-background.png') repeat;
  --pricing-header-bg: url('../images/header-background.png') repeat;


}

/******************************/
/*     01. General Styles     */
/******************************/
body,
html {
  width: 100%;
	height: 100%;
}

body, p {
	color: #f1f1f8;
	font: 400 0.875rem/1.375rem "Open Sans", sans-serif;
}

.p-large {
	color: #f1f1f8;
	font: 400 1rem/1.5rem "Open Sans", sans-serif;
}

.p-small {
	color: #f1f1f8;
	font: 400 0.75rem/1.25rem "Open Sans", sans-serif;
}

.p-heading {
	margin-bottom: 3.75rem;
	text-align: center;
}

.li-space-lg li {
	margin-bottom: 0.375rem;
}

.indent {
	padding-left: 1.25rem;
}

h1 {
	color: #f1f1f8;
	font: 700 2.5rem/2.875rem "Montserrat", sans-serif;
}

h2 {
	color: #f1f1f8;
	font: 700 2.25rem/2.75rem "Montserrat", sans-serif;
}

h3 {
	color: #f1f1f8;
	font: 700 1.75rem/2.125rem "Montserrat", sans-serif;
}

h4 {
	color: #f1f1f8;
	font: 700 1.375rem/1.75rem "Montserrat", sans-serif;
}

h5 {
	color: #f1f1f8;
	font: 700 1.125rem/1.625rem "Montserrat", sans-serif;
}

h6 {
	color: #f1f1f8;
	font: 700 1rem/1.5rem "Montserrat", sans-serif;
}

a {
	color: #f1f1f8;
	text-decoration: underline;
}

a:hover {
	color: #f1f1f8;
	text-decoration: underline;
}

a.primary {
	color: var(--primary);
}

a.white {
	color: #fff;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 5px 0;
  background-color: var(--lens-blue-color);
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font-size: 10px;
	font-weight: 700;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -10px;
  top: 30px;
  transform: rotate(45deg);
}

.download-button {
	margin-bottom: 0.5rem;
}

.download-button .btn.btn-primary.btn-lg {
	font-size: 16px;
	outline: none;
	box-shadow: none;
	padding: 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.download-button .download-button-default-link span {
	display:block;
	font-size: 11px;
}

.download-button .btn.btn-primary.btn-lg:hover,
.download-button .btn.btn-primary.btn-lg:focus,
.download-button .btn.btn-primary.btn-lg:active{
	background: #fff;
	color: var(--primary);
	box-shadow: none;
}

.download-button .dropdown-toggle{
	background: var(--primary-lighten);
}

.download-button .btn-primary:not(:disabled):not(.disabled).active,
.download-button .show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--primary-lighten);
	border-color: var(--primary-lighten);
}

.download-button a {
	text-decoration: none;
}

.download-button a:hover {
	text-decoration: none;
}

.download-button .btn.btn-primary.btn-lg.dropdown-toggle.no-default-downloads{
	background: var(--primary);
	border-radius: 0.3rem;
}

.download-button .btn.btn-primary.btn-lg.dropdown-toggle.no-default-downloads:hover,
.download-button .btn.btn-primary.btn-lg.dropdown-toggle.no-default-downloads:focus,
.download-button .btn.btn-primary.btn-lg.dropdown-toggle.no-default-downloads:active{
	background: #fff;
	color: var(--primary);
	box-shadow: none;
}



/*
 * Get Started Btn
 */ 
 .getstarted-button {
	margin-bottom: 0.5rem;
}

.getstarted-button .btn.btn-primary.btn-lg {
	font-size: 16px;
	outline: none;
	box-shadow: none;
	padding: 15px;
	width: 365px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.getstarted-button .getstarted-button-default-link span {
	display:block;
	font-size: 11px;
}

.getstarted-button .btn.btn-primary.btn-lg:hover,
.getstarted-button .btn.btn-primary.btn-lg:focus,
.getstarted-button .btn.btn-primary.btn-lg:active{
	background: #fff;
	color: var(--primary);
	box-shadow: none;
}

.getstarted-button .dropdown-toggle{
	background: var(--primary-lighten);
}

.getstarted-button .btn-primary:not(:disabled):not(.disabled).active,
.getstarted-button .show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: var(--primary-lighten);
	border-color: var(--primary-lighten);
}

.getstarted-button a {
	text-decoration: none;
}

.getstarted-button a:hover {
	text-decoration: none;
}

.testimonial-text {
	font: italic 400 1rem/1.5rem "Open Sans", sans-serif;
}

.testimonial-author {
	font: 700 1rem/1.5rem "Montserrat", sans-serif;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
	border: 0.125rem solid var(--primary);
	border-radius: 2rem;
	background-color: var(--primary);
	color: #fff;
	font: 700 0.75rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: var(--primary);
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.375rem 2.625rem 1.375rem 2.625rem;
	border: 0.125rem solid var(--primary);
	border-radius: 2rem;
	background-color: var(--primary);
	color: #fff;
	font: 700 0.75rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: var(--primary);
	text-decoration: none;
}

.btn-solid-lg .fab,
.btn-solid-lg .fas{
	margin-right: 0.5rem;
	font-size: 1.25rem;
	line-height: 0;
	vertical-align: top;
}

.btn-solid-lg .fab.fa-google-play {
	font-size: 1rem;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
	border: 0.125rem solid var(--primary);
	border-radius: 2rem;
	background-color: transparent;
	color: var(--primary);
	font: 700 0.75rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-outline-reg:hover {
	background-color: var(--primary);
	color: #fff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.375rem 2.625rem 1.375rem 2.625rem;
	border: 0.125rem solid var(--primary);
	border-radius: 2rem;
	background-color: transparent;
	color: var(--primary);
	font: 700 0.75rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-outline-lg:hover {
	background-color: var(--primary);
	color: #fff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.625rem 0.875rem 1.625rem;
	border: 0.125rem solid var(--primary);
	border-radius: 2rem;
	background-color: transparent;
	color: var(--primary);
	font: 700 0.625rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-outline-sm:hover {
	background-color: var(--primary);
	color: #fff;
	text-decoration: none;
}

.btn-group.download .split-button-action{
  line-height: 10px;
  padding-right: 20px;
}
.btn-group.download .split-button-action i{
  position: relative;
  top: 4px;
}
.btn-group.download .btn-solid-lg.dropdown-toggle-split {
  padding-left: 20px;
  padding-right: 30px;
  font-size: 150%;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
	margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
	margin-top: 0.375rem;
}

.label-control {
	position: absolute;
	top: 0.87rem;
	left: 1.375rem;
	color: #f1f1f8;
	opacity: 1;
	font: 400 0.875rem/1.375rem "Open Sans", sans-serif;
	cursor: text;
	transition: all 0.2s ease;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.label-control {
		top: 0.9375rem;
	}
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.0625rem;
	padding-bottom: 0.0625rem;
	padding-left: 1.3125rem;
	border: 1px solid #9791ae;
	border-radius: 0.25rem;
	background-color: #413d52;
	color: #f1f1f8;
	font: 400 0.875rem/1.875rem "Open Sans", sans-serif;
	transition: all 0.2s ease;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3rem;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.form-control-input {
		padding-top: 1.25rem;
		padding-bottom: 0.75rem;
		line-height: 1.75rem;
	}

	.form-control-select {
		padding-top: 0.875rem;
		padding-bottom: 0.75rem;
		height: 3.125rem;
		line-height: 2.125rem;
	}
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

select::-ms-expand {
    display: none; /* removes the ugly default down arrow on select form field in IE11 */
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 8rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.25rem;
	padding-left: 1.3125rem;
	border: 1px solid #9791ae;
	border-radius: 0.25rem;
	background-color: #413d52;
	color: #f1f1f8;
	font: 400 0.875rem/1.75rem "Open Sans", sans-serif;
	transition: all 0.2s ease;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #f1f1f8;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #f1f1f8;
}

.checkbox {
	font: 400 0.75rem/1.25rem "Open Sans", sans-serif;
}

input[type='checkbox'] {
	vertical-align: -15%;
	margin-right: 0.375rem;
}

/* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	input[type='checkbox'] {
		vertical-align: -9%;
	}
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.125rem;
	border: 1px solid var(--primary);
	border-radius: 1.5rem;
	background-color: var(--primary);
	color: #fff;
	font: 700 0.75rem/1.75rem "Montserrat", sans-serif;
	cursor: pointer;
	transition: all 0.2s ease;
}

.form-control-submit-button:hover {
	background-color: transparent;
	color: var(--primary);
}

/* Form Success And Error Message Formatting */
#cmsgSubmit.h3.text-center.tada.animated,
#pmsgSubmit.h3.text-center.tada.animated,
#cmsgSubmit.h3.text-center,
#pmsgSubmit.h3.text-center {
	display: block;
	margin-bottom: 0;
	color: #f1f1f8;
	font: 400 1.125rem/1rem "Open Sans", sans-serif;
}

.help-block.with-errors .list-unstyled {
	color: #f1f1f8;
	font-size: 0.75rem;
	line-height: 1.125rem;
	text-align: left;
}

.help-block.with-errors ul {
	margin-bottom: 0;
}
/* end of form success and error message formatting */

/* Form Success And Error Message Animation - Animate.css */
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
/* end of form success and error message animation - Animate.css */

/* Fade-move Animation For Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
	transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}
/* end of fade-move animation for lightbox - magnific popup */

/* Fade Animation For Image Slider - Magnific Popup */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation: fadeOut 0.8s;
	animation: fadeOut 0.8s;
}
/* end of fade animation for image slider - magnific popup */

/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--light-dark-bg);
}

.spinner {
	position: absolute;
	top: 50%; /* centers the loading animation vertically one the screen */
	left: 50%; /* centers the loading animation horizontally one the screen */
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0); }
	40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	} 40% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
		transform: scale(1.0);
	}
}


/**************************/
/*     03. Navigation     */
/**************************/
.navbar-custom {
	background-color: var(--navbar-color);
	box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
	font: 700 0.75rem/2rem "Montserrat", sans-serif;
	transition: all 0.2s ease;
}

.navbar-custom .navbar-brand {
  text-decoration: none;
  font-size: 12px;
}

.navbar-custom .navbar-brand span {
  opacity: 0.5;
}

@media (max-width: 380px) {

	.navbar-custom .navbar-brand span{
		display:none;
	}
	
}

.navbar-custom .navbar-brand img {
  height: 35px;
  margin-bottom: 1px;
  margin-right: 5px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.navbar-custom .navbar-brand.logo-text {
	font: 700 2.375rem/1.5rem "Montserrat", sans-serif;
	color: #fff;
	letter-spacing: -0.5px;
	text-decoration: none;
}

.navbar-custom .navbar-nav {
	margin-top: 0.75rem;
}

.navbar-custom .nav-item .nav-link {
	padding: 0 0.75rem 0 0.75rem;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: var(--primary-lighten);
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover > .dropdown-menu {
	display: block; /* this makes the dropdown menu stay open while hovering it */
	min-width: auto;
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-custom .dropdown-toggle:focus { /* removes dropdown outline on focus  */
	outline: 0;
}

.navbar-custom .dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0.25rem;
	background-color: var(--navbar-color);
}

.navbar-custom .dropdown-item {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}

.navbar-custom .dropdown-item:hover {
	color: var(--lens-blue-color);
	background-color: var(--navbar-color);
}

.navbar-custom .dropdown-item .item-text {
	font: 700 0.75rem/1.5rem "Montserrat", sans-serif;
}

.navbar-custom .dropdown-item:hover .item-text {
	color: var(--primary);
}

.navbar-custom .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: #b5bcc4;
	opacity: 0.2;
}
/* end of dropdown menu */

.navbar-custom .social-icons {
	display: none;
}

.navbar-custom .navbar-toggler {
	border: none;
	color: #fff;
	font-size: 2rem;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times{
	display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars{
	display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars{
	display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times{
	display: inline-block;
	margin-right: 0.125rem;
}

.navbar-dark .navbar-nav .active > .nav-link{
	color: var(--lens-blue-color);
}

.navbar-custom .dropdown-menu {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.navbar-custom .dropdown-item {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.navbar-custom .dropdown-item.active{
	color: var(--lens-blue-color);
	background: #1e2124;
}

@media (max-width: 992px) {

	.navbar-custom .navbar-collapse{
		background-color: #1e2124;
		padding-bottom: 10px;
	}
	
}

.site-notification{
	position: absolute;
	width: 100%;
	height: auto;
	background: linear-gradient(270deg, rgba(84,142,201,1) 0%, rgba(77,27,101,1) 100%);
	z-index: 1050;
	text-align:center;
	line-height: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
}
.site-notification .left-side a{
	color: #77C5FF;
	text-decoration: none;
}
.site-notification .right-side a{
	color: #fff;
	text-decoration: none;
}

@media (min-width: 768px){
	.site-notification + .navbar{
		padding-top: calc(2.125rem + 80px);
	}
}

@media (min-width: 1200px){
	.site-notification + .navbar{
		padding-top: calc(2.125rem + 50px);
	}
}

@media (max-width: 768px) {

	.site-notification{
		display:none;
	}
	
}

.rainbow,
.shine,
.shine-devclusters,
.shine-k0s{
	-webkit-background-clip:text;
	-moz-background-clip:text;
	background-clip:text;
  
	-webkit-text-fill-color:transparent;
	-moz-text-fill-color:transparent;
	text-fill-color:transparent;
  
	background-image: -webkit-gradient(
	  linear,
	  left top,
	  right top,
	  color-stop(0,var(--lens-blue-color)),
	  color-stop(.35,var(--lens-blue-color)),
	  color-stop(.5,#3dcec7),
	  color-stop(.65,var(--lens-blue-color)),
	  color-stop(1,var(--lens-blue-color))
	);
  
	background-size:600% 600%;
  
	-webkit-animation:Shine 7s ease infinite;
	-moz-animation:Shine 7s ease infinite;
	animation: Shine 7s ease infinite;
  
	animation-delay: 1s;
	animation-fill-mode: forwards;
}
  
@-webkit-keyframes Shine{
	0%{background-position:0 50%}
	50%{background-position:100% 50%}
	100%{background-position:0 50%}
}
@-moz-keyframes Shine{
	0%{background-position:0 50%}
	50%{background-position:100% 50%}
	100%{background-position:0 50%}
}
@keyframes Shine{
	0%{background-position:0 50%}
	50%{background-position:100% 50%}
	100%{background-position:0 50%}
}



/*********************/
/* Home Header       */
/*********************/
.home-header {
  background: #1e2124;
	padding-top: 5rem;
	padding-bottom: 2.5rem;
	overflow: hidden;
	position: relative;
}

.home-header .hero-container{
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.home-header .hero-container .hero-text{
	width: 100%;
	max-width: 380px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	z-index: 100;
}

.home-header .hero-container .hero-text .download-button,
.home-header .hero-container .hero-text .no-default-downloads
{
		width: 365px;
}

.home-header .hero-container .hero-text .download-button button.btn-primary,
.home-header .hero-container .hero-text .download-button a.download-button-default-link {
	background: transparent !important;
	color: var(--primary);
	border-color: var(--primary);
}

.home-header .hero-container .hero-text .download-button button.btn-primary:hover,
.home-header .hero-container .hero-text .download-button button.btn-primary:hover span,
.home-header .hero-container .hero-text .download-button a.download-button-default-link:hover {
	color: var(--primary-lighten);
	border-color: var(--primary-lighten);
}

.home-header .hero-container .hero-image{
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-width: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-align-items: flex-start;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	margin-left: 20px;
}

.home-header .hero-container .hero-image .box{
	position: relative;
	width: 700px;
	height: 700px;
	overflow: hidden;
}

.home-header .hero-container .hero-image .box .background{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* background: url('../images/globe.png'); */
	background-size: cover;
	background-position: center center;
}

.home-header h1 {
	margin-bottom: 1rem;
}

.home-header .p-large {
	margin-bottom: 2rem;
}

.home-header .version-info {
	color: #f1f1f856;
}

.home-header .stats{
	padding: 1.5rem 0;
	border-top: 1px solid #f1f1f820;
	display:flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: center;
}

.home-header .stats-item{
	flex-grow: 1;
	text-align: center;
} 

.home-header .stats-item .number{
	font-size: 1.5rem;
}

.home-header .stats-item .unit{
	color: #f1f1f880;
}


/* 
 * Logo Carousel
 */ 
@keyframes scroll{
	0%{
		transform: translate3d(0, 0, 0);
	}
	100%{
		transform: translate(-100%, 0);
	}
}

.home-header .logos-slider{
	margin: auto;
	position: relative;
	width: auto;
	overflow: hidden;
	height: 160px;
	padding: 1.5rem 0;
}

.home-header .logos-slider .slide-track{
	animation: scroll 320s linear infinite; 
	display: flex;
	width: calc(150px * 112) /* 112 = 14 (images) x 8 (sets of images) */
} 

.home-header .logos-slider .slide{
	margin: 0 20px 0 20px;
	align-items: center;
	justify-content: center;
	display: flex;
	height: 50px;
	width: 150px;
} 

.home-header .logos-slider .slide img{
	max-width:100%;
	max-height:100%;
} 

.home-header .logos-slider .description{
	color: #f1f1f880;
	height: 80px;
	justify-content: center;
	align-items: center;
	display: flex;
}

@media (max-width: 767px){

	.home-header{
		padding-top: 8rem;
	}

	.home-header .hero-container{
		flex-wrap: wrap;
		justify-content: center;
	}

	.home-header .hero-container .hero-image{
		position: relative;
		left: 0;
		bottom: 93px;
		margin: 0 !important;
    width: 100vw;
		height: 350px;
	}
	
	.home-header .hero-container .hero-image .box{
		width: 100%;
    height: 100%;
	}

	.home-header .hero-container .hero-image .box .background{
		width: 100vw;
    height: 100vw;
		top: 30px;
	}

	.home-header .stats-logos-container{
		width: 100%;
		margin-top: -92px;
	}

	.home-header .logos-slider .description {
		text-align: center;
	}

	.home-overview {
		padding-top: 220px;
	}

	.home-header .stats-item .number{
		font-size: 1.0rem;
	}

}

@media (min-width: 375px) {

}

@media (min-width: 768px) {

	.home-header .hero-container .hero-image{
		margin: 0;
	}

	.home-header .hero-container .hero-image .box{
		width: 740px;
		height: 740px;
	}

	.home-header h1 {
    font-size: 2.5rem;
    line-height: 2.85rem;
	}

}

@media (min-width: 992px) {

	.home-header .hero-container .hero-image .box{
		width: 740px;
		height: 740px;
	}

	.home-header h1 {
    font-size: 2.5rem;
    line-height: 2.85rem;
	}

}

@media (min-width: 1200px) {

	.home-header .hero-container .hero-image .box{
		width: 900px;
		height: 740px;
	}

	.home-header h1 {
    font-size: 2.5rem;
    line-height: 2.85rem;
	}

}

/****************************/
/*     Testimonials         */
/****************************/
.testimonials{
	position: relative;
	padding-top: 6.375rem;
  padding-bottom: 0;
	background: var(--dark-bg);
}

.testimonials .billion-testimonials-more{
	position: absolute;
	pointer-events:none;
	bottom: 0;
	height: 50%;
	width: 100%;
	background: linear-gradient(
		rgba(0, 0, 0, 0),
		rgba(0, 0, 0, 1)
	)
}

.testimonials h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

.testimonials .card{
	position: relative;
	background: var(--light-dark-bg);
	padding-left: 3.3rem;
}

.testimonials .card img{
	position: absolute;
	left: 1.25rem;
	top: 1.25rem;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 30px;
}

.testimonials .card .card-title{
	color: #fff;
	font-size: 0.875rem;
	margin-bottom: 0;
	line-height: 1.1rem;
}

.testimonials .card .card-title span{
	font-weight: 300;
}

.testimonials .card .card-text{
	margin-top: 0.875rem;
	color: #ffffffbf;
}

.testimonials .card .card-text .hashtag{
	color: var(--primary);
}

.testimonials .card a {
	text-decoration: none;
	color: var(--primary) !important;
}

.testimonials .card a:hover {
	color: var(--primary-lighten) !important;
}

.testimonials .card .text-muted a {
	text-decoration: none;
	color: #6c757d !important;
}

.testimonials .card .text-muted a:hover {
	color: #859099 !important;
}

@media (min-width: 375px){
	.testimonials h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 576px) {
	.testimonials .card-columns {
		column-count: 1;
	}
}

@media (min-width: 768px) {
	.testimonials h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}

	.testimonials .card-columns {
		column-count: 2;
	}
}

@media (min-width: 992px) {
	.testimonials .card-columns {
		column-count: 3;
	}
}

@media (min-width: 1200px) {

	.testimonials h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}


/**************************/
/*     Counter            */
/**************************/
.counter {
	padding-top: 0;
	padding-bottom: 5.375rem;
	background: #000;
	text-align: center;
}

.counter #counter .cell {
  position: relative;
	display: inline-block;
	margin-right: 3rem;
	margin-left: 3rem;
	margin-bottom: 2rem;
}

.counter #counter .unit {
  position: absolute;
  right: 0;
  bottom: 26px;
  font-weight: 700;
  font-size: 20px;
}

.counter #counter .counter-value {
  font: 700 2.5rem/2.25rem "Montserrat", sans-serif;
}

.counter #counter .counter-value a {
	color: #f1f1f8;
	font: 700 3.5rem/4.25rem "Montserrat", sans-serif;
	vertical-align: middle;
}

.counter #counter .counter-info,
.counter #counter .counter-info a {
	margin-bottom: 0;
	color: var(--primary);
	font: 700 0.875rem/1.25rem "Open Sans", sans-serif;
	vertical-align: middle;
  text-decoration: none;
}

@media (min-width: 768px) {
  .counter #counter .cell {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  .counter #counter .counter-value {
		font-size: 3.25rem;
		line-height: 3.5rem;
  }
}

@media (min-width: 992px) {

}


@media (min-width: 1200px) {
  .counter #counter .cell {
    margin-right: 6rem;
    margin-left: 6rem;
  }

  .counter #counter .counter-value {
		font-size: 4rem;
		line-height: 4.5rem;
  }
}

/************************/
/*     Home Overview    */
/************************/

.home-overview{
	padding-top: 6.375rem;
	background: var(--hyper-dark-bg);
}

.home-overview h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

.home-overview .card-deck{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: .35rem;
}

.home-overview .card-header{
	border: none;
	padding-bottom: 0;
	padding-top: 1.5rem;
}

.home-overview .card-header h5{
	margin-bottom: 0;
	font-size: 16px;
}

.home-overview .card-header h5 i{
	color: var(--lens-green-color);
	margin-right: .5rem;
}

.home-overview .card-body{
	padding-top: 0;
}

.home-overview .card{
	margin-bottom: 1.1rem;
	background: #ffffff0a;
}

.home-overview .card .card-text{
	margin-top: 0.875rem;
	color: #ffffffbf;
}

.home-overview .screenshot-wrapper{
	margin-top: 3.75rem;	
}

@media (min-width: 375px){
	.home-overview h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
	.home-overview .card-deck{
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}	
}

@media (min-width: 768px) {

	.home-overview h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}
	.home-overview .card-deck{
		grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	}	
}

@media (min-width: 992px) {
	.home-overview .card-deck{
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}	
}

@media (min-width: 1200px) {

	.home-overview h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}
	.home-overview .card-deck{
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}	

}


/************************/
/*     Overview         */
/************************/

.overview{
	padding-top: 6.375rem;
	padding-bottom: 6.375rem;
	background: var(--hyper-dark-bg-reverse);
}

.overview h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

.overview .card-deck{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-gap: .35rem;
}

.overview .card-header{
	border: none;
	padding-bottom: 0;
	padding-top: 1.5rem;
}

.overview .card-header h5{
	margin-bottom: 0;
	font-size: 16px;
}

.overview .card-header h5 i{
	color: var(--lens-green-color);
	margin-right: .5rem;
}

.overview .card-body{
	padding-top: 0;
}

.overview .card{
	margin-bottom: 1.1rem;
	background: #ffffff0f;
}

.overview .card .card-text{
	margin-top: 0.875rem;
	color: #ffffffbf;
}

@media (min-width: 375px){
	.overview h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {

	.overview h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}

}

@media (min-width: 1200px) {

	.overview h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

/*********************/
/* Desktop Header    */
/*********************/
.desktop-header {
  background: #1e2124;
}

.desktop-header .header-content {
	padding-top: 8.5rem;
	padding-bottom: 0;
	text-align: center;
}

.desktop-header .text-container {
  text-align: center;
	margin-bottom: 3rem;
}

.desktop-header h1 {
	margin-bottom: 1rem;
}

.desktop-header .p-large {
	margin-bottom: 2rem;
}

.desktop-header .version-info {
	color: #f1f1f856;
}

@media (min-width: 375px) {

	.desktop-header h1 {
		font-size: 1.8rem;
		line-height: 2.0rem;
	}

}

@media (min-width: 768px) {

	.desktop-header .header-content {
		padding-top: 11rem;
	}

	.desktop-header h1 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

@media (min-width: 992px) {

	.desktop-header .header-content {
		padding-top: 13rem;
		text-align: left;
	}

	.desktop-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

@media (min-width: 1200px) {

	.desktop-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

/************************/
/* Desktop Overview     */
/************************/

.desktop-overview{
	padding-top: 6.375rem;
	padding-bottom: 6.375rem;
	background: var(--hyper-dark-bg-reverse);
}

.desktop-overview h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

.desktop-overview .card-deck{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-gap: .35rem;
}

.desktop-overview .card-header{
	border: none;
	padding-bottom: 0;
	padding-top: 1.5rem;
}

.desktop-overview .card-header h5{
	margin-bottom: 0;
	font-size: 16px;
}

.desktop-overview .card-header h5 i{
	color: var(--lens-green-color);
	margin-right: .5rem;
}

.desktop-overview .card-body{
	padding-top: 0;
}

.desktop-overview .card{
	margin-bottom: 1.1rem;
	background: #ffffff0f;
}

.desktop-overview .card .card-text{
	margin-top: 0.875rem;
	color: #ffffffbf;
}

@media (min-width: 375px){
	.desktop-overview h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {

	.desktop-overview h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}

}

@media (min-width: 1200px) {

	.desktop-overview h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}


/*********************/
/* Spaces Header     */
/*********************/
.spaces-header {
	position: relative;
  background: #000;
}

.spaces-header #particles {
	position: absolute;
	width: 100%;
	height: 100%;
}

.spaces-header .header-content {
	padding-top: 8.5rem;
	padding-bottom: 0;
	text-align: center;
}

.spaces-header .text-container {
  text-align: center;
	margin-bottom: 3rem;
}

.spaces-header h1 {
	margin-bottom: 1rem;
}

.spaces-header .p-large.intro-text {
	margin-bottom: 1rem;
}

.spaces-header .p-large {
	margin-bottom: 2rem;
}

@media (min-width: 375px) {

	.spaces-header .header-content {
		padding-top: 11rem;
		padding-bottom: 7rem;
	}

	.spaces-header h1 {
		font-size: 1.8rem;
		line-height: 2.0rem;
	}

}

@media (min-width: 768px) {

	.spaces-header .header-content {
		padding-top: 13rem;
		padding-bottom: 9rem;
	}

	.spaces-header h1 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

@media (min-width: 992px) {

	.spaces-header .header-content {
		padding-top: 16rem;
		padding-bottom: 9rem;
	}

	.spaces-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

@media (min-width: 1200px) {

	.spaces-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

/************************/
/* Spaces Overview      */
/************************/

.spaces-overview{
	padding-top: 6.375rem;
	padding-bottom: 6.375rem;
	background: var(--hyper-dark-bg-reverse);
}

.spaces-overview h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

.spaces-overview .card-deck{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-gap: .35rem;
}

.spaces-overview .card-header{
	border: none;
	padding-bottom: 0;
	padding-top: 1.5rem;
}

.spaces-overview .card-header h5{
	margin-bottom: 0;
	font-size: 16px;
}

.spaces-overview .card-header h5 i{
	color: var(--lens-green-color);
	margin-right: .5rem;
}

.spaces-overview .card-body{
	padding-top: 0;
}

.spaces-overview .card{
	margin-bottom: 1.1rem;
	background: #ffffff0f;
}

.spaces-overview .card .card-text{
	margin-top: 0.875rem;
	color: #ffffffbf;
}

@media (min-width: 375px){
	.spaces-overview h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {

	.spaces-overview h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}

}

@media (min-width: 1200px) {

	.spaces-overview h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

/***********************/
/* Kubernetes Header   */
/***********************/
.kubernetes-header {
	position: relative;
  background: #000;
}

.kubernetes-header #particles {
	position: absolute;
	width: 100%;
	height: 100%;
}

.kubernetes-header #particles canvas {
	position: absolute;
	width: 100%;
	height: 100%;
}


.k0s{
	font-family: "Menlo", "Consolas";
	font-weight: 900;
}

.kubernetes-header .header-content {
	padding-top: 8.5rem;
	padding-bottom: 0;
	text-align: center;
}

.kubernetes-header .text-container {
  text-align: center;
	margin-bottom: 3rem;
}

.kubernetes-header h1 {
	margin-bottom: 1rem;
}

.kubernetes-header .p-large.intro-text {
	margin-bottom: 1rem;
}

.kubernetes-header .p-large {
	margin-bottom: 2rem;
}

@media (min-width: 375px) {

	.kubernetes-header .header-content {
		padding-top: 11rem;
		padding-bottom: 7rem;
	}

	.kubernetes-header h1 {
		font-size: 1.8rem;
		line-height: 2.0rem;
	}

}

@media (min-width: 768px) {

	.kubernetes-header .header-content {
		padding-top: 13rem;
		padding-bottom: 9rem;
	}

	.kubernetes-header h1 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

@media (min-width: 992px) {

	.kubernetes-header .header-content {
		padding-top: 16rem;
		padding-bottom: 9rem;
	}

	.kubernetes-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

@media (min-width: 1200px) {

	.kubernetes-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

/*************************/
/* Kubernetes Overview   */
/*************************/

.kubernetes-overview{
	padding-top: 6.375rem;
	padding-bottom: 6.375rem;
	background: var(--super-dark-bg);
	border-bottom: 1px solid #ffffff06;
}

.kubernetes-overview h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

.kubernetes-overview .card-deck{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-gap: .35rem;
}

.kubernetes-overview .card-header{
	border: none;
	padding-bottom: 0;
	padding-top: 1.5rem;
}

.kubernetes-overview .card-header h5{
	margin-bottom: 0;
	font-size: 16px;
}

.kubernetes-overview .card-header h5 i{
	color: var(--lens-green-color);
	margin-right: .5rem;
}

.kubernetes-overview .card-body{
	padding-top: 0;
}

.kubernetes-overview .card{
	margin-bottom: 1.1rem;
	background: #ffffff0f;
}

.kubernetes-overview .card .card-text{
	margin-top: 0.875rem;
	color: #ffffffbf;
}

@media (min-width: 375px){
	.kubernetes-overview h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {

	.kubernetes-overview h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}

}

@media (min-width: 1200px) {

	.kubernetes-overview h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

/*************************/
/* Kubernetes Highlights */
/*************************/

.kubernetes-highlights{
	position: relative;
	padding-top: 6.375rem;
	padding-bottom: 0;
	background: var(--massive-dark-bg);
}

.kubernetes-highlights .container{
	position: relative;
}

.kubernetes-highlights .container:last-child {
	padding-bottom: 6.375rem;
}

.kubernetes-highlights .background-track{
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 15px;
	width: 4px;
	background: linear-gradient(130deg, #3d90ce -6.8%, #63aa36 70%);
}

.kubernetes-highlights .section-header {
	position: relative;
	padding-left: 30px;
	margin-bottom: 50px;
}

.kubernetes-highlights .section-header.nth {
	margin-top: 6.375rem;
}

.kubernetes-highlights .section-header h2{
  background: linear-gradient(130deg, #3d90ce -6.8%, #63aa36 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kubernetes-highlights .section-header h5{

}

.kubernetes-highlights .section-header .big-circle-wrapper{
	position: absolute;
	top: 10px;
	left: -25px;
	background: linear-gradient(130deg, #3d90ce -6.8%, #63aa36 70%);
  width: 25px;
  height: 25px;
  border-radius: 100px;
  padding: 4px;
}

.kubernetes-highlights .section-header .big-circle{
	background: #000;
  width: 17px;
  height: 17px;
  border-radius: 100px;
}

.kubernetes-highlights .section-header .section-header-subtitle{
	position: relative;
}

.kubernetes-highlights .section-header .circle{
	position: absolute;
	top: 7px;
	left: -35px;
	background: linear-gradient(130deg, #3d90ce -6.8%, #63aa36 70%);
  width: 15px;
  height: 15px;
  border-radius: 100px;
}

.kubernetes-highlights .card{
	background: transparent;
}

.kubernetes-highlights .card-header{
	background: transparent;
	padding: 0.75rem 1.9rem 0 1.9rem;
}

.kubernetes-highlights .card-body{
	background: transparent;
	padding: 0 1.9rem 0.75rem 1.9rem;
}

.kubernetes-highlights .card-body .card-text{
	color: #ffffffa0;
}



/*****************************/
/* Kubernetes Specifications */
/*****************************/
.kubernetes-specifications{
	padding: 0 2.8rem;
}

.kubernetes-specifications .background-track{
	position: absolute;
	top: 0px;
	bottom: 75px;
	left: 15px;
	width: 4px;
	background: linear-gradient(130deg, #63aa36 -6.8%, #3d90ce 70%);
}

.kubernetes-specifications .background-track-h{
	position: absolute;
	bottom: 75px;
	left: 15px;
	width: 50%;
	height: 4px;
	background: linear-gradient(130deg, #3d90ce -6.8%, #63aa36 70%);
}

.kubernetes-specifications h2{
	padding-top: 6.375rem;
	margin-bottom: 1.125rem;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
}

.kubernetes-specifications .p-heading{
	margin-bottom: 1.5rem;
	padding-left: 30px;
	padding-right: 30px;
}

.kubernetes-specifications .specifications-switcher{
	position: relative;
	text-align: center;
	margin-bottom: 3.75rem;
}

.kubernetes-specifications .specifications-switcher-buttons{
	position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.kubernetes-specifications .specifications-switcher .borders{
	position: absolute;
	top: -4px;
	left: -4px;
	bottom: -4px;
	right: -4px;
	border-radius: 50px;
	background: linear-gradient(130deg, #63aa36 -6.8%, #3d90ce 70%);
}

.kubernetes-specifications .specifications-switcher-buttons .btn {
	position: relative;
	border-radius: 20px;
	flex: 1 1 auto;
	background: #00000080;
	border: none;
	box-shadow: none;
}

.kubernetes-specifications .specifications-switcher-buttons .btn.active {
	position: relative;
	border-radius: 20px;
	flex: 1 1 auto;
	background: #00000040;
	border: none;
	box-shadow: none;
}

.kubernetes-specifications .specifications-switcher-buttons .btn:active {
	background: #00000020;
	box-shadow: none;
}

.kubernetes-specifications .specifications-switcher-buttons .btn:first-of-type {
  border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.kubernetes-specifications .specifications-switcher-buttons .btn:last-of-type {
  border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.kubernetes-specifications .specification-sheet{
	
}

.kubernetes-specifications .feature{
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
}

.kubernetes-specifications .feature:last-of-type {
  border-bottom: none;
}

.kubernetes-specifications .feature .feature-title{
	margin:0;
	text-align: right;
}

.kubernetes-specifications .feature .feature-title .name{
  font-weight: 900;
  color: rgba(255,255,255,0.85);
}

.kubernetes-specifications .feature .feature-value ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.kubernetes-specifications .feature .feature-value ul li{
  color: #b1b2b3;
}

.kubernetes-specifications .feature .feature-value ul li.label-value{
  text-decoration: underline;
  margin-top: 20px;
}

.kubernetes-specifications .feature .feature-value ul li.label-value:first-of-type{
  margin-top:0;
}

/*********************/
/* PREQ Header    */
/*********************/
.preq-header {
  background: #1e2124;
}

.preq-header .header-content {
	padding-top: 8.5rem;
	padding-bottom: 0;
	text-align: center;
}

.preq-header .text-container {
  text-align: center;
	margin-bottom: 3rem;
}

.preq-header h1 {
	margin-bottom: 1rem;
}

.preq-header .p-large {
	margin-bottom: 2rem;
}

.preq-header .forever{
	text-decoration: underline;
}


@media (min-width: 375px) {

	.preq-header h1 {
		font-size: 1.8rem;
		line-height: 2.0rem;
	}

}

@media (min-width: 768px) {

	.preq-header .header-content {
		padding-top: 11rem;
	}

	.preq-header h1 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

}

@media (min-width: 992px) {

	.preq-header .header-content {
		padding-top: 13rem;
		text-align: left;
	}

	.preq-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

@media (min-width: 1200px) {

	.preq-header .text-container {
		margin-top: 0;
		margin-bottom: 6rem;
	}

}

/**************************/
/* PREQ Form              */
/**************************/

.preq-form{
	background: var(--hyper-dark-bg-reverse);
	padding-top: 6rem;
	padding-bottom: 6rem;
	border-top: 1px solid #f1f1f812;
	border-bottom: 1px solid #f1f1f812;
}

.preq-form-iframe{
	height: 1675px;
}

@media (min-width: 440px) {

	.preq-form-iframe{
		height: 1031px;
	}

}

@media (min-width: 768px) {

	.preq-form-iframe{
		height: 963px;
	}

}

@media (min-width: 992px) {

	.preq-form-iframe{
		height: 963px;
	}

}

@media (min-width: 1200px) {

	.preq-form-iframe{
		height: 946px;
	}

}

/*********************/
/* Pricing FAQ       */
/*********************/
.pricing-faq {
	padding-top: 6.375rem;
  padding-bottom: 6.875rem;
  background: var(--light-dark-bg);
}

.pricing-faq h2 {
	margin-bottom: 1.125rem;
	text-align: center;
	color: #fff;
}

.pricing-faq .p-heading {
	margin-bottom: 4rem;
	text-align: center;
	color: #ffffff8a;
}

.pricing-faq .faq-content{
	column-count: 1;
	column-gap: 40px;
	column-rule: 1px solid #ffffff29;
}

.pricing-faq .faq-content h3{
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
}

.pricing-faq .faq-content p{
	font-size: 12px;
	font-weight: 400;
	color: #ffffffad;
}

@media (min-width: 768px) {
	.pricing-faq .faq-content{
		column-count: 3;
	}
}
/************************/
/* Pricing Table        */
/************************/

.pricing-table{
	padding-top: 6.375rem;
	padding-bottom: 0;
	background: var(--dark-bg);
	cursor: default;
}

.pricing-table .list {
	display: block;
	padding-bottom: 4.375rem;

}

.pricing-table .pricing-info{
	margin-top: 2rem;
	text-align: center;
	color: #fff;
}

.pricing-table .pricing-info a{
	color: var(--lens-blue-color);
}

@media (min-width: 1200px) {

	.pricing-table .list {
		display: none;
	}

}

.pricing-table .list .card{
	background: rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	margin-bottom: 2rem;
}

.pricing-table .list .card-header{
	position: relative;
	text-align: left;
	background: transparent;
	border: none;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-table .list .card-header h3{
	margin: 5px 0;
}

.pricing-table .list .card-header .price{
	position: absolute;
	right: 1.25rem;
	top: 0.60rem;
}

.pricing-table .list .card-body{
	text-align: left;
	background: transparent;
	border: none;
	font-size: 15px;
}
.pricing-table .list .card-body .pricing-feature{
	margin: 6px 0;
}

.pricing-table .table{
	background: linear-gradient(rgba(255, 255, 255, 6%) 0%, rgba(255, 255, 255, 0) 100%);
	padding-top: 49px;
	padding-bottom: 180px;
	width: 100%;
	border-radius: 16px;
	margin: auto;
	color: #6c757d;
	display: none;
}

@media (min-width: 1200px) {

	.pricing-table .table {
		display: block;
	}

}

.pricing-table .table-grid{
	display: grid;
	width: 934px;
	margin: auto;
	grid-template-columns: 196px repeat(2, 196px);
	grid-template-rows: 30px 122px 12px;
	grid-auto-rows: min-content;
	column-gap: 50px;
	overflow-x: auto;
}

.pricing-table .table-grid-spacer-cell{
	display: flex;
	flex-shrink: initial;
	flex-basis: initial;
	flex-direction: column;
	-webkit-box-pack: end;
	justify-content: flex-start;
	-webkit-box-flex: 1;
	flex-grow: 1;
}

.pricing-table .table-grid-header-cell {

}

.pricing-table .price{
	display: flex;
	flex-shrink: initial;
	flex-basis: initial;
	flex-direction: row;
	-webkit-box-flex: 1;
	flex-grow: 1;
}

.pricing-table .price .value{
	font-style: normal;
	display: flex;
	font-weight: 500;
	line-height: 32px;
	font-size: 24px;
	letter-spacing: -0.01em;
	color: rgb(247, 248, 248);
}

.pricing-table .price .unit{
	display: flex;
	flex: initial;
	flex-direction: column;
	margin-left: 16px;
	margin-top: 3px;
}

.pricing-table .price .unit .minimum{
	font-size: 75%;
}

.pricint-table .table-grid-header-cell-container {
	display: flex;
	flex-shrink: initial;
	flex-basis: initial;
	flex-direction: column;
	-webkit-box-flex: 1;
	flex-grow: 1;
}

.pricing-table .table-grid-cell {
	padding: 8px 0;
	font-style: normal;
	font-weight: normal;
	color: #6c757d;
	line-height: 23px;
	font-size: 15px;
	display: flex;
	-webkit-box-align: center;
	position: relative;
	border-bottom: 1px solid #ffffff0f;
	flex-shrink: initial;
	flex-basis: initial;
	flex-direction: column;
	-webkit-box-flex: 1;
	flex-grow: 1;
	align-items: flex-start;
	align-self: center;
}

.pricing-table .highlight{
	background-color: rgba(255, 255, 255, 0.06);
	padding-left: 30px;
	padding-right: 30px;
	margin-left: -30px;
	margin-right: -30px;
	color: #fff !important;
}

.pricing-table .highlight.top{
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.pricing-table .highlight.bottom{
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	height: 42px;
}

.pricing-table .table-grid-cell i{
	margin-right: 5px;
	color: var(--lens-blue-color);
}

.pricing-table .table-grid-subtitle-cell {
	font-style: normal;
	font-weight: normal;
	color: #fff;
	font-size: 15px;
	line-height: 23px;
	display: flex;
	align-items: flex-end;
	height: 60px;
}

.pricing-table .table-grid-cell .feature-title{
	color: #6c757d;
}

/*************************/
/* Download Lens Desktop */
/*************************/

.download-lens-desktop{
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	background: var(--hyper-dark-bg);
	border-top: 1px solid #343437;
	border-bottom: 1px solid #343437;
}

.download-lens-desktop .col {
	text-align: center;
}

.download-lens-desktop h2 {
	margin-bottom: 1.125rem;
	text-align: center;
	color: #fff;
}

.download-lens-desktop .version-info {
	color: #ffffff8a;
}

@media (min-width: 375px){
	.download-lens-desktop h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {
	.download-lens-desktop h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}
}

@media (min-width: 992px) {
	.download-lens-desktop h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}
}

@media (min-width: 1200px) {
	.download-lens-desktop h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}
}

/************************/
/*     Spaces           */
/************************/

.spaces{
	padding-top: 6.375rem;
	padding-bottom: 6.375rem;
	background: var(--super-dark-bg);
	position: relative;
}

.spaces .space-canvas{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
}

.spaces h2{
	text-align: center;
	margin-bottom: 1.125rem;
}

@media (min-width: 375px){
	.spaces h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {
	.spaces h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}
}

@media (min-width: 1200px) {
	.spaces h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}
}

/************************/
/*     Feature          */
/************************/
.feature{
	padding-top: 6.375rem;
	padding-bottom: 6.375rem;
	overflow: hidden;
}

.feature.feature-image-right{
	background: var(--super-dark-bg);
}

.feature.feature-image-left{
	background: var(--dark-bg);
}

.feature .feature-container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.feature .feature-text{
	width: 380px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	overflow: hidden;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
}

.feature .feature-title{
	margin-bottom: 2.2rem;
}

.feature .feature-description p{
	color: #ffffffbf;
	font: 400 1.2rem/1.8rem "Open Sans", sans-serif;
}

.feature .feature-description p b{
	color: #fff;
}

.feature .beta-feature{
	font-size: 15px;
	font-weight: 900;
	line-height: 1.8rem;
	background: var(--primary);
	white-space: nowrap;
	border-radius: 19px;
	padding: 2px 12px;
	text-decoration: none;
	cursor: pointer;
}

.feature .feature-image{
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-width: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-align-items: flex-start;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}

.feature.feature-image-right .feature-image{
	-webkit-align-items: flex-start;
	-webkit-box-align: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
	margin-left: 100px;
}

.feature.feature-image-left .feature-image{
	-webkit-align-items: flex-end;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	margin-right: 100px;
}

.feature .feature-image .box{
	width: 1000px;
	height: 680px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	max-width: 1100px;
}

.feature .feature-image .box .background{
	position: absolute;
	border-radius: 24px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../images/lens-gradient.png);
	background-size: cover;
	background-position: center center;
	-webkit-animation: hue-rotate 4s ease-in-out infinite;
	animation: hue-rotate 4s ease-in-out infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

@keyframes hue-rotate{
	from{
		-webkit-filter:hue-rotate(-30deg);
		-moz-filter:hue-rotate(-30deg);
		-ms-filter:hue-rotate(-30deg);
		-webkit-filter:hue-rotate(-30deg);
		filter:hue-rotate(-30deg);
	}to{
		-webkit-filter:hue-rotate(30deg);
		-moz-filter:hue-rotate(30deg);
		-ms-filter:hue-rotate(30deg);
		-webkit-filter:hue-rotate(30deg);
		filter:hue-rotate(30deg);
	}
}

.feature .screenshot-catalog{
	top: 20%;
  position: absolute;
  left: 5vw;
  height: 120%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-command-palette{
	top: 20%;
  position: absolute;
  left: 40%;
  height: 60%;
	border-radius: 8px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-hotbar{
	top: 10%;
  position: absolute;
  right: 5vw;
  height: 180%;
	border-radius: 8px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-stats{
	top: 30%;
  position: absolute;
  left: -10vw;
  width: 90%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-stats-details{
	top: 10%;
  position: absolute;
  left: 20vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-logs{
	top: 10%;
  position: absolute;
  left: 25%;
  width: 100%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-terminal{
	top: 10%;
  position: absolute;
  left: 8%;
  height: 80%;
	border-radius: 8px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-helmcharts{
	top: 32%;
  position: absolute;
  left: 5vw;
  width: 100%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-helmcharts2{
	top: 8%;
  position: absolute;
  left: 20vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-helmcharts3{
	top: 50%;
  position: absolute;
  left: 30vw;
  width: 100%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-extensions{
	top: 15%;
  position: absolute;
  right: 10vw;
  width: 100%;
	border-radius: 8px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-extensions2{
	top: 30%;
  position: absolute;
	left: 10vw;
  width: 100%;
	border-radius: 8px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-share{
	top: 10%;
  position: absolute;
  left: 12vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-members{
	bottom: -10%;
  position: absolute;
  left: 5vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-teams{
	bottom: -10%;
  position: absolute;
  left: 20vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .world-map{
	top: 15%;
  position: absolute;
  right: 10%;
  width: 80%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-scanning{
	top: 10%;
  position: absolute;
  left: 10%;
  width: 80%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-cve{
	bottom: 0;
  position: absolute;
  left: 5vw;
  width: 100%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-cve2{
	top: 8%;
  position: absolute;
  left: 20vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-cve3{
	top: -25%;
  position: absolute;
  left: 30vw;
  width: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-support-chat2{
	top: 35%;
  position: absolute;
  left: -10vw;
  width: 90%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-support-chat{
	top: 10%;
  position: absolute;
  left: 15vw;
  width: 40%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-lcc-feature-management{
	bottom: 0%;
  position: absolute;
  right: 0;
  height: 90%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-support-slack{
	bottom: 0%;
  position: absolute;
  right: -15%;
  height: 90%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

.feature .screenshot-support-tickets{
	top: 50%;
  position: absolute;
  right: 15%;
  height: 50%;
	border-radius: 4px;
  box-shadow:  0 26px 44px 18px rgb(0 0 0 / 50%);
}

@media (max-width: 767px){

	.feature h2 {
		text-align: center;
	}

	.feature .feature-description{
		margin-bottom: 2.5rem;
	}

	.feature .feature-container{
		flex-wrap: wrap;
	}
	
	.feature.feature-image-left .feature-container{
		flex-wrap: wrap-reverse;
	}

	.feature .feature-text{
		margin: 0 !important;
    width: 100%;
	}

	.feature .feature-image{
		margin: 0 !important;
    width: 100%;
	}
	
	.feature .feature-image .box{
		width: 100%;
    height: 320px;
    border-radius: 12px;
	}

	.feature .screenshot-command-palette{
		width: 70%;
		left: 15%;
	}

	.feature .screenshot-hotbar{
		right: 20vw;
	}

	.feature .screenshot-stats{
		width: 80%;
		left: 10%;
	}
	
	.feature .screenshot-stats-details{
		left: 60%;
	}

	.feature .screenshot-terminal{
		width: 80%;
		left: 10%;
	}

	.feature .screenshot-share{
		left: 20vw;
	}
	
	.feature .screenshot-members{
		left: 10vw;
	}
	
	.feature .screenshot-teams{
		left: 25vw;
	}
}

@media (min-width: 375px){
	.feature h2 {
			font-size: 1.8rem;
			line-height: 2.0rem;
	}
}

@media (min-width: 768px) {

	.feature h2 {
		font-size: 2.0rem;
		line-height: 2.5rem;
	}
  
	.feature .screenshot-catalog{
		left: 2vw;
	}

	.feature .screenshot-command-palette{
		left: 75%;
	}
	
	.feature .screenshot-stats{
		left: -29vw;
	}
	
	.feature .screenshot-stats-details{
		left: 13vw;
	}

	.feature .screenshot-logs{
		left: 70%;
	}

	.feature .screenshot-terminal{
		left: 8%;
	}

	.feature .screenshot-helmcharts{
		left: 70%;
	}
	
	.feature .screenshot-helmcharts2{
		left: 80%;
	}
	
	.feature .screenshot-helmcharts3{
		left: 85%;
	}

	.feature .screenshot-extensions2{
		left: 10vw;
	}

	.feature .world-map{
		width: 100%;
		left: 60%;
	}
}

@media (min-width: 992px) {

	.feature .screenshot-catalog{
		left: 3vw;
	}

	.feature .screenshot-command-palette{
		left: 55%;
	}

	.feature .screenshot-stats{
		left: -16vw;
	}
	
	.feature .screenshot-stats-details{
		left: 17vw;
	}


	.feature .screenshot-logs{
		left: 50%;
	}

	.feature .screenshot-terminal{
		left: 8%;
	}

	.feature .screenshot-helmcharts{
		left: 50%;
	}
	
	.feature .screenshot-helmcharts2{
		left: 60%;
	}
	
	.feature .screenshot-helmcharts3{
		left: 70%;
	}

	.feature .screenshot-extensions2{
		left: 10vw;
	}

	.feature .world-map{
		width: 100%;
		left: 50%;
	}

}

@media (min-width: 1200px) {

	.feature h2 {
		font-size: 2.5rem;
		line-height: 2.85rem;
	}

	.feature .screenshot-catalog{
		left: 5vw;
	}

	.feature .screenshot-command-palette{
		left: 40%;
	}

	.feature .screenshot-stats{
		left: -10vw;
	}
	
	.feature .screenshot-stats-details{
		left: 20vw;
	}
	.feature .screenshot-logs{
		left: 25%;
	}
	.feature .screenshot-terminal{
		left: 8%;
	}

	.feature .screenshot-helmcharts{
		left: 25%;
	}
	
	.feature .screenshot-helmcharts2{
		left: 40%;
	}
	
	.feature .screenshot-helmcharts3{
		left: 55%;
	}

	.feature .screenshot-extensions2{
		left: 20vw;
	}

	.feature .world-map{
		width: 100%;
		left: 25%;
	}
}

/*************************/
/*     07. Details 1     */
/*************************/
.specifications {
	padding-top: 6.5rem;
	padding-bottom: 7.25rem;
	background: var(--light-dark-bg);
}

.specifications h2{
  margin-bottom: 1.125rem;
  text-align: center;
}

.specifications .text-container {
	margin-bottom: 3.5rem;
}

.specifications h3 {
	margin-bottom: 1.125rem;
}

.specifications p{
  font-size: 16px;
}

.specifications .feature{
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.specifications .feature:last-of-type {
  border-bottom: none;
}

.specifications .feature .feature-title{
  text-align: right;
}

.specifications .feature .feature-title .name{
  font-weight: 900;
  color: #fff;
}

.specifications .feature .feature-value ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.specifications .feature .feature-value ul li .value{
  color: #ffffffbf;
}

.specifications .feature .feature-value ul li .label{
	display: inline-block;
	background: var(--primary);
	text-transform: uppercase;
	margin-left: 10px;
	cursor: default;
}

.specifications .feature .feature-value ul li .label.experimental{
	background:rgba(255, 255, 255, 10%)
}

@media (min-width: 992px) {
	.specifications .feature .feature-title .name{
		font-size: 1.2rem;
		line-height: 1.8rem;
	}
	.specifications .feature .feature-value ul li .value{
		font-size: 1.2rem;
		line-height: 1.8rem;
	}
	.specifications .feature .feature-value ul li .label{
		position: relative;
		border-radius: 0.9rem;
		line-height: 1.6rem;
		font-size: 0.9rem;
		padding: 0 0.9rem;
	}
}

/************************/
/*     05. Features     */
/************************/
.tabs {
	padding-top: 6.5rem;
	padding-bottom: 4.25rem;
	background: var(--light-dark-bg);
}

.tabs h2 {
	margin-bottom: 1.125rem;
	text-align: center;
}

.tabs .p-heading {
	margin-bottom: 3.125rem;
}

.tabs .nav-tabs {
	margin-right: auto;
	margin-bottom: 2.5rem;
	margin-left: auto;
	justify-content: center;
	border-bottom: none;
}

.tabs .nav-link {
	margin-bottom: 1rem;
	padding: 0.5rem 1.375rem 0.25rem 1.375rem;
	border: none;
	border-bottom: 0.1875rem solid #f1f1f8;
	border-radius: 0;
	color: #f1f1f8;
	font: 700 1rem/1.75rem "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s ease;
}

.tabs .nav-link.active,
.tabs .nav-link:hover {
	border-bottom: 0.1875rem solid var(--primary);
	background-color: transparent;
	color: var(--primary);
}

.tabs .nav-link .fas {
	margin-right: 0.375rem;
	font-size: 1rem;
}

.tabs .tab-content {
	width: 100%; /* for proper display in IE11 */
}

.tabs .card {
	border: none;
	background: transparent;
}

.tabs .card-body {
	padding: 1rem 0 1.25rem 0;
}

.tabs .card-title {
	margin-bottom: 0.5rem;
}

.tabs .card .card-icon {
	display: inline-block;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background-color: var(--primary);
	text-align: center;
	vertical-align: top;
}

.tabs .card .card-icon .fas,
.tabs .card .card-icon .far {
	color: #fff;
	font-size: 1.75rem;
	line-height: 3.5rem;
}

.tabs #tab-1 .card.left-pane .text-wrapper {
	display: inline-block;
	width: 75%;
}

.tabs #tab-1 .card.left-pane .card-icon {
	float: left;
	margin-right: 1rem;
}

.tabs #tab-1 img {
	display: block;
	margin: 2rem auto 3rem auto;
}

.tabs #tab-1 .card.right-pane .text-wrapper {
	display: inline-block;
	width: 75%;
}

.tabs #tab-1 .card.right-pane .card-icon {
	margin-right: 1rem;
}

.tabs #tab-2 img {
	display: block;
	margin: 0 auto 2rem auto;
}

.tabs #tab-2 .text-area {
	margin-top: 1.5rem;
}

.tabs #tab-2 h3 {
	margin-bottom: 0.75rem;
}

.tabs #tab-2 .icon-cards-area {
	margin-top: 2.5rem;
}

.tabs #tab-2 .icon-cards-area .card {
	width: 100%; /* for proper display in IE11 */
}

.tabs #tab-3 .icon-cards-area .card {
	width: 100%; /* for proper display in IE11 */
}

.tabs #tab-3 .text-area {
	margin-top: 0.75rem;
	margin-bottom: 4rem;
}

.tabs #tab-3 h3 {
	margin-bottom: 0.75rem;
}

.tabs #tab-3 img {
	margin: 0 auto 3rem auto;
}


/*********************/
/*     06. Video     */
/*********************/
.basic-1 {
	padding-top: 6.375rem;
  padding-bottom: 6.875rem;
  background: var(--dark-bg);
}

.basic-1 h2 {
	margin-bottom: 1.125rem;
	text-align: center;
}

.basic-1 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-1 .image-container img {
	border-radius: 0.375rem;
}

.basic-1 .video-wrapper {
	position: relative;
}

/* Video Play Button */
.basic-1 .video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	display: block;
	box-sizing: content-box;
	width: 2rem;
	height: 2.75rem;
	padding: 1.125rem 1.25rem 1.125rem 1.75rem;
	border-radius: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.basic-1 .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.75rem;
	height: 4.75rem;
	border-radius: 50%;
	background: #4eaaff;
	animation: pulse-border 1500ms ease-out infinite;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.basic-1 .video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.375rem;
	height: 4.375rem;
	border-radius: 50%;
	background: #4eaaff;
	transition: all 200ms;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.basic-1 .video-play-button span {
	position: relative;
	display: block;
	z-index: 3;
	top: 0.375rem;
	left: 0.25rem;
	width: 0;
	height: 0;
	border-left: 1.625rem solid #fff;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
/* end of video play button */


/*************************/
/*     07. Details 1     */
/*************************/
.basic-3 {
	padding-top: 3.5rem;
	padding-bottom: 7.25rem;
	background: var(--light-dark-bg);
}

.basic-3 .text-container {
	margin-bottom: 3.5rem;
}

.basic-3 h3 {
	margin-bottom: 1.125rem;
}

.basic-3 p{
  font-size: 16px;
}

.basic-3 .btn-solid-reg {
	margin-top: 0.5rem;
}


/**********************************/
/*     09. Details Lightboxes     */
/**********************************/
.lightbox-basic {
	position: relative;
	max-width: 46.875rem;
	margin: 2.5rem auto;
	padding: 3rem 1rem;
	border-radius: 0.25rem;
	background: var(--light-dark-bg);
	text-align: left;
}

.lightbox-basic img {
	display: block;
	margin-right: auto;
	margin-bottom: 3rem;
	margin-left: auto;
}

.lightbox-basic h3 {
	margin-bottom: 0.625rem;
}

.lightbox-basic hr {
	width: 3.75rem;
	height: 0.125rem;
	margin-top: 0.125rem;
	margin-bottom: 1.125rem;
	margin-left: 0;
	border: 0;
	background-color: var(--primary);
	text-align: left;
}

.lightbox-basic h4 {
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
}

.lightbox-basic table {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}

.lightbox-basic table tr {
	line-height: 1.75em;
}

.lightbox-basic table .icon-cell {
	width: 2rem;
	padding-right: 0.25rem;
	color: var(--primary);
	text-align: center;
}

.lightbox-basic a.mfp-close.as-button {
	position: relative;
	width: auto;
	height: auto;
	margin-left: 0.375rem;
	color: var(--primary);
	opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
	color: #f1f1f8;
}

.lightbox-basic button.mfp-close.x-button {
	position: absolute;
	top: -0.375rem;
	right: -0.375rem;
	width: 2.75rem;
	height: 2.75rem;
	color: #f1f1f8;
}


/***************************/
/*     10. Screenshots     */
/***************************/
.slider-2 {
	padding-top: 6.875rem;
	padding-bottom: 6.875rem;
	background: var(--light-dark-bg);
}

.slider-2 .slider-container {
	position: relative;
}

.slider-2 .swiper-container {
	position: static;
	width: 90%;
	text-align: center;
}

.slider-2 .swiper-button-prev,
.slider-2 .swiper-button-next {
	top: 50%;
	width: 1.125rem;
}

.slider-2 .swiper-button-prev:focus,
.slider-2 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-2 .swiper-button-prev {
	left: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.slider-2 .swiper-button-next {
	right: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}


/************************/
/*     11. Download     */
/************************/
.basic-4 {
	padding-top: 6.5rem;
	padding-bottom: 6.75rem;
  background: linear-gradient(to right, #0b2c48, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.basic-4 .text-container {
	margin-bottom: 3.5rem;
	text-align: center;
}

.basic-4 h2 {
	margin-bottom: 1.25rem;
}

.basic-4 .p-large {
	margin-bottom: 1.75rem;
}

.basic-4 .btn-solid-lg {
	margin-bottom: 1.25rem;
}

.basic-4 .release-notes{
  position: relative;
  left: 10px;
}

.basic-4 .supported-os-icon {
  position: relative;
  top: 5px;
  font-size: 30px;
  margin-left: 10px;
  color: rgba(255,255,255,0.5);
}

/************************/
/*     11. Extensions   */
/************************/
.basic-5 {
	padding-top: 6.5rem;
	padding-bottom: 6.75rem;
	background: var(--dark-bg);
}

.basic-5 .text-container {
	margin-bottom: 0;
	text-align: center;
}

.basic-5 h2 {
	margin-top: 3.5rem;
}

.basic-5 .p-large {
	margin-bottom: 1.75rem;
}

.basic-5 .btn-solid-lg {
	margin-bottom: 0;
}

.basic-5 .release-notes{
  position: relative;
  left: 10px;
}

.basic-5 .ext-learn-more{
  margin-left: 15px;
  color: var(--primary);
}

.basic-5 .ext-learn-more:hover{
  color: var(--primary-lighten);
}

/***********************/
/*     13. Contact     */
/***********************/
.form {
	padding-top: 6.25rem;
	padding-bottom: 5.625rem;
	background: url('../images/contact-background.jpg') center bottom no-repeat;
	background-size: cover;
}

.form h2 {
	margin-bottom: 1.125rem;
	text-align: center;
}

.form .list-unstyled {
	margin-bottom: 3.75rem;
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
}

.form .list-unstyled .fas,
.form .list-unstyled .fab {
	margin-right: 0.5rem;
	font-size: 0.875rem;
	color: var(--primary);
}

.form .list-unstyled .fa-phone {
	vertical-align: 3%;
}


/**********************/
/*     14. Footer     */
/**********************/
.footer {
	padding-top: 5rem;
	background: var(--super-dark-bg);
}

.footer .footer-col {
	margin-bottom: 2.25rem;
}

.footer h4 {
	margin-bottom: 1rem;
}

.footer .list-unstyled .fas {
	color: var(--primary);
	font-size: 0.5rem;
	line-height: 1.375rem;
}

.footer .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.footer .fa-stack {
	margin-bottom: 0.75rem;
	margin-right: 0.5rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
  color: #1b1a1e;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #f1f1f8;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #f1f1f8;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: var(--primary);
}


/*************************/
/*     15. Copyright     */
/*************************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 0.5rem;
	background: var(--super-dark-bg);
	text-align: center;
}

.copyright .p-small {
	color: #f1f1f8;
	opacity: 0.6;
}


/**********************************/
/*     16. Back To Top Button     */
/**********************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 0.75rem;
	bottom: 0.75rem;
	display: none;
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 1.875rem;
	background: var(--primary) url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 1.125rem 1.125rem;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: var(--primary-lighten);
}


/***************************/
/*     17. Extra Pages     */
/***************************/
.ex-header {
	padding-top: 8rem;
	padding-bottom: 5rem;
	background: linear-gradient(to bottom right, #2c1a7e, #5557db);
	text-align: center;
}

.ex-basic-1 {
	padding-top: 2rem;
	padding-bottom: 0.875rem;
	background: var(--light-dark-bg);
}

.ex-basic-1 .breadcrumbs {
	margin-bottom: 1.125rem;
}

.ex-basic-1 .breadcrumbs .fa {
	margin-right: 0.5rem;
	margin-left: 0.625rem;
}

.ex-basic-2 {
	padding-top: 4.75rem;
	padding-bottom: 4rem;
	background: var(--dark-bg);
}

.ex-basic-2 h3 {
	margin-bottom: 1rem;
}

.ex-basic-2 .text-container {
	margin-bottom: 3.625rem;
}

.ex-basic-2 .text-container.last {
	margin-bottom: 0;
}

.ex-basic-2 .list-unstyled .fas {
	color: var(--primary);
	font-size: 0.5rem;
	line-height: 1.375rem;
}

.ex-basic-2 .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.ex-basic-2 .btn-outline-reg {
	margin-top: 1.75rem;
}

.ex-basic-2 .image-container-large {
	margin-bottom: 4rem;
}

.ex-basic-2 .image-container-large img {
	border-radius: 0.25rem;
}

.ex-basic-2 .image-container-small img {
	border-radius: 0.25rem;
}

.ex-basic-2 .text-container.dark-bg {
	padding: 1.625rem 1.5rem 0.75rem 2rem;
	background-color: #f9fafc;
}


/*****************************/
/*     18. Media Queries     */
/*****************************/
/* Min-width width 768px */
@media (min-width: 768px) {

	/* General Styles */
	.p-heading {
		width: 85%;
		margin-right: auto;
		margin-left: auto;
	}

	h1 {
		font: 700 3.25rem/3.75rem "Montserrat", sans-serif;
	}
	/* end of general styles */


	/* Navigation */
	.navbar-custom {
		padding: 2.125rem 1.5rem 2.125rem 2rem;
		box-shadow: none;
		background: transparent;
	}

	.navbar-custom .navbar-brand.logo-text {
		color: #fff;
	}

	.navbar-custom .navbar-nav {
		margin-top: 0;
	}

	.navbar-custom .nav-item .nav-link {
		padding: 0.25rem 0.75rem 0.25rem 0.75rem;
		color: #fff;
	}

	.navbar-custom .nav-item .nav-link:hover,
	.navbar-custom .nav-item .nav-link.active {
		color: var(--primary);
	}

	.navbar-custom.top-nav-collapse {
        padding: 0.5rem 1.5rem 0.5rem 2rem;
		box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
		background-color: var(--navbar-color);
	}

	.navbar-custom.top-nav-collapse .navbar-brand.logo-text {
		color: #fff;
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link {
		color: #fff;
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
	.navbar-custom.top-nav-collapse .nav-item .nav-link.active {
		color: var(--primary);
	}

	.navbar-custom .dropdown-menu {
		box-shadow: 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.03);
	}

	.navbar-custom .dropdown-items-divide-hr {
		width: 84%;
	}

	.logo {
		height: 24px !important;
	}
	/* end of navigation */


	/* Testimonials */
	.slider-1 .swiper-button-prev {
		left: 1rem;
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}

	.slider-1 .swiper-button-next {
		right: 1rem;
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}
	/* end of testimonials */


	/* Features */
	.tabs .card .card-icon {
		width: 4.5rem;
		height: 4.5rem;
	}

	.tabs .card .card-icon .fas,
	.tabs .card .card-icon .far {
		font-size: 2.25rem;
		line-height: 4.5rem;
	}

	.tabs #tab-1 .card.left-pane .text-wrapper {
		width: 85%;
	}

	.tabs #tab-2 img {
		margin-bottom: 0;
	}

	.tabs #tab-2 .text-area {
		margin-top: 0;
	}

	.tabs #tab-2 .icon-cards-area .card {
		display: inline-block;
		width: 44%;
		margin-right: 2.5rem;
		vertical-align: top;
	}

	.tabs #tab-2 div.card:nth-child(2n+2) {
		margin-right: 0;
	}

	.tabs #tab-3 .text-area {
		margin-bottom: 0;
	}

	.tabs #tab-3 .icon-cards-area .card {
		display: inline-block;
		width: 44%;
		margin-right: 2.5rem;
		vertical-align: top;
	}

	.tabs #tab-3 div.card:nth-child(2n+2) {
		margin-right: 0;
	}

	.tabs #tab-3 img {
		margin-bottom: 0;
	}
	/* end of features */


	/* Details Lightboxes */
	.lightbox-basic {
		padding: 3rem 3rem;
	}
	/* end of details lightboxes */


	/* Screenshots */
	.slider-2 .swiper-button-prev {
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}

	.slider-2 .swiper-button-next {
		width: 1.375rem;
		background-size: 1.375rem 2.125rem;
	}
	/* end of screenshots */


	/* Contact */
	.form .list-unstyled li {
		display: inline-block;
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}

	.form .list-unstyled .address {
		display: block;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-header {
		padding-top: 11rem;
		padding-bottom: 9rem;
	}

	.ex-basic-2 .text-container.dark {
		padding: 2.5rem 3rem 2rem 3rem;
	}

	.ex-basic-2 .text-container.column {
		width: 90%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of extra pages */

}
/* end of min-width width 768px */


/* Min-width width 992px */
@media (min-width: 992px) {

	/* Navigation */
	.navbar-custom .social-icons {
		display: block;
		margin-left: 0.5rem;
	}

	.navbar-custom .fa-stack {
		margin-bottom: 0.1875rem;
		margin-left: 0.375rem;
		font-size: 0.75rem;
	}

	.navbar-custom .fa-stack-2x {
		color: var(--primary);
		transition: all 0.2s ease;
	}

	.navbar-custom .fa-stack-1x {
		color: #fff;
		transition: all 0.2s ease;
	}

	.navbar-custom .fa-stack:hover .fa-stack-2x {
		color: #fff;
	}

	.navbar-custom .fa-stack:hover .fa-stack-1x {
		color: var(--primary);
	}
	/* end of navigation */


	/* General Styles */
	.p-heading {
		width: 65%;
	}
	/* end of general styles */

	/* Features */
	.tabs .card-body {
		padding: 1rem 0 1.5rem 0;
	}

	.tabs #tab-1 .card.left-pane {
		text-align: right;
	}

	.tabs #tab-1 .card.left-pane .text-wrapper,
	.tabs #tab-1 .card.right-pane .text-wrapper {
		width: 68%;
	}

	.tabs #tab-1 .card.left-pane .card-icon {
		float: none;
		margin-right: 0;
		margin-left: 1rem;
	}

	.tabs #tab-1 img {
		margin-top: 0;
		margin-bottom: 0;
	}

	.tabs #tab-2 .icon-cards-area {
		margin-top: 2.25rem;
	}

	.tabs #tab-2 .icon-cards-area .card {
		width: 45%;
		margin-right: 3.5rem;
	}

	.tabs #tab-2 .icon-cards-area .card p {
		margin-bottom: 0.5rem;
	}

	.tabs #tab-3 .icon-cards-area .card {
		width: 45%;
		margin-right: 3.5rem;
	}

	.tabs #tab-3 .icon-cards-area .card p {
		margin-bottom: 0.5rem;
	}
	/* end of features */


	/* Video */
	.basic-1 .image-container {
		max-width: 53.125rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of video */


	/* Details 1 */
	.basic-2 img {
		margin-bottom: 0;
	}

	.basic-2 .text-container {
		margin-top: 2.625rem;
	}
	/* end of details 1 */


	/* Details 2 */
	.basic-3 .text-container {
		margin-top: 2.5rem;
		margin-bottom: 0;
	}
	/* end of details 2 */


	/* Details Lightboxes */
	.lightbox-basic img {
		margin-bottom: 0;
		margin-left: 0;
	}

	.lightbox-basic h3 {
		margin-top: 0.25rem;
	}
	/* end of details lightboxes */


	/* Screenshots */
	.slider-2 .swiper-container {
		width: 92%;
	}
	/* end of screenshots */


	/* Download */
  .basic-4 {
		padding-top: 6.75rem;
	}

  .basic-5 {
		padding-top: 6.75rem;
	}

  .basic-4 .text-container {
		margin-top: 2rem;
		margin-bottom: 0;
		text-align: left;
	}

  .basic-5 .text-container {
		margin-top: 0;
		margin-bottom: 0;
		text-align: left;
  }

  .basic-5 .text-container h2 {
		margin-top: 0;
  }


	/* end of download */

	/* Extra Pages */
	.ex-header h1 {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 {
		padding-bottom: 5rem;
	}

	.ex-basic-2 .text-container.column {
		margin-bottom: 0;
	}
	/* end of extra pages */
}
/* end of min-width width 992px */


/* Min-width width 1200px */
@media (min-width: 1200px) {

	/* Navigation */
	.navbar-custom {
		padding: 2.125rem 5rem 2.125rem 5rem;
	}

	.navbar-custom.top-nav-collapse {
        padding: 0.5rem 5rem 0.5rem 5rem;
	}
	/* end of navigation */


	/* General Styles */
	.p-heading {
		width: 44%;
	}
	/* end of general styles */

	/* Features */
	.tabs {
		padding-bottom: 6.5rem;
	}

	.tabs #tab-1 .card.first {
		margin-top: 4.25rem;
	}

	.tabs #tab-1 .card {
		margin-bottom: 0.75rem;
	}

	.tabs #tab-1 .card.left-pane .text-wrapper,
	.tabs #tab-1 .card.right-pane .text-wrapper {
		width: 73%;
	}

	.tabs #tab-1 img {
		margin-top: 0;
	}

	.tabs #tab-2 .container {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}

	.tabs #tab-2 .text-area {
		margin-top: 1.5rem;
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.tabs #tab-2 .icon-cards-area {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.tabs #tab-2 .icon-cards-area .card {
		margin-right: 3.875rem;
	}

	.tabs #tab-3 .container {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}

	.tabs #tab-3 .icon-cards-area {
		margin-top: 2rem;
		margin-left: 1rem;
	}

	.tabs #tab-3 .icon-cards-area .card {
		margin-right: 3.875rem;
	}

	.tabs #tab-3 .text-area {
		margin-right: 1.5rem;
		margin-left: 1rem;
	}
	/* end of features */


	/* Details 1 */
	.basic-2 .text-container {
		margin-top: 4.5rem;
		margin-left: 4rem;
		margin-right: 1.5rem;
	}
	/* end of details 1 */


	/* Details 2 */
	.basic-3 .text-container {
		margin-top: 4.5rem;
		margin-right: 3.5rem;
		margin-left: 2rem;
	}
	/* end of details 2 */


	/* Download */
  .basic-4 .text-container {
		margin-top: 3rem;
	}

  .basic-5 .text-container {
		margin-top: 0rem;
  }
  
  .basic-5 .text-container h2 {
		margin-top: 2rem;
	}

  .basic-4 .image-container {
		margin-left: 3rem;
  }
  
  .basic-5 .image-container {
		margin-right: 3rem;
	}
	/* end of download */


	/* Footer */
	.footer .footer-col {
		width: 90%;
	}

	.footer .footer-col.middle {
		margin-right: auto;
		margin-left: auto;
	}

	.footer .footer-col.last {
		margin-right: 0;
		margin-left: auto;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-header h1 {
		width: 60%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 .form-container {
		margin-left: 1.75rem;
	}

	.ex-basic-2 .image-container-small {
		margin-left: 1.75rem;
	}
	/* end of extra pages */
}
/* end of min-width width 1200px */

/*************************/
/*  19. Lens AppIQ Page  */
/*************************/

/* from apps-cloud page */
@media(min-width: 1200px) {
	.apps-description {
		width: 65%;
	}
}
.teal-section {
	background: transparent linear-gradient(237deg, #45BFC2 0%, #003848 98%, #409BC4 100%) 0% 0% no-repeat padding-box;
	padding-top: 6.375rem;
    /* padding-bottom: 6.375rem; */
	overflow: hidden;
	background-size: 120%;
	background-position-x: -30px;
}
.teal-section h2 {
	padding-bottom: 0.75em;
}
.teal-section p {
	padding-bottom: 0.5em;
}
.teal-section img {
	position: relative;
	width: 500px;
	right: -10%;
	bottom: 0;
	box-shadow: 20px 1px 20px rgba(0,0,0,.16078);
}
@media(max-width: 992px) {
	.teal-section img {
		margin-top: 50px;
	}
}
@media(max-width: 768px) {
	.teal-section img {
		right: 0;
		width: 100%;
	}
}
.feature .feature-image .box .background-apps-cloud{
	position: absolute;
	border-radius: 24px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../images/teal-gradient-spiral.png);
	background-size: cover;
	background-position: center center;
	-webkit-animation: hue-rotate-apps-cloud 4s ease-in-out infinite;
	animation: hue-rotate-apps-cloud 4s ease-in-out infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

.background-apps-cloud-cover {
	position: absolute;
	border-radius: 24px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: gray;
	opacity: 30%;
	background-size: cover;
	background-position: center center;
}

@media(min-width: 1200px) {
	.p-heading-apps-cloud {
		width: 50%;
	}
}

.apps-cloud-discover {
	.screenshot-catalog {
		box-shadow: none;
		left: 7vw;
		height: 80%;
	}
}

.apps-cloud-discover ul li {
	color: #ffffffbf;
	margin-bottom: 20px;
}

.apps-cloud-discover ul li::marker {
	color: #3D90CE;
}

.apps-cloud-discover ul {
	list-style-type: square;
	padding-inline-start: 17px;
}

.apps-cloud-policies {
	.screenshot-hotbar {
		box-shadow: none;
		top: 15%;
		height: 85%;
		right: 8vw;
	}
}

.apps-cloud-policies ul li {
	color: #ffffffbf;
	margin-bottom: 20px;
}

.apps-cloud-policies ul li::marker {
	color: #3D90CE;
}

.apps-cloud-policies ul {
	list-style-type: square;
	padding-inline-start: 17px;
}

.apps-cloud-deploy {
	.screenshot-stats-details {
		box-shadow: none;
		left: 8vw;
		top: 15%;
		width: 90%;
	}
}

.apps-cloud-deploy ul li {
	color: #ffffffbf;
	margin-bottom: 20px;
}

.apps-cloud-deploy ul li::marker {
	color: #3D90CE;
}

.apps-cloud-deploy ul {
	list-style-type: square;
	padding-inline-start: 17px;
}

@media(max-width: 768px) {
	.screenshot-stats-details {
		width: 125% !important;
	}
}

.apps-cloud-designed {
	background: var(--dark-bg);
}

.apps-cloud-designed .p-heading {
	width: 70%;
}

@media(max-width: 768px) {
	.apps-cloud-designed .p-heading {
		width: 100%;
	}
}

@keyframes hue-rotate-apps-cloud{
	from{
		-webkit-filter:hue-rotate(-8deg);
		-moz-filter:hue-rotate(-8deg);
		-ms-filter:hue-rotate(-8deg);
		-webkit-filter:hue-rotate(-8deg);
		filter:hue-rotate(-8deg);
	}to{
		-webkit-filter:hue-rotate(8deg);
		-moz-filter:hue-rotate(8deg);
		-ms-filter:hue-rotate(8deg);
		-webkit-filter:hue-rotate(8deg);
		filter:hue-rotate(8deg);
	}
}

.announcement-banner {
	background-color: #337bb8;
	height: 51px;
	position: fixed;
	z-index: 1031;
	width: 100%;
	justify-content: center;
}
.announcement-banner a {
	text-decoration: underline;
	
}
.announcement-banner a:hover {
	cursor: pointer;
}
.announcement-banner p {
	font-weight: 600;
}

@media(max-width: 768px) {
	.navbar-custom {
		top: 51px;
	}
}

