@font-face {
	font-family: OpenSans;
	src: local(OpenSans), url("./OpenSans-Regular.ttf") format("truetype");
}

@font-face {
	font-family: MavenPro;
	src: local(MavenPro), url("./MavenPro-Regular.ttf") format("truetype");
}

@font-face {
	font-family: MavenProBold;
	src: local(MavenProBold), url("./MavenPro-Bold.ttf") format("truetype");
}

@font-face {
	font-family: Iconia;
	src: local(Iconia), url("./IconiaLight.ttf") format("truetype");
}

body {
	margin: 0px;
	font-family: OpenSans;
}

h1 {
	font-size: 46px;
	margin: 25px 0px;
}

h2 {
	font-size: 40px;
	margin: 20px 0px;
}

h3 {
	font-size: 30px;
	margin: 15px 0px;
}

h4 {
	font-size: 27px;
	margin: 10px 0px;
}

h5 {
	font-size: 25px;
	margin: 5px 0px;
}

h6 {
	font-size: 22px;
	margin: 0px;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: MavenProBold;
	text-align: center;
	font-weight: normal;
	color: #3a5065;
}

p {
	font-size: 18px;
}

a {
	text-decoration: none;
	cursor: pointer;
	outline: 0;
	color: #4f5865;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#headband .text {
	font-size: 22px;
	text-align: center;
}

#contentContainer {
	min-height: 100vh;
	overflow: hidden;
	-webkit-transition: margin-top 0.3s ease-out;
	-moz-transition: margin-top 0.3s ease-out;
	-ms-transition: margin-top 0.3s ease-out;
	-o-transition: margin-top 0.3s ease-out;
	position: relative;
}

.button {
	cursor: pointer;
	border: 1px solid #c2c6ce;
	padding: 15px 70px;
	box-sizing: border-box;
	display: inline-block;
	margin: 15px;
	font-size: 20px;
	text-align: center;
}

.button:hover {
	border: 1px solid #3a5065;
}

.text {
	font-size: 20px;
	width: 80%;
	margin: 0% 10%;
}

.blocContainer {
	padding: 90px 0px 100px;
	box-sizing: border-box;
	text-align: center;
}

.centerContainer {
	max-width: 1300px;
	margin: auto;
	position: relative;
}

.required {
	font-size: 18px;
	color: #3a5065;
	position: absolute;
	z-index: 1;
	right: 10px;
}

#newDimensionContainer .buttonContainer {
	margin-top: 40px;
}

/****************************/
/******** Text Color ********/
/****************************/

.textBlack {
	color: #000000;
}
.textBlue {
	color: #00b1ab;
}

.textDarkBlue {
	color: #3a5065;
}

.textPurple {
	color: #51517a;
}

.textGold,
.textHoverGold:hover {
	color: #aea07e;
}

.textGrey {
	color: #2c3038;
}

.textClearGrey {
	color: #4f5865;
}

.textWhite {
	color: #ffffff;
}

.textClearRed {
	color: #ed4875;
}

.textDarkRed {
	color: #9c3618;
}

.textDark {
	color: #313131;
}

/***************************/
/******** TEXT SIZE ********/
/***************************/

.big {
	font-size: 36px;
}

.medium,
.mediumBold {
	font-size: 22px;
}

.small,
.smallBold,
.smallItalic {
	font-size: 18px;
}

.verySmall {
	font-size: 13px;
}

.mediumBold,
.smallBold,
.bold {
	font-weight: bold;
}

.noBold {
	font-weight: normal;
}

.smallItalic {
	font-style: italic;
}

/**********************/
/******** Icon ********/
/**********************/
:before,
:after,
.icon {
	font-family: Iconia;
}

/***********************/
/******** Arrows *******/
/***********************/

.leftArrow {
	display: inline-block;
	margin-left: 10px;
	vertical-align: top;
	cursor: pointer;
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 15px solid #d0dae4;
	margin-top: 40px;
	position: absolute;
	left: 10px;
	z-index: 12;
	top: 0px;
}

.rightArrow {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 15px solid #d0dae4;
	margin-top: 40px;
	position: absolute;
	right: 10px;
	margin-right: 10px;
	z-index: 12;
	top: 0px;
}

.bottomArrow {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	width: 0;
	height: 0;
	border-top: 25px solid #d0dae4;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	margin-top: 55px;
}

.leftArrow:hover {
	border-right-color: #ffffff;
}
.rightArrow:hover {
	border-left-color: #ffffff;
}

/**********************/
/******** check *******/
/**********************/
.checkContainer {
	display: inline-block;
	margin-right: 10px;
	background-color: #4f5865;
	border-radius: 15px;
	height: 20px;
	width: 20px;
	vertical-align: middle;
}
.check {
	left: 7px;
	top: 4px;
	width: 3px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: relative;
}

/**********************/
/******** FORM ********/
/**********************/
.formErrorMessage {
	color: #f53280;
	font-size: 20px;
	top: 11px;
	position: absolute;
	right: 20px;
	display: none;
	pointer-events: none;
}
.formContainerWithError .formTextFieldWithError {
	margin: 0px;
	background-color: rgba(245, 50, 128, 0.2) !important;
	color: #ff95c0 !important;
}
.formContainerWithError .icon {
	background-color: #f53280 !important;
	color: #ffffff !important;
}
.formContainerWithError .formErrorMessage {
	display: block;
}
.formContainerWithError .required {
	color: #f53280 !important;
}

/*****************************/
/******** PLAY BUTTON ********/
/*****************************/
.playButtonContainer {
	padding: 40px;
	box-sizing: border-box;
	border-radius: 40px;
	margin-right: 15px;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	position: absolute;
	left: calc(50% - 40px);
	top: calc(50% - 40px);
	transition: 0.2s ease-out;
}
.playButtonContainer .playButton {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 30px solid #ffffff;
	position: absolute;
	top: 21px;
	left: 30px;
	transition: 0.2s ease-out;
}

.videoContainer:hover .playButtonContainer {
	padding: 50px;
	border-radius: 50px;
	margin-right: 15px;
	left: calc(50% - 50px);
	top: calc(50% - 50px);
	transition: 0.1s ease-out;
}
.videoContainer:hover .playButtonContainer .playButton {
	top: 31px;
	left: 40px;
	transition: 0.1s ease-out;
}
.browserContainer {
	display: inline-block;
	width: calc(100% - 194px);
	vertical-align: top;
	position: relative;
	padding: 65px 10px 10px 10px;
	background-repeat: no-repeat;
	box-sizing: border-box;
	background-size: cover;
	cursor: pointer;
}

.tooltipPopup {
	position: absolute;
	z-index: 1000;
	width: 500px;
	background-color: rgba(0, 0, 0, 0.8);
	top: calc(50% - 50px);
	left: calc(50% - 250px);
	border: 1px solid #fff;
	color: #fff;
	text-align: justify;
	padding: 30px;
	box-sizing: border-box;
}
.tooltipPopup .quitIcon {
	position: absolute;
	font-family: Iconia;
	right: 10px;
	top: 10px;
	cursor: pointer;
}

/***********************************************************************************************/
/***********************************************************************************************/
/****************************** MEDIA QUERIES - Responsive Design ******************************/
/***********************************************************************************************/
/***********************************************************************************************/
@media screen and (max-width: 1200px) {
	.browserContainer {
		padding: 45px 10px 10px 10px;
	}
}
@media screen and (max-width: 910px) {
	/*********************************** GLOBAL STYLE ************************************/
	.blocContainer {
		padding: 30px 0px 60px;
	}

	.text {
		font-size: 16px;
	}

	h1 {
		font-size: 46px;
	}
	h2 {
		font-size: 33px;
	}
	h3 {
		font-size: 25px;
	}
	h4 {
		font-size: 22px;
	}
	h5 {
		font-size: 20px;
	}
	h6 {
		font-size: 18px;
	}
	p {
		font-size: 17px;
	}
	.browserContainer {
		padding: 25px 10px 10px 10px;
	}
	/*********************************** HEADER ************************************/
	#containerAllMenu .linkMenu {
		margin-right: 10px;
		margin-left: 10px;
		font-size: 17px;
		padding: 0px 0px;
	}

	/*********************************** SIGNIN ************************************/
	#containerSignInSignUp {
		padding-left: 10%;
		padding-right: 10%;
	}

	/*********************************** FOOTER ************************************/
	footer .newsLetterContainer,
	footer #privacyCopyright {
		padding: 0px 10px;
	}
	footer .footerSubContainer {
		padding: 10px;
	}
	footer .footerContainerFeatures,
	footer .footerContainerUseCases,
	footer .footerContainerResources,
	footer .footerContainerCompany {
		margin-left: 2%;
		width: 20%;
	}
	footer .footerContainerFeatures {
		width: 12%;
	}
}

@media screen and (max-width: 768px) {
	/*********************************** GLOBAL STYLE ************************************/

	.blocContainer {
		padding: 15px 0px;
	}

	h1 {
		font-size: 41px;
	}
	h2 {
		font-size: 29px;
	}
	h3 {
		font-size: 22px;
	}
	p {
		font-size: 16px;
	}
	.button {
		padding: 15px 55px;
	}
}

@media screen and (max-width: 499px) {
	/*********************************** GLOBAL STYLE ************************************/
	.button {
		padding: 10px;
		text-align: center;
	}

	#newDimensionContainer .buttonContainer .button {
		margin-left: 0px;
		display: block;
		width: 80%;
		margin: 25px auto;
	}

	p,
	.text {
		font-size: 16px;
	}
}
