/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #222d39;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {padding: 80px 0;}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Ubuntu', sans-serif; color: #222d39;}

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: #da763a;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #5e2ced;
    outline: 0;
    text-decoration: none;
}

p {
    color: #677294;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.heading {
    margin: 0 0 80px 0;
    font-size: 36px;
    line-height: 36px;
    color: #0c3135;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-weight: bold;
}

.form-control {
    font-size: 14px;
    height: 38px;
}

.btn {
    border-radius: 45px;
    padding: 7px 25px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-icon-left i {
    margin-right: 7px;
}

.btn-primary {
    background-color: #5e2ced;
    border-color: #5e2ced;
    color: #fff;

    -webkit-box-shadow: 0px 20px 50px 0px rgba(123, 78, 245, 0.25);
    box-shadow: 0px 20px 50px 0px rgba(123, 78, 245, 0.25);
}

.btn-primary:hover {
    background-color: #5e2ced;
    border-color: #5e2ced;
    color: #fff;
    opacity: .8;

    -webkit-box-shadow: 0px 20px 50px 0px rgba(123, 78, 245, 0.15);
    box-shadow: 0px 20px 50px 0px rgba(123, 78, 245, 0.15);
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: #563bd1;

    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);

    padding: 10px 40px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 5;

    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
}

header nav ul li a:focus,
header nav ul li a:active {
    color: #fff !important;
}

.header-bgr nav ul li a:focus,
.header-bgr nav ul li a:active {
    color: #5e2ced !important;
}

header .logo {
    font-size: 32px;
    line-height: 38px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
}

.header-bgr {
    background-color: #fff;
    /*box-shadow: 0 4px 3px 0 rgba(162, 162, 162, 0.12), 0 0 1px 0 rgba(144, 144, 144, 0.25);*/

    -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

.header-bgr .logo {
    color: #333;
    margin: 20px 0;
}

.header-bgr ul li a {
    color: #333;
}

.header-bgr nav ul li:last-of-type a:before {
    content: "";
    width: 1px;
    height: 27px;
    position: absolute;
    top: 6px;
    left: -20px;
    background-color: #333;
    display: block;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

.header-bgr nav ul li {
    padding: 20px 18px;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

.header-bgr nav ul li.active a {
    color: #5e2ced;
}

.header-bgr nav ul li a:hover {
    color: #5e2ced;
}

header .logo {
    width: 30%;
    float: left;
}

header nav ul {
    text-align: right;
}

header nav ul li {
    display: inline-block;
    padding: 30px 18px;
}

header nav ul li a {
    display: block;
    color: #fff;
    position: relative;
    padding: 7px 0;
    font-size: 16px;
}

header nav ul li a i {
    margin-right: 7px;
    font-size: 15px !important;
    position: relative;
    top: -1px;
}

header nav ul li a:hover {
    color: #fff;
}

header nav ul li:last-of-type a:before {
    content: "";
    width: 1px;
    height: 27px;
    position: absolute;
    top: 6px;
    left: -20px;
    background-color: rgba(255, 255, 255, 0.62);
    display: block;
}

.intro {
    width: 100%;
    height: 100%;
    background-color: #4e33c7;
    position: relative;
    z-index: 1;
}

.intro:before {
    content: "";
    background: url('../imgs/intro-cover.png') no-repeat scroll center bottom;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    top: 0;
}

.intro h1 {
    font-size: 50px;
    line-height: 54px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 20px 0;
}

.intro p {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 30px 0;
}

.intro img {
    /*max-height: 400px;*/
    margin: 0 auto;
    display: block;
}


.services .service h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.services .service .icon img {
    height: 45px;
    margin: 0 0 15px 0;
}

/*.services .service-01 {
    margin: 150px 0 0 0;
}

.services .service-02 {
    margin: 100px 0 0 0;
}

.services .service-03 {
    margin: 50px 0 0 0;
}*/


.contacts .form {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.1);
    padding: 100px 100px 50px;
}

.contacts .btn {
    margin: 15px auto 0;
    display: table;
}

footer {
    background-color: #FBFBFD;
    padding: 200px 0 15px;
    margin: -200px 0 0 0;
}

footer ul {
    text-align: right;
}

footer ul li {
    display: inline-block;
    margin: 0 12px;
}

footer ul li:last-of-type {
    margin-right: 0;
}

footer ul li a {
    color: #333;
}

footer ul li a:hover {
    color: #333;
    text-decoration: underline;
}

footer .copyright {
    color: #677294;
}