/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=cyrillic');

@font-face {
    font-family: 'ALS Rubl';
    font-style: normal;
    font-weight: normal;
    src: local('ALS Rubl'), url('../fonts/rouble.woff');
}

@font-face {
    font-family: 'SF-Pro-Display-Black';
    src: url('../fonts/SF-Pro-Display-Black.otf');
}

@font-face {
    font-family: 'SF-Pro-Display-Bold';
    src: url('../fonts/SF-Pro-Display-Bold.otf');
}

@font-face {
    font-family: 'SF-Pro-Display-Light';
    src: url('../fonts/SF-Pro-Display-Light.otf');
}

@font-face {
    font-family: 'SF-Pro-Display-Regular';
    src: url('../fonts/SF-Pro-Display-Regular.otf');
}

@font-face {
    font-family: 'SF-Pro-Display-Semibold';
    src: url('../fonts/SF-Pro-Display-Semibold.otf');
}

@font-face {
    font-family: 'SF-Pro-Text-Light';
    src: url('../fonts/SF-Pro-Text-Light.otf');
}

@font-face {
    font-family: 'SF-Pro-Text-LightItalic';
    src: url('../fonts/SF-Pro-Text-LightItalic.otf');
}

@font-face {
    font-family: 'SF-Pro-Text-Medium';
    src: url('../fonts/SF-Pro-Text-Medium.otf');
}

@font-face {
    font-family: 'SF-Pro-Text-Regular';
    src: url('../fonts/SF-Pro-Text-Regular.otf');
}




/* Common styles */

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    -webkit-appearance: none;
    color: #272626;
    overflow-x: hidden;
}

body *,
body *:focus {
    outline: none;
}

body *::-moz-selection {
    background: #58c935;
    color: #FFF;
}

body *::selection {
    background: #58c935;
    color: #FFF;
}

body.no-scroll {
    height: 100%;
    overflow: hidden;
}

h1 {
    font-family: 'SF-Pro-Display-Black';
    font-size: 60px;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    opacity: 0;
}

.loaded h1 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}
.email_link {
    font-size: 14px;
    color: black;
}
h2 {
    font-family: 'SF-Pro-Text-Medium';
    font-size: 40px;
    margin-bottom: 60px;
}

.bg-grey {
    background: #f5f5f5;
}

.ruble {
    font-family: 'ALS Rubl';
}

.block {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .container {
        max-width: calc(100% - 54px);
        width: calc(100% - 54px);
        padding: 0 27px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1160px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1590px !important;
    }
}

.trans {
    pointer-events: none;
}

.container-fluid {
    padding: 0 5%;
}



/* Header */

header {
    padding: 30px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    z-index: 99;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    transition: 200ms all linear;
}

.serv-header {
    background: #FFF !important;
    -webkit-box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1) !important;
}

header.loaded {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
}

header.trans {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

header.fixed {
    background: #FFF;
    -webkit-box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.descriptor {
    font-family: 'SF-Pro-Text-Regular';
    font-size: 13px;
    position: relative;
}

.descriptor::after {
    position: absolute;
    content: '';
    height: 60px;
    top: calc(50% - 30px);
    right: 53px;
    background: #d8d8d8;
    width: 1px;
    opacity: 0.8;
}

.descriptor p {
    margin: 0;
    margin-left: -15px;
}

nav ul {
    margin: 0;
    padding: 0;
    font-family: 'SF-Pro-Display-Regular';
    font-size: 16px;
    list-style: none;
}

nav a {
    color: #272626;
    margin-right: 80px;
    text-decoration: none;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

nav a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

nav .drop-list a {
    position: relative;
    padding-right: 15px;
}

nav .drop-list a::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 5px;
    background: url(../img/ar-d.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: calc(100% - 10px);
    right: 0;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.callback-top {
    position: relative;
    pointer-events: none;
    opacity: 0;
    top: 20px;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.callback-top a{
	color: #272626;
	text-decoration: none;
}

.callback-top.active {
    top: 0;
    opacity: 1;
    pointer-events: all;
}

.callback-top span:hover{
    border-bottom: 2px dashed transparent;
}

.phone-link{
	color: #272626;
	text-decoration: none;
}

.phone-link:hover{
	color: #272626;
	text-decoration: none;
}

.callback-top span {
    margin-left: 20px;
	margin-right: 20px;
    color: #58c935;
    text-transform: uppercase;
    border-bottom: 2px dashed #58c935;
    font-weight: 500;
    -webkit-transition: 100ms all linear;
    transition: 100ms all linear;
	cursor: pointer;
}

.drop-menu {
    position: absolute;
    top: calc(100% + 30px);
    border-top: 37px solid transparent;
    left: 0;
    padding-left: 15px;
    padding-top: 35px;
    padding-bottom: 87px;
    width: calc(100% + 150px);
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    z-index: 99;
}

nav .drop-list:hover .drop-menu {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    opacity: 1;
    pointer-events: all;
    top: 100%;
}

nav .drop-list:hover a::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.drop-menu ul {
    margin-right: 80px;
}

.drop-menu ul li {
    margin-bottom: 23px;
}

.drop-menu::after {
    background: #FFF;
    position: absolute;
    content: '';
    top: 0;
    left: -55px;
    width: calc(100% + 100px);
    height: 100%;
    -webkit-box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.drop-menu::before {
    background: #FFF;
    position: absolute;
    content: '';
    top: -10px;
    left: -55px;
    width: calc(100% + 100px);
    height: 10px;
}


nav .drop-list .drop-menu ul li a {
    padding-right: 0;
    position: static;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    margin-right: 0;
    opacity: 0.8;
}

nav .drop-list .drop-menu ul li a::after {
    display: none;
}

.drop-menu ul li a {}

nav .drop-list .drop-menu ul li.section-head a {
    font-weight: 700;
    font-size: 16px;
    margin-right: 0;
}




/* Mobile menu */

.mobile-menu {
    background: #FFF;
}

.mobile-header {
    padding: 18px 0;
    -webkit-box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #FFF;
}

.m-call {
    cursor: pointer;
	text-decoration: none;
}

.m-call:hover{
	text-decoration: none;
}

.m-call img {
    height: 22px;
    margin-left: 9px;
}

.m-call p {
    margin: 0;
    color: #58c935;
    font-family: 'SF-Pro-Text-Medium';
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    top: 2px;
}

.burger {
    width: 25px;
    cursor: pointer;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.burger * {
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.burger div {
    width: 25px;
    height: 2px;
    background: #58c935;
    margin-bottom: 6px;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.burger div:last-child {
    margin-bottom: 0;
}

.burger.active {
    position: relative;
    top: 3px;
}

.burger.active div:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 30.81px;
    position: relative;
    top: -6px;
    left: 1px;
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

.burger.active div:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 30.81px;
}

.menu-w-m {
    margin-top: 40px;
    color: #58c935;
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 30px;
    width: 100%;
    max-width: 209px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #dddddd;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    background: #FFF;
    height: 100vh;
    overflow-y: auto;
    display: none;
}

.mob-nav-wrapper {
    width: 100%;
    max-width: 209px;
    margin: 0 auto;
}

.m-header {
    font-size: 30px;
    font-weight: bold;
    color: #58c935;
    padding: 100px 0 40px 0;
    text-align: center;
    position: relative;
    margin-bottom: 47px;
}

.m-header::after {
    content: '';
    position: absolute;
    width: 209px;
    height: 1px;
    background: #dddddd;
    bottom: 0;
    left: calc(50% - 104.5px);
}

.m-menu {
    text-align: center;
    margin: 0;
    padding: 0;
    margin-bottom:
}

.m-menu li {
    margin-bottom: 43px;
    list-style: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 300;
}

.m-menu li a {
    color: #1e1e1e;
    text-transform: uppercase;
}

.m-menu li a:hover {
    color: inherit;
    text-decoration: none;
}

.d-m-list {
    position: relative;
    padding-right: 25px;
}

.d-m-list::after {
    background: url(../img/ar-d-m.png);
    width: 16px;
    height: 9px;
    top: calc(100% - 17px);
    right: 0;
    content: '';
    position: absolute;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.d-m-list.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.submenu {
    padding-top: 35px;
    display: none;
}

.submenu-block {
    padding: 0;
    font-size: 16px;
    text-align: left;
    margin-bottom: 35px;
}

.m-menu li .submenu-block a {
    font-size: 13px;
    color: #1e1e1e;
    opacity: 0.8;
    display: inline-block;
    margin: 5px 0;
    text-transform: none;
}

.m-menu li .submenu-block li {
    margin: 5px 0;
}

.m-menu li .submenu-block .section-head a {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: bold;
    text-transform: none;
}



/* Odder block */

.offer {
    padding: 180px 0 72px 0;
    position: relative;
    overflow: hidden;
}

.offer::after {
    position: absolute;
    content: '';
    background: url(../img/img-offer.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    right: -50px;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
}

.offer-service::after {
    display: none !important;
}

.loaded.offer::after {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
}

.offer h1 {
    position: relative;
    margin-bottom: 100px;
    z-index: -1;
}

.offer-service h1 {
    color: #fff !important;
    z-index: 1;
    font-size: 60px;
}

.offer h1::after {
    position: absolute;
    content: '';
    width: 600px;
    height: 700px;
    left: 0;
    top: calc(50% - 300px);
    background: url(../img/dots-bg.png) repeat;
    background-size: cover;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: -1;
}

.offer-service h1::after {
    display: none !important;
}

.offer-service {
    background: url(../img/bg-serv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.offer h1::before {
    position: absolute;
    width: 70px;
    height: 3px;
    background: #58c935;
    content: '';
    bottom: -50px;
    left: 0;
}

.green-w {
    color: #58c935;
}

.offer-desc {
    font-size: 17px;
    line-height: 1.5;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    opacity: 0;
}

.offer-service .offer-desc {
    color: #fff;
}

.loaded .offer-desc {
    -webkit-transition: 350ms all linear;
    transition: 350ms all linear;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}

.green-btn {
    width: 268px;
    height: 75px;
    line-height: 1;
    text-align: center;
    background: #58c935;
    color: #FFF;
    font-weight: 400;
    font-size: 15px;
    margin-top: 60px;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    border: 1px solid #58c935;
}

.green-btn:hover {
    color: #58c935;
    border: 1px solid #58c935;
    text-decoration: none;
    background: transparent;
}

#free_cons {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}

.loaded #free_cons {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
}

.trans #free_cons {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}


/* Services */

.services {
    padding: 80px 0;
}

.services .row > div {
    margin-bottom: 30px;
}

.serv-item {
    padding: 45px 40px;
    background: #FFF;
    -webkit-box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    color: #272626;
    text-decoration: none;
    height: 100%;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.serv-item * {
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.serv-item:hover {
    color: #FFF;
    text-decoration: none;
    background: #58c935;
}

.serv-item:hover * {
    color: #FFF;
    fill: #FFF;
}

.serv-item > img {
    margin-right: 40px;
    height: 70px;
}

.serv-item > svg {
    margin-right: 40px;
    height: 70px;
}

.serv-name {
    font-family: 'SF-Pro-Display-Regular';
    font-size: 26px;
    margin-bottom: 25px;
    color: #272626;
    text-decoration: none;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.loaded .serv-name {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.trans .serv-name {
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

.serv-name:hover {
    text-decoration: none;
}

.serv-text {
    margin-bottom: 15px;
    color: #585858;
    font-family: 'SF-Pro-Display-Regular';
    font-size: 15px;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.loaded .serv-text {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
}

.trans .serv-text {
    -webkit-transition: 500ms all ease-in;
    transition: 500ms all ease-in;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.svg-ser {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.loaded .svg-ser {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.trans .svg-ser {
    -webkit-transition: 700ms all linear;
    transition: 700ms all linear;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.serv-text .ruble {
    position: relative;
    left: 5px;
    bottom: -2px;
}

.serv-text img {
    margin-right: 12px;
}

.serv-text svg {
    margin-right: 12px;
}

.link-btn {
    width: 268px;
    height: 75px;
    line-height: 1;
    text-align: center;
    background: transparent;
    color: #58c935;
    font-weight: 400;
    font-size: 15px;
    margin-top: 60px;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    border: 1px solid #58c935;
}

.link-btn:hover {
    color: #FFF;
    border: 1px solid #58c935;
    text-decoration: none;
    background: #58c935;
}



/* Process */

.process {
    padding: 80px 0;
}

.pr-item {
    padding: 60px 40px;
    border: 1px solid #d1d1d1;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    background: transparent;
    height: 100%;
}

.pr-item * {
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.pr-item:hover {
    background: url(../img/bg-process.jpg);
    background-size: cover;
}

.pr-item:hover p {
    color: #FFF;
}

.number {
    font-family: 'SF-Pro-Display-Light';
    color: #3bd10d;
    font-size: 94px;
    position: relative;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.loaded .number {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.trans .number {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}



.number::after {
    position: absolute;
    content: url(../img/min-dots.png);
    top: calc(50% - 51px);
    left: -15px;
    z-index: 0;
    opacity: 0;
}

.pr-item:hover .number::after {
    opacity: 1;
}

.process .row > div {
    margin-bottom: 30px;
}

.process-name {
    font-family: 'SF-Pro-Display-Regular';
    color: #242424;
    font-size: 26px;
    -webkit-transform: translate(50px);
    transform: translate(50px);
    opacity: 0;
}

.loaded .process-name {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.trans .process-name {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.process-text {
    font-family: 'SF-Pro-Text-Regular';
    font-size: 15px;
    color: #585858;
    -webkit-transform: translate(50px);
    transform: translate(50px);
    opacity: 0;
}

.loaded .process-text {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.trans .process-text {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.process-logo {
    height: 100%;
    opacity: 0;
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.loaded .process-logo {
    opacity: 1;
}



/* Adds */

.preim-item {
    padding: 60px 40px;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    background: transparent;
    height: 100%;
    -webkit-box-shadow: 0px 19px 40px 5px rgba(88, 201, 53, 0);
    box-shadow: 0px 19px 40px 5px rgba(88, 201, 53, 0);
    border-left: 1px solid #aeaeae;
}

.preim-item:hover {
    background: url(../img/bg-process.jpg);
    background-size: cover;
    -webkit-box-shadow: 0px 19px 40px 5px rgba(88, 201, 53, 0.26);
    box-shadow: 0px 19px 40px 5px rgba(88, 201, 53, 0.26);
}

.preim-item:hover p {
    color: #FFF;
}

.preim-item:hover .p-1-preim {
    fill: #FFF;
}

.preim-item:hover .p-2-preim {
    fill: #fff324;
}


.preim-item:hover .number::after {
    opacity: 1;
}

.preim-item * {
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.number-block img {
    margin-right: 60px;
}

.number-preim {
    font-size: 80px;
}

.preim svg {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
}

.preim.loaded svg {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.preim.trans svg {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}



/* Main Form */

.form-header {
    opacity: 0;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
}

.loaded .form-header {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 800ms all linear;
    transition: 800ms all linear;
}

.main-form-wrapper {
    padding-left: 40px;
}

.green-btn-sub {
    width: 202px;
    margin-top: 75px;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
}

.loaded .green-btn-sub {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.trans .green-btn-sub {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.form input[type="tel"],
.form input[type="text"] {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #bcbcbc;
    padding: 20px 10px;
    color: #1d1d1d;
    font-size: 16px;
    position: relative;
    top: 0;
    color: #58c935;
    -webkit-transform: translate(-20px, 30px);
    transform: translate(-20px, 30px);
    opacity: 0;
}

.loaded .form input[type="tel"],
.loaded .form input[type="text"] {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
}

.trans .form input[type="tel"],
.trans .form input[type="text"] {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.form label {
    position: relative;
    pointer-events: none;
    top: 46px;
    padding-left: 10px;
    left: 0;
    width: 100%;
    font-family: 'SF-Pro-Text-LightItalic';
    font-size: 16px;
    color: #1d1d1d;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    margin: 0;
    -webkit-transform: translate(-20px, 30px);
    transform: translate(-20px, 30px);
    opacity: 0;
}

.loaded .form label {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
}

.trans .form label {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}



.form .label-active {
    top: 5px;
    font-size: 16px;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.form label.err_inp {
    color: red;
}

.input-wrapper {
    width: 270px;
    margin-right: 75px;
}

.form .confid {
    margin-top: 30px;
    font-size: 14px;
    color: #1d1d1d;
    font-family: 'SF-Pro-Text-Light';
    opacity: 0;
}

.loaded .form .confid {
    opacity: 1;
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.doc-wrapper {
    position: relative;
}

.pen-img {
    position: absolute;
    top: 0;
    left: 20%;
    z-index: 9;
    width: 50%;
    max-width: 200px;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
}

.loaded .pen-img {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.doc-img {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px)
}

.loaded .doc-img {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}




/* Workers */

.worker-img {
    height: 262px;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.loaded .worker-img {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.worker-name {
    color: #242424;
    font-size: 26px;
    font-family: 'SF-Pro-Display-Regular';
    margin-bottom: 5px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.loaded .worker-name {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0)
}

.worker-info {
    font-family: 'SF-Pro-Text-Regular';
    font-size: 15px;
    color: #585858;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.loaded .worker-info {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
}



/* Clients */

.clients .row > div {
    margin-bottom: 30px;
}

.clients img {
    margin: 30px auto;
    display: block;
}



/* Thanks */

.thanks a {
    width: calc(20% - 30px);
    display: block;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 40px 1px rgba(0, 0, 0, 0.1);
}

.thanks img {
    width: 100%;
}


/* Footer */

footer {
    padding: 50px 0 70px 0;
    background: #363836;
    color: #FFF;
}

.f-logo img {
    max-width: 100%;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.f-serv:first-child {
    margin-bottom: 20px;
}

.f-serv a {
    font-size: 14px;
    opacity: 0.8;
}

.f-serv .section-head-footer a {
    font-size: 20px;
    font-weight: 500;
    opacity: 1;
}

.f-serv li {
    margin-right: 36px;
}

footer a {
    color: #FFF;
}

.f-info {
    margin-top: 80px;
}

footer a:hover {
    text-decoration: none;
    opacity: 0.8;
    color: inherit;
}

.f-info p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 10px;
}

.f-info .f-head {
    font-size: 24px;
    opacity: 1;
    margin-bottom: 20px;
}

.social a {
    display: block;
    margin-right: 12px;
}

.mailto,
.mailto2 {
    font-size: 13px;
}

.mailto img,
.mailto2 img {
    margin-right: 10px;
}



/* Carosels */

.owl-services .owl-item img {
    width: auto !important;
}

.owl-services,
.owl-clients {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin: 0 !important;
    position: relative;
}

.owl-thanks {
    position: relative;
}

.owl-nav {
    position: absolute;
    top: calc(50% - 16px);
    left: 15px;
    z-index: 99;
    width: calc(100% - 30px);
}

.owl-next {
    position: absolute;
    right: 5px;
}

.owl-next img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.owl-prev {
    position: absolute;
    left: 5px;
}

.owl-dots {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.owl-carousel button.owl-dot {
    background: transparent;
    margin: 0 4.5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #bcbcbc;
}

.owl-carousel button.owl-dot.active {
    background: #4ac025;
    border: 1px solid #4ac025;
}




/* Service page */

.service-inform {
    padding: 42px;
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid transparent;
    ;
    color: #fff;
    max-width: 365px;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    position: relative;
}

.loaded .service-inform {
    border: 1px solid #fff;
}

.trans .service-inform {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.service-inform::after {
    position: absolute;
    content: '+';
    z-index: 3;
    opacity: 1;
    font-family: 'SF-Pro-Display-Light';
    font-size: 22px;
    padding: 8px 10px 10px 10px;
    border: 1px solid #fff;
    right: 27px;
    bottom: 27px;
    line-height: 22px;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.loaded .service-inform::after {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.trans .service-inform::after {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.service-inform:hover {
    background: #fff;
    border: 1px solid #FFF;
}

.service-inform:hover p {
    color: #242424;
}

.service-inform:hover p:nth-child(2) {
    color: #58c935;
}

.serv-text-hide {
    opacity: 0;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
    font-size: 14px;
}

.service-inform:hover .serv-text-hide {
    color: #242424;
    opacity: 1;
}

.service-inform p:first-child {
    font-size: 24px;
    font-family: 'SF-Pro-Display-Light';
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.loaded .service-inform p:first-child {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.trans .service-inform p:first-child {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.service-inform p:nth-child(2) {
    font-size: 24px;
    font-family: 'SF-Pro-Display-Regular';
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.loaded .service-inform p:nth-child(2) {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.trans .service-inform p:nth-child(2) {
    -webkit-transition: 500ms all linear;
    transition: 500ms all linear;
}

.service-inform p:nth-child(2) span:first-child {
    font-size: 53px;
    font-family: 'SF-Pro-Display-Regular';
}

.service-inform p:nth-child(2) .ruble {
    font-size: 53px;
    position: relative;
    left: 10px;
}


.service-steps h3 {
    font-size: 34px;
    font-family: 'SF-Pro-Display-Bold';
    margin-bottom: 60px;
    line-height: 1;
    position: relative;
    padding-left: 50px;
    color: #000;
}

.service-steps h3::before {
    position: absolute;
    content: '';
    left: 0;
    top: calc(50% - 1px);
    height: 2px;
    width: 30px;
    background: #000;
}

.service-steps ol {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #515151;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    max-width: 630px;
}

.service-steps ol li {
    margin-bottom: 30px;
    line-height: 1.6;
    padding-left: 54px;
    position: relative;
    padding-top: 8px;
}

.ol-num {
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px;
    font-size: 15px;
    background: #4ac025;
    line-height: 1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}

.results .row > div{
    margin-bottom: 30px;
}

.resul-item {
    color: #242424;
    padding: 40px;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #e8e8e8;
}

.resul-item *{
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.resul-item:hover {
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid #fff;
}

.res-img {
    width: 96px;
    height: 96px;
    position: relative;
    margin-right: 35px;
}

.res-img img:first-child {
    opacity: 1;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.res-img img:last-child {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.resul-item:hover .res-img img:first-child {
    opacity: 0;
}

.resul-item:hover .res-img img:last-child {
    opacity: 1;
}

.result-info {
    font-size: 15px;
    color: #707070;
    line-height: 1.6;
    font-weight: 500;
}

.zoom {
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.zoom span {
    margin-left: 7px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

.zoom path{
    -webkit-transition: 200ms all linear;
    transition: 200ms all linear;
}

.resul-item:hover .zoom path{
    fill: #58c935;
}

.resul-item:hover .result-info{
    color: #000;
}

.resul-item:hover .zoom span{
    color: #58c935;
}


/* Contacts page */


.contacts{
    margin-top: 150px;
}
.city img{
    margin-right: 45px;
    display: block;
}

.city p{
    font-size: 30px;
    font-family: 'SF-Pro-Text-Regular';
    color: #272626;
}

.cont-row{
    margin-top: 22px;
}

.cont-item{
    margin-right: 30px;
    margin-bottom: 30px;
}

.cont-item a, .cont-item span{
    font-size: 16px;
    font-family: 'SF-Pro-Text-Medium';
    color: #535651;
    text-decoration: none;
}

.cont-item img{
    display: block;
    margin-right: 13px;
}

.map-yandex{
    margin-top: 75px;
    -webkit-box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}


/* Services page */

.m-top{
    margin-top: 100px;
}

.serv-name-inner{
    font-size: 20px;
}

.serv-row{
    display: none;
}

.serv-row.active{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.tabs-wrapper{
    margin-bottom: 60px;
}

.tab{
    font-size: 16px;
    color: #b3b3b3;
    position: relative;
    font-family: 'SF-Pro-Text-Medium';
    padding: 15px 25px;
    cursor: pointer;
    transition: 200ms all linear;
}

.tab::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 1px;
    background: #bfbfbf;
}

.tab:hover{
    color: #49a62c;
}

.tab.active{
    color: #49a62c;
}

.tab.active::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 3px;
    background: #49a62c;
}