/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 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;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -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 {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -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;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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);
    }

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

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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);
    }

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

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

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}


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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


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

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

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

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

    to {
        -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 {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

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

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-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-animation-timing-function: ease-in;
        animation-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);
    }

    to {
        -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 {
    from {
        -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;
    }

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

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
    box-sizing: border-box;
}

*, *::after, *::before {
    box-sizing: inherit;
}

html {
    font-size: 100%;
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    *display: inline;
    *zoom: 1;
    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   */
[hidden] {
    display: none;
}

/**
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
   * Remove the gray background color from active links in IE 10.
   */
a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    /* Set 1 unit of vertical rhythm on the top and bottom margins. */
    margin: 0.75em 0;
}

h2 {
    font-size: 1.5em;
    margin: 1em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1.2820512821em 0;
}

h4 {
    font-size: 1em;
    margin: 1.5em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.8072289157em 0;
}

h6 {
    font-size: 0.67em;
    margin: 2.2388059701em 0;
}

/**
   * Address styling not present in IE 8/9.
   */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
   * Remove border when inside `a` element in IE 8/9/10.
   */
img {
    border: 0;
    /* Improve image quality when scaled in IE 7. */
    -ms-interpolation-mode: bicubic;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
   * Address margins set differently in IE 6/7.
   */
dl,
menu,
ol,
ul {
    margin: 1.5em 0;
}

dd {
    margin: 0 0 0 40px;
}

/**
   * Address paddings set differently in IE 6/7.
   */
menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/**
   * Correct list images handled incorrectly in IE 7.
   */
nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

/**
   * Set 1 unit of vertical rhythm on the top and bottom margin.
   */
blockquote {
    margin: 1.5em 40px;
}

/**
   * Address margin not present in IE 8/9 and Safari.
   */
figure {
    margin: 1.5em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
   * Set 1 unit of vertical rhythm on the top and bottom margin.
   */
p,
pre {
    margin: 1.5em 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
   * Correct margin displayed oddly in IE 6/7.
   */
form {
    margin: 0;
}

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Address `font-family` inconsistency between `textarea` and other form in IE 7
 * 5. Improve appearance and consistency with IE 6/7.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
    *font-family: sans-serif;
    /* 4 */
    *vertical-align: middle;
    /* 5 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
    *overflow: visible;
    /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   * 3. Remove excess padding in IE 7.
   *    Known issue: excess padding remains in IE 6.
   */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
    *height: 13px;
    /* 3 */
    *width: 13px;
    /* 3 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    box-sizing: content-box;
    /* 2 */
    /**
     * Remove inner padding and search cancel button in Safari and Chrome on OS X.
     * Safari (but not Chrome) clips the cancel button when the search input has
     * padding (and `textfield` appearance).
     */
}

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

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
    *margin-left: -7px;
    /* 3 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

@font-face {
    font-family: 'AlegreSans-Regular';
    src: url("../fonts/AlegreSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/AlegreSans-Regular.woff") format("woff"), url("../fonts/AlegreSans-Regular.ttf") format("truetype"), url("../fonts/AlegreSans-Regular.svg#AlegreSans-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BerlinSansFBDemi-Bold';
    src: url("../fonts/BerlinSansFBDemi-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BerlinSansFBDemi-Bold.woff") format("woff"), url("../fonts/BerlinSansFBDemi-Bold.ttf") format("truetype"), url("../fonts/BerlinSansFBDemi-Bold.svg#BerlinSansFBDemi-Bold") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'segoe_regular';
    src: url("../fonts/SegoeUI.eot");
    src: url("../fonts/SegoeUI.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUI.woff") format("woff"), url("../fonts/SegoeUI.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.btn-island-snow, .btn-island-tree, .banner-top--btn_bottom, .btn-form-send, .reserve-btn, .serv-thumb--link, .footer-btn, .banner-top--btn_top {
    width: 220px;
    height: 50px;
    border: none;
    background: transparent;
    color: #000;
    font-size: 28px;
    font-family: 'AlegreSans-Regular';
    text-align: center;
    border-radius: 3px;
    line-height: 50px;
    display: block;
    margin: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background: transparent;
    visibility: visible;
}

.btn-island-snow:hover, .btn-island-tree:hover, .banner-top--btn_bottom:hover, .btn-form-send:hover, .reserve-btn:hover, .serv-thumb--link:hover, .footer-btn:hover, .banner-top--btn_top:hover {
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

/* Antiman */
.btn-island-snow::before, .btn-island-tree::before, .banner-top--btn_bottom::before, .btn-form-send::before, .reserve-btn::before, .serv-thumb--link::before, .footer-btn::before, .banner-top--btn_top::before,
.btn-island-snow::after,
.btn-island-tree::after,
.banner-top--btn_bottom::after,
.btn-form-send::after,
.reserve-btn::after,
.serv-thumb--link::after,
.footer-btn::after,
.banner-top--btn_top::after {
    content: '';
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    visibility: visible;
}

.btn-island-snow::before, .btn-island-tree::before, .banner-top--btn_bottom::before, .btn-form-send::before, .reserve-btn::before, .serv-thumb--link::before, .footer-btn::before, .banner-top--btn_top::before {
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}

.btn-island-snow:before, .btn-island-tree:before, .banner-top--btn_bottom:before, .btn-form-send:before, .reserve-btn:before, .serv-thumb--link:before, .footer-btn:before, .banner-top--btn_top:before {
    border-width: 2px;
}

.btn-island-snow::after, .btn-island-tree::after, .banner-top--btn_bottom::after, .btn-form-send::after, .reserve-btn::after, .serv-thumb--link::after, .footer-btn::after, .banner-top--btn_top::after {
    background: #fff;
}

.btn-island-snow:hover::before, .btn-island-tree:hover::before, .banner-top--btn_bottom:hover::before, .btn-form-send:hover::before, .reserve-btn:hover::before, .serv-thumb--link:hover::before, .footer-btn:hover::before, .banner-top--btn_top:hover::before {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.btn-island-snow:hover::after, .btn-island-tree:hover::after, .banner-top--btn_bottom:hover::after, .btn-form-send:hover::after, .reserve-btn:hover::after, .serv-thumb--link:hover::after, .footer-btn:hover::after, .banner-top--btn_top:hover::after {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}

.btn-island-tree, .banner-top--btn_bottom, .btn-form-send, .reserve-btn, .serv-thumb--link, .footer-btn {
    color: #fff;
}

.btn-island-tree:after, .banner-top--btn_bottom:after, .btn-form-send:after, .reserve-btn:after, .serv-thumb--link:after, .footer-btn:after {
    background: #62940a;
}

.btn-island-tree:before, .banner-top--btn_bottom:before, .btn-form-send:before, .reserve-btn:before, .serv-thumb--link:before, .footer-btn:before {
    border: 2px solid #62940a;
}

.btn-island-tree:hover, .banner-top--btn_bottom:hover, .btn-form-send:hover, .reserve-btn:hover, .serv-thumb--link:hover, .footer-btn:hover {
    color: #62940a;
}

.hexagon, .icon-layer--bottom,
.icon-layer--top {
    width: 200px;
    height: 110px;
    background: rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

.hexagon:before, .icon-layer--bottom:before,
.icon-layer--top:before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 50px solid rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.hexagon:after, .icon-layer--bottom:after,
.icon-layer--top:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 50px solid rgba(0, 0, 0, 0.18);
    z-index: 1;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

html, body {
    height: 100%;
}

.body-wrapper {
    min-height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
}

.main-content {
    -webkit-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
    z-index: 0;
}

.footer-content {
    display: block;
    position: relative;
}

/* -/ */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #fdfefa;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 1.3;
    font-weight: normal;
}

a {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

input, button, textarea, select {
    outline: none !important;
}

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

._table, .head-top-inner {
    display: table;
    vertical-align: middle;
    table-layout: fixed;
}

._cell, .head-top-logo, .head-top-nav--wrap {
    display: table-cell;
    vertical-align: middle;
}

._inline-out:before, .contacts-info:before, .block-page-banner:before, .footer-content--bottom .row-half-left:before, .footer-content--bottom .block-fleet--left:before, .footer-content--bottom .block-fleet--right:before,
.footer-content--bottom .row-half-right:before {
    content: '';
    height: 100%;
    display: inline-block !important;
    vertical-align: middle;
}

._inline-in, .contacts-info--item, .block-page-banner .title-page, .footer-copyright {
    display: inline-block;
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.container, .head-top-inner, .title-section .title-section--inner {
    width: 100%;
    padding: 0 10px;
}

@media (min-width: 1230px) {
    .container, .head-top-inner, .title-section .title-section--inner {
        width: 1210px;
        margin: auto;
    }
}

head,
section,
main,
footer,
.row-all,
.container,
.head-top-inner,
.title-section .title-section--inner {
    clear: both;
}

head::after,
section::after,
main::after,
footer::after,
.row-all::after,
.container::after,
.head-top-inner::after,
.title-section .title-section--inner::after {
    clear: both;
    content: "";
    display: table;
}

.custom-field, .custom-select-field {
    color: #000;
    border: 1px solid #8c8c8c;
    font-size: 16px;
    padding: 0 15px;
    width: 100%;
    height: 45px;
    background-color: #fff;
    /*margin-left:10px;
    margin-right:10px;*/
    box-sizing: border-box;
}

.row_label
{
    display: inline-block;
    width:20%;
    padding-left:10px;
    box-sizing: border-box;
    font-size:18px;
    float: left;
    line-height:45px;
}

.select_quote
{
    color: #000;
    border: 1px solid #8c8c8c;
    font-size: 16px;
    padding: 0 15px;
    width: 24%;
    height: 45px;
    background-color: #fff;
    float: left;
    margin-right:1%;
}

input.select_quote
{
    width:30%;
    margin:0;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #8c8c8c;
}

::-moz-placeholder {
    color: #8c8c8c;
}

:-moz-placeholder {
    color: #8c8c8c;
}

:-ms-input-placeholder {
    color: #8c8c8c;
}

.custom-select-field {
    padding-right: 20px;
    border-radius: 0px;
    -webkit-appearance: none;
    background-image: url("../images/select-arr.png");
    background-position: 97.5% 18px;
    background-repeat: no-repeat;
    line-height: 1em;
    outline: none !important;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    -ms-appearance: none;
    -o-appearance: none;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    padding-top: 1px;
}

.custom-select-field option {
    border: 1px solid #000 !important;
    background: #fff !important;
    font-weight: 300;
}

.custom-select-field::-ms-expand {
    display: none;
}

.custom-label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0  0 5px;
    display: block;
    padding-left: 10px;
}

textarea.custom-field, textarea.custom-select-field {
    resize: none;
    padding: 15px;
    min-height: 170px;
}

.row-all {
    width: 100%;
}

form .row-all {
    margin-bottom: 20px;
}

.row-half, .row-half-left, .block-fleet--left, .block-fleet--right, .row-half-right {
    width: 50%;
    float: left;
}

.row-third {
    float: left;
    width: 33.33333%;
    position: relative;
}

.row-half-right {
    float: right;
}

.row-half-wm
{
    float:left;
    width:49%;
    margin-bottom: 20px;
}

.m-b-0
{
    margin-bottom:5px !important;
}

.row-half-wm-right{
    float:right;
    width:49%;
    margin-bottom: 20px;
}

.row-third-wm
{
    float:left;
    width:33%;
    margin-right:1%;
    margin-bottom: 20px;
}

.row-third-wm-right{
    float:right;
    margin-right:0;
    width:32%;
    margin-bottom: 20px;
}

.row-half-wm-right .select_quote, .row-third-wm .select_quote
{
    width:100%;
}

.bold-row-label
{
    font-weight:bold;
    font-size:16px;
}

.notice
{
    font-size:11px;
}

/**** Head Top ****/
.head-top {
    min-height: 120px;
    height: 1px;
    margin-bottom: -120px;
    position: relative;
    z-index: 2;
    background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.72) 52%, transparent 100%);
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.72) 52%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}

.head-top:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/head-line.png") no-repeat center bottom;
    background-size: 100% 1px;
}

.head-top.head-night {
    margin-bottom: 0;
    background: #131313;
}

.head-top-inner {
    height: 100%;
}

.head-top-logo {
    text-align: center;
    width: 92px;
    position: relative;
    z-index: 10;
}

.head-top-logo--text {
    padding-top: 20px;
    font-size: 22px;
    font-family: 'BerlinSansFBDemi-Bold';
    color: #eaf7d3;
    text-transform: uppercase;
    line-height: 0.85;
}

.head-top-logo--text span {
    display: block;
    letter-spacing: 4px;
    position: relative;
    left: 0px;
}

.head-top-nav--wrap {
    width: 100%;
}

.head-top--nav {
    text-align: right;
    position: relative;
    z-index: 1;
    width: 100%;
}

.head-top--nav .item-nav {
    display: inline-block;
    margin-left: 4.45%;
}

.head-top--nav .item-nav:first-child {
    margin-left: 0;
}

.head-top--nav .item-nav:last-child {
    position: relative;
    top: 21px;
}

.head-top--nav .item-nav:last-child .link-nav {
    font-family: 'segoe_regular';
    font-size: 18px;
    font-weight: normal;
    color: #fefefe;
    padding-left: 20px;
    position: relative;
}

.head-top--nav .item-nav:last-child .link-nav:before {
    display: none;
}

.head-top--nav .item-nav:last-child .link-nav:first-child:after {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background-image: url(../images/sprite.png);
    background-position: -322px -113px;
    width: 11px;
    height: 19px;
}

.header-email
{
    color:#61930c !important;
}

.head-top--nav .item-nav.has-dropdown .link-nav {
    position: relative;
}

.head-top--nav .item-nav.has-dropdown .link-nav:before {
    content: '';
    position: absolute;
    right: -15px;
    top: 7px;
}

.head-top--nav .item-nav.has-dropdown .link-nav:before {
    border: 4px solid transparent;
    border-top: 6px solid #fff;
}

.head-top--nav .item-nav:not(:last-child) .link-nav {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.head-top--nav .item-nav:not(:last-child) .link-nav:after {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    background: #62940a;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    left: 0;
}

.head-top--nav .item-nav:not(:last-child).active .link-nav:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.head-top--nav .item-nav:not(:last-child):not(:last-child):hover .link-nav:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.item-nav.has-dropdown {
    position: relative;
}

.item-nav.has-dropdown:hover .head-top--dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.item-nav.has-dropdown:hover .head-top--dropdown .dropdown-link span {
    opacity: 1;
}

.item-nav.has-dropdown:nth-child(3) .head-top--dropdown {
    left: -107px;
}

.item-nav .dropdown-link {
    display: block;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

.item-nav .dropdown-link:last-child {
    margin-bottom: 5px;
}

.item-nav .dropdown-link span {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    border-bottom: 1px solid transparent;
    opacity: 0;
    text-transform: uppercase;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.item-nav .dropdown-link span:hover {
    border-color: #62940a;
    color: #62940a;
}

.head-top--dropdown {
    position: absolute;
    width: 250px;
    padding: 30px;
    background: #2e342b;
    top: 45px;
    left: -90px;
    -webkit-transform: translate3d(0px, 30px, 0);
    transform: translate3d(0px, 30px, 0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.head-top--dropdown:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    width: 20px;
    margin: auto;
    border: 15px solid transparent;
    border-bottom: 17px solid  #2e342b;
}

.menu-button {
    display: none;
    width: 50px;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 22px;
    background: transparent;
    border: none;
    z-index: 10;
}

.menu-button span {
    width: 100%;
    display: block;
    height: 2px;
    background: #eaf7d3;
    margin: 7px 0;
}

.fixed-btn-up {
    display: none;
    width: 45px;
    height: 45px;
    background: #595959;
    position: fixed;
    right: 3%;
    bottom: 5%;
    cursor: pointer;
}

.fixed-btn-up:after {
    content: '';
    position: absolute;
    left: 13px;
    top: 15px;
    background-image: url(../images/sprite.png);
    background-position: -231px -144px;
    width: 21px;
    height: 13px;
}

/**** Breadcrumbs ****/
.breadcrumbs-wrap {
    background: #f4f4f4;
}

.breadcrumbs {
    height: 60px;
    width: 100%;
    text-align: center;
    color: #6f6f6f;
    line-height: 60px;
}

.breadcrumbs .list {
    display: inline-block;
    padding: 0 12px;
}

.breadcrumbs .list:after {
    content: '/';
    position: relative;
    right: -16px;
}

.breadcrumbs .list:last-child:after {
    display: none;
}

.breadcrumbs .list .link {
    border-bottom: 1px solid transparent;
}

.breadcrumbs .list .link:hover {
    border-bottom-color: #6f6f6f;
}

/**** Banner Top ****/
.banner-top {
    width: 100%;
    height: 100vh;
    background: url("../images/banner-top.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.banner-top:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.banner-top--center {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 260px;
    z-index: 2;
}

.banner-top--title {
    display: none;
    font-size: 53px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.tap-tap {
    display: none;
    font-size: 53px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.banner-top--btn_top {
    margin-bottom: 20px;
}

.banner-top--btn_top span {
    position: relative;
    z-index: 10;
}

.banner-top--btn_bottom span {
    position: relative;
    z-index: 10;
}

.bottom-jump-block {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background: url("../images/pattern-bg.jpg") repeat;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    top: auto;
    bottom: -50px;
    cursor: pointer;
}

.bottom-jump-block span {
    display: block;
    margin: 11px auto 0;
    background-image: url(../images/sprite.png);
    background-position: -102px -236px;
    width: 22px;
    height: 34px;
}

/**** Services  ****/
.block-services {
    min-height: 545px;
    background: url("../images/pattern-bg.jpg") repeat;
}

.block-services--thumb {
    text-align: center;
    width: 33.333%;
    float: left;
    padding: 60px 0 50px;
}

.block-services--thumb .icon-layer--img {
    display: inline-block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 5;
}

.block-services--thumb:nth-child(1) {
    background: url("../images/serv.png") no-repeat right center;
}

.block-services--thumb:nth-child(1) .icon-layer--img {
    background-image: url(../images/sprite.png);
    background-position: 0px 0px;
    width: 114px;
    height: 108px;
}

.block-services--thumb:nth-child(2) {
    background: url("../images/serv.png") no-repeat right center;
}

.block-services--thumb:nth-child(2) .icon-layer--img {
    background-image: url(../images/sprite.png);
    background-position: -114px -52px;
    width: 109px;
    height: 52px;
}

.block-services--thumb:nth-child(2) .icon-layer--bottom {
    -webkit-animation: rotateB 80s infinite linear;
    animation: rotateB 80s infinite linear;
}

.block-services--thumb:nth-child(3) .icon-layer--img {
    background-image: url(../images/sprite.png);
    background-position: -231px 0px;
    width: 63px;
    height: 91px;
}

.services-thumb--inner {
    width: 80%;
    margin: auto;
    position: relative;
}

.icon-layer--wrap {
    width: 215px;
    height: 215px;
    margin: auto;
    position: relative;
}

.icon-layer--bottom,
.icon-layer--top {
    display: inline-block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* .icon-layer--bottom {
  animation: rotateD 80s infinite linear;
} */
.icon-layer--top {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background: #000;
    -webkit-transform: scale(0.82);
    transform: scale(0.82);
}

.icon-layer--top:before {
    border-bottom: 50px solid #000;
    top: -49px;
}

.icon-layer--top:after {
    border-top: 50px solid #000;
    bottom: -49px;
}

/* @keyframes rotateB  {
  to { transform: rotate(-360deg); }
}

@keyframes rotateD  {
  to { transform: rotate(360deg); }
} */
/*
@keyframes rotateC  {
  from { transform: scale(0.82) rotate(0deg); }
  to { transform: scale(0.82) rotate(-360deg); }
}
 */
.services-thumb--icon {
    height: 250px;
}

.block-services--title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 19px;
    margin-bottom: 10px;
}

.block-services--text {
    font-size: 18px;
}

/**** Section Bcg  ****/
.block-bcg-1, .block-bcg-2, .block-bcg-3, .block-bcg-4, .block-bcg-5 {
    width: 100%;
    /*height: 29.7vw;*/
    overflow: hidden;
    position: relative;
    margin-bottom: 4px;
    background: url("../images/bcg-1.jpg") no-repeat center center;
    background-size: contain;
    /* min-height: 300px;*/
}

.bbc-bg
{

    top:0px;
    left:0px;
    width:100%;
    display: inline-block;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); /* For Webkit browsers */
    filter: gray; /* For IE 6 - 9 */
    -webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */

}


.block-bcg-1:hover .bbc-bg, .block-bcg-2:hover .bbc-bg, .block-bcg-3:hover .bbc-bg, .block-bcg-4:hover .bbc-bg, .block-bcg-5:hover .bbc-bg
{
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");

}

.block-bcg-2 {
    background: url("../images/bcg-2.jpg") no-repeat center center;
    background-size: cover;
}

.block-bcg-3 {
    background: url("../images/bcg-3.jpg") no-repeat center center;
    background-size: cover;
}

.block-bcg-4 {
    background: url("../images/bcg-4.jpg") no-repeat center center;
    background-size: cover;
}

.block-bcg-5 {
    background: url("../images/bcg-5.jpg") no-repeat center center;
    background-size: cover;
}


.block-bcg-center {
    position: absolute;
    width: 370px;
    height: 180px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.block-bcg-title {
    color: #80d63a;
    font-family: 'AlegreSans-Regular';
    font-size: 60px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.block-bcg-link {
    width: 255px;
    height: 60px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    font-family: 'AlegreSans-Regular';
    text-align: center;
    border-radius: 3px;
    line-height: 60px;
    display: block;
    margin: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 0;
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
    font-family: 600;
}

.block-bcg-link::before,
.block-bcg-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 3px;
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
}

.block-bcg-link::before {
    border: 2px solid #62940a;
}

.block-bcg-link::after {
    background: #62940a;
}

.block-bcg-link:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.block-bcg-link::before,
.block-bcg-link:hover::after {
    -webkit-transform: scale3d(0.85, 0.7, 1);
    transform: scale3d(0.85, 0.7, 1);
}

.block-bcg-link:hover::after {
    background-color: #62940a;
}

/**** About ****/
.block-about {
    padding-bottom: 40px;
}

.title-section {
    padding: 10px 0;
    background: #ededed;
    margin-bottom: 30px;
}

.title-section .title-section--inner {
    display: block;
    color: #62940a;
    font-weight: bold;
    font-size: 30px;
}

.block-about--left {
    float: right;
    width: 37%;
    padding-top: 100px;
}

.block-about-left--inner {
    position: relative;
    background: url("../images/bus-bg.jpg") no-repeat;
    height: 385px;
    background-size: cover;
}

.block-about--logo {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 150px;
    height: 95px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.block-about--logo:before {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* .block-about--logo i {
  display: block;
  margin: 12px auto 5px;
  background-image: url(../images/sprite.png);
  background-position: -107px -158px;
  width: 54px;
  height: 30px;
} */

.block-about--logo b {
    font-size: 22px;
    font-family: 'BerlinSansFBDemi-Bold';
    color: #444444;
    text-transform: uppercase;
    line-height: 0.85;
    display: inline-block;
    vertical-align: middle;
}

.block-about--logo b span {
    display: block;
    letter-spacing: 3.1px;
    position: relative;
    left: 2px;
}


.block-about--testimonials
{
    display: inline-block;
    width:100%;
    margin-bottom:20px;
    margin-top:20px;
    /*height:400px;
    overflow-y:hidden;*/
}

.block-about--testimonials .test_slider
{
    display: inline-block;
    width:100%;

}

.slide_block
{
    display: inline-block;
    width:100%;
    margin-bottom:20px;
}

.slide_block b
{
    display: inline-block;
    width:100%;
    margin-bottom:5px;
    font-size:16px;
}

.slide_block u
{
    display: inline-block;
    width:100%;
    margin-bottom:5px;
    text-decoration: none;
    font-weight:bold;
    font-style: italic;
}

.slide_block img
{
    display: inline-block;
    margin-top:5px;
}

.bx-wrapper
{
    width:100% !important;
    margin:0;
    max-width:100% !important;
}

.bx-wrapper .bx-viewport
{
    background: none;
    box-shadow: none;
    border:none;
    left:0px;
}

.bx-wrapper .bx-pager
{
    display: none;
}

.block-about--right {
    float: left;
    width: 63%;
    padding-right: 50px;
}

.block-about--full
{
    float: left;
    width: 100%;
}

.title-block {
    font-size: 48px;
    font-family: 'AlegreSans-Regular';
    line-height: 1.2;
    margin-bottom: 10px;
}

.text-block, .text-block-indent, .footer-text {
    margin-bottom: 15px;
}

.text-block-indent {
    padding-left: 30px;
}

/**** Contact us ****/
.title-page {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0;
    text-transform: uppercase;
}

.text-block-center {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}


.contact_left
{
    display: inline-block;
    width:48%;
    float:left;
    text-align: left;
}


.contact_right
{
    display: inline-block;
    width:48%;
    float:right;
    text-align: left;
}

.contacts-info {
    margin: 60px auto 80px;
    text-align: left;
    height: 50px;

}

.ci_inside
{
    float:right;
}

.full_row
{
    width:100%;
    display: inline-block;
}

.contact_right .ci_inside
{
    float:left;
}

.contacts-info--item {
    display: inline-block;
    margin: 0 10%;
    padding-left: 55px;
    position: relative;
    margin-bottom:30px;
}

.contacts-info--item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background-image: url(../images/sprite.png);
    background-position: -189px -108px;
    width: 29px;
    height: 41px;
}

.contacts-info--item a {
    font-size: 18px;
}

.contact_left .contacts-info--item:nth-child(2):after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    background-image: url(../images/sprite.png);
    background-position: -133px -234px;
    width: 41px;
    height: 38px;
}

.contact_right  .contacts-info--item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    background-image: url(../images/sprite.png);
    background-position: -161px -158px;
    width: 35px;
    height: 28px;
}

.contact_right  .contacts-info--item a{
    border-bottom: 1px solid #62940a;
    color: #62940a;
}

.contact_right  .contacts-info--item a:hover {
    border-color: transparent;
}

.form-contact-us {
    padding-bottom: 40px;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.title-form {
    text-align: center;
    font-size: 24px;
    padding: 30px 0;
    text-transform: uppercase;
}

.row-capcha {
    display: table;
    table-layout: fixed;
    vertical-align: middle;
}

.row-capcha .capcha-img {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    text-align: center;
}

.row-capcha .capcha-img img {
    width: 100%;
    height: auto;
    max-width: 130px;
    display: block;
    margin: auto;
}

.row-capcha .capcha-img .reload-img {
    cursor: pointer;
    border-bottom: 1px solid #000;
}

.row-capcha .capcha-img .reload-img:hover {
    border-bottom: transparent;
}

.row-capcha .custom-field, .row-capcha .custom-select-field {
    display: table-cell;
    vertical-align: middle;
}

.btn-form-send {
    width: 100%;
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    visibility: visible;
}

.btn-form-send:hover {
    color: #62940a;
}

.block-map {
    padding-bottom: 80px;
}

/**** FAQ ****/
.block-faq {
    padding-bottom: 80px;
}

.block-page-banner {
    width: 100%;
    height: 183px;
    background: url("../images/faq-bg.jpg") no-repeat center top;
    background-size: cover;
    margin-bottom: 80px;
}

.block-page-banner .title-page {
    padding: 0;
    width: 99%;
    color: #fff;
}

.block-page-banner.fleet-bg {
    background: url("../images/fleet-bg.jpg") no-repeat center top;
    background-size: cover;
}

.block-faq--nav {
    margin-top: 50px;
}

.faq-nav--item {
    padding: 10px 0;
    border-bottom: 1px dotted #e6e6e6;
    position: relative;
    padding-right: 40px;
}

.faq-nav--item:before {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
}

.faq-nav--item:before {
    border: 6px solid transparent;
    border-top: 7px solid #80d63a;
    height: 7px;
}

.faq-nav--item:first-child {
    border-top: 1px dotted #e6e6e6;
}

.faq-nav--item.is-open:before {
    top: 14px;
    border: 6px solid transparent;
    border-bottom: 7px solid #8c8c8c;
}

.faq-nav-item--title {
    color: #62940a;
    font-size: 20px;
    cursor: pointer;
}

.faq-nav--hidden {
    padding-top: 20px;
    display: none;
}

.faq-nav-hidden--text {
    padding-left: 58px;
    font-size: 16px;
    position: relative;
}

.faq-nav-hidden--text:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/sprite.png);
    background-position: -294px -255px;
    width: 41px;
    height: 23px;
}

.faq-nav-hidden--text:after {
    bottom: 0;
    margin: auto;
}

/**** Fleet ****/
.block-fleet {
    clear: both;
}

.block-fleet::after {
    clear: both;
    content: "";
    display: table;
}

.block-fleet--wrap {
    clear: both;
    margin: 50px 0 80px;
}

.block-fleet--wrap::after {
    clear: both;
    content: "";
    display: table;
}

.block-fleet--wrap .row-all:nth-child(2) .block-fleet--left {
    float: right;
    background: url("../images/fleet-5.jpg") no-repeat center top;
    background-size: contain;
}

.block-fleet--wrap .row-all:nth-child(2) .block-fleet--right .fleet-right--inner {
    float: right;
}

.block-fleet--wrap .row-all:nth-child(2) .block-fleet--right .block-fleet--description {
    padding-right: 20px;
}

.block-fleet--wrap .row-all:nth-child(2) .block-fleet--right .block-fleet--title:after {
    content: '';
    position: absolute;
    left: auto;
    top: 0;
    background-image: url(../images/sprite.png);
    background-position: -294px -168px;
    width: 45px;
    height: 42px;
}

.block-fleet--wrap .row-all:nth-child(2) .block-fleet--right .block-fleet--title:after {
    right: 0;
}

.block-fleet--wrap .row-all:nth-child(3) .block-fleet--left {
    background: url("../images/fleet-3.jpg") no-repeat center top;
    background-size: contain;
}

.block-fleet--wrap .row-all:nth-child(4) .block-fleet--left {
    float: right;
    background: url("../images/fleet-4.jpg") no-repeat center top;
    background-size: contain;
}

.block-fleet--wrap .row-all:nth-child(4) .block-fleet--right .fleet-right--inner {
    float: right;
}

.block-fleet--wrap .row-all:nth-child(4) .block-fleet--right .block-fleet--description {
    padding-right: 20px;
}

.block-fleet--wrap .row-all:nth-child(4) .block-fleet--right .block-fleet--title:after {
    content: '';
    position: absolute;
    left: auto;
    top: 0;
    background-image: url(../images/sprite.png);
    background-position: -294px -168px;
    width: 45px;
    height: 42px;
}

.block-fleet--wrap .row-all:nth-child(4) .block-fleet--right .block-fleet--title:after {
    right: 0;
}

.block-fleet--wrap .row-all:nth-child(5) .block-fleet--left {
    background: url("../images/fleet-2.jpg") no-repeat center top;
    background-size: contain;
}

.fleet-right--inner {
    width: 100%;
    max-width: 600px;
}

.block-fleet--left {
    height: 560px;
    background: url("../images/fleet-1.jpg") no-repeat center top;
    background-size: contain;
    position: relative;
}

.block-fleet--left:hover:before,
.block-fleet--left:hover .fleet-gallery-popap {
    visibility: visible;
    opacity: 1;
}

.block-fleet--left:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width:  200px;
    height: 200px;
    margin: auto;
    background-position: center;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU3OTM4NUVERUJCNDExRTVCMTAxQkE3QzcyNkMzN0M4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU3OTM4NUVFRUJCNDExRTVCMTAxQkE3QzcyNkMzN0M4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTc5Mzg1RUJFQkI0MTFFNUIxMDFCQTdDNzI2QzM3QzgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTc5Mzg1RUNFQkI0MTFFNUIxMDFCQTdDNzI2QzM3QzgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6BwWdRAAAax0lEQVR42uxd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');
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.block-fleet--left .fleet-gallery-popap {
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    bottom: 15px;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.block-fleet--left .fleet-gallery-popap:hover {
    text-decoration: none;
}

.block-fleet--right {
    height: 560px;
    padding: 15px;
}

.block-fleet--title {
    font-size: 72px;
    line-height: 20px;
    padding: 33px 28px;
    color: #80d63a;
    font-family: 'AlegreSans-Regular';
    position: relative;
}

.block-fleet--title:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/sprite.png);
    background-position: -294px -210px;
    width: 42px;
    height: 45px;
}

.block-fleet--description {
    padding-left: 53px;
    margin: 10px 0 15px;
}


ul.block-fleet--description
{
    list-style: inherit;
    padding-left:100px;
}

.block-fleet--info {
    padding: 20px 0;
    margin-left: 55px;
    position: relative;
}

.block-fleet--info:before, .block-fleet--info:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 55px;
    background: #000;
    top: 0;
    left: 0;
}

.block-fleet--info:after {
    top: auto;
    bottom: 0;
}

.fleet-info--pas {
    font-size: 20px;
}

.fleet-info--pas span {
    font-size: 24px;
    font-weight: bold;
    vertical-align: -2px;
}

.fleet-info--pas span i {
    background-image: url(../images/sprite.png);
    background-position: -322px -94px;
    width: 19px;
    height: 19px;
    display: inline-block;
    margin: 0 15px;
    vertical-align: -2px;
}

.fleet-info--pas span.pas-ico b {
    background-image: url(../images/sprite.png);
    background-position: -294px -94px;
    width: 28px;
    height: 74px;
    display: inline-block;
    vertical-align: -25px;
    margin: 0 20px 0 40px;
}

.fleet-info--pas span.lag-ico b {
    background-image: url(../images/sprite.png);
    background-position: -231px -91px;
    width: 58px;
    height: 53px;
    display: inline-block;
    vertical-align: -15px;
    margin: 0 5px 0 36px;
}

.fleet-info--pas span.bag-ico b {
    background-image: url(../images/sprite.png);
    background-position: 0px -158px;
    width: 38px;
    height: 78px;
    display: inline-block;
    vertical-align: -20px;
    margin: 0 5px 0 36px;
}

.fleet-info--pas:first-child {
    margin-bottom: 10px;
}

.reserve-btn {
    display: inline-block;
    margin: 0px 0 0 1%;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    height: 40px;
    line-height: 40px;
    /*width: 255px;*/
    width:31%;
}

.reserve-btn:hover {
    color: #62940a;
}

/**** Services ****/
.block-serv--wrap {
    clear: both;
    margin: 50px 0 80px;
}

.block-serv--wrap::after {
    clear: both;
    content: "";
    display: table;
}

.block-serv--thumb {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%;
    min-height: 470px;
    position: relative;
    margin-bottom: 70px;
}

.block-serv--thumb:last-child {
    margin-right: 0;
}

.block-serv--thumb:nth-child(2n) {
    margin-right: 0;
}

.block-serv--thumb:nth-child(2n+1) {
    clear: left;
}

.block-serv--thumb:nth-child(2) .serv-thumb--img {
    background: url("../images/serv-2.jpg") no-repeat center top;
    background-size: cover;
}

.block-serv--thumb:nth-child(3) .serv-thumb--img {
    background: url("../images/serv-4.jpg") no-repeat center top;
    background-size: cover;
}

.block-serv--thumb:nth-child(4) .serv-thumb--img {
    background: url("../images/serv-5.jpg") no-repeat center top;
    background-size: cover;
}

.block-serv--thumb:nth-child(5) .serv-thumb--img {
    background: url("../images/serv-6.jpg") no-repeat center top;
    background-size: cover;
}

.block-serv--thumb:nth-child(6) .serv-thumb--img {
    background: url("../images/serv-6.jpg") no-repeat center top;
    background-size: cover;
}

.serv-thumb--title {
    font-size: 44px;
    font-family: 'AlegreSans-Regular';
    color: #80d63a;
    margin: 25px 0 15px;
    line-height: 1;
}

.serv-thumb--img {
    width: 100%;
    height: 183px;
    background: url("../images/serv-1.jpg") no-repeat center top;
    background-size: cover;
}

.serv-thumb--text {
    padding-bottom: 55px;
}

.serv-thumb--link {
    width: 150px;
    height: 45px;
    line-height: 45px;
    text-transform: lowercase;
    font-size: 18px;
    margin: auto;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

/**** Rates ****/
.block-rates {
    padding-bottom: 80px;
}

.block-rates .text-block-center {
    margin-bottom: 60px;
}

.clearfix {
    clear: both;
}

.clearfix::after {
    clear: both;
    content: "";
    display: table;
}

.block-rates--table {
    display: table;
    table-layout: fixed;
    width: 100%;
    font-size: 18px;
    margin: 10px 0;
}

.row-table-row {
    display: table-row;
}

.row-table-row.head-row {
    font-size: 16px;
}

.row-table-row:not(.head-row):hover .row-table-cell {
    background: #f6f6f6;
}

.row-table-row:not(.head-row):hover .row-table-cell .btn-reserw {
    visibility: visible;
}

.row-table-row:not(.head-row):hover .row-table-cell .btn-price {
    background: #000;
    color: #fff;
}

.row-table-row.head-row .row-table-cell:first-child {
    padding-left: 30px;
    border-color: #aaaaaa;
}

.row-table-row.head-row .row-table-cell:last-child {
    padding-right: 60px;
    border-color: #aaaaaa;
}

.row-table-cell {
    display: table-cell;
    vertical-align: middle;
    border-bottom: 1px solid #e6e6e6;
    width: 100%;
    height: 50px;
}

.row-table-cell:first-child {
    padding-left: 25px;
}

.row-table-cell:last-child {
    text-align: right;
}

.row-table-cell > * {
    display: inline-block;
}

.btn-reserw {
    width: 140px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #ec8a33;
    margin-right: 3px;
    visibility: hidden;
}

.btn-reserw:hover {
    opacity: 0.7;
}

.btn-price {
    padding: 0 10px;
    min-width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: transparent;
}

.field-hidden {
    display: none;
}

.block-rates-tabs--wrap {
    overflow: hidden;
    width: 100%;
    max-width: 935px;
    margin: auto;
}

.tab-rate-btn {
    display: inline-block;
    width: 33.333%;
    padding: 12px 0;
    float: left;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    padding-left: 130px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    height: 70px;
}

.tab-rate-btn.nth-rate-1, .tab-rate-btn.nth-rate-2 {
    border-right: 1px solid #fff;
}

.tab-rate-btn.nth-rate-1 i {
    background-image: url(../images/sprite.png);
    background-position: -51px -236px;
    width: 51px;
    height: 44px;
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 40px;
}

.tab-rate-btn.nth-rate-1:hover i {
    background-image: url(../images/sprite.png);
    background-position: 0px -236px;
    width: 51px;
    height: 44px;
}

.tab-rate-btn.nth-rate-2 i {
    background-image: url(../images/sprite.png);
    background-position: -294px -47px;
    width: 47px;
    height: 47px;
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 50px;
}

.tab-rate-btn.nth-rate-2:hover i {
    background-image: url(../images/sprite.png);
    background-position: -294px 0px;
    width: 47px;
    height: 47px;
}

.tab-rate-btn.nth-rate-3 i {
    background-image: url(../images/sprite.png);
    background-position: -38px -158px;
    width: 69px;
    height: 41px;
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 40px;
}

.tab-rate-btn.nth-rate-3:hover i {
    background-image: url(../images/sprite.png);
    background-position: -120px -108px;
    width: 69px;
    height: 41px;
}

.tab-rate-btn.nth-rate-1:after {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    left: 0;
    top: 0;
    background: #62940a;
}

.tab-rate-btn.nth-rate-3:after {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    right: 0;
    top: 0;
    background: #62940a;
}

.tab-rate-btn:before {
    content: '';
    position: absolute;
    z-index: -1;
    background: #62940a;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
}

.tab-rate-btn:hover {
    color: #62940a;
}

.tab-rate-btn:hover:before, .tab-rate-btn:hover:after {
    background: #80d63a;
}

.field-hidden:checked + .tab-rate-btn {
    color: #62940a;
}

.field-hidden:checked + .tab-rate-btn:before, .field-hidden:checked + .tab-rate-btn:after {
    background: #80d63a;
}

.field-hidden:checked + .nth-rate-1 i {
    background-image: url(../images/sprite.png);
    background-position: 0px -236px;
    width: 51px;
    height: 44px;
}

.field-hidden:checked + .nth-rate-2 i {
    background-image: url(../images/sprite.png);
    background-position: -294px 0px;
    width: 47px;
    height: 47px;
}

.field-hidden:checked + .nth-rate-3 i {
    background-image: url(../images/sprite.png);
    background-position: -120px -108px;
    width: 69px;
    height: 41px;
}

.tab-content {
    display: none;
}

#tabRadio-1:checked ~ #tabRate-1 {
    display: block;
}

#tabRadio-2:checked ~ #tabRate-2 {
    display: block;
}

#tabRadio-3:checked ~ #tabRate-3 {
    display: block;
}

.tab-content--text {
    margin: 15px 0;
    padding-left: 30px;
    font-size: 15px;
    color: #5c5b5b;
}

/**** Footer ****/
.footer-content {
    min-height: 385px;
    background: #242328;
    color: #cfcfcf;
    padding-top: 45px;
}

.footer-content--block {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
    padding: 0 0 0 60px;
}

.footer-content--block:last-child {
    margin-right: 0;
}

.footer-title {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer-title:before {
    width: 47px;
    height: 5px;
    background: #fff;
}

.footer-phone {
    font-size: 20px;
    display: inline-block;
}

.footer-phone b
{
    width:41px;
    height:41px;
    background-image:url('../images/sprite.png');
    background-position: -221px -232px;
    display: inline-block;
    margin-right:5px;
    vertical-align: middle;
}

.footer-fax
{
    font-size: 20px;
    display: inline-block;
    color:#cfcfcf !important;
    text-decoration: none !important;
}

.footer-fax b
{
    width:41px;
    height:41px;
    background-image:url('../images/sprite.png');
    background-position: -175px -232px;
    display: inline-block;
    margin-right:5px;
    vertical-align: middle;

}

.footer-btn {
    font-size: 26px;
    width: 170px;
    margin-left: 0;
}

.footer-nav--link {
    display: block;
    margin-bottom: 15px;
}

.footer-nav--link span {
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
}

.footer-nav--link span:hover {
    border-color: #62940a;
    color: #62940a;
}

.footer-social-nav {
    margin-bottom: 40px;
}

.footer-social-nav::after {
    clear: both;
    content: "";
    display: table;
}

.social-nav--icon {
    display: inline-block;
    margin-right: 10px;
    background-image: url(../images/sprite.png);
    background-position: -189px -199px;
    width: 29px;
    height: 29px;
}

.social-nav--icon:hover {
    background-image: url(../images/sprite.png);
    background-position: -160px -199px;
    width: 29px;
    height: 29px;
}

.social-nav--icon:nth-child(2) {
    background-image: url(../images/sprite.png);
    background-position: -69px -199px;
    width: 31px;
    height: 29px;
}

.social-nav--icon:nth-child(2):hover {
    background-image: url(../images/sprite.png);
    background-position: -38px -199px;
    width: 31px;
    height: 29px;
}

.social-nav--icon:nth-child(3) {
    background-image: url(../images/sprite.png);
    background-position: -130px -199px;
    width: 30px;
    height: 29px;
}

.social-nav--icon:nth-child(3):hover {
    background-image: url(../images/sprite.png);
    background-position: -100px -199px;
    width: 30px;
    height: 29px;
}

.social-nav--icon:nth-child(4) {
    background-image: url(../images/sprite.png);
    background-position: -218px -199px;
    width: 29px;
    height: 29px;
}

.social-nav--icon:nth-child(4):hover {
    background-image: url(../images/sprite.png);
    background-position: -247px -199px;
    width: 29px;
    height: 29px;
}

.footer-brand {
    display: block;
    margin-bottom: 20px;
    background-image: url(../images/sprite.png);
    background-position: -114px 0px;
    width: 117px;
    height: 52px;
}

.footer-brand.brand-aba {
    background-image: url(../images/sprite.png);
    background-position: 0px -108px;
    width: 120px;
    height: 50px;
}

.footer-content--bottom {
    background: url("../images/footer-linear.png") no-repeat center top;
    margin-top: 20px;
    clear: both;
    min-height: 45px;
}

.footer-content--bottom::after {
    clear: both;
    content: "";
    display: table;
}

.footer-content--bottom .row-half-left, .footer-content--bottom .block-fleet--left, .footer-content--bottom .block-fleet--right,
.footer-content--bottom .row-half-right {
    height: 45px;
}

.footer-content--bottom .row-half-right {
    text-align: right;
}

.footer-copyright {
    font-size: 10px;
    text-transform: uppercase;
    color: #707070;
}

textarea.error {
    background: #f981a8 !important;
}

select.error
{
    background: #f981a8 !important;
}

input.error {
    background: #f981a8 !important;
}

label.error {
    display: none !important;
}

/****  Media Quires ****/
@media screen and (min-width: 993px) and (max-width: 1100px) {
    .block-fleet--description {
        padding-left: 30px;
        margin: 10px 0 20px;
    }
    .block-fleet--info {
        margin-left: 30px;
    }
    .reserve-btn {
        /* margin: 20px 0 0 30px;*/
    }
    .block-fleet--title {
        font-size: 60px;
    }
    .fleet-info--pas span.bag-ico b {
        margin-left: 25px;
    }
    .head-top--nav .item-nav:last-child {
        margin-left: 0;
    }
}

@media screen and (max-width: 992px) {
    .block-bcg-center {
        top: 0 !important;
        bottom: 0 !important;
    }
    .block-fleet--left,
    .block-fleet--right {
        width: 100%;
        float: none;
    }
    .block-fleet--right {
        height: auto;
        margin-bottom: 20px;
        overflow: hidden;
    }
    .block-fleet--wrap .row-all:nth-child(2) .block-fleet--right .fleet-right--inner,
    .block-fleet--wrap .row-all:nth-child(4) .block-fleet--right .fleet-right--inner {
        float: none;
    }
    .fleet-right--inner {
        max-width: none;
    }
    .head-top--nav .item-nav:last-child {
        margin-left: 0;
    }
    .head-top-logo {
        width: 80px;
    }
    .head-top-logo--text {
        font-size: 18px;
        padding-top: 15px;
    }
    .head-top-logo--text span {
        letter-spacing: 3px;
        left: 1px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .head-top--nav .item-nav:last-child .link-nav {
        font-size: 14px;
    }
    .head-top--nav .item-nav:not(:last-child) .link-nav {
        font-size: 13px;
    }
    .head-top--nav .item-nav {
        margin-left: 2.9%;
    }
    .footer-content--block {
        padding-left: 15px;
    }
    .tab-rate-btn {
        padding: 18px 0;
        font-size: 14px;
        padding-left: 115px;
    }
    .head-top--nav .item-nav:last-child {
        top: 17px;
    }
}

@media screen and (min-width: 768px) {
    .head-top--nav {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    .block-rates {
        padding-bottom: 30px;
    }
    .btn-reserw {
        margin-bottom: 5px;
        margin-right: 0;
        width: 160px;
        display: none;
    }
    .tab-content--text {
        padding-left: 10px;
    }
    .row-table-row:not(.head-row):hover .row-table-cell .btn-reserw {
        display: inline-block;
    }
    .tab-rate-btn {
        padding: 17px 0;
        font-size: 16px;
        padding-left: 105px;
        width: 100%;
        border-bottom: 1px solid #fff;
    }
    .tab-rate-btn:before {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
    .tab-rate-btn:after {
        display: none;
    }
    .row-table-cell:first-child {
        padding-left: 10px;
    }
    .tab-rate-btn.nth-rate-1 i,
    .tab-rate-btn.nth-rate-2 i,
    .tab-rate-btn.nth-rate-3 i {
        left: 20px;
    }
    .tab-rate-btn.nth-rate-1, .tab-rate-btn.nth-rate-2 {
        border-right: none;
    }
    .menu-button {
        display: block;
    }
    .head-top-logo, .head-top--nav {
        display: block;
    }
    .head-top-logo {
        margin: 0 0 0 10px;
        position: relative;
        top: 6px;
    }
    .head-top-logo--text {
        font-size: 22px;
        padding-top: 20px;
    }
    .head-top-nav--wrap {
        margin-top: 11px;
        display: block;
    }
    .head-top--nav {
        text-align: center;
        background: #131313;
        padding: 30px 0;
        display: none;
    }
    .head-top--nav .item-nav {
        width: 100%;
        margin: 10px auto;
    }
    .head-top--dropdown,
    .item-nav.has-dropdown:nth-child(3) .head-top--dropdown {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 50px;
        bottom: auto;
    }
    .head-top-inner {
        padding: 0;
    }
    .head-top {
        min-height: 83px;
    }
    .banner-top--title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .block-services {
        padding: 0 0 50px;
    }
    .block-services--thumb,
    .block-services--thumb:nth-child(1),
    .block-services--thumb:nth-child(2) {
        width: 100%;
        background: transparent;
        padding: 50px 0 0;
    }
    .block-about--left,
    .block-about--right {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .footer-content--block {
        float: none;
        width: 100%;
        padding: 0;
        margin: 0 auto 25px;
        text-align: center;
    }
    .title-block {
        font-size: 35px;
    }
    .tap-tap {
        font-size: 40px;
    }
    .block-bcg-center {
        width: 100%;
    }
    .block-bcg-title {
        font-size: 45px;
    }
    .text-block-indent {
        padding-left: 10px;
    }
    .footer-btn {
        margin: auto;
    }
    .footer-brand {
        margin: 0 auto 20px;
    }
    .row-half-left, .block-fleet--left, .block-fleet--right, .row-half-right {
        width: 100%;
        float: none;
    }
    .footer-content--bottom {
        padding: 10px 0;
    }
    .footer-content--bottom .row-half-left, .footer-content--bottom .block-fleet--left, .footer-content--bottom .block-fleet--right, .footer-content--bottom .row-half-right {
        text-align: center;
        height: 25px;
    }
    .contacts-info--item {
        margin: 10px 0;
    }
    .block-map {
        padding-bottom: 0;
    }
    .block-map .container, .block-map .head-top-inner, .block-map .title-section .title-section--inner, .title-section .block-map .title-section--inner {
        padding: 0;
    }
    .faq-nav-item--title {
        font-size: 18px;
    }
    .faq-nav-hidden--text {
        padding-left: 10px;
    }
    .faq-nav-hidden--text:after {
        display: none;
    }
    .block-fleet--left {
        height: 300px;
    }
    .block-fleet--title {
        font-size: 45px;
        padding: 20px 0px 0;
        line-height: 1;
    }
    .block-fleet--title:after {
        display: none;
    }
    .block-fleet--description {
        padding: 0;
    }
    .block-fleet--info {
        margin-left: 0;
    }
    .reserve-btn {
        margin: 20px auto;
        display: block;
    }
    .fleet-info--pas span.pas-ico b {
        margin: 0 5px 0 15px;
    }
    .fleet-info--pas span.lag-ico b {
        margin: 0 5px 0 10px;
    }
    span.bag-ico {
        display: block;
        margin: 10px 0 0 60px;
    }
    .fleet-info--pas {
        font-size: 16px;
    }
    .block-page-banner .title-page {
        width: 98%;
    }
    .block-fleet--wrap {
        margin: 30px 0 20px;
    }
    .block-serv--thumb {
        width: 100%;
        margin: 0 0 30px 0;
        height: auto !important;
    }
    .serv-thumb--title {
        font-size: 35px;
    }
    .block-serv--wrap {
        margin: 40px 0 30px;
    }

    .contact_left, .contact_right
    {
        width:100%;
        text-align: center;
    }

    .ci_inside, .contact_right .ci_inside
    {
        width: 100%;
        text-align: center;
        max-width: 250px;
        display: inline-block;
        float: none;
    }

    .contacts-info--item
    {
        width:100%;
        margin-bottom:30px;
    }


}

@media screen and (max-width: 500px) {

    .contacts-info--item a
    {
        font-size:12px;
    }

    .block-bcg-center
    {
        height:100%;
        bottom:0px !important
    }

    .block-bcg-title {
        font-size: 35px;
        margin-bottom:0px;
    }

    .block-bcg-link
    {
        height:40px;
        line-height: 40px;
    }
}

@media screen and (max-height: 530px) {
    .banner-top {
        min-height: 530px;
    }


}