/*** The new CSS Reset - version 1.4.2 (last updated 30.11.2021) ***/

/*
	Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
	- The "symbol *" part is to solve Firefox SVG sprite bug
*/
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	 
	/*font-size: 1px;*/
}
*:where(:not(iframe, canvas, img, svg, video, input, select):not(svg *, symbol *)) {
	all: unset;
	display: revert;
}

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

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img, video {
	max-width: 100%;
	height: auto;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* revert for bug in Chromium browsers
- fix for the content editable attribute will work properly. */
:where([contenteditable]){
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
}
/* /CSS Reset */

/* All */
:root {
	--main: #28acea;
	--gradient-first: #0a85c4;
	--gradient-second: #24bcc7;
	--gradient-third: #09ebee;
	--gray: #f2f6f6;
	--login-dot: 100px;
	--headline-xxl: 80px;
	--price: 80px;
	--headline-xl: 56px;
	--headline-l: 44px;
	--headline-m: 40px;
	--headline-s: 36px;
	--headline-xs: 30px;
	--big-text: 24px;
	--menu: 22px;
	--text: 20px;
	--text-s: 16px;
	--api-text: 13px;
}
body {
	unicode-bidi: embed;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.1;
	font-family: 'Prompt', sans-serif;
	color: #fff;
	word-break: break-word;
}
p {
	line-height: 1.5;
}
a {
	color: inherit;
	cursor: pointer;
}
button {
	cursor: pointer;
}
a:hover, a:focus {
	color: inherit;
	text-decoration: none;
}
iframe {
	max-width: 100%;
}
svg {
	max-width: 100%;
	height: auto;
}

.grid {
	padding-inline: 10%;
}
.gradient-text {
	display: inline-block;
	background-image: linear-gradient(to left, var(--gradient-third), var(--gradient-first) 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	transition: .5s background-position;
}

/* Header */
header {
	background-image: linear-gradient(to left, var(--gradient-first), var(--gradient-second) 50%);
	padding-block: 30px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-image: linear-gradient(to right, var(--gradient-first), var(--gradient-second)) 1;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
}
header .grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.logo {
	max-width: 250px;
}
.logo img {
	filter: brightness(0) invert(1);
}
.menu {
	display: flex;
	gap: 50px;
	font-size: var(--menu);
}
.menu-item a {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	gap: 5px;
	transition: .3s color;
}
.menu-item a:hover {
	color: #ffdd49;
	text-decoration: none;
}
.menu-item:last-child a {
	background-color: #00feef;
	border-radius: 20px;
	padding: 10px 30px;
	color: #000;
}
.navbar-toggle {
	display: none;
	width: 80px;
	height: 60px;
	background-color: #17a1c6;
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 8px;
}
.navbar-toggle.navbar-button-active {
	background-color: #fff;
}
.navbar-toggle.navbar-button-active .navbar-bar {
	background-color: #17a1c6;
}
.navbar-bar {
	width: 50%;
	background-color: #fff;
	border-radius: 20px;
	height: 3px;
	display: block;
}
.api-nav-mobile {
	display: none;
}

/* Main */
.top-banner {
	position: relative;
}
.top-banner-content {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.top-banner-headline {
	font-weight: 800;
	font-size: var(--headline-l);
}
.top-banner-text {
	margin-top: 30px;
}
.top-banner-button {
	color: #00fdee;
	border: 1px solid #00fdee;
	border-radius: 20px;
	padding: 15px 50px;
	margin-top: 50px;
	font-weight: 800;
	transition: .3s color, .3s border-color;
}
.top-banner-button:hover {
	border-color: #fff;
}
.hp-banner-img {
	position: absolute;
	right: 10%;
	animation: hpbanner 5s infinite ease-in-out;
	/*width: 450px;*/
	width: 25%;
}
@keyframes hpbanner {
	from {
		transform: translateY(0);
	}
	20% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(2%);
	}
	to {
		transform: translateY(0);
	}
}
#hp-features-tabs {
	display: flex;
	column-gap: 20px;
	margin-top: -50px;
	position: relative;
	flex-wrap: wrap;
}
#hp-features-tabs button {
	background-color: var(--gray);
	border-radius: 20px;
	text-align: center;
	padding: 20px 20px 40px 20px;
	color: #28acea;
	flex: 1 1 0;
	position: relative;
	transition: .3s color, .3s transform;
}
#hp-features-tabs button:not(.tab-active):hover {
	transform: translateY(10px);
}
#hp-features-tabs button.tab-active {
	background-image: linear-gradient(to bottom, var(--gradient-first), var(--gradient-second) 50%);
	color: #fff;
}
#hp-features-tabs button.tab-active .tab-headline {
	background-image: none;
	background-size: 100%;
	-webkit-background-clip: initial;
	-moz-background-clip: initial;
	-webkit-text-fill-color: initial;
	-moz-text-fill-color: initial;
}
#hp-features-tabs button.tab-active:before {
	content: "";
	z-index: 3;
	position: absolute;
	border-radius: 100%;
	height: 10px;
	width: 10px;
	background-color: #30b3e4;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 50%);
	border: 2px solid #fff;
}
#hp-features-tabs button.tab-active:after {
	content: "";
	width: 80%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 7px;
	box-shadow: 0 10px 30px 2px var( --gradient-second);
	z-index: 3;
}
.tab-icon {
	max-width: 50px;
	margin-inline: auto;
}
.tab-icon-img-active {
	display: none;
}
#hp-features-tabs button.tab-active .tab-icon-img {
	display: none;
}
#hp-features-tabs button.tab-active .tab-icon-img-active {
	display: block;
}
.tab-headline {
	font-size: var(--big-text);
	font-weight: 800;
	margin-top: 10px;
}
.tab-text {
	margin-top: 10px;
	line-height: 1.2;
}
.hp-features-content {
	margin-top: -20px;
	color: #000;
	border-radius: 20px;
	background-color: #fff;
	z-index: 1;
	position: relative;
}
.hp-features-tab {
	opacity: 0;
	z-index: -1;
	transition: .3s opacity;
	height: 0;
	display: flex;
	flex-direction: column;
	box-shadow: 0 30px 70px -50px #aec6c8;
	order: 10;
	color: #000;
	border-radius: 20px;
	background-color: #fff;
	z-index: 1;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.hp-features-tab.tab-content-active {
	opacity: 1;
	z-index: 2;
	height: 300px;
	order: 3;
	margin-top: -20px;
	overflow: unset;
}
.hp-features-tab p {
	width: 55%;
	padding: 40px 0 10px 70px;
	color: #4c6365;
}
.hp-features-tab img {
	width: 45%;
	position: absolute;
	right: 0;
	margin-top: 10px;
}
.hp-features-slogen {
	font-family: 'Red Hat Mono', monospace;
	color: var(--gradient-second);
	font-size: var(--headline-m);
	padding-left: 70px;
	letter-spacing: 10px;
	margin-top: auto;
	margin-bottom: 40px;
}
.hp-features-arrow {
	display: none;
}
.ultimate-section {
	margin-top: 100px;
	background-image: url('../../../img/newtheme/ultimate-bg.png');
	background-color: var(--gray);
	background-repeat: no-repeat;
	background-position: 5% bottom;
	background-size: 50% auto;
	padding-inline: calc(10% + 70px);
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	z-index: 1;
}
.ultimate-left {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 60%;
}
.ultimate-headline {
	font-weight: 800;
	font-size: var(--headline-s);
}
.ultimate-text {
	color: #000;
	margin-top: 30px;
}
.ultimate-right {
	width: 35%;
}
.reach-url-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}
.reach-left {
	background-image: linear-gradient(to left, var(--gradient-first), var(--gradient-second) 50%);
	padding: 50px 80px 50px calc(10% + 70px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.reach-headline {
	font-weight: 800;
	font-size: var(--headline-xs);
}
.reach-text {
	margin-top: 30px;
}
.reach-right img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.url-left img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.url-right {
	padding: 50px 80px 50px calc(10% + 70px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.url-headline {
	font-weight: 800;
	font-size: var(--headline-xs);
}
.url-text {
	margin-top: 30px;
	color: #000;
}
.api-section {
	padding-top: 70px;
	padding-bottom: 100px;
	text-align: center;
	background-color: var(--gray);
	background-image: url('../../../img/newtheme/api-bg.png');
	background-position: 60% 30%;
	background-size: 70%;
	background-repeat: no-repeat
}
.api-inner {
	/*width: 45%;*/
	max-width: 865px;
	margin-inline: auto;
}
.api-title {
	font-family: 'Red Hat Mono', monospace;
	letter-spacing: 8px;
	text-shadow: 0px 9px 21px rgba(221, 231, 233, 0.004);
	font-size: var(--headline-xxl)
}
.api-headline {
	margin-top: 30px;
	font-size: var(--headline-s);
	font-weight: 800;
}
.api-text {
	color: #000;
	margin-top: 20px;
	font-size: var(--big-text);
}
.api-box {
	background-color: #fff;
	margin-top: 40px;
	border-radius: 20px;
	color: #000;
	box-shadow: 0 30px 70px -50px #aec6c8;
	text-align: left;
}
.api-top {
	display: flex;
	justify-content: space-between;
}
.api-top-left {
	display: flex;
	width: 80%;
	gap: 30px;
	padding: 30px 0 0 50px;
}
.api-top-item {
	position: relative;
	padding-bottom: 30px;
	cursor: pointer;
	transition: .5s color;
}
.api-top-item:after {
	content: "";
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #3d76e0;
	display: block;
	opacity: 0;
	transition: .5s opacity;
}
.api-top-item.api-item-active {
	color: #3d76e0;
}
.api-top-item.api-item-active:after {
	opacity: 1;
}
.api-top-right {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #13d5eb;
	gap: 10px;
	cursor: pointer;
	transition: .3s transform;
}
.api-top-right:active {
	transform: scale(2);
}
.api-bottom {
	background-color: var(--gray);
	display: flex;
	flex-wrap: wrap;
	border-end-start-radius: 20px;
	border-end-end-radius: 20px;
}
.api-bottom-left {
	width: 80%;
	font-family: 'Red Hat Mono', monospace;
	word-break: break-all;
	font-size: var(--api-text);
}
.api-bottom-right {
	width: 20%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	height: 340px;
}
.api-type-item {
	height: 33%;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	background-image: linear-gradient(to right, var(--gradient-third), var(--gradient-first) 100%);
	color: #fff;
	font-weight: 800;
	transition: .3s color;
}
.api-type-item:last-child {
	border-end-end-radius: 20px;
}
.api-type-item.api-type-item-active {
	color: #ffdd49;
}
.api-bottom-code {
	padding: 30px;
}
/* Code */
pre[class*="language-"] {
	margin: 0;
}
.line-numbers .line-numbers-rows {
	border-right: none;
}
.line-numbers-rows > span:before {
	color: #13d5eb;
}
:not(pre) > code[class*="language-"], pre[class*="language-"] {
	background: unset;
}
/* /Code */

.api-wrapper {
	display: none;
}
.api-wrapper pre {
	display: none;
}
.api-wrapper.api-active {
	display: block;
}
.api-wrapper pre.api-language-active {
	display: block;
}

.pricing-section {
	background-image: linear-gradient(to left, var(--gradient-first), var(--gradient-second) 50%);
	padding-top: 70px;
}
.pricing-inner {
	display: flex;
	gap: 70px;
	background: url('../../img/newtheme/pricing-bg.png') right center no-repeat;
	background-size: contain;
	position: relative;
}
.pricing-headline {
	font-weight: 800;
	font-size: var(--headline-l);
}
.pricing-country {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 250px;
}
.pricing-country span {
	font-size: var(--big-text);
}
.pricing-select select {
	display: none;
}
.pricing-select ul {
	padding-left: 0px;
}
.pricing-select ul img, .pricing-select button img {
	width: 20px;
}
.pricing-select ul li {
	list-style: none;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 20px;
	cursor: pointer;
}
.pricing-select ul li:first-Child {
	border-start-start-radius: 20px;
	border-start-end-radius: 20px;
}
.pricing-select ul li:last-Child {
	border-end-start-radius: 20px;
	border-end-end-radius: 20px;
}
.pricing-select ul li:hover {
	background-color: #F4F3F3;
}
.pricing-select ul li img {
	margin: 5px;
}
.pricing-select ul li span, .pricing-select button li span {
	margin-left: 10px;
}

/* item list */
.pricing-ul {
	display: none;
	width: 100%;
	max-width: 330px;
	border-radius: 20px;
	position: absolute;
	background-color: #fff;
	color: #000;
	z-index: 1;
}
.pricing-ul.pricing-ul-active {
	display: block;
}
.pricing-select button {
	width: 100%;
	width: 330px;
	height: 50px;
	border-radius: 20px;
	background-color: #fff;
	color: #0f61ce;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* .pricing-select button:after {
	content: "";
	justify-self: end;
	width: 0.8em;
	height: 0.5em;
	background-color: #0f61ce;
	-webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
	clip-path: polygon(100% 0%, 0 0%, 50% 100%);
	grid-arfgv dszn	iv  bebvcxz	NNNNNNNNNNNNNNNNN  7;IKJKKMKHJIUJIT Ma: select;
	right: 20px;
	position: relative;
} */

.pricing-select button li {
	list-style: none;
	padding-bottom: 0;
	display: flex;
	align-items: center;
	padding-left: 20px;
}
.ppricing-select button:hover li {
	margin-left: 0;
}
.pricing-select button:hover {
	background-color: #F4F3F3;
	box-shadow: inset 0 0px 0px 1px #ccc;
}
.pricing-select button:focus {
	outline:none;
}
.pricing-image-bubbles {
	transform: translate(-70px, 50px);
	position: absolute;
	bottom: 0;
	width: 350px;
}
.pricing-right {
	margin-top: 95px;
	display: flex;
	flex-direction: column;
	align-items: flex-start
}
.pricing-right-top {
	font-weight: 800;
	font-size: var(--headline-xs);
}
.pricing-price {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}
.price-border {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	font-weight: 800;
	position: relative;
}
.price-border:after {
	content: "";
	background-image: url('../../../img/newtheme/price-border.png');
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	bottom: -10px;
	display: block;
	height: 7px;
}
.usd {
	font-size: var(--big-text);
	margin-bottom: 10px;
}
.price {
	font-size: var(--price);
	
}
.price-text {
	font-size: var(--big-text);
	margin-bottom: 10px;
}
.pricing-discount {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ffdd49;
	font-size: var(--text-s);
	border: 1px dashed #ffdd49;
	border-radius: 5px;
	padding: 5px 10px;
	margin-top: 40px;
}
.pricing-discount img {
	width: 20px;
}
.pricing-cta {
	margin-top: auto;
	padding: 10px 30px;
	background-color: #05fcee;
	border: 1px solid #05fcee;
	border-radius: 20px;
	color: #04675d;
	transform: translateY(50%);
	transition: .3s color, .3s border, .3s background-color;
}
.pricing-cta:hover {
	color: #04675d;
	background-color: #fff;
	text-decoration: none;
}

/* Footer */
footer {
	margin-top: 120px;
	color: #000;
	display: flex;
	justify-content: space-between;
	padding-left: calc(10% + 70px);
	padding-right: calc(10% + 70px);
	padding-bottom: 50px;
	font-size: var(--text-s);
}
footer ul {
	display: flex;
	gap: 30px;
}
footer ul a {
	transition: .3 color;
}
footer ul a:hover {
	color: #3d76e0;
	text-decoration: none;
}
.footer-right{
	text-align: center;
}
.footer-right small{
	color:grey;
	font-size: 12px;
}
/* Login page */
.login-main {
	background-image: linear-gradient(to left, var(--gradient-first) 0%, var(--gradient-second) 50%, var(--gray) 50%, var(--gray) 100%);
	padding: 70px 0;
	display: flex;
	flex-wrap: wrap;
}
.login-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin-inline: auto;
	box-shadow: 0 30px 70px -50px #aec6c8;
	color: #000;
	background-image: linear-gradient(to left, #2abcc7 0%, #2abcc7 50%, #fff 50%, #fff 100%);
	border-radius: 20px;
}
.login-left {
	width: 50%;
	padding-block: 70px;
}
.social-wrapper{
	margin-top: 1.5em;
}
.social-login{
	padding: 0.4em;
}
.social-wrapper b{
	font-weight: 800;
}
.login-left-inner {
	padding-right: 33%;
	margin-left: 70px;
	color: #000;
}
.login-title {
	font-weight: 800;
	font-size: var(--headline-xl);
	background-image: linear-gradient(to right, var(--gradient-third), var(--gradient-first) 100%);
}
.login-subtitle {
	margin-top: 16px;
}
.social-login{
	padding: 0.4em;
}
.form-group {
	border: 1px solid #e4ecec;
	border-radius: 20px;
	position: relative;
	margin-top: 40px;
}
.form-group>label {
	position: absolute;
	top: -8px;
	left: 20px;
	background-color: #fff;
	padding-inline: 3px;
	color: #a7b8b8;
	font-weight: 500;
}
.form-group>input {
	border: none;
	width: 100%;
	height: 55px;
}
.form-control {
	padding: 20px;
	background-color: transparent;
	-webkit-box-shadow: inset 0 0px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 0px 1px rgb(0 0 0 / 8%);
}
.form-control:focus {
    border-color: #66afe900;
    outline: 0;
    -webkit-box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 0%);
}
.form-control:focus-within {
	outline: none;
}
.login-button {
	background-color: #2abcc7;
	border: none;
	border-radius: 20px;
	font-size: var(--big-text);
	color: #fff;
	margin-top: 40px;
	padding-block: 10px;
	width: 100%;
	text-align: center;
	font-family: 'Prompt', sans-serif;
	font-weight: 300;
	transition: .3s background-color, .3s color;
	border: 1px solid #2abcc7;
	cursor: pointer;
}
.login-button:hover {
	background-color: transparent;
	color: #2abcc7;
}
.login-forgot {
	margin-top: 40px;
	text-align: center;
}
.login-forgot a {
	color: #2abcc7;
	transition: .3s color;
}
.login-forgot a:hover {
	color: #000;
}
.login-signup {
	margin-top: 100px;
}
.login-signup a {
	color: #2abcc7;
	transition: .3s color;
}
.login-signup a:hover {
	color: #000;
}
.login-right {
	width: 50%;
	padding: 120px 70px;
	color: #fff;
	position: relative;
}
.login-right-title {
	font-size: var(--headline-xl);
	letter-spacing: 5px;
}
.login-right-title .login-dot {
	color: #ffdd49;
	font-size: var(--login-dot);
	margin-left: 5px;
}
.login-right-subtitle {
	margin-top: 50px;
	font-size: var(--text);
	font-weight: 300;
	position: relative;
    z-index: 1;
}
.login-right-link {
	display: inline-block;
	color: #ffdd49;
	margin-top: 20px;
	font-size: var(--text);
	font-weight: 500;
	border-bottom: 1px solid #ffdd49;
}
.login-right img {
	position: absolute;
	bottom: -40px;
	right: 20px;
	width: 70%;
}
.login-right img {
	animation: hpbanner 5s infinite ease-in-out;
}

/* Signup */
.signup-main {
	background-color: var(--gray);
	padding: 70px 0;
	display: flex;
	flex-wrap: wrap;
	color: #000;
}
.signup-wrapper {
	width: 80%;
	margin-inline: auto;
	box-shadow: 0 30px 70px -50px #aec6c8;
	border-radius: 20px;
	background-color: #fff;
	padding: 70px;
	background-image: url('../../../img/newtheme/signup.png');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 50%;
}
.signup-title {
	font-weight: 800;
	font-size: var(--headline-xl);
	background-image: linear-gradient(to right, var(--gradient-third), var(--gradient-first) 100%);
}
.signup-subtitle {
	margin-top: 30px;
}
.signup-form {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	gap: 3.3%;
}
.signup-form .form-group {
	width: 30%;
}
.agree-text {
	padding-left: 40px;
	font-family: 'Prompt', sans-serif;
    font-weight: normal;
	font-size: 17px !important;
}

/* Hide the browser's default checkbox */
.form-agree input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	margin: 0;
	padding: 0;
}

/* Create a custom checkbox */
.agree-checkbox {
	position: absolute;
	left: 0;
	height: 25px;
	width: 25px;
	border-radius: 6px;
	border: 1px solid #b8bbbb;
}

/* On mouse-over, add a grey background color */
.form-agree:hover input ~ .agree-checkbox {
	background-color: #e4ecec;
}

/* When the checkbox is checked, add a blue background */
.form-agree input:checked ~ .agree-checkbox {
	background-color: #2abcc7;
}

/* Create the checkmark/indicator (hidden when not checked) */
.agree-checkbox:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.form-agree input:checked ~ .agree-checkbox:after {
	display: block;
}
.form-agree .agree-checkbox:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-agree {
	margin-top: 30px;
	position: relative;
	cursor: pointer;
}
.form-agree label {
	display: flex;
	align-items: center;
}
.form-agree a {
	color: #2abcc7;
}
.signup-button {
	background-color: #2abcc7;
	border: none;
	border-radius: 20px;
	font-size: var(--big-text);
	color: #fff;
	margin-top: 40px;
	padding-block: 10px;
	width: 100%;
	text-align: center;
	font-family: 'Prompt', sans-serif;
	font-weight: 300;
	width: 30%;
	transition: .3s background-color, .3s color;
	cursor: pointer;
	border: 1px solid #2abcc7;
}
.signup-button:hover {
	background-color: transparent;
	color: #2abcc7;
}

/* Knowledge */
.knowledge-main .top-banner-content {
	align-items: center;
}
.knowledge-search {
	width: 30%;
}
.knowledge-search form {
	display: flex;
	border-radius: 20px;
	background-color: #fff;
	margin-top: 40px;
}
.knowledge-search input {
	background-color: transparent;
	border: none;
	padding: 15px 20px;
	width: 100%;
}
.knowledge-search input:focus-within {
	outline: none;
}
.knowledge-search button {
	font-size: 0;
	flex: 1 0 auto;
	width: 15px;
	margin-right: 20px;
}
.knowledge-explore {
	width: 80%;
	margin-inline: auto;
	box-shadow: 0 30px 70px -50px #aec6c8;
	border-radius: 20px;
	background-color: #fff;
	padding: 70px;
	text-align: center;
	transform: translateY(-50px);
	color: #000;
}
.knowledge-title {
	font-weight: 800;
	font-size: var(--headline-m);
}
.knowledge-subtitle {
	margin-top: 30px;
}
.knowledge-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 3.3%;
}
.knowledge-item {
	border: 1px solid #e4ecec;
	border-radius: 20px;
	position: relative;
	margin-top: 40px;
	width: 30%;
	text-align: left;
	padding: 50px;
	position: relative;
}
.knowledge-item-title {
	position: absolute;
	background-color: #fff;
	top: -8px;
	left: 20px;
	padding-inline: 3px;
	color: #1051cb;
	font-weight: 500;
}
.knowledge-item-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: var(--text-s);
	margin-top: 20px;
}
.knowledge-button {
	display: block;
	margin-top: 30px;
	text-align: center;
	border: double 1px transparent;
	border-radius: 20px;
	background-image: linear-gradient(white, white), linear-gradient(to left, var(--gradient-third), var(--gradient-first) 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
}
.knowledge-button a {
	padding-block: 10px;
}
.knowledge-register {
	background-image: linear-gradient(to left, var(--gradient-first), var(--gradient-second) 50%);
	padding-top: 70px;
	text-align: center;
}
.knowledge-register-inner {
	position: relative;
}
.knowledge-register-title {
	font-weight: 800;
	font-size: var(--headline-m);
}
.knowledge-register-subtitle {
	margin-top: 30px;
}
.knowledge-register-image-bubbles {
	transform: translate(-70px, 50px);
	position: absolute;
	bottom: 0;
	width: 350px;
}
.knowledge-register-button {
	display: inline-block;
	padding: 10px 70px;
	background-color: #05fcee;
	border-radius: 20px;
	color: #04675d;
	margin-top: 50px;
	margin-bottom: 70px;
	border: 1px solid #05fcee;
	transition: .3s background-color;
}
.knowledge-register-button:hover {
	color: #04675d;
	background-color: #fff;
}
#people-anim {
	width:100%;
	height:100%;
	/*display:block;
	overflow: hidden;
	transform: translate3d(0,0,0);
	text-align: center;
	opacity: 1;*/
}
/* Engagement */
.engagement-main .top-banner-content {
	align-items: center;
}
.engagement-section {
	width: 1520px;
	max-width: 95%;
	margin-inline: auto;
	box-shadow: 0 30px 70px -50px #aec6c8;
	border-radius: 20px;
	background-color: #fff;
	padding: 70px 50px 120px 50px;
	text-align: center;
	transform: translateY(-50px);
	color: #000;
}
.engagement-top-text {
	font-family: 'Red Hat Mono', monospace;
	text-align: center;
	text-shadow: 0 0 18px #00feef,
		0 0 18px #00feef,
		0 0 18px #00feef;
	font-size: var(--headline-s);
}
.engagement-top-headline {
	font-size: var(--headline-xl);
	margin-top: 30px;
	font-weight: bold;
	text-align: center;
	background-image: url('../../img/newtheme/lp/animated-text-fill.png');
	background-repeat: repeat-y;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	transform: translate3d(0,0,0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	animation: engagementtitle 60s linear infinite;
	position: relative;
}
@keyframes engagementtitle {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}
.engagement-top-button {
	border-radius: 30px;
	border: 2px solid #00feef;
	color: #00feef;
	padding: 15px 60px;
	font-weight: bold;
	margin-top: 30px;
	font-size: var(--text);
}
.engagement-top-button:hover {
	background-color: #00feef;
	color: #000;
	transition: .3s color, .3s background-color;
}
.engagement-title {
	font-size: var(--headline-xs);
	font-weight: 800;
	margin-top: 50px;
	position: relative;
	padding-bottom: 30px;
}
.engagement-title:before {
	content: "";
	position: absolute;
	top: 50px;
	border-radius: 100%;
	width: 11px;
	height: 11px;
	display: block;
	background-image: linear-gradient(to left, var(--gradient-third), var(--gradient-first) 100%);
	border: 3px solid #fff;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.engagement-title:after {
	content: "";
	position: absolute;
	top: 40px;
	left: 15%;
	width: 70%;
	height: 15px;
	display: block;
	box-shadow:
		-6px 0 #fff,
		6px 0 #fff,
		0 15px 10px -3px #e8f5fc;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.engagement-grid {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 3%;
}
.engagement-item {
	position: relative;
	width: 22%;
	/* perspective: 1000px; */
	/* pointer-events: none; */
	aspect-ratio: 50 / 27;
	background-color: transparent;
}
.engagement-item-image {
	position: absolute;
	top: -30px;
	right: -50px;
	width: 80%;
}
.engagement-item-text {
	position: absolute;
	top: 30px;
	left: 30px;
	color: #fff;
	font-weight: bold;
	text-align: left;
	font-size: var(--text);
}
#engagement-item-1-1 .engagement-item-image {
	top: 0;
	width: 100%;
}
#engagement-item-2-1 .engagement-item-image {
	width: 90%;
	top: 0;
}
#engagement-item-2-2 .engagement-item-image {
	width: 90%;
}
#engagement-item-3-1 .engagement-item-image {
	width: 90%;
	top: 30px;
}
#engagement-item-3-2 .engagement-item-image {
	width: 60%;
	top: -20px;
	right: -30px;
}
#engagement-item-3-3 .engagement-item-image {
	width: 90%;
	top: 0;
}
#engagement-item-3-4 .engagement-item-image {
	top: -10px;
}
.engagement-bottom-button {
	background-color: #ffdd49;
	color: #1051cb;
	font-weight: bold;
	font-size: var(--text);
	border-radius: 40px;
	padding: 20px 60px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	transition: .3s color, .3s background-color;
}
.engagement-bottom-button:hover {
	color: #ffdd49;
	background-color: #1051cb;
}
.engagement-item-inner {
	position: relative;
	width: 100%;
	height: 100%;
/* 	transition: transform 0.8s;
	transform-style: preserve-3d; */
}
/* .engagement-item:hover .engagement-item-inner,
.engagement-item:active .engagement-item-inner,
.engagement-item:focus .engagement-item-inner,
.engagement-item:focus-within .engagement-item-inner {
	transform: rotateY(180deg);
}
.engagement-item-front,
.engagement-item-hover {
	position: absolute;
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	pointer-events: auto;
} */
.engagement-item:hover .engagement-item-hover {
	transform: scale(1);
}
.engagement-item-hover {
	/* transform: rotateY(180deg); */
	transform: scale(0);
    transition: .3s transform;
	background-image: linear-gradient(to top right, #1051cb 60%, #0ac9e6 100%);
	box-shadow: 0 30px 70px -50px #4172cf;
	border-radius: 20px;
	color: #fff;
	position: absolute;
	width: 120%;
	height: 120%;
	left: -10%;
	top: -10%;
}
.engagement-item-hover:after {
	content: "";
	background-image: url('../../img/newtheme/lp/engagement-bubble.png');
	display: block;
	position: absolute;
	opacity: .3;
	left: 25px;
	top: 0;
	width: 50%;
	aspect-ratio: 142/61;
	background-size: contain;
	background-repeat: no-repeat;
}
.engagement-item-hover-inner {
	position: relative;
}
.engagement-item-hover-text-wrap {
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	align-items: center;
	justify-content: center;
	padding: 25px;
	flex-direction: column;
}
.engagement-item-hover-text-wrap.rs-wrap {
    padding: 17px;
}
.engagement-item-hover-headline {
	color: #00feef;
	font-size: var(--text);
	font-weight: bold;
}
.engagement-item-hover-text {
	margin-top: 15px;
	font-size: var(--text-s);
}
.engagement-item-hover-text.rs-text {
    margin-top: 8px;
}
.engagement-item-arrow, .engagement-popup {
	display: none;
}
/* Screens */
@media(max-width: 1536px) {
	:root {
		--headline-l: 40px;
		--big-text: 22px;
		--headline-s: 30px;
		--headline-xs: 28px;
	}
	body {
		font-size: 17px;
	}
	.top-banner-button {
		margin-top: 40px;
	}
	#hp-features-tabs {
		margin-top: -40px;
		column-gap: 10px;
	}
	#hp-features-tabs button {
		padding: 20px 10px 40px 10px
	}
	.hp-features-tab.tab-content-active {
		height: 320px;
	}
	.hp-features-tab p {
		padding-left: 40px;
	}
	.hp-features-tab img {
		margin-top: 70px;
	}
	.hp-features-slogen {
		padding-left: 40px
	}
	.api-section {
		background-size: auto;
	}
	.login-left-inner {
		padding-right: 20%;
	}
}
@media(max-width: 1440px) {
	:root {
		--menu: 20px;
		--headline-m: 36px;
	}
	.ultimate-section {
		padding-inline: calc(10% + 40px);
	}
	.reach-left {
		padding-left: calc(10% + 40px)
	}
	.url-right {
		padding-left: calc(10% + 40px)
	}
	footer {
		padding-inline: calc(10% + 40px);
	}
}
@media(max-width: 1440px) {
	:root {
		--headline-m: 36px;
	}
	.knowledge-item {
		padding: 30px;
	}
}
@media(max-width: 1366px) {
	:root {
		--headline-xl: 40px;
		--headline-l: 34px;
		--headline-m: 30px;
	}
	.menu {
		gap: 0;
	}
	.top-banner-text {
		margin-top: 20px;
	}
	.top-banner-button {
		margin-top: 20px;
	}
	#hp-features-tabs {
		margin-top: -20px;
	}
	.grid {
		padding-inline: 5%;
	}
	.hp-banner-img {
		right: 5%;
	}
	.ultimate-section {
		padding-inline: calc(5% + 40px);
		background-position: 2% bottom;
		background-size: 35% auto;
	}
	.reach-left {
		padding-left: calc(5% + 40px)
	}
	.url-right {
		padding-left: calc(5% + 40px)
	}
	footer {
		padding-inline: calc(5% + 40px);
	}
	.hp-features-tab.tab-content-active {
		height: 365px;
	}
	.hp-features-tab img {
		margin-top: 200px;
	}
	.knowledge-search form {
		margin-top: 20px;
	}
	.knowledge-explore {
		transform: translateY(-30px);
	}
	.engagement-item {
		width: 240px;
	}
	.engagement-item-text {
		top: 20px;
		left: 20px;
	}
	.engagement-top-button {
		margin-top: 20px;
	}
}
@media(max-width: 1280px) {
	.engagement-item {
		width: 200px;
	}
	.engagement-item-text {
		font-size: var(--text-s);
	}
	.engagement-top-headline {
		margin-top: 20px;
	}
}
@media(max-width: 1024px) {
	.navbar-toggle {
		display: flex;
	}
	.menu {
		display: none;
		position: absolute;
		top: calc(100% + 3px);
		left: 0;
		width: 100%;
		background-color: #17a1c6;
		padding-bottom: 20px;
	}
	.menu-item a {
		padding: 20px;
	}
	.menu-item:last-child {
		margin-top: 10px;
		width: 80%;
		margin-inline: auto;
	}
	.menu-item:last-child a {
		justify-content: center;
	}
	.top-banner-img video, .top-banner-img img {
		height: 300px;
		object-fit: cover;
	}
	.hp-banner-img {
		right: 0;
		width: 300px;
	}
	#hp-features-tabs button {
		width: 100%;
		flex: unset;
		text-align: left;
		margin-top: 40px;
		box-shadow: 0 30px 70px -50px #aec6c8;
		display: flex;
	}
	.tab-headline {
		margin-top: 0;
	}
	.hp-features-tab {
		order: initial;
	}
	.hp-features-tab.tab-content-active {
		order: initial;
	}
	#hp-features-tabs {
		margin-top: 0;
	}
	.hp-features-tab p {
		width: 100%;
	}
	.hp-features-tab img {
		width: 100%;
		margin-top: 0;
		position: static;
	}
	.hp-features-slogen {
		display: none;
	}
	.hp-features-tab.tab-content-active {
		height: auto;
	}
	.tab-icon {
		margin-right: 20px;
		margin-left: 0;
	}
	#hp-features-tabs button.tab-active:before, #hp-features-tabs button.tab-active:after {
		display: none;
	}
	.hp-features-arrow {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		background-color: #fff;
		border-radius: 100%;
		transform: translateY(-50%);
		z-index: 3;
		margin-left: auto;
		margin-right: auto;
		transition: .3s transform;
	}
	.tab-content-active+.hp-features-arrow {
		background-color: var(--gray);
		transform: translateY(-50%) rotate(180deg);
	}
	.ultimate-section {
		background-image: none;
		padding: 5%;
	}
	.ultimate-left {
		width: 100%;
	}
	.ultimate-right {
		width: 100%;
	}
	#people-anim {
		max-width: 500px;
		margin-inline: auto;
		margin-top: 20px;
	}
	.reach-right {
		display: none;
	}
	.url-left {
		display: none;
	}
	.reach-url-section {
		display: block;
	}
	.reach-left, .url-right {
		padding: 5%;
	}
	.pricing-inner {
		background: none;
	}
	footer {
		display: block;
		text-align: center;
	}
	.footer-right {
		margin-top: 20px;
	}
	footer ul {
		justify-content: center;
		gap: 0;
		flex-wrap: wrap;
	}
	footer ul li {
		padding: 10px 15px;
	}
	.pricing-inner {
		display: block;
	}
	.pricing-right {
		margin-top: 40px;
	}
	.pricing-country {
		margin-bottom: 0;
	}
	.pricing-image-bubbles {
		display: none;
	}
	.pricing-cta {
		width: 100%;
		text-align: center;
	}
	.login-main {
		background-image: none;
	}
	.login-wrapper {
		background-image: none;
	}
	.login-left {
		width: 100%;
		background-color: #fff;
		padding: 50px;
	}
	.login-right {
		width: 100%;
		background-color: #2abcc7;
		padding: 50px;
		text-align: center;
	}
	.login-right img {
		display: none;
	}
	.login-left-inner {
		padding-right: 0;
		margin-left: 0;
		text-align: center;
	}
	.login-signup {
		margin-top: 20px;
	}
	.signup-wrapper {
		background-image: none;
		text-align: center;
	}
	.signup-form {
		display: block;
		width: 100%;
	}
	.form-agree label {
		align-items: flex-start;
		text-align: left;
	}
	.signup-form .form-group {
		width: 100%;
	}
	.knowledge-grid {
		display: block;
	}
	.knowledge-item {
		width: 100%;
	}
	.knowledge-register-image-bubbles {
		bottom: auto;
		transform: translateX(-50%);
		top: -50%;
		left: 50%;
		width: 200px;
	}
	.knowledge-register {
		margin-top: 50px;
	}
	.api-inner {
		width: 100%;
	}
	.api-title, .api-headline, .api-text, .api-box {
		margin-inline: 5%;
	}
	.api-bottom-right {
		display: none;
	}
	.api-bottom-left {
		width: 100%;
	}
	.api-nav-mobile {
		display: flex;
		flex-wrap: wrap;
		background-image: linear-gradient(to right, var(--gradient-third), var(--gradient-first) 100%);
		margin-top: 20px;
	}
	.api-type-item {
		width: calc(100% / 3);
		background-image: none;
		padding-block: 30px;
	}
	.api-type-item.api-type-item-active {
		background-color: #0b86c4;
	}
	.knowledge-explore {
		transform: none;
		box-shadow: none;
		background-color: transparent;
	}
	.signup-button {
		width: 100%;
	}
	.engagement-section {
		transform: none;
		box-shadow: none;
		max-width: 100%;
		padding-block: 0;
	}
	.engagement-title {
		font-size: var(--headline-xs);
	}
	.engagement-item {
		background-image: linear-gradient(to top right, #1051cb, #0ac9e6 80%);
		width: 100%;
		border-radius: 20px;
		padding: 30px;
		min-height: 130px;
		display: flex;
		align-items: center;
		aspect-ratio: unset;
		margin-top: 20px;
	}
	.engagement-item:hover .engagement-item-inner,
	.engagement-item:active .engagement-item-inner,
	.engagement-item:focus .engagement-item-inner,
	.engagement-item:focus-within .engagement-item-inner {
		transform: none;
	}
	.engagement-item-inner {
		display: flex;
		align-items: center;
	}
	.engagement-item-hover {
		display: none;
	}
	.engagement-item-image {
		display: none;
	}
	.engagement-item-text {
		font-size: var(--headline-s);
		position: static;
	}
	.engagement-item-bg {
		display: none;
	}
	/*.engagement-item-bg img {
		opacity: 0;
	}*/
	.engagement-bottom-button {
		position: static;
		transform: none;
		display: block;
		margin-top: 20px;
	}
	.engagement-bottom-button span {
		display: none;
	}
	.engagement-item-arrow {
		position: absolute;
		right: 20px;
		top: 50%;
		width: 70px;
		height: 70px;
		transform: translateY(-50%);
		background-color: var(--gray);
		border-radius: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.engagement-popup {
		position: fixed;
		background-image: linear-gradient(to top right, #1051cb, #0ac9e6 90%);
		z-index: 11;
		width: 80vw;
		height: 50vh;
		min-width: 300px;
		min-height: 300px;
		top: 20vh;
		left: 50%;
		transform: translateX(-50%);
		padding: 70px 50px;
		border-radius: 20px;
		box-shadow: 0 30px 70px -50px #000;
	}
	.engagement-popup:after {
		content: "";
		background-image: url('../../img/newtheme/lp/engagement-bubble.png');
		display: block;
		position: absolute;
		opacity: .3;
		left: 25px;
		top: 0;
		width: 50%;
		aspect-ratio: 142/61;
		background-size: contain;
		background-repeat: no-repeat;
		z-index: -1;
	}
	.engagement-overlay {
		display: none;
		background: rgba(5, 27, 68, .8);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
	}
	.engagement-popup-close {
		position: absolute;
		left: 50%;
		top: 0;
		width: 50px;
		height: 50px;
		border-radius: 100%;
		background-color: #00feef;
		transform: translate(-50%, -50%);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.engagement-popup-close:after {
		content: "\00d7";
		font-size: 80px;
	}
	.engagement-popup-title {
		color: #00feef;
		font-size: var(--headline-s);
		font-weight: bold;
	}
	.engagement-popup-text {
		margin-top: 20px;
		color: #fff;
		font-size: var(--big-text);
		line-height: 1.5;
	}
	.engagement-popup-image {
		width: 100%;
	}
	.engagement-popup-image img {
		max-width: 70%;
		max-height: 70%;
		width: auto;
		height: auto;
	}
}
@media(max-width: 768px) {
	:root {
		--headline-xxl: 70px;
	}
	.top-banner-content {
		overflow: hidden;
	}
	.hp-banner-img {
		right: -100px;
	}
	.knowledge-explore {
		width: 100%;
	}
	header{
		padding-block: 5px;
	}
}
@media(max-width: 720px) {
	:root {
		--headline-xxl: 60px;
	}
	.api-title {
		letter-spacing: 6px;
	}
}
@media(max-width: 640px) {
	:root {
		/*
		--login-dot: 100px;
		--headline-xxl: 50px;
		--headline-xl: 40px;
		--headline-l: 34px;
		--headline-m: 30px;
		--headline-s: 30px;
		--headline-xs: 28px;
		--big-text: 22px;
		--menu: 20px;
		--text: 20px;
		--text-s: 16px;
		--api-text: 12px;
		*/
		--headline-xxl: 50px;
	}
	.top-banner-content {
		padding-right: 30%;
	}
	.top-banner-img video, .top-banner-img img {
		height: 350px;
	}
	.api-title {
		letter-spacing: 4px;
	}
	.api-top-left {
		width: 70%;
	}
	.api-top-right {
		width: 30%;
	}
	.api-bottom-code {
		padding: 0;
	}
	.pricing-select button, .bootstrap-select {
		width: 280px;
	}
	.login-wrapper {
		width: 90%;
	}
	.knowledge-search {
		width: 100%;
	}
	.knowledge-explore {
		padding: 5%;
	}
	.signup-wrapper {
		width: 90%;
		padding: 50px;
	}
	.login-left, .login-right {
		padding: 30px;
	}
	.engagement-item-text {
		font-size: 24px;
	}
	.engagement-popup-text {
		font-size: 20px;
	}
	.engagement-item-arrow {
		width: 50px;
		height: 50px;
	}
	.engagement-item-arrow img {
		max-width: 15px;
	}
	.engagement-popup-image img {
		max-width: 100%;
	}
	.engagement-popup-title {
		font-size: 24px;
	}
	.engagement-main .top-banner-content {
		padding-inline: 5%;
	}
}
@media(max-width: 480px) {
	:root {
		/*
		--login-dot: 100px;
		--headline-xxl: 40px;
		--headline-xl: 40px;
		--headline-l: 34px;
		--headline-m: 30px;
		--headline-s: 30px;
		--headline-xs: 28px;
		--big-text: 22px;
		--menu: 20px;
		--text: 20px;
		--text-s: 16px;
		--api-text: 12px;
		*/
		--headline-xxl: 40px;
		--headline-xl: 36px;
	}
	.pricing-country span {
		flex: 1 0 auto;
	}
	footer, .ultimate-section {
		padding-inline: 5%;
	}
	.reach-left, .url-right {
		padding-left: 5%;
	}
	.pricing-price {
		margin-top: 10px;
	}
	.login-left, .login-right {
		padding-inline: 5%;
	}
	.login-signup a {
		display: block;
	}
	.signup-wrapper {
		padding: 5%;
	}
	.price{
		font-size: 50px;
	}
	.engagement-section {
		padding-inline: 30px;
	}
	.engagement-popup {
		padding-inline: 30px;
	}
}
@media(max-width: 412px) {
	body {
		font-size: 16px;
	}
	.logo {
		max-width: 200px;
	}
	.hp-banner-img {
		width: 250px;
	}
	.pricing-country {
		display: block;
	}
	.pricing-select {
		margin-top: 10px;
	}
	.api-type-item {
		font-size: 15px;
	}
	.bootstrap-select{
		width: 100% !important;
	}
	.engagement-item-text {
		font-size: 22px;
	}
	.engagement-item {
		padding: 20px;
	}

}

@media(max-width: 350px) {
	body {
		font-size: 14px;
	}
	.logo {
		max-width: 175px;
	}
	.grid {
		padding-inline: 3%;
	}
	.navbar-toggle{
		width: 60px;
		height: auto;
	}
	.login-right-title{
		line-height: .6;
	}
	.signup-title{
		font-size: 29px;
	}
	.hp-banner-img {
		width: 200px;
	}
	
	.pricing-country {
		display: block;
	}
	.pricing-select {
		margin-top: 10px;
	}
	.api-type-item {
		font-size: 14px;
	}
	.bootstrap-select{
		width: 100% !important;
	}
	.price {
		font-size: 35px;
	}
	.pricing-right-top{
		font-size: 24px;
	}

	

}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    z-index: 1000;
    overflow: hidden;
    position: absolute;
	left: 20px;
}
.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 0px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 0px 1px rgb(0 0 0 / 8%);
}
.has-error .form-control:focus {
    border-color: #84353400;
    -webkit-box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%), 0 0 6px #ce848300;
    box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%), 0 0 6px #ce848300;
}
.form-group.field-loginform-email.required.has-error {
    margin-bottom: 22%;
}
.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%);
    box-shadow: inset 0 0px 0px rgb(0 0 0 / 8%);
}
.terms-wraper {
	margin: 0 3%;
	color: black;
}
.top-margin{
	margin-top: 1em;
}
.modal-content {
	color: black;
}

.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: 0;
}

.help-block.help-block-error {
	font-size: 16px;
}

.modal-backdrop {
	display: none !important;
}

.modal-content ol {
	margin-left: 10px;
	list-style: initial;

}
.bootstrap-select{
	width: 315px;
}
.btn.dropdown-toggle{
	font-size: 15px;
	padding:13px 12px ;
}	

.form-group.captcha-wrapper {
    border: none;
}
	

.footer-left {
    padding-top: 8%;
}
.footer-right .row{
	padding-bottom: 15px;
}
