@charset "UTF-8";/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
    display: block
}

audio,canvas,progress,video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],template {
    display: none
}

a {
    background: transparent
}

a:active,a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,sup {
    font-size: .75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    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 {
    overflow: visible
}

button,select {
    text-transform: none
}

button,html input[type="button"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],html input[disabled] {
    cursor: default
}

button input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="reset"],input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

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;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,th {
    padding: 0
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {
    0%,20%,53%,80%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0)
    }
}

@keyframes bounce {
    0%,20%,53%,80%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        transition-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%,50%,100% {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,50%,100% {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    0%,100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

@keyframes shake {
    0%,100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0,0,1,15deg);
        transform: rotate3d(0,0,1,15deg)
    }

    40% {
        -webkit-transform: rotate3d(0,0,1,-10deg);
        transform: rotate3d(0,0,1,-10deg)
    }

    60% {
        -webkit-transform: rotate3d(0,0,1,5deg);
        transform: rotate3d(0,0,1,5deg)
    }

    80% {
        -webkit-transform: rotate3d(0,0,1,-5deg);
        transform: rotate3d(0,0,1,-5deg)
    }

    100% {
        -webkit-transform: rotate3d(0,0,1,0deg);
        transform: rotate3d(0,0,1,0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0,0,1,15deg);
        transform: rotate3d(0,0,1,15deg)
    }

    40% {
        -webkit-transform: rotate3d(0,0,1,-10deg);
        transform: rotate3d(0,0,1,-10deg)
    }

    60% {
        -webkit-transform: rotate3d(0,0,1,5deg);
        transform: rotate3d(0,0,1,5deg)
    }

    80% {
        -webkit-transform: rotate3d(0,0,1,-5deg);
        transform: rotate3d(0,0,1,-5deg)
    }

    100% {
        -webkit-transform: rotate3d(0,0,1,0deg);
        transform: rotate3d(0,0,1,0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
        transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
        transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
        transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
        transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
        transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
        transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg);
        transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);
        transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg);
        transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
        transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0);
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0);
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0);
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    75% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0)
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,100% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0);
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    75% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0)
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0);
        transform: translate3d(20px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0);
        transform: translate3d(20px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0);
        transform: translate3d(-20px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0);
        transform: translate3d(-20px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0);
        transform: translate3d(0,20px,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0);
        transform: translate3d(0,20px,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-360deg);
        transform: perspective(400px) rotate3d(0,1,0,-360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95);
        transform: perspective(400px) scale3d(.95,.95,.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-360deg);
        transform: perspective(400px) rotate3d(0,1,0,-360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95);
        transform: perspective(400px) scale3d(.95,.95,.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
        transform: perspective(400px) rotate3d(1,0,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
        transform: perspective(400px) rotate3d(1,0,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
        transform: perspective(400px) rotate3d(0,1,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
        transform: perspective(400px) rotate3d(0,1,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,-200deg);
        transform: rotate3d(0,0,1,-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,-200deg);
        transform: rotate3d(0,0,1,-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-90deg);
        transform: rotate3d(0,0,1,-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-90deg);
        transform: rotate3d(0,0,1,-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,200deg);
        transform: rotate3d(0,0,1,200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0,0,1,200deg);
        transform: rotate3d(0,0,1,200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,45deg);
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0,0,1,-45deg);
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,90deg);
        transform: rotate3d(0,0,1,90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0,0,1,90deg);
        transform: rotate3d(0,0,1,90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate3d(0,0,1,80deg);
        transform: rotate3d(0,0,1,80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        -webkit-transform: rotate3d(0,0,1,60deg);
        transform: rotate3d(0,0,1,60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate3d(0,0,1,80deg);
        transform: rotate3d(0,0,1,80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        -webkit-transform: rotate3d(0,0,1,60deg);
        transform: rotate3d(0,0,1,60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
        transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);
        transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
        transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg);
        transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    100% {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

.bx-wrapper {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    *zoom:1}

.bx-wrapper img {
    max-width: 100%;
    display: block
}

/*!** THEME*/
/*!*fix other elements on the page moving (on Chrome)*!*/
/*!* LOADER *!*/
/*!* PAGER *!*/
/*!* DIRECTION CONTROLS (NEXT / PREV) *!*/
/*!* AUTO CONTROLS (START / STOP) *!*/
/*!* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT *!*/
/*!* IMAGE CAPTIONS *!*/
.justify-menu {
    text-align: justify
}

.justify-menu>* {
    display: inline-block;
    white-space: nowrap
}

.justify-menu:after {
    content: '';
    display: inline-block;
    width: 100%
}

.float-menu>* {
    float: left
}

.float-menu:before,.float-menu:after {
    content: " ";
    display: table
}

.float-menu:after {
    clear: both
}

.float-menu:before,.float-menu:after {
    content: " ";
    display: table
}

.float-menu:after {
    clear: both
}

.table-menu {
    display: table;
    width: 100%
}

.table-menu>* {
    display: table-cell
}

.absoluteCenter {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    bottom: 0;
    margin: auto
}

.absoluteHirizontalCenter {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto
}

.no-select-text {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.text-center {
    text-align: center
}

.halfRed {
    background: #eb1429;
    opacity: .8
}

.halfBlack {
    background: #000;
    opacity: .4
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-black.eot');
    src: url('../font/ralewayc2/raleway-black.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-black.woff') format('woff'),url('../font/ralewayc2/raleway-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-black-italic-webfont.eot');
    src: url('../font/raleway/raleway-black-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-black-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-black-italic-webfont.ttf') format('truetype');
    font-weight: 900;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-extrabold.eot');
    src: url('../font/ralewayc2/raleway-extrabold.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-extrabold.woff') format('woff'),url('../font/ralewayc2/raleway-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-extrabold-italic-webfont.eot');
    src: url('../font/raleway/raleway-extrabold-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-extrabold-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-extrabold-italic-webfont.ttf') format('truetype');
    font-weight: 800;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-bold.eot');
    src: url('../font/ralewayc2/raleway-bold.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-bold.woff') format('woff'),url('../font/ralewayc2/raleway-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-bold-italic-webfont.eot');
    src: url('../font/raleway/raleway-bold-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-bold-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-bold-italic-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-semibold.eot');
    src: url('../font/ralewayc2/raleway-semibold.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-semibold.woff') format('woff'),url('../font/ralewayc2/raleway-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-semibold-italic-webfont.eot');
    src: url('../font/raleway/raleway-semibold-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-semibold-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-semibold-italic-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-medium.eot');
    src: url('../font/ralewayc2/raleway-medium.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-medium.woff') format('woff'),url('../font/ralewayc2/raleway-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-medium-italic-webfont.eot');
    src: url('../font/raleway/raleway-medium-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-medium-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-medium-italic-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-regular.eot');
    src: url('../font/ralewayc2/raleway-regular.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-regular.woff') format('woff'),url('../font/ralewayc2/raleway-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-regular-italic-webfont.eot');
    src: url('../font/raleway/raleway-regular-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-regular-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-regular-italic-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-light.eot');
    src: url('../font/ralewayc2/raleway-light.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-light.woff') format('woff'),url('../font/ralewayc2/raleway-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-light-italic-webfont.eot');
    src: url('../font/raleway/raleway-light-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-light-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-light-italic-webfont.ttf') format('truetype');
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-extralight.eot');
    src: url('../font/ralewayc2/raleway-extralight.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-extralight.woff') format('woff'),url('../font/ralewayc2/raleway-extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-extralight-italic-webfont.eot');
    src: url('../font/raleway/raleway-extralight-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-extralight-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-extralight-italic-webfont.ttf') format('truetype');
    font-weight: 200;
    font-style: italic
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/ralewayc2/raleway-thin.eot');
    src: url('../font/ralewayc2/raleway-thin.eot?#iefix') format('embedded-opentype'),url('../font/ralewayc2/raleway-thin.woff') format('woff'),url('../font/ralewayc2/raleway-thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'ralewayc2';
    src: url('../font/raleway/raleway-thin-italic-webfont.eot');
    src: url('../font/raleway/raleway-thin-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../font/raleway/raleway-thin-italic-webfont.woff') format('woff'),url('../font/raleway/raleway-thin-italic-webfont.ttf') format('truetype');
    font-weight: 100;
    font-style: italic
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased
}

body {
    font-family: Tahoma,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    min-width: 1000px;
    position: relative
}

body>img {
    width: 100%
}

html,body {
    height: 100%
}

html {
    max-width: 100%
}

u {
    text-decoration: none;
    position: relative
}

u:after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    border-bottom: solid .04em #c91d2d;
    z-index: -1
}

a:focus {
    outline: 0
}

h1,h2,h3,h4 {
    font-family: 'ralewayc2'
}

.main-content {
    min-height: 100%
}

.wrapper {
    max-width: 1170px;
    margin: 0 auto
}

.dashed-link {
    color: #fff;
    border-bottom: 1px dashed #ccc;
    text-decoration: none
}

.dashed-link:hover {
    border-color: #fff;
    color: #fff
}

.prefooter-content {
    color: #4d4d4d
}

.prefooter-content.wrap {
    padding-top: 23px;
    margin-bottom: 60px
}

.prefooter-content p {
    margin: 24px 0
}

.prefooter-content h1,.prefooter-content h2,.prefooter-content h3,.prefooter-content h4 {
    margin: 24px 0
}

.prefooter-content a {
    color: #eb1429
}

.prefooter-content a:hover {
    color: #666
}

.hidden {
    display: none!important
}

.phone-plus:before {
    content: '+';
    font-size: 16px;
    font-weight: normal
}

.phone-plus.phone:before {
    font-size: 19px;
    font-weight: bold
}

._hide {
    display: none
}

._hide._active {
    display: block
}

i.floor-dr {
    position: absolute;
    font-style: normal
}

.align-right {
    text-align: right
}

.align-center {
    text-align: center
}

.button {
    font-family: ralewayc2;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    padding: 0 29px;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    text-decoration: none
}

.button-dark {
    color: #fff;
    background: #535359
}

.button-dark._dark {
    background: #26262a
}

header .phone .phone-num {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-decoration: none
}

.page-title {
    color: #525259;
    font-size: 50px;
    line-height: 1;
    margin: 45px 0 47px
}

.page-news .page-title {
    color: #525259;
    line-height: 70px
}

.buttons .btn {
    padding: 0;
    line-height: 25px;
    position: relative;
    width: 166px
}

.buttons .btn:first-of-type {
    margin-left: -34px
}

.buttons .btn:last-of-type {
    margin-right: -34px
}

.buttons .btn .back {
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    width: 100%;
    background: gray;
    height: 35px;
    position: absolute;
    top: 0
}

.buttons .btn a {
    display: block;
    z-index: 2;
    position: relative;
    width: 100%;
    text-decoration: none;
    font-weight: bold
}

.buttons .btn span {
    display: block;
    z-index: 2;
    position: relative;
    line-height: 35px;
    color: #fff;
    text-decoration: none;
    text-align: center
}

.buttons .btn:hover .back {
    background: #fff
}

.buttons .btn:hover span {
    color: #eb1429
}

.big-white-button {
    display: block;
    width: 525px;
    height: 70px;
    background: #fff;
    border-radius: 3px;
    color: #535359;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'ralewayc2';
    font-weight: 700;
    text-align: center;
    border: 0;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    margin: 7px 0 0 0;
    outline: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.big-white-button:hover {
    background: #f2f2f2;
    color: #535359
}

.big-white-button:active {
    background: #e5e5e5;
    color: #66666a
}

.big-white-button-collapsed {
    display: inline-block;
    vertical-align: top;
    width: 153px;
    font-size: 14px
}

.btn {
    font-family: ralewayc2;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase
}

.col {
    display: inline-block;
    width: 46%
}

.phone-i {
    display: block;
    font-size: 14px;
    line-height: 30px
}

.phone-i:before {
    content: "";
    margin-right: 16px;
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: 0 -265px;
    width: 15px;
    height: 15px
}

.mail-i {
    font-size: 14px;
    line-height: 30px;
    color: #eb1429
}

.mail-i:before {
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -240px -219px;
    width: 15px;
    height: 11px;
    content: "";
    margin-right: 16px
}

.point-i {
    position: relative;
    padding-left: 26px;
    margin-left: 10px;
    margin-top: 12px
}

.point-i:before {
    content: url(../img/content/search/search-marker.png);
    position: absolute;
    top: 0;
    left: 0
}

a.web-i {
    position: relative;
    padding-left: 26px;
    margin-left: 10px;
    color: #fff
}

a.web-i:before {
    content: url(../img/content/primary/web.png);
    position: absolute;
    top: 0;
    left: 0
}

.metro-i {
    position: relative;
    margin-left: 40px;
    padding-left: 30px
}

.metro-i:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -88px -243px;
    width: 18px;
    height: 12px
}

.auto-i {
    position: relative;
    margin-left: 40px;
    padding-left: 30px
}

.auto-i:before {
    position: absolute;
    top: 0;
    left: 2px;
    width: 20px;
    text-align: center;
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -73px -265px;
    width: 14px;
    height: 14px;
    content: ""
}

.electro-i {
    position: relative;
    margin-left: 40px;
    padding-left: 30px
}

.electro-i:before {
    position: absolute;
    top: 0;
    left: 1px;
    width: 20px;
    text-align: center;
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -266px -102px;
    width: 16px;
    height: 18px;
    content: ""
}

i.rub {
    position: relative;
    font-style: normal
}

i.rub:before {
    content: " –";
    position: absolute;
    top: 0;
    left: -2px
}

i.rub:after {
    content: " –";
    position: absolute;
    top: 2px;
    left: -2px
}

.train-i {
    position: relative;
    margin-left: 40px;
    padding-left: 30px
}

.train-i:before {
    position: absolute;
    top: 0;
    left: 2px;
    width: 20px;
    text-align: center;
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -266px -71px;
    width: 14px;
    height: 21px;
    content: ""
}

.troll-i {
    position: relative;
    margin-left: 40px;
    padding-left: 30px
}

.troll-i:before {
    position: absolute;
    top: 0;
    left: 1px;
    width: 20px;
    text-align: center;
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -266px -37px;
    width: 15px;
    height: 24px;
    content: ""
}

.bus-i {
    position: relative;
    margin-left: 40px;
    padding-left: 30px
}

.bus-i:before {
    position: absolute;
    top: 0;
    left: 2px;
    width: 20px;
    text-align: center;
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -240px -192px;
    width: 14px;
    height: 17px;
    content: ""
}

.h2-start {
    margin-top: 110px
}

.col-md-4 {
    display: inline-block;
    width: 32%;
    margin: 0 19px;
    vertical-align: top
}

.col-md-4:first-of-type,.col-md-4:last-of-type {
    margin: 0
}

._numFont {
    font-family: 'ralewayc2'
}

.photo-gallery-thumbs-item {
    text-align: center
}

.photo-gallery-thumbs-item img {
    max-width: 100%;
    height: 100%
}

.photo-gallery-main-item {
    text-align: center;
    background-color: #444
}

.photo-gallery-main-item img {
    height: 800px;
    display: block;
    margin: 0 auto
}

.popup .photo-gallery-main-arrow {
    top: 270px
}

.popup .photo-gallery-main-item {
    text-align: center
}

.popup .photo-gallery-main-item img {
    display: block;
    max-height: 600px;
    margin: 0 auto
}

.popup .owl-wrapper {
    background-color: #444
}

.intro .bg {
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: absolute
}

.photos .photo-gallery-main-container {
    min-height: 600px
}

.header-links {
    width: 1168px;
    margin: 0 auto;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -583px
}

.header-links a {
    color: #fff;
    font-family: ralewayc2;
    font-size: 12px
}

.header-links .left-link {
    float: left
}

.header-links .left-link:before {
    content: '';
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -297px 0;
    width: 10px;
    height: 15px;
    margin-bottom: -3px;
    margin-right: 10px
}

.header-links .right-link {
    float: right
}

.header-links .right-link:after {
    content: '';
    display: inline-block;
    background-image: url(sprite2.png);
    background-position: -297px -25px;
    width: 10px;
    height: 15px;
    margin-bottom: -3px;
    margin-left: 10px
}

.object-title {
    position: absolute;
    top: 180px;
    line-height: 305px;
    text-align: center;
    width: 1170px;
    margin: 0 auto 0;
    left: 0;
    right: 0
}

.object-title h1 {
    font-size: 82px;
    color: #fff;
    font-family: ralewayc2;
    position: relative;
    margin: 0;
    line-height: 82px;
    width: auto;
    display: inline-block;
    letter-spacing: -3px;
    text-decoration: none!important;
    vertical-align: middle
}

.object-title h1 .mylogo {
    position: absolute;
    bottom: 40px;
    width: 191px;
    height: 65px;
    right: -200px;
    padding: 10px 19px;
    border-top: solid 1px transparent;
    border-left: solid 1px transparent;
    border-bottom: solid 1px transparent;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.object-title h1 .mylogo.isImage {
    top: -10px
}

.object-title h1 .mylogo:hover {
    border-top: solid 1px #fff;
    border-left: solid 1px #fff;
    border-bottom: solid 1px #fff
}

.object-title h1 .mylogo:hover:after {
    content: '';
    position: relative;
    height: 65px;
    display: inline-block;
    width: 20px;
    background: url(/img/distr.png) no-repeat;
    top: -61px;
    right: -104px
}

.object-title h1 .mylogo .mylogo-inner {
    vertical-align: top;
    width: 152px;
    height: 47px
}

.object-title h1 .mylogo img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: super
}

.object-title div {
    font-size: 82px;
    color: #fff;
    font-family: ralewayc2;
    position: relative;
    margin: 0;
    line-height: 82px;
    width: auto;
    display: inline-block;
    letter-spacing: -3px;
    text-decoration: none!important;
    vertical-align: middle
}

.object-title div .mylogo {
    position: absolute;
    bottom: 40px;
    width: 191px;
    height: 65px;
    right: -200px;
    padding: 10px 19px;
    border-top: solid 1px transparent;
    border-left: solid 1px transparent;
    border-bottom: solid 1px transparent;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.object-title div .mylogo.isImage {
    top: -10px
}

.object-title div .mylogo:hover {
    border-top: solid 1px #fff;
    border-left: solid 1px #fff;
    border-bottom: solid 1px #fff
}

.object-title div .mylogo:hover:after {
    content: '';
    position: relative;
    height: 65px;
    display: inline-block;
    width: 20px;
    background: url(/img/distr.png) no-repeat;
    top: -61px;
    right: -104px
}

.object-title div .mylogo .mylogo-inner {
    vertical-align: top;
    width: 152px;
    height: 47px
}

.object-title div .mylogo img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: super
}

.redLink {
    font-size: 14px;
    line-height: 30px;
    color: #eb1429
}

i.absolute {
    position: relative;
    font-style: normal
}

i.absolute sup {
    position: absolute;
    top: .3em
}

.tooltip {
    position: relative
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1
}

.tooltip .tooltip-text {
    position: absolute;
    visibility: hidden;
    width: 80px;
    top: 100%;
    left: 50%;
    padding: 5px 0;
    margin-top: 5px;
    margin-left: -40px;
    border-radius: 6px;
    background-color: black;
    color: #fff;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: 20
}

.modal-open {
    overflow: hidden;
    margin-right: 16px
}

.modal-open header {
    margin-left: -8px
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0,-25%);
    -moz-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    transform: translate(0,-25%);
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0)
}

.modal .error-messages p {
    color: #f00
}

.modal-open .modal {
    overflow: auto
}

#person-biography {
    position: absolute
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px auto
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    border: 10px solid #f6f6f7;
    padding: 64px 40px 50px;
    -webkit-box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
    -moz-box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.4)
}

.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #000
}

.modal-backdrop.fade {
    zoom:1;filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    min-height: 100%
}

.modal-backdrop.in {
    zoom:1;filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5
}

.modal-close {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 20px;
    height: 20px;
    border: 0;
    font-size: 0;
    background: no-repeat 50%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARBAMAAADJQ1rJAAAAG1BMVEUAAAD////////////////////////////////rTT7CAAAACHRSTlMAbAE/q5M+PW9ORwMAAABSSURBVAjXY2AqYACBJAYG1UYQg7FVgcGiQwDIkugwYGDsAAoCCTBXAIzBfLAQWNADJAQWBApBgEeHAwNCDEUdQi/CPIQdGXB7EW5hMgAbYMQAAJNYGYWyyZvjAAAAAElFTkSuQmCC')
}

.search-slider {
    position: relative;
    width: 250px;
    height: 55px
}

.search-slider-mini {
    width: 125px;
    display: inline-block
}

.search-slider-container {
    display: inline-block;
    vertical-align: top;
    width: 250px;
    margin-left: 40px;
    white-space: nowrap
}

.search-slider-container-mini {
    width: 335px;
    margin-left: 10px
}

.search-slider-container label {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 26px 1px
}

.search-slider-container-mini label {
    font-size: 11px;
    margin-bottom: 25px
}

.search-slider-amount {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: bold
}

.search-slider-amount .slider-amount {
    width: 112px;
    height: 40px;
    background: 0;
    border: 2px solid #e57780;
    border-radius: 3px;
    text-align: center
}

.search-slider-amount-mini .slider-amount {
    width: 85px;
    height: 50px
}

.search-slider-mini .search-slider-amount {
    right: auto;
    left: 145px;
    bottom: 26px;
    font-size: 14px
}

.ui-slider {
    position: relative;
    text-align: left;
    border-radius: 3px;
    height: 5px
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 24px;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
    background: #fff;
    border-radius: 100%;
    border: #c91b2d solid 2px
}

.ui-slider .ui-slider-handle:focus {
    outline: 0
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    border: 0
}

.ui-slider-horizontal .ui-slider-handle {
    top: -9px;
    margin-left: -9px
}

.ui-slider-horizontal .ui-slider-range {
    top: -1px;
    height: 7px;
    background: url('data:image/gif;base64,R0lGODlhAgAHAIABAP///////yH5BAEAAAEALAAAAAACAAcAAAIERIynVgA7') 50% 0 repeat-x
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.ui-widget {
    font-size: 1.1em
}

.ui-widget-content {
    background: #e57780
}

.callback-modal-wrapper {
    margin-top: 50px;
    width: 564px
}

.callback-heading {
    font-family: 'ralewayc2';
    font-size: 24px;
    margin: 0 0 17px;
    line-height: 1;
    color: #404046
}

.callback-text {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 35px
}

.callback-row {
    margin-bottom: 20px
}

.callback-row:before,.callback-row:after {
    content: " ";
    display: table
}

.callback-row:after {
    clear: both
}

.callback-row:before,.callback-row:after {
    content: " ";
    display: table
}

.callback-row:after {
    clear: both
}

.callback-phone,.callback-time {
    float: left
}

.callback-phone {
    /*width: 274px;*/
    width: 100%;
    margin-right: 15px
}

.callback-time {
    width: 174px;
    border: 2px solid #85858a;
    border-radius: 4px
}

.callback-time .callback-input {
    width: 50%;
    float: left
}

.callback-time .callback-input div:first-child a {
    border-radius: 4px 0 0 4px;
    border-width: 0 1px 0 0
}

.callback-time .callback-input div a:last-child {
    border-radius: 0 4px 4px 0;
    border-width: 0
}

.callback-input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 8px;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 2px solid #85858a;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold
}

.callback-input-check {
    display: none
}

.callback-input:focus {
    outline: 0;
    background: #f6f6f7
}

.callback-input.disable {
    background: #ccc;
    cursor: default!important
}

.callback-input.error {
    border-color: #eb1429
}

.callback-input.placeholder {
    color: #999
}

.callback-input[data-required="required"].placeholder {
    color: #f00
}

.callback-input[data-required="required"]::-webkit-input-placeholder {
    color: #f00
}

.callback-input[data-required="required"]::-moz-placeholder {
    color: #f00
}

.callback-input[data-required="required"]:-moz-placeholder {
    color: #f00
}

.callback-input[data-required="required"]:-ms-input-placeholder {
    color: #f00
}

.select2-container-active a {
    outline: 0;
    background: #f6f6f7!important
}

.select2-container-active a span {
    color: #000!important
}

.search-form-fields .select2-container-active a,.search-form-collapsed-fields .select2-container-active a {
    outline: 0;
    background: none!important
}

.search-form-fields .select2-container-active a span,.search-form-collapsed-fields .select2-container-active a span {
    color: #fff!important
}

.callback-textarea {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 8px;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 2px solid #85858a;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    height: 125px;
    resize: none;
    overflow: auto
}

.callback-textarea-check {
    display: none
}

.callback-textarea:focus {
    outline: 0;
    background: #f6f6f7
}

.callback-textarea.disable {
    background: #ccc;
    cursor: default!important
}

.callback-textarea.error {
    border-color: #eb1429
}

.callback-textarea.placeholder {
    color: #999
}

.callback-textarea[data-required="required"].placeholder {
    color: #f00
}

.callback-textarea[data-required="required"]::-webkit-input-placeholder {
    color: #f00
}

.callback-textarea[data-required="required"]::-moz-placeholder {
    color: #f00
}

.callback-textarea[data-required="required"]:-moz-placeholder {
    color: #f00
}

.callback-textarea[data-required="required"]:-ms-input-placeholder {
    color: #f00
}

.callback-action-btn {
    font-family: 'ralewayc2';
    background: #ec142a;
    color: #fff;
    border: 0;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    padding: 24px 28px;
    margin-top: 30px;
    border-radius: 4px;
    outline: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.callback-action-btn:hover,.callback-action-btn:focus {
    background: #f4293e
}

.callback-action-btn:active {
    background: #c31a2b;
    -webkit-box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
    -moz-box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4)
}

.callback-error-inner,.callback-success-inner {
    padding-left: 98px;
    padding-bottom: 10px;
    color: #49494e
}

.callback-error-inner .callmail-heading,.callback-success-inner .callmail-heading {
    font-size: 24px
}

.callback-success-inner {
    background: no-repeat 0 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA+CAYAAABzwahEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABEVJREFUeNrsm81u20YQxwnYSBBfqneokQDtA9SnHNIendziAs6hQAP0JXxInVeI+wLxMa/wJyVT1ZcVVbYcwYYcyXYUCJZBMIQsEBJIantZAio/JJPcpdZCCcxJ3Nn5abk7szuzEgCJo3wH4DmAHQDvARwC6AIYAiBUhgC+0t/e03ef07bcbOOh9HsAbwCUAdhTgFHFpjreUJ1Cgq8A2AbwN4BJAtgwmVDd27SvhYOvAHgN4JwDbJic0z5XFgX+E4BaisBeqVEbUgN/BOAdAGeB0K441JZHvMEfAzgRANgrJ9Q2LuA/AzAEhHblG7WRKfhLAGOBoV0ZU1uZgL9M6I/TFvsu8POgn92TkQ4a+WdxwR8LPqfniTFrwZvlsk7uMfT0ar8WBfyvJYB2Ze+u4E85xduLDHI25oGvLskn7pV/vLG9F/z1EkK78nsY+CqAz0sMfk4ZfeCvRDe+UCgQXddJsViMq2M7CLwsMnQ2myWDwYAQQohlWeT4+DiOnrIX/AfRR7vX6xHvc3FxEUfXj9Pgb0WGPj09JUFPu92Oo+/tNHhFVOjDw0PiOI4PWtO0uDorLnhG1N2XqqpkNBr5oE3TJLlcLsnuLSMB2BQRWpZlouu6D9q2bVKpVJLq35ToAb5w4JeXl4HzutlsstC/IwHYFw260WgEQne7XVZ97Avnv0ulErEsywdtGAZRFIVVP2WJ5q2ECVKGw6EPejwek3w+z7KvrxKAQZzG9XqdGIaRZHX1Sb/f90FPJhNSq9VY/8m3Ulxo17cOBgMm8K1WK3Bet1otLl9XZPCjoyNfQJEUvlarkclk4oPu9/vcDiMjf+pBn6MLf3BwENmIfD5PxuOxT99wOCTZbJYXuBZ5cVMUhdzc3DCBVxSFGIYRGKSUSiWeC+lFLHfGCr7b7QbqaDQavD1IOXYAkxS+2WwGtr26ukrDde4nClkVRYk158vlMrFt29dG13Uiy3Ia4DuJNylR4XO5HDFN0/fuaDQiqqqmFSxtMtmWyrIcCn97e/sfeE3TfO84jkOq1WqaScUMs4OIefCqqpJ2ux34+9nZWZqhcWX6BOZPVnvoMHjTNAODlF6vl/aeYHcafJ1V2mgWfNAawDFICSsbW/ceLxdYnp5cX1/PhLYsixQKhbRHu8A9oTAPvl6vL2Lr+yqVFFKYq+t0OkKlkLgkDb0jr2laWkHKnZOGbolmnQd8p9Mhuq4zPbiIIPV5aWKJJtEdCHjyyrMwwJW9JQJ/F6UGZg1Ac0kqIR5GLfd6sgTlXuv/F/jFKOncuoclnVusinh/vUdFvFtgXLb9i+Bz3qA2cinUfwLgk4DQn6htXK9mrFE/L8rVjL2welVel3E2qJ9cpI/eWNT1q1UAfwD4kiLwF9rnqggX7h4A+A1AkWMBcJH28UDkK5a7AKoMrlhWqS5hr1iGSQbAC2r8BwAfZ1yq/Ujf2aVtMjxt+3cA5yOKjPki9+oAAAAASUVORK5CYII=');
    min-height: 62px
}

.select2-container.callback-select {
    width: 50%;
    float: left
}

.select2-container.callback-select-full {
    width: 100%
}

.select2-container.callback-select.callback-select-from .select2-choice {
    border-radius: 4px 0 0 4px;
    border-width: 0 1px 0 0
}

.select2-container.callback-select.callback-select-to .select2-choice {
    border-radius: 0 4px 4px 0;
    border-width: 0 0 0 1px
}

.select2-container.callback-select .select2-default {
    color: #bbb
}

.select2-container.callback-select .select2-choice {
    height: 46px;
    padding: 12px 8px;
    color: #000;
    background-color: none;
    background-image: none;
    border: 2px solid #85858a;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font: bold 14px/20px Tahoma,Arial,sans-serif
}

.select2-container.callback-select .select2-choice span {
    margin-right: 0
}

.select2-container.callback-select .select2-choice div {
    border: 0;
    background: 0;
    top: auto;
    bottom: 2px;
    right: 2px;
    width: 9px;
    height: 9px
}

.select2-container.callback-select .select2-choice div b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #505050 transparent
}

.select2-container.callback-select.select2-dropdown-open .select2-default {
    color: #ccc
}

.select2-container.callback-select.select2-dropdown-open .select2-choice {
    color: #fff;
    background: #85858a
}

.select2-container.callback-select.select2-dropdown-open .select2-choice div b {
    border-color: transparent transparent #fff transparent
}

.select2-drop.callback-select-dropdown {
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #cfd0d0;
    width: 130px;
    min-width: 100px
}

.select2-drop.callback-select-dropdown._projects {
    width: 450px!important
}

.select2-drop.callback-select-dropdown .select2-results {
    padding: 0;
    margin: 0
}

.select2-drop.callback-select-dropdown .select2-results li {
    height: auto;
    border-bottom: 1px solid #e8e8eb
}

.select2-drop.callback-select-dropdown .select2-results li:first-child {
    border-radius: 4px 4px 0 0
}

.select2-drop.callback-select-dropdown .select2-results li:last-child {
    border-bottom: 0;
    border-radius: 0 0 4px 4px
}

.select2-drop.callback-select-dropdown .select2-results li.select2-highlighted {
    background: #eb1429
}

.select2-drop.callback-select-dropdown .select2-results li .select2-result-label {
    padding: 9px 14px
}

.select2-drop.callback-select-dropdown .select2-results li.select2-disabled {
    display: none
}

.select2-drop.callback-select-dropdown-normal {
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #cfd0d0
}

.select2-drop.callback-select-dropdown-normal._projects {
    width: 450px!important
}

.select2-drop.callback-select-dropdown-normal .select2-results {
    padding: 0;
    margin: 0
}

.select2-drop.callback-select-dropdown-normal .select2-results li {
    height: auto;
    border-bottom: 1px solid #e8e8eb
}

.select2-drop.callback-select-dropdown-normal .select2-results li:first-child {
    border-radius: 4px 4px 0 0
}

.select2-drop.callback-select-dropdown-normal .select2-results li:last-child {
    border-bottom: 0;
    border-radius: 0 0 4px 4px
}

.select2-drop.callback-select-dropdown-normal .select2-results li.select2-highlighted {
    background: #eb1429
}

.select2-drop.callback-select-dropdown-normal .select2-results li .select2-result-label {
    padding: 9px 14px
}

.select2-drop.callback-select-dropdown-normal .select2-results li.select2-disabled {
    display: none
}

body {
    background: #e8e8ec
}

.slider .slider-item._show {
    opacity: 1;
    z-index: 5;
    position: absolute;
    left: -100000px
}

header {
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1005
}

header .wrapper {
    position: relative;
    display: table;
    width: 100%;
    width: 1170px;
    z-index: 4;
    box-sizing: content-box;
    padding: 0 40px
}

header .wrapper>* {
    display: table-cell
}

header .phone {
    color: #fff;
    background: #848489;
    width: 233px;
    min-width: 250px;
    text-align: right;
    padding-right: 28px;
    vertical-align: top;
    font-weight: 600;
    font-family: 'ralewayc2'
}

header .phone a {
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    margin-right: 6px;
    color: #ccc;
    font-family: "ralewayc2";
    display: inline
}

header .phone .wrapper-login-link {
    margin: 8px 0
}

header .phone .login-link {
    color: #000;
    font-size: 13px;
    font-style: normal
}

header .phone .avatar {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 5px;
    left: 0
}

header .phone .wrapper-phone {
    position: relative;
    height: 100%;
    padding-left: 60px
}

.col-left {
    width: 61.88034188%;
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    color: #4c4c4c;
    line-height: 18px
}

.col-left p,.col-left ul {
    font-size: 12px;
    color: #4c4c4c;
    line-height: 18px;
    margin-bottom: 10px;
    margin-top: 0
}

.col-left p b,.col-left ul b {
    font-size: 12px;
    line-height: 18px;
    font-weight: 600
}

.col-left b {
    font-size: 15px;
    line-height: 40px;
    font-weight: 500
}

.col-right {
    display: inline-block;
    padding-left: 6.83760684%;
    width: 36.41025641%;
    vertical-align: top
}

.col .wysiwyg-block {
    max-width: 100%;
    width: 554px
}

.menu-wrap {
    position: relative;
    height: 100px;
    background: #fff
}

.menu-wrap .logo {
    position: absolute;
    left: 33px;
    top: 4px;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    width: 128px;
    height: 58px
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx) {
    .menu-wrap .logo {
        background-image:url(../img/logo@2x.png);
        background-size: 128px 58px
    }
}

.menu-wrap:after {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    margin-left: -1px;
    border-top: 100px solid #fff;
    border-right: 49px solid transparent
}

.menu-wrap .short-description {
    font-size: 11px;
    left: 33px;
    position: absolute;
    top: 67px
}

.menu {
    text-align: justify;
    height: 70px;
    border-bottom: 1px solid #98999b;
    min-width: 515px;
    margin: 0;
    padding: 0;
    margin-left: 255px;
    margin-top: 10px;
    max-width: 650px
}

.menu>* {
    display: -moz-inline-stack;
    display: inline-block;
    zoom:1;*display: inline;
    white-space: nowrap
}

.menu:after {
    content: '';
    display: inline-block;
    width: 100%
}

.menu>.menu-item {
    font-family: 'ralewayc2';
    cursor: pointer;
    font-weight: 400;
    padding-bottom: 5px;
    padding-top: 5px;
    position: relative
}

.menu>.menu-item>a {
    display: block;
    line-height: 60px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px
}

.menu>.menu-item>a._active:before {
    content: "";
    border-bottom: solid .3em #848489;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 1px
}

.menu>.menu-item:hover .sub-menu {
    display: block;
    opacity: 1;
    max-height: 500px
}

.sub-menu {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    top: 70px;
    background: #fff;
    width: 200px;
    margin: 0;
    padding: 0;
    list-style: none
}

.sub-menu>.menu-item {
    font-size: 12px;
    text-align: left
}

.sub-menu>.menu-item>a {
    display: block;
    padding: 12px 18px;
    color: #99999d;
    text-decoration: none;
    white-space: normal
}

.sub-menu>.menu-item:hover {
    background: #f2f2f2;
    cursor: pointer
}

.sub-menu>.menu-item:hover a {
    color: #585858
}

.sub-menu>.menu-item.top-separator {
    border-top: 1px solid #b2b2b2
}

.menu-hover {
    position: absolute;
    height: 0;
    background: #eb1429;
    bottom: 21px
}

.slider {
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 1000px;
    min-height: 720px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slider._hide {
    display: none
}

.slider .slider-container,.slider .slider-item-unskew,.slider .slider-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.slider .slider-container {
    width: 136%;
    margin-left: -18%
}

.slider .slider-item-shadow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px
}

.slider .slider-item-shadow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px
}

.slider .slider-item {
    opacity: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%
}

.slider .slider-item-unskew {
    background-position: 50% 50%;
    background-size: cover
}

.slider .slider-item._animation {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    overflow: hidden
}

.slider .slider-item._active {
    opacity: 1;
    z-index: 2
}

.slider .slider-item._animation {
    z-index: 3;
    opacity: 1
}

.slider .slider-item-overlay {
    background: #000;
    opacity: .4
}

.slider .slider-item-shadow-top {
    background: url("../img/shadow-top.png")
}

.slider .slider-item-shadow-bottom {
    background: url("../img/shadow-bot.png")
}

.slider .slider-item-wrap {
    height: 290px;
    width: 1200px;
    padding: 0 80px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center
}

.slider .slider-content {
    display: block;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    font-size: 80px;
    line-height: 90px;
    text-align: center;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    font-family: 'ralewayc2';
    will-change: transform
}

.slider .slider-content ul {
    text-decoration: none;
    border-bottom: 3px solid #eb1429;
    display: inline-block;
    line-height: 81px;
    margin-bottom: 4px
}

.slider .slider-link-wrap {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    opacity: 0
}

.slider .slider-link {
    display: inline-block;
    padding: 5px 35px;
    line-height: 20px;
    margin-top: -5px;
    font-family: 'ralewayc2';
    font-size: 10px;
    text-transform: uppercase;
    color: #fff
}

.slider .slider-link-wrap {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0
}

.slider .slider-link {
    display: inline-block;
    padding: 5px 35px;
    line-height: 20px;
    margin-top: -5px;
    font-family: 'ralewayc2';
    font-size: 10px;
    text-transform: uppercase;
    color: #fff
}

.slider .slider-logos {
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -550px;
    width: 1100px;
    overflow: hidden;
    z-index: 10
}

.slider .slider-logos ul {
    margin: 0 auto;
    padding: 0;
    height: 125px;
    white-space: nowrap
}

.slider .slider-logos ul._animate {
    -webkit-transition: margin-left .5s;
    -moz-transition: margin-left .5s;
    -o-transition: margin-left .5s;
    transition: margin-left .5s
}

.slider .slider-logos li {
    display: inline-block;
    line-height: 100px;
    text-align: center;
    width: 148px;
    -webkit-transition: all .5s linear .5s;
    -moz-transition: all .5s linear .5s;
    -o-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
    position: relative;
    padding: 0 10px
}

.slider .slider-logos li img {
    width: 100%;
    zoom:1;filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    vertical-align: middle;
    -webkit-transition: all .5s linear .5s;
    -moz-transition: all .5s linear .5s;
    -o-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s
}

.slider .slider-logos li:hover img {
    zoom:1;filter: alpha(opacity=75);
    -webkit-opacity: .75;
    -moz-opacity: .75;
    opacity: .75
}

.slider .slider-logos li._active {
    width: 220px;
    -webkit-transition: all .5s linear 0s;
    -moz-transition: all .5s linear 0s;
    -o-transition: all .5s linear 0s;
    transition: all .5s linear 0s
}

.slider .slider-logos li._active img {
    zoom:1;filter: alpha(opacity=85);
    -webkit-opacity: .85;
    -moz-opacity: .85;
    opacity: .85;
    -webkit-transition: all .5s linear .5s;
    -moz-transition: all .5s linear .5s;
    -o-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s
}

.slider .slider-logos li._active .slider-link {
    opacity: 1;
    -webkit-transition: all .5s linear .5s;
    -moz-transition: all .5s linear .5s;
    -o-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
    top: 108px
}

.slider .slider-logos li._active:hover img {
    zoom:1;filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1
}

.slider .slider-logos li .slider-link {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: all .5s linear 0s;
    -moz-transition: all .5s linear 0s;
    -o-transition: all .5s linear 0s;
    transition: all .5s linear 0s;
    opacity: 0
}

.slider .slider-btn-wrap {
    display: inline-block;
    width: 565px;
    position: absolute;
    left: 50%;
    margin-left: -282.5px;
    top: 50%;
    margin-top: 96px;
    height: 70px;
    overflow: hidden;
    z-index: 10
}

.slider .slider-btn-wrap img {
    pointer-events: all;
    height: 72px;
    width: 567px;
    left: -1px;
    position: absolute;
    z-index: 4;
    top: 0
}

.slider .slider-btn {
    position: absolute;
    text-align: center;
    height: 70px;
    width: 257px;
    line-height: 70px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'ralewayc2';
    font-size: 24px;
    font-weight: 600;
    border-top: 1px solid #eb1429;
    border-left: 1px solid #eb1429;
    border-bottom: 1px solid #eb1429;
    transition: .3s;
    transition-timing-function: ease-out
}

.slider .slider-btn ._mytext {
    position: absolute;
    right: 0;
    z-index: 3;
    font-size: 18px
}

.slider .slider-btn:before {
    position: absolute;
    content: ''
}

.slider .slider-btn._left {
    left: 0;
    padding-left: 7px
}

.slider .slider-btn._left .red-right {
    position: absolute;
    right: -22px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #eb1429;
    width: 50%;
    transition: .3s;
    transition-timing-function: ease-out;
    z-index: 1;
    display: block;
    border-top: solid 1px #eb1429;
    top: -2px;
    height: 71px
}

.slider .slider-btn._left .red-left {
    left: -20%;
    position: absolute;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #eb1429;
    width: 80%;
    transition: .4s;
    z-index: 1;
    display: block;
    border-top: solid 1px #eb1429;
    top: -1px;
    height: 71px
}

.slider .slider-btn._left:before {
    left: 100%;
    border-right: 43px solid transparent
}

.slider .slider-btn._right {
    right: 0;
    border-right: 2px solid transparent;
    padding-right: 15px
}

.slider .slider-btn._right ._mytext {
    right: 10px
}

.slider .slider-btn._right .red-right {
    position: absolute;
    left: -22px;
    top: -1px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #eb1429;
    height: 70px;
    width: 50%;
    transition: .3s;
    transition-timing-function: ease-out;
    z-index: 1;
    display: block;
    border-bottom: solid 1px #eb1429
}

.slider .slider-btn._right .red-left {
    right: -20%;
    position: absolute;
    top: -1px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #eb1429;
    height: 70px;
    width: 80%;
    transition: .4s;
    z-index: 1;
    display: block
}

.slider .slider-btn._right:before {
    left: 0;
    border-left: 43px solid transparent
}

.slider .slider-btn._hover {
    color: #fff;
    background: transparent;
    border-color: #fff
}

.slider .slider-btn._hover .red-right {
    width: 0
}

.slider .slider-btn._hover .red-left {
    width: 0
}

.slider .slider-btn._hover._left {
    border-right: 0;
    padding-left: 6px
}

.slider .slider-btn._hover._left._hover:before {
    bottom: 0;
    border: 0;
    width: 43px;
    height: 43px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    height: 100%;
    border-top: solid 1px;
    border-right: 1px solid;
    margin-left: -22px
}

.slider .slider-btn._hover._right {
    border-left: 1px solid transparent;
    padding-right: 15px
}

.slider .slider-btn._hover._right:before {
    background-position: -43px 0
}

.slider .slider-btn._hover._right._hover:before {
    border: 0;
    height: 100%;
    width: 297px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    border-bottom: solid 1px;
    border-left: 1px solid;
    margin-left: -22px
}

.slider .slider-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 300px;
    height: 115px;
    -webkit-transition: all ease 500ms 0ms;
    -moz-transition: all ease 500ms 0ms;
    -o-transition: all ease 500ms 0ms;
    transition: all ease 500ms 0ms
}

.slider .slider-logo._hover {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95)
}

.slider .slider-logo .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    backface-visibility: hidden
}

.slider .slider-mouse-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    bottom: 0;
    text-align: right
}

.slider .slider-mouse {
    pointer-events: all;
    cursor: pointer;
    display: inline-block;
    bottom: 0;
    width: 67px;
    height: 67px;
    background: #fff;
    z-index: 4;
    position: absolute;
    color: #909090;
    margin-left: -82px;
    -webkit-transition: bottom 300ms ease 0ms;
    -moz-transition: bottom 300ms ease 0ms;
    -o-transition: bottom 300ms ease 0ms;
    transition: bottom 300ms ease 0ms
}

.slider .slider-mouse svg {
    top: 3px;
    width: 26px;
    height: 46px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto
}

.slider .slider-mouse:after {
    position: absolute;
    content: 'вниз';
    text-transform: uppercase;
    top: 40px;
    left: 0;
    text-align: center;
    width: 100%
}

.slider .slider-mouse:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    border-left: 67px solid transparent;
    border-bottom: 41px solid #fff;
    transform: rotate(360deg)
}

.slider .slider-mouse:hover {
    bottom: -10px
}

.slider .slider-controls {
    position: absolute;
    cursor: pointer;
    width: 1100px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0
}

.slider .slider-arrow {
    cursor: pointer;
    position: absolute;
    bottom: 100px;
    z-index: 4;
    width: 26px;
    height: 46px;
    -webkit-transition: all ease 300ms 0ms;
    -moz-transition: all ease 300ms 0ms;
    -o-transition: all ease 300ms 0ms;
    transition: all ease 300ms 0ms
}

.slider .slider-arrow svg {
    width: 26px;
    height: 46px
}

.slider .slider-arrow:hover {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3)
}

.slider .slider-arrow._right {
    left: 100%
}

.slider .slider-arrow._left {
    right: 100%
}

main {
    position: relative;
    z-index: 4;
    min-height: 100vh;
    background: #e8e8ec;
    overflow: hidden
}

main .wrapper {
    position: relative;
    width: 1170px;
    padding: 0 3px
}

main .masonry {
    position: relative;
    width: 1170px;
    margin-left: -1.2%;
    padding-top: 40px
}

main .masonry .div .div.block:nth-child(1) {
    margin-left: 0
}

main .masonry .grid-gutter {
    width: 2%
}

main .masonry .grid-sizer {
    width: 23%
}

main .masonry .block {
    position: relative;
    display: none;
    background: #fff;
    color: #fff;
    margin-bottom: 23px;
    width: 24%;
    margin-left: 1%;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.15);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.15);
    box-shadow: 0 2px 5px rgba(0,0,0,.15)
}

main .masonry .block._promo {
    width: 49%;
    background: #eb1429;
    font-family: 'ralewayc2';
    height: 300px;
    padding: 12px 55px;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,.4);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,.4);
    box-shadow: 0 2px 10px rgba(0,0,0,.4)
}

main .masonry .block._promo p {
    font-size: 20px;
    line-height: 28px;
    margin-top: 10px
}

main .masonry .block._promo h2 {
    font-weight: 800;
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #fff
}

main .masonry .block._promo h2 p {
    font-weight: 800;
    font-size: 38px;
    margin-top: 0;
    padding: 0;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 19px
}

main .masonry .block._promo h1 p {
    font-weight: 800;
    font-size: 30px;
    margin-top: 0;
    padding: 0;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 19px
}

main .masonry .block._promo a {
    position: absolute;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #f58a95;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    right: 36px;
    bottom: 26px;
    color: #fff;
    height: 25px;
    line-height: 25px;
    padding: 0 7px;
    width: auto!important
}

main .masonry .block._promo a:hover {
    color: #eb1429;
    background: #fff;
    border-color: #fff
}

main .masonry .block a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none
}

main .masonry .block._news {
    overflow: hidden;
    padding-bottom: 30px;
    height: 623px
}

main .masonry .block._news a:hover .news-title {
    border-color: #d32e2e
}

main .masonry .block._news a:hover .news-title span {
    border-color: #d32e2e;
    display: inline;
    border-bottom: 1px solid
}

main .masonry .block._news .news-text-wrap {
    max-height: 360px;
    overflow: hidden
}

main .masonry .block._news .news-text-wrap>p {
    padding: 0 28px;
    line-height: 23px;
    color: #4c4c4c
}

main .masonry .block._news .news-type {
    color: #fff;
    cursor: pointer;
    position: absolute;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 24px;
    padding: 13px 28px;
    height: 50px;
    width: 100%;
    background: rgba(0,0,0,0.6);
    -webkit-transition: background 300ms ease 0ms;
    -moz-transition: background 300ms ease 0ms;
    -o-transition: background 300ms ease 0ms;
    transition: background 300ms ease 0ms
}

main .masonry .block._news .news-type:hover {
    background: rgba(0,0,0,0.9)
}

main .masonry .block._news .news-img {
    position: relative;
    min-height: 50px;
    z-index: 1;
    overflow: hidden
}

main .masonry .block._news .news-img img {
    width: 100%;
    height: auto;
    display: block
}

main .masonry .block._news .news-img a {
    text-decoration: none;
    display: block;
    letter-spacing: 1px;
    font-weight: 100
}

main .masonry .block._news .news-img-overlay {
    width: 105%;
    height: 105%;
    position: absolute;
    bottom: -1px;
    left: -1px;
    background: #fff
}

main .masonry .block._news .news-text-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    -webkit-transition: all ease 400ms 0ms;
    -moz-transition: all ease 400ms 0ms;
    -o-transition: all ease 400ms 0ms;
    transition: all ease 400ms 0ms
}

main .masonry .block._news .news-date {
    padding: 0 28px;
    font-size: 11px;
    line-height: 1px;
    color: #939295;
    padding-top: 30px
}

main .masonry .block._news .news-title {
    cursor: pointer;
    display: block;
    text-decoration: none;
    font-family: 'ralewayc2';
    padding: 0 28px;
    color: #d32e2e;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 25px;
    margin-bottom: 15px
}

main .masonry .block._news .news-title span,main .masonry .block._news .news-title p {
    display: inline;
    border-bottom: 1px solid transparent
}

main .masonry .block._news .news-text {
    -webkit-column-gap: 28px;
    -moz-column-gap: 28px;
    column-gap: 28px;
    -webkit-column-width: 224.8px;
    -moz-column-width: 224.8px;
    column-width: 224.8px;
    color: #4c4c4c;
    height: 161px;
    padding: 0 28px;
    overflow: hidden
}

main .masonry .block._news .news-text p {
    line-height: 23px;
    margin-top: 0
}

main .masonry .block._news .news-text span {
    display: inline;
    border-bottom: 1px solid red
}

main .masonry .block._news .news-sourse {
    position: absolute;
    bottom: 15px;
    right: 18px;
    font-size: 11px;
    line-height: 1px;
    color: #939295
}

main .masonry .block._news .news-sourse img {
    max-height: 20px;
    max-width: 100px
}

main .masonry .block._reward {
    height: 300px;
    overflow: hidden;
    cursor: pointer
}

main .masonry .block._reward .reward-name {
    color: #fff;
    cursor: pointer;
    display: block;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 50px;
    text-align: center;
    height: 50px;
    width: 100%;
    background: #eb142a;
    z-index: 4;
    letter-spacing: 1px
}

main .masonry .block._reward .reward-img {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 180px;
    line-height: 250px;
    text-align: center
}

main .masonry .block._reward .reward-img img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%
}

main .masonry .block._reward .reward-title-wrap {
    text-decoration: none;
    display: table;
    height: 70px;
    width: 100%;
    padding: 0 15px 15px
}

main .masonry .block._reward .reward-title {
    opacity: 0;
    display: table-cell;
    vertical-align: middle;
    color: #404040;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: bold
}

main .masonry .block._reward .rewar-hover-text {
    top: 0;
    left: 0;
    position: absolute;
    /*display: table;*/
    background: rgba(235,20,41,0.8);
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin-left: -300%;
    -webkit-transform: skew(-45deg);
    -moz-transform: skew(-45deg);
    -o-transform: skew(-45deg);
    -ms-transform: skew(-45deg);
    transform: skew(-45deg);
    width: 240%;
    height: 100%;
    color: #fff;
    -webkit-transition: margin-left 100ms ease-in;
    -moz-transition: margin-left 100ms ease-in;
    -o-transition: margin-left 100ms ease-in;
    transition: margin-left 100ms ease-in
}

main .masonry .block._reward:hover .rewar-hover-text {
    margin-left: -70%
}

main .masonry .block._reward:hover .rewar-hover-text .text {
    display: table-cell;
    vertical-align: middle;
    padding: 10% 32%;
    -webkit-transform: skew(45deg);
    -moz-transform: skew(45deg);
    -o-transform: skew(45deg);
    -ms-transform: skew(45deg);
    transform: skew(45deg)
}

main .masonry .block._reward .rewar-hover-text .text {
    display: table-cell;
    vertical-align: middle;
    padding: 10% 32%;
    -webkit-transform: skew(45deg);
    -moz-transform: skew(45deg);
    -o-transform: skew(45deg);
    -ms-transform: skew(45deg);
    transform: skew(45deg);
    font-size: 12px
}

main .masonry .block._reward .rewar-hover-text .text strong {
    font-size: 14px
}

main .masonry .block._reward:hover .reward-title {
    opacity: 1;
    color: #fff
}

main .show-all-news {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 300;
    color: #a09fa2;
    padding-bottom: 5px;
    margin-bottom: 34px;
    margin-top: 26px;
    color: #b2b1b3;
    border-bottom: 1px solid #c6c6c7;
    text-decoration: none;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

main .show-all-news:hover {
    color: #939295;
    border-color: #939295
}

main .show-all-news:hover {
    color: #a7a6a9;
    text-decoration: none
}

main .show-all-news:active {
    color: #828184
}

.clearfooter {
    clear: both
}

.main-content {
    padding-bottom: 280px;
    margin-bottom: -280px
}

.before-footer {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 280px;
    min-width: 1250px!important
}

.prefooter-links {
    padding: 0;
    list-style: none
}

.prefooter-links:before,.prefooter-links:after {
    content: " ";
    display: table
}

.prefooter-links:after {
    clear: both
}

.prefooter-links:before,.prefooter-links:after {
    content: " ";
    display: table
}

.prefooter-links:after {
    clear: both
}

.prefooter-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 26px
}

.prefooter-links ul .menu-link {
    margin-bottom: 6px
}

.prefooter-links ul a {
    display: inline-block;
    font-size: 13px;
    line-height: 14px;
    font-weight: 400;
    text-decoration: underline;
    color: #4c4c4c;
    border-color: #4c4c4c
}

.prefooter-links .menu-col {
    float: left;
    display: inline-block;
    padding-right: 20px;
    vertical-align: top;
    width: 220px
}

.prefooter-links .menu-col>span {
    font-family: 'ralewayc2';
    text-transform: uppercase;
    color: #404040;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    display: none;
    margin-top: 19px
}

.prefooter-links .menu-col.wide {
    width: 300px
}

footer {
    position: relative;
    z-index: 4;
    background: #fff;
    min-height: 280px;
    padding-top: 15px
}

footer .wrapper {
    position: relative
}

footer .footer-menu-wrap {
    min-height: 200px
}

footer .footer-menu-wrap div.menu-col {
    display: inline-block;
    padding-right: 73px;
    vertical-align: top
}

footer .footer-menu-wrap div.menu-col:first-child {
    padding-right: 65px
}

footer .footer-menu-wrap div.menu-col:nth-child(2) {
    padding-right: 88px
}

footer .footer-menu-wrap div.menu-col:nth-child(3) {
    padding-right: 71px
}

footer .footer-menu-wrap .menu-col-phone {
    vertical-align: top;
    display: inline-block;
    margin-left: 110px
}

footer .footer-menu-wrap .menu-col-phone h4 {
    margin-bottom: 12px
}

footer .footer-menu-wrap .menu-col-phone .phone {
    border: 0 none;
    color: #000;
    display: block;
    font-size: 18px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: ralewayc2
}

footer h4 {
    text-transform: uppercase;
    color: #404040;
    font-weight: bold;
    font-size: 14px;
    line-height: 31px;
    margin-bottom: 20px;
    display: block;
    margin-top: 30px
}

footer h5 {
    color: #404040;
    font-weight: bold;
    font-size: 12px;
    margin: 15px 0
}

footer a {
    display: inline-block;
    font-size: 13px;
    line-height: 14px;
    margin-bottom: 13px;
    font-weight: 400;
    /*border-bottom: 1px solid #f3727f;*/
    text-decoration:none;
    color: #eb1429;
    border-color: #eb1429;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s
}

footer a:hover {
    text-decoration:underline;
    color: #ee4e59;
    border: 0;
}
footer a:active {
    color: #af1828;
    border: 0;
    /*margin-bottom: 14px*/
}

footer .copyright {
    color: #4c4c4c;
    font-size: 12px;
    line-height: 24px;
    margin-top: 28px
}

footer .author {
    position: absolute;
    right: 14px;
    bottom: -7px;
    color: #4c4c4c;
    font-size: 12px;
    padding-top: 9px
}

footer .author:before {
    position: absolute;
    content: '';
    background-image: url(sprite2.png);
    background-position: -211px -124px;
    width: 39px;
    height: 36px;
    bottom: 100%;
    right: 0
}

footer .author a {
    border: 0;
    margin-bottom: 13px!important
}

.t-header {
    height: 80px;
    position: absolute
}

.t-header2 {
    height: 80px;
    position: absolute;
    top: -160px
}

.additional-buttons {
    background: url("../img/content/additional-bg.jpg") no-repeat 50%;
    height: 210px;
    max-width: 1170px;
    position: relative;
    margin-bottom: 40px
}

.additional-buttons .slider-btn-wrap {
    display: inline-block;
    width: 565px;
    left: 50%;
    margin-left: -282.5px;
    top: 50%;
    margin-top: 75px;
    height: 71px;
    overflow: hidden;
    top: 0;
    position: absolute;
    z-index: 2
}

.additional-buttons .slider-btn-wrap img {
    pointer-events: all;
    height: 72px;
    width: 567px;
    left: -1px;
    position: absolute;
    z-index: 4;
    top: -1px
}

.additional-buttons .slider-btn {
    position: absolute;
    text-align: center;
    height: 70px;
    width: 257px;
    line-height: 70px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    font-family: 'ralewayc2';
    font-weight: 600;
    border-top: 1px solid #eb1429;
    border-left: 1px solid #eb1429;
    border-bottom: 1px solid #eb1429;
    transition: .3s;
    transition-timing-function: ease-out
}

.additional-buttons .slider-btn ._mytext {
    position: absolute;
    right: 0;
    z-index: 3
}

.additional-buttons .slider-btn:before {
    position: absolute;
    top: 0;
    content: ''
}

.additional-buttons .slider-btn._left {
    left: 0;
    padding-left: 9px
}

.additional-buttons .slider-btn._left .red-right {
    position: absolute;
    right: -22px;
    top: -1px;
    -webkit-transform: skew(-31.6deg);
    -moz-transform: skew(-31.6deg);
    -o-transform: skew(-31.6deg);
    -ms-transform: skew(-31.6deg);
    background: #eb1429;
    height: 70px;
    width: 50%;
    transition: .3s;
    transition-timing-function: ease-out;
    z-index: 1;
    display: block
}

.additional-buttons .slider-btn._left .red-left {
    left: -20%;
    position: absolute;
    -ms-transform: skew(-31.6deg);
    -webkit-transform: skew(-31.6deg);
    -moz-transform: skew(-31.6deg);
    -o-transform: skew(-31.6deg);
    background: #eb1429;
    width: 80%;
    transition: .4s;
    z-index: 1;
    display: block;
    border-top: solid 1px #eb1429;
    top: -1px;
    height: 71px
}

.additional-buttons .slider-btn._left:before {
    left: 100%;
    border-right: 43px solid transparent
}

.additional-buttons .slider-btn._left._hover:before {
    top: -1px;
    border: 0;
    width: 43px;
    height: 70px;
    -webkit-transform: skew(-31.6deg);
    -moz-transform: skew(-31.6deg);
    -o-transform: skew(-31.6deg);
    -ms-transform: skew(-31.6deg);
    border-top: solid 1px;
    border-right: 1px solid;
    margin-left: -22px
}

.additional-buttons .slider-btn._right {
    right: 0;
    border-right: 1px solid transparent;
    padding-right: 15px
}

.additional-buttons .slider-btn._right ._mytext {
    margin-right: 15px
}

.additional-buttons .slider-btn._right .red-right {
    position: absolute;
    left: -22px;
    top: 0;
    -webkit-transform: skew(-31.6deg);
    -moz-transform: skew(-31.6deg);
    -o-transform: skew(-31.6deg);
    -ms-transform: skew(-31.6deg);
    background: #eb1429;
    width: 50%;
    transition: .3s;
    transition-timing-function: ease-out;
    z-index: 1;
    display: block;
    border-top: solid 1px #eb1429;
    top: -1px;
    height: 71px
}

.additional-buttons .slider-btn._right .red-left {
    right: -20%;
    position: absolute;
    -webkit-transform: skew(-31.6deg);
    -moz-transform: skew(-31.6deg);
    -o-transform: skew(-31.6deg);
    -ms-transform: skew(-31.6deg);
    background: #eb1429;
    width: 80%;
    transition: .4s;
    z-index: 1;
    display: block;
    border-top: solid 1px #eb1429;
    top: -1px;
    height: 71px
}

.additional-buttons .slider-btn._right:before {
    left: 0;
    border-left: 43px solid transparent
}

.additional-buttons .slider-btn._right._hover:before {
    top: -2px;
    border: 0;
    width: 243px;
    height: 70px;
    -webkit-transform: skew(-31.6deg);
    -moz-transform: skew(-31.6deg);
    -o-transform: skew(-31.6deg);
    -ms-transform: skew(-31.6deg);
    border-bottom: solid 1px;
    border-left: 1px solid;
    margin-left: -22px
}

.additional-buttons .slider-btn._hover {
    color: #fff;
    background: transparent;
    border-color: #fff
}

.additional-buttons .slider-btn._hover .red-right {
    width: 0
}

.additional-buttons .slider-btn._hover .red-left {
    width: 0
}

.additional-buttons .slider-btn._hover._left {
    border-right: 0;
    padding-left: 8px
}

.additional-buttons .slider-btn._hover._right {
    border-left: 1px solid transparent;
    padding-right: 15px
}

.additional-buttons .slider-btn._hover._right:before {
    background-position: -43px 0
}

.page-index #ydtb-toolbar {
    overflow: visible!important
}

.slider .slider-item {
    width: 100%;
    margin-left: 0
}

.slider .slider-item._active {
    width: 100%;
    margin-left: 0
}

.slider .slider-item .slider-item-unskew {
    width: 100%;
    margin-left: 0;
    margin-right: 0
}

.slider .slider-item._animation {
    width: 100%;
    margin-left: 0;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
    -webkit-animation: transformation2 1.5s;
    -moz-animation: transformation2 1.5s;
    -o-animation: transformation2 1.5s;
    animation: transformation2 1.5s
}

.slider .slider-item._animation .slider-item-unskew {
    -webkit-animation: transformation 1.5s;
    -moz-animation: transformation 1.5s;
    -o-animation: transformation 1.5s;
    animation: transformation 1.5s
}

.avatar {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: url(../img/avatar.png) no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    border-radius: 100%
}

.bold-link {
    display: inline-block;
    color: #eb1429;
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;
    font-size: 14px;
    line-height: 18px
}

.bold-link:hover {
    color: #ee4e59
}

.signup-modal-wrapper {
    width: 680px
}

.signup-modal .modal-content {
    border: 0;
    padding: 28px 60px 40px
}

.signup-modal .modal-header {
    width: 680px;
    height: 160px;
    line-height: 160px;
    background: url(../img/signup-form-bg.jpg) no-repeat #f4293e
}

.signup-modal .avatar {
    position: absolute;
    top: -40px;
    left: 60px
}

.signup-modal .select2-container.callback-select .select2-choice {
    height: 50px
}

.signup-modal .callback-textarea {
    height: 120px
}

.signup-modal .callback-action-btn {
    display: inline-block;
    width: 300px;
    margin-top: 0
}

.signup-modal .btn-row {
    position: relative;
    margin-top: 20px;
    text-align: center
}

.signup-modal .callback-reset-btn {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.signup-modal label {
    display: inline-block;
    color: #848489;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    margin: 10px 0
}

.signup-content-half {
    display: inline-block;
    width: 50%;
    vertical-align: top
}

.signup-content-half.half-left {
    padding-right: 30px;
    padding-top: 42px
}

.signup-content-half.half-right {
    padding-left: 30px
}

.callback-reset-btn {
    padding: 0;
    background: transparent none repeat scroll 0 0;
    border: medium none;
    height: 25px;
    color: #757575;
    font-size: 14px;
    font-weight: bold
}

.login-modal-wrapper {
    width: 545px;
    margin-top: 200px
}

.login-modal .modal-content {
    border: 0;
    padding: 70px 120px 40px
}

.login-modal .modal-header {
    width: 545px;
    height: 160px;
    line-height: 160px;
    background: url(../img/login-form-bg.jpg) no-repeat #f4293e
}

#login-form .bold-link {
    margin: 15px 0 15px
}

.modal-header {
    text-align: center
}

.modal-header h3 {
    color: #fff;
    font-size: 43px
}

.modal-content-footer {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    height: 80px;
    line-height: 80px;
    text-align: center
}

.modal-content-footer .footer-btn {
    background: 0;
    height: 40px;
    margin-left: 30px;
    padding: 0 20px;
    border-radius: 2px;
    border: 2px solid #fff
}

@-webkit-keyframes transformation {
    0% {
        transform: translateX(100%) skew(30deg);
        -webkit-transform: translateX(100%) skew(30deg)
    }

    100% {
        transform: translateX(0) skew(30deg);
        -webkit-transform: translateX(0) skew(30deg)
    }
}

@-moz-keyframes transformation {
    0% {
        transform: translateX(100%) skew(30deg);
        -moz-transform: translateX(100%) skew(30deg)
    }

    100% {
        transform: translateX(0) skew(30deg);
        -moz-transform: translateX(0) skew(30deg)
    }
}

@-o-keyframes transformation {
    0% {
        transform: translateX(100%) skew(30deg);
        -o-transform: translateX(100%) skew(30deg)
    }

    100% {
        transform: translateX(0) skew(30deg);
        -o-transform: translateX(0) skew(30deg)
    }
}

@keyframes transformation {
    0% {
        transform: translateX(100%) skew(30deg)
    }

    100% {
        transform: translateX(0) skew(30deg)
    }
}

@-webkit-keyframes transformation2 {
    0% {
        transform: translate(-100%,0) skew(-30deg);
        -webkit-transform: translate(-100%,0) skew(-30deg)
    }

    100% {
        transform: translate(0,0) skew(-30deg);
        -webkit-transform: translate(0,0) skew(-30deg)
    }
}

@-moz-keyframes transformation2 {
    0% {
        transform: translate(-100%,0) skew(-30deg);
        -moz-transform: translate(-100%,0) skew(-30deg)
    }

    100% {
        transform: translate(0,0) skew(-30deg);
        -moz-transform: translate(0,0) skew(-30deg)
    }
}

@-o-keyframes transformation2 {
    0% {
        transform: translate(-100%,0) skew(-30deg);
        -o-transform: translate(-100%,0) skew(-30deg)
    }

    100% {
        transform: translate(0,0) skew(-30deg);
        -o-transform: translate(0,0) skew(-30deg)
    }
}

@keyframes transformation2 {
    0% {
        transform: translate(-100%,0) skew(-30deg)
    }

    100% {
        transform: translate(0,0) skew(-30deg)
    }
}

.page-about {
    min-height: 720px
}

.page-about span {
    text-decoration: none!important
}

.page-about,.page-about header {
    min-width: 1250px;
    z-index: 12
}

.page-about header {
    position: fixed;
    padding: 0
}

.main-content {
    min-width: 1250px!important
}

.page-about header .wrapper {
    width: 1170px!important;
    margin: auto!important
}

#about-slide-1 .up-tween-1 {
    position: relative;
    bottom: -100px;
    opacity: 0
}

#about-slide-1 .left-tween-1 {
    margin-left: 100px;
    opacity: 0
}

#about-slide-1 .right-tween-1 {
    margin-right: -100px;
    opacity: 0
}

#about-slide-2 .left-tween-2 {
    margin-left: -100px;
    opacity: 0
}

#about-slide-2 .right-tween-2 {
    margin-left: 100px;
    opacity: 0
}

#about-slide-3 .left-tween-3 {
    margin-left: 100px;
    opacity: 0
}

#about-slide-3 .right-tween-3 {
    opacity: 0
}

#about-slide-3 .up-tween-3 {
    margin-top: 100px;
    opacity: 0
}

#about-slide-3 .down-tween-3 {
    margin-bottom: -100px;
    opacity: 0
}

#about-slide-4 .up-tween-4 {
    position: relative;
    top: -100px;
    opacity: 0
}

#about-slide-4 .down-tween-4 {
    position: relative;
    top: 100px;
    opacity: 0
}

#about-slide-5 .top-tween-5 {
    margin-bottom: -100px;
    opacity: 0
}

#about-slide-5 .up-tween-5 {
    position: relative;
    top: -100px;
    opacity: 0
}

#about-slide-5 .down-tween-5 {
    position: relative;
    top: 100px;
    opacity: 0
}

#about-slide-6 .left-tween-6 {
    opacity: 0;
    margin-left: 100px
}

#about-slide-6 .right-tween-6 {
    opacity: 0;
    margin-right: 100px
}

#about-slide-6 .scale-tween-6 {
    opacity: 0;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0)
}

.person-modal {
    text-align: center;
    min-width: 1200px
}

.person-modal .modal-backdrop.in {
    opacity: .8
}

.person-modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.person-modal-wrapper {
    display: inline-block;
    height: 70%;
    width: 50%;
    min-width: 817px;
    min-height: 540px;
    vertical-align: middle;
    position: relative
}

.person-modal-content {
    height: 100%;
    text-align: left;
    background: #fff
}

.person-modal-content .managers-slider-big {
    height: 100%
}

.person-modal-content .managers-slider-big .owl-wrapper-outer,.person-modal-content .managers-slider-big .owl-wrapper,.person-modal-content .managers-slider-big .owl-item,.person-modal-content .managers-slider-big-item {
    height: 100%
}

.person-modal-content .managers-slider-big .owl-item {
    position: relative
}

.person-modal-content .managers-slider-big-prev {
    display: block;
    position: absolute;
    left: -50px;
    top: 50%;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -220px;
    width: 12px;
    height: 20px
}

.person-modal-content .managers-slider-big-next {
    display: block;
    position: absolute;
    right: -50px;
    top: 50%;
    margin-top: -10px;
    width: 12px;
    background-image: url(sprite2.png);
    background-position: -266px -130px;
    width: 13px;
    height: 20px
}

.person-modal-content img {
    display: block;
    height: 100%;
    float: left;
    padding-right: 31px;
    background: #fff
}

.person-modal-content-body {
    -webkit-column-gap: 500px;
    -moz-column-gap: 500px;
    column-gap: 500px;
    -webkit-column-width: 500px;
    -moz-column-width: 500px;
    column-width: 500px;
    background-color: #fff;
    overflow: hidden;
    padding: 20px 20px 24px 0;
    height: 100%
}

.person-modal-content-body h3 {
    font: 700 24px/30px 'ralewayc2';
    color: #4b4b50;
    margin: 0 0 3px 0
}

.person-modal-content-body h3 p {
    font: 700 25px/30px 'ralewayc2';
    color: #fff;
    margin: 0
}

.person-modal-content-body span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #75757a;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    border-bottom: #eb1429 solid 2px;
    padding-bottom: 22px;
    margin-bottom: 18px
}

.person-modal-content-body p {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #4b4b50;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    margin: 0 0 22px 0
}

@media screen and (min-width: 1500px) {
    .person-modal-content-body h3 {
        font-size:34px;
        line-height: 40px
    }

    .person-modal-content-body h3 p {
        font-size: 34px;
        line-height: 40px
    }

    .person-modal-content-body span {
        font-size: 16px;
        line-height: 24px
    }

    .person-modal-content-body p {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 18px 0
    }
}

@media screen and (min-width: 1800px) {
    .person-modal-content-body h3 {
        font-size:44px;
        line-height: 50px
    }

    .person-modal-content-body h3 p {
        font-size: 44px;
        line-height: 50px
    }

    .person-modal-content-body span {
        font-size: 16px;
        line-height: 24px
    }

    .person-modal-content-body p {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 18px 0
    }
}

.person-slider {
    position: absolute;
    left: 74px;
    right: 74px;
    bottom: 7%;
    background: #848489;
    height: 3px;
    border-radius: 1px
}

.person-slider:before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: -39px;
    right: -39px;
    background: #848489
}

.person-slider .ui-slider-handle {
    background: #eb1429 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAADCAYAAABMFFUxAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpi/P//vxMDA4MdEB8C4n0MCEBQnAlIWEAFLRhQAUFxkOZTUM4pNEUExQECDAA5YQ5R38DN1gAAAABJRU5ErkJggg==') 50% 50% no-repeat;
    height: 12px;
    border-radius: 6px;
    width: 78px;
    border: 0;
    top: -5px;
    margin-left: -39px;
    cursor: pointer
}

.person-slider .ui-slider-handle:hover {
    background: #f0384a url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAADCAYAAABMFFUxAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNJREFUeNpi/P//vxMDA4MdEB8C4n0MCEBQnAlIWEAFLRhQAUFxkOZTUM4pNEUExQECDAA5YQ5R38DN1gAAAABJRU5ErkJggg==') 50% 50% no-repeat
}

.slides-preloading {
    position: fixed;
    width: 10px;
    height: 10px;
    overflow: hidden;
    left: -9999px;
    top: -9999px
}

.about-slides {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.about-slides:before {
    content: "";
    display: block;
    position: absolute;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff url(../img/loading.gif) 50% 50% no-repeat;
    z-index: 20;
    opacity: 0;
    visibility: hidden
}

.about-slides._loading:before {
    opacity: 1;
    visibility: visible
}

.about-nav {
    position: absolute;
    right: 13px;
    top: 50%;
    margin-top: -103px;
    z-index: 12;
    padding: 0
}

.about-nav li {
    display: block;
    width: 9px;
    height: 9px;
    background: #fff;
    border: transparent solid 2px;
    cursor: pointer;
    border-radius: 50%;
    margin: 24px 2px;
    text-indent: -9999px;
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0,.35);
    -moz-box-shadow: 0 5px 5px rgba(0,0,0,.35);
    box-shadow: 0 5px 5px rgba(0,0,0,.35)
}

.about-nav li._active {
    background: #ca1b2d;
    width: 15px;
    height: 15px;
    margin: 20px 0
}

.about-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden
}

.about-slide-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 1;
    z-index: 5
}

.about-slide-container {
    position: absolute;
    left: 50%;
    margin-left: -585px;
    width: 1170px;
    height: 100%
}

.about-slide-container.with-pseudo {
    text-align: center
}

.about-slide-container.with-pseudo:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.about-slide-stat {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 62px;
    text-align: justify;
    text-justify: newspaper;
    font-size: 0;
    line-height: 0
}

.about-slide-stat:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0
}

.about-slide-stat-item {
    display: inline-block;
    vertical-align: top
}

.about-slide-stat-item strong {
    display: block;
    font: 700 40px/46px 'ralewayc2';
    color: #000;
    margin-bottom: 7px
}

.about-slide-stat-item span {
    display: block;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 15px;
    line-height: 21px;
    color: #87878b
}

.about-slide-stat-item._white strong,.about-slide-stat-item._white span {
    color: #fff
}

.about-slide-way {
    position: absolute;
    box-sizing: border-box
}

.about-slide-way-helper {
    white-space: normal;
    height: 180px;
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.about-slide-way h3 {
    font: 700 25px/30px 'ralewayc2';
    color: #fff;
    margin: 0;
    padding-left: 80px
}

.about-slide-way h3 p {
    font: 700 25px/30px 'ralewayc2';
    color: #fff;
    margin: 0;
    padding: 0
}

.about-slide-way span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    text-align: center;
    font: 700 25px/52px 'ralewayc2'
}

.about-slide-way span p {
    padding: 0;
    margin: 0
}

.about-slide-way p {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding-left: 80px
}

.about-slide-way-1 {
    top: 47.4%;
    left: 20px;
    padding-left: 20px
}

.about-slide-way-1 span {
    background: #fff;
    color: #c9151c
}

.about-slide-way-1 p {
    width: 70%
}

.about-slide-way-2 {
    left: 0;
    padding: 13px 0 0 0;
    bottom: 2.9%;
    height: 25.4%;
    width: 48%;
    white-space: nowrap;
    font-size: 0
}

.about-slide-way-2:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.about-slide-way-2 span {
    background: #eb1429;
    color: #fff;
    top: 0;
    left: 20px
}

.about-slide-way-2 .about-slide-way-helper {
    padding-left: 40px
}

.about-slide-way-3 {
    right: 2%;
    padding: 13px 0 0 0;
    bottom: 2.9%;
    height: 25.4%;
    width: 48%;
    white-space: nowrap;
    font-size: 0
}

.about-slide-way-3:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.about-slide-way-3 span {
    background: #f5d300;
    color: #1f1f89;
    top: 0;
    left: 30px
}

.about-slide-way-3 .about-slide-way-helper {
    padding-left: 30px
}

.about-slide-1 {
    background: url(../img/about/slide-1.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 10
}

.about-slide-1 h2 {
    position: absolute;
    top: 11.76%;
    left: 0;
    padding: 13px 0;
    font: 700 43px/55px 'ralewayc2';
    color: #eb1429;
    text-transform: uppercase
}

.about-slide-1 h2 p {
    margin: 0
}

.about-slide-1 h2 strong {
    display: block;
    font-weight: 800
}

.about-slide-1 h1 {
    position: absolute;
    top: 11.76%;
    left: 0;
    padding: 13px 0;
    font: 700 43px/55px 'ralewayc2';
    color: #eb1429;
    text-transform: uppercase
}

.about-slide-1 h1 p {
    margin: 0
}

.about-slide-1 h1 strong {
    display: block;
    font-weight: 800
}

.about-slide-1-col {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: #75757a;
    width: 27.7%;
    position: absolute;
    top: 41.17%
}

.about-slide-1-col-left {
    left: 0
}

.about-slide-1-col-right {
    left: 33.77%
}

.about-slide-1 .about-slide-pdf {
    position: relative;
    top: 14px;
    left: 0;
    display: block;
    margin-left: 100px;
    color: #767676;
    width: auto;
    line-height: 34px!important;
    text-align: left;
    padding-left: 35px;
    font-size: 12px;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.about-slide-1 .about-slide-pdf:after {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    display: block;
    background-image: url(sprite2.png);
    background-position: -266px 0;
    width: 21px;
    height: 27px
}

.about-slide-1 .about-slide-pdf:hover {
    text-decoration: none;
    color: #919191
}

.about-slide-1 .about-slide-pdf:active {
    color: #767676
}

.about-slide-2 {
    background: url(../img/about/slide-2.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 9
}

.about-slide-2-h {
    font: 700 50px/60px 'ralewayc2';
    color: #fff;
    position: absolute;
    top: 18.2%
}

.about-slide-2-h-left {
    left: 0
}

.about-slide-2-h-right {
    left: 50%
}

.about-slide-2-h span {
    display: inline-block;
    position: relative
}

.about-slide-2-h span:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    border-top: #eb1429 solid 4px
}

.about-slide-2-h p {
    margin: 0
}

.about-slide-2-col {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    width: 50%;
    position: absolute;
    padding: 0 120px 0 70px;
    top: 51.5%
}

.about-slide-2-col-left {
    left: 0
}

.about-slide-2-col-right {
    left: 50%
}

.about-slide-2-col p {
    margin: 0
}

.about-slide-3 {
    background: #292930;
    z-index: 8
}

.about-slide-3-top {
    position: absolute;
    width: 100%;
    height: 68.8%;
    left: 0;
    top: 0;
    background: url(../img/about/slide-3-1.jpg) 50% 50% no-repeat;
    background-size: cover
}

.about-slide-3-left {
    position: absolute;
    height: 25.4%;
    width: 47.7%;
    left: 1.5%;
    bottom: 2.9%;
    background: url(../img/about/slide-3-2.jpg) 50% 50% no-repeat;
    background-size: cover
}

.about-slide-3-right {
    position: absolute;
    height: 25.4%;
    width: 47.7%;
    right: 1.5%;
    bottom: 2.9%;
    background: url(../img/about/slide-3-3.jpg) 50% 50% no-repeat;
    background-size: cover
}

.about-slide-3 h2 {
    font: 700 50px/60px 'ralewayc2';
    color: #fff;
    position: absolute;
    top: 14%;
    padding-left: 20px
}

.about-slide-3 h2 p {
    margin: 0
}

.about-slide-3 .about-slide-all-flagman {
    display: block;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: 312px;
    color: #e9e9ed;
    font: 12px/20px 'ralewayc2';
    padding-right: 20px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.about-slide-3 .about-slide-all-flagman:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(sprite2.png);
    background-position: -266px -160px;
    width: 12px;
    height: 20px
}

.about-slide-3 .about-slide-all-flagman:hover {
    text-decoration: none;
    color: #fff
}

.about-slide-3 .about-slide-all-flagman:active {
    color: #e8e8ec
}

.about-slide-4 {
    background: url(../img/about/slide-4.jpg) 50% 50% no-repeat #fff;
    background-size: cover;
    z-index: 7
}

.about-slide-4 .managers-slider-title {
    top: 14%;
    position: absolute;
    color: #ec142a;
    font-size: 50px;
    line-height: 55px;
    left: 31px;
    font-weight: 800;
    margin: 0
}

.about-slide-4 .managers-slider {
    display: block;
    vertical-align: middle;
    width: calc(58px+100%);
    margin-left: -29px;
    top: 23%
}

.about-slide-4 .managers-slider-item {
    min-height: 430px;
    text-align: center;
    margin: 0 62px
}

.about-slide-4 .managers-slider-item img {
    display: block;
    width: 100%;
    margin: 0 auto 25px;
    position: relative
}

.about-slide-4 .managers-slider-item img:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.about-slide-4 .managers-slider-item img:hover:after {
    opacity: .1
}

.about-slide-4 .managers-slider-item img:active:after {
    background: #000;
    opacity: .1
}

.about-slide-4 .managers-slider-item-name {
    display: block;
    font: 700 16px/25px 'ralewayc2';
    color: #333;
    margin-bottom: 3px
}

.about-slide-4 .managers-slider-item-name b {
    font-weight: 900
}

.about-slide-4 .managers-slider-item-post {
    display: block;
    font: 400 12px/18px 'ralewayc2';
    color: #333;
    white-space: nowrap
}

.about-slide-4 .managers-slider-prev {
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    right: 73px;
    top: 15%;
    background: #ec142a;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s
}

.about-slide-4 .managers-slider-prev:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -190px;
    width: 12px;
    height: 20px
}

.about-slide-4 .managers-slider-prev:hover {
    background: #b9b8ba
}

.about-slide-4 .managers-slider-prev:active {
    background: #aaaaac
}

.about-slide-4 .managers-slider-next {
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    right: 33px;
    top: 15%;
    background: #ec142a;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s
}

.about-slide-4 .managers-slider-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -160px;
    width: 12px;
    height: 20px
}

.about-slide-4 .managers-slider-next:hover {
    background: #b9b8ba
}

.about-slide-4 .managers-slider-next:active {
    background: #aaaaac
}

.about-slide-5 {
    background: url(../img/about/slide-5.jpg) 50% 50% no-repeat #fff;
    background-size: cover;
    z-index: 6
}

.about-slide-5 .about-slide-title {
    color: #ec142a;
    font-size: 43px;
    font-weight: 800;
    margin: 0;
    position: absolute;
    left: -7px;
    top: -77px
}

.about-slide-5 .about-slide-main-award {
    position: absolute;
    top: 324px;
    bottom: 33%;
    width: calc(100% - 70px);
    left: 35px;
    padding: 5% 15% 40px 20%;
    border: #dfdfe1 solid 3px
}

.about-slide-5 .about-slide-main-award-image {
    display: block;
    position: absolute;
    width: 19%;
    height: 100%;
    left: 0;
    top: 0
}

.about-slide-5 .about-slide-main-award-image img {
    display: block;
    margin: 18% auto 0;
    width: 90%;
    min-height: 25%
}

.about-slide-5 .about-slide-main-award-date {
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    font: 20px/35px 'ralewayc2';
    color: #eb1429;
    font-weight: bold
}

.about-slide-5 .about-slide-main-award-title {
    color: #4b4b50;
    font: 700 25px/35px 'ralewayc2';
    margin: 0 60px 30px 0;
    width: 575px
}

.about-slide-5 .about-slide-main-award-description {
    color: #848489;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 14px;
    line-height: 20px;
    max-width: 85%
}

.about-slide-5 .awards-slider-box {
    width: calc(100% - 140px);
    position: absolute;
    left: 70px;
    top: 65%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.about-slide-5 .awards-slider-box-prev {
    width: 35px;
    display: block;
    position: absolute;
    left: -35px;
    top: 0;
    height: 100%;
    cursor: pointer;
    background: rgba(133,133,138,0.4);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.about-slide-5 .awards-slider-box-prev:hover {
    background: rgba(133,133,138,0.25)
}

.about-slide-5 .awards-slider-box-prev:active {
    background: rgba(133,133,138,0.55)
}

.about-slide-5 .awards-slider-box-prev:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -190px;
    width: 12px;
    height: 20px
}

.about-slide-5 .awards-slider-box-next {
    width: 35px;
    display: block;
    position: absolute;
    right: -35px;
    top: 0;
    height: 100%;
    cursor: pointer;
    background: rgba(133,133,138,0.4);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.about-slide-5 .awards-slider-box-next:hover {
    background: rgba(133,133,138,0.25)
}

.about-slide-5 .awards-slider-box-next:active {
    background: rgba(133,133,138,0.55)
}

.about-slide-5 .awards-slider-box-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -160px;
    width: 12px;
    height: 20px
}

.about-slide-5 .awards-slider-box .owl-item {
    position: relative
}

.about-slide-5 .awards-slider-box .owl-item:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 200%;
    border-right: #e9e9ed solid 1px
}

.about-slide-5 .awards-slider-box-item {
    min-height: 220px;
    padding: 0 30px
}

.about-slide-5 .awards-slider-box-item-icon {
    float: left;
    width: 100px;
    padding-top: 5px
}

.about-slide-5 .awards-slider-box-item-icon img {
    display: block;
    width: 100%
}

.about-slide-5 .awards-slider-box-item-date {
    font: 700 16px/24px 'ralewayc2';
    color: #eb1429;
    padding: 3px 0 5px 120px
}

.about-slide-5 .awards-slider-box-item-title {
    padding-left: 120px;
    font: 700 16px/24px 'ralewayc2';
    color: #4b4b50
}

.about-slide-5 .awards-slider-box-item-description {
    clear: both;
    color: #848489;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 12px;
    line-height: 16px;
    padding: 30px 0 0 0
}

.about-slide-6 {
    background: #333;
    z-index: 5
}

.about-slide-6 .about-slide-partners-title {
    margin: 0;
    color: #fff;
    font: 700 50px/60px 'ralewayc2';
    position: absolute;
    left: 0;
    top: 133px
}

.about-slide-6 .about-slide-partners-filter {
    position: absolute;
    top: 133px;
    right: 0
}

.about-slide-6 .partners-sheet {
    position: absolute;
    width: 100%;
    bottom: 50px;
    top: 235px;
    left: 0;
    background: #fff
}

.about-slide-6 .partners-sheet-tabs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden
}

.about-slide-6 .partners-sheet-tab {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.about-slide-6 .partners-sheet-tab._active {
    opacity: 1;
    visibility: visible
}

.about-slide-6 .partners-sheet-carousel {
    background: #fff;
    position: absolute!important;
    padding: 18px;
    width: 91.6%;
    height: 100%;
    left: 4.2%;
    top: 0
}

.about-slide-6 .partners-sheet-carousel._wide {
    width: 100%;
    left: 0
}

.about-slide-6 .partners-sheet-carousel-prev {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4.2%;
    background-color: #555556;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.about-slide-6 .partners-sheet-carousel-prev:hover {
    background: #686869
}

.about-slide-6 .partners-sheet-carousel-prev:active {
    background: #434343
}

.about-slide-6 .partners-sheet-carousel-prev:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -190px;
    width: 12px;
    height: 20px
}

.about-slide-6 .partners-sheet-carousel-next {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4.2%;
    background-color: #575758;
    background-color: #555556;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.about-slide-6 .partners-sheet-carousel-next:hover {
    background: #686869
}

.about-slide-6 .partners-sheet-carousel-next:active {
    background: #434343
}

.about-slide-6 .partners-sheet-carousel-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -160px;
    width: 12px;
    height: 20px
}

.about-slide-6 .partners-sheet-carousel .owl-wrapper-outer,.about-slide-6 .partners-sheet-carousel .owl-wrapper {
    height: 100%
}

.about-slide-6 .partners-sheet-carousel .owl-wrapper {
    height: 100%
}

.about-slide-6 .partners-sheet-carousel .owl-item {
    height: 100%
}

.about-slide-6 .partners-sheet-item {
    width: 100%;
    height: 100%
}

.about-slide-6 .partners-sheet-item .relative-grid {
    position: relative;
    width: 100%;
    height: 100%
}

.about-slide-6 .partners-sheet-item .relative-grid-item {
    position: absolute;
    width: 33.3%;
    height: 33.3%;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
    padding: 20px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.about-slide-6 .partners-sheet-item .relative-grid-item img {
    display: inline-block;
    vertical-align: middle;
    max-height: 80%;
    max-width: 60%;
    width: 40%
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(1) {
    left: 0;
    top: 0;
    border-right: #e9e9ed solid 1px;
    border-bottom: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(2) {
    left: 33.3%;
    top: 0;
    border-right: #e9e9ed solid 1px;
    border-bottom: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(3) {
    left: 66.6%;
    top: 0;
    border-bottom: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(4) {
    left: 0;
    top: 33.3%;
    border-right: #e9e9ed solid 1px;
    border-bottom: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(5) {
    left: 33.3%;
    top: 33.3%;
    border-right: #e9e9ed solid 1px;
    border-bottom: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(6) {
    left: 66.6%;
    top: 33.3%;
    border-bottom: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(7) {
    left: 0;
    top: 66.6%;
    border-right: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(8) {
    left: 33.3%;
    top: 66.6%;
    border-right: #e9e9ed solid 1px
}

.about-slide-6 .partners-sheet-item .relative-grid-item:nth-of-type(9) {
    left: 66.6%;
    top: 66.6%
}

@media screen and (min-width: 1300px) {
    .about-nav {
        right:32px
    }

    .about-slide-way-2 {
        width: 40%
    }

    .about-slide-way-3 {
        width: 40%;
        right: 0
    }
}

@media screen and (min-height: 1100px) {
    .about-slide-1 h2 {
        top:22%
    }

    .about-slide-1-col {
        top: 45%
    }
}

@media screen and (min-height: 1500px) {
    .about-slide-1 h2 {
        top:32%
    }

    .about-slide-1-col {
        top: 55%
    }
}

@media screen and (min-width: 1500px) and (min-height:768px) {
    .about-slide-container {
        left:10%;
        right: 10%;
        margin: auto;
        width: auto;
        height: 100%
    }

    .about-slide-stat-item {
        vertical-align: top
    }

    .about-slide-stat-item strong {
        font-size: 50px;
        line-height: 56px;
        margin-bottom: 7px
    }

    .about-slide-stat-item span {
        font-size: 18px;
        line-height: 25px
    }

    .about-slide-1 h2 {
        font-size: 53px;
        line-height: 65px
    }

    .about-slide-1 .about-slide-pdf {
        font-size: 14px;
        line-height: 18px
    }

    .about-slide-2-h {
        font-size: 60px;
        line-height: 70px;
        top: 18.2%
    }

    .about-slide-3 h2 {
        font-size: 60px;
        line-height: 70px;
        top: 14%
    }

    .about-slide-4 .managers-slider-title {
        font-size: 60px;
        line-height: 70px
    }

    .about-slide-4 .managers-slider-item img {
        margin: 0 auto 25px
    }

    .about-slide-4 .managers-slider-item-name {
        font-size: 20px;
        line-height: 30px
    }

    .about-slide-4 .managers-slider-item-post {
        font-size: 14px;
        line-height: 22px
    }

    .about-slide-5 .about-slide-title {
        font-size: 60px;
        line-height: 70px
    }

    .about-slide-5 .about-slide-main-award-date {
        font-size: 20px;
        line-height: 25px
    }

    .about-slide-5 .about-slide-main-award-title {
        font-size: 35px;
        line-height: 45px
    }

    .about-slide-5 .about-slide-main-award-description {
        font-size: 14px;
        line-height: 20px
    }

    .about-slide-6 .about-slide-partners-title {
        font-size: 60px;
        line-height: 70px
    }
}

@media screen and (min-width: 1800px) and (min-height:1024px) {
    .about-slide-way h3 {
        font-size:30px;
        line-height: 35px
    }

    .about-slide-way h3 p {
        font-size: 30px;
        line-height: 35px
    }

    .about-slide-way span {
        font-size: 30px
    }

    .about-slide-way p {
        font-size: 18px;
        line-height: 28px
    }

    .about-slide-1 h2 {
        font-size: 63px;
        line-height: 75px
    }

    .about-slide-1-col {
        font-size: 18px;
        line-height: 28px
    }

    .about-slide-1 .about-slide-pdf {
        font-size: 16px;
        line-height: 20px
    }

    .about-slide-2-h {
        font-size: 70px;
        line-height: 80px
    }

    .about-slide-2-col {
        font-size: 18px;
        line-height: 28px
    }

    .about-slide-3 h2 {
        font-size: 70px;
        line-height: 80px
    }

    .about-slide-4 .managers-slider-title {
        font-size: 70px;
        line-height: 80px
    }

    .about-slide-4 .managers-slider-item-name {
        font-size: 25px;
        line-height: 35px
    }

    .about-slide-4 .managers-slider-item-post {
        font-size: 18px;
        line-height: 26px
    }

    .about-slide-5 .about-slide-title {
        font-size: 70px;
        line-height: 80px;
        top: -110px
    }

    .about-slide-5 .about-slide-main-award {
        top: 400px
    }

    .about-slide-5 .about-slide-main-award-date {
        font-size: 20px;
        line-height: 25px;
        font-weight: bold
    }

    .about-slide-5 .about-slide-main-award-title {
        font-size: 50px;
        line-height: 60px
    }

    .about-slide-5 .about-slide-main-award-description {
        font-size: 14px;
        line-height: 20px
    }

    .about-slide-5 .awards-slider-box {
        top: 70%
    }

    .about-slide-5 .awards-slider-box-item {
        min-height: 240px
    }

    .about-slide-5 .awards-slider-box-item-icon {
        width: 120px
    }

    .about-slide-5 .awards-slider-box-item-date {
        font-size: 20px;
        line-height: 28px;
        padding-left: 140px
    }

    .about-slide-5 .awards-slider-box-item-title {
        padding-left: 140px;
        font-size: 20px;
        line-height: 28px
    }

    .about-slide-5 .awards-slider-box-item-description {
        font-size: 14px;
        line-height: 18px
    }

    .about-slide-6 .about-slide-partners-title {
        font-size: 70px;
        line-height: 80px
    }
}

.partners-filter {
    position: absolute;
    right: 100px;
    top: 50px;
    margin: 19px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden
}

.partners-filter>li {
    float: left;
    margin: 0 1px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    background: #85858a;
    cursor: pointer
}

.partners-filter>li:first-child {
    margin-left: -15px
}

.partners-filter>li:last-child {
    margin-right: -15px
}

.partners-filter>li._active,.partners-filter>li._active:hover {
    background: #eb1429
}

.partners-filter>li:hover {
    background: #565658
}

.partners-filter>li:active {
    background: #a13541
}

.partners-filter>li span {
    display: block;
    padding: 7px 40px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.wrap {
    width: 1170px;
    margin: 0 auto
}

h2 {
    color: #525259;
    font-size: 43px;
    line-height: 45px
}

.white {
    background: white;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15)
}

.intro {
    position: relative;
    max-height: 607px;
    overflow: hidden
}

.intro .bigPic {
    min-width: 100%
}

.intro .wrapper-bigPic {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 600px
}

.intro .wrapper-bigPic .wrapper2-bigPic {
    height: 2000px;
    width: 100%;
    top: -700px;
    position: absolute
}

.intro .wrapper-bigPic .wrapper2-bigPic .bigPic {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto
}

.intro .logo {
    margin: auto;
    max-width: 651px;
    max-height: 305px;
    display: inline-block
}

.intro .imgText-container2 {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 5px
}

.intro .imgText-container2 .imgText {
    width: 1170px;
    margin: 0 auto
}

.intro .imgText {
    font-family: 'ralewayc2';
    font-size: 18px;
    line-height: 30px;
    color: white;
    text-align: center
}

.infograph {
    width: 100%;
    height: auto;
    background: white;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15)
}

.infograph .wrap {
    width: 1170px;
    margin: 0 auto;
    display: table;
    padding-top: 25px
}

.infograph .item {
    display: table-cell;
    vertical-align: top;
    padding: 0 10px 10px;
    position: relative
}

.infograph .item:first-of-type {
    padding-left: 0
}

.infograph .item:first-of-type:before {
    content: '';
    border-left: none
}

.infograph .item:last-of-type {
    padding-right: 0
}

.infograph .item .num {
    font-size: 40px;
    font-family: 'ralewayc2';
    color: #eb1429;
    font-weight: bold
}

.infograph .item .text {
    color: #4c4c4c;
    font-family: Tahoma;
    font-size: 15px;
    line-height: 21px;
    width: 160px;
    margin-top: 8px
}

.infograph .item:before {
    content: '';
    border-left: 1px solid #e5e5e5;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 1px;
    height: 84px;
    top: 0;
    left: 0
}

.page-object .photo-gallery .owl-item {
    height: 600px
}

.page-object .photo-gallery .owl-item img {
    height: 100%
}

.litle-project {
    margin-top: 125px
}

.litle-project h1 {
    color: #525259;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0
}

.promo {
    margin-top: 22px;
    display: table;
    table-layout: fixed
}

.promo .title-promo {
    display: table-cell;
    font-family: 'ralewayc2';
    width: 370px;
    vertical-align: top;
    border-bottom: 1px solid #eb1429;
    position: relative
}

.promo .title-promo h2 {
    color: #525259;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    text-transform: uppercase;
    padding-right: 100px
}

.promo .title-promo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 10px;
    display: block;
    background: #eb1429
}

.promo .column {
    padding-left: 30px;
    padding-top: 28px;
    width: 69%;
    display: table-cell;
    color: #404040;
    font-size: 15px;
    line-height: 23px
}

.promo .column p:first-child {
    margin-top: 0;
    line-height: 23px
}

.promo .column p:last-child {
    margin-bottom: 0
}

.column-1-2 {
    vertical-align: top;
    display: inline-block;
    width: 49%
}

.column-1-2 .wysiwyg-block {
    max-width: 90%
}

.column-1-2 .wysiwyg-block img {
    max-width: 100%
}

.map img {
    width: 100%
}

.business-centres {
    padding-top: 22px
}

.business-centres h2 {
    color: #525259;
    font-size: 43px;
    line-height: 45px
}

.photo-gallery-main-container {
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    margin-bottom: 12px;
    max-width: 1170px;
    position: relative
}

.photo-gallery-main .owl-item {
    overflow: hidden;
    display: relative
}

.photo-gallery-main .owl-item:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    -webkit-box-shadow: inset 0 0 30px 0 rgba(50,50,50,0.92);
    -moz-box-shadow: inset 0 0 30px 0 rgba(50,50,50,0.92);
    box-shadow: inset 0 0 30px 0 rgba(50,50,50,0.92)
}

.photo-gallery-main-arrow {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.8);
    outline: 0;
    text-indent: -9999px;
    top: 356px;
    z-index: 2;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.photo-gallery-main-arrow:before {
    content: "";
    display: block;
    width: 13px;
    height: 20px;
    position: absolute;
    top: 20px;
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat
}

.photo-gallery-main-arrow:hover {
    background: #fff
}

.photo-gallery-main-arrow:active {
    background: rgba(255,255,255,0.8)
}

.photo-gallery-main-prev {
    left: 20px
}

.photo-gallery-main-prev:before {
    right: 23px;
    background-position: -40px -20px
}

.photo-gallery-main-next {
    right: 20px
}

.photo-gallery-main-next:before {
    left: 23px;
    background-position: -20px -20px
}

.photo-gallery-thumbs {
    max-width: 1169px
}

.photo-gallery-thumbs-container {
    max-width: 1169px;
    position: relative
}

.photo-gallery-thumbs-arrow {
    display: block;
    position: absolute;
    width: 60px;
    height: 109px;
    outline: 0;
    text-indent: -9999px;
    top: 0;
    z-index: 2
}

.photo-gallery-thumbs-arrow:after {
    content: "";
    background: #000;
    opacity: .7;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.photo-gallery-thumbs-arrow:before {
    content: "";
    display: block;
    width: 9px;
    height: 16px;
    position: absolute;
    top: 48px;
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat;
    z-index: 1
}

.photo-gallery-thumbs-prev {
    left: 0
}

.photo-gallery-thumbs-prev:before {
    left: 26px;
    background-position: 0 -30px
}

.photo-gallery-thumbs-next {
    right: 0
}

.photo-gallery-thumbs-next:before {
    right: 26px;
    background-position: -10px -30px
}

.photo-gallery-thumbs-item {
    margin: 0 20px 0 0;
    height: 109px;
    width: 157px;
    overflow: hidden
}

.photo-gallery-thumbs ._active .photo-gallery-thumbs-item {
    position: relative
}

.photo-gallery-thumbs ._active .photo-gallery-thumbs-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #eb1429;
    height: 10px
}

.borrows-content {
    margin-bottom: 40px
}

.borrows-content-list {
    padding: 30px 29px 30px;
    position: relative
}

.borrows-content-table {
    width: 100%;
    table-layout: fixed
}

.borrows-content-table td {
    border: #e9e9ed solid 1px;
    width: 361px;
    height: 260px;
    text-align: center;
    vertical-align: middle
}

.borrows-content-table td:first-child {
    border-left: none
}

.borrows-content-table td:last-child {
    border-right: 0
}

.borrows-content-table tr:first-child td {
    border-top: 0
}

.borrows-content-table tr:last-child td,.borrows-content-table tr.last td {
    border-bottom: 0
}

.borrows-content-all {
    display: block;
    position: absolute;
    bottom: 27px;
    right: 54px;
    color: #525259;
    font-size: 12px;
    line-height: 18px
}

.borrows-content-all:after {
    content: "";
    display: block;
    width: 12px;
    height: 8px;
    background: url(../img/sprite.png) 0 -20px;
    position: absolute;
    right: -22px;
    top: 6px
}

.borrows-content-all.selected:after {
    background: url(../img/sprite.png) -60px -40px!important
}

.rewards-container {
    font-size: 0;
    margin-bottom: 55px
}

.rewards-container div:nth-child(4n+1) {
    margin-right: 0
}

.rewards-container:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0
}

.rewards-reward {
    display: inline-block;
    height: 320px;
    width: 270px;
    margin: 0 30px 30px 0;
    overflow: hidden;
    position: relative;
    background: #fff
}

.rewards-reward .reward-name {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: block;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 50px;
    text-align: center;
    height: 50px;
    width: 100%;
    background: #eb142a;
    z-index: 4
}

.rewards-reward .reward-img {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 180px;
    line-height: 180px;
    text-align: center;
    font-size: 0;
    white-space: nowrap
}

.rewards-reward .reward-img:before {
    content: "";
    height: 180px;
    display: inline-block;
    width: 0;
    margin-top: 35px;
    vertical-align: middle
}

.rewards-reward .reward-img img {
    display: inline-block;
    vertical-align: middle
}

.rewards-reward .reward-title-wrap {
    text-decoration: none;
    display: table;
    height: 70px;
    width: 100%
}

.rewards-reward .reward-title {
    display: table-cell;
    vertical-align: middle;
    color: #404040;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
    padding: 0 20px;
    text-transform: uppercase
}

.rewards-reward .rewar-hover-text {
    top: 0;
    left: 0;
    position: absolute;
    display: table;
    background: rgba(235,20,41,0.8);
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin-left: -265%;
    -webkit-transform: skew(-45deg);
    -moz-transform: skew(-45deg);
    -o-transform: skew(-45deg);
    -ms-transform: skew(-45deg);
    transform: skew(-45deg);
    width: 224%;
    height: 100%;
    color: #fff;
    font-size: 12px;
    -webkit-transition: margin-left 100ms ease-in;
    -moz-transition: margin-left 100ms ease-in;
    -o-transition: margin-left 100ms ease-in;
    transition: margin-left 100ms ease-in
}

.rewards-reward .rewar-hover-text strong {
    font-size: 14px !important
}

.rewards-reward:hover .rewar-hover-text {
    font-size: 14px;
    margin-left: -61%
}

.rewards-reward:hover .rewar-hover-text .text {
    display: table-cell;
    vertical-align: middle;
    padding: 10% 30%;
    -webkit-transform: skew(45deg);
    -moz-transform: skew(45deg);
    -o-transform: skew(45deg);
    -ms-transform: skew(45deg);
    transform: skew(45deg)
}

.rewards-reward:hover .rewar-hover-text strong {
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px
}

.rewards-reward:hover .rewar-hover-text span {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    display: block;
    font-size: 12px;
    line-height: 18px
}

.infrastructure img {
    margin-top: 40px
}

.infrastructure .infrastructure {
    display: inline-block;
    line-height: 40px;
    text-align: center;
    width: 1169px;
    border-radius: 2px;
    height: 40px;
    background-color: #535359;
    color: white;
    font-family: ralewayc2;
    font-size: 20px
}

.history {
    background-color: #535359;
    color: #fff;
    margin-top: 30px
}

.history h2 {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    margin-right: 10%;
    margin-top: 48px;
    line-height: 1;
    margin-bottom: 21px
}

.history .wrap {
    padding-bottom: 20px
}

.history .col {
    width: 100%;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 20px;
    overflow: hidden
}

.history .col .column-1-2:last-child {
    padding-left: 13px
}

.yaMap img {
    max-width: 100%
}

.available-offers-list.loader {
    position: relative
}

.available-offers-list.loader:after {
    background: url(/img/loading.gif) no-repeat center center rgba(0,0,0,0.2);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90
}

.available-offers h2 {
    color: #525259;
    font-size: 43px;
    margin-bottom: 23px;
    line-height: 45px;
    display: inline-block;
    margin-top: 50px
}

.available-offers h1 {
    color: #525259;
    font-size: 43px;
    margin-bottom: 23px;
    line-height: 45px;
    display: inline-block;
    margin-top: 50px
}

.available-offers .openlink {
    position: relative;
    color: #9f9f9f;
    font-family: Tahoma;
    font-size: 12px;
    cursor: pointer;
    margin-left: 40px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    border-bottom: dotted 1px #b3b3b3
}

.available-offers .lot-head {
    display: table;
    width: 100%;
    padding-top: 30px;
    margin-bottom: 30px;
    font-family: 'ralewayc2'
}

.available-offers .lot-head img {
    max-width: 203px;
    margin-top: -30px;
    max-height: 45px
}

.available-offers .lot-head-row {
    display: table-cell;
    vertical-align: middle
}

.available-offers .lot-head-row._right {
    text-align: right
}

.available-offers .buttons {
    display: inline-block;
    width: 485px;
    overflow: hidden;
    vertical-align: sub;
    position: absolute;
    right: 0;
    top: 50px
}

.available-offers .buttons .btn {
    cursor: pointer
}

.available-offers .buttons .btn span {
    line-height: 30px
}

.available-offers .buttons .btn:first-of-type {
    margin-left: -12px
}

.available-offers .buttons .btn .back {
    background: #adadb0
}

.available-offers .buttons .btn._active .back {
    background: #ca1b2d
}

.available-offers .buttons .btn._active:hover span {
    color: #fff
}

.available-offers-list {
    background: #fff;
    margin-top: 0;
    padding: 48px 50px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    position: relative
}

.available-offers-list._dark {
    background: #535359
}

.available-offers-list._light {
    background: #f5f5f5
}

.available-offers-list .offers-action {
    position: relative;
    float: right;
    background: #fff;
    width: 518px;
    color: #000;
    font-size: 14px;
    line-height: 23px;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    padding: 11px 20px 14px;
    margin: -180px 0 67px
}

.available-offers-list .offers-action span {
    display: block;
    font-size: 10px;
    line-height: 21px
}

.available-offers-list-more {
    display: inline;
    float: left;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-weight: bold;
    position: relative;
    border-radius: 4px;
    background: #e9e9ed;
    color: #525259;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    padding: 0 15px 0 39px;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms
}

.available-offers-list-more:hover {
    background: #e5e5e5!important
}

.available-offers-list-more._dark {
    background: #fff
}

.available-offers-list-more:before {
    content: "";
    display: block;
    position: absolute;
    left: 17px;
    top: 17px;
    width: 12px;
    height: 8px;
    background: url(../img/sprite.png) 0 -20px no-repeat
}

.available-offers-list-more.active:before {
    background: url(../img/sprite.png) -60px -40px no-repeat
}

.available-offers-list-more._less:before {
    background-position: -60px -40px
}

.available-offers-list-phone {
    font-family: 'ralewayc2';
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #535359;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    margin-right: 40px
}

.available-offers-list-phone._dark {
    color: #fff;
    position: relative
}

.available-offers-list-phone._dark:before {
    content: "";
    display: block;
    position: absolute;
    left: -22px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: url(../img/sprite.png) -60px 0 no-repeat
}

.available-offers-list-phone._light {
    position: relative
}

.available-offers-list-phone._light:before {
    content: "";
    display: block;
    position: absolute;
    left: -22px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: url(../img/sprite.png) -80px 0 no-repeat
}

.available-offers-list-footer {
    height: 40px;
    text-align: right
}

.available-offers-list-footer .button {
    vertical-align: middle
}

.available-offers-table {
    display: table;
    width: 100%;
    margin-bottom: 25px
}

.available-offers-table-header {
    display: table-row;
    font-family: 'ralewayc2';
    color: #848489;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 16px
}

.available-offers-table-header span {
    display: table-cell;
    padding: 0 8px 8px 15px;
    border-bottom: #eb1429 solid 2px
}

.available-offers-table-header span._right {
    text-align: right
}

.available-offers-table-header span._center {
    text-align: center
}

.available-offers-table-header._dark {
    color: #fff
}

.available-offers-table-header._dark span {
    border-bottom-color: #75757a
}

.available-offers-table-header._light span {
    border-bottom-color: #e9e9ed
}

.available-offers-table-header._nowrap {
    white-space: nowrap
}

.available-offers-table-header._nowrap span {
    padding-left: 30px
}

.available-offers-table-header .available-offers-table-price {
    text-align: right
}

.available-offers-table-header .available-offers-table-area {
    text-align: right;
    width: 120px
}

.available-offers-table-item {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    text-decoration: none;
    display: table-row
}

.available-offers-table-item:hover>span {
    background: #f5f5f5
}

.available-offers-table-item>span {
    display: table-cell;
    padding: 7px 8px 8px 15px;
    border-bottom: #e9e9ed solid 1px;
    max-width: 325px
}

.available-offers-table-item>span._right {
    text-align: right
}

.available-offers-table-item>span._center {
    text-align: center
}

.available-offers-table-item._dark {
    color: #fff
}

.available-offers-table-item._dark:hover>span {
    background: #636369
}

.available-offers-table-item._dark>span {
    border-bottom: #65656a solid 1px
}

.available-offers-table-item._nowrap {
    white-space: nowrap
}

.available-offers-table-item._nowrap>span {
    padding-left: 30px
}

.available-offers-table-item sup {
    font-size: 9px
}

.available-offers-table-item .available-offers-table-area {
    text-align: right;
    width: 120px
}

.available-offers-table-item .available-offers-table-price {
    text-align: right;
    white-space: nowrap
}

.available-offers-table-item i.rub:before {
    top: -1px
}

.available-offers-table-item i.rub:after {
    top: 1px
}

.available-offers-table .admin-edit {
    top: auto;
    right: 10px;
    margin-top: 5px
}

.available-offers .popup {
    overflow: hidden;
    position: relative
}

.available-offers .popup-inner {
    padding: 35px 40px 0 40px
}

.available-offers .popup-inner h2 {
    line-height: 48px
}

.available-offers .popup h {
    color: #eb1429;
    font-size: 50px;
    margin-top: 0
}

.available-offers .popup h2 {
    color: #eb1429;
    font-size: 50px;
    margin-top: 0
}

.available-offers .popup h1 {
    color: #eb1429;
    font-size: 50px;
    margin-top: 0
}

.available-offers .popup .infograph {
    box-shadow: none;
    display: inline-table;
    height: auto;
    width: 100%;
    padding-bottom: 20px;
    padding: 0 40px 20px 40px
}

.available-offers .popup .infograph .item {
    width: auto;
    vertical-align: top;
    display: table-cell;
    padding-right: 22px;
    padding-left: 18px;
    padding-bottom: 0
}

.available-offers .popup .infograph .item:first-child {
    padding-left: 0
}

.available-offers .popup .infograph .item:last-child {
    padding-right: 0
}

.available-offers .popup .infograph .item:before {
    height: 64px
}

.available-offers .popup .infograph h4 {
    color: #535359;
    white-space: nowrap;
    font-size: 24px;
    margin: 0
}

.available-offers .popup .infograph .num {
    color: #535359;
    white-space: nowrap;
    font-size: 24px
}

.available-offers .popup .infograph .befText {
    color: #848489;
    width: 240px;
    padding-top: 40px
}

.available-offers .popup .infograph p {
    color: #808080;
    padding: 0;
    margin-bottom: 0;
    margin-top: 6px;
    white-space: nowrap;
    width: auto
}

.available-offers .popup .infograph i.rub:before {
    top: -1px
}

.available-offers .popup .infograph i.rub:after {
    top: 3px
}

.available-offers .popup .photo-gallery .photo-gallery-thumbs-item {
    overflow: hidden
}

.available-offers .popup .photo-gallery .photo-gallery-thumbs-item img {
    min-height: 100%;
    min-width: 100%
}

.available-offers .popup .text {
    font-size: 14px;
    padding: 40px 0
}

.available-offers .popup .about {
    color: #ca1b2d;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 12px
}

.available-offers .popup .about span {
    position: relative;
    margin-left: 22px;
    border-bottom: 1px dashed #ca1b2d
}

.available-offers .popup .about span:before {
    background-image: url(../img/plus.png);
    content: "";
    height: 100px;
    width: 100px;
    background-repeat: no-repeat;
    border: 0;
    position: absolute;
    left: -22px
}

.available-offers .popup .about._opened span {
    border-bottom: 1px dashed #ca1b2d
}

.available-offers .popup .about._opened span:before {
    background-image: url(../img/minus.png)
}

.available-offers .popup .more {
    display: none;
    width: 100%
}

.available-offers .popup .more._opened {
    display: table
}

.available-offers .popup .more tr {
    border-bottom: 1px solid #e8e8eb;
    height: 35px;
    padding: 0 20px
}

.available-offers .popup .more tr td {
    font-size: 14px;
    font-family: Tahoma
}

.available-offers .popup .more tr td:first-child {
    color: #808080;
    width: 240px;
    padding-left: 20px
}

.available-offers .popup-footer {
    margin-top: 40px;
    display: table;
    width: 100%;
    min-width: 819px;
    table-layout: fixed;
    font-family: 'ralewayc2'
}

.available-offers .popup-footer .cell {
    display: table-cell;
    background: #535359;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    height: 80px;
    vertical-align: middle;
    position: relative
}

.available-offers .popup-footer .cell a {
    color: #fff;
    text-decoration: none;
    padding: 32px 40px
}

.available-offers .popup-footer .cell:first-child {
    padding-right: 40px;
    width: 180px
}

.available-offers .popup-footer .cell:first-child:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 10px 0;
    width: 2px;
    background: #414147
}

.available-offers .popup-footer .cell.call {
    background: #eb1429;
    text-align: center;
    width: 270px;
    height: 80px;
    padding-left: 0;
    line-height: 1
}

.available-offers .popup-footer .cell.call .number {
    font-family: 'ralewayc2';
    display: inline-block;
    padding: 0 0 0 28px;
    font-size: 18px;
    background: no-repeat 0 50%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAMAAAAMCGV4AAAATlBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////+QlxstAAAAGXRSTlMA9ut0+zqzTAPx0Lh2QxjhyKuppmojGxoGboajAQAAAGFJREFUCNdNzkcSwCAIBVC7saYX73/RwNhg5ZP5ACMlRaKMpXBNugVqG1wUWs3+hXYk78FmMnOwnXkz2h/yBIqMlEqyN5S+PcLLY1bZcQYWr7NEo2inpvoRnr7oPty6664f1gQHLjOMeg0AAAAASUVORK5CYII=')
}

.available-offers .popup-footer .cell.call p {
    margin: 5px 0 0;
    font-size: 12px;
    font-weight: normal
}

.available-offers .popup-footer .cell.call p a {
    color: #fff;
    text-decoration: none;
    text-transform: none;
    border-bottom: 1px dashed #fff;
    padding: 0
}

.lot-modal .modal-dialog {
    width: 100%;
	max-width: 965px;
    margin-top: 100px
}

.lot-modal .modal-content {
    padding: 0;
    border: 0
}

.files-modal {
    font-family: 'ralewayc2'
}

.files-modal .modal-dialog {
    width: 600px;
    margin-top: 100px
}

.files-modal .modal-content {
    border: 0;
    padding: 20px 40px 50px
}

.files-modal .table {
    width: 100%;
    display: table;
    margin-top: 15px
}

.files-modal .table-header-cell {
    color: #848489;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: table-cell;
    padding: 0 8px 8px 15px;
    border-bottom: #eb1429 solid 2px
}

.files-modal .table-row {
    display: table-row;
    width: 100%
}

.files-modal .table-row:nth-child(2) .table-cell {
    padding-top: 8px
}

.files-modal .table-row:nth-child(3) .table-cell {
    padding-top: 16px
}

.files-modal .table-cell {
    display: table-cell;
    padding: 7px 8px 8px 15px
}

.files-modal .modal-header {
    height: 160px;
    line-height: 160px;
    background: url(../img/login-form-bg.jpg) no-repeat #f4293e
}

.files-modal .modal-header h3 {
    color: #fff;
    font-size: 43px
}

.files-modal .files-download-button {
    background: #ec142a;
    color: #fff;
    border: 0;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    padding: 24px 28px;
    margin-top: 30px;
    border-radius: 4px;
    outline: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.files-modal .cell-with-input {
    padding: 0;
    padding-left: 20px
}

.files-modal .select-all-label {
    padding-left: 5px
}

.modal-inner .popup .about {
    margin-top: 20px
}

.modal-inner .lot-text {
    padding: 0 40px
}

.modal-inner .lot-head {
    padding-top: 0!important
}

.action-offer {
    color: #f00
}
.action-offer p{
	margin: 0px;
}
.search-start .wrap {
    width: 1170px
}

.search-start .wrap.search-form-container {
    width: 1250px
}

.search-start .cards {
    margin-top: 30px;
    margin-bottom: 40px
}

.select2-drop.callback-select-dropdown.dd-select-dest-big {
    width: 352px
}

.select2-drop.callback-select-dropdown.dd-select-classes {
    width: 153px
}

.select2-drop.callback-select-dropdown.dd-select-area {
    width: 102px
}

.select2-drop.callback-select-dropdown.dd-select-dest {
    width: 300px;
    min-width: 205px
}

.select2-drop.callback-select-dropdown.dd-select-min {
    width: 100px!important
}

.litterspace {
    margin-right: 1px
}

.search-input {
    display: inline-block;
    vertical-align: top;
    height: 70px;
    position: relative;
    border: #e57780 solid 2px;
    border-radius: 3px;
    margin: 0 8px 43px 0
}

.search-input .select2-container.callback-select {
    display: block;
    float: none;
    width: 100%;
    height: 100%
}

.search-input .select2-container.callback-select .select2-choice {
    border: 0;
    background: none!important;
    color: #fff;
    height: 100%;
    font-size: 18px;
    line-height: 42px;
    padding: 12px 6px
}

.search-input .select2-container.callback-select .select2-choice div {
    display: none
}

.search-input .select2-container.callback-select .select2-choice:after {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #fff transparent
}

.search-input .select2-container.callback-select.select2-dropdown-open {
    background: #e57780
}

.search-input-left {
    border-radius: 3px 0 0 3px;
    margin-right: -2px
}

.search-input-right {
    border-radius: 0 3px 3px 0
}

.search-input-big {
    width: 100%
}

.search-input-medium {
    width: 157px
}

.search-input-medium-2 {
    width: 209px
}

.search-input-medium-3 {
    width: 141px
}

.search-input-small {
    width: 106px
}

.search-input-small-2 {
    width: 70px
}

.search-input-container {
    display: inline-block;
    vertical-align: top
}

.search-input-container-full {
    width: 100%
}

.search-input-container-min {
    width: 66%;
    margin-right: 2%
}

.search-input-container label {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 8px 1px
}

.search-input-container-mini label {
    font-size: 11px;
    margin-bottom: 4px
}

.search-input input {
    height: 66px;
    padding: 0 12px;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    border: 0;
    background: 0;
    width: 100%
}

.search-input input:focus {
    outline: 0
}

.search-input-mini {
    height: 50px
}

.search-input-mini:after {
    right: 3px;
    bottom: 3px;
    border-width: 0 0 9px 8px
}

.search-input-mini input {
    height: 46px;
    font-size: 14px
}

.search-input-mini .select2-container.callback-select .select2-choice {
    font-size: 14px;
    line-height: 22px
}

.search-form-container {
    height: 634px;
    position: relative
}

.search-form-container h2 {
    color: #fff;
    font-size: 50px
}

.search-form-map {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/search-map-bg.png);
    padding-top: 82px
}

.search-form-map h2 {
    margin: 41px 0 0 66px;
    position: relative;
    z-index: 2
}

.search-form-fields {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/search-form-bg.jpg) 0 0 no-repeat;
    padding: 82px 46px 0
}

.search-form-fields h2 {
    margin: 41px 0 43px 0
}

.search-form-fields i.rub {
    display: inline-block
}

::-moz-focus-inner {
    border: 0;
    outline: 0
}

.map-container {
    position: absolute;
    left: 154px;
    top: 104px;
    width: 386px;
    height: 497px
}

.map-container .map-image {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 386px;
    height: 497px;
    z-index: 4;
    outline: 0
}

.map-container area,.map-container a {
    outline: 0;
    border: 0;
    outline: medium none!important
}

.map-container area:focus,.map-container a:focus,.map-container area:active,.map-container a:active {
    border: 0;
    outline: 0;
    outline: medium none!important
}

.map-container .point {
    display: block;
    position: absolute;
    z-index: 3
}

.map-container .poly-state {
    display: none;
    position: absolute;
    z-index: 1
}

.map-container img.poly-1-hover,.map-container img.poly-1-active {
    left: 13px;
    top: 200px
}

.map-container .poly-1-hover~img.poly-1-hover {
    display: block
}

.map-container .poly-1-active~img.poly-1-active {
    display: block
}

.map-container img.poly-2-hover,.map-container img.poly-2-active {
    left: 127px;
    top: 179px
}

.map-container .poly-2-hover~img.poly-2-hover {
    display: block
}

.map-container .poly-2-active~img.poly-2-active {
    display: block
}

.map-container img.poly-3-hover,.map-container img.poly-3-active {
    left: 92px;
    top: 268px
}

.map-container .poly-3-hover~img.poly-3-hover {
    display: block
}

.map-container .poly-3-active~img.poly-3-active {
    display: block
}

.map-container img.poly-4-hover,.map-container img.poly-4-active {
    left: 161px;
    top: 251px;
}

.map-container .poly-4-active~img.poly-4-active {
    display: block
}

.map-container .poly-4-hover~img.poly-4-hover {
    display: block
}


.map-container img.poly-5-hover,.map-container img.poly-5-active {
    top: 3px;
    left: 5px;
}

.map-container .poly-5-hover~img.poly-5-hover {
    display: block
}

.map-container .poly-5-active~img.poly-5-active {
    display: block
}

.map-container img.poly-6-hover,.map-container img.poly-6-active {
	top: 3px;
    left: 128px;
}

.map-container .poly-6-hover~img.poly-6-hover {
    display: block
}

.map-container .poly-6-active~img.poly-6-active {
    display: block
}

.map-container img.poly-7-hover,.map-container img.poly-7-active {
   top: 89px;
    left: 209px;
}

.map-container .poly-7-hover~img.poly-7-hover {
    display: block
}

.map-container .poly-7-active~img.poly-7-active {
    display: block
}

.map-container img.poly-8-hover,.map-container img.poly-8-active {
	top: 201px;
    left: 215px;
}

.map-container .poly-8-hover~img.poly-8-hover {
    display: block
}

.map-container .poly-8-active~img.poly-8-active {
    display: block
}

.map-container img.poly-9-hover,.map-container img.poly-9-active {
	top: 59px;
    left: 81px;
}

.map-container .poly-9-hover~img.poly-9-hover {
    display: block
}

.map-container .poly-9-active~img.poly-9-active {
    display: block
}


.map-container img.poly-1-active,.map-container img.poly-2-active,.map-container img.poly-3-active,.map-container img.poly-4-active,.map-container img.poly-5-active,.map-container img.poly-6-active,.map-container img.poly-7-active,.map-container img.poly-8-active, .map-container img.poly-8-active {
    z-index: 2
}




.map-district {
    position: absolute;
    left: 60px;
    bottom: 55px
}

.map-district-moscow {
    display: block;
    text-indent: -9999px;
    width: 101px;
    height: 13px;
    background: url(../img/sprite.png) 0 -50px no-repeat;
    margin: 0 0 5px 0
}

.map-district-part {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-left: 18px
}

.big-white-button._disable {
    opacity: .5
}

.card {
    margin-right: 27px;
    margin-bottom: 20px
}

.card:nth-child(5n) {
    margin-right: 0
}

.currency {
    font-size: 11px;
    color: #4d4d4d;
    margin: 15px 0;
    text-align: right
}

.popup .currency {
    background: #e8e8ec;
    padding: 9px;
    margin: 20px 2%!important;
    text-align: center;
    display: inline-block;
    width: 96%
}

._dark .currency {
    color: #ccc;
    margin-bottom: 0
}

hr {
    background: #cacace;
    border: 0;
    height: 3px
}

.underlined {
    border-bottom: 4px solid #eb1429
}

.wrap {
    position: relative
}

.viewportBinder {
    top: 0;
    min-height: 697px
}

.top {
    text-align: center;
    position: relative;
    width: 1250px;
    margin: 0 auto;
    background: no-repeat 50% url('../img/content/projects/2.png');
    height: 226px
}

.top h1 {
    color: #fff;
    position: absolute;
    margin: 0;
    left: 60px;
    bottom: 45px;
    font-size: 50px
}

.top .all-projects-filter-container {
    position: absolute;
    margin: 0;
    bottom: 55px;
    right: 45px;
    overflow: hidden
}

.top .all-projects-filter {
    font-family: 'ralewayc2';
    font-size: 13px;
    float: right;
    margin: 0;
    padding: 0;
    list-style: none
}

.top .all-projects-filter>li {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    float: left;
    margin: 0 3px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #848489;
    cursor: pointer
}

.top .all-projects-filter>li:first-child {
    margin-left: -15px
}

.top .all-projects-filter>li:first-child span {
    padding-left: 40px
}

.top .all-projects-filter>li:last-child {
    margin-right: -15px
}

.top .all-projects-filter>li:last-child span {
    padding-right: 40px
}

.top .all-projects-filter>li._active,.top .all-projects-filter>li._active:hover {
    background: #fff
}

.top .all-projects-filter>li._active span,.top .all-projects-filter>li._active:hover span {
    color: #eb1429
}

.top .all-projects-filter>li:hover {
    background: #bebec1
}

.top .all-projects-filter>li span {
    display: block;
    padding: 7px 30px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.top .buttons {
    position: absolute;
    margin: 0;
    bottom: 50px;
    right: 30px;
    width: 485px;
    overflow: hidden
}

.top .buttons .topA {
    display: inline-block;
    line-height: 25px;
    position: relative;
    width: 166px
}

.top .buttons .topA:first-of-type {
    margin-left: -34px
}

.top .buttons .topA:last-of-type {
    margin-right: -34px
}

.top .buttons .topA .back {
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    width: 100%;
    background: gray;
    height: 35px;
    position: absolute;
    top: 0
}

.top .buttons .topA a {
    display: block;
    z-index: 2;
    position: relative;
    width: 100%;
    text-decoration: none;
    font-weight: bold
}

.top .buttons .topA span {
    display: block;
    z-index: 2;
    position: relative;
    line-height: 35px;
    color: #fff;
    text-decoration: none
}

.top .buttons .topA:hover span {
    color: #f7f7fc
}

.top .buttons .topA.active .back {
    background: #fff
}

.top .buttons .topA.active span {
    color: #eb1429
}

.top__done {
    width: 1170px
}

.top__done h1 {
    bottom: 0;
    font-size: 37px;
    height: 54px;
    left: 67px;
    letter-spacing: 1.5px;
    line-height: 54px;
    margin: auto;
    text-align: left;
    top: 100px
}

.top__done .all-projects-filter>li {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none
}

.top__done .all-projects-filter>li a {
    display: block;
    padding: 7px 30px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none
}

.rent .leftBtn {
    position: absolute;
    left: -40px;
    top: 140px
}

.rent .rightBtn {
    position: absolute;
    right: -40px;
    top: 140px
}

.rent .topPart {
    position: relative;
    width: 1170px;
    height: 400px;
    font-family: 'ralewayc2';
    overflow: hidden
}

.rent .topPart.top-overlay:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3
}

.rent .topPart.top-overlay img {
    width: 100%
}

.rent .topPart .admin-edit {
    font-size: 30px
}

.rent .redSquare {
    height: 35px;
    width: 20px;
    background: #eb1429;
    position: absolute;
    left: 0;
    top: 47px
}

.rent .logo {
    position: absolute;
    top: 77px;
    left: 60px;
    max-width: 500px;
    max-height: 140px;
    width: auto!important
}

.rent .logo.kr {
    top: 60px
}

.rent .btn-cont {
    width: 150px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    position: absolute;
    left: 77px;
    bottom: 80px;
    overflow: hidden
}

.rent .btn-cont a {
    margin-left: 10px;
    display: block;
    text-decoration: none;
    position: relative;
    opacity: .8;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.rent .btn-cont a:hover {
    opacity: 1
}

.rent .btn-cont a:active {
    opacity: .8
}

.rent .btn-cont span {
    display: block;
    position: relative;
    z-index: 2;
    margin-left: -30px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase
}

.rent .btn-cont .back {
    margin-left: -20px;
    position: absolute;
    width: 100%;
    height: 35px;
    top: 0;
    background: #eb1429;
    left: 0;
    z-index: 1;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg)
}

.rent .text {
    width: 50%;
    position: absolute;
    right: -2px;
    padding-left: 5%;
    top: 46px;
    color: #fff;
    line-height: 26px;
    padding-right: 40px;
    font-size: 18px;
    font-weight: normal;
    padding-top: 18px
}

.rent .text p {
    margin: 0;
    margin-bottom: 9px
}

.rent .text p:nth-child(2) {
    margin-bottom: 39px
}

.rent .text span {
    font-family: ralewayc2;
    font-weight: bold;
    font-size: 30px
}

.rent .text b {
    font-size: 30px;
    font-weight: bold
}

.rent .text sup {
    font-size: 66%
}

.rent .bottomPart {
    margin-bottom: 50px;
    position: relative
}

.rent .imgWrapper {
    padding: 0 20px
}

.rent .item {
    margin: 30px 0;
    padding: 0 20px;
    border-right: 2px solid lavender
}

.rent .item:last-of-type {
    margin-right: 0;
    border-right: 0
}

.rent h2.light-gray {
    font-size: 37px;
    color: #525259
}

.rent .loftOffice {
    margin-bottom: 40px
}

.rent .citi {
    margin-bottom: 50px
}

.up {
    position: absolute;
    bottom: 70px;
    right: -100px
}

.ico-element {
    display: block;
    color: #848489;
    position: relative;
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 6px;
    padding: 0 0 0 35px
}

.ico-element:before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat
}

.ico-element-map:before {
    width: 14px;
    height: 18px;
    left: 11px;
    top: 3px;
    background-position: 0 0
}

.ico-element-phone {
    text-decoration: none
}

.ico-element-phone::before {
    width: 15px;
    height: 18px;
    left: 11px;
    top: 3px;
    background-position: -40px 0
}

.ico-element-metro:before {
    width: 18px;
    height: 12px;
    left: 11px;
    top: 3px;
    background-position: -20px 0
}

.ico-element-distance:before {
    width: 18px;
    height: 22px;
    left: 7px;
    top: 0px;
    background: transparent url('../img/walk.svg') 0 0 no-repeat;
}

.project-slider {
    width: 1168px;
    margin-left: -1px
}

.project-slider-container {
    position: relative;
    background: #fff;
    padding: 20px 1px 26px 1px;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none
}

.project-slider-container:before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    z-index: 1
}

.project-slider-container:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    right: 0;
    top: 0;
    height: 100%;
    background: #fff;
    z-index: 1
}

.project-slider-arrow {
    position: absolute;
    display: block;
    width: 40px;
    height: 200px;
    top: 175px;
    cursor: pointer;
    background: rgba(66,66,71,0.7);
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none
}

.project-slider-arrow-prev {
    left: -40px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.project-slider-arrow-prev:hover {
    opacity: .5
}

.project-slider-arrow-prev:active {
    opacity: .85
}

.project-slider-arrow-prev:before {
    background-image: url(sprite2.png);
    background-position: -266px -190px;
    width: 12px;
    height: 20px;
    content: '';
    top: 50%;
    position: absolute;
    margin-top: -10px;
    margin-left: -6px;
    left: 50%
}

.project-slider-arrow-next {
    right: -40px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.project-slider-arrow-next:hover {
    opacity: .5
}

.project-slider-arrow-next:active {
    opacity: .85
}

.project-slider-arrow-next:before {
    background-image: url(sprite2.png);
    background-position: -266px -160px;
    width: 12px;
    height: 20px;
    content: '';
    top: 50%;
    position: absolute;
    margin-top: -10px;
    margin-left: -6px;
    left: 50%
}

.project-slider.count-3 .owl-wrapper {
    width: auto!important
}

.project-slider.count-3 .owl-wrapper .owl-item {
    width: 389px!important
}

.project-slider.count-3 .owl-wrapper .owl-item .project-element-slider-item {
    width: 369px!important
}

.project-slider.count-3 .owl-wrapper .owl-item .project-element-slider-item .project-element-wrap {
    padding: 0 80px 0 70px
}

.project-elements-group {
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 0;
    margin-left: -30px
}

.project-element {
    display: inline-block;
    width: 269px;
    margin: 0 0 30px 30px;
    position: relative;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15)
}

.project-element-slider-item {
    display: block;
    margin: 0 11px 0 12px;
    box-shadow: none;
    float: left
}

.project-element-slider-item:before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    bottom: 10px;
    top: 0;
    left: -8px;
    border-left: #e9e9ed solid 1px
}

.project-element-slider-item.project-element-image {
    height: 199px;
    margin: 10px -8px 24px;
    width: 249px
}

.project-element-slider-item:hover .project-element-image-offers:before {
    opacity: 1
}

.project-element-slider-item:active .project-element-image-offers:before {
    opacity: .8
}

.project-element-body {
    height: 300px
}

.project-element-wrap {
    padding: 0 25px;
    margin-bottom: 16px;
    overflow: hidden
}

.project-element-image {
    height: 200px;
    margin: 0 -18px 16px;
    position: relative;
    width: 269px;
    overflow: hidden
}

.project-element-image-img {
    display: block
}

.project-element-image-offers {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
    line-height: 18px
}

.project-element-image-offers a {
    display: block;
    padding: 9px 16px;
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none
}

.project-element-image-offers:hover:before {
    opacity: 1
}

.project-element-image-offers:active:before {
    opacity: .8
}

.project-element-image-offers:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #eb1429;
    opacity: .8;
    z-index: 1;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.project-element-image-offers-empty:before {
    background: #000;
    opacity: .4
}

.project-element-image-offers-empty:hover:before {
    opacity: .6!important
}

.project-element-image-offers-empty:active:before {
    opacity: .4!important
}

.project-element-image-offers__done {
    cursor: default;
    line-height: 36px;
    text-align: center
}

.project-element-image-offers__done:hover::before {
    opacity: .8
}

.project-element-image-offers__done--text {
    font-size: 14px;
    position: relative;
    z-index: 2
}

.project-element-title {
    font-family: "ralewayc2";
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 9px 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none
}

.project-element-title a {
    text-decoration: none;
    color: #eb1429;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.project-element-title a:hover {
    text-decoration: underline
}

.project-element-title a:active {
    color: #af1828
}

.project-element-type {
    color: #4d4d4d;
    border-bottom: #e9e9ed solid 1px;
    font-size: 12px;
    line-height: 24px;
    min-height: 28px;
    margin-bottom: 15px;
    margin-left: 9px;
    overflow: auto
}

.project-element-class {
    display: block;
    float: left
}

.project-element-area {
    display: block;
    float: right
}

.project-element-area-digits {
    font-style: normal;
    font-weight: 500
}

.project-element-text {
    font-size: 14px;
    line-height: 21px;
    color: #4c4c4c;
    margin: 20px 9px 0;
    word-wrap: break-word
}

.project-element-done {
    background-color: #eb1429;
    bottom: 0;
    color: #fff;
    font-size: 14px;
    height: 44px;
    left: 0;
    line-height: 44px;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    white-space: nowrap
}

.project-element-done p {
    margin: 0;
    padding: 0
}

.project-action {
    background-color: #eb1429;
    color: white;
    font-size: 16px;
    line-height: 23px;
    margin-top: 62px;
    overflow: hidden;
    padding: 4px 50px 5px;
    text-align: center
}

.litle .project-element-text {
    font-size: 12px;
    line-height: 18px
}

.no-parent {
    margin: 0 -15px
}

.no-parent:before,.no-parent:after {
    content: " ";
    display: table
}

.no-parent:after {
    clear: both
}

.no-parent:before,.no-parent:after {
    content: " ";
    display: table
}

.no-parent:after {
    clear: both
}

.no-parent .project-element {
    background: white;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    margin: 0 15.5px 31px
}

.no-parent .project-element-image {
    width: 272px;
    margin: 0 -26px 16px
}

.no-parent .project-element-image-offers a {
    display: block;
    padding: 9px 35px
}

.no-parent.litle .project-element-title {
    font-size: 15px;
    line-height: 20px
}

.yaMap {
    overflow: hidden
}

.yaMap-container {
    height: 700px
}

.map-info {
    position: absolute;
    top: 70px;
    right: 15px;
    width: 380px;
    z-index: 1
}

.map-info-body {
    padding: 40px;
    background: #fff;
    line-height: 23px
}

.map-info-body .logo {
    margin-bottom: 12px
}

.map-info-print-link {
    margin-left: 35px;
    color: #eb1429
}

.map-info-footer {
    padding: 29px 75px;
    background: #535359;
    color: #fff
}

.map-info-footer .phone {
    display: block;
    font-family: 'Arial';
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: none
}

.map-info-footer a {
    color: #fff;
    text-decoration: underline
}

.map-info-address {
    padding-left: 35px;
    margin-bottom: 13px;
    line-height: 17px;
    margin-top: 0;
    background: no-repeat 0 7px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAASCAMAAABcgh8DAAAAPFBMVEUAAADCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsLCwsIQG1jLAAAAE3RSTlMA8LKQhVEM+dHCQRR7BibnX0AlCPEedwAAAHZJREFUGNNdztsOwyAMA1AHaEKgpe38//86lN00zpulyDGmXqpZLR1hEwbZIpGpqbZEztyFO8JO6ShMOLJIPpBYUNmQORU0VhgVEk1Qyn+05XipWh/FjAE8YsZrpANO2RCG8b5pA2+Z7sz40JM8FV8XeQE/7ghPAZ4G79Kk3/kAAAAASUVORK5CYII=')
}

.map-info-address-phone {
    color: #000;
    text-decoration: none
}

.map-info-address dt {
    font-weight: bold
}

.map-info-address dd {
    margin: 0
}

.infrastructure-full-width {
    width: 100%;
    height: auto
}

.map-viewport {
    height: 697px;
    width: 100%;
    overflow: hidden
}

.map-viewport img {
    width: auto;
    height: auto
}

.map-viewport .viewportContent {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.map-viewport .viewportContent.ui-draggable-dragging {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none
}

.map-viewport .map-viewport-content {
    position: relative;
    width: 3200px
}

.map-viewport .map-viewport-content .placemark {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    font-weight: bold;
    border-radius: 50%;
    background: #eb1429;
    text-align: center;
    line-height: 32px;
    font-family: 'ralewayc2';
    font-size: 16px;
    border: 4px solid #eb1429;
    color: #fff;
    cursor: pointer
}

.map-viewport .map-viewport-content .placemark._active {
    background: #fff;
    color: #eb1429
}

.map {
    position: relative;
    margin-top: 60px
}

.map .map-info-container {
    position: absolute;
    left: 50%;
    width: 916px;
    margin-left: -604px;
    top: 490px;
    padding: 28px 0 18px 25px;
    color: #fff;
    background: rgba(235,20,41,0.9);
    z-index: 1000;
    counter-reset: maplist
}

.map .map-info-container li {
    list-style: none;
    cursor: pointer;
    width: 297px;
    float: left
}

.map .map-info-container li:before {
    counter-increment: maplist;
    content: counter(maplist);
    width: 15px;
    margin-right: 20px;
    text-align: right;
    display: inline-block;
    font-family: Tahoma,Arial,sans-serif;
    font-size: 11px
}

.map .map-info-container li._active a {
    background: #fff;
    border-radius: 2px;
    color: #eb1429
}

.map .map-info-container li a {
    color: #fff;
    display: inline-block;
    padding: 6px;
    text-decoration: none
}

.map .map-info-container li span {
    border-bottom: 1px dashed #fff
}

.map .map-info-wrap {
    position: relative;
    margin: 0 auto;
    width: 1075px
}

.wrap-half-size {
    overflow-x: hidden
}

.project-site {
    margin: 70px 0;
    display: block;
    background: #535359;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    padding: 25px 0;
    line-height: 30px;
    text-transform: uppercase;
    font-family: 'ralewayc2';
    font-size: 20px;
    font-weight: 500;
    text-decoration: none
}

.project-site.half-size {
    width: 610px;
    display: inline-block;
    position: relative;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg)
}

.project-site.half-size span {
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.project-site.half-size:first-child {
    margin-left: -30px
}

.project-site.half-size:last-child {
    float: right;
    margin-right: -30px
}

.project-site:hover {
    background-color: #3a3a3f
}

.project-site span {
    display: inline-block;
    position: relative;
    border-bottom: 2px solid #87878b
}

.project-site span:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 23px;
    top: 50%;
    margin-top: -12px;
    left: -48px;
    background: no-repeat 50%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAXCAMAAAAm/38fAAAANlBMVEUAAAD////////////////////////////////////////////////////////////////////xY8b8AAAAEXRSTlMAgPbp3Mq8pUQ0JBYNBgGNh4pcBRMAAABnSURBVCjPvc7bCoAgEITh0c6eat7/ZUMMpkwQuui/Wv1gWZRYyqPRKNC/AGq1bdgsbQvcQLuS13aBHzlseEOYODqAJtttVZw5+XwbnpAWzgG5Cg4uES0we0ILFPknVHVB6f0BqrpwAj7iDkF5YwdAAAAAAElFTkSuQmCC")
}

.offers-filter {
    float: right;
    margin: 68px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    font-family: 'ralewayc2'
}

.offers-filter>li {
    float: left;
    margin: 0 3px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #848489
}

.offers-filter>li:first-child {
    margin-left: -15px
}

.offers-filter>li:last-child {
    margin-right: -15px
}

.offers-filter>li._active,.offers-filter>li._active:hover {
    background: #eb1429
}

.offers-filter>li:hover {
    background: #bebec1
}

.offers-filter>li span {
    display: block;
    padding: 7px 40px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.lot-container {
    padding-top: 100px;
    margin-bottom: 40px
}

.lot-container .lot-content {
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    background: #fff
}

.lot-container .lot-text {
    padding: 20px 40px 40px
}

.lot-container .infograph i.rub:before {
    top: -1px
}

.lot-container .infograph i.rub:after {
    top: 3px
}

.lot-container .available-offers .popup {
    overflow-x: hidden
}

.lot-container .available-offers .popup .infograph {
    padding: 27px 40px
}

.lot-container .available-offers .popup .infograph p {
    margin-top: 0
}

.lot-container .available-offers .popup .photo-gallery {
    margin: 0
}

.lot-container .available-offers .popup .photo-gallery-main-container {
    box-shadow: none
}

.lot-container .available-offers .popup .photo-gallery-thumbs-container {
    margin-bottom: 40px
}

.lot-container .available-offers.popup-inner {
    padding: 0
}

.admin-edit {
    position: absolute;
    top: 0;
    right: 0;
    background: #eb1429;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    opacity: .8;
    padding: 0 5px;
    z-index: 10;
    display: none
}

._admin-mode .admin-edit {
    display: block
}

.admin-edit:hover {
    opacity: 1;
    cursor: pointer
}

.search-slider-container-mini i.rub {
    display: inline-block
}

.item .currency {
    position: absolute;
    right: 0;
    margin-top: 10px
}

.search-form-collapsed {
    height: 130px;
    background: url(../img/search-form-short.jpg) 0 0 no-repeat;
    position: relative
}

.search-form-collapsed .map-district {
    z-index: 3;
    left: 35px;
    bottom: 42px
}

.search-form-collapsed .map-district-part {
    display: inline-block;
    position: relative;
    cursor: pointer
}

.search-form-collapsed .map-district-part:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    border-top: #87878b dashed 1px;
    left: 0;
    bottom: 2px
}

.search-form-collapsed .map-district-part:after {
    content: "";
    display: block;
    position: absolute;
    right: -19px;
    bottom: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 9px 8px;
    border-color: transparent transparent #fff transparent
}

.search-form-collapsed-container {
    padding-top: 100px
}

.search-form-collapsed-map-container {
    width: 475px;
    height: 551px;
    background: #535359;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.25)
}

.search-form-collapsed-map-container .map-container {
    top: 24px;
    left: 53px
}

.search-form-collapsed-map-container .map-close {
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    top: 19px;
    right: 19px;
    background: url(../img/sprite.png) -60px -20px no-repeat
}

.search-form-collapsed-map-container .show-all-districts {
    display: block;
    position: absolute;
    bottom: 21px;
    left: 37px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 24px;
    z-index: 4
}

.search-form-collapsed-map-container .show-all-districts:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    border-top: #87878b dashed 1px;
    left: 0;
    bottom: 3px
}

.search-form-collapsed-map-container .submit-form-districts {
    display: block;
    position: absolute;
    bottom: 16px;
    right: 21px;
    background: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    color: #535359;
    border-radius: 3px;
    text-decoration: none;
    padding: 5px 15px;
    z-index: 4
}

.search-form-collapsed-fields {
    padding: 22px 0 0 287px;
    height: 130px
}

.search .col {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    max-height: 401px
}

.search .col:first-of-type>img {
    height: 401px;
    width: 559px
}

.search .col:first-of-type>img.not-img {
    height: auto;
    width: auto;
    margin: 150px 0 0 300px
}

.search .col.text {
    width: 50%;
    margin-left: 0;
    font-family: tahoma
}

.search .col.text .logo {
    float: right;
    margin-top: 35px;
    position: relative;
    top: 0;
    right: 0;
    margin-left: 15px;
    margin-bottom: 15px
}

.search .col:last-of-type {
    padding: 0 21px
}

.search .item {
    margin-bottom: 50px
}

.search .topPart {
    position: relative;
    border-bottom: 3px solid #eb1429;
    min-height: 401px
}

.search .topPart .available-offers-list {
    margin-top: 0!important
}

.search .topPart img {
    max-width: 100%;
    max-height: 401px
}

.search .topPart h3 {
    color: #eb1429;
    font-size: 40px;
    line-height: 47px;
    font-family: ralewayc2;
    margin: 33px 0 17px 0;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent
}

.search .topPart h3>a {
    color: inherit;
    text-decoration: none
}

.search .topPart h3>a:hover {
    border-bottom: 2px solid #efbac0
}

.search .topPart .right {
    float: right
}

.search .topPart .left-side {
    width: 140px;
    height: 101%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(235,20,41,0.9);
    color: #fff;
    text-align: center;
    font-family: 'ralewayc2';
    font-size: 14px;
    padding-top: 35px
}

.search .topPart .left-side span {
    font-size: 50px;
    font-weight: bold;
    font-family: ralewayc2
}

.search .topPart .triangle {
    width: 25px;
    height: 25px;
    border-top: 25px solid #eb1429;
    border-left: 25px solid transparent;
    position: absolute;
    bottom: -25px;
    left: 115px;
    z-index: 1
}

.search .topPart .under {
    padding: 0 11px 7px;
    margin: 0 -11px 8px;
    border-bottom: 1px solid #e8e8eb;
    min-height: 26px;
    clear: both
}

.search .topPart .under:nth-child(2n) {
    border-bottom: 2px solid #e8e8eb
}

.search .topPart .gray {
    color: #808080
}

.search .topPart .gray {
    font-size: 12px;
    padding-top: 13px
}

.search .topPart .gray .point {
    position: relative;
    padding-left: 26px;
    width: 44%;
    display: inline-block;
    vertical-align: top
}

.search .topPart .gray .point:before {
    content: url(../img/content/search/search-marker.png);
    position: absolute;
    top: 0;
    left: 0
}

.search .topPart .gray .metro-i {
    width: 47%;
    display: inline-block;
    vertical-align: top
}

.search .topPart .textItem {
    font-size: 14px;
    line-height: 23px;
    padding-right: 56px
}

.search .topPart .textItem p {
    margin: 0;
    max-height: 46px
}

.loft-counter {
    position: absolute;
    color: #525259;
    font-size: 20px;
    margin-top: 140px
}

.get-loft {
    position: absolute;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    left: 33px;
    top: 50px
}

.check-list {
    border-left: 1px solid #e38d96;
    display: inline-block;
    line-height: 35px;
    list-style: none;
    margin: auto;
    padding-left: 17px;
    vertical-align: middle;
    width: 161px
}

.check-list-wrapper {
    bottom: 0;
    height: auto;
    line-height: 130px;
    position: absolute;
    right: 0;
    top: 0
}

.check-list__item {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

.check-list__item::before {
    content: '';
    display: inline-block;
    vertical-align: middle
}

.check-list__text {
    border-bottom: dashed 1px #e38d96;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    vertical-align: middle
}

.check-all::before {
    background-image: url(../img/check-all.png);
    height: 17px;
    width: 15px
}

.check-done::before {
    background-image: url(../img/check-done.png);
    height: 13px;
    width: 15px
}

.loft-checkbox-group {
    padding: 30px 0 0 283px;
    position: relative
}

.loft-checkbox-group.bordered:after {
    content: '';
    border-left: #e38d96 solid 1px;
    display: block;
    position: absolute;
    height: 70px;
    width: 0;
    top: 30px;
    right: 160px
}

.cb-loft {
    display: inline-block;
    text-align: center;
    width: 120px;
    vertical-align: top;
    margin-right: 0
}

.cb-loft input {
    position: fixed;
    left: -9999px
}

.cb-loft label {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'ralewayc2';
    color: #fff;
    position: relative;
    padding: 50px 0 0 0;
    cursor: pointer;
    white-space: nowrap
}

.cb-loft label:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -23.5px;
    width: 47px;
    height: 42px;
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat
}

.cb-loft label:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: #e38d96 dashed 1px;
    width: 100%
}

.cb-loft:hover label {
    color: #f5e6e7
}

.cb-loft:hover label:after {
    border: 0
}

.cb-loft:active label {
    color: #eeccce
}

.cb-loft:active label:after {
    border: 0
}

.cb-loft input:checked+label:after {
    border: 0
}

.cb-loft-classic label:before {
    background-position: 0 -120px
}

.cb-loft-classic input:checked+label:before {
    background-position: 0 -70px
}

.cb-loft-mans label:before {
    background-position: -50px -120px
}

.cb-loft-mans input:checked+label:before {
    background-position: -50px -70px
}

.cb-loft-two label:before {
    background-position: -100px -120px
}

.cb-loft-two input:checked+label:before {
    background-position: -100px -70px
}

.cb-loft-enter label:before {
    background-position: -150px -120px
}

.cb-loft-enter input:checked+label:before {
    background-position: -150px -70px
}

.ico-loft {
    display: inline-block;
    vertical-align: -4px;
    margin-left: 4px;
    text-indent: -9999px;
    width: 13px;
    height: 13px;
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat
}

.ico-loft._classic {
    background-position: -110px -50px
}

.ico-loft._2floor {
    background-position: -130px -50px
}

.ico-loft._attic {
    background-position: -170px -50px
}

.ico-loft._entrance {
    background-position: -150px -50px
}

.currency-block {
    text-align: center;
    color: #fff;
    margin: -8px 0 38px
}

.currency-block-val {
    display: inline-block;
    padding: 0 20px;
    position: relative;
    height: 62px;
    line-height: 62px;
    font-size: 14px;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    background: #eb1429
}

.currency-block-val:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 31px 18px 31px 0;
    border-color: transparent #eb1429 transparent transparent;
    transform: rotate(360deg)
}

.currency-block-val:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 31px 0 31px 18px;
    border-color: transparent transparent transparent #eb1429;
    transform: rotate(360deg)
}

.secondary-sales {
    height: 403px;
    padding: 35px 27px 0
}

.secondary-sales h2 {
    color: #eb1429;
    margin-top: -12px
}

.secondary-sales-container {
    position: relative;
    padding: 0 15px
}

.secondary-sales-arrow {
    display: block;
    position: absolute;
    width: 13px;
    height: 20px;
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat;
    top: 55px;
    z-index: 2;
    cursor: pointer
}

.secondary-sales-arrow-prev {
    background-position: -40px -20px;
    left: 3px
}

.secondary-sales-arrow-next {
    background-position: -20px -20px;
    right: 3px
}

.secondary-sales-slider-item {
    display: block;
    text-decoration: none;
    color: #4c4c4c;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 12px;
    line-height: 18px;
    width: 210px;
    text-align: center;
    margin: 0 10px;
    padding-top: 34px
}

.secondary-sales-slider-item .img-wrap {
    height: 81px;
    line-height: 81px
}

.secondary-sales-slider-item .img-wrap img {
    display: inline-block;
    margin: 0 auto
}

.secondary-sales-slider-item p {
    overflow: hidden
}

.secondary-sales-slider-item span {
    border-top: #e9e9ed solid 1px;
    display: block;
    padding: 13px 20px 0;
    height: 115px
}

.page-title.empty {
    line-height: 1.3;
    font-size: 41px;
    width: 85%;
    margin: 48px 0 46px;
    color: #4b4b50
}

.search .page-title.page-title-loft {
    display: inline-block;
    vertical-align: top;
    margin-top: 66px;
    padding-bottom: 35px
}

.search.search-loading:before {
    content: '';
    position: fixed;
    background: url(/img/loading.gif) center center no-repeat #fff;
    opacity: .5;
    transition: all .5s linear;
    width: 100%;
    z-index: 1000;
    height: 100%
}

.search .p-empty {
    color: #525259;
    font-size: 28px;
    font-weight: bold
}

.search .topText {
    font-family: 'ralewayc2';
    display: inline-block;
    width: 767px;
    padding: 37px 0 35px 85px;
    color: #4d4d4d;
    line-height: 24px;
    font-size: 16px
}

.search .market .col {
    width: 100%;
    padding-left: 150px
}

.search .market.bottomPart {
    background: #f5f5f5
}

.search .market table {
    color: #000
}

.search .market table a {
    color: #eb1429
}

.search .market table th,.search .market table td {
    border-bottom: 1px solid #e4e4e5
}

.search .market table tr:hover,.search .market table td:hover {
    background: 0;
    border-bottom: 1px solid #e4e4e5
}

.search .market span.call {
    color: #535359
}

.search .market span.call:before {
    content: url(../img/content/search_loft/phone.png);
    margin-right: 10px
}

.search .market .btn-more {
    visibility: hidden
}

#service-slide-1 .up-tween-1 {
    position: relative;
    bottom: -100px;
    opacity: 0
}

#service-slide-1 .left-tween-1 {
    margin-left: 100px;
    opacity: 0
}

#service-slide-2 .left-tween-2 {
    margin-left: 100px;
    opacity: 0
}

#service-slide-3 .up-tween-3 {
    position: relative;
    top: -100px;
    opacity: 0
}

#service-slide-3 .down-tween-3 {
    position: relative;
    top: 100px;
    opacity: 0
}

#service-slide-3 .left-tween-3 {
    margin-left: 100px;
    opacity: 0
}

#service-slide-3 .width-tween-3 {
    left: 50%;
    width: 0;
    opacity: 0
}

#service-slide-4 .scale-tween-4 {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0
}

#service-slide-4 .left-tween-4 {
    margin-left: 100px;
    opacity: 0
}

#service-slide-5 .left-tween-5 {
    margin-left: 100px;
    opacity: 0
}

.service-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden
}

.service-slide-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 1;
    z-index: 5
}

.service-slide-container {
    position: absolute;
    left: 50%;
    margin-left: -585px;
    width: 1170px;
    height: 100%
}

.service-slide-1 {
    background: url(../img/service/slide-1.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 10
}

.service-slide-1 .exp-main-info {
    position: absolute;
    left: 0;
    top: 17%
}

.service-slide-1 h2 {
    font: 700 50px/65px 'ralewayc2';
    color: #eb1429;
    margin: 0 0 24px 0;
    text-transform: uppercase
}

.service-slide-1 h2 p {
    margin: 0;
    padding: 0
}

.service-slide-1 h2 strong {
    display: block;
    font-weight: 800
}

.service-slide-1 h1 {
    font: 700 50px/65px 'ralewayc2';
    color: #eb1429;
    margin: 0 0 24px 0;
    text-transform: uppercase
}

.service-slide-1 h1 p {
    margin: 0;
    padding: 0
}

.service-slide-1 h1 strong {
    display: block;
    font-weight: 800
}

.service-slide-1 .exp-description {
    font: 300 20px/30px 'ralewayc2';
    color: #4b4b50;
    max-width: 70%
}

.service-slide-1 .exp-description p {
    margin: 0
}

.service-slide-1 .exp-stat {
    position: absolute;
    width: 55%;
    left: 0;
    bottom: 62px;
    text-align: justify;
    text-justify: newspaper;
    font-size: 0;
    line-height: 0
}

.service-slide-1 .exp-stat:before {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    left: 24%;
    border-left: #d4d4d4 solid 1px;
    border-right: #d4d4d4 solid 1px
}

.service-slide-1 .exp-stat:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0
}

.service-slide-1 .exp-stat-item {
    position: relative;
    display: inline-block;
    z-index: 2
}

.service-slide-1 .exp-stat-item strong {
    display: block;
    font: 700 40px/46px 'ralewayc2';
    color: #eb1429;
    margin-bottom: 7px
}

.service-slide-1 .exp-stat-item strong sup {
    font-size: 25px
}

.service-slide-1 .exp-stat-item span {
    display: block;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 15px;
    line-height: 21px;
    color: #87878b
}

.service-slide-2 {
    background: url(../img/service/slide-2.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 9
}

.service-slide-2 .services-list {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1
}

.service-slide-2 .services-list svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 5%
}

.service-slide-2 .service-main-info {
    position: absolute;
    left: 0;
    top: 20.3%;
    z-index: 2
}

.service-slide-2 h2 {
    font: 700 50px/60px 'ralewayc2';
    margin: 0 0 17px 0;
    color: #fff;
    z-index: 2
}

.service-slide-2 h2 p {
    margin: 0
}

.service-slide-2 .exp-description {
    font: 300 20px/30px 'ralewayc2';
    color: #fff;
    z-index: 2;
    width: 70%
}

.service-slide-2 .exp-description p {
    margin: 0
}

.service-slide-2 .service-item {
    height: 120px;
    position: absolute;
    font-size: 0;
    line-height: 0;
    white-space: nowrap
}

.service-slide-2 .service-item:before {
    content: "";
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle
}

.service-slide-2 .service-item:after {
    content: "";
    display: block;
    position: absolute;
    left: -60px;
    bottom: 0;
    height: 2px;
    background: #eb1429
}

.service-slide-2 .service-item span {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    position: relative;
    color: #26262a;
    font: 700 16px/24px 'ralewayc2'
}

.service-slide-2 .service-item span:before {
    content: "";
    display: block;
    width: 30px;
    height: 40px;
    position: absolute;
    left: -60px;
    top: 50%;
    margin-top: -20px;
    background-position: 50% 100%;
    background-repeat: no-repeat
}

.service-slide-2 .service-item sup {
    font-weight: 800
}

.service-slide-2 .service-item-1 {
    left: 49%;
    top: 30%
}

.service-slide-2 .service-item-1:after {
    width: 200px
}

.service-slide-2 .service-item-1 span:before {
    background-image: url(sprite2.png);
    background-position: 0 -192px;
    width: 30px;
    height: 41px
}

.service-slide-2 .service-item-2 {
    left: 85%;
    top: 30%
}

.service-slide-2 .service-item-2:after {
    width: 235px
}

.service-slide-2 .service-item-2 span:before {
    background-image: url(sprite2.png);
    background-position: -120px -192px;
    width: 30px;
    height: 40px
}

.service-slide-2 .service-item-3 {
    left: 5%;
    top: 64%
}

.service-slide-2 .service-item-3:after {
    width: 200px
}

.service-slide-2 .service-item-3 span:before {
    background-image: url(sprite2.png);
    background-position: -160px -192px;
    width: 30px;
    height: 40px
}

.service-slide-2 .service-item-4 {
    left: 38%;
    top: 64%
}

.service-slide-2 .service-item-4:after {
    width: 200px
}

.service-slide-2 .service-item-4 span:before {
    background-image: url(sprite2.png);
    background-position: -200px -192px;
    width: 30px;
    height: 40px
}

.service-slide-2 .service-item-5 {
    left: 73%;
    top: 64%
}

.service-slide-2 .service-item-5:after {
    width: 370px
}

.service-slide-2 .service-item-5 span:before {
    background-image: url(sprite2.png);
    background-position: -80px -192px;
    width: 30px;
    height: 40px
}

.service-slide-3 {
    background: url(../img/service/slide-3.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 8
}

.service-slide-3 .adv-main-info {
    position: absolute;
    left: 0;
    top: 20.3%
}

.service-slide-3 h2 {
    font: 700 50px/60px 'ralewayc2';
    margin: 0 0 36px 0;
    color: #fff
}

.service-slide-3 h2 p {
    margin: 0
}

.service-slide-3 .exp-description {
    font: 300 20px/30px 'ralewayc2';
    color: #fff;
    width: 55%
}

.service-slide-3 .exp-description p {
    margin: 0
}

.service-slide-3 .advantages-list {
    position: absolute;
    left: 0;
    top: 71%;
    width: 100%;
    text-align: justify
}

.service-slide-3 .advantages-list:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0
}

.service-slide-3 .advantages-list-item {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    text-align: left;
    position: relative
}

.service-slide-3 .advantages-list-item em {
    display: block;
    width: 100%;
    height: 2px;
    background: #eb1429;
    position: absolute;
    left: 0;
    top: 66px
}

.service-slide-3 .advantages-list-item strong {
    display: block;
    font: 700 16px/24px 'ralewayc2';
    color: #4b4b50;
    margin-bottom: 38px
}

.service-slide-3 .advantages-list-item span {
    display: block;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #848489
}

.service-slide-3 .advantages-list-item p {
    margin: 0
}

.service-slide-4 {
    background: url(../img/service/slide-4.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 7
}

.service-slide-4 .served-main-info {
    position: absolute;
    left: 0;
    margin-left: 42px;
    bottom: 55%
}

.service-slide-4 h2 {
    font: 700 50px/60px 'ralewayc2';
    margin: 0 0 37px 0;
    color: #4b4b50
}

.service-slide-4 h2 span {
    display: inline-block;
    position: relative
}

.service-slide-4 h2 span p {
    padding: 0;
    margin: 0
}

.service-slide-4 h2 span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: #eb1429
}

.service-slide-4 .exp-description {
    font: 300 20px/30px 'ralewayc2';
    color: #4b4b50
}

.service-slide-4 .service-slider {
    position: absolute;
    top: 60%;
    width: 96%;
    left: 2%
}

.service-slide-4 .service-slider .person-slider {
    left: 58px;
    right: 58px;
    bottom: -20%
}

.service-slide-4 .service-slider-box-item {
    display: block;
    width: 90%;
    position: relative;
    margin: 0 auto
}

.service-slide-4 .service-slider-box-item:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: #000;
    opacity: .3
}

.service-slide-4 .service-slider-box-item-obj {
    display: block;
    width: 100%
}

.service-slide-4 .service-slider-box-item span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
    text-align: center;
    z-index: 2
}

.service-slide-4 .service-slider-box-item span:before {
    content: "";
    display: inline-block;
    height: 100%;
    width: 0;
    vertical-align: middle
}

.service-slide-4 .service-slider-box-item-logo {
    display: inline-block;
    vertical-align: middle
}

.service-slide-4 .service-slider-box-prev {
    width: 35px;
    display: block;
    position: absolute;
    left: -35px;
    top: 0;
    height: 100%;
    cursor: pointer;
    background: rgba(133,133,138,0.4);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.service-slide-4 .service-slider-box-prev:hover {
    background: rgba(133,133,138,0.25)
}

.service-slide-4 .service-slider-box-prev:active {
    background: rgba(133,133,138,0.55)
}

.service-slide-4 .service-slider-box-prev:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -190px;
    width: 12px;
    height: 20px
}

.service-slide-4 .service-slider-box-next {
    width: 35px;
    display: block;
    position: absolute;
    right: -35px;
    top: 0;
    height: 100%;
    cursor: pointer;
    background: rgba(133,133,138,0.4);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.service-slide-4 .service-slider-box-next:hover {
    background: rgba(133,133,138,0.25)
}

.service-slide-4 .service-slider-box-next:active {
    background: rgba(133,133,138,0.55)
}

.service-slide-4 .service-slider-box-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url(sprite2.png);
    background-position: -266px -160px;
    width: 12px;
    height: 20px
}

.service-slide-5 {
    background: url(../img/service/slide-5.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 6
}

.service-slide-5 .contacts-main-info {
    position: absolute;
    left: 0;
    top: 32%
}

.service-slide-5 .contacts-main-info p a {
    color: #fff
}

.service-slide-5 h2 {
    font: 700 50px/60px 'ralewayc2';
    margin: 0 0 37px 0;
    color: #fff;
    position: relative
}

.service-slide-5 h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 236px;
    height: 3px;
    background: #eb1429
}

.service-slide-5 h2 p {
    margin: 0
}

.service-slide-5 .exp-description {
    font: 300 20px/30px 'ralewayc2';
    color: #fff
}

.service-slide-5 .exp-description-contact {
    margin: 30px 0
}

@media screen and (min-height: 1100px) {
    .service-slide .exp-main-info {
        top:27%
    }
}

@media screen and (min-height: 1500px) {
    .service-slide .exp-main-info {
        top:35%
    }
}

@media screen and (min-width: 1500px) and (min-height:768px) {
    .service-slide-container {
        left:10%;
        right: 10%;
        margin: auto;
        width: auto;
        height: 100%
    }

    .service-slide-1 h2 {
        font-size: 60px;
        line-height: 75px
    }

    .service-slide-1 .exp-description {
        font-size: 25px;
        line-height: 35px
    }

    .service-slide-1 .exp-stat-item strong {
        font-size: 50px;
        line-height: 56px;
        margin-bottom: 7px
    }

    .service-slide-1 .exp-stat-item strong sup {
        font-size: 32px
    }

    .service-slide-1 .exp-stat-item span {
        font-size: 18px;
        line-height: 25px
    }

    .service-slide-2 h2,.service-slide-3 h2,.service-slide-4 h2,.service-slide-5 h2 {
        font-size: 60px;
        line-height: 70px
    }

    .service-slide-2 .exp-description,.service-slide-3 .exp-description,.service-slide-4 .exp-description,.service-slide-5 .exp-description {
        font-size: 25px;
        line-height: 35px
    }

    .service-slide-5 h2:after {
        width: 281px
    }
}

@media screen and (min-width: 1800px) and (min-height:1024px) {
    .service-slide-1 h2 {
        font-size:70px;
        line-height: 85px
    }

    .service-slide-1 .exp-description {
        font-size: 30px;
        line-height: 40px
    }

    .service-slide-2 h2,.service-slide-3 h2,.service-slide-4 h2,.service-slide-5 h2 {
        font-size: 70px;
        line-height: 80px
    }

    .service-slide-2 .exp-description,.service-slide-3 .exp-description,.service-slide-4 .exp-description,.service-slide-5 .exp-description {
        font-size: 30px;
        line-height: 40px
    }

    .service-slide-3 .advantages-list-item em {
        top: 74px
    }

    .service-slide-3 .advantages-list-item strong {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 38px
    }

    .service-slide-3 .advantages-list-item span {
        font-size: 14px;
        line-height: 20px
    }

    .service-slide-5 h2:after {
        width: 327px
    }
}

.services-list .us-content-wrap._editable {
    position: relative;
    min-height: 10px
}

.services-list .us-content-wrap._editable>.us-content-editor-button {
    display: none;
    position: absolute;
    z-index: 1000;
    top: -3px;
    right: 10px
}

.services-list .us-content-wrap._editable:hover>.us-content-editor-button {
    display: block
}

.services-list .us-content-editor-button {
    outline: 0;
    padding: 0;
    margin-bottom: 0;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    background-color: #fff
}

.citi .item {
    width: 24.7%
}

.citi a.infrastructure {
    margin: 40px 0
}

.page-portfolio {
    min-width: 1250px
}

.loading {
    background: url(/img/loading.gif) no-repeat center center rgba(255,255,255,0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 90
}

.portfolio-slides {
    position: absolute;
    width: 100%;
    height: 100%
}

.portfolio-slides .owl-item {
    position: relative
}

.portfolio-slides .owl-controls {
    position: absolute;
    width: 100%;
    bottom: 220px;
    text-align: center
}

.portfolio-slides .owl-controls .owl-page {
    display: inline-block;
    width: 6px;
    height: 6px;
    vertical-align: top;
    border: transparent solid 1px;
    border-radius: 4px;
    background: #4d4d4d;
    margin: 0 7px;
    cursor: pointer
}

.portfolio-slides .owl-controls .owl-page.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.8)
}

.portfolio-slides-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    min-width: 1000px;
    z-index: 5
}

.portfolio-slides-container .owl-wrapper-outer,.portfolio-slides-container .owl-wrapper,.portfolio-slides-container .owl-item {
    height: 100%!important
}

.portfolio-slides-item {
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.portfolio-slides-item-thumbs {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    overflow: hidden;
    z-index: 2
}

.portfolio-slides-item-thumbs-inner {
    display: table;
    height: 100%;
    width: 100%
}

.portfolio-slides-item-thumbs-inner-centred {
    display: table-cell;
    vertical-align: middle;
    text-align: right
}

.portfolio-slides-item-thumbs a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 0;
    right: -15px;
    float: right;
    clear: both;
    margin-bottom: 17px;
    -webkit-transition: right .2s;
    -moz-transition: right .2s;
    -o-transition: right .2s;
    transition: right .2s
}

.portfolio-slides-item-thumbs a._active,.portfolio-slides-item-thumbs a:hover {
    right: 0;
    -webkit-box-shadow: 0 4px 16px rgba(0,0,0,.5);
    -moz-box-shadow: 0 4px 16px rgba(0,0,0,.5);
    box-shadow: 0 4px 16px rgba(0,0,0,.5)
}

.portfolio-slides-item-thumbs a:after {
    float: none;
    display: block;
    height: 1px
}

.portfolio-slides-item-thumbs a img {
    border: 3px solid #fff
}

.portfolio-page {
    position: relative;
    max-width: 1200px;
    min-width: 1000px;
    min-height: 100%;
    margin: 0 auto
}

.portfolio-page h1 {
    position: absolute;
    top: 100px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 60px;
    text-shadow: rgba(0,0,0,0.5) 2px 2px 6px;
    z-index: 10;
    margin: 0
}

.portfolio-page h1:before {
    content: "";
    display: block;
    width: 228px;
    height: 3px;
    background: #eb1429;
    position: absolute;
    left: 0;
    bottom: 8px;
    opacity: .8
}

.portfolio-page-header {
    width: 327px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    box-sizing: content-box;
    z-index: 91;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 11
}

.portfolio-page-header._menu-open {
    width: 1045px
}

.portfolio-page-header._callback-open {
    width: 472px
}

.portfolio-page-header:before {
    content: "";
    display: block;
    position: absolute;
    left: 197px;
    top: 10px;
    width: 0;
    height: 60px;
    border-left: #e9e9ed solid 1px;
    z-index: 1
}

.portfolio-page-header._menu-open:before {
    display: none
}

.portfolio-page-header-logo {
    display: block;
    position: absolute;
    left: 0;
    top: 0
}

.portfolio-page-header-logo img {
    display: block;
    padding-left: 0
}

.portfolio-page .menu-hover {
    bottom: 15px
}

.portfolio-page .menu {
    min-width: 562px
}

.portfolio-page-menu {
    text-align: justify;
    height: 65px;
    border-bottom: 1px solid #98999b;
    margin: 0;
    padding: 0
}

.portfolio-page-menu>* {
    display: inline-block;
    white-space: nowrap
}

.portfolio-page-menu:after {
    content: '';
    display: inline-block;
    width: 100%
}

.portfolio-page-menu-container {
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

._menu-open .portfolio-page-menu-container {
    opacity: 1;
    visibility: visible
}

.portfolio-page-menu li {
    display: inline-block
}

.portfolio-page-menu li a {
    font-weight: 400;
    display: block;
    line-height: 60px;
    height: 65px;
    padding-top: 5px;
    color: rgba(0,0,0,0.8);
    text-transform: uppercase;
    text-decoration: none
}

.portfolio-page-menu-hover {
    position: absolute;
    height: 0;
    background: #eb1429;
    bottom: 16px
}

.portfolio-page-menu-toggler {
    display: block;
    width: 64px;
    height: 100%;
    position: absolute;
    left: 200px;
    z-index: 1;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease
}

.portfolio-page-menu-toggler:before {
    content: "";
    display: block;
    width: 20px;
    height: 17px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -8px;
    position: absolute;
    background: url(../img/sprite.png) -160px -20px no-repeat
}

._menu-open .portfolio-page-menu-toggler {
    opacity: 0;
    visibility: hidden
}

.portfolio-page-callback {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 65px;
    background: #87878b;
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

._callback-open .portfolio-page-callback {
    width: 210px!important
}

.portfolio-page-callback:before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
    position: absolute;
    background: url(../img/sprite.png) -130px -20px no-repeat
}

._callback-open .portfolio-page-callback:before {
    display: none
}

.portfolio-page-callback-block {
    background: #87878b;
    color: #fff;
    font-family: 'ralewayc2';
    padding-right: 38px;
    padding-top: 25px;
    text-align: right;
    vertical-align: top;
    display: inline-block;
    width: 200px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0
}

._callback-open .portfolio-page-callback-block {
    opacity: 1;
    visibility: visible
}

.portfolio-page-callback-block .phone-num {
    display: inline
}

.portfolio-page-callback-block a {
    color: #ccc;
    display: inline-block;
    font-family: 'ralewayc2';
    font-size: 12px;
    font-weight: 400;
    margin-right: 6px;
    padding-top: 9px
}

.portfolio-page-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 25px 70px;
    background: rgba(0,0,0,0.5);
    z-index: 90;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}

.portfolio-page-footer.disable {
    opacity: .9
}

.portfolio-page-footer.disable:after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 70px;
    background: rgba(0,0,0,0.2);
    z-index: 16
}

.portfolio-page-footer-inner {
    display: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none
}

.portfolio-page-footer-wrapper {
    display: table;
    width: 100%;
    table-layout: fixed
}

.portfolio-page-footer-bottom {
    clear: both;
    padding-top: 20px;
    height: 63px
}

.portfolio-page-footer-prev,.portfolio-page-footer-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background: no-repeat 50%;
    cursor: pointer;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.portfolio-page-footer-prev:hover,.portfolio-page-footer-next:hover {
    background-color: rgba(132,132,137,0.4)
}

.portfolio-page-footer-prev:active,.portfolio-page-footer-next:active {
    background-color: rgba(132,132,137,0.5)
}

.portfolio-page-footer-prev {
    left: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAWCAMAAADD5o0oAAAAQlBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////8IX9KGAAAAFXRSTlMA+P5bd+vjyK9NNywcFArSpIgF1HhVJ44KAAAAYUlEQVQY02XQRw7AIAwEwITeSdv/fzVIm+ADnAbJsr3e5jNGrJXSv+MOhM9p2Dc6W+CudHGAK3TtgM1088Ce6CsMR3o7gDnhBPCQ/BhSytYG0nodKuvIor3SEmEJJ7HlIC8dfAWPbOKX/QAAAABJRU5ErkJggg==')
}

.portfolio-page-footer-next {
    right: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAWCAMAAADD5o0oAAAAP1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////9Du/pqAAAAFHRSTlMA+Fvr49PIqDcsHBQKeHayiE5MBqRsX/0AAABfSURBVBjTZc9JDsAgDANA9h1aqP//1nJJUlROjBQltlJjKH4GMIwI6EVoYSuRqgdsJhUHuELKFvCVlDQQGmluXc/nGiJB9a2bMBjn2OIFslqO/uJIUKkg5eZRW4J0/r4uPgWsMlXwCAAAAABJRU5ErkJggg==')
}

.portfolio-page-footer-logo {
    display: table-cell;
    vertical-align: middle;
    width: 360px;
    padding-right: 1px
}

.portfolio-page-footer-logo img {
    display: block;
    max-width: 100%
}

.portfolio-page-footer-description {
    display: table-cell;
    vertical-align: top;
    width: 480px;
    position: relative;
    padding-bottom: 40px;
    font-size: 13px;
    line-height: 20px;
    color: #fff
}

.portfolio-page-footer-buttons {
    display: table-cell;
    vertical-align: middle;
    width: 210px;
    padding-left: 50px
}

.portfolio-page-footer-buttons-about,.portfolio-page-footer-buttons-all {
    display: block;
    line-height: 21px;
    padding: 22px 10px;
    text-align: center;
    color: #fff;
    text-decoration: underline;
    font-family: 'ralewayc2';
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600
}

.portfolio-page-footer-buttons-about {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    background: rgba(235,20,41,0.8)
}

.portfolio-page-footer-buttons-about:hover {
    background: #eb1429;
    text-decoration: none
}

.portfolio-page-footer-buttons-about:active {
    background: rgba(235,20,41,0.8);
    text-decoration: none
}

.portfolio-page-footer-buttons-all {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    margin-top: 22px;
    background: rgba(132,132,137,0.6)
}

.portfolio-page-footer-buttons-all:hover {
    background: rgba(235,20,41,0.8);
    text-decoration: none
}

.portfolio-page-footer-buttons-all:active {
    background: rgba(235,20,41,0.6);
    text-decoration: none
}

.portfolio-page-footer-address {
    position: absolute;
    bottom: 0;
    left: 0
}

.portfolio-ico {
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    position: relative;
    margin-left: 25px
}

.portfolio-ico:first-child {
    margin-left: 0
}

.portfolio-ico-address {
    padding-left: 23px
}

.portfolio-ico-address:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 1px;
    width: 14px;
    height: 18px;
    background: url(../img/sprite.png) -100px 0 no-repeat
}

.portfolio-ico-web {
    padding-left: 25px
}

.portfolio-ico-web:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    background: url(../img/sprite.png) -120px 0 no-repeat
}

.portfolio-ico-web:hover {
    color: #dfe0e0;
    text-decoration: none
}

.portfolio-ico-web:active {
    color: #ad2532;
    text-decoration: none
}

.primary {
    position: relative
}

.primary-btn {
    top: 350px;
    position: absolute;
    cursor: pointer
}

.left-btn {
    top: 350px;
    position: absolute;
    cursor: pointer;
    left: 0
}

.right-btn {
    top: 350px;
    position: absolute;
    cursor: pointer;
    right: 0
}

.top-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1216px
}

.top-menu .dashes {
    padding: 32px 20px 31px;
    background: #fff
}

.top-menu .phone {
    padding: 30px 20px 29px;
    background: #848489
}

.top-menu h2 {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    margin-top: 29px;
    margin-left: 30px
}

.bottom-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 1216px;
    height: 186px;
    background: rgba(0,0,0,0.8);
    margin: 0 auto;
    color: #fff;
    vertical-align: top
}

.bottom-menu .bottom-part {
    margin-top: 30px
}

.bottom-menu .logo {
    width: 220px;
    margin-top: 35px;
    margin-left: 35px;
    display: inline-block
}

.bottom-menu p {
    width: 950px;
    padding: 0 60px;
    display: inline-block;
    font-size: 13px;
    line-height: 15px
}

.bottom-menu .btn-red {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    background: #eb142a;
    font-family: ralewayc2;
    font-size: 13px;
    font-weight: bold;
    margin-left: 35px;
    vertical-align: top
}

.bottom-menu .btn-gray {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    background: #848489;
    font-family: ralewayc2;
    font-size: 13px;
    font-weight: bold;
    vertical-align: top
}

.bottom-menu .line {
    display: inline-block;
    vertical-align: top;
    padding-right: 145px;
    border-top: 1px solid rgba(128,128,128,0.3);
    margin: 0 10px;
    padding-top: 10px
}

.bottom-menu .line.text-line {
    padding-right: 60px
}

.bottom-menu .small {
    display: inline-block;
    margin-right: 5px
}

.fake-background {
    display: none;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: absolute
}

.vacancy {
    margin-top: 110px
}

.vacancy .body {
    display: none;
    padding-top: 21px;
    padding-left: 75px;
    padding-bottom: 40px
}

.vacancy .body b,.vacancy .body strong,.vacancy .body h4 {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase
}

.vacancy .aside h4 {
    font-size: 15px;
    line-height: 50px;
    margin: 0;
    color: #424242;
    text-transform: uppercase
}

.vacancy .aside p {
    margin-top: 3px;
    color: #666;
    font-faimly: Tahoma;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px
}

.vacancy .aside a {
    color: #cb3647;
    display: inline-block;
    font-size: 14px;
    line-height: 30px
}

.vacancy .aside [href$=".pdf"] {
    position: relative;
    display: table
}

.vacancy .aside [href$=".pdf"]:after {
    content: 'pdf';
    position: absolute;
    right: -26px;
    margin-left: 5px;
    color: #808080;
    text-decoration: none
}

.vacancy .aside [href$=".doc"] {
    position: relative;
    display: table
}

.vacancy .aside [href$=".doc"]:after {
    content: 'doc';
    position: absolute;
    margin-left: 5px;
    color: #808080;
    text-decoration: none
}

.vacancy .col {
    display: inline-block;
    vertical-align: top
}

.vacancy .col hr {
    height: 2px;
    color: #666
}

.vacancy .col hr.small {
    height: 1px
}

.vacancy .col:first-of-type {
    width: 73%
}

.vacancy .col:last-of-type {
    width: 23%;
    margin-left: 3%
}

.vacancy ._opened .body {
    display: block
}

.vacancy ._opened h3 {
    border-bottom: 1px solid #ccc;
    line-height: 40px
}

.vacancy ._opened h3:after {
    content: url(../img/content/vacancy/arrUp.png)
}

.vacancy .item {
    padding: 0 23px 0 40px;
    margin-bottom: 10px
}

.vacancy .item:last-of-type {
    margin-bottom: 50px
}

.vacancy h2 {
    font-size: 50px
}

.vacancy h3 {
    margin: 0;
    color: #eb1429;
    font-size: 30px;
    line-height: 40px;
    padding: 28px 0;
    font-family: 'ralewayc2';
    position: relative;
    cursor: pointer
}

.vacancy h3:after {
    content: url(../img/content/vacancy/arrDown.png);
    position: absolute;
    right: 0;
    top: 24px
}

.vacancy .vacancy-list {
    padding-left: 13px
}

.vacancy .vacancy-list h4 {
    font-size: 15px;
    text-transform: uppercase
}

.vacancy .vacancy-list .vacancy-list-item {
    list-style: none;
    color: #4c4c4c;
    font-size: 15px;
    line-height: 23px;
    padding-left: 17px;
    position: relative;
    padding-bottom: 10px
}

.vacancy .vacancy-list .vacancy-list-item:before {
    position: absolute;
    left: 0;
    content: '–';
    color: #eb1429
}

.map-contacts {
    margin-top: -50px;
    height: 700px;
    min-width: 1000px
}

.contacts {
    margin-top: 25px;
    z-index: 1
}

.contacts .white {
    padding: 30px 50px 50px;
    margin-top: -7px
}

.contacts h2 {
    display: inline-block
}

.contacts .btn-gray {
    font-family: ralewayc2;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    background: #848489;
    color: white;
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 14px;
    line-height: 20px;
    padding-left: 17px;
    padding-right: 17px;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.contacts .btn-gray:hover {
    background: #565758
}

.contacts .phone-i {
    color: #000;
    font-weight: bold;
    font-family: 'ralewayc2';
    font-size: 18px;
    margin: 8px 0;
    text-decoration: none
}

.contacts .mail-i {
    display: table
}

.contacts p {
    font-size: 14px;
    line-height: 15px
}

.contacts .salers {
    border: 3px solid rgba(102,102,102,0.2);
    padding: 28px 25px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 28px;
    min-height: 151px
}

.contacts .salers h3 {
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
    position: absolute;
    top: -9px;
    background: #fff;
    padding: 0 7px;
    margin-left: -7px
}

.contacts .salers .mail-i {
    margin-top: 17px
}

.contacts .col {
    overflow: hidden;
    vertical-align: top
}

.contacts .col.col-min {
    width: 45%;
    margin: 16px 0
}

.contacts .col.col-mail {
    padding: 10px 0 0 0
}

.contacts .col.col-mail a {
    margin: 0;
    line-height: 18px;
    padding: 0
}

.contacts .col.col-mail a :first-child {
    margin-bottom: 22px
}

.contacts .col:first-child {
    width: 45%;
    margin-right: 7%;
    margin-right: 75px
}

.contacts .col.right-p {
    margin-top: 7px
}

.contacts .col>img {
    width: 100%;
    margin-top: 30px
}

.contacts .col>h3 {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px
}

.contacts .col>h3:after {
    content: "";
    position: absolute;
    height: 0;
    border-top: 3px solid rgba(102,102,102,0.2);
    top: 8px;
    width: 600px;
    margin-left: 5px
}

.contacts .col .point {
    color: #000;
    padding: 6px 0 0 30px;
    position: relative;
    text-decoration: none
}

.contacts .col .point:before {
    position: absolute;
    left: 0;
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAASCAMAAABcgh8DAAAAP1BMVEUAAACZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmVMmLXAAAAFHRSTlMA8AqyUflB0ZGEFL+KeybnyF8BP4ME4YYAAAB4SURBVBjTXc5XDsMwDANQSo7seMQZ5f3PWkddqN8fAYEihpKTWcoFbhE6WTyRIarGQI5chBvcRinIDNBVZFUEZiRGrBwaIhOMCvEmKOU/2nQ8Vc2PfEYHus94jaxAvUe6bowPWsdbY61s+NCd3BVfJ3ni5zqOC7cnCyUHOo+1Bp0AAAAASUVORK5CYII=')
}

.contacts .col .how .auto-i,.contacts .col .how .metro-i,.contacts .col .how .electro-i,.contacts .col .how .troll-i,.contacts .col .how .train-i,.contacts .col .how .bus-i {
    margin-left: 0;
    color: #989898;
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px
}

.contacts .col .how .auto-i:before,.contacts .col .how .metro-i:before,.contacts .col .how .electro-i:before,.contacts .col .how .troll-i:before,.contacts .col .how .train-i:before,.contacts .col .how .bus-i:before {
    top: 3px
}

.contacts .col .how .auto-i .auto-i,.contacts .col .how .metro-i .auto-i,.contacts .col .how .electro-i .auto-i,.contacts .col .how .troll-i .auto-i,.contacts .col .how .train-i .auto-i,.contacts .col .how .bus-i .auto-i {
    margin-top: 18px
}

.contacts .col .how p {
    font-family: Tahoma;
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 0 30px
}

.page-index .contacts.wrap {
    margin-top: 125px!important
}

.news-article,.news-list {
    padding-top: 105px
}

.all-news {
    text-align: right
}

.all-news-bottom {
    position: relative!important;
    top: auto!important;
    text-align: left;
    margin: 40px auto 60px;
    padding: 40px 0 68px;
    border-top: 1px solid #aaa9ac
}

.all-news-bottom a {
    color: #000!important
}

.all-news-link {
    color: #26262a;
    display: inline-block;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    padding-right: 15px;
    background: no-repeat 100% 50%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPBAMAAAAv0UM9AAAAG1BMVEUAAADZISfZISfZISfZISfZISfZISfZISfZISfZy4cIAAAACXRSTlMA/gKggPRXPCpuXyRgAAAAKklEQVQI12NgUmAAAmUjENkqDOKwB4I5pbg4bIIOQDJRBBuzEcRkYAExAUA3Bub7sdkTAAAAAElFTkSuQmCC')
}

.news-article-content {
    padding: 0 100px 50px
}

.news-article-metadata {
    position: relative;
    font: 12px/20px Tahoma,Arial,sans-serif;
    color: #919193
}

.news-article-metadata img {
    display: inline-block;
    vertical-align: top;
    height: 20px
}

.news-article-metadata>span {
    display: inline-block;
    vertical-align: top;
    height: 20px
}

.news-article-metadata>span.news-article-date {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #919193
}

.news-article-metadata .news-list-filter {
    position: absolute;
    margin: -8px 0 0;
    top: 0;
    right: 0;
    font-size: 14px
}

.news-article-metadata .news-list-filter>li {
    cursor: default
}

.news-article-text {
    margin-top: 35px;
    overflow: hidden;
    font: 15px/23px Tahoma,Arial,sans-serif
}

.news-article-text .news-article-image {
    float: right;
    margin-left: 40px;
    margin-bottom: 40px
}

.news-article-text .wysiwyg-block img {
    max-width: 100%;
    max-height: 1000px
}

.news-article-footer {
    border-top: 1px solid #a8a8aa;
    padding: 40px 0
}

.news-article-footer .social-links {
    float: right;
    margin: -4px
}

.news-list-years {
    margin-top: 40px;
    margin-bottom: 60px
}

.news-list-filter {
    font-family: 'ralewayc2';
    float: right;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
    overflow: hidden
}

.news-list-filter>li {
    cursor: pointer;
    float: left;
    margin: 0 5px;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    background: #ababae
}

.news-list-filter>li:first-child {
    margin-left: -15px
}

.news-list-filter>li:last-child {
    margin-right: -15px
}

.news-list-filter>li._active,.news-list-filter>li._active:hover {
    background: #eb1429
}

.news-list-filter>li:hover {
    background: #c9c9cc
}

.news-list-filter>li:active {
    background: #bebec1
}

.news-list-filter>li span {
    display: block;
    padding: 7px 40px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.news-panel-header:before,.news-panel-header:after {
    content: " ";
    display: table
}

.news-panel-header:after {
    clear: both
}

.news-panel-header:before,.news-panel-header:after {
    content: " ";
    display: table
}

.news-panel-header:after {
    clear: both
}

.news-list-year-heading {
    font-family: 'ralewayc2';
    font-size: 18px;
    color: #424242;
    height: 50px;
    line-height: 50px;
    width: 170px;
    padding-left: 20px;
    float: left;
    margin-right: 30px;
    border-top: 2px solid #d0d0d3
}

.news-list-year-toggle-panel {
    overflow: hidden;
    height: 52px;
    padding-top: 17px;
    line-height: 52px;
    text-align: right;
    font: 12px Tahoma,Arial,sans-serif;
    border-top: 2px solid #d0d0d3
}

.news-list-year-toggle-panel a {
    margin-right: 20px;
    display: inline-block;
    text-decoration: none;
    padding-right: 25px;
    color: #000;
    background: no-repeat 100% 50%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAHCAMAAAALbFwWAAAARVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADc6ur3AAAAF3RSTlMAswOrgm4bDqWXhxQIn416eWJUNy0lIyGQULQAAABCSURBVAjXHYpHDgAhEMMSmELbXv7/VMT4EkcyXB2BNYOw9uV/oaBXbga8mW0AvrN8T+aRVjCEmdSEIJ3kFRZP79gJSa0BckV3ePMAAAAASUVORK5CYII=')
}

.news-list-year-toggle-panel a span {
    border-bottom: 1px dashed #000
}

.news-list-year-toggle-panel a span:before {
    content: 'развернуть'
}

.news-list-year-toggle-panel a:hover {
    color: #a3a3a3
}

.news-list-year-toggle-panel a:hover span {
    border: 0
}

.news-list-year-toggle-panel a:hover {
    color: #343434
}

.news-list-year-toggle-panel a:hover span {
    border: 0
}

.news-panel._opened .news-list-year-toggle-panel {
    border-bottom: 1px solid #bababc
}

.news-panel._opened .news-list-year-toggle-panel a {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAHCAMAAAALbFwWAAAAQlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACO4fbyAAAAFnRSTlMAs4MGphwOrJdsJBSfjIl6d3BiVDcuza4VAgAAAEBJREFUCNc9x1cOwDAIBNFdbHBLL/e/ahCK/L5mEO6G6SKP9HcjCyUu7SxPz1zNW5hfQBfWAe8ONyoFuimCnfYBNMIBTF2Uk+QAAAAASUVORK5CYII=')
}

.news-panel._opened .news-list-year-toggle-panel a span:before {
    content: 'свернуть'
}

.news-panel {
    overflow: hidden;
    position: relative;
    width: 100%
}

.news-panel._opened .news-list-year-heading,.news-panel._opened .news-list-year-toggle-panel {
    border-top: 2px solid #a2a2a4
}

.news-panel._opened+.news-panel .news-list-year-heading,.news-panel._opened+.news-panel .news-list-year-toggle-panel {
    border-top: 2px solid #a2a2a4
}

.news-panel._opened:last-child:before,.news-panel._opened:last-child:after {
    border-bottom: 2px solid #a2a2a4
}

.news-panel._opened .news-panel-collapse {
    display: block;
    height: auto
}

.news-panel:last-child:before,.news-panel:last-child:after {
    content: "";
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #d0d0d3
}

.news-panel:last-child:before {
    width: 170px;
    left: 0
}

.news-panel:last-child:after {
    width: 100%;
    left: 200px
}

.news-item {
    margin: 50px 0
}

.news-item:hover .news-item-heading a {
    border-bottom: 1px solid #ca1b2d
}

.news-item:hover .news-item-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1)
}

.news-item-img {
    float: left;
    width: 170px;
    height: 100px;
    margin-right: 30px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.news-item-img:active:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1)
}

.news-panel-collapse {
    overflow: hidden;
    display: none
}

.news-item-body {
    overflow: hidden
}

.news-item-text {
    margin-top: 15px;
    font: 15px/23px Tahoma,Arial,sans-serif
}

.news-item-heading {
    font-size: 24px;
    margin: 0 0 15px
}

.news-item-heading a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.news-item-heading a:hover {
    border-bottom: 1px solid #ca1b2d
}

.news-item-heading a p {
    padding: 0;
    margin: 0
}

.news-item-heading a:active {
    color: #af1828
}

.article-list {
    padding-bottom: 30px
}

.article-list .items {
    margin: 0 -1.5%
}

.article-list .items:before,.article-list .items:after {
    content: " ";
    display: table
}

.article-list .items:after {
    clear: both
}

.article-list .items:before,.article-list .items:after {
    content: " ";
    display: table
}

.article-list .items:after {
    clear: both
}

.article-list .item {
    position: relative;
    margin-bottom: 40px;
    float: left;
    width: 30.33333%;
    margin-left: 1.5%;
    margin-right: 1.5%
}

.article-list .item .news-img {
    overflow: hidden;
    height: 188px
}

.article-list .item .news-img img {
    min-width: 100%;
    min-height: 188px;
    display: block
}

.article-list .item .news-date {
    padding: 23px 28px 0;
    font-size: 11px;
    line-height: 24px;
    color: #939295;
    position: absolute;
    bottom: 10px;
    font-family: Tahoma
}

.article-list .item .news-text-wrap {
    padding: 1px 0
}

.article-list .item .news-text-wrap a {
    cursor: pointer;
    display: block;
    text-decoration: none;
    padding: 0 28px;
    color: #d32e2e;
    font-weight: 700;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 20px
}

.article-list .item .news-text-wrap .us-content-wrap {
    padding: 0 28px 30px;
    color: #4c4c4c
}

.article-list .item .news-text-wrap .us-content-wrap h1 {
    line-height: 28px
}

.article-list .item .news-text-wrap .us-content-wrap p {
    line-height: 19px
}

.article-list .item .news-sourse {
    position: absolute;
    bottom: 18px;
    right: 18px
}

.article-list .item:hover .news-text-wrap a span {
    text-decoration: underline
}

.article-list .item:active .news-text-wrap a span {
    color: #af1828;
    text-decoration: none
}

.news-article .articleImage {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 680px;
    overflow: hidden;
    margin-top: -105px
}

.news-article .articleImage img {
    min-width: 100%;
    min-height: 100%
}

.news-article .articleImage:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 1%,rgba(0,0,0,0) 14%,rgba(0,0,0,0.5) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(1%,rgba(0,0,0,0)),color-stop(14%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0.5)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 1%,rgba(0,0,0,0) 14%,rgba(0,0,0,0.5) 100%);
    background: -o-linear-gradient(top,rgba(0,0,0,0) 1%,rgba(0,0,0,0) 14%,rgba(0,0,0,0.5) 100%);
    background: -ms-linear-gradient(top,rgba(0,0,0,0) 1%,rgba(0,0,0,0) 14%,rgba(0,0,0,0.5) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 1%,rgba(0,0,0,0) 14%,rgba(0,0,0,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=0)
}

.news-article .articleHeading {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    color: white;
    z-index: 1;
    position: absolute;
    text-align: center;
    padding: 0 130px;
    top: 35%;
    left: 0;
    right: 0
}

.news-article .all-news-link {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.news-article .all-news-link:hover {
    color: #7f7f83;
    text-decoration: none
}

.news-article .all-news-link:active {
    color: #424247
}

.news-article .home {
    left: 0;
    right: 0;
    position: absolute;
    top: 90px;
    width: 100%!important;
    margin: 0 auto;
    z-index: 10
}

.news-article .home a {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    color: #fff
}

.news-article .home a:hover {
    color: #7f7f83;
    text-decoration: none
}

.news-article .home a:active {
    color: #424247
}

.news-article .article-text {
    color: #4d4d4d;
    margin-top: 55px
}

.news-article .article-text .wysiwyg-block>p,.news-article .article-text .wysiwyg-block>h1,.news-article .article-text .wysiwyg-block>h2,.news-article .article-text .wysiwyg-block>h3,.news-article .article-text .wysiwyg-block>h4,.news-article .article-text .wysiwyg-block>ul {
    padding: 0 100px
}

.news-article .article-text ul li {
    list-style: none;
    color: #4c4c4c;
    font-size: 15px;
    line-height: 23px;
    padding-left: 17px;
    position: relative;
    padding-bottom: 10px
}

.news-article .article-text ul li:before {
    position: absolute;
    left: 0;
    content: '–';
    color: #eb1429
}

.news-article .article-text .col-left1 {
    width: 15%;
    display: inline-block;
    text-align: right;
    vertical-align: top;
    padding-top: 140px;
    padding-left: 13px;
    font-size: 14px;
    color: #808080;
    position: relative
}

.news-article .article-text .col-left1 h1,.news-article .article-text .col-left1 h2,.news-article .article-text .col-left1 h3,.news-article .article-text .col-left1 h4 {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    margin: 15px 0 0 0;
    text-transform: uppercase
}

.news-article .article-text .col-left1:before {
    content: '';
    position: absolute;
    top: 42px;
    left: 95px;
    background-image: url(sprite2.png);
    background-position: -138px -124px;
    width: 63px;
    height: 45px
}

.news-article .article-text .col-left2 {
    width: 15%;
    display: inline-block
}

.news-article .article-text .col-left2 img {
    max-width: 145px;
    display: block;
    margin-top: 40px;
    margin: 40px auto
}

.news-article .article-text .col-right {
    width: 67%;
    display: inline-block;
    padding: 15px 20% 19px 46px;
    line-height: 24px;
    font-size: 14px;
    color: #000
}

.news-article .article-text .autor {
    border-top: 1px solid #eb1429;
    border-bottom: solid 1px #eb1429;
    margin-bottom: 50px;
    min-height: 255px
}

.news-article .article-text .autor:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 10px;
    display: block;
    background: #eb1429
}

.error-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/404.jpg') no-repeat 50%;
    background-size: cover
}

.error-404 {
    position: absolute;
    top: 50%;
    margin-top: -70px;
    left: 0;
    right: 0;
    text-align: center
}

.error-text-404 {
    display: inline-block;
    padding-left: 145px;
    min-height: 143px;
    background: no-repeat 0 50% url('../img/404.png');
    text-align: left
}

.error-text-404 h1 {
    color: #4e4e4e;
    font-size: 41px;
    margin-top: 0
}

.error-text-404 p {
    font-size: 13px;
    text-transform: uppercase;
    color: #4e4e4e
}

.error-text-404 a {
    color: #eb1429
}

.error-text-404 a:hover {
    text-decoration: none
}

.callmail-modal-wrapper {
    margin-top: 50px;
    width: 610px
}

.callmail-modal-wrapper .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    border: 10px solid #f6f6f7;
    padding: 37px 40px 25px
}

.callmail-heading {
    font-family: 'ralewayc2';
    font-size: 43px;
    margin: 0 0 15px;
    line-height: 1;
    color: #404046
}

.callmail-text {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 35px
}

.callmail-row {
    margin-bottom: 20px
}

.callmail-row:before,.callmail-row:after {
    content: " ";
    display: table
}

.callmail-row:after {
    clear: both
}

.callmail-row:before,.callmail-row:after {
    content: " ";
    display: table
}

.callmail-row:after {
    clear: both
}

.callmail-phone,.callmail-time {
    float: left
}

.callmail-phone {
    width: 260px;
    margin-right: 15px
}

.callmail-time {
    width: 174px;
    border: 2px solid #85858a;
    border-radius: 4px
}

.callmail-time .callmail-input {
    width: 50%;
    float: left
}

.callmail-time .callmail-input div:first-child a {
    border-radius: 4px 0 0 4px;
    border-width: 0 1px 0 0
}

.callmail-time .callmail-input div a:last-child {
    border-radius: 0 4px 4px 0;
    border-width: 0
}

.callmail-input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 8px;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 2px solid #85858a;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold
}

.callmail-input:focus {
    outline: 0;
    background: #f6f6f7
}

.callmail-input.error {
    border-color: #eb1429
}

.callmail-input.placeholder {
    color: #999
}

.select2-container-active a {
    outline: 0;
    background: #f6f6f7!important
}

.select2-container-active a span {
    color: #000!important
}

.search-form-fields .select2-container-active a,.search-form-collapsed-fields .select2-container-active a {
    outline: 0;
    background: none!important
}

.search-form-fields .select2-container-active a span,.search-form-collapsed-fields .select2-container-active a span {
    color: #fff!important
}

.callmail-textarea {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 8px;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 2px solid #85858a;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    height: 125px;
    resize: none;
    overflow: auto
}

.callmail-textarea:focus {
    outline: 0;
    background: #f6f6f7
}

.callmail-textarea.error {
    border-color: #eb1429
}

.callmail-textarea.placeholder {
    color: #999
}

.callmail-action-btn {
    font-family: 'ralewayc2';
    background: #ec142a;
    color: #fff;
    border: 0;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    padding: 24px;
    margin-top: 18px;
    border-radius: 4px;
    outline: 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.callmail-action-btn:hover,.callmail-action-btn:focus {
    background: #f4293e
}

.callmail-action-btn:active {
    background: #c31a2b;
    -webkit-box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
    -moz-box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4)
}

.callmail-action-btn.disable {
    background: #ccc;
    cursor: default!important
}

.callmail-error-inner,.callmail-success-inner {
    padding-left: 98px;
    color: #49494e
}

.callmail-error-inner .callmail-heading,.callmail-success-inner .callmail-heading {
    font-size: 24px;
    line-height: 3
}

.callmail-success-inner {
    background: no-repeat 0 10px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA+CAYAAABzwahEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABEVJREFUeNrsm81u20YQxwnYSBBfqneokQDtA9SnHNIendziAs6hQAP0JXxInVeI+wLxMa/wJyVT1ZcVVbYcwYYcyXYUCJZBMIQsEBJIantZAio/JJPcpdZCCcxJ3Nn5abk7szuzEgCJo3wH4DmAHQDvARwC6AIYAiBUhgC+0t/e03ef07bcbOOh9HsAbwCUAdhTgFHFpjreUJ1Cgq8A2AbwN4BJAtgwmVDd27SvhYOvAHgN4JwDbJic0z5XFgX+E4BaisBeqVEbUgN/BOAdAGeB0K441JZHvMEfAzgRANgrJ9Q2LuA/AzAEhHblG7WRKfhLAGOBoV0ZU1uZgL9M6I/TFvsu8POgn92TkQ4a+WdxwR8LPqfniTFrwZvlsk7uMfT0ar8WBfyvJYB2Ze+u4E85xduLDHI25oGvLskn7pV/vLG9F/z1EkK78nsY+CqAz0sMfk4ZfeCvRDe+UCgQXddJsViMq2M7CLwsMnQ2myWDwYAQQohlWeT4+DiOnrIX/AfRR7vX6xHvc3FxEUfXj9Pgb0WGPj09JUFPu92Oo+/tNHhFVOjDw0PiOI4PWtO0uDorLnhG1N2XqqpkNBr5oE3TJLlcLsnuLSMB2BQRWpZlouu6D9q2bVKpVJLq35ToAb5w4JeXl4HzutlsstC/IwHYFw260WgEQne7XVZ97Avnv0ulErEsywdtGAZRFIVVP2WJ5q2ECVKGw6EPejwek3w+z7KvrxKAQZzG9XqdGIaRZHX1Sb/f90FPJhNSq9VY/8m3Ulxo17cOBgMm8K1WK3Bet1otLl9XZPCjoyNfQJEUvlarkclk4oPu9/vcDiMjf+pBn6MLf3BwENmIfD5PxuOxT99wOCTZbJYXuBZ5cVMUhdzc3DCBVxSFGIYRGKSUSiWeC+lFLHfGCr7b7QbqaDQavD1IOXYAkxS+2WwGtr26ukrDde4nClkVRYk158vlMrFt29dG13Uiy3Ia4DuJNylR4XO5HDFN0/fuaDQiqqqmFSxtMtmWyrIcCn97e/sfeE3TfO84jkOq1WqaScUMs4OIefCqqpJ2ux34+9nZWZqhcWX6BOZPVnvoMHjTNAODlF6vl/aeYHcafJ1V2mgWfNAawDFICSsbW/ceLxdYnp5cX1/PhLYsixQKhbRHu8A9oTAPvl6vL2Lr+yqVFFKYq+t0OkKlkLgkDb0jr2laWkHKnZOGbolmnQd8p9Mhuq4zPbiIIPV5aWKJJtEdCHjyyrMwwJW9JQJ/F6UGZg1Ac0kqIR5GLfd6sgTlXuv/F/jFKOncuoclnVusinh/vUdFvFtgXLb9i+Bz3qA2cinUfwLgk4DQn6htXK9mrFE/L8rVjL2welVel3E2qJ9cpI/eWNT1q1UAfwD4kiLwF9rnqggX7h4A+A1AkWMBcJH28UDkK5a7AKoMrlhWqS5hr1iGSQbAC2r8BwAfZ1yq/Ujf2aVtMjxt+3cA5yOKjPki9+oAAAAASUVORK5CYII=')
}

.select2-container.callmail-select {
    width: 50%;
    float: left
}

.select2-container.callmail-select-full {
    width: 100%
}

.select2-container.callmail-select.callmail-select-from .select2-choice {
    border-radius: 4px 0 0 4px;
    border-width: 0 1px 0 0
}

.select2-container.callmail-select.callmail-select-to .select2-choice {
    border-radius: 0 4px 4px 0;
    border-width: 0 0 0 1px
}

.select2-container.callmail-select .select2-default {
    color: #bbb
}

.select2-container.callmail-select .select2-choice {
    height: 46px;
    padding: 12px 8px;
    color: #000;
    background-color: transparent;
    background-image: none;
    border: 2px solid #85858a;
    border-radius: 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font: bold 14px/20px Tahoma,Arial,sans-serif
}

.select2-container.callmail-select .select2-choice span {
    margin-right: 0
}

.select2-container.callmail-select .select2-choice div {
    border: 0;
    background: 0;
    top: auto;
    bottom: 2px;
    right: 2px;
    width: 9px;
    height: 9px
}

.select2-container.callmail-select .select2-choice div b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #505050 transparent
}

.select2-container.callmail-select.select2-dropdown-open .select2-default {
    color: #ccc
}

.select2-container.callmail-select.select2-dropdown-open .select2-choice {
    color: #fff;
    background: #85858a
}

.select2-container.callmail-select.select2-dropdown-open .select2-choice div b {
    border-color: transparent transparent #fff transparent
}

.select2-drop.callmail-select-dropdown {
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #cfd0d0;
    width: 130px!important
}

.select2-drop.callmail-select-dropdown._projects {
    width: 450px!important
}

.select2-drop.callmail-select-dropdown .select2-results {
    padding: 0;
    margin: 0
}

.select2-drop.callmail-select-dropdown .select2-results li {
    height: 35px;
    border-bottom: 1px solid #e8e8eb
}

.select2-drop.callmail-select-dropdown .select2-results li:first-child {
    border-radius: 4px 4px 0 0
}

.select2-drop.callmail-select-dropdown .select2-results li:last-child {
    border-bottom: 0;
    border-radius: 0 0 4px 4px
}

.select2-drop.callmail-select-dropdown .select2-results li.select2-highlighted {
    background: #eb1429
}

.select2-drop.callmail-select-dropdown .select2-results li .select2-result-label {
    padding: 9px 14px
}

.select2-drop.callmail-select-dropdown-normal {
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #cfd0d0
}

.select2-drop.callmail-select-dropdown-normal._projects {
    width: 450px!important
}

.select2-drop.callmail-select-dropdown-normal .select2-results {
    padding: 0;
    margin: 0
}

.select2-drop.callmail-select-dropdown-normal .select2-results li {
    height: 35px;
    border-bottom: 1px solid #e8e8eb
}

.select2-drop.callmail-select-dropdown-normal .select2-results li:first-child {
    border-radius: 4px 4px 0 0
}

.select2-drop.callmail-select-dropdown-normal .select2-results li:last-child {
    border-bottom: 0;
    border-radius: 0 0 4px 4px
}

.select2-drop.callmail-select-dropdown-normal .select2-results li.select2-highlighted {
    background: #eb1429
}

.select2-drop.callmail-select-dropdown-normal .select2-results li .select2-result-label {
    padding: 9px 14px
}

.controlpanel {
    padding-top: 125px
}

.controlpanel-top p {
    font: bold 25px/35px 'ralewayc2';
    color: #53525a
}

.controlpanel-top u:after {
    border-bottom-width: 2px
}

.controlpanel .left-column {
    display: inline-block;
    width: 266px;
    min-height: 508px;
    background: #fff;
    vertical-align: top;
    margin: 1px 0 40px
}

.controlpanel .left-column .personal-row {
    padding: 30px 30px 0;
    font: bold 20px/26px 'ralewayc2';
    color: #53525a
}

.controlpanel .left-column .personal-row:last-child {
    padding-bottom: 30px
}

.controlpanel .left-column .personal-row span {
    display: inline-block;
    width: 100%;
    word-wrap: break-word
}

.controlpanel .left-column .head-row {
    padding-bottom: 30px;
    background: #f6f7f8
}

.controlpanel .left-column .row-text-small {
    font-size: 14px;
    line-height: 18px
}

.controlpanel .left-column .row-label {
    font-size: 14px;
    line-height: 18px;
    color: #dadada;
    border-bottom: 1px solid #dadada;
    margin-bottom: 20px
}

.controlpanel .right-column {
    display: inline-block;
    width: 904px;
    vertical-align: top;
    font-size: 0
}

.controlpanel .nav-item {
    position: relative;
    display: inline-block;
    width: 407px;
    height: 234px;
    margin-left: 44px;
    margin-bottom: 40px;
    background: url("../img/nav-item.png") no-repeat;
    color: #fff;
    text-decoration: none;
    text-align: center;
    vertical-align: top
}

.controlpanel .nav-item.nav-item-1 {
    background-position: 0 0
}

.controlpanel .nav-item.nav-item-1:hover {
    background-position: 0 -234px
}

.controlpanel .nav-item.nav-item-2 {
    background-position: -407px 0
}

.controlpanel .nav-item.nav-item-2:hover {
    background-position: -407px -234px
}

.controlpanel .nav-item.nav-item-3 {
    background-position: -814px 0
}

.controlpanel .nav-item.nav-item-3:hover {
    background-position: -814px -234px
}

.controlpanel .nav-item.nav-item-4 {
    background-position: -1221px 0
}

.controlpanel .nav-item.nav-item-4:hover {
    background-position: -1221px -234px
}

.controlpanel .nav-item .nav-item-text {
    display: inline-block;
    font-size: 50px;
    line-height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.controlpanel-table {
    display: table;
    width: 100%
}

.controlpanel-table h3 {
    font-family: 'ralewayc2';
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    margin-top: 10px;
    color: #848489
}

.controlpanel-row {
    display: table-row
}

.controlpanel-cell {
    display: table-cell;
    padding: 20px 60px
}

.controlpanel-row-footer .controlpanel-cell {
    padding-top: 0;
    padding-bottom: 60px;
    position: relative;
    text-align: center
}

.controlpanel-column1 {
    display: table-column;
    background-color: #fff;
    width: 680px
}

.controlpanel-column2 {
    display: table-column;
    background-color: #f6f7f8
}

.controlpanel-content-half {
    display: inline-block;
    width: 50%;
    vertical-align: top
}

.controlpanel-content-half.half-left {
    padding-right: 30px
}

.controlpanel-content-half.half-right {
    padding-left: 30px
}

.controlpanel-header {
    height: 100px;
    margin: 5px 0 10px
}

.controlpanel-header .avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 20px
}

.controlpanel-header .avatar-wrapper .avatar {
    float: left
}

.controlpanel-header .avatar-wrapper .bold-link {
    position: absolute;
    bottom: 10px;
    margin-left: 100px
}

.controlpanel-header .avatar-wrapper .avatar-btn-upload {
    position: absolute;
    bottom: 10px;
    margin-left: 20px
}

.controlpanel-footer {
    padding: 30px 0;
    text-align: center
}

.controlpanel-footer a {
    color: #eb1429
}

.controlpanel-footer a:hover {
    color: #ee4e59
}

.controlpanel-form-password {
    padding: 0 20px
}

.controlpanel .btn-footer-wrapper {
    position: relative;
    display: inline-block
}

.controlpanel .btn-footer-wrapper .callback-reset-btn {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 30px
}

.controlpanel .select2-container.callback-select .select2-choice {
    height: 50px
}

.controlpanel .callback-textarea {
    height: 120px
}

.controlpanel .select2-container.callback-select .select2-choice,.controlpanel .callback-textarea,.controlpanel .callback-input {
    border-color: #ccc
}

.controlpanel .callback-action-btn {
    display: inline-block;
    width: auto;
    margin-top: 0
}

.red-text {
    color: #ec142a
}

.cursor-pointer {
    cursor: pointer
}

.object-block .title a {
    text-decoration: none;
    color: #eb1429;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.object-block .title a:hover {
    text-decoration: underline
}

._admin-mode .title a.admin-edit {
    width: 35px;
    height: 35px;
    color: #fff;
    font-weight: normal;
    text-align: center;
    line-height: 35px
}

._admin-mode .title a.admin-edit:hover {
    text-decoration: none
}

._admin-mode .object-block__children a.admin-edit {
    position: static;
    display: inline-block;
    margin-left: 100px;
    width: 39px;
    height: 39px;
    line-height: 39px;
    vertical-align: top
}

body.mobile header {
    position: absolute
}

body.mobile .wrap.contacts {
    margin-top: 0!important;
    padding-top: 125px
}

body.mobile .wrap.contacts h1.page-title {
    margin-top: 0!important
}

body.mobile .wrap.contacts .phone-i,body.mobile .wrap.contacts .mail-i,body.mobile .wrap.contacts .col>h3,body.mobile .wrap.contacts .point,body.mobile .wrap.contacts .how>div,body.mobile .wrap.contacts p {
    width: 100%;
    display: inline-block
}
/*
body.mobile.page-about * {
    -webkit-transition: initial!important;
    transition: initial!important
}

body.mobile.page-about .owl-item {
    -webkit-transform: initial!important;
    transform: initial!important
}
*/
body.mobile.page-about #about-slide-1 .left-tween-1,body.mobile.page-about #about-slide-1 .right-tween-1 {
    opacity: 1!important;
    margin-left: 0!important
}

body.mobile.page-about #about-slide-1 .up-tween-1 {
    opacity: 1!important;
    bottom: 0!important
}

body.mobile.page-about #about-slide-2 .right-tween-2,body.mobile.page-about #about-slide-2 .left-tween-2 {
    opacity: 1!important;
    margin-left: 0!important
}

body.mobile.page-about #about-slide-3 .left-tween-3 {
    opacity: 1!important;
    margin-left: 0!important
}

body.mobile.page-about #about-slide-3 .right-tween-3 {
    opacity: 1!important;
    margin-left: 400px!important
}

body.mobile.page-about #about-slide-3 .down-tween-3 {
    opacity: 1!important;
    margin-bottom: 0!important
}

body.mobile.page-about #about-slide-3 .up-tween-3 {
    opacity: 1!important;
    margin-top: 0!important
}

body.mobile.page-about #about-slide-4 .down-tween-4,body.mobile.page-about #about-slide-4 .up-tween-4 {
    opacity: 1!important;
    top: 0!important
}

body.mobile.page-about #about-slide-5 .top-tween-5 {
    opacity: 1!important;
    top: 174px!important;
    bottom: 52%!important
}

body.mobile.page-about #about-slide-5 .down-tween-5,body.mobile.page-about #about-slide-5 .up-tween-5 {
    opacity: 1!important;
    top: 0!important
}

body.mobile.page-about #about-slide-6 .left-tween-6 {
    opacity: 1!important;
    margin-left: 0!important
}

body.mobile.page-about #about-slide-6 .right-tween-6 {
    opacity: 1!important;
    margin-right: 0!important
}

body.mobile.page-about #about-slide-6 .scale-tween-6 {
    opacity: 1!important;
    -webkit-transform: initial!important;
    transform: initial!important
}

body.mobile.page-about .person-modal-content .managers-slider-big-prev,body.mobile.page-about .person-modal-content .managers-slider-big-next {
    background: rgba(133,133,138,0.6);
    top: 0;
    margin: 0;
    height: 100%;
    width: 50px
}

body.mobile.page-about .person-modal-content .managers-slider-big-prev:hover,body.mobile.page-about .person-modal-content .managers-slider-big-next:hover {
    background: rgba(133,133,138,0.4)
}

body.mobile.page-about .person-modal-content .managers-slider-big-prev:before,body.mobile.page-about .person-modal-content .managers-slider-big-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -6px;
    margin-top: -10px;
    background-image: url("sprite2.png");
    width: 12px;
    height: 20px
}

body.mobile.page-about .person-modal-content .managers-slider-big-prev:before {
    background-position: -266px -190px
}

body.mobile.page-about .person-modal-content .managers-slider-big-next:before {
    background-position: -266px -160px
}

body.mobile.page-about #service-slide-1 .left-tween-1 {
    opacity: 1;
    margin-left: 0
}

body.mobile.page-about #service-slide-1 .up-tween-1 {
    opacity: 1;
    bottom: 0
}

body.mobile.page-about #service-slide-2 .left-tween-2 {
    opacity: 1;
    margin-left: 0
}

body.mobile.page-about #service-slide-3 .left-tween-3 {
    opacity: 1;
    margin-left: 0
}

body.mobile.page-about #service-slide-3 .up-tween-3,body.mobile.page-about #service-slide-3 .down-tween-3 {
    opacity: 1;
    top: 0
}

body.mobile.page-about #service-slide-3 .width-tween-3 {
    opacity: 1;
    left: 0;
    width: 100%
}

body.mobile.page-about #service-slide-4 .left-tween-4 {
    opacity: 1;
    margin-left: 0
}

body.mobile.page-about #service-slide-4 .scale-tween-4 {
    opacity: 1!important;
    -webkit-transform: initial!important;
    transform: initial!important
}

body.mobile.page-about #service-slide-5 .left-tween-5 {
    opacity: 1;
    margin-left: 0
}

body.mobile .ui-slider .ui-slider-handle {
    width: 32px;
    height: 32px
}

body.mobile .ui-slider-horizontal .ui-slider-handle {
    top: -14px;
    margin-left: -14px
}

.admin-toolbar {
    position: fixed;
    z-index: 5000;
    right: 0;
    top: 0
}

.admin-toolbar--checkbox {
    position: absolute;
    opacity: 0;
    z-index: 0
}

.admin-toolbar--checkbox:checked+.admin-toolbar--label {
    background: #eb1429
}

.admin-toolbar--label {
    cursor: pointer;
    transition: background ease .3s;
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(235,20,41,0.5);
    text-align: center;
    line-height: 40px;
    color: #fff
}

.admin-toolbar--label:after {
    content: '✐';
    font-size: 25px
}

.admin-toolbar--label:hover {
    background: rgba(235,20,41,0.6)
}

.icon {
    display: inline-block;
    vertical-align: middle
}

.icon_size_small {
    width: 40px;
    padding-right: 10px
}

.icon:after {
    margin: auto;
    content: '';
    display: block;
    transition: transform 300ms ease
}

.icon_metro-small-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -15px -19px;
    width: 19px;
    height: 12px
}

.icon_address-small-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: 0 -19px;
    width: 15px;
    height: 18px
}

.icon_map-small-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -18px 0;
    width: 17px;
    height: 19px
}

.icon_download-small-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -51px 0;
    width: 14px;
    height: 19px
}

.icon_download-verysmall-gray:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -51px -19px;
    width: 11px;
    height: 14px
}

.icon_loadfile-small-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -35px 0;
    width: 16px;
    height: 19px
}

.icon_house-small-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: 0 0;
    width: 18px;
    height: 19px
}

.icon_arrowdown-small-gray:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -34px -19px;
    width: 14px;
    height: 8px
}

.icon_arrowtop-small-gray:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -34px -19px;
    width: 14px;
    height: 8px;
    transform: rotate(180deg)
}

.icon_arrowtop-verysmall-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -15px -31px;
    width: 10px;
    height: 6px
}

.icon_arrowbottom-verysmall-red:after {
    background-image: url(../../img/new-sprite.png);
    background-position: -15px -31px;
    width: 10px;
    height: 6px;
    transform: rotate(180deg)
}

.row {
    margin-right: -15px;
    margin-left: -15px
}

.row:before,.row:after {
    content: " ";
    display: table
}

.row:after {
    clear: both
}

.row:before,.row:after {
    content: " ";
    display: table
}

.row:after {
    clear: both
}

.row.row_fixed {
    margin-right: 0;
    margin-left: 0
}

.row .row {
    padding: 0
}

.row [class*="col-"] {
    min-height: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.row-12 .col-12 {
    width: 100%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-12 {
    width: 100%;
    float: left
}

.row-12 .col-11 {
    width: 91.66666667%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-11 {
    width: 91.66666667%;
    float: left
}

.row-12 .col-10 {
    width: 83.33333333%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-10 {
    width: 83.33333333%;
    float: left
}

.row-12 .col-9 {
    width: 75%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-9 {
    width: 75%;
    float: left
}

.row-12 .col-8 {
    width: 66.66666667%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-8 {
    width: 66.66666667%;
    float: left
}

.row-12 .col-7 {
    width: 58.33333333%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-7 {
    width: 58.33333333%;
    float: left
}

.row-12 .col-6 {
    width: 50%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-6 {
    width: 50%;
    float: left
}

.row-12 .col-5 {
    width: 41.66666667%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-5 {
    width: 41.66666667%;
    float: left
}

.row-12 .col-4 {
    width: 33.33333333%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-4 {
    width: 33.33333333%;
    float: left
}

.row-12 .col-3 {
    width: 25%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-3 {
    width: 25%;
    float: left
}

.row-12 .col-2 {
    width: 16.66666667%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-2 {
    width: 16.66666667%;
    float: left
}

.row-12 .col-1 {
    width: 8.33333333%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-12 .col-fixed-1 {
    width: 8.33333333%;
    float: left
}

.col-offset-12 {
    margin-left: 100%
}

.col-offset-11 {
    margin-left: 91.66666667%
}

.col-offset-10 {
    margin-left: 83.33333333%
}

.col-offset-9 {
    margin-left: 75%
}

.col-offset-8 {
    margin-left: 66.66666667%
}

.col-offset-7 {
    margin-left: 58.33333333%
}

.col-offset-6 {
    margin-left: 50%
}

.col-offset-5 {
    margin-left: 41.66666667%
}

.col-offset-4 {
    margin-left: 33.33333333%
}

.col-offset-3 {
    margin-left: 25%
}

.col-offset-2 {
    margin-left: 16.66666667%
}

.col-offset-1 {
    margin-left: 8.33333333%
}

.col-offset-0 {
    margin-left: 0
}

.row-5 .col-5 {
    width: 100%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-5 .col-fixed-5 {
    width: 100%;
    float: left
}

.row-5 .col-4 {
    width: 80%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-5 .col-fixed-4 {
    width: 80%;
    float: left
}

.row-5 .col-3 {
    width: 60%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-5 .col-fixed-3 {
    width: 60%;
    float: left
}

.row-5 .col-2 {
    width: 40%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-5 .col-fixed-2 {
    width: 40%;
    float: left
}

.row-5 .col-1 {
    width: 20%;
    float: left;
    padding-right: 15px;
    padding-left: 15px
}

.row-5 .col-fixed-1 {
    width: 20%;
    float: left
}

.row-5 .col-offset-5 {
    margin-left: 100%
}

.row-5 .col-offset-4 {
    margin-left: 80%
}

.row-5 .col-offset-3 {
    margin-left: 60%
}

.row-5 .col-offset-2 {
    margin-left: 40%
}

.row-5 .col-offset-1 {
    margin-left: 20%
}

.row-5 .col-offset-0 {
    margin-left: 0
}

.offset-right_05 {
    padding-right: 15px
}

.offset-top_header {
    margin-top: 100px
}

.offset-right_1 {
    padding-right: 30px
}

.offset-left_1 {
    padding-left: 30px
}

.offset-left_2 {
    padding-left: 30px
}

.offset-top_1 {
    padding-top: 30px
}

.offset-bottom_1 {
    padding-bottom: 30px
}

.offset-bottom_05 {
    padding-bottom: 15px
}

.title {
    font-family: "ralewayc2",sans-serif
}

.title_size_h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 51px
}

.title_size_h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 44px
}

.title_size_h4 {
    font-weight: 700;
    font-size: 34px;
    line-height: 50px
}

.title_size_h5 {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px
}

.title_size_h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 50px
}

.title_color_red {
    color: #ec142a
}

.text_block {
    display: block
}

.text_ralaway {
    font-family: "ralewayc2",sans-serif
}

.text_size_medium {
    font-size: 20px;
    line-height: 33px
}

.text_size_normal {
    font-size: 16px;
    line-height: 24px
}

.text_color_gray {
    color: #808080
}

.text_color_red {
    color: #ec142a
}

.text_vertical_middle {
    vertical-align: middle
}

.text_align_right {
    text-align: right
}

.text_weight_normal {
    font-weight: 400
}

.text_weight_medium {
    font-weight: 500
}

.text_weight_semiBold {
    font-weight: 600
}

.text_weight_bold {
    font-weight: 700
}

.text_weight_extraBold {
    font-weight: 800
}

.comma-list__item:after {
    content: ', ';
    font-size: inherit;
    font-family: inherit;
    line-height: inherit
}

.comma-list__item:last-child:after {
    content: ''
}

.form-control__label {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    min-height: 27px;
    font-family: "ralewayc2",sans-serif
}

.form-control__input {
    display: block;
    background: 0;
    border: 2px solid #fff;
    border-radius: 3px;
    line-height: 30px;
    padding: 3px 8px;
    width: 100%;
    color: #fff
}

.form-control__select2 {
    display: block;
    background: 0;
    border: 2px solid #fff;
    border-radius: 3px;
    line-height: 30px;
    padding: 3px 8px;
    width: 100%
}

.form-control__select2.select2-dropdown-open {
    background: rgba(255,255,255,0.3)
}

.form-control__select2 .select2-choice {
    border: 0;
    background: none!important;
    color: #fff;
    height: 100%;
    font-size: 14px;
    padding: 0;
    box-shadow: none
}

.form-control__select2 .select2-choice div {
    display: none
}

.form-control__select2 .select2-choice span {
    color: #fff!important
}

.form-control__select2:after {
    content: "";
    display: block;
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #fff transparent
}

.form-control__group:before,.form-control__group:after {
    content: " ";
    display: table
}

.form-control__group:after {
    clear: both
}

.form-control__group:before,.form-control__group:after {
    content: " ";
    display: table
}

.form-control__group:after {
    clear: both
}

.form-control__group .form-control__group-item {
    width: 50%;
    float: left;
    border-radius: 0 3px 3px 0
}

.form-control__group .form-control__group-item:first-child {
    border-radius: 3px 0 0 3px;
    border-right: 0
}

.form-control__slider {
    width: 100%;
    padding-top: 13px
}

.form-control__btn {
    border-radius: 3px;
    background: #fff;
    text-transform: uppercase;
    color: #535359;
    font-size: 14px;
    line-height: 30px;
    border: 2px solid #fff;
    padding: 3px 8px;
    width: 100%;
    font-family: "ralewayc2",sans-serif;
    font-weight: 500
}

.btn-bordered {
    display: inline-block;
    border-radius: 3px;
    border: 2px solid #ec142a;
    text-transform: uppercase;
    text-align: center;
    color: #ec142a;
    font-size: 14px;
    line-height: 26px;
    padding: 3px 8px;
    width: 100%;
    font-weight: 600;
    font-family: "ralewayc2",sans-serif;
    text-decoration: none
}

.btn-bordered:hover {
    background: #ec142a;
    color: #fff
}

.skew-tab {
    overflow: hidden;
    display: inline-block
}

.skew-tab__wrapper {
    padding: 0;
    margin: 0;
    margin-left: -15px;
    margin-right: -15px
}

.skew-tab__wrapper:before,.skew-tab__wrapper:after {
    content: " ";
    display: table
}

.skew-tab__wrapper:after {
    clear: both
}

.skew-tab__wrapper:before,.skew-tab__wrapper:after {
    content: " ";
    display: table
}

.skew-tab__wrapper:after {
    clear: both
}

.skew-tab__item {
    margin: 0 3px;
    font-family: "ralewayc2",sans-serif;
    font-size: 13px;
    float: left;
    padding: 0;
    list-style: none;
    color: #fff;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #848489;
    cursor: pointer
}

.skew-tab__item:hover {
    background: #bebec1
}

.skew-tab__item span {
    display: block;
    padding: 7px 30px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.skew-tab__item_active {
    background: #eb1429
}

.skew-tab__item_active:hover {
    background: #eb1429
}

.page-controlpanel .skew-tab {
    margin-top: 12px
}

.page-controlpanel .back-link {
    font-size: 14px;
    font-family: "ralewayc2",sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #848489;
    text-decoration: none;
    padding-left: 30px;
    line-height: 30px
}

.page-controlpanel .available-offers-list-phone._red {
    color: #ec142a
}

.page-controlpanel .button.button-dark._red {
    background: #ec142a;
    color: #fff;
    text-transform: uppercase
}

.page-controlpanel .slider-vertical {
    z-index: 2;
    overflow: hidden;
    padding: 25px 10px;
    height: 400px;
    width: 130px;
    background: #fff;
    position: absolute
}

.page-controlpanel .slider-vertical .flex-viewport {
    height: 350px!important
}

.page-controlpanel .slider-vertical__wrapper {
    height: 350px
}

.page-controlpanel .slider-vertical__image {
    height: auto;
    width: 100%
}

.page-controlpanel .slider-vertical__image_no-img {
    background: url("/img/placeholder.jpg") no-repeat 50% 50%;
    background-size: cover;
    height: 100%
}

.page-controlpanel .slider-vertical__item {
    height: 80px;
    overflow: hidden
}

.page-controlpanel .slider-vertical__item:hover {
    position: relative
}

.page-controlpanel .slider-vertical__item:hover:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: block;
    border: 0 solid #ec142a;
    transition: border 300ms
}

.page-controlpanel .slider-vertical__item:hover:after {
    border-width: 4px
}

.page-controlpanel .slider-vertical__control a {
    display: block;
    text-indent: -100000px;
    opacity: 1;
    transition: opacity 300ms ease
}

.page-controlpanel .slider-vertical__control a:after {
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: url(../../img/new-sprite.png);
    background-position: -15px -31px;
    width: 10px;
    height: 6px
}

.page-controlpanel .slider-vertical__control a.disabled {
    opacity: 0
}

.page-controlpanel .slider-vertical__control .bx-prev {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 100%
}

.page-controlpanel .slider-vertical__control .bx-next {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 100%
}

.page-controlpanel .slider-vertical__control .bx-next:after {
    transform: rotate(180deg)
}

.page-controlpanel .slider-one {
    float: left;
    height: 400px;
    width: 60%;
    position: relative;
    z-index: 1
}

.page-controlpanel .slider-one__wrapper {
    overflow: hidden;
    height: 400px;
    width: 100%
}

.page-controlpanel .slider-one__item {
    height: 100%
}

.page-controlpanel .slider-one__static-logo {
    float: right;
    margin-top: 10px
}

.page-controlpanel .bx-wrapper {
    z-index: 1
}

.page-controlpanel .search-form__category-list {
    width: 187px
}

.page-controlpanel .search-form__category-list-wrapper {
    position: relative;
    background: #53525a;
    height: 204px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: "ralewayc2",sans-serif
}

.page-controlpanel .search-form__category-item {
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #6d6d72;
    padding: 11px 0;
    cursor: pointer
}

.page-controlpanel .search-form__category-item_active {
    color: #fff
}

.page-controlpanel .search-form__category-item_active:before {
    right: 0;
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 10px 7px 0;
    border-color: transparent #ec142a transparent transparent;
    margin-top: 10px
}

.page-controlpanel .search-form__filter-wrap {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 21px;
    height: 214px;
    background: url('../../img/search-form-bg.png') 100% 0 no-repeat;
    vertical-align: top
}

.page-controlpanel .available-offers-table-item._hide {
    display: none
}

.page-controlpanel .available-offers-list {
    box-shadow: none;
    padding-left: 30px;
    padding-right: 30px
}

.object-block {
    box-shadow: 3px 4px 10px 0 rgba(0,0,0,0.15);
    margin-bottom: 80px;
    background: #fff
}

.object-block__header {
    border-top: 4px solid #ec142a;
    background: #f3f3f6;
    padding-top: 20px;
    padding-bottom: 23px
}

.object-block__spoiler {
    background: #f3f3f6;
    padding-top: 20px;
    padding-bottom: 23px
}

.object-block__header-toggle {
    cursor: pointer
}

.object-block__data {
    position: relative;
    border-bottom: 4px solid #ec142a;
    height: 404px
}

.object-block__data:before,.object-block__data:after {
    content: " ";
    display: table
}

.object-block__data:after {
    clear: both
}

.object-block__data:before,.object-block__data:after {
    content: " ";
    display: table
}

.object-block__data:after {
    clear: both
}

.object-block__spoiler {
    background: #f3f3f6
}

.object-block__spoiler .available-offers-list {
    background: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0
}

.object-block__spoiler .available-offers-list .available-offers-table-header span {
    border-bottom: #ccc solid 2px
}

.object-block__children-list {
    width: 100%;
    position: relative;
    overflow: hidden
}

.object-block__children-list .owl-buttons div {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    height: 200px;
    width: 30px;
    text-indent: -99999px;
    background: #ccc
}

.object-block__children-list .owl-buttons div:hover {
    background: #ec142a
}

.object-block__children-list .owl-buttons div:after {
    display: block;
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../../img/new-sprite.png);
    background-position: 0 -37px;
    width: 8px;
    height: 14px
}

.object-block__children-list .owl-prev {
    left: 0
}

.object-block__children-list .owl-next {
    right: 0
}

.object-block__children-list .owl-next:after {
    transform: rotate(180deg)
}

.object-block__children-list .owl-wrapper-outer {
    overflow: visible!important
}

.object-block__children {
    height: 200px;
    margin-left: 130px
}

.object-block__children-image-wrapper {
    width: 262px
}

.object-block__children-image-wrapper_no-img {
    background: url('/img/logo.png') no-repeat 50% 50% #fff;
    height: 200px;
    min-width: 262px
}

.object-block__children-data {
    vertical-align: top
}

.object-block__map {
    width: 702px;
    height: 400px;
    position: absolute
}

.object-block__map_show {
    z-index: 2
}

.object-block__no-img {
    background: url('/img/logo.png') no-repeat 50% 50% #fff;
    z-index: 1;
    position: relative;
    width: 702px;
    height: 400px
}

.object-title .logo {
    padding-top: 37px
}

h1.header-fake {
    color: #525259;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    padding-right: 40px;
    text-transform: uppercase
}

h1 {
    color: #525259;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    padding-right: 40px;
    text-transform: uppercase;
    margin-top: 22px;
    display: table;
    table-layout: fixed
}

.articleHeading h1 {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    color: white;
    z-index: 1;
    position: absolute;
    text-align: center;
    padding: 0 130px;
    top: 35%;
    left: 0;
    right: 0
}

.pretty-head {
    font-size: 40px;
    line-height: 47px;
    font-family: ralewayc2;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    color: #000;
    padding: 33px 0 0 0;
    border-bottom: 2px solid transparent;
    display: block;
}

.news-item-img a img {
    max-width: 170px;
}
