/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS and IE text size adjust after device orientation change,
*    without disabling user zoom.
*/
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    border: none;
    padding: 0;
}

html {
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
* Remove default margin.
*/
body {
    margin: 0;
    color: #000;
    background: #fff;
    font-size: 15px;
    line-height: 25px;
    font-family: 'robotoregular', Helvetica, Arial, sans-srif;
    position: relative;
}

/* 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,
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 */
    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.
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
*/
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
    background-color: transparent;
    text-decoration: underline;
    color: #4487b5;
}

a:hover {
    text-decoration: none;
}

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

/* 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 styling not present in IE 8/9.
*/
mark {
    background: #ff0;
    color: #000;
}

/**
* 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;
}

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

/* Grouping content
   ========================================================================== */
/**
* Remove margin
*/
figure {
    margin: 0;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 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-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.
*/
/**
* 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.
*/
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
    outline: none;
    background: transparent;
    border: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/**
* 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.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
* 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.
*/
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
* 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
*    (include `-moz` to future-proof).
*/
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /* 2 */
    box-sizing: content-box;
}

/**
* 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;
}

/**
* 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.
*/
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
* 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;
}

ul, ol {
    list-style-type: none;
}

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

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

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

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

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

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

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

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-doc1:before {
    content: "\e90a";
}

.icon-doc2:before {
    content: "\e90b";
}

.icon-close:before {
    content: "\e909";
}

.icon-play:before {
    content: "\e908";
}

.icon-arrow-l2:before {
    content: "\e906";
}

.icon-arrow-r2:before {
    content: "\e907";
}

.icon-arrow-drop:before {
    content: "\e903";
}

.icon-arrow-r-small:before {
    content: "\e904";
}

.icon-pointer:before {
    content: "\e905";
}

.icon-arrow-l:before {
    content: "\e900";
}

.icon-arrow-r:before {
    content: "\e901";
}

.icon-search:before {
    content: "\e902";
}

.wrap-dropdown {
    position: relative;
}

.wrap-dropdown .dropdown {
    position: relative;
    display: none;
    left: 0;
    min-width: 200px;
    padding: 15px 30px;
}

@media only screen and (max-width: 767px) {
    .wrap-dropdown .dropdown {
        padding: 10px;
    }
}

.wrap-dropdown .icon-arrow-drop {
    line-height: 40px;
    font-size: 10px;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
}

.wrap-dropdown.active {
    z-index: 5;
}

.wrap-dropdown.active .icon-arrow-drop {
    -webkit-transform: rotateZ(180deg);
    -khtml-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.wrap-c-dropdown {
    position: static;
}

.wrap-c-dropdown .c-dropdown {
    padding: 40px 0;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 100%;
    height: auto;
    background: #f0f3f5;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 50px, 0);
    -khtml-transform: translate3d(0, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    -webkit-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -khtml-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -moz-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -ms-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -o-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown .c-dropdown {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown .c-dropdown {
        position: relative;
        padding: 10px 0px;
        display: none;
        top: 0 !important;
        width: auto;
        margin: 0 -15px;
    }
}

.wrap-c-dropdown .c-dropdown .inner {
    padding: 0 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown .c-dropdown .inner {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown .c-dropdown .inner {
        padding: 0 15px;
        margin: 0 -10px;
    }
}

.wrap-c-dropdown.active {
    z-index: 5; padding-bottom: 650px !important;
}

.wrap-c-dropdown.active .icon-arrow-drop {
    -webkit-transform: rotateZ(-180deg);
    -khtml-transform: rotateZ(-180deg);
    -moz-transform: rotateZ(-180deg);
    -ms-transform: rotateZ(-180deg);
    -o-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
}

.wrap-c-dropdown.active .item:after {
    opacity: 1;
    -webkit-transition-delay: .325s;
    -moz-transition-delay: .325s;
    -ms-transition-delay: .325s;
    -o-transition-delay: .325s;
    transition-delay: .325s;
}

.wrap-c-dropdown.active .c-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown.active .c-dropdown {
        display: block;
    }
}

.wrap-c-dropdown2 {
    position: relative;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
}

.wrap-c-dropdown2 .btn-drop {
    text-decoration: none;
    pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2 .btn-drop {
        pointer-events: auto;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown2 .btn-drop {
        pointer-events: auto;
    }
}

.wrap-c-dropdown2 .icon-arrow-drop {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2 .icon-arrow-drop {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown2 .icon-arrow-drop {
        display: block;
    }
}

.wrap-c-dropdown2 .c-dropdown {
    position: absolute;
    top: calc(100% - 40px);
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    padding: 20px 20px 15px;
    -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2 .c-dropdown {
        top: calc(100% - 30px);
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown2 .c-dropdown {
        top: 0;
        position: relative;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

.wrap-c-dropdown2:hover {
    z-index: 5;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2:hover {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown2:hover {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

.wrap-c-dropdown2:hover .c-dropdown {
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2:hover .c-dropdown {
        opacity: 0;
        visibility: hidden;
    }
}

.wrap-c-dropdown2.active {
    z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2.active {
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown2.active {
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-c-dropdown2.active .c-dropdown {
        opacity: 1;
        visibility: visible;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-c-dropdown2.active .c-dropdown {
        display: block;
    }
}

.wrap-c-dropdown2.active .icon-arrow-drop {
    -webkit-transform: rotateZ(-180deg);
    -khtml-transform: rotateZ(-180deg);
    -moz-transform: rotateZ(-180deg);
    -ms-transform: rotateZ(-180deg);
    -o-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
}

.wrap-tooltip {
    position: relative;
}

.wrap-tooltip .tooltip {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    padding: 15px 30px;
    background: #fff;
    -webkit-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.21);
    box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.21);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 50px, 0);
    -khtml-transform: translate3d(0, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    -webkit-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -khtml-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -moz-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -ms-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    -o-transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
    transition: opacity 0.325s ease 0s, visibility 0.325s ease 0s, transform 0.325s ease 0s;
}

@media only screen and (max-width: 767px) {
    .wrap-tooltip .tooltip {
        padding: 10px;
    }
}

.wrap-tooltip:hover .tooltip {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.main-title {
    font-size: 120px;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    font-weight: normal;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-title {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .main-title {
        font-size: 40px;
    }
}

.main-title80 {
    font-size: 80px;
    line-height: 90px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 60px;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-title80 {
        font-size: 60px;
        line-height: 60px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .main-title80 {
        font-size: 32px;
        line-height: 40px;
        padding-bottom: 25px;
    }
}

.sub-title {
    font-size: 50px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: normal;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .sub-title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media only screen and (max-width: 767px) {
    .sub-title {
        font-size: 22px;
        line-height: 30px;
    }
}

.sub-title-light {
    font-size: 50px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .sub-title-light {
        font-size: 36px;
        line-height: 46px;
    }
}

@media only screen and (max-width: 767px) {
    .sub-title-light {
        font-size: 22px;
        line-height: 30px;
    }
}

.sub-title-light30 {
    text-align: center;
    color: #ea513e;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 60px;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .sub-title-light30 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .sub-title-light30 {
        padding-bottom: 20px;
        font-size: 24px;
        line-height: 30px;
    }
}

.sub-title-thin {
    font-size: 50px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .sub-title-thin {
        font-size: 36px;
        line-height: 46px;
    }
}

@media only screen and (max-width: 767px) {
    .sub-title-thin {
        font-size: 22px;
        line-height: 30px;
    }
}

.sub-title-thin span {
    display: block;
    color: #a5b7c9;
    font-size: 30px;
    line-height: 30px;
}

.section-title {
    font-size: 60px;
    line-height: 1;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .section-title {
        font-size: 46px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        font-size: 32px;
        padding-bottom: 20px;
    }
}

.round-arrow {
    display: block;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    color: #fff;
    line-height: 56px;
    text-decoration: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 34px;
}

@media only screen and (max-width: 767px) {
    .round-arrow {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 36px;
    }
}

.wrap-btn-more {
    text-align: center;
}

.wrap-btn-more .btn {
    display: inline-block;
    font-size: 20px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .wrap-btn-more .btn {
        font-size: 16px;
        line-height: 20px;
    }
}

.wrap-btn-more .btn .btn-txt {
    text-decoration: underline;
}

.wrap-btn-more .btn .round-arrow {
    margin: 0 auto 25px;
    border-color: #ea513e;
    color: #ea513e;
}

@media only screen and (max-width: 767px) {
    .wrap-btn-more .btn .round-arrow {
        margin-bottom: 5px;
    }
}

.wrap-btn-more .btn:hover .btn-txt {
    text-decoration: none;
}

.wrap-title-center {
    text-align: center;
    margin: 0 auto 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-title-center {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-title-center {
        margin-bottom: 30px;
    }
}

.wrap-title-center .section-title {
    padding-bottom: 60px;
    color: #ea513e;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-title-center .section-title {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-title-center .section-title {
        padding-bottom: 30px;
    }
}

.wrap-title-center p {
    font-size: 20px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #252627;
}

@media only screen and (max-width: 767px) {
    .wrap-title-center p {
        font-size: 16px;
        line-height: 24px;
    }
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .breadcrumbs {
        justify-content: flex-start;
    }
}

.breadcrumbs .icon {
    margin-right: 10px;
    color: #fff;
    line-height: 25px;
}

@media only screen and (max-width: 767px) {
    .breadcrumbs .icon {
        line-height: 20px;
        margin-right: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumbs .icon-pointer {
        font-size: 10px;
    }
}

.breadcrumbs .item {
    text-decoration: none;
    color: #fff;
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 25px;
}

@media only screen and (max-width: 767px) {
    .breadcrumbs .item {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.breadcrumbs .item .icon-arrow-r-small {
    font-size: 10px;
    margin-left: 8px;
}

@media only screen and (max-width: 767px) {
    .breadcrumbs .item .icon-arrow-r-small {
        font-size: 8px;
        margin-left: 5px;
    }
}

.double-col {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .double-col {
        display: block;
    }
}

.double-col .col {
    width: calc(50% - 10px);
}

@media only screen and (max-width: 767px) {
    .double-col .col {
        width: 100%;
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .double-col .col:first-child {
        padding-bottom: 20px;
    }
}

.bg-grey {
    background: #f0f3f5;
}

.wrap-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .wrap-video {
        margin-bottom: 20px;
    }
}

.wrap-video .video {
    position: relative;
}

.wrap-video .video iframe {
    width: 100%;
    height: 300px;
}

@media only screen and (max-width: 767px) {
    .wrap-video .video iframe {
        height: 55vw;
    }
}

.btn-red {
    color: #fff;
    width: 150px;
    display: block;
    border: 2px solid #ea513e;
    font-size: 16px;
    line-height: 36px;
    height: 40px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    text-decoration: none;
    -webkit-transition: background 0.325s ease 0s;
    -khtml-transition: background 0.325s ease 0s;
    -moz-transition: background 0.325s ease 0s;
    -ms-transition: background 0.325s ease 0s;
    -o-transition: background 0.325s ease 0s;
    transition: background 0.325s ease 0s;
    text-align: center;
}

.btn-red:hover {
    background: #ea513e;
}

.btn-blue {
    color: #fff;
    width: 150px;
    display: block;
    border: 2px solid #4487b5;
    font-size: 16px;
    line-height: 36px;
    height: 40px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    text-decoration: none;
    -webkit-transition: background 0.325s ease 0s;
    -khtml-transition: background 0.325s ease 0s;
    -moz-transition: background 0.325s ease 0s;
    -ms-transition: background 0.325s ease 0s;
    -o-transition: background 0.325s ease 0s;
    transition: background 0.325s ease 0s;
    text-align: center;
}

.btn-blue:hover {
    background: #4487b5;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

/**
 * Swiper 4.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2017 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 13, 2017
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
    visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: .2s top, .2s -webkit-transform;
    transition: .2s top, .2s -webkit-transform;
    -o-transition: .2s transform, .2s top;
    transition: .2s transform, .2s top;
    transition: .2s transform, .2s top, .2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s left, .2s -webkit-transform;
    transition: .2s left, .2s -webkit-transform;
    -o-transition: .2s transform, .2s left;
    transition: .2s transform, .2s left;
    transition: .2s transform, .2s left, .2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s right, .2s -webkit-transform;
    transition: .2s right, .2s -webkit-transform;
    -o-transition: .2s transform, .2s right;
    transition: .2s transform, .2s right;
    transition: .2s transform, .2s right, .2s -webkit-transform;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px;
}

.wrap-menu {
    padding-top: 55px;/*padding-top: 45px;*/
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-menu {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-menu {
        padding: 0;
    }
}

.wrap-menu .menu {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-menu .menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-menu .menu {
        display: block;
    }
}

.wrap-menu .wrap-item {
    margin-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-menu .wrap-item {
        margin: 0 0 10px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-menu .wrap-item {
        margin: 0 0 10px;
    }
}

.wrap-menu .wrap-item:hover .item, .wrap-menu .wrap-item.active .item {
    background: #ea513e;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-menu .wrap-item:hover .item, .wrap-menu .wrap-item.active .item {
        background: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-menu .wrap-item:hover .item, .wrap-menu .wrap-item.active .item {
        background: #fff;
    }
}

.wrap-menu .item {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-decoration: underline;
    color: #fff;
    padding: 0 20px;
    display: block;
    position: relative;
    -webkit-transition: background 0.325s ease 0s;
    -khtml-transition: background 0.325s ease 0s;
    -moz-transition: background 0.325s ease 0s;
    -ms-transition: background 0.325s ease 0s;
    -o-transition: background 0.325s ease 0s;
    transition: background 0.325s ease 0s;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-menu .item {
        padding: 0;
        color: #252627;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-menu .item {
        padding: 0;
        color: #252627;
    }
}

.wrap-menu .item .icon-arrow-drop {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-menu .item .icon-arrow-drop {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-menu .item .icon-arrow-drop {
        display: block;
    }
}

.wrap-menu .wrap-search .item {
    padding: 0;
    width: 40px;
    text-align: center;
    text-decoration: none;
}

.wrap-menu .wrap-search .dropdown {
    left: auto;
    right: 0;
}

.f-menu {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .f-menu {
        flex-wrap: wrap;
        width: 60%;
    }
}

@media only screen and (max-width: 767px) {
    .f-menu {
        display: none;
    }
}

.f-menu .menu {
    padding-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .f-menu .menu {
        padding: 0 0 20px;
        width: 50%;
    }
}

.f-menu .menu:last-child {
    padding-right: 0;
}

.f-menu a {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

.f-menu .title {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}

.device-menu {
    display: none;
    z-index: 150;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    -khtml-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: all 0.325s ease 0s;
    -khtml-transition: all 0.325s ease 0s;
    -moz-transition: all 0.325s ease 0s;
    -ms-transition: all 0.325s ease 0s;
    -o-transition: all 0.325s ease 0s;
    transition: all 0.325s ease 0s;
    background: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .device-menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .device-menu {
        display: block;
    }
}

.device-menu .inner {
    padding-top: 25px;
    height: 100%;
    overflow: auto;
    opacity: 0;
    -webkit-transition: opacity 0.325s ease 0s;
    -khtml-transition: opacity 0.325s ease 0s;
    -moz-transition: opacity 0.325s ease 0s;
    -ms-transition: opacity 0.325s ease 0s;
    -o-transition: opacity 0.325s ease 0s;
    transition: opacity 0.325s ease 0s;
}

@media only screen and (max-width: 767px) {
    .device-menu .inner {
        padding-top: 15px;
    }
}

.show-menu .device-menu .inner {
    -webkit-transition-delay: .325s;
    -moz-transition-delay: .325s;
    -ms-transition-delay: .325s;
    -o-transition-delay: .325s;
    transition-delay: .325s;
    opacity: 1;
}

.device-menu .btn-menu {
    top: 25px;
    right: 15px;
}

@media only screen and (max-width: 767px) {
    .device-menu .btn-menu {
        right: 5px;
    }
}

.device-menu .logo {
    margin-bottom: 30px;
}

.show-menu .device-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -khtml-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.device-menu .sub-menu li a {
    white-space: pre-wrap;
}

html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    overflow: hidden;
}

.inner {
    max-width: 1260px;
    padding: 0 40px;
    position: relative;
    display: block;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .inner {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 767px) {
    .inner {
        padding: 0 15px;
    }
}

.outlay {
    position: relative;
    min-height: 100vh;
    margin-bottom: -284px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .outlay {
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
    .outlay {
        margin: 0;
    }
}

.outlay:after {
    content: '';
    display: block;
    height: 284px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .outlay:after {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .outlay:after {
        display: none;
    }
}

.content {
    padding-top: 110px;
}

.main-intro {
    margin-top: -110px;
    height: 100vh;
    width: 100%;
    position: relative;
    min-height: 650px;
}

@media only screen and (max-width: 767px) {
    .main-intro {
        min-height: 420px;
    }
}

.main-intro .inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    z-index: 5;
}

.main-intro .description {
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 10vw;
}

.main-intro .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.main-intro.main-intro_small {
    height: auto;
    padding: 140px 0 40px;
    min-height: 1px;
}

@media only screen and (max-width: 767px) {
    .main-intro.main-intro_small {
        padding: 120px 0 20px;
    }
}

.main-intro.main-intro_small .description {
    max-width: 820px;
    padding-bottom: 0;
}

.main-intro.main-intro_small .sub-title-thin {
    padding-bottom: 20px;
}

.main-intro.centered .inner {
    align-items: center;
}

.main-intro.centered .description {
    padding-bottom: 0;
}

.aboutus {
    padding: 80px 0 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .aboutus {
        padding: 60px 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .aboutus {
        padding: 40px 0 30px;
    }
}

.aboutus .wrap-title-center {
    max-width: 620px;
}

.aboutus ul {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-bottom: 40px;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .aboutus ul {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .aboutus ul {
        flex-wrap: wrap;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .aboutus ul {
        flex-wrap: wrap;
        padding-bottom: 15px;
        text-align: left;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .aboutus ul li {
        width: 33.33%;
        padding-bottom: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .aboutus ul li {
        width: 33.33%;
        padding-bottom: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .aboutus ul li {
        width: 100%;
        display: flex;
        align-items: center;
        padding-bottom: 20px;
    }
}

.aboutus ul .wrap-img {
    width: 100px;
    display: block;
    margin: 0 auto 30px;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .aboutus ul .wrap-img {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .aboutus ul .wrap-img {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .aboutus ul .wrap-img {
        margin: 0 20px 0 0;
        width: 80px;
    }
}

.aboutus ul .wrap-img img {
    width: 100%;
    display: block;
}

.aboutus ul p {
    color: #595e63;
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .aboutus ul p {
        font-size: 14px;
        line-height: 20px;
        width: calc(100% - 100px);
    }
}

.about-product {
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    position: relative;
    padding: 150px 0 140px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-product {
        padding: 80px 0 50px;
    }
}

@media only screen and (max-width: 767px) {
    .about-product {
        padding: 50px 0 30px;
    }
}

.about-product:before {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .about-product:before {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-product:before {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .about-product:before {
        display: block;
    }
}

.about-product .inner {
    z-index: 3;
}

.about-product .wrap-title {
    width: 400px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .about-product .wrap-title {
        width: 100%;
        padding-bottom: 25px;
    }
}

.about-product .wrap-title p {
    font-size: 20px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .about-product .wrap-title p {
        font-size: 16px;
        line-height: 20px;
    }
}

.about-product .section-title {
    padding-bottom: 40px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .about-product .section-title {
        padding-bottom: 20px;
    }
}

.about-product .description {
    width: 400px;
    padding-bottom: 55px;
}

@media only screen and (max-width: 767px) {
    .about-product .description {
        width: 100%;
        padding-bottom: 25px;
    }
}

.about-product .description .wrap-name {
    padding-bottom: 25px;
}

.about-product .description .wrap-name p {
    color: #fff;
    font-size: 23px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .about-product .description .wrap-name p {
        font-size: 20px;
        line-height: 24px;
    }
}

.about-product .description .wrap-name p .val {
    color: #252627;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .about-product .description .wrap-name p .val {
        color: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-product .description .wrap-name p .val {
        color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .about-product .description .wrap-name p .val {
        color: #fff;
    }
}

.about-product .description .s-title {
    font-size: 15px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
    color: #252627;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .about-product .description .s-title {
        color: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-product .description .s-title {
        color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .about-product .description .s-title {
        color: #fff;
    }
}

.about-product .description p {
    font-size: 15px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #595e63;
    padding-bottom: 15px;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .about-product .description p {
        color: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-product .description p {
        color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .about-product .description p {
        color: #fff;
    }
}

.about-product .description a {
    font-size: 15px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #595e63;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .about-product .description a {
        color: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-product .description a {
        color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .about-product .description a {
        color: #fff;
    }
}

.about-product .wrap-btn-more .btn {
    display: flex;
    text-decoration: none;
    align-items: center;
    color: #fff;
}

.about-product .wrap-btn-more .btn .round-arrow {
    margin: 0 20px 0 0;
    color: #fff;
    border-color: #fff;
}

.about-product .wrap-btn-more .btn .btn-txt {
    font-size: 15px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

.about-product .wrap-btn-more .btn:hover .btn-txt {
    text-decoration: none;
}

.partners {
    padding: 80px 0 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .partners {
        padding: 60px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .partners {
        padding: 40px 0 0;
    }
}

.partners .wrap-title-center {
    max-width: 820px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px;
}

@media only screen and (max-width: 767px) {
    .partners-grid {
        margin: 0;
    }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .partners-grid {
        margin: 0 -10px;
    }
}

.partners-grid .wrap-item {
    width: 33.33%;
    padding: 0 10px 60px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .partners-grid .wrap-item {
        width: 100%;
        padding: 0 0 20px;
    }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .partners-grid .wrap-item {
        width: 50%;
        padding: 0 10px 20px;
    }
}

.partners-grid .wrap-item .wrap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e7ebee;
    height: 250px;
    margin-bottom: 20px;
    background: #fff;
    cursor: pointer;
    transition: border-color .3s ease;
}

.partners-grid .wrap-item .wrap-img:hover {
    border-color: #4487b5;
}

@media only screen and (max-width: 767px) {
    .partners-grid .wrap-item .wrap-img {
        height: 200px;
        max-width: 250px;
        width: 100%;
        margin: 0 auto 10px;
    }
}

.partners-grid .wrap-item .wrap-img img {
    display: block;
    max-width: 80%;
    max-height: 80%;
}

@media only screen and (max-width: 767px) {
    .partners-grid .wrap-item .wrap-img img {
        max-width: 70%;
        max-height: 70%;
    }
}

.partners-grid .wrap-item p {
    color: #595e63;
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    letter-spacing: .5px;
}

@media only screen and (max-width: 767px) {
    .partners-grid .wrap-item p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.partners-slider {
    display:block;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 40px;
}

.partners-slider .wrap-item {
    padding: 0 10px 0;
    text-align: center;
}

.partners-slider .wrap-item .wrap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e7ebee;
    height: 250px;
    margin-bottom: 20px;
    background: #fff;
    cursor: pointer;
    transition: border-color .3s ease;
}

.partners-slider .wrap-item .wrap-img:hover {
    border-color: #4487b5;
}

.partners-slider .wrap-item .wrap-img img {
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.partners-slider .wrap-item p {
    color: #595e63;
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    letter-spacing: .5px;
}

.partners-slider .slick-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.partners-slider .slick-dots li {
    margin: 0 3px;
    width: 12px;
    height: 12px;
    border: 2px solid #acb2b7;
    background: transparent;
    border-radius: 100%;
    opacity: 1;
    cursor: pointer;
    text-indent: -9999px;
}

.partners-slider .slick-dots li.slick-active {
    background: #acb2b7;
}

.product-btns {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .product-btns {
        display: block;
    }
}

.product-btns .btn {
    width: 210px;
    padding: 0 10px;
    text-decoration: none;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .product-btns .btn {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        text-align: left;
    }
}

.product-btns .btn.active .wrap-img img, .product-btns .btn:hover .wrap-img img {
    opacity: 0;
}

.product-btns .btn.active .wrap-img img:last-child, .product-btns .btn:hover .wrap-img img:last-child {
    opacity: 1;
}

.product-btns .btn p {
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    letter-spacing: .5px;
}

@media only screen and (max-width: 767px) {
    .product-btns .btn p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        width: calc(100% - 80px);
    }
}

.product-btns .wrap-img {
    position: relative;
    display: block;
    width: 82px;
    height: 82px;
    margin: 0 auto 15px;
}

@media only screen and (max-width: 767px) {
    .product-btns .wrap-img {
        width: 60px;
        height: 60px;
        margin: 0 20px 0 0;
    }
}

.product-btns .wrap-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
    -webkit-transition: opacity 0.325s ease 0s;
    -khtml-transition: opacity 0.325s ease 0s;
    -moz-transition: opacity 0.325s ease 0s;
    -ms-transition: opacity 0.325s ease 0s;
    -o-transition: opacity 0.325s ease 0s;
    transition: opacity 0.325s ease 0s;
}

.product-btns .wrap-img img:last-child {
    opacity: 0;
}

.product-btns .wrap-img img:first-child {
    opacity: 1;
}

.catalog {
    position: relative;
}

.catalog .inner {
    position: static;
    padding: 60px 40px 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog .inner {
        padding: 40px 25px;
    }
}

@media only screen and (max-width: 767px) {
    .catalog .inner {
        padding: 30px 15px;
    }
}

.catalog-list {
    display: flex;
    flex-wrap: wrap;
}

.catalog-list.catalog_type1 {
    padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .catalog-list.catalog_type1 {
        padding-bottom: 0;
    }
}

.catalog-list.catalog_type2 {
   /* padding-bottom: 650px;*/
}

@media only screen and (max-width: 767px) {
    .catalog-list.catalog_type2 {
        padding-bottom: 0;
    }
}

.catalog-list .wrap-item {
    width: 25%;
    padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog-list .wrap-item {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .catalog-list .wrap-item {
        padding-bottom: 10px;
        width: 100%;
    }
}

.catalog-list .item {
    display: block;
    text-decoration: none;
    background: transparent;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .catalog-list .item {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
}

.catalog-list .item:after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    margin-left: -14px;
    width: 0;
    height: 0;
    border: 14px solid transparent;
    border-bottom-color: #f0f3f5;
    opacity: 0;
    -webkit-transition: opacity 0.1s ease 0s;
    -khtml-transition: opacity 0.1s ease 0s;
    -moz-transition: opacity 0.1s ease 0s;
    -ms-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog-list .item:after {
        bottom: -30px;
    }
}

@media only screen and (max-width: 767px) {
    .catalog-list .item:after {
        bottom: -3px;
        left: 120px;
        margin-left: -60px;
    }
}

.catalog-list .item .wrap-icon {
    height: 190px;
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog-list .item .wrap-icon {
        height: 160px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .catalog-list .item .wrap-icon {
        height: 120px;
        width: 120px;
        margin-bottom: 15px;
    }
}

.catalog-list .item .wrap-icon img {
    display: block;
    max-width: 90%;
    max-height: 90%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog-list .item .wrap-icon img {
        max-height: 70%;
        max-width: 70%;
    }
}

.catalog-list .item .title {
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    color: #252627;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 88%;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog-list .item .title {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .catalog-list .item .title {
        max-width: 100%;
        width: calc(100% - 120px);
        padding: 10px;
        font-size: 14px;
        line-height: 20px;
    }
}

.catalog-list .item .title .icon-arrow-drop {
    font-size: 6px;
    margin-left: 5px;
    position: relative;
    line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .catalog-list .item .title .icon-arrow-drop {
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .catalog-list .item .title .icon-arrow-drop {
        line-height: 20px;
    }
}

.catalog-list .sub-list {
    display: flex;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list {
        flex-wrap: wrap;
    }
}

.catalog-list .sub-list .col {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list .col {
        width: 100%;
    }
}

.catalog-list .sub-list .col:first-child {
    padding-right: 20px;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list .col:first-child {
        padding: 0 15px 20px;
    }
}

.catalog-list .sub-list .col:last-child {
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list .col:last-child {
        padding: 0 15px;
    }
}

.catalog-list .sub-list .wrap-title {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.catalog-list .sub-list .wrap-title img {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    position: relative;
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list .wrap-title img {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

.catalog-list .sub-list ul li {
    padding-bottom: 15px;
}

.catalog-list .sub-list h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    padding-bottom: 5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #252627;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list h5 {
        font-size: 16px;
        line-height: 24px;
    }
}

.catalog-list .sub-list p {
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #252627;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list p {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalog-list .sub-list a {
    display: block;
    font-size: 16px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #4487b5;
}

@media only screen and (max-width: 767px) {
    .catalog-list .sub-list a {
        font-size: 14px;
        line-height: 20px;
    }
}

.catalog-list .wrap-c-dropdown2 ul .title {
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #252627;
}

@media only screen and (max-width: 767px) {
    .catalog-list .wrap-c-dropdown2 ul .title {
        font-size: 16px;
        line-height: 24px;
    }
}

.product-description {
    padding: 20px 0 0;
}

.product-description .inner {
    padding-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .inner {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .inner {
        padding-top: 20px;
    }
}

.product-description .inner:last-child {
    padding-bottom: 60px;
    padding-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .inner:last-child {
        padding-bottom: 40px;
        padding-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .inner:last-child {
        padding-bottom: 20px;
        padding-top: 20px;
    }
}

.product-description .description-nav {
    padding-bottom: 0;
}

.product-description .intro {
    padding-bottom: 40px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .intro {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .intro {
        padding-bottom: 20px;
    }
}

.product-description .intro p {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: .5px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .product-description .intro p {
        font-size: 16px;
        line-height: 20px;
    }
}

.product-description .row {
    padding-bottom: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid #acb2b7;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .row {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .row {
        margin-bottom: 20px;
    }
}

.product-description .row:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.product-description .row.centered {
    text-align: center;
}

.product-description .row.centered .wrap-icon {
    margin: 0 auto 35px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .row.centered .wrap-icon {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .row.centered .wrap-icon {
        margin-bottom: 15px;
    }
}

.product-description .row.centered ul li:before {
    position: relative;
    top: 0;
    margin-right: 8px;
}

@media only screen and (max-width: 767px) {
    .product-description .row.centered ul li:before {
        top: -1px;
    }
}

.product-description .row.description-gallery {
    padding-bottom: 40px;
    margin-bottom: 40px;
    padding-top: 50px;
}

@media only screen and (max-width: 767px) {
    .product-description .row.description-gallery {
        padding: 20px 0;
        margin-bottom: 20px;
    }
}

.product-description .row p {
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}

.product-description .row p:last-child {
    margin-bottom: 0;
}

.product-description .row a {
    color: #4487b5;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}

.product-description .row a:last-child {
    margin-bottom: 0;
}

.product-description .wrap-icon {
    display: block;
    width: 100px;
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .wrap-icon {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .wrap-icon {
        width: 60px;
        margin-bottom: 15px;
    }
}

.product-description .wrap-icon img {
    width: 100%;
    display: block;
}

.product-description .title {
    color: #252627;
    font-size: 23px;
    line-height: 30px;
    display: block;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description .title {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .title {
        padding-bottom: 10px;
        font-size: 20px;
        line-height: 25px;
    }
}

.product-description ul {
    padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .product-description ul {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description ul {
        padding-bottom: 20px;
    }
}

.product-description ul:last-child {
    padding-bottom: 0;
}

.product-description ul li {
    position: relative;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
    padding-left: 18px;
}

@media only screen and (max-width: 767px) {
    .product-description ul li {
        font-size: 14px;
        line-height: 20px;
        padding-left: 15px;
    }
}

.product-description ul li:before {
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 9px;
    content: '';
    background: #595e63;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 767px) {
    .product-description ul li:before {
        width: 4px;
        height: 4px;
        top: 7px;
    }
}

.product-description ul ul {
    padding: 10px 0 0;
}

.product-description ul ul li:before {
    background: #acb2b7;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .product-description .double-col {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .double-col {
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .product-description .col {
        width: 100%;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .col {
        width: 100%;
        padding-bottom: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .product-description .col:first-child {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .product-description .col:first-child {
        padding-bottom: 30px;
    }
}

.product-description .col.img-l {
    position: relative;
    padding-left: 130px;
}

@media only screen and (max-width: 767px) {
    .product-description .col.img-l {
        padding-left: 80px;
    }
}

.product-description .col.img-l .wrap-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.product-description .col.img-l .wrap-icon-static { position: static; margin-left: -130px; float: left; }

.wrap-description-nav {
    padding-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-description-nav {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-description-nav {
        padding-top: 20px;
    }
	.product-description .col.img-l .wrap-icon-static { margin-left: -80px; }
}

.wrap-description-nav .title {
    text-align: center;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
}

.description-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .description-nav {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .description-nav {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .description-nav {
        padding-bottom: 10px;
    }
}

.description-nav .btn {
    font-size: 16px;
    line-height: 24px;
    color: #4487b5;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    display: block;
    margin: 0 5px 10px;
}

.description-nav .btn.active {
    color: #ea513e;
    text-decoration: none;
}

.description-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.description-gallery .wrap-item {
    width: calc(50% - 10px);
    padding-bottom: 20px;
	margin: 0 auto;
}

.gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.gallery .btn-zoom { display: block; width: calc(47% - 10px); padding-bottom: 20px; margin: 0; }
.gallery .btn-zoom img { width: 100%; height: auto; margin: 0; display: block; }

@media only screen and (max-width: 767px) {
    .description-gallery .wrap-item {
        width: 100%;
    }
	.gallery .btn-zoom { width: 100%; }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .description-gallery .wrap-item {
        width: calc(50% - 5px);
    }
}

.description-gallery .item {
    text-decoration: none;
    position: relative;
    display: block;
}

.description-gallery .item img {
    display: block;
    width: 100%;
}

.description-gallery .btn-zoom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media only screen and (max-width: 767px) {
    .description-gallery .btn-zoom {
        width: 80px;
        height: 80px;
        bottom: 0;
        top: auto;
        left: 50%;
        margin-left: -40px;
    }
}

.description-gallery .icon-search {
    position: absolute;
    bottom: 15px;
    font-size: 40px;
    left: 50%;
    margin-left: -20px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .description-gallery .icon-search {
        font-size: 24px;
        margin-left: -12px;
    }
}

.description-table {
    background: #f5f7f8;
}

.description-table .inner {
    padding: 60px 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .description-table .inner {
        padding: 40px 25px;
    }
}

@media only screen and (max-width: 767px) {
    .description-table .inner {
        padding: 30px 15px;
    }
}

.description-table .title {
    text-align: center;
}

.description-table table {
    width: 100%;
}

.description-table table th, .description-table table td {
    padding: 5px 20px;
    text-align: left;
}

.description-table table th:first-child, .description-table table td:first-child {
    width: calc(100% - 320px);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .description-table table th:first-child, .description-table table td:first-child {
        width: calc(100% - 200px);
    }
}

@media only screen and (max-width: 767px) {
    .description-table table th:first-child, .description-table table td:first-child {
        width: calc(100% - 110px);
    }
}

.description-table table th:last-child, .description-table table td:last-child {
    width: 320px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .description-table table th:last-child, .description-table table td:last-child {
        width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .description-table table th:last-child, .description-table table td:last-child {
        width: 110px;
    }
}

.description-table table th {
    background: #d8dee2;
    font-size: 16px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #252627;
}

@media only screen and (max-width: 767px) {
    .description-table table th {
        font-size: 14px;
        line-height: 20px;
    }
}

.description-table table td {
    border-bottom: 1px solid #acb2b7;
    font-size: 16px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #595e63;
}

@media only screen and (max-width: 767px) {
    .description-table table td {
        font-size: 14px;
        line-height: 20px;
    }
}

.about-drops {
    padding: 40px 0;
}

.about-drops .wrap-dropdown {
    border-bottom: 1px solid #acb2b7;
}

.about-drops .wrap-dropdown:last-child {
    border-bottom: none;
}

.about-drops .wrap-dropdown.active .btn-drop .i-plus:after {
    display: none;
}

.about-drops .dropdown {
    padding: 0 0 40px;
}

.about-drops .btn-drop {
    padding: 40px 0;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    text-decoration: none;
    max-width: 410px;
    padding-right: 30px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .about-drops .btn-drop {
        font-size: 24px;
        line-height: 30px;
        padding: 20px 0;
        max-width: 100%;
    }
}

.about-drops .btn-drop .i-plus {
    width: 26px;
    height: 26px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -13px;
    display: block;
}

.about-drops .btn-drop .i-plus:after, .about-drops .btn-drop .i-plus:before {
    content: '';
    background: #346c94;
    position: absolute;
}

.about-drops .btn-drop .i-plus:after {
    width: 2px;
    height: 26px;
    left: 12px;
    top: 0;
}

.about-drops .btn-drop .i-plus:before {
    left: 0;
    top: 12px;
    width: 26px;
    height: 2px;
}

@media only screen and (max-width: 767px) {
    .about-drops .double-col {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .about-drops .double-col .col {
        width: 100%;
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-drops .double-col .col:first-child {
        padding-bottom: 20px;
    }
}

.about-drops .title {
    font-size: 20px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
    letter-spacing: .5px;
    color: #595e63;
    padding-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .about-drops .title {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0;
        padding-bottom: 15px;
    }
}

.about-drops p {
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #595e63;
    padding-bottom: 25px;
    letter-spacing: .5px;
}

@media only screen and (max-width: 767px) {
    .about-drops p {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0;
        padding-bottom: 15px;
    }
}

.about-drops a {
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 25px;
    letter-spacing: .5px;
}

@media only screen and (max-width: 767px) {
    .about-drops a {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0;
        padding-bottom: 15px;
    }
}

.about-drops img {
    display: block;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .about-drops .simple-slider {
        max-width: 420px;
        margin: 0 auto;
    }
}

.about-drops + .partners, .about-product + .partners {
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about-drops + .partners, .about-product + .partners {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .about-drops + .partners, .about-product + .partners {
        padding-bottom: 30px;
    }
}

.news {
    padding: 80px 0 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .news {
        padding: 60px 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .news {
        padding: 40px 0 30px;
    }
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -10px 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .news-grid {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .news-grid {
        margin: 0 0 20px;
    }
}

.wrap-news-item {
    width: 33.33%;
    padding: 0 10px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-news-item {
        width: 50%;
        padding: 0 10px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-news-item {
        width: 100%;
        padding: 0 0 20px;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .wrap-news-item {
        width: 50%;
        padding: 0 10px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-news-item:last-child {
        margin-bottom: 0;
    }
}

.wrap-news-item .wrap-img {
    display: block;
    padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-news-item .wrap-img {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-news-item .wrap-img {
        padding-bottom: 20px;
    }
}

.wrap-news-item .wrap-img img {
    display: block;
    width: 100%;
}

.wrap-news-item h3 {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 10px;
    color: #252627;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .wrap-news-item h3 {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
        padding-bottom: 5px;
    }
}

.wrap-news-item .date {
    color: #ea513e;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .wrap-news-item .date {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        padding-bottom: 5px;
    }
}

.wrap-news-item p {
    color: #595e63;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .wrap-news-item p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        padding-bottom: 5px;
    }
}

.wrap-news-item a {
    color: #4487b5;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .wrap-news-item a {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.wrap-gallery-grid {
    padding: 0px 0;
padding-bottom:80px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-gallery-grid {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-gallery-grid {
        padding: 20px 0;
    }
}

.wrap-gallery-grid p {
    font-size: 16px;
    line-height: 25px;
    color: #595e63;
    padding-bottom: 15px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.gallery-grid {
    max-width: 780px;
    margin: 0 auto -20px;
    padding-top: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .gallery-grid {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .gallery-grid {
        padding-top: 20px;
    }
}

.gallery-grid .gallery-grid-i {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.gallery-grid .item {
    padding: 0 10px 20px;
    width: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .gallery-grid .item {
        width: 33.33%;
    }
}

@media only screen and (max-width: 767px) {
    .gallery-grid .item {
        width: 100%;
    }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .gallery-grid .item {
        width: 50%;
    }
}

.gallery-grid .item img {
    width: 100%;
    display: block;
    -webkit-box-shadow: 0 0 15px 0 rgba(211, 211, 211, 0.58);
    -moz-box-shadow: 0 0 15px 0 rgba(211, 211, 211, 0.58);
    box-shadow: 0 0 15px 0 rgba(211, 211, 211, 0.58);
}

.gallery-grid.centered .gallery-grid-i {
    justify-content: center;
}

.wrap-gallery-grid + .wrap-gallery-grid {
    padding-top: 0;
}

.wrap-gallery-grid + .wrap-description-nav {
    padding-top: 0;
}

.main-news {
    padding: 80px 0 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-news {
        padding: 60px 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .main-news {
        padding: 20px 0 15px;
    }
}

.main-news .sub-title-light30 {
    padding-bottom: 20px;
}

.main-news .date {
    text-align: center;
    color: #acb2b7;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-news .date {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .main-news .date {
        padding-bottom: 15px;
        letter-spacing: 0;
    }
}

.main-news h1 {
    color: #252627;
    font-size: 46px;
    line-height: 54px;
    font-weight: normal;
    letter-spacing: .5px;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
    padding-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-news h1 {
        font-size: 36px;
        line-height: 46px;
    }
}

@media only screen and (max-width: 767px) {
    .main-news h1 {
        padding-bottom: 15px;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0;
    }
}

.main-news h2 {
    color: #252627;
    font-size: 32px;
    line-height: 42px;
    font-weight: normal;
    letter-spacing: .5px;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-news h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .main-news h2 {
        padding-bottom: 10px;
        font-size: 20px;
        line-height: 28px;
    }
}

.main-news h3 {
    color: #252627;
    font-size: 20px;
    line-height: 25px;
    font-weight: normal;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .main-news h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .main-news h3 {
        padding-bottom: 10px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }
}

.main-news p {
    color: #595e63;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .main-news p {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0;
    }
}

.main-news p:last-child {
    padding-bottom: 0;
}

.main-news img {
    width: 100%;
    display: block;
    padding-bottom: 30px;
}

.main-news img:last-child {
    padding-bottom: 0;
}

.wrap-history {
    padding: 80px 0 0px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-history {
        padding: 60px 0 0px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-history {
        padding: 30px 0 0px;
    }
}

.history .wrap-title {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.history .wrap-title .title {
    padding-bottom: 80px;
    font-size: 20px;
    line-height: 30px;
    color: #252627;
    letter-spacing: .5px;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .history .wrap-title .title {
        padding-bottom: 50px;
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .history .wrap-title .title {
        padding-bottom: 20px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
    }
}

.history-grid {
    position: relative;
}

.history-grid .current {
    color: #acb2b7;
    text-align: center;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .5px;
    padding-bottom: 20px;
    font-weight: normal;
}

@media only screen and (max-width: 767px) {
    .history-grid .current {
        font-size: 10px;
        line-height: 16px;
        letter-spacing: 0;
        padding-bottom: 10px;
        text-align: left;
    }
}

.history-grid .line {
    position: absolute;
    left: 50%;
    width: 3px;
    margin-left: -1px;
    top: 40px;
    bottom: 0;
    background: #346c94;
}

@media only screen and (max-width: 767px) {
    .history-grid .line {
        width: 2px;
        left: 20px;
        top: 26px;
    }
}

.history-grid .line .icon-arrow-l {
    position: absolute;
    left: 0;
    top: -1px;
    color: #346c94;
    font-size: 20px;
    margin-left: -8px;
    -webkit-transform: rotateZ(90deg);
    -khtml-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    -ms-transform: rotateZ(90deg);
    -o-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    display: block;
}

@media only screen and (max-width: 767px) {
    .history-grid .line .icon-arrow-l {
        font-size: 18px;
        margin-left: -8px;
    }
}

.history-grid .line .circle {
    width: 27px;
    height: 27px;
    position: absolute;
    bottom: 0;
    left: -12px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #acb2b7;
}

@media only screen and (max-width: 767px) {
    .history-grid .line .circle {
        width: 21px;
        height: 21px;
        border-width: 1px;
        left: -9px;
    }
}

.history-grid-i {
    padding: 35px 0 50px;
}

@media only screen and (max-width: 767px) {
    .history-grid-i {
        padding: 25px 0;
    }
}

.history-grid-i .item {
    min-height: 86px;
    padding: 10px 0;
    display: flex;
    position: relative;
    align-items: center;
}

.history-grid-i .item:nth-child(odd) .date:after {
    right: 100%;
}

@media only screen and (max-width: 767px) {
    .history-grid-i .item:nth-child(odd) .date:after {
        left: 100%;
        right: auto;
    }
}

.history-grid-i .item:nth-child(odd) .description {
    text-align: right;
    padding-right: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .history-grid-i .item:nth-child(odd) .description {
        padding-right: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .history-grid-i .item:nth-child(odd) .description {
        text-align: left;
        padding: 0 0 0 80px;
    }
}

.history-grid-i .item:nth-child(even) {
    justify-content: flex-end;
}

.history-grid-i .item:nth-child(even) .date:after {
    left: 100%;
}

.history-grid-i .item:nth-child(even) .description {
    padding-left: 110px;
    text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .history-grid-i .item:nth-child(even) .description {
        padding-left: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .history-grid-i .item:nth-child(even) .description {
        padding-left: 80px;
    }
}

.history-grid-i .date {
    position: absolute;
    left: 50%;
    margin: -33px 0 0 -33px;
    top: 50%;
    width: 66px;
    height: 66px;
    border: 1px solid #b2b7bc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 64px;
    font-size: 16px;
    color: #252627;
    letter-spacing: .5px;
}

@media only screen and (max-width: 767px) {
    .history-grid-i .date {
        letter-spacing: 0;
        font-size: 14px;
        width: 50px;
        height: 50px;
        line-height: 48px;
        left: 0;
        margin: -25px 0 0;
    }
}

.history-grid-i .date:after {
    position: absolute;
    width: 57px;
    height: 1px;
    content: '';
    top: 50%;
    background: #b2b7bc;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .history-grid-i .date:after {
        width: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .history-grid-i .date:after {
        width: 25px;
    }
}

.history-grid-i .description {
    width: 50%;
    display: block;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .history-grid-i .description {
        width: 100%;
    }
}

.history-grid-i .description p {
    line-height: 25px;
    font-size: 16px;
    color: #595e63;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .history-grid-i .description p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.testing-list {
    padding: 80px 0 0px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .testing-list {
        padding: 60px 0 0px;
    }
}

@media only screen and (max-width: 767px) {
    .testing-list {
        padding: 30px 0 0px;
    }
}

.testing-list .about-drops {
    padding: 0 0 80px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .testing-list .about-drops {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .testing-list .about-drops {
        padding-bottom: 30px;
    }
}

.testing-list .about-drops .wrap-dropdown {
    border-bottom: none;
}

.testing-list .about-drops .dropdown {
    padding: 0;
}

.testing-list .about-drops .btn-drop {
    font-size: 20px;
    line-height: 25px;
    color: #595e63;
    letter-spacing: .5px;
    max-width: 100%;
    padding: 5px 60px 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #acb2b7;
}

.testing-list .about-drops .btn-drop .i-plus {
    width: 19px;
    height: 19px;
    right: 20px;
    margin-top: -9px;
}

.testing-list .about-drops .btn-drop .i-plus:before {
    width: 19px;
    height: 1px;
    top: 9px;
    background: #acb2b7;
}

.testing-list .about-drops .btn-drop .i-plus:after {
    width: 1px;
    height: 19px;
    left: 9px;
    background: #acb2b7;
}

.testing-list .wrap-description-nav:first-child {
    padding-top: 0;
}

.dwnld-grid {
    display: flex;
    flex-wrap: wrap;
}

.dwnld-grid .item {
    width: 33.33%;
    padding: 0 50px 60px 100px;
    position: relative;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
    .dwnld-grid .item {
        padding-right: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .dwnld-grid .item {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .dwnld-grid .item {
        width: 100%;
        padding: 0 0 20px 60px;
    }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .dwnld-grid .item {
        width: 50%;
        padding: 0 20px 20px 60px;
    }
}

.dwnld-grid .wrap-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .dwnld-grid .wrap-icon {
        width: 60px;
        height: 40px;
    }
}

.dwnld-grid .wrap-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

@media only screen and (max-width: 767px) {
    .dwnld-grid .wrap-icon img {
        max-width: 90%;
        max-height: 90%;
    }
}

.dwnld-grid p {
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 25px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    letter-spacing: .5px;
}

@media only screen and (max-width: 767px) {
    .dwnld-grid p {
        letter-spacing: 0;
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 10px;
    }
}

.dwnld-grid a {
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    letter-spacing: .5px;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .dwnld-grid a {
        letter-spacing: 0;
        font-size: 14px;
        line-height: 20px;
    }
}

.dwnld-grid a span:first-child {
    color: #4487b5;
    text-decoration: underline;
}

.dwnld-grid a span:last-child {
    display: block;
    color: #acb2b7;
}

.dwnld-grid a:hover span:first-child {
    text-decoration: none;
}

.test-intro {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .test-intro {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .test-intro {
        margin-bottom: 20px;
    }
}

.test-intro .title {
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
    color: #252627;
    letter-spacing: .5px;
    font-weight: normal;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .test-intro .title {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .test-intro .title {
        padding-bottom: 20px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
    }
}

.test-intro p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .test-intro p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        padding-bottom: 15px;
    }
}

.testing-list-i .wrap-item {
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .testing-list-i .wrap-item {
        padding-bottom: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .testing-list-i .wrap-item {
        padding-bottom: 30px;
    }
}

.testing-list-i .wrap-item:last-child {
    padding-bottom: 0;
}

.testing-list-i .wrap-item .wrap-icon {
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.testing-list-i .wrap-item .wrap-icon img {
    display: block;
    width: 100px;
    margin: 0 auto 40px;
}

@media only screen and (max-width: 767px) {
    .testing-list-i .wrap-item .wrap-icon img {
        width: 80px;
        margin-bottom: 20px;
    }
}

.testing-list-i .gallery-min {
    display: flex;
    margin: 0 -10px;
    position: relative;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .testing-list-i .gallery-min {
        display: block;
        margin: 0;
    }
}

.testing-list-i .gallery-min:before {
    position: absolute;
    left: 50%;
    width: 200vw;
    height: 100%;
    content: '';
    top: 0;
    margin-left: -100vw;
    background: #f0f3f5;
}

.testing-list-i .gallery-min .img {
    padding: 0 10px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .testing-list-i .gallery-min .img {
        padding: 0 0 20px;
    }
}

.testing-list-i .gallery-min .img img {
    display: block;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .testing-list-i .gallery-min .img img + p {
        padding: 10px 0 0;
    }
}

.testing-list-i .gallery-min p {
    padding: 15px 0;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .testing-list-i .gallery-min p {
        padding: 0 0 30px;
    }
}

.testing-list-i p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    text-align: justify;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .testing-list-i p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.contacts {
    padding: 80px 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .contacts {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .contacts {
        padding: 20px 0;
    }
}

.contacts .sub-title-light30 {
    color: #252627;
    padding-bottom: 80px;
    max-width: 760px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .contacts .sub-title-light30 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contacts .sub-title-light30 {
        padding-bottom: 20px;
    }
}

.contacts .double-col {
    padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .contacts .double-col {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contacts .double-col {
        padding-bottom: 20px;
    }
}

.contacts ul li {
    padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .contacts ul li {
        padding-bottom: 10px;
    }
}

.contacts ul li:last-child {
    padding-bottom: 0;
}

.contacts ul li strong {
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 25px;
}

@media only screen and (max-width: 767px) {
    .contacts ul li strong {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.contacts ul li p {
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .contacts ul li p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.contacts .btn-dwnld {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contacts .btn-dwnld .icon {
    font-size: 28px;
    margin-right: 10px;
    color: #252627;
}

@media only screen and (max-width: 767px) {
    .contacts .btn-dwnld .icon {
        font-size: 20px;
        margin-right: 5px;
    }
}

.contacts .btn-dwnld p {
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #4487b5;
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .contacts .btn-dwnld p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.contacts .btn-dwnld .val {
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #acb2b7;
}

@media only screen and (max-width: 767px) {
    .contacts .btn-dwnld .val {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.contacts .btn-dwnld:hover p {
    text-decoration: none;
}

.wrap-map {
    margin-bottom: 80px;
    height: 600px;
    width: 100%;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-map {
        height: 460px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-map {
        height: 320px;
        margin-bottom: 30px;
    }
}

.wrap-map #map {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.testing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .testing-grid {
        margin-bottom: -40px;
    }
}

@media only screen and (max-width: 767px) {
    .testing-grid {
        margin-bottom: -20px;
    }
}

.testing-grid .wrap-item {
    width: calc(50% - 10px);
    padding: 0 0 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .testing-grid .wrap-item {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .testing-grid .wrap-item {
        width: 100%;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
    .testing-grid .wrap-item {
        width: calc(50% - 10px);
    }
}

.testing-grid .item {
    position: relative;
}

.testing-grid .item img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.testing-grid .item p {
    font-size: 16px;
    line-height: 25px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 767px) {
    .testing-grid .item p {
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0;
    }
}

.news-list {
    padding: 80px 0 60px;
    background: #f0f3f5;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .news-list {
        padding: 60px 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .news-list {
        padding: 30px 0 20px;
    }
}

.news-list-drops .wrap-dropdown {
    border-bottom: none;
}

.news-list-drops .wrap-dropdown.active .btn-drop .i-plus:after {
    display: none;
}

.news-list-drops .dropdown {
    padding: 40px 0 0;
}

.news-list-drops .btn-drop {
    font-size: 20px;
    line-height: 25px;
    color: #595e63;
    letter-spacing: .5px;
    max-width: 100%;
    padding: 5px 60px 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #acb2b7;
    display: block;
    text-decoration: none;
    position: relative;
}

.news-list-drops .btn-drop .i-plus {
    width: 19px;
    height: 19px;
    right: 20px;
    top: 50%;
    margin-top: -9px;
    position: absolute;
}

.news-list-drops .btn-drop .i-plus:before {
    content: '';
    position: absolute;
    left: 0;
    width: 19px;
    height: 1px;
    top: 9px;
    background: #acb2b7;
}

.news-list-drops .btn-drop .i-plus:after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 19px;
    left: 9px;
    background: #acb2b7;
}

.slider-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slider-bg .swiper-slide {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.slider-bg .description {
    /*max-width: 780px;*/ max-width: 1000px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    z-index: 5;
    position: relative;
}

.slider-bg .description .main-title {
    width: 100%;
    text-transform: uppercase;
}

.slider-bg .description .sub-title {
    width: 100%;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.slider-bg .description p {
    width: 100%;
    font-size: 20px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #fff;
}

@media only screen and (max-width: 767px) {
	.slider-bg .description { max-width: 780px; }
	
    .slider-bg .description p {
        font-size: 16px;
        line-height: 20px;
    }
}

.slider-bg-thumbnails {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10vw;
    left: 0;
    width: 100%;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .slider-bg-thumbnails {
        padding-top: 20px;
    }
}

.slider-bg-thumbnails .btn {
    width: 140px;
    display: block;
    padding: 3px;
    border: 1px solid transparent;
    margin-right: 5px;
    -webkit-transition: border-color 0.325s ease 0s;
    -khtml-transition: border-color 0.325s ease 0s;
    -moz-transition: border-color 0.325s ease 0s;
    -ms-transition: border-color 0.325s ease 0s;
    -o-transition: border-color 0.325s ease 0s;
    transition: border-color 0.325s ease 0s;
}

@media only screen and (max-width: 767px) {
    .slider-bg-thumbnails .btn {
        width: 19vw;
    }
}

.slider-bg-thumbnails .btn:last-child {
    margin-right: 0;
}

.slider-bg-thumbnails .btn.active, .slider-bg-thumbnails .btn:hover {
    border-color: #a3a5ac;
}

.slider-bg-thumbnails .btn img {
    display: block;
    width: 100%;
}

.simple-slider .swiper-button-next {
    background: none;
    width: 60px;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .simple-slider .swiper-button-next {
        display: none;
    }
}

.simple-slider .swiper-button-next:before {
    font-size: 32px;
    color: #fff;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -16px;
}

.simple-slider .swiper-button-prev {
    background: none;
    width: 60px;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .simple-slider .swiper-button-prev {
        display: none;
    }
}

.simple-slider .swiper-button-prev:before {
    font-size: 32px;
    color: #fff;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
}

.simple-slider .swiper-pagination {
    display: none;
    width: 100%;
    justify-content: center;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .simple-slider .swiper-pagination {
        display: flex;
    }
}

.simple-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
}

.simple-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #4487b5;
}

.wrap-awards-slider {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-awards-slider {
        padding: 0 60px;
    }
}

.wrap-awards-slider .swiper-button-next {
    background: none;
    width: 60px;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .wrap-awards-slider .swiper-button-next {
        display: none;
    }
}

.wrap-awards-slider .swiper-button-next:before {
    font-size: 32px;
    color: #acb2b7;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -16px;
}

.wrap-awards-slider .swiper-button-prev {
    background: none;
    width: 60px;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .wrap-awards-slider .swiper-button-prev {
        display: none;
    }
}

.wrap-awards-slider .swiper-button-prev:before {
    font-size: 32px;
    color: #acb2b7;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
}

.wrap-awards-slider .swiper-pagination {
    display: none;
    width: 100%;
    justify-content: center;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .wrap-awards-slider .swiper-pagination {
        display: flex;
    }
}

.wrap-awards-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
}

.wrap-awards-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #4487b5;
}

.awards-slider {
    max-width: 1020px;
}

.awards-slider .swiper-slide {
    padding: 10px;
}

.awards-slider img {
    display: block;
    width: 100%;
    -webkit-box-shadow: 0 0 10px 0 rgba(211, 211, 211, 0.58);
    -moz-box-shadow: 0 0 10px 0 rgba(211, 211, 211, 0.58);
    box-shadow: 0 0 10px 0 rgba(211, 211, 211, 0.58);
}

.certificate-slider {
    max-width: 500px;
    margin: 0 auto;
}

.certificate-slider img {
    display: block;
    max-width: 500px;
}

@media only screen and (max-width: 767px) {
    .certificate-slider img {
        max-width: 100vw;
    }
}

.certificate-slider .swiper-button-next {
    background: none;
    width: 60px;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .certificate-slider .swiper-button-next {
        display: none;
    }
}

.certificate-slider .swiper-button-next:before {
    font-size: 32px;
    color: #4487b5;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -16px;
}

.certificate-slider .swiper-button-prev {
    background: none;
    width: 60px;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .certificate-slider .swiper-button-prev {
        display: none;
    }
}

.certificate-slider .swiper-button-prev:before {
    font-size: 32px;
    color: #4487b5;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
}

.certificate-slider .swiper-pagination {
    display: none;
    width: 100%;
    justify-content: center;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .certificate-slider .swiper-pagination {
        display: flex;
    }
}

.certificate-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
}

.certificate-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #4487b5;
}

.wrap-exhibition-slider {
    position: relative;
    margin-bottom: 50px;
    padding: 0 60px;
}

@media only screen and (max-width: 767px) {
    .wrap-exhibition-slider {
        padding: 0;
    }
}

.wrap-exhibition-slider:before {
    position: absolute;
    left: 50%;
    margin-left: -100vw;
    top: 0;
    width: 200vw;
    height: 100%;
    background: #f0f3f5;
    z-index: 1;
    content: '';
}

.wrap-exhibition-slider .swiper-pagination {
    width: 100%; /*max-width: 1060px;*/ left: 0; right: 0;
    justify-content: center;
    position: absolute;
    bottom: -40px;
    z-index: 5;
}

@media only screen and (max-width: 767px) {
    .wrap-exhibition-slider .swiper-pagination {
        display: flex;
    }
}

.wrap-exhibition-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
    width: 12px;
    height: 12px;
    border: 2px solid #acb2b7;
    background: transparent;
    opacity: 1;
}

.wrap-exhibition-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #acb2b7;
}

.wrap-exhibition-slider .swiper-button-next {
    background: none;
    width: 60px;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
    z-index: 50;
}

@media only screen and (max-width: 767px) {
    .wrap-exhibition-slider .swiper-button-next {
        display: none;
    }
}

.wrap-exhibition-slider .swiper-button-next:before {
    font-size: 32px;
    color: #4487b5;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -16px;
}

.wrap-exhibition-slider .swiper-button-prev {
    background: none;
    width: 60px;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    z-index: 50;
}

@media only screen and (max-width: 767px) {
    .wrap-exhibition-slider .swiper-button-prev {
        display: none;
    }
}

.wrap-exhibition-slider .swiper-button-prev:before {
    font-size: 32px;
    color: #4487b5;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
}

.exhibition-slider {
    position: relative;
    z-index: 20;
}

.exhibition-slider img {
    display: block;
    width: 100%;
}

.exhibition-slider .swiper-slider {
    position: relative;
}

.exhibition-slider .btn-ajax {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.exhibition-slider .btn-ajax .icon-search {
    position: absolute;
    bottom: 15px;
    font-size: 40px;
    left: 50%;
    margin-left: -20px;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .exhibition-slider .btn-ajax .icon-search {
        font-size: 24px;
        margin-left: -12px;
    }
}

.exhibition-gallery-slider {
    max-width: 900px;
    margin: 0 auto;
}

.exhibition-gallery-slider img {
    display: block;
    max-width: 900px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .exhibition-gallery-slider img {
        max-width: 720px;
    }
	.wrap-exhibition-slider .swiper-pagination { /*max-width: 829px;*/ }
}

@media only screen and (max-width: 767px) {
    .exhibition-gallery-slider img {
        max-width: 100vw;
    }
}

.exhibition-gallery-slider .swiper-button-next {
    background: none;
    width: 60px;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .exhibition-gallery-slider .swiper-button-next {
        display: none;
    }
}

.exhibition-gallery-slider .swiper-button-next:before {
    font-size: 32px;
    color: #4487b5;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -16px;
}

.exhibition-gallery-slider .swiper-button-prev {
    background: none;
    width: 60px;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .exhibition-gallery-slider .swiper-button-prev {
        display: none;
    }
}

.exhibition-gallery-slider .swiper-button-prev:before {
    font-size: 32px;
    color: #4487b5;
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    margin-top: -16px;
}

.exhibition-gallery-slider .swiper-pagination {
    display: none;
    width: 100%;
    justify-content: center;
    padding-top: 10px;
}

@media only screen and (max-width: 767px) {
    .exhibition-gallery-slider .swiper-pagination {
        display: flex;
    }
}

.exhibition-gallery-slider .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
    background: #fff;
    opacity: 1;
}

.exhibition-gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #4487b5;
}

.wrap-news-slider {
    padding: 80px 0 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-news-slider {
        padding: 60px 0 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-news-slider {
        padding: 30px 0 20px;
    }
}

.news-slider .wrap-news-item {
    width: 100%;
    padding: 0;
}

.news-slider .wrap-nav {
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-slider .wrap-nav .swiper-button-next {
    position: relative;
    margin: 0;
    right: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #d9e0e4;
    border: 2px solid #d9e0e4;
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    -webkit-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -khtml-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -moz-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -ms-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -o-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
}

.news-slider .wrap-nav .swiper-button-next:hover {
    border-color: #96bdd8;
    color: #96bdd8;
}

.news-slider .wrap-nav .swiper-button-prev {
    position: relative;
    margin: 0;
    left: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #d9e0e4;
    border: 2px solid #d9e0e4;
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    -webkit-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -khtml-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -moz-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -ms-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    -o-transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
    transition: border-color 0.325s ease 0s, color 0.325s ease 0s;
}

.news-slider .wrap-nav .swiper-button-prev:hover {
    border-color: #96bdd8;
    color: #96bdd8;
}

.news-slider .swiper-pagination {
    padding: 0 20px;
    position: relative;
    counter-reset: paging;
    display: flex;
    cursor: pointer;
}

.news-slider .swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    text-decoration: underline;
    padding: 0 5px;
    display: block;
    width: auto;
    height: 25px;
    opacity: 1;
}

.news-slider .swiper-pagination .swiper-pagination-bullet:before {
    display: block;
    position: relative;
    counter-increment: paging;
    content: counter(paging);
    font-size: 16px;
    line-height: 25px;
    letter-spacing: .5px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #377eb0;
}

.news-slider .swiper-pagination .swiper-pagination-bullet:hover {
    text-decoration: none;
}

.news-slider .swiper-pagination .swiper-pagination-bullet-active {
    text-decoration: none;
}

.news-slider .swiper-pagination .swiper-pagination-bullet-active:before {
    color: #ea513e;
}

.wrap-post {
    padding: 80px 0 0px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .wrap-post {
        padding: 60px 0 0px;
    }
}

@media only screen and (max-width: 767px) {
    .wrap-post {
        padding: 40px 0 0px;
    }
}

.post {
    font-size: 16px;
    line-height: 25px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .post {
        font-size: 14px;
        line-height: 20px;
    }
}

.post h1 {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #252627;
    font-weight: normal;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
    padding-bottom: 60px;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .post h1 {
        font-size: 60px;
        line-height: 60px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .post h1 {
        font-size: 32px;
        line-height: 40px;
        padding-bottom: 25px;
    }
}

.post h2 {
    font-size: 50px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #252627;
    font-weight: normal;
    font-family: "robotomedium", Helevetica, Arial, sans-serif;
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .post h2 {
        font-size: 36px;
        line-height: 46px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .post h2 {
        font-size: 22px;
        line-height: 30px;
        padding-bottom: 25px;
    }
}

.post h3 {
    font-size: 30px;
    line-height: 40px;
    color: #252627;
    letter-spacing: .5px;
    padding-bottom: 60px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .post h3 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .post h3 {
        padding-bottom: 20px;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0;
    }
}

.post h4 {
    font-size: 20px;
    line-height: 30px;
    color: #252627;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
    padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .post h4 {
        padding-bottom: 20px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
    }
}

.post h5 {
    font-size: 18px;
    line-height: 24px;
    color: #252627;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-weight: normal;
    padding-bottom: 20px;
}

.post p {
    max-width: 780px;
    display: block;
    margin: 0 auto;
    padding-bottom: 30px;
    letter-spacing: .5px;
    font-size: 16px;
    line-height: 25px;
    color: #595e63;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .post p {
        padding-bottom: 15px;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.post p:last-child {
    padding-bottom: 0;
}

.post img {
    width: 100%;
    max-width: 780px;
    display: block;
    margin: 0 auto 30px;
}

.post blockquote {
    padding-left: 200px;
    max-width: 780px;
    margin: 0 auto 30px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .post blockquote {
        padding: 10px;
        margin-bottom: 25px;
        border: 1px solid #ea513e;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        max-width: 100%;
    }
}

.post blockquote .wrap-photo {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .post blockquote .wrap-photo {
        left: 10px;
        top: 10px;
    }
}

.post blockquote .wrap-photo img {
    overflow: hidden;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .post blockquote .wrap-photo img {
        width: 60px;
        height: 60px;
    }
}

.post blockquote .author-info {
    padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .post blockquote .author-info {
        padding-left: 80px;
        min-height: 80px;
        padding-bottom: 10px;
    }
}

.post blockquote .author-info p {
    font-size: 16px;
    line-height: 20px;
    color: #ea513e;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-style: italic;
}

@media only screen and (max-width: 767px) {
    .post blockquote .author-info p {
        font-size: 14px;
        line-height: 20px;
    }
}

.post blockquote .quote p {
    color: #252627;
    font-size: 16px;
    line-height: 20px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    font-style: italic;
}

@media only screen and (max-width: 767px) {
    .post blockquote .quote p {
        font-size: 14px;
        line-height: 20px;
    }
}

.post blockquote .quote p:last-child {
    padding-bottom: 0;
}

.post blockquote:after {
    width: 1px;
    height: 100%;
    background: #ea513e;
    content: '';
    left: 153px;
    display: block;
    position: absolute;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .post blockquote:after {
        display: none;
    }
}

.post blockquote:before {
    width: 28px;
    height: 26px;
    background: #ea513e;
    content: '';
    left: 126px;
    z-index: 2;
    display: block;
    position: absolute;
    top: 42px;
    background: url("../images/general/quote-corner.jpg") no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .post blockquote:before {
        display: none;
    }
}

.post .wrap-default-table {
    width: 100%;
    overflow: auto;
    padding-bottom: 20px;
}

.post .wrap-default-table.centered table {
    margin: 0 auto;
}

.post .wrap-default-table.centered td {
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .post table {
        min-width: 100%;
    }
}

.post table th {
    background: #d8dee2;
    font-size: 16px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #252627;
    text-align: left;
    padding: 5px;
}

@media only screen and (max-width: 767px) {
    .post table th {
        font-size: 14px;
        line-height: 20px;
    }
}

.post table td {
    border: 1px solid #acb2b7;
    font-size: 16px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    color: #595e63;
    padding: 5px;
}

@media only screen and (max-width: 767px) {
    .post table td {
        font-size: 14px;
        line-height: 20px;
    }
}

.post .txt-red {
    color: #ea513e;
}

.post .txt-blue {
    color: #4487b5;
}

.post .centered {
    text-align: center;
}

.btm-nav {
    padding: 50px 0 40px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .btm-nav {
        padding: 30px 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    .btm-nav {
        padding: 15px 0 10px;
    }
}

.btm-nav .btm-nav-i {
    max-width: 780px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.btm-nav a {
    font-size: 16px;
    line-height: 20px;
    color: #4487b5;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    margin: 0 10px 20px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .btm-nav a {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

.btm-nav a.active {
    text-decoration: none;
    color: #ea513e;
}

.feedback {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 65px 0 45px;
    position: relative;
}

@media only screen and (min-width: 1620px) {
    .feedback {
        background-position: 0 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .feedback {
        background-position: 0 50%;
    }
}

@media only screen and (max-width: 767px) {
    .feedback {
        background-position: 0 50%;
        padding: 30px 0 20px;
    }
}

.feedback:before {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .feedback:before {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .feedback:before {
        display: block;
    }
}

.feedback .inner {
    z-index: 3;
    display: flex;
    justify-content: flex-end;
}

.feedback .wrap-form {
    width: 580px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .feedback .wrap-form {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .feedback .wrap-form {
        width: 100%;
    }
}

.feedback .phone {
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    text-decoration: none;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    margin-bottom: 50px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .feedback .phone {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 25px;
    }
}

.feedback form {
    padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .feedback form {
        padding-bottom: 15px;
    }
}

.feedback .btn {
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .feedback .btn {
        font-size: 16px;
        line-height: 20px;
    }
}

.wrap-form .wrap-title {
    padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .wrap-form .wrap-title {
        padding-bottom: 20px;
    }
}

.wrap-form .wrap-title .section-title {
    color: #fff;
    padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .wrap-form .wrap-title .section-title {
        padding-bottom: 20px;
    }
}

.wrap-form .wrap-title p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .wrap-form .wrap-title p {
        font-size: 16px;
        line-height: 24px;
    }
}

.wrap-form .row {
    padding-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .wrap-form .row {
        padding-bottom: 15px;
    }
}

.wrap-form .row-btn {
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .wrap-form .row-btn {
        padding-top: 10px;
    }
}

.wrap-input {
    width: 100%;
    position: relative;
}

.wrap-input.error input {
    background: #ea513e;
    color: #fff;
}

.wrap-input.error input:-moz-placeholder {
    color: #fff;
}

.wrap-input.error input::-webkit-input-placeholder {
    color: #fff;
}

.wrap-input.error input.placeholder {
    color: #fff;
}

.wrap-input input {
    width: 100%;
    background: #fff;
    height: 40px;
    line-height: 20px;
    font-size: 16px;
    color: #595e63;
    padding: 0 30px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
}

.wrap-textarea {
    width: 100%;
    position: relative;
}

.wrap-textarea textarea {
    height: 150px;
    background: #fff;
    width: 100%;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    line-height: 20px;
    font-size: 16px;
    color: #595e63;
    padding: 15px 30px;
    resize: none;
}

.contacts-form {
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .contacts-form {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contacts-form {
        padding-bottom: 20px;
    }
}

.contacts-form .wrap-title {
    padding-bottom: 60px;
    text-align: center;
}

.contacts-form .wrap-title .sub-title-light30 {
    padding: 0;
}

.contacts-form .wrap-title p {
    color: #676767;
    font-size: 20px;
    line-height: 30px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (max-width: 767px) {
    .contacts-form .wrap-title p {
        font-size: 16px;
        line-height: 24px;
    }
}

.contacts-form .form-row {
    padding-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .contacts-form .form-row {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contacts-form .form-row {
        padding-bottom: 20px;
    }
}

.contacts-form .form-row:last-child {
    padding-bottom: 0;
}

.contacts-form .form-row a {
    text-decoration: none;
    color: #676767;
    font-size: 40px;
    line-height: 40px;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
    text-align: center;
    display: block;
}

@media only screen and (max-width: 767px) {
    .contacts-form .form-row a {
        font-size: 20px;
        line-height: 24px;
    }
}

.contacts-form .form-row a:hover {
    color: #4487b5;
}

.contacts-form .wrap-icon {
    display: block;
    margin: 0 auto 40px;
    width: 100px;
}

@media only screen and (max-width: 767px) {
    .contacts-form .wrap-icon {
        width: 60px;
        margin: 0 auto 20px;
    }
}

.contacts-form .wrap-icon img {
    display: block;
    width: 100%;
}

.contacts-form .row {
    max-width: 580px;
    width: 100%;
    margin: 0 auto 20px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .contacts-form .row {
        margin-bottom: 15px;
    }
}

.contacts-form .row:last-child {
    margin-bottom: 0;
}

.contacts-form .wrap-input input {
    background: #ebebeb;
}

.contacts-form .wrap-input.error input {
    background: #ea513e;
}

.contacts-form .wrap-textarea textarea {
    background: #ebebeb;
}

.contacts-form .row-btn {
    display: flex;
    justify-content: center;
}

.contacts-form .btn-red {
    color: #4487b5;
}

.contacts-form .btn-red:hover {
    color: #fff;
}

.show-menu {
    overflow: hidden;
}

.p-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 110px;
}

@media only screen and (max-width: 767px) {
    .p-header {
        height: 80px;
    }
}

.p-header .inner {
    display: flex;
    justify-content: space-between;
}

.p-header .shadow {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    max-width: 100%;
}

.p-header .logo {
    padding-top: 25px;
}

@media only screen and (max-width: 767px) {
    .p-header .logo {
        padding-top: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .p-header .wrap-menu {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .p-header .wrap-menu {
        display: none;
    }
}

.p-header .wrap-search .tooltip {
    left: auto;
    right: 0;
}

.p-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 125;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.325s ease 0s;
    -khtml-transition: all 0.325s ease 0s;
    -moz-transition: all 0.325s ease 0s;
    -ms-transition: all 0.325s ease 0s;
    -o-transition: all 0.325s ease 0s;
    transition: all 0.325s ease 0s;
}

@media only screen and (max-width: 767px) {
    .p-header.fixed {
        height: 80px;
    }
}

.show-f-header .p-header.fixed {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.p-header.fixed .logo {
    width: 153px;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
    .p-header.fixed .logo {
        padding-top: 15px;
    }
}

.p-header.fixed .wrap-menu {
    padding-top: 0;
}

.p-header.fixed .wrap-menu .item {
    height: 90px;
    line-height: 90px;
    color: #4487b5;
}

.p-header.fixed .wrap-menu .wrap-item.active .item {
    color: #ea513e;
    background: #f5f7f8;
}

.p-header.fixed .wrap-menu .wrap-item:hover .item {
    color: #ea513e;
    background: #f5f7f8;
}

.p-header.fixed .tooltip {
    background: #f5f7f8;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.p-header.fixed .search-container input {
    background: #fff;
}

.p-header.fixed .sub-menu li {
    padding-bottom: 5px;
}

.p-header.fixed .btn-menu {
    top: 25px;
}

@media only screen and (max-width: 767px) {
    .p-header.fixed .btn-menu {
        top: 15px;
    }
}

.p-header.fixed .btn-menu span {
    background: #4487b5;
}

.search-container {
    padding: 15px 0;
    display: flex;
}

.search-container input {
    margin-right: 15px;
    width: 300px;
    display: block;
    padding: 0 10px;
    background: #e9edf0;
    color: #000;
    font-size: 16px;
    line-height: 24px;
}

.search-container .btn {
    text-decoration: none;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.logo {
    display: block;
    width: 232px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .logo {
        width: 153px;
    }
}

.logo img {
    display: block;
    width: 100%;
}

.sub-menu li {
    padding-bottom: 10px;
}

.sub-menu li a {
    white-space: nowrap;
    font-size: 16px;
    line-height: 24px;
}

.btn-menu {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 25px;
    top: 45px;
    z-index: 200;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .btn-menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .btn-menu {
        right: 5px;
        top: 15px;
        display: block;
    }
}

.btn-menu span {
    display: block;
    background: #fff;
    height: 2px;
    width: 30px;
    left: 5px;
    position: absolute;
}

.show-menu .btn-menu span {
    background: #595e63;
}

.btn-menu span:first-child {
    top: 12px;
}

.show-menu .btn-menu span:first-child {
    top: 20px;
    -webkit-transform: rotateZ(45deg);
    -khtml-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.btn-menu span:nth-child(2) {
    top: 20px;
}

.show-menu .btn-menu span:nth-child(2) {
    -webkit-transform: rotateZ(-45deg);
    -khtml-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.btn-menu span:last-child {
    top: 28px;
}

.show-menu .btn-menu span:last-child {
    top: 20px;
    -webkit-transform: rotateZ(-45deg);
    -khtml-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.p-footer {
    padding: 50px 0;
    background: url("../images/content/footer-bg.jpg") no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .p-footer {
        padding: 25px 0;
    }
}

.p-footer .inner {
    display: flex; min-height: 140px;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .p-footer .inner {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .p-footer .logo {
        margin-bottom: 15px;
    }
}

.footer-contacts {
    position: absolute;
    left: 40px;
    bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .footer-contacts {
        left: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-contacts {
        left: 0;
        position: relative;
    }
}

.footer-contacts p {
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    font-family: "robotolight", Helevetica, Arial, sans-serif;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .footer-contacts p {
        display: block;
    }
}

.footer-contacts p a {
    text-decoration: none;
    color: #fff;
}

.footer-contacts .copy {
    display: block;
}

.img-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -khtml-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -moz-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -ms-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -o-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
}

.show-img-popup .img-popup {
    opacity: 1;
    visibility: visible;
}

.img-popup img {
    max-width: 90%;
    max-height: 80%;
    display: block;
}

@media only screen and (max-width: 767px) {
    .img-popup img {
        max-width: 100%;
    }
}

.show-img-popup, .show-popup {
    overflow: hidden;
}

.wrap-popup-ajax {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -khtml-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -moz-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -ms-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    -o-transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
    transition: opacity 0.326s ease 0s, visibility 0.325s ease 0s;
}

.show-popup .wrap-popup-ajax {
    opacity: 1;
    visibility: visible;
}

.wrap-popup-ajax .close-layout {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.wrap-popup-ajax .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #ea513e;
    text-align: center;
    line-height: 40px;
    z-index: 10;
}

.wrap-popup-ajax .popup {
    position: absolute;
    top: 0;
    left: 0;
    padding: 50px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .wrap-popup-ajax .popup {
        padding: 0;
    }
}

.wrap-popup-ajax .popup-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    max-height: 80vh;
    overflow: auto;
}


.flags_icons { /*display: none;*/ position: absolute; right: 50px; top: 20px; }
.flags_icons a + a { margin-left: 5px; }

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.flags_icons { right: 30px; }
}

@media only screen and (max-width: 767px) {  
	.flags_icons { right: 60px; top: 25px; }
}