@charset "UTF-8";
div {
    box-sizing: border-box;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

i {
    font-style: normal;
}

a,
a:active,
a:hover {
    outline: 0;
    color: #000;
    text-decoration: none;
}

b,
strong {
    font-weight: bold;
}

img {
    border: 0;
    max-width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button, button:hover, button:focus, button:active {
    overflow: visible;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

button {
    background: transparent;
}

button,
select {
    text-transform: none;
}
input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus{
    border:none;
    outline:none;
    box-shadow: none;
}


button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    background-color: #333;
}
.no_overflow{
    overflow-x: hidden;
    overflow-y: hidden;
}
.align-center{
    text-align: center !important;
}
.container {
    width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%;
}
.container-fluid{
    width: 100%;
}

.none {
    display: none !important;
    opacity: 0 !important;
}

.flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.header {
    position: absolute;
    top: 30px;
    display:block;
    transition: top 0.3s;
    z-index: 99;
    width: 100%;
}


.header .inner {
    text-align: center;
}

.logo{
    display: inline-block;
    height: 50px;
}

.logo img {
    height: 100%;
}

header .menu {
    flex: 1;
    margin-right: 35px;
}

header .menu ul {
    justify-content: flex-end;
}

header .menu ul li a, header .language a, header .mobile_menu_btn button {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-right: 20px;
    line-height: 75px;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
}

header .menu ul li:last-child a {
    margin: 0;
}

header .menu ul li a:hover,  header .language a:hover {
    color: #865cc6;
}

header .buttons {
    align-items: center;
}

header .contacts {
    padding: 7px 15px 7px 0;
    border-right: 1px solid #e8e8e8;
    margin-right: 20px;
}

header .contacts button {
    padding: 5px;
}

header .contacts button:before {
    content: '';
    display: block;
    height: 16px;
    width: 16px;
    background: url("../img/design/phone_receiver.svg");
}

header .language {
    margin-right: 40px;
}

header .language a {
    margin: 0;
}

.btn-normal {
    line-height: 50px;
    background: #865cc6;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 25px;
    text-transform: uppercase;
}

.banner_social{
    position: absolute;
    bottom: 30px;
}
.banner_social a{
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}
.banner_social svg{
    height: 25px;
    width: 25px;
    fill: #fff;
}

.banner_social ul{
    display: flex;
    align-items: center;
}
header .discuss-btn button {
    line-height: 45px;
    width: 180px;
}

header .mobile_menu_btn {
    display: none;
    align-items: center;
    margin-left: 30px;
    cursor: pointer;
}

header .mobile_menu_btn_icon span {
    display: block;
    height: 2px;
    width: 20px;
    background: #333333;
    margin-bottom: 5px;
    opacity: 1;
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -moz-transition-property: transform, -moz-transform;
    -o-transition-property: transform, -o-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

header .mobile_menu_btn_icon span:last-child {
    margin: 0;
}

header .mobile_menu_btn:hover span:last-child {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

header .mobile_menu_btn:hover span:first-child {
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}

header .mobile_menu_btn_icon span:nth-child(2n) {
    -webkit-transition-duration: .15s;
    -moz-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity;
}

header .mobile_menu_btn:hover span:nth-child(2n) {
    opacity: 0;
}

section.top-banner .inner {
    height: 100%;
    position: relative;
}

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}



section.top-banner{
    height: 100vh;
    min-height: 500px;
}
section .top-banner-bg {
    position: absolute;
    background: url(../img/design/top_banner_bg.png) no-repeat right;
    background-size: auto 100%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.top-banner .banner {
    position: relative;
    height: 100%;
    z-index: 3;
}

.top-banner .banner-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-banner .banner h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 45px;
}

.top-banner .banner h1 span {
    color: #865cc6;
}

.top-banner .banner h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 45px;
    max-width: 800px;
    color: #cecece;
}

.top-banner .banner button {
    width: 200px;
}

.top-banner .arrow-down {
    position: absolute;
    bottom: 40px;
    width: 100%;
    z-index: 5;
}

.top-banner .arrow-down a {
    margin: 0 auto;
    width: 17px;
    display: block;
    padding: 10px 10px 0 10px;
    text-align: center;
}


.top-banner .arrow-down p.mouse:after{
    content: '';
    display: block;
    height: 23px;
    width: 17px;
    background: url(../img/design/mouse.svg) no-repeat;
    background-size: 100% 100%;
}

.top-banner .arrow-down a .arrow {
    margin: 0 auto;
    padding-top: 10px;
    display: block;
    cursor: pointer;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: 1.5s ease;
    -moz-transition: 1.5s ease;
    -o-transition: 1.5s ease;
    transition: 1.5s ease;
    -webkit-transition-delay: 1.4s;
    -moz-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
    -webkit-animation-name: e;
    -moz-animation-name: e;
    -o-animation-name: e;
    animation-name: e;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4s;
    -o-animation-delay: 1.4s;
    animation-delay: 1.4s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;}

.top-banner .arrow-down a .arrow img {
    width: 14px;
    -webkit-animation-name: c;
    -moz-animation-name: c;
    -o-animation-name: c;
    animation-name: c;
    -webkit-animation-duration: 1.3s;
    -moz-animation-duration: 1.3s;
    -o-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.top-banner .social{
    position: absolute;
    bottom: 45px;
    right: 190px;
    z-index: 5;
}
.top-banner .social a{
    margin-right: 20px;
}

.top-banner .social li:last-child a{
    margin: 0;
}

.top-banner .social img{
    height: 17px;
    fill: #656565;
}

section.services, section.portfolio, section.testimonials{
    margin-bottom: 200px;
}

section.services .inner{
    flex-wrap: wrap;
    justify-content: space-between;
}

section.services .item {
    width: 33.3333%;
    padding-top: 105px;
    opacity: 0;
}
section.services .animate{
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: 1.5s ease;
    -moz-transition: 1.5s ease;
    -o-transition: 1.5s ease;
    transition: 1.5s ease;
    -webkit-transition-delay: 1.4s;
    -moz-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
    -webkit-animation-name: e;
    -moz-animation-name: e;
    -o-animation-name: e;
    animation-name: e;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -o-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    -o-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

section.services .item:nth-child(2n){
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

section.services .item:nth-child(3n){
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
    -o-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

section.services .item:nth-child(4n){
    -webkit-animation-delay: 1.6s;
    -moz-animation-delay: 1.6s;
    -o-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

section.services .item:nth-child(5n){
    -webkit-animation-delay: 1.9s;
    -moz-animation-delay: 1.9s;
    -o-animation-delay: 1.9s;
    animation-delay: 1.9s;
}

section.services .item:nth-child(6n){
    -webkit-animation-delay: 2.2s;
    -moz-animation-delay: 2.2s;
    -o-animation-delay: 2.2s;
    animation-delay: 2.2s;
}
section.services .item-text{
    width: 315px;
    margin: 0 auto;
}

section.services .item h3{
    font-size: 49px;
    font-weight: 900;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}
section.services .item p{
    line-height: 32px;
}
section.discuss{
    background: #131313;
    padding: 80px 0;
    margin-bottom: 50px;
}
section.discuss .container{
    width: 610px;
    padding: 0;
}

section.discuss .inner h2{
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 65px;
}
section.discuss form .form-item:first-child{
    border-top: 1px solid #ffffff73;
}
section.discuss form .form-item{
    border-bottom: 1px solid #ffffff73;

}
section.discuss form .form-item label{
    align-items: center;
    position: relative;
}
section.discuss form .form-item input{
    width: 100%;
    line-height: 60px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    flex: 1;
    margin-bottom: -3px;
}

section.discuss form .form-item input:focus, section.discuss form .form-item textarea:focus{
    border-color: #fff;

}
section.discuss form .error label .error-msg{
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: 9px;
    color: #b7000d;
    padding: 10px 0;
    display: block;
    letter-spacing: 2px;
    font-weight: bold;;
    width: 100%;
    text-align: right;
    z-index: 9;
    text-transform: uppercase;
}
section.discuss form .error input{
    border-color: #b7000d !important;
}
section.discuss form .form-item .label-title{
    color: #fff;
    font-weight:bold;
    text-transform: uppercase;
    font-size: 12px;
    width: 160px;
    margin-right: 20px;
}
section.discuss form .form-textarea .label-title{
    width: 100%;
    display: block;
    padding: 25px 0;
}

section.discuss form .form-item textarea{
    background: transparent;
    border: none;
    width: 100%;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    resize: none;
    min-height: 60px;
    margin: 0;
    padding: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -6px;
    text-transform: uppercase;
    font-weight: bold;
}

section.discuss form .form-item input::placeholder, section.discuss form .form-item textarea::placeholder {
    color: #888;
    opacity: 1;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

section.discuss form .buttons{
    display: flex;
    display: -ms-flexbox;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}
section.discuss form .buttons button{
    width: 170px;
}
.copywrite{
    font-size: 12px;
    color: #999;
}
section.discuss form .buttons .file{
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

section.discuss form .buttons .file input[type=file] {
    display: none;
}
section.discuss form .buttons .file p{
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 15px;
}
section.discuss form .buttons .file .filename{
    font-size: 10px;
    font-weight:bold;
    color: #656565;
    text-transform: uppercase;
    text-align: right;

}
footer{
    margin-bottom: 50px;
}

.formLoading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.62);
    z-index: 999;
}

.formLoading:before {
    animation: spin 1.8s ease-in-out infinite;
    border: 4px solid #fff;
    border-radius: 50%;
    border-top-color: #0f2d37;
    content: "";
    height: 44px;
    width: 44px;
    margin: auto;
}

section.discuss .form--success{
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.5;
}
