@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

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

body {
    line-height: 1;
}

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

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

a,
a:hover {
    text-decoration: none;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}

body {
    -webkit-text-size-adjust: none;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
}

button,
input[type=cancel],
input[type=reset],
input[type=submit]:hover {
    cursor: pointer;
}

input[type=file],
input[type=password],
input[type=submit],
input[type=text],
input[type=email],
input[type=search],
textarea,
select {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: auto;
}

select::ms-expand {
    display: none;
}

input::-ms-clear {
    display: none;
}


/**************
END RESETT CSS
****************/

@font-face {
    font-family: "DinCon";
    src: url("../font/PFDinCondensed/DINPro-CondensedBold.woff") format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "DinCon";
    src: url("../font/PFDinCondensed/PFDinCondensedMedium.woff") format("woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "DinCon";
    src: url("../font/PFDinCondensed/PFDinCondensedRegular.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "DinCon";
    src: url("../font/PFDinCondensed/PFDinCondensedLight.woff") format("woff");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "DinCon";
    src: url("../font/PFDinCondensed/PFDinCondensedThin.woff") format("woff");
    font-style: normal;
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Futuris";
    src: url("../font/FuturisCTT.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Futuris";
    src: url("../font/Futuris-Bold.woff") format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --main-font: "DinCon", sans-serif;
    --second-font: "Futuris", sans-serif;
    --blue: #c7081b;
    --black: #000;
    --text-color: #546e7a;
    --border-color: rgba(207, 216, 220, .4);
    --gray: #eceff1;
}

html,
body {
    min-height: 100%;
}

html {
    font-size: 13px;
}

body {
    background-color: #fff;
    color: var(--text-color);
    font-family: var(--main-font);
}

.noscroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: currentColor;
    -webkit-transition: all .2s;
    transition: all .2s;
}

h1,
.h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5em;
    color: var(--blue);
    font-weight: 700;
}

h2,
.h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    color: var(--blue);
    font-weight: 700;
}

h3,
.h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5em;
    color: var(--blue);
    font-weight: 700;
}

h4,
.h4 {
    font-size: 3.125rem;
    margin-bottom: 0.5em;
    color: var(--blue);
    font-weight: 700;
}

h5,
.h5 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: var(--blue);
    font-weight: 700;
}

h6,
.h6 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
    color: var(--blue);
    font-weight: 700;
}

p {
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

p:not(:last-child) {
    margin-bottom: 1em;
}

.font-500 {
    font-weight: 500;
}

b,
strong {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

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

.inner-container {
    padding-left: 6.25em;
}

.container {
    padding-left: 10.4375rem;
    padding-right: 10.4375rem;
}

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

.columns {
    position: absolute;
    width: calc(100% - 20.875em);
    top: 0;
    left: 8.4375em;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -1;
}

.columns .column {
    width: 16.666%;
    border-right: 1px solid var(--border-color);
    opacity: 0.6;
}

.columns .column:first-child {
    border-left: 1px solid var(--border-color);
}

.right-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.4375em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.right-sidebar .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    background-color: rgba(29, 113, 184, 0.9) !important;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    height: 100vh;
    overflow-y: auto;
    padding-left: 3em;
    padding-top: 7em;
}

.right-sidebar .menu li {
    margin-bottom: .5em;
}

.right-sidebar .menu .close-menu {
    position: absolute;
    top: 1rem;
    left: 2rem;
    width: 5rem;
    height: 4rem;
    cursor: pointer;
}

.right-sidebar .menu .close-menu::before,
.right-sidebar .menu .close-menu::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 1;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.right-sidebar .menu .close-menu::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.right-sidebar .menu .close-menu::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.right-sidebar.menu-open .menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.menu-callback-form {
    padding-right: 3rem;
}

.menu-callback-form .h3 {
    font-size: 2.2rem;
    color: #fff;
    margin: 1em 0 .5em;
}

.menu-callback-form .input {
    height: 40px;
    padding-left: 15px;
    font-size: 18px;
    margin-bottom: 15px;
    border: none;
}

.menu-callback-form .btn {
    display: block;
    width: 100%;
    height: 50px;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: var(--blue);
    font-family: var(--maini-font);
    border-radius: 15px;
    background-color: #fff;
    border: 3px solid var(--blue);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu-callback-form .btn:hover {
    background-color: var(--blue);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 255, 255, .2);
}

.right-sidebar .select--lang {
    position: relative;
    width: 50px;
    position: relative;
    margin: 3rem auto;
}

.right-sidebar .select--lang .placeholder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
}

.right-sidebar .select--lang.is-open ul {
    display: block;
}

.right-sidebar .select--lang ul {
    position: absolute;
    top: calc(100% - 2rem);
    left: 0;
    width: 50px;
    text-align: center;
    border: 3px solid #fff;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0 0 50px 50px;
    border-top: none;
    padding: 30px 0;
    display: none;
}

.right-sidebar .select--lang ul li {
    padding: 15px 0 0 0;
    cursor: pointer;
}

.right-sidebar__menu {
    width: 100%;
}

.right-sidebar__menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 8.4375em;
    color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.right-sidebar__menu a.blue {
    color: var(--blue);
}

.right-sidebar__menu a.blue:hover {
    opacity: 0.8;
}

.right-sidebar__menu a:hover {
    color: var(--blue);
}

.right-sidebar__menu a:hover .tip {
    opacity: 1;
    visibility: visible;
}

.right-sidebar__menu a img {
    max-height: 50px;
}

.right-sidebar__menu a span {
    display: block;
    width: 4.6153rem;
    height: 4.6153rem;
}

.right-sidebar__menu a svg {
    width: 100%;
    height: 100%;
}

.right-sidebar__menu .callback-ico span {
    width: 3.5rem;
    height: 3.5rem;
}

.right-sidebar__menu span.tip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 16px;
    background-color: rgba(0, 0, 0, .3);
    padding: 4px 8px;
    color: #fff;
    transition: opacity .3s;
    opacity: 0;
    visibility: hidden;
}

.right-sidebar__menu span.tip::after {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, .3);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width: 1200px) {
    .right-sidebar__menu span.tip {
        display: none;
    }
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.flex {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex--wrap {
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex--center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

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

.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blue {
    color: var(--blue);
}

.body-open-menu .wrapper {
    padding-left: 8.4375em;
}

.body-open-menu .left-sidebar--lt {
    position: absolute;
    left: -8.4375em;
    padding-bottom: 40px;
    z-index: 2;
}

.mobile,
.svg-sprite {
    display: none;
}

.section-custom {
    padding-right: 10.4375rem;
    padding-left: 10.4375rem;
}

.no-border {
    border: none !important;
}

@-webkit-keyframes anim {
    0% {
        opacity: 0;
        -webkit-filter: blur(28px);
        filter: blur(28px);
    }
    10% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-filter: blur(0.1px);
        filter: blur(0.1px);
    }
}

@keyframes anim {
    0% {
        opacity: 0;
        -webkit-filter: blur(28px);
        filter: blur(28px);
    }
    10% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-filter: blur(0.1px);
        filter: blur(0.1px);
    }
}

.a {
    -webkit-animation: anim 5s infinite alternate-reverse;
    animation: anim 5s infinite alternate-reverse;
}

.b {
    -webkit-animation: anim 5s infinite alternate;
    animation: anim 5s infinite alternate;
}

.help-block {
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
    color: var(--blue);
}

/* Slider */

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    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);
    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;
    outline: none;
    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;
}


/* Slider */

.slick-loading .slick-list {
    background: #fff slick-image-url("../img/icons/ajax-loader.gif") center center no-repeat;
}


/* Arrows */

.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}


/* Dots */

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
}


/*Header*/

.container ol, .container ul, .container li {
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
    padding-left: 2rem;
}

.container ul {
    margin-bottom: 2rem;
}

.container li {
    list-style: disc;
    padding: 0.3rem;
}
ul.breadcrumbs li  {
    list-style: none;
}

/*main-conten*/

.main-content,
.section {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.main-content {
    height: 100%;
}

.left-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 21em;
    position: relative;
}

.left-sidebar.menu-open {
    width: 280px !important;
    background-color: rgba(199, 8, 27, 0.82) !important;
}

.left-sidebar::before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: rgba(212, 220, 224, 0.3);
    position: absolute;
    left: 8.4375em;
    top: 0;
}

.left-sidebar--lt {
    width: 8.4375em;
    border-right: none;
}

.h-100vh {
    max-height: 100vh;
}

.top-screen__title {
    position: absolute;
    top: 34rem;
    left: 0;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    width: 100%;
    height: calc(100vh - 34rem);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 2vh;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.top-screen__title span {
    display: block;
    font-size: 4vh;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--gray);
    overflow: hidden;
    text-overflow: ellipsis;
}

.section--top {
    height: 100vh;
}

.menu-btn,
.close-popup {
    display: block;
    width: 5em;
    height: 3.6em;
    margin: 2.5em 0 2.5em 1.5em;
    color: #fff;
    position: relative;
}

.menu-btn::before,
.menu-btn::after,
.close-popup::before,
.close-popup::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.menu-btn::before,
.close-popup::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-btn::after,
.close-popup::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-btn span,
.close-popup span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.menu-btn span:not(:last-child),
.close-popup span:not(:last-child) {
    margin-bottom: 1.25em;
}

.close-popup {
    display: none;
}

.close-popup::before,
.close-popup::after {
    background-color: var(--blue);
    opacity: 1;
}

.logo {
    display: block;
    width: 8.4375em;
    height: 21.1875em;
    background: transparent url("../img/icons/logo_white.svg") left top no-repeat;
    background-size: contain;
}

.content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}


/*top-screen*/

.top-screen {
    min-height: 100vh;
}

.top-screen .icon {
    width: 7em;
    height: 7em;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.top-screen__descr {
    width: 55%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-screen__img {
    min-width: 20%;
    height: 100vh;
    position: relative;
    padding: 2em 3em;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.top-screen__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.top-screen__img__title {
    width: 100%;
    font-size: 7rem;
    font-weight: 700;
    color: #fff;
}

.top-screen__img__title .h4 {
    display: block;
    font-size: 4vw;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 100%;
    width: 100%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.top-screen__img__title--services .h4 {
    font-size: 10rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 4vh;
}

.top-screen__descr__text .h4 {
    font-weight: 700;
}

.top-screen__descr__item {
    position: relative;
    padding-left: 6.25em;
}

.top-screen__descr__item:not(:last-child) {
    margin-bottom: 6.25em;
}

.menu {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    margin-top: 1em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu li {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .3em;
    color: rgba(255, 255, 255, 0.5);
}

.menu li a:hover,
.menu li a.active {
    color: #fff;
}

.menu-open {
    background-color: rgba(29, 113, 184, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.menu-open::before {
    background-color: rgba(212, 220, 224, 0.1);
}

.menu-open .menu {
    opacity: 1;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
    visibility: visible;
}

.left-sidebar.menu-open .menu {
    max-width: 90%;
}

.menu li {
    font-size: 2.5rem;
}

.menu-open .top-screen__title {
    opacity: 0;
    visibility: hidden;
}

.menu-open .menu-btn {
    color: #fff;
}

.menu-open .menu-btn::before,
.menu-open .menu-btn::after {
    opacity: 1;
}

.menu-open .menu-btn span {
    opacity: 0;
}

.main-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.main-slider img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.section--first {
    position: relative;
}

.section--first .columns {
    z-index: 1;
}

.section--first .columns .columns {
    opacity: 0.3;
}

.section--first .left-sidebar {
    width: 8.4375em;
    height: 100vh;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
}

.section--first .left-sidebar,
.section--first .content {
    position: relative;
    z-index: 1;
}

.section-content {
    width: calc(100% - 20.875em);
    margin: auto;
    min-height: 100vh;
}

@media(min-width: 767px) {
    .section--first .section-content {
        width: calc(100% - 16.875em);
    }
}

.section-content .content {
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset;
    width: 100%;
}

.main-slider-dots {
    width: 100%;
    margin-top: 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 7vh;
    left: 0;
}

.main-slider-dots .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: static;
}

.main-slider-dots .slick-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.main-slider-dots .slick-dots li:not(:last-child) {
    margin-right: 10px;
}

.main-slider-dots .slick-dots li.slick-active button {
    background-color: #fff;
}

.main-slider-dots .slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.main-slider-dots .slick-dots li button::before {
    display: none;
}

.section--white .left-sidebar,
.section--white .right-sidebar {
    background-color: transparent;
}

.section--white .menu-btn,
.section--white .right-sidebar__menu a {
    color: var(--blue);
}

.section .menu-btn:hover,
.section .right-sidebar__menu a:hover {
    color: var(--blue);
}

.section--white .menu-btn:hover,
.section--white .right-sidebar__menu a:hover {
    color: #000;
}

.section--white .logo {
    background-image: url("../img/icons/logo_dark.png");
}

.section--white .menu-open .logo {
    background-image: url("../img/icons/logo_white.svg");
}

.section--white .right-sidebar .select--lang .placeholder,
.section--white .right-sidebar .select--lang ul {
    border: 3px solid var(--blue);
    color: var(--blue);
}

.section--white .right-sidebar .select--lang ul {
    border-top: none;
}

.section-content--gallery {
    background: url("../img/load/gallery-main-img.jpg") 0 0 no-repeat;
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery-top-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    z-index: 3;
}

.gallery-top-links li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.gallery-top-links li a:hover {
    opacity: 0.6;
}

.gallery-top__link__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 2.1875rem;
    font-weight: 700;
    font-family: var(--second-font);
    text-transform: uppercase;
    line-height: 1.2;
}

.gallery-top__link__name span {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.gallery-top__link__icon {
    display: block;
    width: 10rem;
    height: 10rem;
    margin-top: 2rem;
}

.features {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    margin-bottom: 3rem;
    z-index: 2;
}

.features__item {
    width: 30%;
    text-align: center;
    margin-bottom: 3rem;
}

.features__icon {
    width: 130px;
    height: 130px;
    margin: 30px auto 20px;
}

.features__icon img {
    width: 100%;
}

.features__item__title {
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 1;
    min-height: 2em;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
}

.features__item__descr {
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1;
    padding: 0 1em;
    font-weight: 700;
}

.company-services {
    padding: 30px 0;
}

.company-services .h2 {
    padding-left: calc(25% + 1rem);
    margin-bottom: .5em;
}

.company-service__items {
    margin: 0 -2rem;
}

.company-service__item {
    width: 25%;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

#text-style {
    padding: 0 1.25em;
    display: flex;
    flex-direction: column;
}

#text-style label {
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

#lots-style {
    padding: 0;
}

#lots-style label {
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

@media(min-width: 1280px) {
    .company-services .breadcrumbs {
        padding-left: 2.7rem;
    }
}

.blogs::after {
    display: none;
}

@media(min-width: 1200px) {
    .section--first .section-content--services .company-service__item {
        width: 25%;
    }
    .section--first .section-content--services .company-service__item--text {
        width: 75%;
    }
}

@media(min-width: 770px) and (max-width: 1199px) {
    .section--first .section-content--services .company-service__item {
        width: 50%;
    }
    .section--first .section-content--services .company-service__item--text {
        width: 100%;
    }
}

.company-service__item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.company-service__item__content img {
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.company-service__item__content p {
    font-size: 1.7rem;
}

.company-service__item__content p:not(:last-child) {
    margin-bottom: 1em;
}

a.company-service__item__content:hover img {
    opacity: 0.8;
}

@media (min-width: 1200px) {
    a.company-service__item__content:hover .company-service__item__title {
        width: 100%;
    }
}

.company-service__item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    background-color: rgba(29, 113, 184, 0.8);
    height: 100%;
    font-family: var(--second-font);
    color: #fff;
    text-align: right;
    line-height: 1.2;
    font-size: 2.2rem;
    border-radius: 10px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 700;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .4s;
    transition: all .4s;
}

.company-service__item__title span {
    display: block;
    padding: 3rem 1rem;
}

.video {
    width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 35px;
    line-height: 0;
}

.video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video .play {
    width: 12.307em;
    height: 12.307em;
    background: url("../img/icons/play-button.svg") 0 0 no-repeat;
    background-size: contain;
    cursor: pointer;
    position: absolute;
    left: 15em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.video .play:hover {
    opacity: 0.8;
}

.video-title {
    position: absolute;
    top: 0;
    right: 0;
    min-width: calc(25% - 3rem);
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 100%;
    color: #fff;
    line-height: 1;
    font-size: 6vw;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 700;
    padding: 5vh 15px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.play-video .play,
.play-video .video-title {
    opacity: 0 !important;
}


/*contact-section*/

.contact-section {
    padding-right: 10.4375rem;
    padding-left: 10.4375rem;
}

.contact-section .left-sidebar,
.contact-section .content {
    padding-top: 7rem;
}

.contact-section .left-sidebar {
    border-right: 3px solid var(--blue);
}

.contact-section .content {
    position: relative;
}

.contact-section--gallery {
    padding-top: 10rem;
}

.contact-section--gallery .left-sidebar,
.contact-section--gallery .content {
    padding-top: 12rem;
}

.contact-block {
    margin-bottom: 8em;
}

.contact-block__inputs {
    padding-left: 2.5rem;
}

.comment-block {
    margin-bottom: 1em;
}

.comment-block__inputs {
    padding-left: 2.5rem;
}

.input-wrapper {
    position: relative;
    margin-bottom: 2.5em;
}

.input-wrapper .icon {
    position: absolute;
    top: 50%;
    left: 1.875em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: 4em;
    max-width: 4em;
}

.input-wrapper .icon img {
    width: 100%;
    max-height: 4em;
    -o-object-fit: contain;
    object-fit: contain;
}

.input {
    display: block;
    width: 100%;
    height: 3.33em;
    font-size: 1.875rem;
    border-radius: 15px;
    border: 3px solid var(--blue);
    font-family: var(--second-font);
    padding-left: 3.333em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.searching_block .input {
    padding-left: 1.333em;
}

.attachment_input {
    padding-top: 0.833em;
}

.reset-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    color: var(--blue);
}

.input:focus {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-block__inputs {
    width: calc(45% - 2.5em);
}

.contact-block__message {
    width: 55%;
}

.comment-block__inputs {
    /*width: calc(20% - 2.5em);*/
}

.comment-block__message {
    width: 125%;
    margin-left: 10px;
}

.comment-block__inputs img {
    width: 50%;
    max-height: 300px;
    max-width: 50%;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper .btn {
    display: block;
    width: calc(100% - 5rem);
    height: 2.5em;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    border: none;
    outline: none;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: .8;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--maini-font);
    border-radius: 15px;
    background-color: var(--blue);
    border: 3px solid var(--blue);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.input-wrapper .btn {
    display: block;
    width: calc(100% - 1rem);
    height: 2.5em;
    border: none;
    outline: none;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: .8;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--maini-font);
    border-radius: 15px;
    background-color: var(--blue);
    border: 3px solid var(--blue);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#text-style .input-wrapper a.btn {
    text-align: center;
    display: inline-block;
    padding: 20px 20px;
    color: #fff;
}

#text-style .input-wrapper a.btn:hover {
    background-color: #fff;
    color: var(--blue);
}

#lots-style .input-wrapper a.btn {
    text-align: center;
    display: inline-block;
    padding: 20px 20px;
    color: #fff;
}

#lots-style .input-wrapper a.btn:hover {
    background-color: #fff;
    color: var(--blue);
}

.textarea-wrapper .btn:hover {
    background-color: #fff;
    color: var(--blue);
}

.input-wrapper .btn:hover {
    background-color: #fff;
    color: var(--blue);
}

.textarea {
    display: block;
    width: 100%;
    height: 12.7em;
    font-size: 1.875rem;
    border-radius: 15px;
    border: 3px solid var(--blue);
    padding-left: 1rem;
    font-family: var(--second-font);
    padding-left: 1em;
    padding-top: 1em;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.textarea:focus {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info__title {
    font-size: 4.5em;
    font-weight: 700;
    text-transform: uppercase;
    color: #cfd8dc;
    position: relative;
    margin-bottom: 1em;
}

.pl-2 {
    padding-left: 2rem;
}

.contact-info__title::before {
    content: '';
    width: 7rem;
    height: 7rem;
    background: transparent url("../img/icons/manager.svg") left top no-repeat;
    background-size: contain;
    position: absolute;
    left: -6.25rem;
    top: .3em;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.contact-info__title .icon {
    display: inline-block;
    vertical-align: text-top;
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: 0 0.5rem;
}

.contact-info__title .icon img {
    vertical-align: top;
}

.contact-info__title a {
    font-size: 1.5em;
}

.contact-info__title a:hover {
    opacity: 0.8;
}

.contact-info__title .icon:hover .tip {
    opacity: 1;
    visibility: visible;
}

.contact-info__title .icon .tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 16px;
    background-color: rgba(0, 0, 0, .7);
    padding: 4px 8px;
    color: #fff;
    transition: opacity .3s;
    opacity: 0;
    visibility: hidden;
}

.contact-info__title .icon .tip::after {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, .7);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.view-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.view-gallery::before {
    content: '';
    width: 45%;
    height: 3px;
    background-color: var(--blue);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.view-gallery::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--blue);
    position: absolute;
    left: -1px;
    top: 50%;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.view-gallery__btn {
    width: 55%;
    text-align: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 3px solid var(--blue);
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    z-index: 1;
}

.view-gallery__btn:hover {
    background-color: var(--blue);
    color: #fff;
}

.view-gallery__btn__icon {
    width: 9.2307rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    top: calc(50% + .4rem);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 2rem;
}

.view-gallery__btn__icon span {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 5px;
    background-color: currentColor;
    margin-bottom: 0.4rem;
}

.map {
    padding: 40px 0;
}

.map .h1 {
    margin-bottom: 0.5em;
}

.map .h4 {
    margin-bottom: 0.5em;
}

@media (min-width: 768px) {
    .map p {
        font-size: 2rem;
    }
}

.map p a {
    color: var(--blue);
}

.map p a:hover {
    text-decoration: underline;
}

.map-img {
    height: 50vh;
    min-height: 400px;
    margin-top: 3em;
}

.map-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.map-img svg {
    width: 100%;
    height: 100%;
}

.tooltip {
    position: fixed;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    color: #333;
    background: #fff;
    font-size: 16px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
}

.about-us-descr-section {
    padding-top: 6em;
    padding-bottom: 6em;
}

.about-us-descr-section p {
    font-size: 2rem;
}

.about-us-descr-section .content .h2 {
    margin-bottom: 0.5em;
}

.section--service {
    padding-top: 5em;
}

.section--service .h2 {
    margin-bottom: 1em;
}

.icons-set {
    margin: 0 -1em 3em;
    width: 100%;
}

.icons-set li {
    padding: 0 1em;
    margin-bottom: 3em;
}

.icons-set li:not(:last-child) {
    margin-right: 2em;
}

.icons-set li img {
    width: 100%;
}

.icons-set li .icon {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 3em;
}

.icon-name {
    font-size: 1.75em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.content-service-top {
    margin-left: -5rem;
    width: calc(100% + 5rem);
}

.service-inner {
    position: relative;
    left: -3px;
}

.service-inner__left {
    border-right: 3px solid var(--blue);
    position: relative;
    top: 2rem;
}

/*.service-inner__left::after {*/
/*    content: '';*/
/*    width: 3px;*/
/*    height: 10rem;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 100%;*/
/*    background-color: var(--blue);*/
/*}*/

.service-inner__content {
    padding-left: 8rem;
}

.inner-service__descr {
    position: relative;
    min-height: 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.inner-service__descr p {
    margin-top: 1em;
}

.inner-service__descr .icon {
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 41%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -13.3rem;
}

.inner-service__descr2 .icon {
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -5.0rem;
}

.inner-service__descr .icon img {
    width: 100%;
}

.inner-service__img {
    margin: 4em 0;
}

.inner-service__img img {
    width: 100%;
    max-width: 700px;
    max-height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 0 0;
    object-position: 0 0;
}

.service-inner__list {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4rem;
}

.service-inner__list li {
    margin-bottom: 1.3em;
    position: relative;
}

:not(.inner-service__item) > .service-inner__list.service-inner__list--titles li::before {
    content: '';
    width: .8em;
    height: .8em;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: calc(-8rem - 1px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.service-inner__list li .h4 {
    font-size: 2.5rem;
    margin-bottom: .5em;
}

.service-inner__list li p {
    font-weight: 400;
    text-transform: initial;
}

.service-inner__list--titles li::before {
    top: 0.4rem;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.section-content--services {
    padding: 0 9.4375em;
}

.section-content--services .company-service__item {
    width: 50%;
}

.section-content--services .company-service__item--text {
    width: 66.666%;
}

.section-content--services .company-service__item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section-content--services .company-service__item__title .icon {
    padding: 1.5rem;
}

.section-content--services .company-service__item__title .icon img {
    width: 4rem;
    height: 4rem;
}

.company-service__item__content__text {
    position: absolute;
    bottom: 2rem;
    left: 35%;
    font-size: 3rem;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.gallery-wrapper {
    position: relative;
    padding-top: 3rem;
    max-width: calc(100vw - 20.875em);
}

.gallery-wrapper .left-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 16.666%;
}

.gallery-wrapper .left-sidebar::after {
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--blue);
    position: absolute;
    top: 0;
    right: 0;
}

.gallery__list {
    margin: 0 -2.3475em 2.3125rem;
    position: relative;
    z-index: 1;
}

.gallery__list li.gallery__item {
    width: 100%;
    max-width: 700px;
    padding: 0 2.3475em;
    margin: 0 auto 0;
}

.gallery__list li.gallery__item img {
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.gallery__list--lt {
    width: calc(100% - 30.433%);
}

.gallery__list--lt li {
    width: 50%;
}

.gallery__list__item {
    position: relative;
    line-height: 0;
    cursor: pointer;
}

.gallery__list__item:hover img {
    -webkit-filter: contrast(120%);
    filter: contrast(120%);
}

.gallery__list__item:hover .lupa {
    color: #fff;
    border-color: #fff;
}

.gallery__list__descr {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: right;
    width: 100%;
    background-color: rgba(29, 113, 184, 0.8);
    font-family: var(--second-font);
    font-size: 1.25rem;
    padding: .75em .5em;
    line-height: 1;
    color: #fff;
}

.lupa {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 5px solid rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.lupa::before {
    content: '+';
    font-size: 5em;
    position: relative;
    top: 0;
}

.gallery__title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 12.4%;
    margin-bottom: 7rem;
    text-transform: capitalize;
}

.gallery__title .icon {
    width: 10rem;
    height: 10rem;
    margin-right: 2rem;
    flex: none;
}

.contact-item {
    padding-left: 16.666%;
}

.contact-item .contact-info__title::before {
    width: 10rem;
    height: 10rem;
}

.blogs {
    padding: 2.5em 2.5em 0;
    margin: 0 -1.25em;
    position: relative;
}

.blogs::after {
    content: '';
    width: 3px;
    height: calc(100% - 2.5em);
    background-color: var(--blue);
    position: absolute;
    top: 2.5em;
    left: calc(15rem + 2.5em);
}

.searching_block .input-wrapper {
    width: calc(12.666% - 1.25em);
    margin-bottom: 2.5em;
    padding: 0 1.25em;
    position: relative;
    height: 7em;
    z-index: 1;
}

.searching_block .input-wrapper .btn{
    width: 100%;
}

.searching_block .input-wrapper.main-input {
    width: calc(26% - 1.25em);
    margin-bottom: 2.5em;
    padding: 0 1.25em;
    position: relative;
    height: 7em;
    z-index: 1;
}

.searching_block .input-wrapper span {
    text-align: right;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
    display: block;
    padding: 29px 0;
}










.lot_edit_btns li {
    width: calc(33.333% - 1.25em);
    margin-bottom: 2.5em;
    padding: 0 1.25em;
    position: relative;
    height: 7em;
    z-index: 1;
}

.blog__item {
    width: calc(33.333% - 1.25em);
    margin-bottom: 2.5em;
    padding: 0 1.25em;
    position: relative;
    height: 47em;
    z-index: 1;
}

.blog__item>a {
    position: relative;
    display: block;
    height: 100%;
}

.blog__item--full {
    width: 100%;
    height: 40em;
}

.blog__content {
    height: 100%;
    flex-direction: column-reverse;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.blog__content__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    color: #fff;
    width: 100%;
    padding: 1.25em;
    z-index: 1;
}

.blog__content__left .more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--second-font);
}

.blog__content__left .more .icon {
    margin-right: 0.4em;
}

.blog__content__left__top .date {
    font-size: 5.625em;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -.02em;
    word-spacing: -0.1em;
}

.blog__content__left__top .year {
    font-size: 4em;
    font-weight: 700;
    text-align: right;
}

.blog__content__right {
    width: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.875em 2em;
    border-radius: 0 15px 15px 0;
    position: relative;
    overflow-y: auto;
}

.blog__content::after {
    content: '';
    width: 100%;
    height: 100%;
    max-height: 50%;
    background-color: rgba(199, 8, 27, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: width .5s, border-radius .4s;
    transition: width .5s, border-radius .4s;
    z-index: -1;
    border-radius: 15px 15px 0 0;
    transition: all .3s;
}

.blog__item:hover .blog__content::after {
    max-height: 100%;
    border-radius: 15px;
}

.blog__content__right .h3 {
    font-size: 3.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 2.2em;
    margin-bottom: 0.25em;
    overflow: hidden;
    line-height: 1.1;
}

.blog__content__right p {
    font-size: 18px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.blog__item:hover .blog__content__right p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}

.blog__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 15px;
    overflow: hidden;
}

.blog__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: calc(15rem + 1.25em - 20px);
}

.pagination li {
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.pagination li a {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 40px;
    height: 50px;
    background-color: var(--blue);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    border-radius: 5px;
    border: 3px solid var(--blue);
}

.pagination li span {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 40px;
    height: 50px;
    font-size: 30px;
    font-weight: 700;
    border-radius: 5px;
    background-color: #fff;
    color: var(--blue);
    border: 3px solid var(--blue);
}

#lots-style ul.pagination a:hover, .pagination li span:hover {
    background-color: #fff;
    color: var(--blue);
}

/*.pagination li a:hover,*/
/*.pagination li a.active {*/
/*    background-color: #000;*/
/*}*/

.section-faq-content {
    padding-left: 40px;
    position: relative;
}

.section-faq-content .left-sidebar {
    width: 21em;
    height: 100%;
    border-right: 3px solid var(--blue);
    position: absolute;
    left: 10.4375rem;
    top: 0;
}

.section--faq {
    position: relative;
    min-height: auto;
    padding: 10em 0 10em 5em;
}

.section--faq .left-sidebar {
    width: 16em;
    height: 50%;
    top: 50%;
    border-right: 3px solid var(--blue);
    position: absolute;
}

.section--faq .content {
    padding-left: 16em;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section--faq__title {
    position: relative;
    padding-left: 7rem;
}

.section--faq__title .icon {
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section--faq__title .icon img {
    width: 100%;
}

.section--faq__title .h1 {
    font-size: 10vw;
    line-height: .8;
}

.faq-wrapper {
    margin: 0 -1.5384em;
    position: relative;
}

.section-faq-content__notice {
    padding-left: 21rem;
}

.faq-item {
    padding: 0 1.5384em;
    margin-bottom: 3.0769em;
    width: 100%;
}

.faq-content {
    border: 3px solid var(--blue);
    border-radius: 15px;
    padding: 3.0769em;
    height: 100%;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.faq-content .h3 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .3s;
    cursor: pointer;
}

.faq-content .header-h3 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color .3s;
}

.faq-content .h3:hover {
    color: #000;
}

.faq-content .h3::after {
    content: '';
    width: .5em;
    height: .5em;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 20px;
    flex: none;
}

.faq-item.active .h3::after {
    transform: rotate(-225deg);
}

/*.faq-content .h3 br {*/
/*    display: none;*/
/*}*/

.faq-content p {
    margin-top: 1em;
    display: none;
}

.faq-item.active p {
    display: block;
}

.faq-content p::-webkit-scrollbar {
    width: 2px;
    /* ширина для вертикального скролла */
    background-color: var(--blue);
}

.faq-content p::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

.faq-content p::-webkit-scrollbar-thumb:hover {
    background-color: #253861;
}

.section--contact {
    position: relative;
    margin: 0 auto;
}

.section--contact .content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.map-img {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.country-links {
    padding-left: 10vw;
    padding-right: 10vw;
    margin-bottom: 2rem;
    margin-top: 30px;
}

.country-link span {
    display: block;
    text-align: center;
}

.country-link .icon {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1rem;
}

.country-link .title {
    font-weight: 700;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.country-link:hover .title {
    color: #000;
}

.popup-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    width: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.popup-map.active {
    visibility: visible;
    width: 100%;
    opacity: 1;
}

.popup-map#usa {
    visibility: visible;
    width: 100%;
    opacity: 1;
}

.popup-map__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.popup-map__content {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    height: 100%;
    overflow-y: auto;
}

.popup-map__content .h2 {
    margin-bottom: .75em;
}

.popup-map__map {
    width: 40%;
    position: relative;
}

.popup-map__map__title {
    font-size: 11vw;
    position: absolute;
    left: 5px;
    bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #cfd8dc;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: none;
}

.popup-map__content__item {
    padding-left: 10rem;
    position: relative;
}

.popup-map__content__item::after {
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--blue);
    position: absolute;
    left: calc(5rem - 1px);
    top: 0;
}

.popup-map__content__item:first-child::after {
    top: 3rem;
    height: calc(100% - 3rem);
}

.popup-map__content__item:last-child::after {
    top: 0;
    height: calc(100% - 6rem);
}

.popup-map__content__item .h2 {
    position: relative;
}

.popup-map__content__item .h2::before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--blue);
    position: absolute;
    left: -5rem;
    top: 2.3rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popup-map__content__item__list .icon {
    width: 40px;
    height: 40px;
}

.popup-map__content__item__list .icon img {
    width: 100%;
}

.popup-map__content__item__list li {
    position: relative;
    font-size: 2.4rem;
    font-weight: 700;
    min-height: 2.4em;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

.popup-map__content__item__list li .icon {
    position: absolute;
    left: -5rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popup-map__content__item__list.flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.popup-map__content__item__list.flex li {
    width: 45%;
    padding-right: 1em;
}

.open-contact .close-popup {
    display: block;
}

.open-contact .menu-btn {
    display: none;
}


/*popup*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 113, 184, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 20;
}

.close-gallery-popup {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    right: 10px;
    display: none;
    z-index: 22;
}

.close-gallery-popup::before,
.close-gallery-popup::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
}

.close-gallery-popup::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-gallery-popup::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popup {
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 25;
}

.popup.active {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
}

.popup .popup-slider {
    height: auto;
    max-height: 90vh;
}

.popup .popup-slider .slick-list,
.popup .popup-slider .slick-track {
    height: 100%;
}

.popup .popup-slider .slide img {
    height: 100%;
}

.popup .popup-slider .slick-arrow {
    background-color: rgba(0, 0, 0, 0.6);
}

.popup .popup-slider .prev-slide {
    left: 3%;
}

.popup .popup-slider .next-slide {
    right: 3%;
}

.popup-slider .slick-arrow,
.slider .slick-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 3px solid #cfd8dc;
    color: rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    cursor: pointer;
    color: #fff;
    z-index: 2;
}

.popup-slider .slick-arrow svg,
.slider .slick-arrow svg {
    width: 50%;
    height: 50%;
}

.popup .popup-slider {
    height: auto;
    max-height: 90vh;
}

.popup .popup-slider .slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
}


/*Footer*/

.footer {
    width: calc(100% - 20.875em);
    margin: 0 auto;
    background-color: var(--blue);
    border-radius: 15px 15px 0 0;
    padding: 0 2.5em 1.5em;
}

.footer__top {
    margin-bottom: 1.5em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.footer__top__menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.5em 0;
}

.footer__top__menu li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    margin-right: .5em;
    padding-right: .5em;
}

.footer__top__menu li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.3rem;
    font-family: var(--second-font);
}

html[lang="ru"] .footer__top__menu li a {
    font-size: 1.8rem;
}

.footer__top__menu li a:hover {
    color: #fff;
}

.footer__item {
    color: #fff;
    margin-right: 4em;
}

.footer__item--last {
    margin-right: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: right;
}

.footer__item--last .social {
    margin-top: 1.5em;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer__item .h2 {
    font-weight: 700;
    line-height: .9;
    margin-bottom: .3em;
    font-size: 4rem;
}

.social {
    margin-bottom: 1.5em;
}

.social li {
    margin-left: .5em;
    width: 3em;
    height: 3em;
}

.social li img {
    width: 100%;
}

.social li a:hover {
    opacity: .8;
}

.footer__item__list,
.address {
    font-size: 1.875rem;
    line-height: 1.2;
    font-family: var(--second-font);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8rem;
    font-family: var(--second-font);
    margin-bottom: 1rem;
}

.breadcrumbs li {
    margin-bottom: 1rem;
}

.breadcrumbs li a:hover {
    color: var(--blue)
}

.breadcrumbs li:last-child a {
    pointer-events: none;
    cursor: default;
}

.breadcrumbs li:last-child a:hover {
    color: currentColor
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    display: inline-block;
    margin-left: 0.2rem;
}

.horizontal_menu_small {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.horizontal_menu_small li {
    margin-bottom: 1rem;
    margin-right: 0.5rem;
}

.horizontal_menu_small li a:hover {
    color: var(--blue)
}

.horizontal_menu_small li:not(:last-child)::after {
    content: '/';
    display: inline-block;
    margin-left: 0.5rem;
}

/*eou*/
.horizontal_menu {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8rem;
    font-family: var(--second-font);
    margin-bottom: 1rem;
}

.horizontal_menu li {
    margin-bottom: 1rem;
}

.horizontal_menu li a:hover {
    color: var(--blue)
}

.horizontal_menu li:not(:last-child)::after {
    content: '/';
    display: inline-block;
    margin-left: 0.2rem;
}


@media (min-width: 1600px) {
    .popup-map__content__item__list li {
        min-height: 1.6em;
    }
    .popup-map__content .h2 {
        margin-bottom: 0.5em;
    }
}

@media(max-height: 870px) {
    .popup-map#usa {
        position: relative;
    }
}

@media(max-width: 1900px) {
    html[lang="ru"] .footer__top__menu li a {
        font-size: 1.15vw;
    }
}

@media (max-width: 1600px) {
    html {
        font-size: .7vw;
    }
    .about-us-descr-section .content {
        padding-left: 11vw;
    }
    .popup-map__content .h2 {
        font-size: 4rem;
    }
    .top-screen__img__title--services .h4 {
        font-size: 7rem;
    }
}

@media (max-width: 1440px) {
    .popup-map__content__item__list li {
        font-size: 2.1rem;
    }
    .blog__item:hover .blog__content__right p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 8;
    }
    .popup-map#usa {
        position: relative;
    }
    .popup-map__content__item {
        padding-left: 5rem;
    }
    .popup-map__content__item::after {
        left: -2px;
    }
}

@media(max-width: 1360px) {
    .blog__item:hover .blog__content__right p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
    }
    .blog__content::after {
        max-height: 60%;
    }
}

@media(max-width: 1280px) {
    .blog__item:hover .blog__content__right p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
    .blog__item:hover .blog__content::after {
        max-height: 60%;
        border-radius: 15px 15px 0 0;
    }
    .company-service__item__title {
        width: 43%;
    }
    .company-service__item__content__text {
        left: 55%;
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .top-screen__img__title .h4 {
        font-size: 7vw;
    }
    .main-content,
    .section {
        width: 100%;
    }
    .columns {
        display: none;
    }
    .about-us-descr-section .content {
        padding-left: 20px;
    }
    .section--white .right-sidebar {
        border-left: 1px solid rgba(212, 220, 224, 0.3);
    }
    .popup-map__content__item .h2::before {
        width: 40px;
        height: 40px;
    }
    .popup-map__content__item__list .icon {
        width: 30px;
        height: 30px;
    }
    .left-sidebar::before {
        display: none;
    }
    .company-service__item__title {
        font-size: 3.5rem;
    }
    .logo {
        width: 90%;
    }
}


/* 1024 */

@media(max-width: 1023px) {
    .company-service__item__title {
        font-size: 3rem;
    }
}

@media(max-width: 990px) {
    .company-service__item__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1023px) {
    html {
        font-size: 1.1vw;
    }
    .features__icon {
        width: 100px;
        height: 100px;
    }
    .features__item__title {
        font-size: 4rem;
    }
    .features__item__descr {
        font-size: 16px;
    }
    .company-service__item {
        width: 50%;
    }
    .company-service__item--text {
        width: 100%;
    }
    .company-services .h2 {
        padding-left: 0;
    }
    .left-sidebar {
        width: 100px;
    }
    .content {
        width: calc(100% - 100px);
    }
    .contact-section,
    .section-custom {
        padding-left: 10.4375rem;
    }
    .inner-container {
        padding-left: 9.25em;
    }
    .contact-info.inner-container {
        padding-left: 6.25em;
    }
    .contact-info__title a {
        font-size: 1.3em;
    }
    .left-sidebar__title {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .left-sidebar__title br {
        display: none;
    }
    .contact-info__title {
        font-size: 4em;
    }
    .footer {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 0 10.4375rem;
        position: relative;
        z-index: 2;
    }
    __top {
        border-bottom: none;
        position: relative;
        margin-bottom: 0;
    }
    __top::before {
        content: '';
        width: calc(100% + 80px);
        height: 1px;
        left: -40px;
        top: 0;
        background-color: #fff;
        position: absolute;
    }
    .footer__top__menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer__top__menu li {
        margin-bottom: 5px;
    }
    .footer__main {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer__item {
        width: 50%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer__item:nth-child(2) {
        margin-right: 0;
        text-align: right;
    }
    .footer__item--last {
        width: 100%;
        -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
        order: -3;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .footer__item--last .social {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        padding: 20px 0 10px;
        position: relative;
    }
    .footer__item--last .social li {
        width: 6em;
        height: 6em;
        margin-left: 20px;
        margin-bottom: 10px;
    }
    .footer__item__list,
    .address {
        font-size: 12px;
    }
    .footer__item--last .social::after {
        content: '';
        width: calc(100% + 80px);
        height: 1px;
        left: -40px;
        bottom: 0;
        background-color: #fff;
        position: absolute;
        opacity: 0.2;
    }
    .view-gallery__btn {
        width: calc(100% - 2.5rem);
    }
    .gallery-wrapper .left-sidebar {
        width: 100px;
    }
    .gallery__title {
        padding-left: 60px;
    }
    .gallery__title .icon,
    .contact-item .contact-info__title::before {
        width: 80px;
        height: 80px;
    }
    .contact-item {
        padding-left: 100px;
    }
    .gallery__list--lt {
        width: 100%;
    }
    .gallery__list--lt li {
        width: 33.333%;
    }
    .blog__item {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    .blog__content__right p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .searching_block .input-wrapper.main-input,
    .searching_block .input-wrapper,
    .select-form .filter-card
    {
        width: 100%;
        height: auto;
    }

    .faq-wrapper {
        margin: 0;
    }
    .faq-item {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .faq-content {
        height: auto;
    }
    .faq-content p {
        font-size: 18px;
        line-height: 1.3;
        max-height: none;
    }
    .section-faq-content {
        padding-left: 0;
    }
    .section-faq-content .left-sidebar {
        width: 100px;
    }
    .section--faq .left-sidebar {
        width: 100px;
    }
    .section--faq .content {
        padding-left: 100px;
    }
    .section-content--services .company-service__item__title .icon {
        padding: 4px;
    }
    .section-content--services .company-service__item__title .icon img {
        width: 20px;
        height: 20px;
    }
    .company-service__item__content__text {
        left: auto;
        right: 5px;
        bottom: 1rem;
        font-size: 2rem;
    }
    .section-content--services .company-service__item--text {
        width: 100%;
    }
    .popup-map__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .popup-map__content,
    .popup-map__map {
        width: 100%;
    }
    .popup-map__content {
        height: 70vh;
    }
    .popup-map__map {
        height: 30vh;
    }
    .company-service__item__title {
        width: 40%;
    }
    .section--faq {
        padding-left: 0;
    }
    .section-faq-content__notice {
        padding-left: 130px;
    }
    .top-screen__title {
        bottom: auto;
        top: 34rem;
    }
    .right-sidebar {
        justify-content: start;
    }
    .right-sidebar .select.select--lang {
        margin-top: 12px;
    }
    .right-sidebar .select--lang ul {
        bottom: auto;
        top: calc(100% - 14px);
        border-top: none;
        border-bottom: 3px solid #fff;
        padding-bottom: 20px;
        padding-top: 15px;
        border-radius: 0 0 50px 50px;
    }
    .company-service__item__title {
        line-height: 0.9;
    }
    .contact-section--gallery {
        padding-top: 7rem;
    }
    .left-sidebar::before {
        display: none;
    }
    .section--first .left-sidebar {
        backdrop-filter: blur(0px);
        border-left: 1px solid var(--gray);
    }
    .left-sidebar.menu-open {
        backdrop-filter: blur(10px);
    }
    .breadcrumbs {
        font-size: 12px;
    }
}


/* 1023 */

@media (max-width: 767px) {
    html {
        font-size: 1.3vw;
    }
    .top-screen__img__title .h4 {
        font-size: 10vw;
    }
    .top-screen__img__title .h4 br {
        display: none;
    }
    .main-slider-dots .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .noscroll .right-sidebar {
        height: 100vh;
    }
    .right-sidebar {
        width: 40px;
    }
    .right-sidebar__menu a {
        height: 50px;
    }
    .right-sidebar__menu a span {
        width: 30px;
        height: 30px;
    }
    .right-sidebar__menu .callback-ico span {
        width: 20px;
        height: 20px;
    }
    .menu {
        margin-top: 30px;
    }
    .menu li {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .top-screen__img {
        -webkit-backdrop-filter: unset;
        backdrop-filter: unset;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: transparent;
    }
    .top-screen__img__title .h4 {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
        writing-mode: unset;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    }
    .section--first .left-sidebar {
        border-right: none;
    }
    .left-sidebar.menu-open {
        position: fixed !important;
        height: 100vh;
        overflow-y: auto;
        z-index: 10 !important;
    }
    .section-content {
        width: calc(100% - 8.4375em - 40px);
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .section-content .top-screen {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
    .features {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .features__item {
        width: 100%;
    }
    .features__icon {
        margin: 20px auto 10px;
    }
    .features__item__title {
        font-size: 28px;
        min-height: auto;
        margin-bottom: 10px;
    }
    .features__item__title br {
        display: none;
    }
    .features__item__descr {
        line-height: 1.3;
        font-size: 18px;
    }
    .company-service__item {
        width: 50%;
    }
    .company-service__item--text {
        width: 100%;
    }
    .company-service__item--text p {
        font-size: 15px;
        line-height: 1.4;
    }
    .h2 {
        font-size: 6rem;
    }
    .video {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-top: 0;
        max-height: unset;
    }
    .video video {
        -o-object-fit: contain;
        object-fit: contain;
    }
    .video .play {
        left: 50%;
        -webkit-transform: translate(-50%, -10%);
        transform: translate(-50%, -10%);
    }
    .video-title {
        position: relative;
        right: 0;
        color: #000;
        -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
        writing-mode: unset;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        padding: 0;
        margin-bottom: 15px;
    }
    .video-title br {
        display: none;
    }
    .contact-section,
    .section-custom {
        display: block;
    }
    .contact-section .left-sidebar,
    .section-custom .left-sidebar {
        width: 100%;
        border-right: none;
    }
    .contact-section .content,
    .section-custom .content {
        width: 100%;
    }
    .left-sidebar__title {
        -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
        writing-mode: unset;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    .contact-section .left-sidebar,
    .section-custom .left-sidebar {
        padding-top: 30px;
    }
    .contact-section .content,
    .section-custom .content {
        padding-top: 10px;
    }
    .contact-block {
        display: block;
    }
    .contact-block__inputs,
    .contact-block__message {
        width: 100%;
    }
    .contact-block__inputs {
        padding-left: 0;
    }
    .comment-block {
        display: block;
    }
    .comment-block__inputs,
    .comment-block__message {
        width: 100%;
    }
    .comment-block__inputs {
        padding-left: 0;
    }
    .comment-block {
            display: block;
        }
    .comment-block__inputs,
    .comment-block__message {
        width: 100%;
    }
    .comment-block__inputs {
        padding-left: 0;
    }

    .input-wrapper {
        margin-bottom: 20px;
    }
    .input-wrapper .icon {
        width: 25px;
        height: 25px;
        z-index: 1;
    }
    .input-wrapper .icon img {
        width: 100%;
        height: 100%;
    }
    input#phone, input#phone2 {
        padding-left: 58px !important;
    }

    .input-wrapper .iti .iti__country-container, .input-wrapper .iti .iti__flag-container {
        margin-left: 17px !important;
    }

    .input {
        height: 40px;
        font-size: 16px;
        border-width: 1px;
        padding-left: 35px;
    }
    .textarea {
        border-width: 1px;
        height: 120px;
        font-size: 16px;
        padding-left: 15px;
        padding-top: 10px;
    }
    .textarea-wrapper .btn {
        font-size: 15px;
        position: relative;
        left: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        width: 100%;
        margin-top: 25px;
    }
    .footer__item--last .social {
        padding: 15px 0 5px;
        margin-top: 0;
    }
    .footer__item--last .social li {
        margin-left: 10px;
        width: 30px;
        height: 30px;
    }
    .footer {
        padding: 0 10.4375rem;
    }
    .noscroll .section-content {
        width: calc(100% - 40px);
    }
    .about-us-descr-section .left-sidebar {
        padding-top: 0;
    }
    .about-us-descr-section .content {
        padding-left: 0;
    }
    p {
        font-size: 14px;
        line-height: 1.4;
    }
    h4,
    .h4 {
        font-size: 4rem;
    }
    h4,
    .h4 {
        font-size: 4rem;
    }
    .map {
        padding: 10px 0;
    }
    .map-img {
        height: auto;
        min-height: auto;
    }
    .view-gallery {
        position: relative;
        top: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .container ol, .container ul, .container li {
        font-size: 15px;
        padding-left: 2rem;
    }
    .view-gallery::before,
    .view-gallery::after {
        display: none;
    }
    .view-gallery__btn {
        width: 100%;
        font-size: 20px;
        border-width: 1px;
        padding: 10px;
    }
    .view-gallery__btn__icon {
        width: 7rem;
    }
    .view-gallery__btn__icon span {
        width: 2rem;
        height: 2rem;
        border-radius: 3px;
    }
    .service-inner__content {
        padding-left: 0;
    }
    .service-inner__left {
        display: none;
    }
    .inner-service__descr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .inner-service__descr .icon {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0) !important;
        transform: translate(0, 0) !important;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 15px;
    }
    .content-service-top {
        width: 100%;
        margin-left: 0;
    }
    .section--service .left-sidebar {
        padding: 0;
    }
    .service-inner__list {
        font-size: 16px;
        line-height: 1.3;
    }
    .service-inner__list li {
        margin-bottom: 1em;
    }
    .service-inner__list li::before {
        width: 6px;
        height: 6px;
        background-color: var(--blue);
        border: none;
        left: -3rem;
    }
    .service-inner__list li .h4 {
        font-size: 1.2em;
    }
    .service-inner__list--titles li::before {
        top: 0.6em;
    }
    .service-inner {
        left: 0;
    }
    .icons-set li .icon {
        width: 14rem;
        height: 14rem;
    }
    .icon-name {
        font-size: 2.2rem;
    }
    .contact-section--gallery {
        padding-top: 4rem;
    }
    .contact-section--gallery .left-sidebar {
        padding-top: 1rem;
    }
    .gallery-top-links {
        display: block;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        padding-left: 4vw;
    }
    .gallery-top-links li {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .gallery-top-links li:not(:last-child) {
        margin-bottom: 15px;
    }
    .gallery-top-links li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .gallery-top__link__name {
        font-size: 3rem;
    }
    .gallery-top__link__name span {
        -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
        writing-mode: unset;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        top: 0 !important;
    }
    .gallery-top__link__icon {
        margin-top: 0;
        margin-right: 20px;
    }
    .gallery-wrapper .left-sidebar {
        display: none;
    }
    .gallery__title,
    .contact-item {
        padding-left: 0;
    }
    .gallery__title .icon,
    .contact-item .contact-info__title::before {
        width: 50px;
        height: 50px;
    }
    .gallery__list li.gallery__item {
        width: 50%;
    }
    .gallery__list--lt,
    .blog__content__left,
    .blog__content__right {
        width: 100%;
    }
    .blog__content__left .more {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 15px;
        text-shadow: 1px 1px 1px #000;
        cursor: pointer;
    }
    .blog__content__left .more .icon {
        width: 20px;
        height: 20px;
    }
    .blog__content__left .more .icon svg {
        width: 100%;
        height: 100%;
    }
    .blog__content__right {
        border-radius: 15px;
        padding: 15px;
    }
    .blog__content__right .h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .blog__content::after {
        max-height: 50%;
    }
    .blog__content__right p {
        font-size: 15px;
    }
    .blog__item {
        min-height: 340px;
    }
    .pagination {
        padding-left: 2.5em;
        margin-bottom: 30px;
    }
    .pagination li a {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .blogs::after,
    .section-faq-content .left-sidebar {
        display: none;
    }
    .section--faq .content {
        padding-left: 0;
    }
    .section--faq__title .icon {
        position: relative;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin-bottom: 20px;
        width: 80px;
        height: 80px;
    }
    .section--faq__title .h1 {
        font-size: 12vw;
    }
    .faq-content {
        height: auto;
        min-height: auto;
        padding: 15px;
        border-width: 1px;
    }
    .faq-content .h3 {
        font-size: 20px;
    }
    .faq-content p {
        font-size: 15px;
    }
    .section-content--services .company-service__item {
        width: 100%;
    }
    .section-content--services .company-service__item__title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 20px;
        align-items: flex-start;
    }
    .company-service__item__content__text {
        z-index: 2;
        font-size: 18px;
        right: 15px;
        bottom: 4px;
    }
    .section-content--services .company-service__item__title .icon {
        padding: 0 10px;
    }
    .country-links {
        display: block;
    }
    .country-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 20px;
    }
    .country-link .icon {
        margin: 0 15px 0 0;
    }
    .popup-map__content {
        padding: 30px 10px;
    }
    .popup-map__content__item::after,
    .popup-map__content__item .h2::before,
    .popup-map__map {
        display: none;
    }
    .popup-map__content__item {
        padding-left: 0;
    }
    .popup-map__content__item__list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 17px;
    }
    .popup-map__content__item__list li .icon {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin-right: 5px;
        width: 20px;
        height: 20px;
    }
    .popup-map__content {
        height: auto;
    }
    .close-gallery-popup {
        width: 30px;
        height: 30px;
    }
    .lupa,
    .popup-slider .slick-arrow,
    .slider .slick-arrow {
        border-width: 2px;
    }
    .right-sidebar .select--lang .placeholder {
        width: 30px;
        height: 30px;
        font-size: 15px;
        border-width: 1px;
    }
    .right-sidebar .select--lang,
    .right-sidebar .select--lang ul {
        width: 30px;
    }
    .right-sidebar .select--lang ul {
        border-width: 1px;
        font-size: 15px;
    }
    .section-faq-content__notice {
        padding-left: 0;
        font-size: 24px;
    }
    .service-inner__list {
        padding-left: 1em;
    }
    .service-inner__list li::before {
        top: 0.6em;
        transform: translate(0, -50%);
    }
    .section-content--services,
    .about-us-descr-section:not(.section-custom) {
        padding-left: 1.25em;
        padding-right: 1.25em;
    }
    .logo {
        width: 90%;
    }
    #text-style {
        padding: 0;
    }
    #text-style .post-date {
        font-size: 14px;
    }
    .about-us-descr-section p,
    #text-style ul li {
        font-size: 15px;
    }
    .contact-info.inner-container {
        padding-left: 9.25em;
    }
    .footer__item:nth-child(2) {
        text-align: left;
    }
    #text-style h1,
    #text-style .h1 {
        font-size: 6.4rem;
    }
    #lots-style {
        padding: 0;
    }
    #lots-style .post-date {
        font-size: 14px;
    }
    .about-us-descr-section p,
    #lots-style ul li {
        font-size: 15px;
    }

    #lots-style h1,
    #lots-style .h1 {
        font-size: 6.4rem;
    }
    .section--contact {
        padding: 0 1.25rem;
    }
    .top-screen__title span {
        height: calc(100vh - 40rem);
    }
    .footer__top__menu li a {
        font-size: 12px;
    }
    html[lang="ru"] .footer__top__menu li a {
        font-size: 11px;
    }
}


/* 767 */

@media (max-width: 440px) {
    .company-service__item {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }
    .company-service__items {
        margin: 0;
    }
    .company-service__item__title {
        -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
        writing-mode: unset;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        text-align: left;
        font-size: 24px;
        justify-content: start;
    }
    .company-service__item__title span {
        padding: 10px;
    }
    .company-service__item__title br {
        display: none;
    }
    .icon-name {
        font-size: 2.5rem;
    }
    .gallery__list li.gallery__item {
        width: 100%;
        padding: 0;
    }
    .gallery__list__descr {
        font-size: 12px;
    }
    .gallery__list {
        margin-left: 0;
        margin-right: 0;
    }
    .contact-info__title a.blue {
        display: block;
        margin: 10px 0;
    }
}

@media (max-height: 450px) {
    .top-screen__title span {
        font-size: 2.5rem;
    }
}

.first.left-sidebar,
.first.right-sidebar {
    position: fixed !important;
    top: 0;
    bottom: 0;
    height: 100vh;
    z-index: 2;
}

.first.left-sidebar {
    left: 0;
}

.first.right-sidebar {
    right: 0;
}

#cookie_notification {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 100%;
    max-width: 1240px;
    transform: translateX(-50%);
    padding: 25px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgb(0 0 0 / 40%);
    z-index: 1000;
}

#cookie_notification p {
    margin: 0 0 1.5rem;
    text-align: center;
}

#cookie_notification .btn-group {
    display: flex;
    justify-content: space-around;
}

#cookie_notification .btn-group .btn,
.error-page .btn {
    display: block;
    height: 2.2em;
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--maini-font);
    border-radius: 15px;
    background-color: var(--blue);
    border: 3px solid var(--blue);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 13rem;
}

.error-page .btn {
    width: 22rem;
    margin: 3rem auto 0;
    line-height: 1.8em;
}

.error-page img {
    margin: 5rem auto;
}

#cookie_notification.coockie_ru .btn-group .btn {
    width: 24rem;
}

#cookie_notification .btn-group .btn:hover,
.error-page .btn:hover {
    background-color: #fff;
    color: var(--blue);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 20px) {
    #cookie_notification.show {
        display: block !important;
    }
    .cookie_accept {
        margin: 0 !important;
    }
}

@media (max-width: 767px) {
    #cookie_notification.show {
        display: block !important;
        width: 100%;
        text-align: justify;
    }
    #cookie_notification p {
        margin: 0 0 10px 0;
        max-width: 100%;
    }
    .cookie_accept {
        margin: 10px 0 0 0;
    }
}

.slider-nav.slick-dotted.slick-slider {
    padding: 0 0em;
    border: none;
}

.slider-nav .slick-prev:before,
.slider-nav .slick-next:before {
    font-family: "slick";
    font-size: 40px;
    line-height: 1;
    color: var(--blue);
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-nav .slick-prev:hover:before,
.slider-nav .slick-next:hover:before {
    opacity: 0.85;
}

.slider-nav .slick-prev,
.slider-nav .slick-next {
    background: #fff;
    height: 102%;
    padding: 15px;
    z-index: 5;
    width: auto;
    margin-top: 1px;
    border: none;
    box-shadow: none;
}

.slider-nav .slick-prev:hover,
.slider-nav .slick-next:hover {
    background: rgb(255 255 255 / 85%);
}

.slider-nav .slick-prev {
    left: 0px;
}

.slider-nav .slick-next {
    right: 0px;
}

.slider-for.slick-slider {
    padding: 0 0em;
    border: none;
}

.slider-for .slick-prev:before,
.slider-for .slick-next:before {
    font-family: "slick";
    font-size: 40px;
    line-height: 1;
    color: var(--blue);
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-for .slick-prev:hover:before,
.slider-for .slick-next:hover:before {
    opacity: 1;
}

.slider-for .slick-prev,
.slider-for .slick-next {
    opacity: 0.85;
    height: 102%;
    padding: 15px;
    z-index: 5;
    width: auto;
    margin-top: 1px;
    border: none;
    box-shadow: none;
}

.slider-for .slick-prev {
    left: 0px;
}

.slider-for .slick-next {
    right: 0px;
}

.gallery__list__item__mini {
    width: 33.333%;
    padding: 0 5px;
}

#text-style h1,
#text-style .h1 {
    text-transform: uppercase;
}

#text-style h1,
#text-style h2,
#text-style h3,
#text-style h4,
#text-style .h1,
#text-style .h2,
#text-style .h3,
#text-style .h4 {
    margin-bottom: 2rem;
}

#text-style img {
    display: block;
    margin: 1em auto;
}
#text-style .icon img {
    display: block;
    margin: 0 auto;
}
#text-style table {
    align-self: center;
    width: 100%;
    margin-bottom: 10px;
}

#text-style .input-wrapper .icon img {
    width: 100%;
    max-height: 4em;
    -o-object-fit: contain;
    object-fit: contain;
}

#text-style .post-date {
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 2rem;
}

#text-style ul {
    padding-left: 3rem;
    margin-bottom: 2rem;
}

#text-style ol {
    padding-left: 3rem;
    margin-bottom: 2rem;
}

#text-style ul li {
    list-style: disc;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

#text-style ol li {
    list-style: decimal;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

#text-style blockquote {
    padding: 3rem;
    background: var(--gray);
    margin-bottom: 2rem;
    border-left: 5px solid var(--blue);
    color: var(--blue);
}

#text-style a {
    color: var(--blue);
}

#text-style a:hover {
    color: var(--text-color);
}

#text-style blockquote p:last-child {
    margin: 0;
}

#lots-style h1,
#lots-style .h1 {
    text-transform: uppercase;
}

#lots-style h1,
#lots-style h2,
#lots-style h3,
#lots-style h4,
#lots-style .h1,
#lots-style .h2,
#lots-style .h3,
#lots-style .h4 {
    margin-bottom: 2rem;
}

#lots-style .input-wrapper .icon img {
    width: 100%;
    max-height: 4em;
    -o-object-fit: contain;
    object-fit: contain;
}

#lots-style .post-date {
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 2rem;
}

#lots-style ul {
}

#lots-style ol {
    margin-bottom: 2rem;
}

#lots-style ul li {
    list-style: none;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--main-font);
}

#lots-style ul.pagination li {
    list-style: none;
    font-size: 1.2rem;
    line-height: 1.1;
}

#lots-style ol li {
    list-style: decimal;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

#lots-style blockquote {
    padding: 3rem;
    background: var(--gray);
    margin-bottom: 2rem;
    border-left: 5px solid var(--blue);
    color: var(--blue);
}

#lots-style a {
    color: var(--blue);
}

#lots-style ul.pagination a {
    color: #fff;
}

#lots-style a:hover {
    color: var(--text-color);
}

#lots-style blockquote p:last-child {
    margin: 0;
}

html[lang="ru"] .contact-section .left-sidebar__title {
    font-size: 6.4rem;
}

.breadcrumbs-wrapper {
    padding: 40px 0 0 8rem;
    z-index: 10;
}

.gallery-section {
    padding-top: 3em;
}

@media(max-width: 1026px) {
    .breadcrumbs-wrapper {
        padding-left: 40px;
    }
    .section-content--servise-page,
    .section-content--blog,
    .section-content--servise-page {
        padding: 0 2rem;
    }
    .section-content--blog .blogs {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

@media(max-width: 1023px) {
    .section-content--blog .blog__item {
        padding-left: 0;
        padding-right: 0;
    }
}

@media(max-width: 767px) {
    #text-style ul li {
        font-size: 15px;
    }
    #lots-style ul li {
        font-size: 15px;
    }
    .top-screen__title {
        top: 30rem;
        height: calc(100vh - 30rem);
    }
    .breadcrumbs-wrapper {
        padding-left: 0;
    }
    .popup-map__content {
        padding: 15px 0;
    }
    .section-content.section--contact {
        min-height: unset;
    }
    .right-sidebar {
        backdrop-filter: blur(0)
    }
    .footer {
        position: relative;
        z-index: 2;
    }
    .popup-map__content__item__list li .icon {
        flex: none
    }
    #text-style table {
        align-self: auto;
        width: 100%;
        margin-bottom: 10px;
        overflow: scroll;
        display: block;
    }
}

@media(max-width: 480px) {
    #cookie_notification {
        max-width: 90%;
    }
    #cookie_notification .content {
        width: 100%;
    }
    #cookie_notification .btn-group .btn {
        font-size: 12px;
        width: auto;
        min-width: 100px;
    }
    html[lang="ru"] #cookie_notification .btn-group .btn,
    .error-page .btn {
        height: 2.8em;
    }
}


/* 480 */


/*# sourceMappingURL=style.css.map */

#WebTrackingHolder iframe {min-height: 600px;}

.video-banner {
	width: 100%;
    height: 56vw;
    position: relative;
    overflow: hidden;
    max-height: 100vh;
}
.video-banner video {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);       
}
.video-banner .mute {
    width: 30px;
    background: url("../img/icons/mute.svg") no-repeat center;
    height: 30px;
    position: absolute;
    bottom: 20px;
    right: 110px;
    display: block;
    z-index: 5;
    background-size: contain;
}
@media (max-width: 767px) {
    .video-banner .mute {
        right: 60px;
    }
}
.video-banner .mute.unmute {
    background-image: url("../img/icons/unmute.svg");
}
.validation-message {
    color: #900;
    font-size: 18px;
}
.validation-message .errors span {
    display: block;
}
.company-service__item__content {
    border-radius: 5px;
}
.company-service__item .company-service__item__title_new {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    padding: 15px;
    color: #fff;
    font-size: 28px;
    line-height: 120%;
    z-index: 3;
}
.company-service__item a.company-service__item__content:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 212, 255, 0) 100%);
}
.company-service__item a.company-service__item__content:hover:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 212, 255, 0) 100%);
}

@media(min-width: 1200px) {
    .section--first .section-content--services .company-service__item {
        width: 33%;
    }
}

@media(min-width: 770px) and (max-width: 1199px) {
    .section--first .section-content--services .company-service__item {
        width: 50%;
    }
}
.section-content.about-us-descr-section .breadcrumbs{
    margin-left: 0.5em;
}
.section-content.section-content--blog .breadcrumbs {
    margin-left: 1.25em;
}
#popup-subscribe {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: block;
}
#popup-subscribe .wrapper {
    width: 600px;
    max-height: 90vh;
    background-color: #FFF;
    border-radius: 15px;
    padding: 40px;
    color: var(--blue);
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    max-width: 90vw;
    height: auto;
}
#popup-subscribe .wrapper .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}
#popup-subscribe .wrapper .close svg {
    width: 100%;
    height: 100%;
}
#popup-subscribe .wrapper .btn {
    display: block;
    width: 200px;
    height: 2.5em;
    border: none;
    outline: none;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: .8;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--maini-font);
    border-radius: 15px;
    background-color: var(--blue);
    border: 3px solid var(--blue);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}
#popup-subscribe .wrapper .input {
    padding-left: 15px;
}
#popup-subscribe .wrapper h2 {
    margin-bottom: 30px;
}
#popup-subscribe .wrapper label {
    font-size: 18px;
    cursor: pointer;
}
#popup-subscribe .wrapper .btn:disabled,
#popup-subscribe .wrapper .btn[disabled] {
    background: rgb(176, 176, 176);
}
.accordion .service-inner__list .h4 {
    cursor: pointer;
}
.accordion .service-inner__list li .description {
    display: none;
}
.accordion .service-inner__list li.active .description {
    display: block;
}
.contact-info__title {
    color: #61676a;
}
.accordion .service-inner__list.accordion .h4 {
    display: flex;
}
.service-inner__list.accordion .h4::after {
    content: '';
    width: .5em;
    height: .5em;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 20px;
    flex: none;
}
.service-inner__list .active .h4::after {
    transform: rotate(-225deg);
    position: relative;
    bottom: -0.25em;
}
.section-content--auto-loading .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 50px;
}
.section-content--auto-loading .row .column {
    flex: 50%;
    padding: 30px;
    text-align: center;
}
@media(max-width: 767px) {
    .section-content--auto-loading .row .column {
        flex: 100%;
        padding: 20px;
    }
}
.section-content--auto-loading .row .column a {
    padding: 50px;
}
.section-content--auto-loading .row .column a:hover {
    opacity: 0.8
}
.section-content--auto-loading .row .column a .name {
    font-size: 32px;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 20px;
}
.section-content--auto-loading .row .column a .image {
    max-width: 500px;
    width: 100%;
}
.gallery-top__link__name span {
    writing-mode: unset;
    -webkit-transform: unset;
    transform: unset;
    -webkit-writing-mode: unset;
}
ul.gallery-top-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    transform: unset;
    padding: 30px;
    justify-content: center;
}
ul.gallery-top-links li {
    flex: 33%;
    max-width: 33%;
}
ul.gallery-top-links li a {
    display: flex;
    padding: 30px;
}
ul.gallery-top-links li a .gallery-top__link__name {
    align-self: center;
    margin-left: 20px;
}
.gallery-top__link__icon {
    width: 100px;
    height: 100px;
    margin-top: 0;
}
@media(max-width: 1023px) {
    ul.gallery-top-links li {
        flex: 50%;
        max-width: 50%;
    }
}
@media(max-width: 767px) {
    ul.gallery-top-links {
        padding-left: 0;
    }
    ul.gallery-top-links li {
        flex: 100%;
        max-width: 100%;
    }
    .gallery-top-links li a {
        flex-direction: unset;
    }
    ul.gallery-top-links li a .gallery-top__link__name {
        margin-left: 0;
    }
}
.gallery__title.gallery__title__breadcrumbs {
    margin-bottom: 0;
}
.gallery__list li.gallery__item {
    max-width: 900px;
}
@media (max-width: 767px) {
    .gallery__list li.gallery__item {
        width: 100%;
    }
}
.videos .videos__item {
    padding: 0 2.3475em;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 5em;
}
.videos .videos__item video {
    width: 100%;
    height: auto;
}
.section-content--services .company-services .h2 {
    padding-left: 0;
}
.section-content--reviews {
    padding: 5em 7.4375em 3em;
}
.section-content--reviews .h2 {
    margin-bottom: 30px;
}
.section-content--reviews .reviews-wrapper {
    display: grid;
    position: relative;
}
.section-content--reviews .reviews-wrapper .swiper {
    width: 100%;
    height: auto;
}
.section-content--reviews .reviews-wrapper .swiper-slide span {
    font-size: 22px;
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 2em;
    height: 4em;
    z-index: 10;
    cursor: pointer;
    display: flex;
    left: -4em;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transform: translate(0, -50%);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 3em;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -4em;
    left: unset;
}
table.info_list {
    border-collapse: separate;
    border-spacing: 30px;
    text-align: left;
    font-size: 20px;
}
/*#text-style table {*/
/*    border-collapse: separate;*/
/*    border-spacing: 30px;*/
/*    text-align: left;*/
/*    font-size: 20px;*/
/*}*/

#text-style table {
    border-collapse: collapse;
    text-align: left;
    font-size: 20px;
}

#text-style th,
#text-style td {
    border: 1px solid black;
    padding: 10px;
}

.no-border th,
.no-border td {
    border: none !important;
}

#lots-style table {
    border-collapse: collapse;
    text-align: left;
    font-size: 20px;
    margin: 10px
}

#lots-style th,
#lots-style td {
    border: 1px solid black;
    padding: 10px;
}

.input-wrapper .icon--phone {
    z-index: 2;
}
.input-wrapper .iti {
    width: 100%;
}
.input-wrapper .iti .iti__country-container,
.input-wrapper .iti .iti__flag-container {
    margin-left: 65px;
    font-family: var(--second-font);
    font-size: 1.875rem;
    color: #000;
    margin-top: 1px;
}
.contact-block__inputs .subscribe-label {
    font-size: 1.875rem;
    cursor: pointer;
}
.comment-block__inputs .subscribe-label {
    font-size: 1.875rem;
    cursor: pointer;
}
.section-content--auto-loading .row .column a {
    padding: 50px 50px 0 50px;
    text-align: center;
    display: block;
}
.slider-for .slick-prev:before, .slider-for .slick-next:before {
    background: url(../img/arrow_d.svg) no-repeat center;
    width: 35px;
    height: 50px;
    display: block;
    content: "";
    opacity: 0.6;
}
.slider-for .slick-prev:before {
    rotate: 180deg;
}

/* Bootstrap css */
label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type="file"] {
    display: block
}

select[multiple], select[size] {
    height: auto
}

select optgroup {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit
}

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    height: auto
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6)
}

.form-control:-moz-placeholder {
    color: #999
}

.form-control::-moz-placeholder {
    color: #999
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee
}

textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 15px
}

.radio, .checkbox {
    display: block;
    min-height: 20px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    vertical-align: middle
}

.radio label, .checkbox label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    float: left;
    margin-left: -20px
}

.radio + .radio, .checkbox + .checkbox {
    margin-top: -5px
}

.radio-inline, .checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    vertical-align: middle;
    cursor: pointer
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

textarea.input-sm {
    height: auto
}

.input-lg {
    height: 45px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px
}

select.input-lg {
    height: 45px;
    line-height: 45px
}

textarea.input-lg {
    height: auto
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
    color: #c09853
}

.has-warning .form-control {
    border-color: #c09853;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-warning .form-control:focus {
    border-color: #a47e3c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e
}

.has-warning .input-group-addon {
    color: #c09853;
    background-color: #fcf8e3;
    border-color: #c09853
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: #b94a48
}

.has-error .form-control {
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-error .form-control:focus {
    border-color: #953b39;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392
}

.has-error .input-group-addon {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #b94a48
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
    color: #468847
}

.has-success .form-control {
    border-color: #468847;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-success .form-control:focus {
    border-color: #356635;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b
}

.has-success .input-group-addon {
    color: #468847;
    background-color: #dff0d8;
    border-color: #468847
}

.form-control-static {
    margin-bottom: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block
    }

    .form-inline .radio, .form-inline .checkbox {
        display: inline-block;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0
    }

    .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
        float: none;
        margin-left: 0
    }
}

.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px
}

.form-horizontal .form-group:before, .form-horizontal .form-group:after {
    display: table;
    content: " "
}

.form-horizontal .form-group:after {
    clear: both
}

.form-horizontal .form-group:before, .form-horizontal .form-group:after {
    display: table;
    content: " "
}

.form-horizontal .form-group:after {
    clear: both
}

.form-horizontal .form-control-static {
    padding-top: 7px
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none
}

.btn:active, .btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad
}

.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc
}

.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #3276b1;
    border-color: #285e8e
}

.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
    background-image: none
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ed9c28;
    border-color: #d58512
}

.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-danger {
    color: #fff;
    background-color: var(--blue);
    border-color: #d43f3a;
    margin-bottom: 0.5em;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #d2322d;
    border-color: #ac2925
}

.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
    background-color: var(--blue);
    border-color: #d43f3a
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #47a447;
    border-color: #398439
}

.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #39b3d7;
    border-color: #269abc
}

.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-link {
    font-weight: normal;
    color: #428bca;
    cursor: pointer;
    border-radius: 0
}

.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent
}

.btn-link:hover, .btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
    color: #999;
    text-decoration: none
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px
}

.btn-sm, .btn-xs {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs {
    padding: 1px 5px
}

.btn-block {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon:empty {
    width: 1em
}

.glyphicon-asterisk:before {
    content: "\2a"
}

.glyphicon-plus:before {
    content: "\2b"
}

.glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box
}

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

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #428bca;
    outline: 0
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #999
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #999
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0 dotted;
    border-bottom: 4px solid #000;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }
}

.btn-default .caret {
    border-top-color: #333
}

.btn-primary .caret, .btn-success .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret {
    border-top-color: #fff
}

.dropup .btn-default .caret {
    border-bottom-color: #333
}

.dropup .btn-primary .caret, .dropup .btn-success .caret, .dropup .btn-warning .caret, .dropup .btn-danger .caret, .dropup .btn-info .caret {
    border-bottom-color: #fff
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    float: left
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
    z-index: 2
}

.btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
    outline: 0
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar:before, .btn-toolbar:after {
    display: table;
    content: " "
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar:before, .btn-toolbar:after {
    display: table;
    content: " "
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar .btn-group {
    float: left
}

.btn-toolbar > .btn + .btn, .btn-toolbar > .btn-group + .btn, .btn-toolbar > .btn + .btn-group, .btn-toolbar > .btn-group + .btn-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group > .btn-group:last-child > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group-xs > .btn {
    padding: 5px 10px;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px
}

.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
    display: table;
    content: " "
}

.btn-group-vertical > .btn-group:after {
    clear: both
}

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
    display: table;
    content: " "
}

.btn-group-vertical > .btn-group:after {
    clear: both
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 0
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child > .btn:last-child, .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    border-collapse: separate;
    table-layout: fixed
}

.btn-group-justified .btn {
    display: table-cell;
    float: none;
    width: 1%
}

[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] {
    display: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group.col {
    float: none;
    padding-right: 0;
    padding-left: 0
}

.input-group .form-control {
    width: 100%;
    margin-bottom: 0
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 45px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 45px;
    line-height: 45px
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    white-space: nowrap
}

.input-group-btn:first-child > .btn {
    margin-right: -1px
}

.input-group-btn:last-child > .btn {
    margin-left: -1px
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -4px
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:active {
    z-index: 2
}

.filter-card-header {
    margin-top: 20px;
    min-height: 50px;
}
/* Bootstrap css ended */

.filter-card {
    width: calc(20% - 1.25em);
    margin-bottom: 2.5em;
    padding: 0 1.25em;
    position: relative;
}

.select-form .input-wrapper .btn {
    width: 100%;
}

.select-form .input-wrapper {
    width: calc(33.333% - 1.25em);
    margin-bottom: 2.5em;
    margin-top: 2.5em;
    padding: 0 1.25em;
    position: relative;
    height: 7em;
}

.selected_block {
    margin-bottom: 4em;
}

.inner-service__item ul {
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.inner-service__item ul li {
    list-style: disc;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

.inner-service__item ul {
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.inner-service__item ul li {
    list-style: disc;
    font-size: 1.7rem;
    line-height: 1.1;
    font-family: var(--second-font);
}

.comment-block__message img {
    width: 20%;
}
