@charset "UTF-8";

@font-face {
    font-family:'Futura Bold';
    src: url('../font/FuturaBold.eot');
	src: url('../font/FuturaBold.eot?#iefix') format('embedded-opentype'),
		url('../font/FuturaBold.woff2') format('woff2'),
		url('../font/FuturaBold.woff') format('woff'),
		url('../font/FuturaBold.svg#FuturaBold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-02DC;
}
@font-face {
    font-family:'Futura Light';
    src: url('../font/FuturaLight.eot');
	src: url('../font/FuturaLight.eot?#iefix') format('embedded-opentype'),
		url('../font/FuturaLight.woff2') format('woff2'),
		url('../font/FuturaLight.woff') format('woff'),
		url('../font/FuturaLight.svg#FuturaLight') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}
@font-face {
    font-family:'Futura';
    src: url('../font/FuturaMedium.eot');
	src: url('../font/FuturaMedium.eot?#iefix') format('embedded-opentype'),
		url('../font/FuturaMedium.woff2') format('woff2'),
		url('../font/FuturaMedium.woff') format('woff'),
		url('../font/FuturaMedium.svg#FuturaMedium') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

*,
*:before,
*:after {
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
}
html,
body {
	margin: 0;
	padding: 0
}
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
	color: white;
}
a:focus,
a:hover {
	color: #ccc;
}
body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	min-height: 100vh;
	position: relative;
	font-family: 'Futura Light', Arial, sans-serif;
	font-size: 19px;
	color: white;
	background: rgb(1,1,5);
	background: -moz-linear-gradient(45deg, rgba(1,1,5,1) 0%, rgba(39,28,79,1) 37%, rgba(71,60,143,1) 60%, rgba(234,135,14,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(1,1,5,1) 0%,rgba(39,28,79,1) 37%,rgba(71,60,143,1) 60%,rgba(234,135,14,1) 100%);
	background: linear-gradient(45deg, rgba(1,1,5,1) 0%,rgba(39,28,79,1) 37%,rgba(71,60,143,1) 60%,rgba(234,135,14,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#010105', endColorstr='#ea870e',GradientType=1 );
}
img {
	max-width: 100%;
	border: 0;
}
.font-bold {
	font-family:'Futura Bold';
}
.font-medium {
	font-family:'Futura';
}
.container {
	margin-top: 100px;
	z-index: 2;
	text-align: center;
	position: relative;
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
			transform-style: preserve-3d;
}
.spaced {
	margin-top: 40px;
}
.line-minor > * {
	line-height: 1;
	font-size: 120%;
	margin-bottom: 0;
}
.line-minor .font-bold {
	text-transform: uppercase;
	margin-top: 5px;
}
.line-minor .small {
	font-size: 75%;
	margin-top: 10px;
}
.text-success {
	color: #27da27;
}
.text-danger {
	color: #ffcc00;
}
.balloon {
	position: relative;
	background-color: #3b325e;
	border: 2px solid white;
	padding: 15px;
	text-align: left;
	font-size: 20px;
	-webkit-border-radius: 6px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 6px;
	-moz-border-radius-topleft: 0;
	border-radius: 6px;
	border-top-left-radius: 0;
}
.balloon p {
	margin-bottom: 0;
}
.balloon:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid #fff;
  border-top: 10px solid #fff;
  border-bottom: 10px solid transparent;
  left: -21px;
  top: -2px;
}
.balloon:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 8px solid transparent;
  border-right: 8px solid #3b325e;
  border-top: 8px solid #3b325e;
  border-bottom: 8px solid transparent;
  left: -15px;
  top: 0;
}
.bounce {
  display: block;
  -moz-animation: bounce 1.5s infinite;
  -webkit-animation: bounce 1.5s infinite;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-30px);
	}
	60% {
		transform: translateY(-15px);
	}
}
.spc {
	padding-top: 15px;
}
.form-control {
	background-color: #3b325e;
	background-color: rgba(255,255,255,0.1);
	color: white;
	border: 0;
	padding: 12px;
	height: auto;
}
form button {
	background-color: #009900;
	color: white;
	font-size: 13px;
	padding: 5px 25px;
	border: 0;
	text-transform: uppercase;
	border-radius: 21px;
	font-family:'Futura';
	line-height: 1.5;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	font-style: italic;
	font-size: 13px;
}
::-moz-placeholder { /* Firefox 19+ */
	font-style: italic;
	font-size: 13px;
}
:-ms-input-placeholder { /* IE 10+ */
	font-style: italic;
	font-size: 13px;
}
:-moz-placeholder { /* Firefox 18- */
	font-style: italic;
	font-size: 13px;
}
.mobile-center {
	text-align: center
}
#section2 {
	margin-top: 50px;
}
@media screen and (min-width: 560px) {
	body::after,
	body::before {
		opacity: 0.1;
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		width: 550px;
		height: 432px;
		background-color: transparent;
		background-position: center center;
		background-repeat: no-repeat;
		background-image: url(../img/effect-03.png);
	}
	body::before {
		left: 0;
		bottom: 0;
		top: auto;
		right: auto;
		width: 400px;
		height: 503px;
		background-image: url(../img/effect-01.png);
	}
	#section1::after {
		position: absolute;
		content: '';
		left: -50%;
		bottom: -10%;
		width: 350px;
		height: 212px;
		background-image: url(../img/effect-02.png);
	}
}
@media screen and (min-width: 992px) {
	#section2 {
		margin-top: 0;
	}
	.balloon {
		font-size: 33px;
	}
	.container {
		margin-top: 0;
		width: 800px;
	}
	.maior {
		width: 100%;
	}
	body::after,
	body::before {
		opacity: 0.7;
	}
	.text-left.mobile-center {
		text-align: left
    }
	.text-right.mobile-center {
		text-align: right
    }
	.container .vertical {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	form {
		margin-left: 25px;
	}
}
@media screen and (min-width: 1401px) {
	.lefted {
		padding-left: 60px;
	}
}