/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #6b6b6b;
    background-color: #fff;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

label {
    margin: 0 0 5px 0;
    color: #909090;
    font-size: 14px;
    padding-left:20px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cecece;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #cecece;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #cecece;
}
:-moz-placeholder { /* Firefox 18- */
  color: #cecece;
}

form textarea:focus,
form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="email"]:focus {
    border: 1px solid #03A9F4;
}

form select,
form input[type="password"],
form input[type="search"],
form input[type="email"],
form input[type="text"] {
    color: #222;
    font-size: 14px;
    padding: 6px 15px;    
    background-color: #fff;
    border: 1px solid #c5c5c5;
    line-height: 35px;
    border-radius: 29px;
}

form textarea {
    color: #222;
    font-size: 14px;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #c5c5c5;
    border-radius: 20px;
    resize: none;
}

.Y-Center-outer {
    display: table;
    height: 100%;
}

.Y-Center-inner {
    display: table-cell;
    vertical-align: middle;
}

.Y-Center {
    position: absolute;
    top: 50%;

    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.XY-Center {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;

    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.space {padding: 100px 0;}
.space-top {padding: 100px 0 50px 0px;}
/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Raleway', sans-serif; color: #222;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 18px; line-height: 28px;}
h6 {font-size: 18px; line-height: 28px;}

strong {font-weight: 700;}

a {
    color: #03A9F4;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #03A9F4;
    outline: 0;
    text-decoration: none;
}

p {
    color: #5a5a5a;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.heading {
    font-size: 40px;
    margin: 0 0 60px 0;
    font-weight: bold;
    color: #000;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.heading span {
    position: absolute;
    top: 1px;
    left: -17px;
    font-size: 80px;
    color: #f5f5f5;
    z-index: -1;
    width: 100%;
}

/* Buttons
================================================== */
.btn-primary {
    background-color: #0D9DE0;
    color: #fff;
    font-size:17px;
    font-family: 'Raleway', sans-serif;
    border-radius: 35px;
    padding: 12px 23px;
    border: 0;
    cursor: pointer;
    
    -webkit-box-shadow: 0 6px 15px 0 rgba(29, 25, 122, 0.2);
    box-shadow: 0 6px 15px 0 rgba(29, 25, 122, 0.2);

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #03A9F4;
    color: #fff;
    border: 0;
    outline: none;
}

.btn-icon i{
   font-size:22px;
   vertical-align:middle;
}
.btn-primary i {
    margin-right: 5px;
}

.btn-secondary {
    border: 2px solid #03A9F4;
    color: #03A9F4;

    border-radius: 5px;
    padding: 7px 13px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: #03A9F4;
}

.form-button{
    display:inline-block;
    margin-top:24px;
}

.container {
    z-index: 3;
    position: relative;
}

/* header
================================================== */
header {
    background: url('../imgs/header-bgr.png') top center no-repeat;
    background-size: cover;
    padding: 0 0 100px 0;
    min-height: 630px;
    overflow: hidden;
    position: relative;
}

header .logo {
    display: inline-block;
    margin: 30px 0 0;
}

header .logo img {
    width: 96px;
}

header nav {
    text-align: left;
    margin: 16px 0 0 45px;
}

header nav ul li {
    display: inline-block;
}

header nav ul li.active a {
    color: #62ceff;
}

header nav ul li a {
    display: block;
    padding: 6px 19px;
    color: #b3b3b3;
    font-size: 17px;
}

header nav ul li:last-of-type a {
    color: #fff;
    background-color: #03A9F4;
    border-radius: 29px;
    padding: 11px 25px;
    margin-left: 13px;

    -webkit-box-shadow: 0 3px 15px 0 rgba(29, 25, 122, 0.2);
    box-shadow: 0 3px 15px 0 rgba(29, 25, 122, 0.2);
}

header:before { 
    content: "";
    background: url(../imgs/top2.jpg) top right no-repeat;
    background-size: 72%;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

header .intro-img {
    margin-top: 80px;
    position: relative;
    z-index: 3;
}

header h1 {
/*    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;*/
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    font-weight: bold;
    margin-top: 120px;
    margin-bottom: 30px;
}

header p {
    font-size: 17px;
    line-height: 24px;
    margin: 0 0 10px 0;
    color:#909090;
}

header p i{
    font-size: 30px;
    vertical-align:middle;
    color:#03A9F4;
    margin-right: 5px;
}

header .btn-primary {
    margin-top: 20px;
    display: inline-block;
}

.daisy{
    width: 127px;
    margin:-8px 0px 0px 10px;
}
/* form
================================================== */
.form {
    position: relative;
}

/*.form:before {
    content: "";
    background: url(../imgs/element-02.png) no-repeat;
    width: 260px;
    height: 500px;
    background-size: 100%;
    position: absolute;
    top: 38%;
    right: 30%;
}*/

.form form {
    display:block;
    margin: 20px 0;
}

.form h3 {
    position: relative;
    font-size: 40px;
    margin: 0 0 40px 0;
    font-weight: bold;
}

.form h3 span {
    position: absolute;
    top: 1px;
    left: -17px;
    font-size: 80px;
    color: #f5f5f5;
    z-index: -1;
}

.form .form-text {
    display: block;
}

.form .form-text h3 {
    margin: 0 0 15px 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    font-weight: bold;
}

.form .form-text p {
    margin-bottom: 9px;
}

.form p {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 10px 0;
    color:#909090;
}

.form p i{
    font-size: 30px;
    vertical-align:middle;
    color:#03A9F4;
    margin-right: 5px;
}

.form span{
    display:block;
    margin-bottom:25px;
}

.form label[for=terms] a {
    color: #333;
}

.w-icon{
    margin:20px 0px;
}

.centered{
    display:table;
    margin:15px auto;
}

.pl{
    padding-left:40px;
}

.align-center{
    text-align:center;
    padding-left:0px;
}
/* how it work
================================================== */

.documentation{
    background:#ecfaff;
}

.documentation p{
    color:#424242;
}

.how-it-work {
    background: url('../imgs/how-it-work-bgr.jpg') center left no-repeat;
    background-size: 450px;
}

.how-it-work ul li .item {
    padding: 40px 20px;
    border-radius: 3px;
    text-align: center;

    -webkit-box-shadow: 0px 15px 40px rgba(91, 94, 222, 0.13);
    box-shadow: 0px 15px 40px rgba(91, 94, 222, 0.13);
}

.how-it-work ul li:nth-child(3) {
    margin-top: 20px;    
}

.how-it-work ul li:nth-child(2) {
    margin-top: 20px;
}

.how-it-work ul li:nth-child(1) {
    margin-top: 50px;
}

.how-it-work ul li .item .num {
    font-size: 70px;
    color: #f5f5f5;
    font-weight: bold;
    position: absolute;
    top: -54px;
    left: 28px;
}

.how-it-work ul li .item .item-heading {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #000;
}

.how-it-work ul li .item img {
    width: 50px;
    margin: 0 0 15px 0;
}

/* contacts
================================================== */
.contacts .heading {
    text-align: left;
}

.nofont{
    font-family:Arial;
}
.nofont a{
    color: #909090;
    font-weight:bold;
}


.contacts .contact-info ul li {
    margin: 4px 0;
}

.contacts .contact-info ul li i {
    margin-right: 4px;
}

.contacts .contact-info ul li a {
    color: #333;
}

.contacts .contact-info ul li a:hover {
    color: #03A9F4;
}

/* footer
================================================== */
footer p {
    border-top: 1px solid #eee;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    font-size:10px;
    color:#bbb;
    font-family:Arial;
}