/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
    -ms-touch-action: pinch-zoom;
    touch-action: pinch-zoom;
    /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
    -ms-touch-action: auto;
    touch-action: auto;
}

.mCustomScrollBox {
    /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container {
    /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
}

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
    /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
    right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
    /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
    /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px;
    /* minimum dragger height */
    z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    /* the dragger element */
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
    text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-right: 0;
    margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
    min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px;
}

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
    margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    /* minimum dragger width */
    height: 100%;
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    /* auto-expanded scrollbar */
    margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    /* auto-expanded scrollbar */
    margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
    padding-right: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
    padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
    padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
    /* non-visible scrollbar */
    margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
    -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*! jQuery UI - v1.12.1 - 2017-12-19
* http://jqueryui.com
* Includes: core.css, datepicker.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
    display: none;
}

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

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
    /* support: IE8 */
}

.ui-front {
    z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    z-index: 11000 !important;
    display: none;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em;
}

.ui-datepicker {
    width: 279px;
    margin: 10px 0;
    padding: 5px 0;
    background-color: #fff;
    border: 1px solid #c72329;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -7px;
    text-indent: 0;
    font-size: 0;
    text-align: center;
}

.ui-datepicker .ui-datepicker-prev .ui-icon:before,
.ui-datepicker .ui-datepicker-next .ui-icon:before {
    display: inline-block;
    vertical-align: middle;
    font-family: "icon-font";
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 14px;
    line-height: 1;
    color: #949b95;
}

.ui-datepicker .ui-datepicker-prev .ui-icon:before {
    content: '\EA05';
}

.ui-datepicker .ui-datepicker-next {
    left: auto;
    right: 0;
}

.ui-datepicker .ui-datepicker-next .ui-icon:before {
    content: '\EA07';
}

.ui-datepicker .ui-datepicker-title {
    font-family: "Roboto Medium";
    font-size: 14px;
}

.ui-datepicker .ui-datepicker-header {
    padding: 2px 0 3px;
}

.ui-datepicker th {
    padding: 6px 3px 10px;
    line-height: 1.1;
    font-family: "Roboto Medium";
    font-size: 14px;
    font-weight: normal;
}

.ui-datepicker td span, .ui-datepicker td a {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    color: #383838;
}

.ui-datepicker td a {
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}

.ui-datepicker td a:hover {
    color: #949b95;
}

.ui-datepicker td.ui-datepicker-unselectable span, .ui-datepicker td.ui-datepicker-unselectable a {
    color: #bbb;
}

.ui-datepicker td.ui-datepicker-unselectable span:hover, .ui-datepicker td.ui-datepicker-unselectable a:hover {
    color: #bbb;
}

table.ui-datepicker-calendar thead {
    border-bottom: 2px solid #c72329;
}

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

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

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

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

@-webkit-keyframes btn-play-circle {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@keyframes btn-play-circle {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@-webkit-keyframes btn-play-circle-arrow {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    65% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes btn-play-circle-arrow {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    65% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

body {
    color: #383838;
}

.icon {
    display: inline-block;
    vertical-align: middle;
}

.icon:before {
    display: inline-block;
    vertical-align: middle;
    font-family: "icon-font";
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
}

.icon-cross3:before {
    content: '\EA33';
}

.icon-fb:before {
    content: '\EA101';
}

.icon-instagram:before {
    content: '\EA103';
}

.icon-youtube:before {
    content: '\EA106';
}

.btn {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.mwvil__field {
    display: block;
    margin-bottom: 25px;
}

.mwvil__field__input {
    position: relative;
}

.mwvil__field__msg {
    display: none;
    margin-top: 36px;
    font-family: "Roboto Regular";
    font-size: 14px;
    line-height: 1.2;
    color: #383838;
}

.mwvil__field__msg.active {
    display: block;
}

@media screen and (max-width: 992px) {
    .mwvil__field__msg {
        margin-top: 31px;
    }
}

.mwvil__field .mwvil__border {
    position: absolute;
    top: -7px;
    left: -21px;
    right: 21px;
    bottom: -21px;
    pointer-events: none;
    border: 3px solid transparent;
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
    z-index: 1;
}

.mwvil__field .mwvil__line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 3;
}

.mwvil__field .mwvil__line:before {
    background: #c72329 !important;
}

.mwvil__field .mwvil__text-input {
    border-bottom: 3px solid #c72329;
}

.mwvil__field .mwvil__text-input::-webkit-input-placeholder,
.mwvil__field .mwvil__text-input::-moz-placeholder,
.mwvil__field .mwvil__text-input:-ms-input-placeholder,
.mwvil__field .mwvil__text-input::placeholder {
    opacity: 1;
}

.mwvil__field .mwvil__text-input:focus + .mwvil__line:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.mwvil__field .mwvil__text-input:focus + .mwvil__line + .mwvil__border {
    border-color: #edf7ef !important;
}

.mwvil__field--box-chbx {
    text-align: center;
    cursor: pointer;
}

.mwvil__field--box-chbx input {
    opacity: 0;
    position: absolute;
    top: auto;
    left: 0;
    width: 0;
    height: 0;
}

.mwvil__field--box-chbx input:checked + .mwvil__field__value {
    background: #c72329;
}

.mwvil__field--box-chbx .mwvil__field__value {
    display: block;
    padding: 10px 3px;
    font-family: "Roboto Regular";
    font-size: 14px;
    line-height: 1;
    -webkit-transition: color 0.22s;
    transition: color 0.22s;
    border: 1px solid #949b95;
    border-left: none;
}

.mwvil__field--box-chbx:nth-child(1) .mwvil__field__value, .mwvil__field--box-chbx:nth-child(6) .mwvil__field__value, .mwvil__field--box-chbx:nth-child(11) .mwvil__field__value {
    border-left: 1px solid #949b95;
}

.mwvil__field--box-chbx:nth-child(1n+6) .mwvil__field__value {
    border-top: none;
}

.mwvil__field--box-chbx:hover .mwvil__field__value {
    color: #fff;
}

.mwvil__field.field-invalid .mwvil__field__msg {
    display: block;
}

.mwvil__form {
    margin-top: 25px;
}

.mwvil__form .mwvil__btns-ct {
    margin-top: 59px;
}

.mwvil__form .mwvil__btns-ct--2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 38px;
}

.mwvil__form .mwvil__btns-ct--2 .mwvil__btn {
    width: calc(50% - 10px);
}

.mwvil__form .mwvil__btns-ct--right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.mwvil__form .mwvil__btns-ct .mwvil__btn--back {
    background: #c72329;
}

.mwvil__form .mwvil__fields-row {
    margin-bottom: 15px;
}

.info-msg {
    position: relative;
}

.info-msg__text {
    display: block;
    font-family: "Roboto Regular";
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: .3px;
}

div.cp__fields-row {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.form-info-msgs {
    margin: 30px 0;
    font-family: "Roboto Regular";
    font-size: 14px;
    line-height: 1.3;
}

.form-info-msgs:first-child {
    margin-top: 0;
}

.form-info-msgs:last-child {
    margin-bottom: 0;
}

.form-info-msgs .info-msg {
    margin-bottom: 20px;
}

.form-info-msgs .info-msg:last-child {
    margin-bottom: 0;
}

.transfer-wheel-text {
    font-size: 13px;
    line-height: 1.2;
    font-family: "Roboto Condensed";
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.transfer-wheel-ct {
    margin: 0;
    padding: 15px 30px 10px 10px;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: background .22s;
    transition: background .22s;
    background: #fff;
}

@media screen and (max-width: 470px) {
    .transfer-wheel-ct {
        padding: 10px;
        text-align: center;
    }
}

.transfer-wheel-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    -js-display: inline-flex;
    display: inline-flex;
    height: 48px;
    opacity: 1;
    -webkit-transition: opacity 0.22s;
    transition: opacity 0.22s;
}

.transfer-wheel-btn img {
    width: 56px;
}

.transfer-wheel-btn svg {
    height: 100%;
}

.transfer-wheel-btn svg .cls-1 {
    -webkit-transition: fill .22s;
    transition: fill .22s;
}

.transfer-wheel-btn:hover {
    opacity: .8;
}

@media screen and (max-width: 470px) {
    .transfer-wheel-btn {
        height: 50px;
    }
}

.contacts__info .contacts__socials-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    margin-bottom: 15px;
    opacity: 1;
    -webkit-transition: opacity 0.22s;
    transition: opacity 0.22s;
}

.contacts__info .contacts__socials-link img {
    display: block;
    width: 100%;
    height: 100%;
}

.contacts__info .contacts__socials-link:hover {
    opacity: .8;
}

.contacts__info .svg-socials {
    width: 125px;
    margin-bottom: 15px;
}

.contacts__info .svg-socials .svg-viber {
    fill: #6a5caf;
}

.contacts__info .svg-socials .svg-msg {
    fill: #008cec;
}

.contacts__info .svg-socials .svg-soc-white {
    fill: #fff;
}

.contacts__info .svg-socials .svg-tg {
    fill: #00abde;
}

.contacts__info .svg-socials .svg-soc-lightgrey {
    fill: #c8c8cd;
}

.contacts__info .svg-socials .svg-soc-grey {
    fill: #b0b0b5;
}

.cp__tabs .tab {
    display: none;
}

.cp__tabs .tab.active {
    display: block;
}

.calc-price__block {
    min-height: 415px;
    padding: 60px;
    margin: 40px 0;
    border: 10px solid #c72329;
}

.calc-price__block .cp__title {
    font-family: "ProximaNova Regular";
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.calc-price__block .cp__text {
    position: relative;
    margin-top: 8px;
    font-family: "Roboto Regular";
    font-size: 14px;
    line-height: 1.2;
}

.calc-price__block .cp__text:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 76px;
    height: 5px;
    margin-left: -38px;
    background: #c72329;
}

.calc-price__block .cp__btn {
    width: auto;
    margin: 0;
    padding: 15px 40px;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
    background: #c72329;
    -webkit-transition: background 0.22s;
    transition: background 0.22s;
}

.calc-price__block .cp__btn:hover {
    background: #949b95;
}

.calc-price__block .cp__btn-text {
    font-size: 14px;
    font-family: "Roboto Condensed";
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.calc-price__block .cp__tab-title {
    margin-bottom: 15px;
    font-family: "ProximaNova Regular";
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.calc-price__block .cp__tabs {
    margin-top: 41px;
}

.calc-price__block .cp__fields-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    margin: 0px 100px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.calc-price__block .cp__btns-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.calc-price__block .cp__btns-ct--right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 40px;
}

.calc-price__block .cp__btns-ct--2 {
    margin-top: 30px;
}

.calc-price__block .cp__fields-title {
    margin-bottom: 10px;
    text-align: left;
    font-family: "Roboto Medium";
    font-size: 14px;
    line-height: 1.2;
    color: #c72329;
}

.calc-price__block .cp__field--rad {
    margin-right: 30px;
    display: flex;
    width: 100%;
}

.calc-price__block .cp__field--rad img {
    width: auto;
    height: 65px;
    margin-right: 14px;
}

.calc-price__block .cp__field--rad input {
    opacity: 0;
    position: absolute;
    top: auto;
    left: 0;
    width: 0;
    height: 0;
}

.calc-price__block .cp__field--rad input:checked + .cp__field-i .cp__field-i-c {
    background: #383838;
}

.calc-price__block .cp__field--rad .cp__field-i {
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 17px;
    font-size: 0;
    border: 2px solid #c72329;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.calc-price__block .cp__field--rad .cp__field-i-c {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 7px;
    height: 7px;
    margin-top: 3px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: -webkit-transition 0.22s;
    transition: -webkit-transition 0.22s;
    transition: transition 0.22s;
    transition: transition 0.22s, -webkit-transition 0.22s;
    background: transparent;
}

.calc-price__block .cp__field--rad .mwvil__field__value {
    margin-left: 5px;
    font-family: "Roboto Medium";
    font-size: 14px;
}

.calc-price__block .cp__field--rad:last-child {
    margin-right: 0;
}

.calc-price__block .cp__fields-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.calc-price__block .cp__svg {
    margin-right: 20px;
}

.calc-price__block .cp__svg svg {
    height: 65px;
}

.calc-price__block .cp__field--icon .mwvil__field__input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 75px;
}

.calc-price__block .mwvil__fields-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}

.calc-price__block .mwvil__fields-row .mwvil__field {
    width: calc(50% - 20px);
}

.calc-price__block .cp__btn--back {
    background: transparent !important;
}

.calc-price__block .cp__btn--back .cp__btn-text {
    color: #c72329;
    -webkit-transition: color 0.22s, letter-spacing 0.22s;
    transition: color 0.22s, letter-spacing 0.22s;
}

.calc-price__block .cp__btn--back:hover .cp__btn-text {
    color: #949b95;
    letter-spacing: 2.5px;
}

@media screen and (max-width: 1200px) {
    .calc-price__block {
        min-height: 360px;
        padding: 30px;
    }
}

@media screen and (max-width: 992px) {
    .calc-price__block .cp__fields-ct {
        margin: 0 60px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .calc-price__block .cp__fields-ct .cp__fields-row {
        width: 100%;
        margin-bottom: 15px;
    }

    .calc-price__block .cp__fields-wrapper {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .calc-price__block .cp__fields-wrapper .cp__field--rad {
        width: calc(50% - 30px);
    }

    .calc-price__block .cp__fields-wrapper .cp__field--rad .mwvil__field__input {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .calc-price__block .cp__fields-wrapper .cp__field--rad {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
    .calc-price__block {
        padding: 30px 14px;
    }

    .calc-price__block .cp__title {
        font-size: 24px;
    }

    .calc-price__block .cp__tabs {
        margin-top: 30px;
    }

    .calc-price__block .cp__btn {
        padding: 10px 20px;
    }

    .calc-price__block .cp__btns-ct--right,
    .calc-price__block .cp__btns-ct--2 {
        margin-top: 20px;
    }
}

@media screen and (max-width: 470px) {
    .calc-price__block .mwvil__fields-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .calc-price__block .mwvil__fields-row .mwvil__field {
        width: 100%;
    }

    .calc-price__block .cp__btns-ct {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .calc-price__block .cp__btns-ct .cp__btn {
        width: 100%;
    }
}

.main_carousel-btn-open {
    position: absolute;
    left: 50%;
    bottom: 115px;
    width: 120px;
    height: 120px;
    margin-left: -60px;
    cursor: pointer;
    z-index: 10;
}

.main_carousel-btn-open .play-circle-outer {
    -webkit-animation: btn-play-circle 2s infinite;
    animation: btn-play-circle 2s infinite;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.main_carousel-btn-open .play-icon-arrow {
    -webkit-transform-origin: 52% 50%;
    -ms-transform-origin: 52% 50%;
    transform-origin: 52% 50%;
}

.main_carousel-btn-open:hover .play-icon-arrow {
    -webkit-animation: btn-play-circle-arrow 1s;
    animation: btn-play-circle-arrow 1s;
}

.main_carousel-btn-open .play-circle-outer,
.main_carousel-btn-open .play-circle-inner {
    fill: rgba(135, 70, 60, 0.94) !important;
}

.main_carousel-btn-open .play-circle-outer {
    opacity: 0.2;
}

.main_carousel-btn-open .play-icon-arrow {
    fill: #fff;
}

@media screen and (max-width: 1450px) {
    .main_carousel-btn-open {
        width: 110px;
        height: 110px;
        margin-left: -55px;
    }
}

@media screen and (max-width: 979px) {
    .main_carousel-btn-open {
        width: 90px;
        height: 90px;
        bottom: 55px;
        margin-left: -45px;
    }
}

@media screen and (max-width: 600px) {
    .main_carousel-btn-open {
        bottom: 0;
        top: 35%;
    }
}

@media screen and (min-width: 821px) {
    .home .owl-controls {
        bottom: 115px;
    }
}

.showroom-card .static_descr {
    font-family: "Roboto Regular";
    color: #383838;
    line-height: 1.4;
}

.showroom-card .building-card__text {
    width: 100%;
    text-align: justify;
}

.showroom-card .mwvil__btn--showroom {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    padding: 16px 40px;
}

.showroom-card .mwvil__tabs {
    position: relative;
    margin-bottom: 60px;
}

.showroom-card .tabs-content {
    padding: 40px 0;
}

.showroom-card .tabs-header-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
}

.showroom-card .tabs-header-btns .showroom-card__btn {
    width: auto;
    padding: 7px 40px;
    background: none !important;
    cursor: pointer;
    border-bottom: 4px solid #c72329;
    -webkit-transition: border-color 0.22s;
    transition: border-color 0.22s;
}

.showroom-card .tabs-header-btns .showroom-card__btn-text {
    font-family: "ProximaNova Regular";
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #949b95;
    -webkit-transition: color 0.22s;
    transition: color 0.22s;
}

.showroom-card .tabs-header-btns .showroom-card__btn.active {
    border-color: #383838;
}

.showroom-card .tabs-header-btns .showroom-card__btn.active .showroom-card__btn-text {
    color: #383838;
}

.showroom-card .tabs-header-btns .showroom-card__btn:hover {
    border-color: #383838;
}

.showroom-card .tabs-header-btns .showroom-card__btn:hover .showroom-card__btn-text {
    color: #383838;
}

.showroom-card .showroom-video-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.showroom-card .showroom-video-ct video,
.showroom-card .showroom-video-ct iframe {
    margin-bottom: 6px;
    width: calc(50% - 3px);
}

.showroom-card .showroom-video-ct video {
    height: 100%;
}

@media screen and (max-width: 768px) {
    .showroom-card .mwvil__btn--showroom {
        position: relative;
        margin-bottom: 30px;
    }

    .showroom-card .tabs-header-btns .showroom-card__btn {
        width: 50%;
        padding: 5px 20px;
    }

    .showroom-card .tabs-header-btns .showroom-card__btn-text {
        font-size: 20px;
    }

    .showroom-card .showroom-video-ct video,
    .showroom-card .showroom-video-ct iframe {
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .showroom-card .showroom-video-ct iframe {
        height: auto;
    }
}

.mobile .header__nav-item:hover .header__nav-link + .header__drop-down-nav {
    display: none;
}

.mobile .header__nav-item.drop-down-active .header__nav-link + .header__drop-down-nav {
    display: block;
}

.mobile .home__nav-item:hover > .home__drop-down-list {
    max-height: 0;
}

.mobile .home__nav-item.drop-down-active .home__drop-down-list {
    max-height: 1000px;
}

.vg-big-img-wr {
    position: relative;
    width: calc(100% - 200px);
    height: 560px;
}

.vg-big-img-wr .vg-btn-arrow {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    height: 40px;
    width: 70px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.vg-big-img-wr .vg-btn-arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 70%;
    background: rgba(255, 255, 255, 0.85);
}

.vg-big-img-wr .vg-btn-arrow--left {
    left: 0;
}

.vg-big-img-wr .vg-btn-arrow--left:before {
    left: 0;
}

.vg-big-img-wr .vg-btn-arrow--right {
    right: 0;
}

.vg-big-img-wr .vg-btn-arrow--right:before {
    right: 0;
}

.vg-big-img-wr .vg-big-img-ct {
    height: 100%;
}

.vg-big-img-wr .vg-big-img {
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    display: none;
}

.vg-big-img-wr .vg-big-img.active {
    display: block;
}

.desktop .vg-big-img-wr .vg-btn-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.vg-preview-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 200px;
    overflow-y: auto;
    height: 560px;
    padding-left: 5px;
    -webkit-overflow-scrolling: touch;
}

.vg-preview-ct::-webkit-scrollbar {
    width: 8px;
}

.vg-preview-ct::-webkit-scrollbar-track {
    background-color: #eeeff3;
}

.vg-preview-ct::-webkit-scrollbar-thumb {
    background-color: #cdd1da;
}

.vg-preview-ct .vg-preview {
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer;
    overflow: hidden;
}

.vg-preview-ct .vg-preview .vg-preview-img {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 66.66%;
}

.vg-preview-ct .vg-preview .vg-preview-img:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(211, 177, 132, 0.8);
    background-image: url("../img/gallery-triangle.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    left: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.vg-preview-ct .vg-preview .vg-preview-img.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d3b184;
}

.vg-preview-ct .vg-preview:last-child {
    margin-bottom: 0;
}

.desktop .vg-preview-ct .vg-preview:hover .vg-preview-img:before {
    opacity: 1;
}

.vg-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    margin: 30px 0;
}

.vg-ct:first-child {
    margin-top: 0;
}

.vg-ct:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .vg-big-img-wr {
        width: 100%;
        height: auto;
    }

    .vg-big-img-wr .vg-btn-arrow {
        display: block;
    }

    .vg-big-img-wr .vg-big-img-ct {
        height: auto;
    }

    .vg-big-img-wr .vg-big-img {
        height: auto;
        padding-top: 66.66%;
    }

    .vg-preview-ct {
        width: 100%;
        height: auto;
        padding-top: 5px;
        padding-left: 0;
        overflow-y: hidden;
        overflow-x: auto;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .vg-preview-ct .vg-preview {
        width: 200px;
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
        margin-bottom: 0;
        margin-right: 5px;
    }

    .vg-preview-ct .vg-preview:last-child {
        margin-right: 0;
    }

    .vg-preview-ct::-webkit-scrollbar {
        height: 8px;
    }

    .vg-ct {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .vg-preview-ct .vg-preview {
        width: 150px;
    }
}

@media screen and (max-width: 470px) {
    .vg-big-img-wr .vg-btn-arrow {
        margin-top: -13px;
        height: 26px;
        width: 42px;
    }

    .vg-big-img-wr .vg-btn-arrow:before {
        height: 1px;
    }

    .vg-preview-ct {
        padding-top: 3px;
    }

    .vg-preview-ct::-webkit-scrollbar {
        height: 6px;
    }

    .vg-preview-ct .vg-preview {
        width: 100px;
        margin-right: 3px;
    }

    .vg-ct {
        position: relative;
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }
}

.mw {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px) scale(0.95);
    -ms-transform: translateY(20px) scale(0.95);
    transform: translateY(20px) scale(0.95);
    z-index: 200;
    text-align: center;
    -webkit-transition: opacity .35s, visibility .35s, -webkit-transform .35s;
    transition: opacity .35s, visibility .35s, -webkit-transform .35s;
    transition: opacity .35s, visibility .35s, transform .35s;
    transition: opacity .35s, visibility .35s, transform .35s, -webkit-transform .35s;
}

@media screen and (max-width: 768px) {
    .mw {
        background: #fff;
    }
}

.mw.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
}

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

.mw.mCustomScrollbar:before {
    display: none;
}

.mw.mCustomScrollbar .mCustomScrollBox:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mw.mCustomScrollbar .mCSB_container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .mw.mCustomScrollbar .mCSB_container {
        vertical-align: top;
    }
}

.mw .btn-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    color: #c72329 !important;
    z-index: 5;
    -webkit-transition: color 0.22s;
    transition: color 0.22s;
}

.mw .btn-modal-close .icon-cross3 {
    font-size: 18px;
    line-height: 1;
}

.mw .btn-modal-close:hover {
    color: #949b95;
}

.mwr-vil {
    display: inline-block;
    vertical-align: middle;
    margin: 60px 0;
    max-width: 80%;
    width: 400px;
}

@media screen and (max-width: 768px) {
    .mwr-vil {
        width: 100%;
        max-width: none;
        margin: 0;
        vertical-align: top;
    }
}

.mct-vil {
    display: inline-block;
    position: relative;
    max-height: 100%;
    width: 100%;
}

.mwvil__content {
    position: relative;
}

.mwvil__content__ct {
    position: relative;
    background: #fff;
    padding: 60px;
    font-size: 16px;
    text-align: left;
    z-index: 3;
}

@media screen and (max-width: 768px) {
    .mwvil__content__ct {
        padding: 43px 20px 25px;
    }
}

.mwvil__content:after {
    position: absolute;
    content: '';
    display: block;
    top: -40px;
    right: 40px;
    bottom: 40px;
    left: -40px;
    border: 10px solid #c72329 !important;
    z-index: 2;
}

.mobile .mw.active {
    cursor: pointer;
    pointer-events: all;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.mw--general {
    overflow-y: scroll;
}

.mw--remodal {
    max-width: 570px;
    background: transparent;
}

.mw--remodal-video {
    max-width: 100%;
}

.mw--remodal-video .mwr-vil {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -225px;
    margin-left: -400px;
    width: 800px;
    height: 450px;
    max-width: 100%;
}

.mw--remodal-video .mwr-vil .msl-modal-video {
    width: 800px !important;
    height: 450px !important;
}

.mw--remodal-video .msl-vil .btn-modal-close {
    top: -58px;
    right: -58px;
}

@media screen and (max-width: 992px) {
    .mw--remodal-video .mwr-vil {
        width: 600px;
        height: 335px;
        margin-top: -168px;
        margin-left: -300px;
    }

    .mw--remodal-video .mwr-vil .msl-modal-video {
        width: 600px !important;
        height: 335px !important;
    }
}

@media screen and (max-width: 768px) {
    .mw--remodal-video .msl-vil .btn-modal-close {
        top: -44px;
        right: -44px;
    }
}

@media screen and (max-width: 650px) {
    .mw--remodal-video .mwr-vil {
        width: 320px;
        height: 180px;
        margin-top: -90px;
        margin-left: -160px;
    }

    .mw--remodal-video .mwr-vil .msl-modal-video {
        width: 320px !important;
        height: 180px !important;
    }

    .mw--remodal-video .msl-vil .btn-modal-close {
        right: 0;
    }
}

.mw--remodal .btn-modal-close {
    color: #c72329 !important;
    -webkit-transition: color 0.22s;
    transition: color 0.22s;
}

.mw--remodal .btn-modal-close .icon-cross3 {
    font-size: 18px;
    line-height: 1;
}

.mw--remodal .btn-modal-close:hover {
    color: #c72329 !important;
}

.mw--image .mwr-vil {
    width: auto;
}

@media screen and (max-width: 768px) {
    .mw--image .mwr-vil {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mw--image .mwvil__content {
        padding-top: 55px;
    }
}

.mw--image .mwvil__content img {
    display: block;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .mw--image .mwvil__content img {
        width: 100%;
    }
}

.mwvil__title {
    position: relative;
    margin: 0;
    margin-bottom: 38px;
    font-family: "ProximaNova Regular";
    font-size: 30px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1;
    letter-spacing: 2px;
}

.mwvil__title:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 98px;
    height: 5px;
    background: #c72329 !important;
}

.mwvil__text {
    font-family: "Roboto Regular";
    font-size: 14px;
    line-height: 1.4;
}

.mwvil__btn {
    width: 100%;
    margin: 0;
    padding: 11px;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
    background: #c72329 !important;
    -webkit-transition: background 0.22s;
    transition: background 0.22s;
}

.mwvil__btn-text {
    font-size: 13px;
    font-family: "Roboto Condensed";
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.mwvil__btn:hover {
    background: #c72329;
}

.mwvil__date {
    font-weight: bold;
}

.mwvil__tabs .tab {
    display: none;
}

.mwvil__tabs .tab.active {
    display: block;
}

.mwvil__time-title {
    margin-bottom: 7px;
    font-family: "Roboto Medium";
    font-size: 14px;
    color: #949b95;
    line-height: 1.2;
    letter-spacing: .5px;
}

.mwvil__time-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mwvil__time-ct label {
    width: 20%;
}

.mw {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    z-index: 200;
    -webkit-transition: opacity .3s, visibility .3s, -webkit-transform .3s;
    transition: opacity .3s, visibility .3s, -webkit-transform .3s;
    transition: opacity .3s, visibility .3s, transform .3s;
    transition: opacity .3s, visibility .3s, transform .3s, -webkit-transform .3s;
}

@media screen and (max-width: 768px) {
    .mw {
        background: #fff;
    }
}

.mw.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

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

.mw.mCustomScrollbar:before {
    display: none;
}

.mw.mCustomScrollbar .mCustomScrollBox:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mw.mCustomScrollbar .mCSB_container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .mw.mCustomScrollbar .mCSB_container {
        vertical-align: top;
    }
}

.mobile .mw.active {
    cursor: pointer;
    pointer-events: all;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.btn-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 58px;
    width: 58px;
    font-size: 0;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

.btn-modal-close .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    line-height: 1;
}

.btn-modal-close .icon:before {
    display: block;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .btn-modal-close {
        width: 44px;
        height: 44px;
    }

    .btn-modal-close .icon {
        margin-top: -7px;
        margin-left: -7px;
    }

    .btn-modal-close .icon:before {
        font-size: 14px;
    }
}

/*** Modal slider ***/
.msl-vil {
    width: 100%;
    height: 100%;
}

.msl-vil .modal-slide {
    height: 100%;
}

.msl-vil .day__video {
    max-width: 85%;
    width: auto;
    max-height: 95vh;
    height: auto;
}

.msl-vil .slider__ct,
.msl-vil .slick-list,
.msl-vil .slick-track {
    height: 100%;
}

.msl-vil .slick-slide > div {
    height: 100%;
}

.msl-vil .slick-slide > div .modal-slide {
    height: 100%;
}

.msl-vil .btn-gallery-ui {
    cursor: pointer;
    z-index: 5;
}

.msl-vil .btn-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 7;
}

@media screen and (max-width: 992px) {
    .msl-vil .btn-modal-close {
        top: 0;
        right: 0;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .btn-modal-close {
        opacity: .7;
    }
}

.msl-vil .btn-gallery-arrow {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    position: absolute;
    top: 50%;
    height: 58px;
    width: 58px;
    margin-top: -29px;
    font-size: 0;
    color: #c72329;
    text-align: center;
}

.msl-vil .btn-gallery-arrow:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    display: inline-block;
    vertical-align: middle;
    font-family: "icon-font";
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
}

.msl-vil .btn-gallery-arrow.btn-arrow-prev {
    left: 20px;
    padding-right: 1px;
}

.msl-vil .btn-gallery-arrow.btn-arrow-prev:before {
    content: '\EA05';
}

.msl-vil .btn-gallery-arrow.btn-arrow-next {
    right: 20px;
    padding-left: 1px;
}

.msl-vil .btn-gallery-arrow.btn-arrow-next:before {
    content: '\EA07';
}

.msl-vil .btn-gallery-arrow span {
    display: none;
}

@media screen and (max-width: 992px) {
    .msl-vil .btn-gallery-arrow.btn-arrow-prev {
        left: 0;
    }

    .msl-vil .btn-gallery-arrow.btn-arrow-next {
        right: 0;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .btn-gallery-arrow {
        top: auto;
        bottom: 0;
        width: 50%;
        height: 36px;
        margin-top: 0;
    }

    .msl-vil .btn-gallery-arrow:before {
        font-size: 14px;
    }
}

.msl-vil .modal-slide {
    font-size: 0;
    font-size: 0;
    text-align: center;
}

.msl-vil .modal-slide:before {
    content: '';
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide:before {
        display: none;
    }
}

.msl-vil .modal-slide .slide-inner {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.msl-vil .modal-slide .slide-inner .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.msl-vil .modal-slide .slide-inner .msl-info {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 3;
}

.msl-vil .modal-slide .slide-inner .msl-info__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    text-align: left;
}

.msl-vil .modal-slide .slide-inner .msl-info__text .inner-ct {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
}

.msl-vil .modal-slide .slide-inner .msl-info__text__label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 25px 17px;
    color: #fff;
}

.msl-vil .modal-slide .slide-inner .msl-info__text__label .inner-ct {
    font-size: 22px;
    line-height: 1.1;
}

.msl-vil .modal-slide .slide-inner .msl-info__text__ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 25px;
    color: #fff;
}

.msl-vil .modal-slide .slide-inner .msl-info__text__ct .inner-ct {
    font-size: 18px;
    line-height: 1.25;
}

.msl-vil .modal-slide .slide-inner .msl-info__text__ct .inner-ct .shadow-label {
    display: none;
}

@media screen and (max-width: 1700px) {
    .msl-vil .modal-slide .slide-inner .msl-info__text__label {
        padding: 8px 15px 9px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__label .inner-ct {
        font-size: 19px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__ct {
        padding: 10px 12px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__ct .inner-ct {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide .slide-inner .msl-info {
        top: auto;
        bottom: 36px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__label {
        padding: 8px 8px 9px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__label .inner-ct {
        font-size: 16px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__ct {
        padding: 10px 10px;
    }

    .msl-vil .modal-slide .slide-inner .msl-info__text__ct .inner-ct {
        font-size: 13px;
    }
}

.msl-vil .modal-slide .slide-inner .msl-counters {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    padding: 17px 0;
}

.msl-vil .modal-slide .slide-inner .msl-counters .slides-count {
    display: inline-block;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

@media screen and (max-width: 1700px) {
    .msl-vil .modal-slide .slide-inner .msl-counters {
        padding: 7px;
    }

    .msl-vil .modal-slide .slide-inner .msl-counters .slides-count {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide .slide-inner .msl-counters {
        top: 0;
        bottom: auto;
        padding: 7px;
    }

    .msl-vil .modal-slide .slide-inner .msl-counters .slides-count {
        font-size: 18px;
        letter-spacing: .6px;
    }
}

.msl-vil .modal-slide .slide-inner__ct {
    position: relative;
    background: none !important;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 2;
}

.msl-vil .modal-slide .slide-inner__ct:before {
    content: '';
    position: absolute;
    top: -70px;
    left: -70px;
    bottom: 70px;
    width: 40%;
}

@media screen and (max-width: 1700px) {
    .msl-vil .modal-slide .slide-inner__ct:before {
        top: -40px;
        left: -40px;
        bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide .slide-inner__ct:before {
        display: none;
    }
}

.msl-vil .modal-slide .slide-inner__ct > * {
    position: relative;
    z-index: 2;
}

.msl-vil .modal-slide .slide-inner__ct img {
    display: block;
    max-height: 680px;
    max-width: 1200px;
}

@media screen and (max-width: 1450px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-width: 960px;
    }
}

@media screen and (max-width: 1200px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-width: 750px;
    }
}

@media screen and (max-width: 992px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-width: 670px;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin-top: -25px;
        max-width: 100% !important;
        max-height: calc(100% - 120px) !important;
    }
}

@media (max-height: 850px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-height: 580px;
    }
}

@media (max-height: 750px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-height: 480px;
    }
}

@media (max-height: 650px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-height: 380px;
    }
}

@media (max-height: 550px) {
    .msl-vil .modal-slide .slide-inner__ct img {
        max-height: 280px;
    }
}

.msl-vil .modal-slide .slide-inner__ct .js_video-ct {
    width: 640px;
    height: auto;
    padding-top: 56.25%;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide .slide-inner__ct .js_video-ct {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        margin-top: -20px;
    }
}

@media screen and (max-width: 768px) {
    .msl-vil .modal-slide .slide-inner {
        display: block;
        width: 100%;
        height: 100%;
    }

    .msl-vil .modal-slide .slide-inner__ct {
        width: 100%;
        height: 100%;
    }
}

.msl-vil.preloader-local-ct .preloader-local {
    background: none;
    z-index: 6;
}

.msl-vil.processing .modal-slide .slide-inner__ct {
    opacity: 0;
}

.desktop .msl-vil .btn-gallery-arrow {
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.desktop .msl-vil .btn-gallery-arrow:hover {
    background: #fff;
}

@media screen and (max-width: 768px) {
    .mw--gallery {
        background: #000;
    }

    .mw--gallery .mCSB_container {
        height: 100%;
    }
}

.mw--gallery .mwr-vil {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
}

.mw--gallery .mct-vil {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
}

.mw--gallery .mw__content {
    width: 100%;
    height: 100%;
}

.mw--gallery.active .js_video-ct {
    visibility: visible;
}

.header {
    background-position: 50% 50%;
}

.header__language {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    opacity: 0
}

@media screen and (max-width: 992px) {
    .header__language {
        width: 155px;
    }
}

@media screen and (max-width: 768px) {
    .header__language {
        width: auto;
    }
}

.header__phones-wrap {
    width: 220px;
    margin-left: -50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header__phone {
    font-size: 22px;
}

.header__phones-ct {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    padding-bottom: 10px;
}

.header__socials-text {
    margin-right: 20px;
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 1.2px;
    white-space: nowrap;
    color: #fff;
}

.header__socials {
    white-space: nowrap;
}

.header__socials .icon {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    -webkit-transition: color 0.22s;
    transition: color 0.22s;
}

.header__socials .icon:before {
    display: block;
}

.header__socials-link {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    padding: 5px;
}

.header__socials-link:last-child {
    margin-right: 0;
}

.header__socials-link:hover .icon {
    color: #c72329;
}

.header__socials-ct {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 350px;
    padding-top: 12px;
    font-size: 0;
}

.header__socials-ct:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 213px;
    height: 1px;
    background: #fff;
}

.header__mb-menu {
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .header__mb-menu {
        margin-left: 0;
    }
}

@media screen and (max-width: 1450px) {
    .header__socials-ct {
        width: auto;
    }

    .header__socials-text {
        width: 120px;
        margin-right: 10px;
        white-space: normal;
    }

    .header__socials .icon {
        font-size: 20px;
    }

    .header__socials-link {
        margin-right: 6px;
    }
}

@media screen and (max-width: 1200px) {
    .header__socials-text {
        font-size: 13px;
    }

    .header__socials-ct {
        padding-top: 6px;
    }

    .header__phones-ct {
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 992px) {
    .header {
        padding-bottom: 2px;
    }

    .header__socials-ct:before {
        width: 100%;
    }

    .header__phones-wrap {
        width: 210px;
        margin-left: -40px;
    }

    .header__socials-text {
        letter-spacing: .3px;
    }
}

@media screen and (max-width: 768px) {
    .header__phones-ct {
        -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;
    }

    .header__phones-wrap {
        width: 100%;
    }

    .header__socials-text {
        width: auto;
        font-size: 15px;
    }

    .header__socials-ct {
        padding-top: 10px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header__inner {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.home__menu-ico {
    background-position: center 23px;
}

.home__menu-close {
    background-position: center 21px;
}

.home__lang-wrap {
    margin-bottom: 9px;
}

.home__call-back-ico {
    margin-right: 0;
    background-size: contain;
}

.home__phone {
    height: 100%;
    margin-left: 44px;
}

.home__right-side .home__phone {
    display: none;
}

.home__socials-text {
    margin-right: 20px;
    font-family: 'Roboto Condensed';
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 1.2px;
    white-space: nowrap;
    color: #fff;
}

.home__socials {
    white-space: nowrap;
}

.home__socials .icon {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    -webkit-transition: color 0.22s;
    transition: color 0.22s;
}

.home__socials .icon:before {
    display: block;
}

.home__socials-link {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    padding: 5px;
}

.home__socials-link:last-child {
    margin-right: 0;
}

.home__socials-link:hover .icon {
    color: #A9D9D8;
}

.home__socials-ct {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -js-display: flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-size: 0;
    padding-right: 20px;
}

@media screen and (max-width: 1450px) {
    .home__socials-text {
        width: 120px;
        margin-right: 10px;
        white-space: normal;
    }

    .home__socials .icon {
        font-size: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .home__lang-wrap {
        margin-left: 14px;
    }

    .home__phone {
        margin-left: 18px;
    }

    .home__socials-text {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .home__call-back-ico {
        margin-left: 0;
    }

    .home__phone-number {
        display: none;
    }

    .home__socials-text {
        display: inline-block;
    }

    .home__socials-ct {
        padding-right: 12px;
    }
}

@media screen and (max-width: 768px) {
    .home__phone {
        display: none;
    }

    .home__right-side .home__phone {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        -js-display: inline-flex;
        display: inline-flex;
        margin-right: 15px;
        margin-left: 0;
    }

    .home__socials-text {
        display: none;
    }

    .home__socials-link {
        margin-right: 6px;
    }

    .home__socials .icon {
        font-size: 18px;
    }
}

@media screen and (max-width: 580px) {
    .home__menu-ico {
        width: 42px;
    }

    .home__lang-item:first-child:last-child {
        margin-top: -30px;
    }

    .home__lang-wrap {
        margin-left: 16px;
        margin-bottom: 12px;
    }

    .home__call-back-ico {
        width: 20px;
        height: 30px;
    }

    .home__right-side .home__phone {
        margin-right: 12px;
    }

    .home__socials .icon {
        font-size: 17px;
    }

    .home__socials-ct {
        padding-right: 16px;
    }
}

@media screen and (max-width: 470px) {
    .home__lang-item {
        margin-left: 3px;
        margin-right: 3px;
    }

    .home__lang-link {
        font-size: 13px;
    }

    .home__call-back-ico {
        width: 18px;
        height: 27px;
    }

    .home__right-side .home__phone {
        margin-right: 4px;
    }

    .home__socials-link {
        margin-right: 2px;
    }

    .home__socials .icon {
        font-size: 15px;
    }
}

.bellaggo-bg .card {
    background-image: url(/img/QP_background-04.svg);
    background-size: cover;
}
