#load {
    width:100%;
    height:100%;
    position:fixed;
    z-index:9999;
    background: #fff;
	background-image: url('/assets/images/brand-items/loader.gif');
	background-size: 50px;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
}

body {
	margin: 0;
}

html {
  scroll-behavior: smooth;
}

.container {
	padding: 2rem 4rem;
}

#green {
	color: #48C1B4;
}

#purple {
	color: #4500A6;
}

.bg-darkpurple {
	background-color: #4500A6;
}

.bg-babyblue {
	background: #D7DEFF;
}

.bg-green {
	background: #73D4C7;
}

.bg-aqua {
	background: #CBFFF9;
}

button {
	padding: 0.75rem 1.8rem;
	background: none;
	border: none;
	border-radius: 2px;
	font-weight: 500;
	margin: 0 1rem;
}
	button:hover {
		cursor: pointer;
	}
	button:focus {
		outline: none;
	}
	.green-no-line {
		color: #48C1B4;
		padding: 0.75rem 1rem;
	}
	.green-no-line:hover {
		color: #45ABB5;
	}
	.green {
		background: #48C1B4;
		color: #fff;
		border: 2px solid #48C1B4;
	}
	.green:hover {
		background: #45ABB5;
		color: #fff;
		border: 2px solid #45ABB5;
	}
	.baby-blue {
		background: #455ED4;
		color: #fff;
		border: 2px solid #455ED4;
	}
	.baby-blue:hover {
		background: #5E73FF;
		color: #fff;
		border: 2px solid #5E73FF;
	}
	.baby-blue-no-line {
		color: #455ED4;
		padding: 0.75rem 1rem;
	}
	.baby-blue-no-line:hover {
		color: #5E73FF;
	}
	.baby-blue-line {
		outline: 2px solid #5E73FF;
		color: #5E73FF;
	}
	.baby-blue-line:hover {
		outline: 3px solid #5E73FF;
		outline-offset: -1px;
		color: #5E73FF;
	}
	.aqua {
		background: #45ABB5;
		color: #fff;
		border: 2px solid #45ABB5;
	}
	.purple {
		background: #4500A6;
		color: #fff;
		border: 2px solid #4500A6;
	}
	.purple:hover {
		background: #26055C;
		color: #fff;
		border: 2px solid #26055C;
	}
	.purple-line {
		outline: 2px solid #4500A6;
		color: #4500A6;
	}
	.purple-line:hover {
		outline: 3px solid #4500A6;
		outline-offset: -1px;
		color: #4500A6;
	}
	.green-line {
		outline: 2px solid #48C1B4;
		color: #48C1B4;
	}
	.green-line:hover {
		outline: 3px solid #48C1B4;
		outline-offset: -1px;
		color: #48C1B4;
	}
	.white-line {
		border: 2px solid #fff;
		color: #fff;
	}
	.white-line:hover {
		border: 2px solid #fff;
		color: #000;
		background: #fff;
	}
	.grey-line {
		outline: 2px solid #CCCCCC;
		color: #000;
	}
	.grey-line:hover {
		outline: 3px solid #CCCCCC;
		outline-offset: -1px;
		color: #000;
	}
	.black-line {
		outline: 2px solid #000;
		color: #000;
	}
	.black-line:hover {
		outline: 3px solid #000;
		outline-offset: -1px;
		color: #000;
	}
	.no-line-purple {
		font-weight: 600;
		border: none;
		color: #4500A6;
		padding-left: 0;
	}
	.basic-black {
		font-weight: 600;
		border: none;
		color: #000;
		padding-left: 0 !important;
		margin: 0 !important;
	}
	.basic-black:hover {
		color: #48C1B4;
	}

.navbar {
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
	display: initial;
}
	#navbar-white {
		background: #fff;
	}
	#navbar-transparent {
		background: transparent;
	}
	#navbar-transparent .nav-item a {
		color: #fff;
		padding-top: 1.8rem;
		padding-bottom: 1.6rem;
	}
	#navbar-white .nav-item a {
		color: #000;
		padding-top: 1.8rem;
		padding-bottom: 1.6rem;
	}
	#navbar-transparent #nav-line {
		stroke:  white;
	}
	.mobile-nav-bg #nav-line {
		stroke:  black !important;
	}
	.mobile-nav-bg path {
		fill:  black !important;
	}
	#navbar-white #nav-line {
		stroke:  black;
	}
	#navbar-transparent path {
		fill:  white;
	}
	#navbar-white path {
		fill: black;
	}
	.navbar .container {
		padding: 0;
	}
	.nav-item {
		align-self: center;
		box-sizing:border-box;
	}
	.navbar .nav-item .active {
		font-weight: 600;
	}
	.navbar .nav-item .dropdown-menu .active p {
		font-weight: 400;
	}
	.navbar button {
		padding: 0.5rem 1rem;
		font-size: 1rem;
	}
	.navbar a {
		font-size: 1rem;
	}
	.scroll-up .navbar {
		position: fixed;
		background: #fff;
		-webkit-animation: appear 0.5s; /* Safari 4+ */
		-moz-animation:    appear 0.5s; /* Fx 5+ */
		-o-animation:      appear 0.5s; /* Opera 12+ */
		animation:         appear 0.5s; /* IE 10+, Fx 29+ */
		z-index: 9999;
	}
	@keyframes appear {
	  0%   { transform: translate3d(0, -100%, 0) }
	  100% { transform: translate3d(0, 0, 0) }
	}
	.scroll-up #navbar-transparent {
		background: #fff !important;
	}
	.scroll-up #navbar-transparent path {
		fill:  black;
	}
	.scroll-up #navbar-transparent a {
		color:  black;
	}

#hero {
	text-align: center;
	display: grid;
	align-content: center;
	background: #100520;
	background-image: url("/assets/images/hero-background.webp");
	height: 100vh;
    min-height: 810px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
	#hero h1 {
		font-size: 3.9rem;
		color: #fff;
		line-height: 1.2;
		letter-spacing: 8px;
		text-transform: uppercase;
		font-weight: 700;
		margin-top: 0;
	}
	#hero h2 {
		font-size: 1.4rem;
		line-height: 1.5;
		color: #FFFFFF;
		font-weight: 400;
	}
	#hero .cta-section {
		margin-top: 2%;
	}
	#hero #right-play-icon {
		padding-right: 0.4rem;
		padding-bottom: 2px;
	}
	#hero .featured-section {
		position: absolute;
	    bottom: 3%;
	}
	#hero .featured-section img {
		margin: 0 1%;
		opacity: 0.5;
	}

#turn-device-into-workstation {
	background: #100520;
	color: #fff;
	min-height: 500px;
}
	#turn-device-into-workstation .container {
		padding: 0;
	}
	#turn-device-into-workstation .row {
	    align-items: center;
	    justify-content: space-between;
	    min-height: 500px;
	}
	#turn-device-video {
		right: 0;
		z-index: 0;
	}
	#turn-device-video video {
		width: 100%;
	}
	#turn-device-text {
		position: absolute;
		width: 45%;
		padding: 0 5%;
		z-index: 1;
		margin-bottom: 2rem;
	}
	#turn-device-into-workstation h1 {
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 1.4;
		margin-bottom: 2.5rem;
	}
	#turn-device-into-workstation p {
		font-size: 1.2rem;
		font-weight: 400;
		line-height: 1.8;
	}
	#turn-device-into-workstation img {
		padding: 5%;
	}

#product-features {
	text-align: center;
	padding: 4rem 0;
}
	#product-features h1 {
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 2rem;
		color: #4500A6;
	}
	#product-features h2 {
		font-size: 1.2rem;
		font-weight: 400;
		line-height: 1.8;
		padding: 0 23%;
	}
	#product-tips {
		position: absolute;
		right: 10%;
		top: 3%;
	}
	#product-features video {
		width: 74%;
		margin: 0 13%;
		border: 15px solid #F3F2FF;
		border-top: 40px solid #F3F2FF;
		border-radius: 5px;
	}
	#product-video {
		display: none;
	}
	#product-features #product-video-cover {
		width: 74%;
		margin: 0 13%;
		border: 15px solid #F3F2FF;
		border-top: 40px solid #F3F2FF;
		border-radius: 5px;
	}
	#product-features #teams-dashboard {
		width: 74%;
		margin: 0 13%;
		border: 15px solid #F3F2FF;
		border-top: 40px solid #F3F2FF;
		border-radius: 5px;
	}
	#browser-items {
		list-style: none;
		display: flex;
		margin-left: 12%;
		position: absolute;
		margin-top: 1rem;
		z-index: 100;
	}
	.browser-icon {
		border-radius: 50%;
		height: 10px;
		width: 10px;
		margin: 0 3px;
	}
	#product-tips li {
		background: #390D81;
		box-shadow: 0px 6.51121px 14.0241px rgba(0, 0, 0, 0.115), 0px 3.45805px 7.44811px rgba(0, 0, 0, 0.0928953), 0px 1.43897px 3.09933px rgba(0, 0, 0, 0.0646635);
		border-radius: 5px;
		margin: 10px 0px;
		list-style: none;
	}
	#product-tips li img {
		padding: 0.8rem 1.3rem;
	}
	#product-features #seperator {
		margin: 4% 0;
	}

#cta-area-product .container {
	padding: 2rem 10%;
}
	#cta-area-product .row {
		align-items: center;
	}
	#cta-area-product h1 {
		font-weight: 700;
		font-size: 2.1rem;
		line-height: 1.4;
		color: #3E0496;
		margin-top: 0;
	}
	#cta-area-product p {
		font-weight: normal;
		font-size: 1rem;
		line-height: 1.8;
	}
	#cta-area-product #cta-text {
		padding-right: 5%;
	}
	#cta-area-product button {
		margin: 0;
	}

#feature-details {
    padding: 0 4rem;
}
	#feature-details .container {
		padding: 0;
	}
	#feature-details .col-lg-5 {
		margin: auto;
	}
	.feature-1 {
		background: #270763;
	}
	.feature-2 {
		background: #0A1D19;
	}
	.feature-3 {
		background: #05135A;
	}
	.feature-4 {
		background: #231246;
	}
	.feature-5 {
		background: #231246;
	}
	#feature-details h1 {
		margin-top: 0;
		font-weight: 700;
		font-size: 2rem;
		line-height: 2.8rem;
		color: #FFFFFF;
		width: 100%;
	}
	#feature-details h2 {
		font-size: 1.1rem;
		line-height: 3rem;
		letter-spacing: 5px;
		padding-top: 8%;
		color: #FFFFFF;
		text-transform: uppercase;
	}
	#feature-details p {
	    font-size: 1.1rem;
	    line-height: 2;
	    color: #FFFFFF;
	    font-weight: 300;
	    padding-right: 4rem;
	}
	#feature-details button {
		margin: 0;
		margin-top: 5%;
	}
	#feature-details-img {
		display: flex;
	}
	#feature-details-img video {
		width: 100%;
	}
	#feature-details-img img {
		width: 100%;
		vertical-align: middle;
		margin: auto;
	}
	#feature-details .feature-details-button {
		display: flex;
		width: 100%;
		padding-right: calc(2% + 4rem);
	}
	#line-element {
		width: 100%;
		background: #fff;
		height: 2px;
		margin: 0 !important;
	}

#community-cta {
	background-size: cover;
	padding: 0;
	min-height: 550px;
	text-align: center;
}
	#community-cta #community-visual {
		width: 90%;
		position: absolute;
		left: 0;
		margin-top: 0;
	}
	#community-cta h1 {
		font-size: 2.2rem;
		line-height: 1.4;
		color: #4500A6;
		padding: 5% 10%;
	}
	#community-cta b, #community-cta span {
	  display: block;
	}
	#tweet-community {
		background: rgba(255, 255, 255, 0.3);
		backdrop-filter: blur(6.60142px);
		border-radius: 6.60142px;
		margin-top: 2rem;
		margin-left: 0;
		padding: 2rem 3rem;
		display: grid;
		grid-auto-flow: column;
		align-items: center;
		justify-items: center;
	}
	#tweet-community p {
		font-weight: 500;
		font-size: 1.2rem;
		line-height: 1.8;
		text-align: left;
		padding-right: 2rem;
	}
	#tweet-content {
		display: block;
	}
	p#tweet-owner {
		font-size: 1rem;
		font-weight:  bold;
		line-height: 1.4;
	}
	p#tweet-owner span {
		font-weight: 400;
	}
	#tweet-community img {
		height: 85px;
		width: 85px;
		border-radius: 50%;
		filter: drop-shadow(0px 18.55px 55.65px rgba(0, 0, 0, 0.3));
	}
	#twitter-handle {
		display: flex;
	}
	#twitter-handle img {
		border-radius: 0;
	    width: 3.5rem;
	    padding-right: 1rem;
	    padding-bottom: 0.6rem;
	}

#users {
	background: #fff;
	padding: 2rem 0;
}
	#users button {
		margin: 1rem 0 2rem;
	}
	#users h1 {
		font-weight: bold;
		font-size: 2.2rem;
		line-height: initial;
		text-align: center;
		color: #26055C;
		margin-bottom: 3.6rem;
		margin-top: 0;
	}
	#testimonial-contents {
		contain: content;
    	width: 100%;
    	overflow: auto;
		scroll-behavior: smooth;
	}
	#testimonial-contents::-webkit-scrollbar {
    	background: transparent;
	}
	#swipe-right-area {
  		width: 200%;
  		display: flex;
		scroll-behavior: smooth;
	}
	#swipe-right-area::-webkit-scrollbar {
    	background: transparent;
	}
	#testimonial {
		margin: 0 2%;
	}
	#testimonial-img img {
		width: 100%;
	}
	#testimonial-quote {
		min-height: 13rem;
	}
	#testimonial-quote p {
		font-size: 1rem;
		line-height: 2;
		color: #000000;
		margin: 0;
	}
	#testimonial-id h2 {
		font-weight: 600;
		font-size: 1.2rem;
		line-height: 2;
		color: #000000;
		margin: 2rem 0px 1rem;
	}
	#testimonial-id h2 span {
		font-weight: 400;
	}
	#testimonial-apps img {
		padding-right: 1rem;
		filter: grayscale(100%);
		max-width: 30%;
	}

#technical-details {
	background: #26055C;
	padding-top: 2rem;
}
	#technical-details h1 {
		font-weight: bold;
		font-size: 2.1rem;
		line-height: 1.2;
		color: #FFFFFF;
		margin-bottom: 2rem;
	}
	#technical-details .col-lg-58 {
	    flex: 0 0 48%;
	    max-width: 48%;
	}
	#technical-details .col-lg-48 {
		flex: 0 0 39.66667%;
	    max-width: 39.66667%;
	}
	#technical-details .col-lg-68 {
		flex: 0 0 56.33333%;
	    max-width: 56.33333%;
	}
	#technical-details .col-lg-78 {
	    flex: 0 0 64.66667%;
	    max-width: 64.66667%;
	}
	#technical-value {
		border: 1px solid #AA67FF;
		box-sizing: border-box;
		border-radius: 10px;
		min-height: 300px;
		margin-right: 2%;
		margin-bottom: 2rem;
		background: linear-gradient(103.69deg, rgba(38, 5, 92, 0) 0.69%, rgba(103, 141, 255, 0.54) 100%);
	}
	.technical-text-area {
		padding: 1rem 10% 0 2rem
	}
	#text-area a {
		color: #4500A6;
	}
	.technical-text-area h2 {
		font-weight: 600;
		font-size: 1.5rem;
		line-height: 1.6;
		color: #FFFFFF;
	}
	.technical-text-area p {
		font-size: 1rem;
		line-height: 1.8;
		color: #67BFEB;
		padding-right: 25%;
	}
	.technical-image-area img {
	    position: absolute;
	    right: 2%;
	    bottom: 1rem;
	    opacity: 0.8;
	    max-width: 100%;
	    max-height: 80%;
	}
	.technical-image-area picture {
	    right: 2%;
	    bottom: 1rem;
	    opacity: 0.8;
	    max-width: 100%;
	    max-height: 80%;
	}

#vagon-for-all {
	padding: 2rem 0 4rem;
}
	#vagon-for-all h1 {
		font-weight: bold;
		font-size: 2rem;
		line-height: 2;
		text-align: center;
		margin-bottom: 3rem;
	}
	#vagon-for-all h2 {
		font-weight: 600;
		font-size: 1.6rem;
		line-height: 1.2;
		margin-top: 0.5rem;
	}
	#vagon-for-all p {
		font-weight: 400;
		font-size: 1rem;
		line-height: 2;
		padding-bottom: 0.5rem;
		padding-right: 1.5rem;
		min-height: 150px;
	}
	#vagon-for-all button {
		margin-left: 0;
		margin-bottom: 1rem;
	}
	#vagon-for-all-content {
		width: 80%;
		margin: 0 10%;
		box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.07);
		contain: content;
	}
	#vagon-for-all-text {
		padding: 2rem 2rem 1rem 2rem;
		min-height: 350px;
	}
	.vagon-for-all-image-area {
		display: flex;
		align-items: center;
		justify-content: center
	}
	.vagon-for-all-image-area img {
		width: 100%;
		max-height: 300px;
		object-fit: cover;
	}
	.vagon-for-all-image-area picture {
		width: 100%;
		max-height: 300px;
		object-fit: cover;
	}


#security-footer {
	background: #000;
	padding: 2rem 0;
}
	#security-footer button {
		margin-left: 0;
	}
	#security-area {
		background: #fff;
		width: 94%;
		margin: 2rem 3%;
		border-radius: 5px;
		display: flex;
	    align-items: center;
	    justify-content: center;
	    flex-direction: row;
	    position: relative;
	    z-index: 1;
	}
	#security-area-image {
	}
	#security-area img {
		border-radius: 5px 0 0 5px;
		width: 100%;
	}
	#security-area-text {
		padding: 2rem 5%;
	}
	#security-area-text h1 {
		font-weight: 600;
		font-size: 2.5rem;
		line-height: 1.2;
		width: 100%;
		margin: 0;
	}
	#security-area-text p {
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.8;
	}
	#footer-cta-area {
		background: #000;
		text-align: center;
		padding: 6rem 0 2rem;
	}
	.hanging {
		position: absolute;
		z-index: 0;
	}
	#footer-cta-area .left-hanging-element {
		left: 0;
		margin-top: -23rem;
	}
	#footer-cta-area .right-hanging-element {
		right: 0;
		margin-top: -12rem;
	}
	#footer-cta-area-text {
		color: #fff;
	}
	#footer-cta-area-text h1 {
		font-size: 2.8rem;
		line-height: 1.4;
	}
	#footer-cta-area-text button {
		margin: 1rem 0;
	}
	#trial {
		font-size: 1rem;
	    margin-bottom: 0;
	    color: #fff;
	}

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

#blog {
	background: #000;
}
	#blog h1 {
		font-size: 2rem;
		line-height: 1.6;
		color: #5E73FF;
		margin-bottom: 3.5rem;
	}
	.blog-post {
		margin-top: 1rem;
	    border-radius: 0.5rem;
	    width: 95%;
	}
	.blog-content {
	    margin: 0 5%;
	}
	.blog-content img {
	    width: 100%;
	    border-radius: 3px;
	    opacity: 0.8;
	    -webkit-transition: all 300ms;
	    transition: all 300ms;
	}
	.blog-text {
	    padding: 1rem;
	    color: #fff;
	}
	#blog h2 {
		font-size: 1rem;
		line-height: 1.6;
		color: #FFFFFF;
		font-weight: 400;
		margin-bottom: 1.5rem;
		padding: 0 2% 0 1rem;
	}
	#blog h3 {
		font-size: 0.95rem;
		line-height: 1.6;
		letter-spacing: 0.015em;
		color: #5E73FF;
		font-weight: 400;
		padding: 0 2% 0 1rem;
	}
	#blog p {
		font-size: 0.95rem;
		line-height: 1;
		letter-spacing: 0.015em;
		color: #FFFFFF;
		font-weight: 400;
		padding: 0 2% 0 1rem;
	}

#footer {
	background: #000;
	color: #fff;
	list-style: none;
	padding: 2rem 0;
}
	#footer .container {
		padding: 2rem;
	}
	#footer .row {
		justify-content: space-between;
	}
	#footer #logo {
		height: 25px;
		margin-bottom: 1rem;
	}
	#footer-information {
		width: 16%;
	}
	#footer-information p {
		font-size: 0.85rem;
		line-height: 1.5;
		letter-spacing: 0.015em;
	}
	#footer-information li a {
		color: #fff;
		font-size: 0.85rem;
		line-height: 1.5;
		letter-spacing: 0.015em;
		margin-top: 2rem;
	}
	#footer-information li {
		margin-top: 2rem;
	}
	#footer #social {
		height: 1.2rem;
		padding: 0 5px;
		margin-top: 1rem;
	}
	.footer-link .footer-header-row {
		font-weight: 600;
		font-size: 0.9rem;
		line-height: 1.6;
		letter-spacing: 0.015em;
		color: #47C2B5;
		margin-top: 2rem;
	}
	.footer-link li a {
		font-weight: 400;
		font-size: 0.8rem;
		line-height: 2;
		letter-spacing: 0.015em;
		color: #FFFFFF;
	}

#page-header {
	padding: 9rem 0 4rem;
}
	#page-header h1 {
		font-weight: 400;
		font-size: 3.5rem;
		line-height: 1.2;
		text-align: center;
		margin: 0;
		margin-bottom: 2rem;
	}
	#page-header h2 {
		font-size: 0.9rem;
		line-height: 1.6;
		letter-spacing: 0.13em;
		color: #000000;
		text-transform: uppercase;
		font-weight: 400;
	}

.contact-us {
	background: #fff !important;
}

.contact-us h1 {
	color: #000 !important;
}

.contact-us p {
	color: #000 !important;
}

#features-explain {
	background: #1F0B3F;
	padding: 2rem 0 2rem;
}
	#features-explain #text-area {
		padding-right: 10%;
		margin: auto;
	}
	#features-explain h1 {
		font-weight: 600;
		font-size: 3rem;
		line-height: 1.4;
		color: #FFFFFF;
		margin-bottom: 2rem;
	}
	#features-explain p {
		font-size: 1rem;
		line-height: 2;
		color: #FFFFFF;
	}
	#features-explain img {
		width: 100%;
	}
	#benchmark-tips {
		margin-top: 3rem;
	}
	#benchmark-info {
		width: 18%;
		margin: 0 1%;
		background: #390D81;
		box-shadow: 0px 52px 112px rgba(0, 0, 0, 0.23), 0px 21.7244px 46.7909px rgba(0, 0, 0, 0.165337), 0px 11.6149px 25.0167px rgba(0, 0, 0, 0.137105), 0px 6.51121px 14.0241px rgba(0, 0, 0, 0.115), 0px 3.45805px 7.44811px rgba(0, 0, 0, 0.0928953), 0px 1.43897px 3.09933px rgba(0, 0, 0, 0.0646635);
		border-radius: 5px;
		display: flex;
		color: #fff;
		padding: 0.6rem 0;
		opacity: 0.6;
	}
	#benchmark-info img {
		max-width: 40px;
    	max-height: 40px;
    	inline-size: fit-content;
		margin: auto 1rem;
	}

	#benchmark-info h2 {
		font-size: 1rem;
		font-weight: 600;
		margin: 0;
		line-height: 1em;
	}

	#benchmark-info h2 span {
		font-size: 2.5rem;
		font-weight: 600;
		line-height: 1em;
	}

	#benchmark-info p {
		font-size: 1rem;
		margin: 0;
		line-height: 1em;
	}

#features-detail .row {
	display: flex;
	margin-top: 8rem;
}
	#features-detail .row:first-child {
		margin-top: 4rem;
	}
	#features-detail .row:last-child {
		margin-bottom: 6rem;
	}
	#features-detail .col-lg-6 {
		text-align: center;
	}
	#features-detail #text-area {
		padding: 0 6%;
		text-align: left;
		margin:  auto;
	}
	#three-column #text-area {
		padding: 0 1%;
	}
	#features-detail h1 {
		font-size: 2.2rem;
		color: #45ABB5;
		font-weight: 600;
		line-height: 1.6;
		margin-top: 0;
	}
	#features-detail p {
		font-size: 1.1rem;
		line-height: 2;
	}
	#features-detail img, video {
		max-width: 100%;
	}

#user-quote {
	background: #D7DEFF;
}
	#user-quote .container {
		padding: 4rem;
		padding-bottom: 8rem;
	}
	#user-quote p {
		font-size: 2.8rem;
		line-height: 1.4;
		color: #4500A6;
		padding-right: 10%;
	}
	#user-quote img {
		position: absolute;
		bottom: 0;
		width: 100%;
	}
	#user-quote #text-area {
		display: flex;
	}

#friends-title {
	position: absolute;
	bottom: 12px;
	width: 100%;
	left: 14px;
}

#friends-title p {
	font-size: 1.3rem;
	padding-bottom: 2px;
	padding: 0;
	margin: 0;
	font-weight: 500;
}

#friends-title #title {
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.2em;
}

#features-footer {
	background: #000;
	padding: 2rem 0;
}
	#features-footer button {
		margin-left: 0;
		margin-top: 2rem;
	}
	#additional-features-area {
		background: #fff;
		width: 94%;
		padding: 2rem 0;
		margin: 2rem 3%;
		border-radius: 5px;
		display: flex;
	    align-items: center;
	    justify-content: center;
	    flex-direction: row;
	    position: relative;
	    z-index: 1;
	}
	#additional-features-area img {
		margin-right: 0;
		width: 100%;
	}
	#additional-features-area-text {
		padding: 0 2rem;
		width: 110%;
	}
	#additional-features-area-text h1 {
		font-weight: 600;
		font-size: 2.5rem;
		line-height: 1.2;
		margin: 0;
	}
	#additional-features-area-text p {
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.8;
	}

#pricing-header {
	display: inline-flex;
}
	#pricing-header-element img {
		position: relative;
	    margin-top: -1.5em;
	}
	#page-with-text h1 {
	    font-weight: 400;
	    font-size: 3.5rem;
	    line-height: 1.2;
	    text-align: center;
	    margin: 0;
    	margin-bottom: 2rem;
	}
	#pricing-header h3 {
		margin-top: 0;
		font-size: 3.25rem;
		line-height: 1.4;
		margin-bottom: 0;
	}
	#pricing-header #seperator {
		margin: 0 1rem;
	}
	#page-with-text p {
		font-size: 1.2rem;
		line-height: 1.6;
		color: #000000;
		padding: 0 25%;
		margin-top: 2rem;
	}
	#page-with-text span {
		color: #828282
	}
	#pricing-faq {
	    background: #D7DEFF;
	    padding: 4rem;
	    margin-top: 0px !important;
	}
	#pricing-questions {
	    padding: 0 5%;
	}
	#pricing-faq h3 {
	    font-weight: 500;
	    font-size: 1.4rem;
	    line-height: 2;
	    color: #5E73FF;
	    margin-top: 1rem;
	}
	#pricing-faq p {
	    font-weight: 300;
	    font-size: 1.1rem;
	    line-height: 2;
	    color: #000000;
	    margin: 0;
	}
	#price-per-usage .container {
		padding: 2rem 0;
	}
		#price-per-usage #performance {
			border: solid #E2E2E2 1px;
		    border-radius: 4px;
		    display: block;
		    text-align: center;
		    margin: 0 1rem 0 0;
		    transition: 0.7s ease;
		}
		#price-per-usage #performance img {
			height: 4rem;
			margin-bottom: 0.5rem;
		}
		#price-per-usage #performance h1 {
			font-weight: 600;
			font-size: 1rem;
			line-height: 1.2;
		}
		#price-per-usage #performance li {
			list-style: none;
			font-weight: normal;
			font-size: 0.8rem;
			line-height: 1.8;
		}
		#price-per-usage #performance p {
			margin-bottom: 0;
			margin-top: 0.6rem;
			font-size: 0.8rem;
			line-height: 1.4;
		    color: #fff;
		    padding: 5px 0;
		    position: relative;
		    bottom: 0;
		    border-radius: 0 0 3px 3px;
		}
		#price-per-usage .gpu p {
			background: #756AFB;
		    border-bottom: 1px solid #756AFB;
		}
		#price-per-usage .cpu p {
			background: #73D4C7;
		    border-bottom: 1px solid #73D4C7;
		}
		#price-per-usage .sand p {
			background: #4F4F4F;
		    border-bottom: 1px solid #4F4F4F;
		}
		#price-per-usage .a10 p {
			background: rgb(224, 137, 137);
		    border-bottom: 1px solid rgb(224, 137, 137);
		}
		.gpu-performances {
			width: calc((100% / 7) * 3);
		}
		.cpu-performances {
			width: calc((100% / 7) * 4);
			margin:  auto;
		}
		.a10-performances {
			width: calc((100% / 7) * 4);
		}
		.gpu-performances .gpu {
			width: calc((100% / 3) - 1.5rem);
		}
		.cpu-performances .cpu {
			width: calc((100% / 4) - 1.5rem);
		}
		.cpu-performances .sand {
			width: calc((100% / 4) - 1.5rem);
			margin-right: 1rem !important;
			margin-left: 0rem !important;
		}
		.a10-performances .a10 {
			width: calc((100% / 4) - 1.5rem);
		}
		#performance-header-row {
			margin-top: 4rem;
			margin-bottom: 2rem;
		}
		#performance-header-row h2 {
			font-weight: 600;
			font-size: 0.9rem;
			line-height: 1.2;
		}
		#performance-header-row p {
			font-size: 0.8rem;
			line-height: 1;
		}
		#performance-header-row span {
			font-weight: 600;
		}
	#monthly-storage {
		margin-top: 4rem;
	}
		#monthly-storage .pricing-plan-table {
			padding: 4rem 10%;
		}
		#teams-pricing {
			margin-left: 10%;
		}
		.pricing-plan-table .text {
			padding: 2rem;
		}
		#monthly-storage #teams-page .pricing-plan-table {
			padding: 4rem 0;
		}
		#monthly-storage #pricing-column {
			width: 25%;
			text-align: center;
		}
		#monthly-storage #table-header-row #pricing-column {
			border-bottom: 1px solid #E0E0E0;
			font-size: 1rem;
			line-height: 1.2;
			font-weight: 600;
			color: #000000;
		}
		#monthly-storage #pricing-label {
			width: 25%;
			text-align: right;
			align-self: center;
			line-height: 1.6;
		}
		#monthly-storage #table-header-row #pricing-column {
			padding: 2rem 0;
		}
		#monthly-storage #table-feature-row {
			height: 5rem;
		}
		#monthly-storage #table-header-row div:nth-child(3) {
			background-color: #CDFFF8;
			border-radius: 10px 10px 0 0;
		}
		#monthly-storage #table-feature-row div:nth-child(3) {
			background-color: #CDFFF8;
		}
		#monthly-storage #table-last-row div:nth-child(3) {
			background-color: #CDFFF8;
		}
		#monthly-storage #table-cta-row div:nth-child(3) {
			background-color: #CDFFF8;
		}
		#monthly-storage #table-feature-row .yes {
			background-image: url("/assets/images/check-mark.png");
			background-repeat: no-repeat;
			background-position: center;
		}
		#monthly-storage #table-feature-row .no {
			background-image: url("/assets/images/null-mark.png");
			background-repeat: no-repeat;
			background-position: center;
		}
		#monthly-storage #table-last-row #pricing-label {
			display: flex;
			margin-right: 0;
			text-align: right;
			padding: 2.5rem 0;
		}
		#monthly-storage #table-last-row #pricing-label p {
			font-weight: bold;
			font-size: 1rem;
			line-height: 1;
		}
		#monthly-storage #table-last-row #pricing-column {
			padding: 2.5rem 0;
		}
		#monthly-storage #table-last-row #pricing-column p {
			font-weight: normal;
			font-size: 28px;
			line-height: 23px;
			text-align: center;
			color: #000000;
			margin: 0;
			padding-right: 5px;
			display: inline-flex;
		}
		#monthly-storage #table-last-row #pricing-column #monthly-hidden {
			font-size: 24px;
			line-height: 23px;
			text-align: center;
			color: #BDBDBD;
			text-decoration: line-through;
		}
		#monthly-storage #table-last-row #pricing-column #annual {
			display: initial;
			-webkit-transition: .4s;
			transition: .4s;
		}
		#monthly-storage #table-last-row #pricing-column #period {
			font-weight: normal;
			font-size: 14px;
			line-height: 20px;
			display: block;
			text-align: center;
			color: #000000;
			margin: 0;
		}
		#monthly-storage #table-cta-row #pricing-column {
			padding-bottom: 2rem;
			border-radius: 0 0 10px 10px;
		}
			.switch {
			  position: relative;
			  display: inline-block;
			  width: 60px;
			  height: 34px;
			  margin: auto 0.8rem;
			}
			.switch input {
			  opacity: 0;
			  width: 0;
			  height: 0;
			}
			.slider {
			  position: absolute;
			  cursor: pointer;
			  top: 0;
			  left: 0;
			  right: 0;
			  bottom: 0;
			  background-color: #ccc;
			  -webkit-transition: .4s;
			  transition: .4s;
			}
			.slider:before {
			  position: absolute;
			  content: "";
			  height: 26px;
			  width: 26px;
			  left: 4px;
			  bottom: 4px;
			  background-color: white;
			  -webkit-transition: .4s;
			  transition: .4s;
			}
			input:checked + .slider {
			  background-color: #4500A6;
			}
			input:focus + .slider {
			  box-shadow: 0px 0.72px 2.88px rgba(0, 0, 0, 0.1);
			}
			input:checked + .slider:before {
			  -webkit-transform: translateX(26px);
			  -ms-transform: translateX(26px);
			  transform: translateX(26px);
			}
			.slider.round {
			  border-radius: 34px;
			}
			.slider.round:before {
			  border-radius: 50%;
			}
#message-area h1 {
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1;
	color: #FFFFFF;
}
#message-area p {
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 2rem;
	color: #fff;
}
#usecase-categories {
    width: 90%;
    margin: 0 10%;
}
	#usecase-element {
	    width: calc(88% / 3 );
	    margin: 1rem 2%;
	    height: 6.5rem;
	    display: flex;
	    background: #FFFFFF;
	    border-radius: 3px;
		flex-direction: row;
		align-items: center;
	}
	#usecase-element:hover {
		cursor: pointer;
		-webkit-box-shadow: 0px 0px 25px 10px rgba(103,255,200,0.4); 
		box-shadow: 0px 0px 25px 10px rgba(103,255,200,0.4);
		-webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	#usecase-element img {
		max-width: 100px;
		margin: 0 0.5rem 0 0;
	}
	#usecase-element p {
		font-weight: normal;
		font-size: 1.2rem;
		line-height: 1.4;
		color: #000000;
		padding-right: 5%;
		margin: auto;
		margin-left: 0;
	}
	#message-area .upcoming-feature {
		opacity: 0.95;
	}
	#message-area .upcoming-feature:hover {
		opacity: 1;
		cursor: default;
	}
	#message-area .upcoming-feature #upcoming {
		visibility: hidden;
	}
	#message-area .upcoming-feature:hover #upcoming {
		visibility: visible;
	}

#usecase-testimonials {
	background: #CBFFF9;
	padding: 4rem 0 2rem;
}
	#usecase-testimonials button {
		margin: 1rem 0 2rem;
	}
	#usecase-testimonials h1 {
		font-weight: bold;
		font-size: 2.2rem;
		line-height: 1;
		text-align: center;
		color: #26055C;
		margin-bottom: 3.6rem;
		margin-top: 0;
	}
	#usecase-contents {
		contain: content;
    	width: 100%;
    	overflow: auto;
		scroll-behavior: smooth;
	}
	#usecase-contents::-webkit-scrollbar {
    	background: transparent;
	}
	#swipe-right-area {
  		width: 200%;
  		display: flex;
		scroll-behavior: smooth;
	}
	#swipe-right-area::-webkit-scrollbar {
    	background: transparent;
	}
	#usecase-item {
		margin: 0 3%;
	}
	#usecase-img img {
		width: 100%;
		border-radius: 5px 5px 0 0;
	}
	#testimonial-quote p {
		font-size: 1rem;
		line-height: 2;
		color: #000000;
		margin: 0;
	}
	#usecase-details button {
		margin-bottom: 0;
	}

	#usecase-details {
		background: #fff;
		border-radius: 0 0 5px 5px;
		padding: 2rem 5% 1rem 2rem;
	}
	#usecase-details h2 {
		font-weight: 600;
		font-size: 1.2rem;
		line-height: 2;
		color: #000000;
		margin: 0;
	}
	#usecase-details h2 span {
		font-weight: 400;
	}
	#usecase-detail-header {
		padding: 9rem 5% 4rem;
	}
	#usecase-detail-header img {
		width: 100%;
	}
	#usecase-apps picture {
		margin: 0 2rem;
		width: 100%;
		max-width: 120px;
	}
	#usecase-apps picture:first-child {
		margin-left: 0;
	}
	#usecase-content-details {
		background: #4500A6;
		padding: 4rem 2rem;
	}
	#usecase-content-details .container {
		padding-top: 0;
	}
	#usecase-content-details h1 {
		padding: 2rem 0;
		font-weight: 700;
		font-size: 2rem;
		line-height: 53px;
		text-align: center;
		color: #FFFFFF;
		padding-top: 0;
	}
	#usecase-content-details p {
		font-weight: 400;
		font-size: 1.1rem;
		line-height: 2;
		padding: 0 5%;
		color: #fff;
	}
	#usecase-detail-header h2 {
		font-weight: normal;
		font-size: 1rem;
		line-height: 1;
		letter-spacing: 0.2em;
		color: #000000;
	}
	#usecase-detail-header h1 {
		font-weight: 500;
		color: #45ABB5;
	    font-size: 3.2rem;
	    line-height: 1.2;
	    padding-top: 1rem;
	    margin-bottom: 4rem;
	    padding-right: 16%;
	}
	#usecase-detail-header-title {
		width: 100%;
		padding-left: 5%;
	}
	#usecase-apps {
	    display: flex;
	    flex-direction: row;
	    justify-content: space-between;
	    width: 75%;
		align-items: center;
	}

#benchmark-element {
	background: #FFFFFF;
	border: 2px solid #F2F2F2;
	box-sizing: border-box;
	border-radius: 4px;
	width: 95%;
	padding: 1.5rem 2rem;
	margin-bottom: 2rem;
}
	#benchmark-element h1 {
		font-weight: normal;
		font-size: 1.5rem;
		line-height: 1.6;
		color: #000000;
		margin: 0;
		margin-bottom: 1rem;
	}
	#benchmark-element h2 {
		font-weight: normal;
		font-size: 1rem;
		line-height: 1.2;
		color: #000000;
	}
	#benchmark-vagon h2 {
		font-weight: 600;
		margin-top: 1.6rem;
	}
	#benchmark-element #compare-bar {
		height: 2.3rem;
		border: 1px solid;
		border-radius: 3px;
	}
	#benchmark-element #filled-bar-compare {
		background: #ABB3FF;
		height: calc( 2.3rem - 2px ) ;
	    display: block;
	    border-radius: 2.5px 0 0 2.5px;
	}
	#compare-bar p {
		font-size: 0.9rem;
	    line-height: 2.3rem;
	    color: #FFFFFF;
	    margin: auto;
	    text-align: right;
	    margin-right: 1rem;
	}
	#sample-project {
		text-align: right;
	}
	#sample-project img {
		margin-right: 1rem;
		background: #000;
	}
	#comparison {
		position: absolute;
	    margin-top: -1.7rem;
	    right: -5.5rem;
	    font-size: 1.2rem;
	}

#regions {
	background: #D7DEFF;
	height: auto;
}
	#regions .container {
		padding: 4rem 0;
	}
	#regions svg {
		text-align: center;
		width: 100%;
	}
	#regions img {
		text-align: center;
		width: 100%;
	}
	g {
		background: white;
		width: 100px;
		height: 50px;
	}
	#regions-text2 {
	}
	#regions-detail .row {
			margin: 5% 0;
	}
		#regions-detail #text-area {
			padding: 0 5%;
		}
		#regions-detail h1 {
			font-size: 2.2rem;
			color: #45ABB5;
			line-height: 1.4;
			font-weight: 600;
			padding-top: 0;
			margin: 0;
		}
		#regions-detail p {
			font-size: 1.1rem;
			line-height: 2;
			padding-right: 10rem;
		}
/*#regions-icon {
    -webkit-animation-name: bounce;
        -webkit-animation-duration:.8s;
        -webkit-animation-direction:alternate;
        -webkit-animation-timing-function:linear;
        -webkit-animation-delay:0s;
        -webkit-animation-iteration-count:infinite;
    -moz-animation-name: bounce;
        -moz-animation-duration: .8s;
        -moz-animation-direction:alternate;
        -moz-animation-timing-function:linear;
        -moz-animation-delay:0s;
        -moz-animation-iteration-count:infinite;
}
keyframes bounce {
	from{ -webkit-transform: translate(0px,0px); }
	to { -webkit-transform: translate(0px,-1px); }  
}
@-webkit-keyframes bounce {
	from{ -webkit-transform: translate(0px,0px); }
	to { -webkit-transform: translate(0px,-1px); }  
}
@-moz-keyframes bounce {
	from { -moz-transform: translate(0px,0px); }
	to { -moz-transform: translate(0px,-1px); }  
}
*/

#teams-hero {
	text-align: left;
	display: grid;
	align-content: center;
	background: #100520;
	background-image: url("/assets/images/teams/teams-bg.webp");
	height: 100vh;
    max-height: 1080px;
    min-height: 810px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
	#teams-hero h1 {
		font-size: 3.9rem;
		color: #fff;
		line-height: 1.2;
		letter-spacing: 8px;
		text-transform: uppercase;
		font-weight: 700;
		margin-top: 0;
	}
	#teams-hero h2 {
		font-size: 1.4rem;
		line-height: 1.5;
		color: #FFFFFF;
		font-weight: 400;
	}
	#teams-hero .cta-section {
		margin-top: 4rem;
	}
	#right-play-icon {
		padding-right: 0.4rem;
		padding-bottom: 2px;
	}
	#teams-hero .featured-section {
		position: absolute;
	    bottom: 3%;
	    text-align: center;
	}
	#teams-hero .featured-section img {
		margin: 0 1%;
		opacity: 0.5;
	}
	#team-user-logo img {
		height: 80px;
		width: 80px;
		filter: grayscale(1);
	}
	#team-user-logo img:hover {
		filter: grayscale(0);
	}
	#teams-users {
		padding: 2rem;
	}
	#teams-users .row {
		align-items: center;
    	justify-content: space-between;
	}
	#teams-users h1 {
		font-weight: 400;
		font-size: 3.5rem;
		line-height: 1;
		color: #4500A6;
	}
	#teams-users span {
		font-weight: 800;
		font-size: 3rem;
	}
	#teams-users p {
		font-size: 1.3rem;
		line-height: 1.6;
		color: #140000;
	}
	#team-user-text {
		width: 350px;
	}

#user-issues {
}
	#user-issues .row {
			margin: 10% 0;
	}
	#user-issues #text-area {
		padding: 0 5%;
	}
	#user-issues h1 {
		font-size: 2rem;
		color: #455ED4;
		font-weight: 600;
		padding: 0 1rem;
		padding-top: 2rem;
	}
	#user-issues p {
		font-size: 1.1rem;
		line-height: 2;
		padding: 0 1rem;
	}
	#user-issues video {
		width: 100%;
	}

#job-listing-section {
	background: #1F0B41;
	padding: 2rem 0;
	margin-bottom: 4rem;
	margin-top: 2rem;
}
	#job-listing-container {
		background: #FFFFFF;
		border-radius: 10px;
		padding: 1.2rem 2rem;
		margin: 1rem;
		min-width: calc(33.3% - 2rem);
		transition: all .2s;
	}
	#job-listing-container:nth-child(1) {
		min-width: calc(55% - 4rem);
	}
	#job-listing-container:nth-child(2) {
		min-width: 45%;
	}
	#job-listing-container:nth-child(3) {
		min-width: 50%;
	}
	#job-listing-container:nth-child(4) {
		min-width: calc(50% - 4rem);
	}
	.sep:last-child {
		display: none;
	}
	#job-listing h1 {
		font-size: 1.3rem;
		line-height: 2;
		color: #26055C;
		text-align: left;
		margin: 20px 0px;
	}
	#job-listing {
		transition: all 0.5s ease;
	}
	#job-listing-container:hover {
		cursor: pointer;
		outline: 3px solid #48C1B4;
	}
	#job-listing-container:hover #job-listing {
		transform: scale(1.01);
	}
	#job-listing p {
		font-size: 1rem;
		line-height: 1.4;
		color: #000000;
		text-align: left;
		margin: 20px 0px;
	}
	#careers-information p {
		font-size: 1.2rem;
		line-height: 2;
		text-align: center;
		color: #fff;
		padding: 2rem 0;
	}
	#page-content {
		padding: 0 10% 4rem;
	    font-size: 1.2rem;
	}
	#page-content h2 {
		font-weight: bold;
	    font-size: 2rem;
	    line-height: 2;
	    color: #3E0496;
	    letter-spacing: initial;
	}
	#page-content p {
	    line-height: 2;
	}
	#page-content h3 {
		color: #4500A6;
		font-weight: 500;
		font-size: 1.2rem;
		line-height: 2;
		padding-top: 1rem;
	}
	#page-content li {
	    padding: 0.3rem;
	    line-height: 2;
	}

#community-explain {
	background: #CBFFF9;
	padding: 2rem 0 2rem;
}
	#community-img {
		background-size: cover !important;
	    background-position: center !important;
	}
	#community-explain #text-area {
		padding-right: 10%;
	}
	#community-explain h1 {
		font-weight: 600;
		font-size: 3rem;
		line-height: 1.2;
		color: #000;
		margin-bottom: 2rem;
	}
	#community-explain p {
		font-size: 1rem;
		line-height: 2;
		color: #000;
	}
	#community-explain img {
		width: 100%;
	}

#invite-hero {
	text-align: left;
	display: grid;
	align-content: center;
	background: #100520;
	background-image: url("/assets/images/referral/referral-bg.webp");
	height: 100vh;
    max-height: 1080px;
    min-height: 810px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
	#invite-hero h1 {
		font-size: 3.9rem;
		color: #fff;
		line-height: 1.2;
		letter-spacing: 8px;
		text-transform: uppercase;
		font-weight: 700;
		margin-top: 0;
	}
	#invite-hero h2 {
		font-size: 1.4rem;
		line-height: 1.5;
		color: #FFFFFF;
		font-weight: 400;
	}
	#invite-hero .cta-section {
		margin-top: 2%;
	}
	#invite-hero .featured-section {
		position: absolute;
	    bottom: 3%;
	    padding-left: 6rem;
	    text-align: left;
	}
	#invite-hero .featured-section img {
		margin: 0 1%;
		opacity: 0.5;
	}
	#invite-friends .row {
		margin: 0 12% 5rem;
	}
	#invite-friends img {
		height: 7rem;
		text-align: center;
	}
	#invite-friends h3 {
	    font-weight: 500;
	    font-size: 1.4rem;
	    line-height: 1;
	    padding-top: 2rem;
	    color: #47C2B5;
	}
	#invite-friends p {
	    font-weight: 300;
	    font-size: 1rem;
	    line-height: 1.6;
	    color: #26055C;
	    padding: 0 5%;
	}
	#referral-announcement {
		text-align: center;
		padding: 2rem 0;
	}
		#referral-announcement h1 {
			font-size: 2.5rem;
			font-weight: 700;
			line-height: 1.2;
			color: #4500A6;
		}
		#referral-announcement h2 {
			font-size: 1.2rem;
			font-weight: 400;
			line-height: 1.6;
			margin-bottom: 2rem;
			padding: 0 17%;
		}

#download-platforms {
	display: flex;
	align-items: center;
    justify-content: space-evenly;
}
	#platform {
		background: #fff;
		margin: 1rem;
		padding: 1.1rem;
		height: fit-content;
		border: 2px solid #F2F2F2;
		box-sizing: border-box;
		box-shadow: 0px 5.21212px 10.4242px rgba(0, 0, 0, 0.1);
		border-radius: 5px;
		margin-bottom: 2rem;
		transition: 0.3s ease;
		min-width: 15rem;
	}
	#platform:hover {
		cursor: pointer;
		box-shadow: 0px 5.21212px 10.4242px rgba(76,18,195,0.25);
	}
	#download-platforms img {
		height: 40px;
		margin: 10px 0;
		width: auto;
	}
	#download-platforms p {
		padding-top: 20px;
		margin: 0;
		color: #000;
		font-size: 18px;
		line-height: 17px;
		color: #828282;
	}

.float-animation {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{   }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.nav-link a:hover {
	color: #000;
}

#chevron-down {
	width: 12px;
	margin-bottom: 2px;
	margin-left: 2px;
}

#nav-item:hover #chevron-down {
	transition: rotate(180deg);
}

#dropdown-content a:hover h2 {
	color: #48C1B4 !important;
	font-weight: 600;
}

#upcoming {
	border: 1px solid #48C1B4;
	border-radius: 2px;
	padding: 3px 5px;
	font-size: 0.6rem;
	margin-left: 10px;
	position: fixed;
	color: #48C1B4;
}

.footer-link #upcoming {
	position: initial;
	visibility: hidden;
}

#upcoming-footer a {
	cursor: default;
}

#upcoming-footer:hover #upcoming {
	visibility: visible;
}

#upcoming-feature {
	opacity: 0.5;
}

#dropdown-content a:hover #upcoming-feature h2 {
	color: #000 !important;
	font-weight: 500;
}

#regions_map_region {
	display: none;
}

#regions_map:hover #regions_map_region {
	display: initial;
}

#regions_map_region {
	display: none;
}

.teams-page #security-area-image {
	max-width: 30rem;
	margin-right: 3rem;
}

.teams-page #security-area-image img {
	width: 100%;
}

.teams-page #additional-features-area-text {
	padding-right: 8%;
}

#streaming-details {
	background: #000;
	padding-top: 2rem;
}
	#streaming-details h1 {
		color: #FFFFFF;
	}
	#streaming-details #swipe-right-area {
		width: 180%;
	}
	#streaming-value {
		box-sizing: border-box;
		border-radius: 10px;
		min-height: 300px;
		margin-bottom: 2rem;
		width: 32%;
		margin-right: 1%;
	}
	#streaming-value h1 {
		color: #fff;
	}
	#streaming-value p {
		color: #fff;
		padding-right: 1rem;
		padding-left: 0;
	}
	#streaming-value:nth-child(2n) {
		background: linear-gradient(107.64deg, rgba(88, 63, 130, 0) 1.37%, rgba(103, 255, 246, 0.43) 100%);
		border: 1px solid #67FFF6;
	}
	#streaming-value:nth-child(2n+1) {
		background: linear-gradient(103.69deg, rgba(38, 5, 92, 0) 0.69%, rgba(103, 141, 255, 0.54) 100%);
		border: 1px solid #67BFEB;
	}
	#browser-input-area {
		width: 72%;
		background: #fff;
		border-radius: 3px;
		text-align: left;
		margin: 3.25% 13% 0 14%;
		position: absolute;
		z-index: 1;
	}
	#browser-input-area p {
		font-size: 12px;
		line-height: 25px;
		margin: 0;
		padding-left: 10px;
		color: #000;
	}
	.stream-browser video {
		border-top: 80px solid #F3F2FF !important;
	}
	.stream-browser img {
		border-top: 80px solid #F3F2FF !important;
	}
	#app-stream-window {
		border-top: 80px solid #F3F2FF !important;
		width: 74%;
		margin: 0 13%;
		border: 15px solid #F3F2FF;
		border-radius: 5px;
		height: 600px;
		display: flex;
		align-items: center;
		background: #fefefe;
		transition: 0.7s ease;
	}
	#app-stream-window #window-contents {
		display: block;
		width: 100%;
	}
	#app-stream-window h1 {
		color: #000;
		margin-bottom: 0;
		margin-top: 0;
		transition: 0.7s ease;
	}
	#app-stream-window p {
		margin-bottom: 2rem;
		line-height: 2;
		transition: 0.7s ease;
	}
	#product-tips {
		position: absolute;
		right: 10%;
		top: 3%;
	}
	.stream-browser #product-tips {
		z-index: 5;
	}
	#streaming-features video {
		width: 74%;
		margin: 0 13%;
		border: 15px solid #F3F2FF;
		border-top: 80px solid #F3F2FF;
		border-radius: 5px;
	}
	#product-video {
		display: none;
	}
	#product-features #product-video-cover {
		width: 74%;
		margin: 0 13%;
		border: 15px solid #F3F2FF;
		border-top: 40px solid #F3F2FF;
		border-radius: 5px;
	}
	.app-streaming-list #download-platforms {
		padding: 0 5%;
	}
	.app-streaming-list #download-platforms a {
		min-width: 18%;
	}
	.app-streaming-list #text-area p {
		color: #000;
	}
	.app-streaming-list #text-area h1 {
		color: #000;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.app-streaming-list .black-line {
		margin-left: 0;
	}
	.app-streaming-list .container {
		padding-bottom: 6rem !important;
		padding-top: 0;
	}
	#streaming-usecase-details {
		background: #CBFFF9;
		padding: 4rem 0;
	}
	#streaming-usecase {
		background: #fff;
		border-radius: 5px;
		width: calc(94% / 3);
		margin: 0 1%;
	}
	#streaming-usecase h1 {
		font-weight: 600;
		font-size: 1.2rem;
		line-height: 1.6;
	}
	#streaming-usecase-text {
		padding: 0.5rem 2rem;
	}
	#streaming-usecase button {
		font-size: 0.9rem;
	}
	#streaming-usecase img {
		width: 100%;
		border-radius: 5px 5px 0 0;
		height: 250px;
	}
	#contact-us {
		padding: 4rem 0;
	}
	#how-streaming-works {
		background: #FFF;
		padding: 2rem 0;
		min-height: 600px;
	}
	#how-streaming-works h1 {
		font-weight: 500;
	}
	#how-streaming-works p {
		font-size: 1.2rem;
		line-height: 1.8;
	}
	#streaming-usecase-details #title {
		font-weight: bold;
		font-size: 2.2rem;
		line-height: initial;
		text-align: center;
		color: #26055C;
		margin-bottom: 3.6rem;
		margin-top: 0;
		color: #000;
	}
	#play-icon {
		position: absolute;
		position: absolute;
	    top: 0;
	    padding: 25%;
	    left: 0;
	    opacity: 0.6;
	}
	#streaming-usecase:hover #play-icon {
		opacity: 1;
	}
	#macos-client button {
		margin: 0;
	}
	#windows-client button {
		margin: 0;
	}

	#macos-client {
		display: none;
	}

	#windows-client {
		display: none;
	}

	#tablet-mobile {
		display: none;
		height: 100%;
		transition: scrolling-down 0.25s ;
	}

#cloud-pc-image {
	border-radius: 5% 35% 5% 5%;
}

#cloud-pc-image-2 {
	border-radius: 5% 5% 5% 35%;
}

.platform-download {
	padding: 5rem 0 7rem;
}

.streaming-features #technical-value {
	width: calc( (100% - 6% )/ 3 );
	margin: 1rem 1%;
	min-height: initial;
	border:  none;
}

.streaming-features #technical-value:nth-child(even) {
	background: linear-gradient(116.29deg, rgba(38, 5, 92, 0) 0%, rgba(108, 255, 202, 0.54) 88.75%);
}

.streaming-features .technical-text-area p {
	line-height: 2;
	padding-right: 0;
}

.streaming-features .technical-text-area {
	padding: 2rem;
}

.streaming-features h2 {
	padding-top: 0;
}

.enterprise-values {
	background: #26055C !important;
}

.enterprise-values #streaming-value {
	border: none !important; 
	background: none !important;
}

.enterprise-values #streaming-value p {
	color: #67BFEB !important;
	position: initial;
}

.enterprise-values #streaming-value h2 {
	color: #fff !important;
	margin-bottom: 2rem !important;
}

.enterprise-values .technical-text-area {
	padding-right: 0;
	padding-left: 0;
}

#explainerModal .modal-dialog {
    max-width: 840px;
    margin: 8rem auto;
    background: #000;
}

#explainerModal iframe {
    height: 60vh;
    background: #000;
}

#request-access {
    width: 25rem;
    box-sizing: border-box;
}

#request-access .modal-content {
    padding: 2rem 3rem;
    box-sizing: border-box;
    position: relative;
    border: 0;
    border-radius: 0;
}

#request-access .modal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.25rem;
    margin-bottom: .7rem;
    color: #000;
}

#request-access .modal-content .label {
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.4rem;
}

.vg-input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    font-size: .9rem;
    line-height: 1.2rem;
    min-height: 2rem;
    outline: none;
    padding: 0;
    margin: 0 0 1rem;
    width: 100%;
    -webkit-appearance: none;
}

#request-access .modal-content textarea {
    height: 80px;
    margin-top: 0.7rem;
}

#request-access .modal-content button {
    font-size: 0.9rem;
}

#modal-success-result {
    display: none;
}

#modal-success-result {
    text-align: center;
    font-size: 1rem;
}

#modal-success-result img {
    padding-bottom: 1rem;
}

#subscribe-result {
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem;
}

#subscribe-result p {
    margin-bottom: 0;
}

.mc-button {
    width: 100%;
    padding: 0 20%
}

#request-access {
    margin: auto;
    margin-top: 5rem;
}

#mc-embedded-subscribe {
    border-radius: 3px;
    font-weight: 500;
    font-size: 1rem;
    line-height: initial;
    text-align: center;
    cursor: pointer;
    padding: 13px 30px;
    background-color: #4500A6;
    color: #fff;
    border: solid 1px #4500A6;
}

#app-stream-featured img {
	filter: invert(1);
	height: 50px;
}

#stream-connect {
	-webkit-box-shadow: 0px 0px 25px 10px rgba(76,18,195,0.25); 
	box-shadow: 0px 0px 25px 10px rgba(76,18,195,0.25);
	-webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-streaming-list a:hover img {
	filter: grayscale(0);
	opacity: 1;
}

.app-streaming-list img {
	filter: grayscale(1);
	opacity: 0.5;
	transition: 0.7s ease;
}

.wide-steps {
	background: #fff;
	width: calc(97% / 4);
	margin-right: 1%;
	margin-left: 0;
	font-size: 0.9rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 1rem;
	text-align: left;
    display: flex;
    align-items: center;
	border: solid 1px #CBFFF9;
	border-top: solid 4px #CBFFF9;
	border-radius: 5px;
}

.wide-steps:hover {
	border-top: solid 4px #CBFFF9;
	background: #CBFFF9;
}

#how-streaming-works .active {
	border-top: solid 4px #73D4C7;
}

.wide-steps span p {
	color: #fff;
	font-size: 0.8rem !important;
	font-weight: 300;
	background: #73D4C7;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	text-align: center !important;
	line-height: 24px !important;
	float: left;
	margin-right: 1rem;
	margin-left: 0.3rem;
}

.wide-steps:last-child {
	margin-right: 0%;
}

#container-arrow-right {
	position: absolute;
    right: 20px;
    margin-top: 11%;
}

#container-arrow-left {
	position: absolute;
    left: 20px;
    margin-top: 11%;
  	transform: rotate(180deg);
}

#streaming-step-default {
	text-align: center;
}

#streaming-step-default img {
	height: 500px; 
	margin: auto;
}

#step-container {
	height: 500px;
	margin-bottom: 0;
    display: grid;
    align-items: center;
}

#streaming-step-infra {
	display: none;
}

#streaming-step-app {
	display: none;
}

#streaming-step-features {
	display: none;
}

#streaming-step-embed {
	display: none;
}

.content-stream {
	width: 23%;
	padding-right: 1rem;
	margin: 1%;
}

.content-stream img {
	max-width: 200px;
	margin-bottom: 2rem;
}

.content-stream h1 {
	color: #000;
	font-size: 1.2rem;
	font-weight: 600;
}

#how-streaming-works .content-stream p {
	padding-top: 0.5rem;
	color: #000;
	font-size: 1rem;
	line-height: 2;
	font-weight: 400;
}

#infra-content-visual {
	margin:  auto;
}

#infra-content-name {
	margin:  auto;
}

#infra-content-description {
	margin:  auto;
}

#streaming-step-infra img {
	max-height: 200px;
}

#how-streaming-works #streaming-step-infra h1 {
	margin-top: 2rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
}

#how-streaming-works #streaming-step-infra p {
	font-size: 1rem;
	font-weight: 400;
}

.infra-content {
	margin:  auto;
	text-align: center;
	width: calc((100% - 7.5%)/3);
	display: block;
	margin-right: 1.25%;
	margin-left: 1.25%;
	padding: 0 1rem;
}

#streaming-app {
	width: calc((100% - 4%) / 4 );
	margin: 1rem 0;
	margin-right: 1%;
	background: #fff;
	border-radius: 5px;
	height: 160px;
	box-shadow: 0px 4.72544px 11.8136px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	text-align: center;
    align-items: center;
    flex-direction: column;
}

#streaming-app p {
	font-size: 1rem;
	margin: 0;
	margin-top: 1rem;
}

#your-streaming-app {
	box-shadow: 0px 4.72544px 11.8136px rgba(0, 0, 0, 0.1);
}

#streaming-app img {
	height: 50px;
	width: 50px;	
}

#your-app img {
	height: 50px;
	width: 50px;
}

#your-streaming-app {
	width: 70%;
	margin: 2rem 15%;
	height: 250px;
	border-radius: 5px;
	background: #fff;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
}

#how-streaming-works #your-app p {
	margin: 0;
	padding-top: 1rem;
	font-size: 0.9rem;
}

#how-streaming-works #your-app-text {
	color: #602CCA;
	margin: 0;
	padding: 0 25%;
	font-weight: 600;
	font-size: 1rem;
}

#stream-video-cover {
	width: 100%;
}

#stream-video {
	display: none;
	width: 100%;
}

#streaming-embed-step-visual img {
	width: 100%;
}

#code-block {
	background: #26055C;
	border-radius: 5px;
	color: #fff;
	margin: 2rem 20% 5rem 0;
	padding: 2rem 1.2rem;
}

.code-line-num {
	font-family: monospace !important;
	text-align: right;
	font-size: 0.9rem;
	opacity: 0.7;
	line-height: 2rem;
}

.code-line {
	line-height: 2rem;
}

#streaming-step-embed h1 {
	text-align: left;
	font-size: 1.4rem;
	font-weight: 600;
	color: #602CCA;
}

.code-lines {
	width: 5%;
	display: grid;
	justify-content: space-between;
}

.code-element {
	width: 95%;
	display: grid;
	justify-content: space-between;
}

xmp {
	white-space: inherit;
	margin: 0;
}

#app-streaming-list {
	position: absolute;
}

#remove-button {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
}

#streaming-feature-list {
	padding: 0 4rem;
}

#streaming-feature-list h1 {
	line-height: 2;
}

#application-text {
	padding: 0 5rem;
}

#application-text p {
	font-size: 1rem;
}

#app-streaming-page h1 {
	font-weight: bold;
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.step {
	-webkit-transition: opacity 1s; 
    -moz-transition: opacity 1s; 
    transition: opacity 1s; 
}

.fadeout {
    opacity:0;
}
.fadein {
    opacity:1;
}

#app-hero-text {
	padding-right: 4rem;
}

#app-stream-steps-mobile {
	display: none;
}

.tablet-section {
	background: #D7DEFF !important;
}

.tablet-section h1 {
	color: #000 !important;
}

.tablet-section p {
	font-size: 1.1rem;
    line-height: 2;
    color: #000;
}

.tablet-section li {
	font-size: 1.1rem;
    line-height: 2;
    color: #000;
    margin-bottom: 1rem;
}

.tablet-section .row {
	width: 100%;
}

@media (max-height: 700px) {
	#hero .featured-section {
		display: none;
	}
	#hero {
		min-height: initial;
	}
}

/* Less Than 1024px Width  - Mobile */
@media (max-width: 900px) {
	.navbar-brand svg {
		width: 200px;
	}
	#invite-hero h1 {
		font-size: 2.5rem;
	}
	#invite-hero h2 {
		font-size: 1rem;
	}
	#invite-hero button {
		margin: 0.5rem 0;
	}
	.streaming-features #technical-value {
		width: auto;
	}
	#app-stream-steps-mobile {
		display: initial;
	}
	#app-stream-steps-mobile .wide-steps {
		width: 100%;
		margin: 1rem 0;
	}
	.content-stream {
		width: 100%;
	}
	.infra-content {
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	#application-text {
		padding: 0 1rem;
	}
	#how-streaming-works p {
		font-size: 1rem;
	}
	#download-platforms a {
		width: 30%;
	}
	#streaming-app {
	    width: 45%;
	    margin: 1rem 2.5%; 
	}
	#streaming-step-app p {
		padding-right: 0;
		text-align: center;
	}
	#pricing-column button {
		padding: 0.5rem;
	}
	#download-link button {
		margin-bottom: 1rem;
	}
	#pricing-header-element img {
		display: none;
	}
	#hero h2 br {
		display: none;
	}
	#hero button {
		margin: auto;
	    width: 100%;
	    margin-top: 1rem;
	}
	.container {
		padding-right: 1rem;
		padding-left: 1rem;
	}
	#turn-device-into-workstation .row {
		flex-direction: column-reverse;
	}
	#turn-device-text {
	    position: initial;
	    width: auto;
	    text-align: center;
	}
	#turn-device-into-workstation h1 {
	    font-size: 1.8rem;
	    margin-bottom: 0;
	}
	#turn-device-into-workstation p {
	    font-size: 1.1rem;
	}
	#product-tips li {
		display: none;
	}
	.browser-icon {
		display: none;
	}
	#product-features {
		padding: 0;
	}
	#product-features video {
	    width: 100%;
	    margin: 0;
	    border: none;
	    border-top: none;
	}
	#product-features #seperator {
	    margin: 2rem 0;
	}
	#product-features h1 {
		font-size: 2rem;
		margin-bottom: 0;
		margin-top: 0;
	}
	#product-features h2 {
		font-size: 1.2rem;
		padding: 0;
	}
	#feature-details {
		padding: 2rem 0;
	}
	#feature-details-img {
		height: auto;
	}
	#feature-details .container {
		padding:0 1rem 2rem;
	}
	#feature-details h1 {
		font-size: 1.4rem;
		line-height: 1.6;
	}
	#feature-details h2 {
		padding-top:  0;
	}
	#community-cta h1 {
		padding: 5% 0;
	}
	#community-cta button {
		margin: auto;
	    width: 100%;
	}
	.hanging {
		display: none;
	}
	#security-area-image {
		display: none;
	}
	#security-area-text h1 {
		width: 100%;
		font-size: 1.6rem;
	}
	.navbar .container {
		height: 85px;
		padding: 0 1rem;
		margin-top: 6px;
	}
	.navbar button {
	    padding: 0.75rem 1.8rem;
	    margin: 0;
	}
	.navbar-nav {
	    height: 100%;
	    justify-content: space-evenly;
	}
	.navbar-collapse {
		height: calc(100vh - 85px);
		background: #fff;
		position: absolute;
		top: 91px;
		left: 0;
	}
	.dropdown-container h1 {
		display: none;
	}
	#navbar-white .nav-item a {
		color: #000;
		height: 100%;
		width: 100%;
	}
	.nav-item {
		height: 100%;
		width: 100vw;
		text-align: center;
	}
	#tweet-community img {
		display: none;
	}
	#tweet-community {
		padding: 1rem;
	}
	#community-cta button {
		margin: 0.3rem 0;
	}
	#swipe-right-area {
		width: 700%;
	}
	#testimonial-img img {
		width: 250px;
	}
	#testimonial-apps {
		display: none;
	}
	#testimonial-id h2 {
		font-size: 1rem;
	}
	#testimonial-quote p {
		font-size: 0.9rem;
	}
	.technical-image-area {
		display: none;
	}
	.technical-text-area p {
		padding: 0;
	}
	#technical-value {
		min-height: initial;
	}
	.technical-text-area {
		padding: 2rem 1rem;
		text-align: center;
	}
	.technical-text-area p {
		font-size: 1.2rem;
	}
	#vagon-for-all-content {
		width: 100%;
		margin: 0;
		margin-bottom: 2rem;
	}
	#security-area-text {
		padding: 2rem;
	}
	#blog {
		display: none;
	}
	#footer-information {
		width: 100%;
	}
	.footer-link {
		width: 50%;
	}
	#turn-device-video {
		display: none;
	}
	#tweet-community p {
		font-size: 1rem;
	}
	#technical-details h1 {
		font-size: 2rem;
	}
	#hero {
		min-height: initial;
	}
	#hero .container {
		padding-top: 7rem;
	}
	#hero h1 {
	    font-size: 2rem;
	}
	#hero h2 {
	    font-size: 1rem;
	}
	#hero .featured-section {
		display: none;
	}
	#feature-details p {
		width: initial;
	}
	#turn-device-into-workstation {
		min-height: initial;
	}
	#turn-device-into-workstation .row {
		min-height: initial;
	}
	#product-features h1 {
		font-size: 1.6rem;
	}
	#product-features h2 {
		font-size: 1rem;
	}
	#feature-details p {
		font-size: 1rem;
	}
	#community-cta h1 {
		font-size: 1.6rem;
		padding: 0;
	}
	#users h1 {
		font-size: 1.6rem;
	}
	#technical-details h1 {
		font-size: 1.6rem;
	}
	#technical-details .col-lg-58 {
		max-width: 100%;
    	flex: auto;
	}
	#technical-details .col-lg-48 {
		max-width: 100%;
    	flex: auto;
	}
	#technical-details .col-lg-68, #technical-details .col-lg-78 {
		max-width: 100%;
    	flex: auto;
	}
	.technical-text-area p {
		font-size: 1rem;
	}
	.technical-text-area h2 {
		font-size: 1.2rem;
	}
	#vagon-for-all {
		padding: 0;
	}
	#vagon-for-all h1 {
		margin-top: 0;
		font-size: 1.6rem;
    	line-height: 1.6;
	}
	#page-with-text h1 {
		font-size: 1.6rem;
	}
	#page-header h1 {
		font-size: 1.6rem;
	}
	#page-with-text p {
		padding: 0;
		font-size: 1rem;
	}
	#regions svg {
		height: fit-content;
		padding-bottom: 2rem;
	}
	#step-container {
		height: auto;
	}
	#streaming-step-infra .row {
		flex-direction: column;
	}
	.step {
		display: initial !important;
	}
	#remove-button {
		display: none;
	}
	#app-stream-steps {
		display: none;
	} 
	#regions .container {
	    padding: 1rem 0;
	}
	#features-detail picture {
		margin-bottom: 2rem;
	}
	#features-detail h1 {
    	font-size: 1.4rem;
    	margin-top: 2rem;
	}
	#features-explain h1 {
		font-size: 2rem;
	}
	#user-quote .container {
		padding: 2rem 10px;
	}
	#user-quote p {
		padding-right: 0;
		font-size: 1.4rem;
	}
	#user-quote img {
		position: inherit;
	}
	#additional-features-area-text h1 {
		font-size: 1.6rem;
	}
	#vagon-for-all-text {
		padding: 2rem 1rem;
	}
	#vagon-for-all p {
		padding-right: 0;
	}
	#vagon-for-all button {
		width: 90%;
	}
	#vagon-for-all h2 {
		font-size: 1.4rem;
	}
	#usecase-categories {
		width: 100%;
		margin: 0;
	}
	#usecase-element {
		width: 31%;
		margin: 1%;
	}
	#usecase-element img {
		display: none;
	}
	#usecase-element p {
		font-size: 0.8rem;
		text-align: center;
		margin-left: auto;
		padding-right: initial;
	}
	#user-issues p {
		font-size: 1rem;
	}
	#usecase-detail-header {
		padding: 6rem 0 0 0;
	}
	#usecase-detail-header img {
		height: 100px;
		width: 100px;
	}
	#usecase-detail-header h1 {
		padding-right: 0;
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}
	#usecase-apps {
		display: none;
	}
	#features-detail .row:last-child {
		margin-bottom: 2rem;
	}
	#cta-area-product img {
		width: 100%;
	}
	#cta-area-product h1 {
		font-size: 1.6rem;
	}
	#usecase-content-details {
		padding: 1rem;
	}
	#usecase-content-details h1 {
		font-size: 1.6rem;
	}
	#teams-hero {
		min-height: initial;
	}
	#teams-hero .container {
		padding-top: 7rem;
	}
	#teams-hero h1 {
	    font-size: 2rem;
	}
	#teams-hero h2 {
	    font-size: 1rem;
	}
	#teams-hero .featured-section {
		display: none;
	}
	#teams-users span {
		font-size: 2.5rem;
	}
	#container-arrow-left {
		display: none;
	}
	#container-arrow-right {
		display: none;
	}
	#testimonial-contents {
		margin: auto;
		width: 95%;
	}
	#streaming-details #swipe-right-area {
		width: 500%;
	}
	#streaming-details {
		padding 0
	}
	.enterprise-values {
		height: auto;
	}
	#download-platforms p {
		font-size: 0.8rem;
	}
	.calendly-mobile {
		min-width: auto !important;
	}
	#regions-detail {
		text-align: center;
	}
	#regions-detail img {
		height: 100px;
		margin-bottom: 2rem;
	}
	#regions-detail p {
		padding-right: 0;
	}
	#page-content p {
		font-size: 1rem;
	}
	.mobile-nav-bg {
		background: #fff !important;
	}
	.mobile-nav-bg .nav-item a {
		color: #000 !important;
	}
	.navbar-nav .dropdown-menu {
		position: absolute;
		top: 91px;
		left: 0;
		height: calc(100vh - 91px);
	}
	#dropdown-content {
		padding: 0;
		display: flex;
		flex-direction: column;;
		text-align: center;
	}
	.dropdown-container .announcement {
		display: none !important;
	}
	.dropdown-container .dropdown-text {
		width: 100%;
		height: 100%;
	}
	.dropdown-container {
		display: flex;
		height: calc(100vh - 91px);
	}
	.nav-item {
		display: flex;
    	align-items: center;
    	justify-content: center;
	}
	.dropdown-container img {
		display: none;
	}
	#pricing-header h3 {
		font-size: 1.5rem;
	}
	.gpu-performances {
		width: 100%;
		contain: content;
	    overflow: auto;
	    scroll-behavior: smooth;
	}
	.cpu-performances {
		width: 100%;
		contain: content;
	    overflow: auto;
	    scroll-behavior: smooth;
	}
	.a10-performances {
		width: 100%;
		contain: content;
	    overflow: auto;
	    scroll-behavior: smooth;
	}
	#testimonial {
		margin: 0 0.5rem;
	}
	#performance {
		width: 180px;
		margin: 0 0.5rem;
	}
	#price-per-usage .row {
	    display: flex;
	    scroll-behavior: smooth;
	    padding: 0 1rem;
	}
	#performance-header-row {
		padding: 0 0.5rem;
		position: sticky;
	    top: 0;
	    left: 0;
	}
	.gpu-performances .row {
		width: 620px;
	}
	.cpu-performances .row {
		width: 830px;
	}
	.a10-performances .row {
		width: 830px;
	}
	#monthly-storage #pricing-column {
		font-size: 0.75rem !important;
		width: 37%;
	}
	#monthly-storage #pricing-label {
		width: 25%;
		font-size: 0.8rem;
	}
	#monthly-storage .pricing-plan-table {
	    padding: 2rem 5px;
	}
	#pricing-faq {
		padding: 1rem;
	}
	#pricing-faq p {
		font-size: 1rem;
	}
	#pricing-faq h3 {
		font-size: 1.1rem;
	}
	#streaming-step-default img {
		width: 100%;
		height: auto;
	}
	#app-hero-text {
		padding-right: 0;
	}
	#vagon-for-all button {
		width: 100%;
	}
	#security-area-image {
		display: none;
	}
}

@media (min-width: 900px) and (max-width: 1199px) {
	#security-area-image {
		display: none;
	}
	#dropdown-content {
	    max-width: 33%;
	    flex: 0 0 33%;
	}
	#feature-details {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.dropdown-container .announcement {
		display: none;
	}
	.dropdown-container p {
		font-size: 0.7rem;
	}
	#hero h1 {
		font-size: 3rem;
	}
	#user-quote p {
		font-size: 2rem;
	}
	#friends-title {
		bottom: 3px;
	}
	#friends-title p {
		font-size: 1rem;
	}
	.container {
		padding: 2rem 0;
	}
	#features-detail h1 {
		font-size: 1.4rem;
	}
	#features-detail p {
		font-size: 1rem;
	}
	#footer-cta-area .left-hanging-element {
		width: 25%;
	}
	#footer-cta-area .right-hanging-element {
		width: 25%;
	}
	#cta-area-product .container {
    	padding: 2rem 0;
	}
	#how-streaming-works p {
		font-size: 1rem;
	}
	#hero h2 {
		font-size: 1.2rem;
	}
	#streaming-step-default img {
		height: initial;
		width: 100%;
	}
	#streaming-app {
    	width: calc((100% - 60px) / 4 );
    	margin-right: 15px;
	}
	#streaming-app p {
		font-size: 0.9rem;
	}
	.content-stream img {
		width: 100%;
	}
	#streaming-feature-list h1 {
		font-size: 1rem;
	}
	#team-user-logo img {
		width: 50px;
		height: 50px;
	}
	#teams-users span {
		font-size: 3rem;
	}
	#team-user-text {
	    width: 270px;
	}
	#turn-device-text h1 {
		font-size: 1.4rem;
	}
	#turn-device-text p {
		font-size: 1rem;
	}
	.technical-text-area h2 {
		font-size: 1.2rem;
	}
	#footer-information {
		width: 100%;
		text-align: center;
	}
}

@media (min-width: 1199px) and (max-width: 1399px) {
	.container {
		max-width: 1100px;
		padding: 2rem;
	}
}

@media (min-width: 1919px) and (max-width: 1999px) {
	#app-hero-text {
		padding-right: 20rem;
	}
}

@media (min-width: 2000px) and (max-width: 2500px) {
	#platform {
		padding: 2rem 1.1rem;
	}
	#container-arrow-right {
		margin-top: 7rem !important;
	}
	#container-arrow-left {
		margin-top: 7rem !important;
	}
	#user-quote img {
		position: inherit;
	}
	.vagon-for-all-image-area img {
		max-height: 500px;
	}
	.vagon-for-all-image-area picture {
		max-height: 500px;
	}
	#turn-device-text {
		width: 35%;
	}
	.tablet-section p {
		font-size: 1.2rem;
	}
	.tablet-section li {
		font-size: 1.2rem;
	}
}

/* 4K+ Width  - Wide Screen */
@media (min-width: 2561px) {
	.tablet-section p {
		font-size: 1.4rem;
	}
	.tablet-section li {
		font-size: 1.4rem;
	}
	.container {
	    max-width: 2000px;
	}
	#hero h1 {
		font-size: 10rem;
	}
	#hero h2 {
		font-size: 3rem;
	}
	#features-explain p {
		font-size: 1.2rem;
	}
	#turn-device-text {
		width: 30%;
		padding: 0 5%;
		z-index: 1;
		margin-bottom: 2rem;
	}
	#browser-items {
	    margin-left: 7%;
	}
	#tweet-community {
	    width: 24vw;
	}
	button {
	    font-size: 2.2rem;
	    padding: 1.8rem 2.5rem;
	}
	#pricing-faq h3 {
		font-size: 1.8rem;
	}
	#pricing-faq p {
		font-size: 1.4rem;
	}
	#additional-features-area-text p {
		font-size: 1.4rem;
	}
	#pricing-page p {
		font-size: 1.6rem;
	}
	.nav-item a {
		font-size: 1.8rem;
	}
	.dropdown-container h2 {
		font-size: 1.8rem;
	}
	.dropdown-container p {
		font-size: 1.6rem;
	}
	.dropdown-container h1 {
		font-size: 2re;
	}
	.dropdown-container .announcement p {
		font-size: 1.6rem;
	}
	.navbar button {
		font-size: 2rem;
    	padding: 1rem 2rem;
	}
}

@media (min-width: 3439px) {
	.tablet-section p {
		font-size: 1.6rem;
	}
	.tablet-section li {
		font-size: 1.6rem;
	}
	#hero .featured-section img {
		width: 200px;
	}
	#download-platforms img {
		height: 80px;
	}
	#usecase-apps picture {
		max-width: 240px;
	}
	#tweet-community {
	    width: 36vw;
	}
	.navbar button {
		font-size: 1.8rem;
	}
	button {
		font-size: 1.8rem;
    	padding: 1rem 2rem;
	}
	.container {
		max-width: 3000px;
	}
	#app-hero-text {
		padding-right: 10rem;
	}
	#hero h2 {
		margin-bottom: 6rem;
	}
	#turn-device-into-workstation h1 {
		font-size: 2.8rem;
	}
	#turn-device-into-workstation p {
		font-size: 2rem;
		line-height: 2;
	}
	#product-features h1 {
		font-size: 3rem;
	}
	#product-features h2 {
		font-size: 2rem;
		padding: 0 30%;
	}
	#feature-details h1 {
		font-size: 5rem;
		line-height: 1.6;
		margin-top: 10rem;
	}
	#feature-details h2 {
		font-size: 2.2rem;
	}
	#feature-details p {
		font-size: 2rem;
		width: 70%;
	}
	#tweet-community p {
		font-size: 2rem;
	}
	#twitter-handle {
		align-items: center;
	}
	#testimonial-id h2 {
		font-size: 2rem;
	}
	#testimonial-quote p {
		font-size: 2rem;
	}
	#testimonial-quote {
	    min-height: 25rem;
	}
	#community-cta #community-visual {
		width: 50%;
	}
	#users h1 {
		font-size: 3rem;
	}
	#technical-details h1 {
		font-size: 3rem;
	}
	.technical-text-area h2 {
		font-size: 2.2rem;
	}
	.technical-text-area p {
		font-size: 2rem;
	}
	#vagon-for-all h1 {
		font-size: 3rem;
	}
	.vagon-for-all-image-area img {
		max-height: 800px;
	}
	.vagon-for-all-image-area picture {
		max-height: 800px;
	}
	#vagon-for-all h2 {
		font-size: 2.4rem;
	}
	#community-cta .container {
		height: 50vh;
		padding: 10rem 0;
	}
	#vagon-for-all p {
		font-size: 2rem;
    	margin-bottom: 5rem;
	}
	#vagon-for-all-text {
		padding: 4rem 8rem;
	}
	#security-area-text p {
		font-size: 1.6rem;
	}
	#security-area-text h1 {
		font-size: 3rem;
	}
	#security-area-image {
		width: 50%;
	}
	#footer-cta-area-text h1 {
		font-size: 3.5rem;
	}
	#trial {
		font-size: 2rem;
	}
	#blog h2 {
		font-size: 2rem;
	}
	#blog h3 {
		font-size: 1.6rem;
	}
	#blog p {
		font-size: 1.4rem;
	}
	#footer-information p {
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.footer-link li a {
		font-size: 1.2rem;
	}
	.footer-link .footer-header-row {
		font-size: 1.4rem;
	}
	.technical-text-area {
    	padding: 5rem;
	}
	#product-features h1 {
		font-size: 5rem;
	}
	#features-explain p {
		font-size: 1.6rem;
	}
	#page-header h1 {
		margin-bottom: 4rem;
	}
	#features-detail h1 {
		font-size: 3rem;
		line-height: 1.4;
	}
	#features-detail p {
		font-size: 2rem;
	}
	#user-quote img {
		position: initial;
	}
	#user-quote p {
		font-size: 5rem;
		line-height: 2;
	}
	#friends-title {
		left: 25px;
	}
	#friends-title p {
		font-size: 2.5rem;
	}
	#friends-title #title {
		font-size: 1.5rem;
	}
	#additional-features-area-text p {
		font-size: 2rem;
	}
	#page-with-text p {
		font-size: 2rem;
	}
	#usecase-element {
		height: 12rem;
	}
	#usecase-element p {
		font-size: 2rem;
	}
	#usecase-element img {
		max-width: 10rem;
	}
	#user-issues h1 {
		font-size: 3rem;
	}
	#user-issues p {
		font-size: 2rem;
	}
	#price-per-usage #performance h1 {
		font-size: 2rem;
	}
	#price-per-usage #performance img {
		height: 6rem;
		margin: 2rem 0;
	}
	#price-per-usage #performance li {
		font-size: 1.6rem;
	}
	#price-per-usage #performance p {
		font-size: 1.6rem;
		padding: 1rem 0;
		margin-top: 1rem;
	}
	#performance-header-row h2 {
		font-size: 2rem;
	}
	#performance-header-row p {
		font-size: 1.6rem;
	}
	#monthly-storage #table-feature-row {
		height: 8rem;
		font-size: 1.4rem !important;
	}
	#monthly-storage #table-header-row #pricing-column {
		font-size: 2rem;
	}
	#pricing-faq h3 {
		font-size: 2.2rem;
	}
	#pricing-faq p {
		font-size: 2rem;
	}
	#cta-area-product p {
		font-size: 2rem;
	}
	#usecase-content-details p {
		font-size: 1.8rem;
	}
	#features-detail .row {
		margin-top: 20rem;
	}
	#cta-area-product .container {
		padding: 8rem 15%;
	}
	.nav-item {
		margin: 0 1rem;
	}
	#features-detail .row:first-child {
		margin-top: 10rem;
	}
	#features-detail img, #features-detail  video {
		height: 600px;
		width: fit-content;
	}
	#browser-items {
		margin-left: 10.5%;
	}
	#hero .cta-section .green-no-line {
		line-height: 2;
	}
	#hero #right-play-icon {
    	padding-right: 1rem;
    	padding-bottom: 0;
    	height: 30px;
	}
	#community-explain p {
		font-size: 1.8rem;
	}
	#page-header h2 {
		font-size: 1.6rem;
	}
	#page-header h1 {
		line-height: 1.4;
	}
	#platform {
		padding: 3rem;
	}
}


.cc-floating .cc-message {
	font-size: 0.8rem !important;
	text-align: center;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
	font-size: 0.75rem !important;
	font-weight: 500;
}

.cc-window.cc-floating {
	max-width: 16rem !important;
}

#pricing-side-notes p {
	font-size: 0.8rem;
    margin-top: 0;
    line-height: 2;
}

#integration-code {
	display: block;
	white-space: pre-wrap;
	background: #000;
	border-radius: 5px;
}

#integration-code code {
	color: #ccc;
	font-size: 1rem;
}

#integration-table {
	width: 100%;
	text-indent: 10px;
}

#integration-table tr {
	line-height: 2.5;
}

#integration-table table {
	border-radius: 5px;
	background: #000;
}

#integration-table table, #integration-table tr, #integration-table td {
	border:  1px solid #ccc;
} 

#ping_checker {
	margin: auto;
	margin-bottom: 6rem;
	width: 30rem;
}

#ping_checker td:first-child {
	min-width: 15rem;
}

#ping_checker td:second-child {
	min-width: 5rem;
}

#ping_checker thead tr {
	height: 3rem;
} 

#buttons-pinger {
	margin-top: 3rem;
}

#stream-pricing-section {
	display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin-bottom: 4rem;
}

#stream-pricing-row {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

#stream-pricing {
    border: 1px solid #d7d7d7;
    width: 100%;
    padding: 0 2%;
    padding-right: 1rem;
    margin: 0 2%;
    border-radius: 5px;
}

#stream-pricing:hover {
    border: 1px solid #47C2B5;
}

#stream-pricing h2 {
	font-size: 1.2rem;
	line-height: 1.6;
	padding-right: 20%;
}

#stream-pricing p {
	font-size: 1.1rem;
	opacity: 0.6;
}

#stream-pricing #stream-link {
	cursor: pointer;
}

#stream-pricing #stream-link:hover {
	color: #47C2B5;
	opacity: 1;
}

#stream-pricing img {
	filter: grayscale(2);
    opacity: 0.2;
	width: 30px;
    float: right;
    margin-top: 10px;
}

#stream-storage-pricing table {
	width: 80%;
    margin: 5rem 10%;
    text-align: center;
    line-height: 4;
}

#stream-storage-pricing table, #stream-storage-pricing td, #stream-storage-pricing tr {
	border: 1px solid #E0E0E0;
}

#stream-pricing-notes {
	margin-top: 4rem;
	font-size: 0.9rem;
}

#stream-storage-pricing table td:first-child {
	font-weight: 600;
}

#swipe-right-container {
	contain: content;
	width: 100%;
	overflow: auto;
	scroll-behavior: smooth;
}

#swipe-right-container::-webkit-scrollbar {
	background: transparent;
}

#box-container {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

#gradient-box {
	border-radius: 10px;
	border: none;
	padding: 2rem;
	padding-top: 8rem;
	margin: 0 1.5rem;
	position: relative;
	top: -4rem;
    width: calc(100% - 3rem);
    height: 26rem;
}

#gradient-box:nth-child(odd) {
	background: linear-gradient(110.76deg, rgba(38, 5, 92, 0) 0%, #6E9EEB 90.73%);
}

#gradient-box:nth-child(even) {
	background: linear-gradient(116.84deg, rgba(88, 63, 130, 0) 1.42%, rgba(103, 255, 246, 0.43) 90.05%);
}

#box-container img {
	width: 250px;
	position: relative;
	z-index: 999;
	top: 4rem;

}

#gradient-box h2 {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.6;
	color: #FFFFFF;
}

#gradient-box p {
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #67BFEB;
}

#swipe-container {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

#swipe-container #container-arrow-left {
	margin-top: auto;
}

#swipe-container #container-arrow-right {
	margin-top: auto;
}

#title-area h1 {
	font-style: normal;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.6;
}

#title-area p {
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 2;
	margin-bottom: 2rem;
}

#stream-testimonial b, #stream-testimonial span {
	  display: block;
	}
	#stream-testimonial {
		box-shadow: 0px 5.21212px 10.4242px rgb(0 0 0 / 10%);
		margin: 2rem;
		backdrop-filter: blur(6.60142px);
		border-radius: 8px;
		margin-top: 2rem;
		margin-left: 0;
		padding: 2rem 3rem;
		display: grid;
		grid-auto-flow: column;
		align-items: center;
		justify-items: center;
	}
	#stream-testimonial p {
		font-weight: 500;
		font-size: 1.2rem;
		line-height: 1.8;
		text-align: left;
		padding-right: 2rem;
	}
	#stream-testimonial img {
		height: 85px;
		width: 85px;
		border-radius: 50%;
		filter: drop-shadow(0px 18.55px 55.65px rgba(0, 0, 0, 0.3));
	}

.project-details-content {
	padding: 1rem;
}

#project-details-image img {
	width: 100%;
    height: 15rem;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 8px 0 0;
}

.project-details-text {
	background: #fff;
	border-radius: 0 0 8px 8px;
	padding: 1.5rem;
    display: flex;
    min-height: 11rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.project-details-text h2 {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #000000;
	margin-top: 0;
}

.project-details-text button {
	margin: 0;
    margin-top: 1rem;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-details-text button img {
	padding-left: 8px;
}

#streams-comparison h2 {
	font-size: 1.6rem;
}

#streams-comparison h3 {
	font-size: 1.2rem;
}

.sample-image {
	background: #ccc; width: 95%; height: 150px; margin: 2.5%; border-radius: 8px;
}

#integration-link {
	background: rgba(255, 255, 255, 0.9);
	position: absolute;
	margin-top: 3rem;
	border: 2px solid #47C2B5;
	border-radius: 5px;
	right: 0;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

#integration-link #try-now {
	border-radius: 2px;
	margin-right: 1rem;
	font-size: 0.8rem;
	padding: 5px 10px;
	color: #fff;
	font-weight: 600;
	background: #47C2B5;
	white-space: nowrap;
}

#integration-link p {
	padding: 1rem 1.5rem;
	margin: 0;
	font-weight: 500;
	font-size: 0.9rem;
	line-height: 140%;
	color: #4F4F4F;
}

#note-area {
	margin: 4rem 0;
    padding: 0 25%;
    text-align: center;
    line-height: 2.5;
    font-size: 1.1rem;
}

#streaming-details {
	padding: 4rem 0;
}

#streaming-details h3 {
	color: #fff;
	font-size: 1.2rem;
	line-height: 2;
}

#baby-blue {
	color: #455ED4;
}

#try-now:hover {
	background: #45ABB5;
}

#contents-blog {
	padding: 4rem;
}

@media (max-width: 900px) {
	#integration-link {
		display: none;
	}
	#download-platforms {
		display: block;
	}
	#box-container img {
		height: 150px !important;
		width: 150px !important;
	}
	#stream-testimonial p {
		padding-right: 0;
	}
	#note-area {
		padding: 0;
	}
	#contents-blog {
		padding: 0;
	}
}

#ping_checker table {
	width: 100%;
	text-align: center;
}

#ping_checker table th {
	width: 50%
}

#pricing-regions {
	margin-top: 4rem;
}

#pricing-regions-container {
	padding: 0 20%;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#pricing-regions-container button {
	margin: 0.5rem;
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 0.9rem;
	transition: all .2s;
}

#pricing-regions-container button:hover {
	background: rgba(115, 212, 199, 0.7);
	color: #fff;
	cursor: pointer;

}

#pricing-regions-container button.active {
	background: #73D4C7;
	color: #fff;
}

#pricing-regions-container button disabled {
	opacity: 0.9;
}


#pricing-regions h2 {
	font-size: 1rem;
	color: #73D4C7;
	font-weight: 500;
	display: block;
}

#pricing-regions span {
	background-color: #fff;
    border-radius: 2px;
    width: 10rem;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    box-sizing: border-box;
    color: #4f4f4f;
    position: absolute;
    white-space: break-spaces;
    font-size: .7rem;
    font-weight: 300;
    padding: 0.5rem 1rem;
    visibility: hidden;
    bottom: 70%;
    margin-left: 10px;
    line-height: 1.6;
}

.show-tooltip {
	visibility: visible !important;
}

.not-active {
	opacity: 0.5;
}

#region-prices table {
	width: 100%;
	font-size: 0.8rem;
}

#region-prices table tr {
	height: 80px;
	border-bottom: 1px solid #eaeaea;
}

#applications .yes {
	background-image: url("/assets/images/check-mark.png");
	background-repeat: no-repeat;
	background-position: center;
	height: 40px;
	width: 40px;
}

#app-category {
    padding: 6px 12px;
    border-radius: 3px;
    width: fit-content;
    transition: all .2s;
    background: #fff;
    color: #000;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    margin: 0;
    margin-right: 20px;
}

#region-prices {
	margin-bottom: 5rem;
}

.app-category-area {
	display: flex;
}

#region-prices table td:first-child {
	font-size: 1rem;
}

#region-prices table th {
	font-size: 1rem;
}

#streams-performance-header-row {
	margin-top: 4rem;
	margin-bottom: 2rem;
	margin-left: 2%;
}
#streams-performance-header-row h2 {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.2;
}
#streams-performance-header-row p {
	font-size: 0.9rem;
	line-height: 1;
}

#demoModal .modal-dialog {
    max-width: initial;
    /* width: 100%; */
    aspect-ratio: 16 / 9;
    width: fit-content;
    border-radius: 10px;
}

#demoModal .modal-content {
	height: calc(100vh - 3.5rem);
	aspect-ratio: 16 / 9;
	border: none !important;
}

#demoModal .modal-body {
	margin: 0;
	padding: 0;
	background: #000;
    outline: none;
    border: none;
}

#demoModal iframe {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 3px;
}

#demoModal #play-overlay {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 3px;
    display: none;
    background-image: url(https://app.vagon.io/static/media/bg_black.b922d8bb.jpg);
    background-size: 100% 100%;
}

.app-streaming-connecting-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.app-streaming-connecting-container .content-box {
	min-width: 350px;
    max-height: 350px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 3rem 4rem;
	background: rgba(0,0,0,.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 10px;
}

.app-streaming-connecting-container .content-box p {
	color: #5e73ff;
    font-size: 1rem;
    font-weight: 600;
    margin: 2rem 0;
}

#demo-labels {
	display: flex;
}

#demo-labels p {
	border-radius: 2px;
	margin: 0;
    margin-right: 1rem;
    font-size: 0.8rem;
    color: #455ED4;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.5;
    transition: all .3s;
}

.demo-text {
	background: #fff;
	border-radius: 0 0 8px 8px;
	padding: 1.5rem;
    display: flex;
    min-height: 9rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.demo-text h2 {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #000000;
	margin-top: 0;
}

.demo-text button {
	margin: 0;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-text button img {
	padding-left: 8px;
}

#demo-area #project-details:hover {
}

#demo-area #project-details:hover #demo-labels p {
	opacity: 1;
}

#project-details-image {
	contain: content;
}

#project-details-image img {
	transition: all .3s;
}

#demo-area #project-details:hover #project-details-image img {
	transform: scale(1.1);
}

.modal-content .close {
	position: absolute;
    right: 0;
    top: 5px;
    z-index: 999;
    font-size: 2rem;
    font-weight: 300;
}

#demo-stream-page #page-header h2 {
	color: #fff;
}

#demo-stream-page #page-header h1 {
	color: #fff;
	font-size: 2.5rem;
}

#demo-stream-page .app-streaming-play-button {
	opacity: 0.8;
}

#demo-stream-page .app-streaming-play-button:hover {
	cursor: pointer;
	opacity: 1;
}


.demo-page h1 {
	color: #fff;
}

.demo-page p {
	color: #fff;
	font-size: 1.2rem;
	opacity: 0.8;
}

#demo-buttons {
	margin-top: 0;
}

@media (max-width: 900px) {
	#demo-buttons {
		margin-top: 0;
	}

	#demo-buttons .container {
		padding-top: 0;
	}

	#demo-buttons button {
		margin: 1rem;
	    width: 80%;
	}

	#demo-stream-page #page-header h1, .demo-page h1 {
		font-size: 1.6rem;
	}

	.demo-page p {
		font-size: 1rem;
		opacity: 0.8;
	}

	#demoModal .modal-dialog {
		width: auto;
	}

	#demoModal .modal-body {
		background: #000;
		display: flex;
	    flex-direction: column;
	    justify-content: center;
	    flex-wrap: nowrap;
	}

	#demoModal iframe {
		height: auto;
    	aspect-ratio: 16/9;
	}
}

#demo-alert {
	max-width: 35rem;
	width: 100%;
	position: absolute;
	top: 1rem;
	margin: auto;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.6);
	font-size: .85rem;
	line-height: 1.6;
	text-align: center;
	padding: 1rem;
	border-radius: 5px;
	display: none;
}

#pricing-os .container {
	justify-content: center;
	padding: 0;
}

#pricing-os p {
	background: rgba(115, 212, 199, 0.2);
	border-radius: 4px;
	padding: 4px 20px;
	margin: 0 1rem;
	line-height: 2;
	color: #45ABB5;	
}

#pricing-os .selected {
	background: rgba(115, 212, 199);
	color: #fff;	
}

#pricing-os p {
	cursor: pointer;
	transition: all .5s;
}

#pricing-os p:hover {
	background: rgba(115, 212, 199);
	color: #fff;
}