@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=cyrillic);@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('https://qlab.lv/css/fonts/slick.eot');
    src: url('https://qlab.lv/css/fonts/slick.eot?') format('embedded-opentype'), url('https://qlab.lv/css/fonts/slick.woff') format('woff'), url('https://qlab.lv/css/fonts/slick.ttf') format('truetype'), url('https://qlab.lv/css/fonts/slick.svg') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: 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: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}














.cssSlider {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  margin: auto;
  
}


.cssSlider .slides {
  position: relative;
  width: 100%;
  height: 70vmin;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cssSlider .slides > li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none; /* Скроем все слайды по умолчанию */
  
}


.cssSlider .slides > li > img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Полное изображение без обрезки */
}

/*
.cssSlider .slides > li:first-child:not(:target) {
	z-index: 1;
	-webkit-transform: translateY(0%);
	        transform: translateY(0%);
}
*/
.cssSlider .thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Отступы между миниатюрами */
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  justify-content: center;
}
.cssSlider .thumbnails > li {
  flex: 1 0 18%; /* Делаем миниатюры квадратами и выравниваем по 5 в ряд */
  max-width: 18%;
  aspect-ratio: 1; /* Соотношение сторон 1:1, чтобы миниатюры были квадратами */
  overflow: hidden;
}
.cssSlider .thumbnails > li > a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cssSlider .thumbnails > li > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Обрезка изображения в миниатюре, чтобы поместилось в квадрат */
    transition: transform 0.3s;
    cursor: pointer;
}

.cssSlider .thumbnails > li:hover img {
  transform: scale(1.05); /* Увеличение миниатюры при наведении */
}

.cssSlider .slides li:target {
	z-index: 3;
  display: block; /* Отображаем выбранный слайд */
	-webkit-animation: slide 1s 1;
}


.cssSlider .slides li:not(:target) {
	-webkit-animation: hidden 1s 1;
}





@-webkit-keyframes slide {
	0% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}
@keyframes slide {
	0% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
}
@-webkit-keyframes hidden {
	0% {
		z-index: 2;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
	100% {
		z-index: 2;
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
}
@keyframes hidden {
	0% {
		z-index: 2;
		-webkit-transform: translateX(0%);
		        transform: translateX(0%);
	}
	100% {
		z-index: 2;
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

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

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.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
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    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;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}
/*
    Common 
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
}

.wizard > .steps > ul > li
{
    width: 25%;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
    float: left;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 0 0.5em 0.5em;
    padding: 1em 1em;
    text-decoration: none;
    border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #eee;
    color: #aaa;
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #2184be;
    color: #fff;
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #9dc8e2;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}

.wizard > .content
{
    background: #eee;
    display: block;
    margin: 0.5em;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto;
    border-radius: 5px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.wizard > .content > .body ul
{
    list-style: disc !important;
}

.wizard > .content > .body ul > li
{
    display: list-item;
}

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 0.5em;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    display: inline-block;
    margin-left: 1.5em;
}

.wizard > .actions
{
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul
{
    display: inline-block;
    text-align: right;
}

.wizard > .actions > ul > li
{
    margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background: #2184be;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}/*!
 * jQuery UI Datepicker 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
html, body, div, span, applet, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, 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, caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

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

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

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

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

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

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

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

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

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

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.


fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
table thead,
table tbody,
table tr,
table th,
table td {
  border: 0;
}

td,
th {
  padding: 0;
}

*, *::after, *::before {
  box-sizing: border-box;
  -webkit-appearance: none;
}

.sixteen-nine {
  position: relative;
}
.sixteen-nine:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.sixteen-nine > iframe {
  width: 100%;
  height: 100%;
}
.sixteen-nine > .content, .sixteen-nine > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

html, body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
  color: #000;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 2.625em;
  line-height: 1.452;
  text-align: left;
}

h2 {
  font-size: 2.5em;
  line-height: 1.275;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.375em;
    line-height: 1.32;
  }
}

h3 {
  font-size: 1.25em;
  line-height: 1.45;
  font-weight: 700;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1em;
    line-height: 1.8125;
  }
}

h4 {
  font-size: 1.35em;
}

h6 {
  font-size: 1.25em;
}

p {
  width: 100%;
}

a {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a.blue {
  color: #7dc356;
  text-decoration: underline;
}

.btn {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 49px 49px 49px 49px;
  border: none;
  outline: none;
  background: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-size: 1.1875em;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.btn .text-btn {
  text-transform: uppercase;
  text-align: center;
}
.btn.btn-link {
  max-width: 321px;
  width: 100%;
  font-weight: 700;
}
.btn.btn-link .text-btn {
  padding: 22px 45px;
}
.btn.btn-link .text-btn svg {
  margin-right: 3px;
}
.btn.btn-popup {
  width: 398px;
  font-weight: 700;
}
.btn.btn-popup .text-btn {
  font-size: 1.625em;
  line-height: 1.17;
  padding: 31px 45px;
}
.btn.btn-bg {
  color: #fff;
  box-shadow: 0 11px 21px rgba(25, 193, 36, 0.41);
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.btn.btn-bg .text-btn {
  width: 100%;
  border-radius: 49px 49px 49px 49px;
  background-image: linear-gradient(104deg, #7dc356 0%, #39b14b 100%);
  position: relative;
  z-index: 2;
}
.btn.btn-bg .before {
  width: 100%;
  height: 100%;
  border-radius: 49px 49px 49px 49px;
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 1;
  background-color: #368b3d;
}
.btn.btn-bg:hover {
  box-shadow: 0 11px 21px rgba(25, 193, 36, 0.61);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.btn.btn-form {
  font-weight: 700;
}
.btn.btn-form .text-btn {
  padding: 22px 45px;
}
@media (max-width: 1023px) {
  .btn.btn-form .text-btn, .btn.btn-link .text-btn {
    padding: 20px 45px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 1em;
  }
  .btn .text-btn {
    font-size: 0.9375em;
  }
  .btn.btn-bg .text-btn, .btn.btn-form .text-btn {
    padding: 14px 10px;
  }
  .btn.btn-popup {
    max-width: 450px;
    width: 100%;
  }
  .btn.btn-popup .text-btn {
    font-size: 1.125em;
    padding: 22px 10px;
  }
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  min-height: 100%;
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
  overflow: hidden;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  body {
    -webkit-overflow-scrolling: auto;
  }
}

@media (min-width: 768px) {
  body.popup-shown .page {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  body.popup-shown .page {
    display: none;
  }
}

section {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  width: 100%;
  position: relative;
}

section.page {
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
}

main, section.main {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  width: 100%;
}

.container {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  width: 970px;
}
@media (max-width: 1023px) {
  .container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 37px;
  }
}
@media (max-width: 374px) {
  .container {
    padding: 0 10px;
  }
}

.w-full {
  width: 100%;
}

.row {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.hide {
  display: none;
}

li, ul {
  list-style: none;
}

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

.green-txt {
  color: #7dc356;
}

.white-txt {
  color: #fff;
}

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

.white-bg {
  background-color: #fff;
}

.title-h3 {
  font-size: 1.25em;
  line-height: 1.45;
  font-weight: 700;
}

.subtitle.dark {
  width: 100%;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.95;
  text-align: center;
}
@media (max-width: 767px) {
  .subtitle.dark {
    font-size: 1em;
  }
}

.warning-text {
  font-size: 1.1875em;
  line-height: 1.58;
  border-radius: 12px 12px 12px 12px;
  padding-top: 17px;
  padding-bottom: 20px;
  padding-left: 109px;
  padding-right: 53px;
  text-align: left;
  position: relative;
}
.warning-text:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cdefs%3E%3ClinearGradient id='lm30a' x1='19' x2='19' y1='0' y2='38' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%237dc356'/%3E%3Cstop offset='1' stop-color='%2339b14b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cpath fill='url(%23lm30a)' d='M0 19C0 8.507 8.507 0 19 0s19 8.507 19 19-8.507 19-19 19S0 29.493 0 19z'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='%23fff' d='M22.258 12.529c0-.525-.197-.974-.596-1.348a2.023 2.023 0 0 0-1.435-.56c-.561 0-1.042.187-1.443.56-.4.374-.601.823-.601 1.348 0 .525.2.974.601 1.343.402.37.882.556 1.443.556a2.03 2.03 0 0 0 1.435-.556c.398-.369.596-.818.596-1.343zm-.216 12.664zm0 0a3.943 3.943 0 0 1-.57.191 2.692 2.692 0 0 1-.704.11c-.442 0-.752-.073-.933-.218-.179-.146-.268-.42-.268-.82 0-.159.027-.395.083-.705.055-.311.118-.588.188-.83l.852-3.017c.083-.277.14-.582.171-.914a8.48 8.48 0 0 0 .046-.695c0-.636-.223-1.152-.669-1.55-.446-.398-1.081-.597-1.904-.597-.459 0-.943.081-1.455.244-.513.162-1.049.358-1.61.586l-.228.934c.167-.062.366-.129.599-.197.231-.069.459-.104.68-.104.452 0 .756.077.915.228.16.152.24.423.24.81 0 .214-.026.451-.078.71-.052.26-.117.534-.193.824l-.855 3.029a9.068 9.068 0 0 0-.167.856 5.45 5.45 0 0 0-.052.741c0 .623.23 1.136.69 1.54.46.404 1.105.607 1.934.607.54 0 1.013-.07 1.421-.212.407-.142.954-.347 1.639-.618z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 53px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.warning-text.warn-bg {
  background-color: #fbfbfb;
  box-shadow: inset 0 0 29px #e4e4e4;
}
.warning-text.quote {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 80px;
  padding-right: 21px;
  font-size: 1em;
  line-height: 1.5625;
  min-height: 122px;
}
.warning-text.quote:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='38' height='38' viewBox='0 0 38 38'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0.5' x2='0.5' y2='1' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%237dc356'/%3E%3Cstop offset='1' stop-color='%2339b14b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg transform='translate(-384 -1421)'%3E%3Ccircle cx='19' cy='19' r='19' transform='translate(384 1421)' fill='url(%23a)'/%3E%3Cpath d='M3,13a1.667,1.667,0,0,0,1.667,1.667h10L18,18V4.667A1.667,1.667,0,0,0,16.335,3H4.667A1.667,1.667,0,0,0,3,4.667Z' transform='translate(391.999 1429.999)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  left: 20px;
}
@media (max-width: 767px) {
  .warning-text {
    font-size: 0.8125em;
    line-height: 1.46;
    padding-top: 25px;
    padding-bottom: 23px;
    padding-left: 63px;
    padding-right: 8px;
  }
  .warning-text:before {
    left: 12px;
  }
}

button {
  outline: 0;
  border: 0;
}
button svg {
  fill: #fff;
}

form {
  position: relative;
}

input, select, textarea {
  padding: 0 15px;
  height: 50px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #adbbc6;
  font-size: 1.25em;
  line-height: 1.2;
  font-weight: 300;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0 0 0 0;
}
input[readonly], select[readonly], textarea[readonly] {
  background: none;
  border-color: #e6e6e6;
  cursor: default;
}
input.ok, select.ok, textarea.ok {
  border-color: #7dc356;
}
input.error, select.error, textarea.error {
  border-color: #fa2645;
}
@media (max-width: 767px) {
  input, select, textarea {
    height: 48px;
  }
}

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

select {
  position: relative;
  color: #adbbc6;
}
select:after {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46.02 27.91'%3E%3Ctitle%3E1%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Capa_1' data-name='Capa 1'%3E%3Cpath d='M0,5.7A5.7,5.7,0,0,1,9.63,1.57L23.05,14.33,36.38,1.58a5.7,5.7,0,0,1,7.88,8.24L27,26.33a5.72,5.72,0,0,1-7.88,0L1.77,9.84A5.74,5.74,0,0,1,0,5.7Z' style='fill:%23232323'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10px;
  height: 8px;
}
select.ok {
  color: #000;
}
select option {
  color: #000;
}

textarea {
  padding: 5px;
}

::-webkit-input-placeholder {
  color: #adbbc6;
}

::-moz-placeholder {
  color: #adbbc6;
}

:-ms-input-placeholder {
  color: #adbbc6;
}

:-moz-placeholder {
  color: #adbbc6;
}

::-webkit-inner-spin-button {
  display: none;
}

.blocker {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.7);
}

.custom_checkbox {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
  margin-bottom: 36px;
}
.custom_checkbox input {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.custom_checkbox .checkmark {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  background-image: linear-gradient(104deg, #7dc356 0%, #39b14b 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.custom_checkbox .checkmark:after {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  content: "";
  display: none;
}
.custom_checkbox .checkmark {
  border-radius: 3px 3px 3px 3px;
}
.custom_checkbox .checkmark:after {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 9px;
  height: 18px;
  border: solid #fff;
  border-width: 0 1.8px 1.8px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom_checkbox input:checked ~ .checkmark:after {
  display: block;
}


.mr-fm{
  margin-left: 20px;
}
.custom_checkbox .checkmark {
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 100px 100px 100px 100px;
}
.custom_checkbox .text {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -ms-flex-negative: 1;
  max-width: 100%;
  display: block;
  line-height: 1.38;
  margin-left: 18px;
}
.custom_checkbox .text a {
  display: inline;
  text-decoration: underline;
  position: relative;
  z-index: 5;
  color: #7dc356;
}
@media (max-width: 767px) {
  .custom_checkbox {
    margin-bottom: 34px;
  }
  .custom_checkbox .checkmark {
    width: 22px;
    height: 22px;
    margin-left: 0;
  }
  .custom_checkbox .checkmark:after {
    left: 8px;
    top: 3px;
    width: 6px;
    height: 13px;
  }
  .custom_checkbox .text {
    font-size: 0.6875em;
    margin-left: 17px;
  }
}

.custom_radio {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}
.custom_radio input {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.custom_radio .checkmark {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  background-image: linear-gradient(104deg, #7dc356 0%, #39b14b 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.custom_radio .checkmark:after {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  content: "";
  display: none;
}
.custom_radio .checkmark {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 50% 50% 50% 50%;
}
.custom_radio .checkmark:after {
  content: "";
  border-radius: 50% 50% 50% 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background-color: #c7c7c7;
}
.custom_radio input:checked ~ .checkmark:after {
  display: block;
}

.form-block {
  padding: 16px;
  box-shadow: 0 6px 34px rgba(0, 0, 0, 0.16);
  border-radius: 12px 12px 12px 12px;
}
.form-block .wrap-form {
  width: 100%;
  border: 1px solid rgba(112, 112, 112, 0.13);
  border-radius: 12px 12px 12px 12px;
  padding-top: 26px;
  padding-bottom: 50px;
  padding-left: 42px;
  padding-right: 42px;
}
.form-block .wrap-form .form-header {
  width: 100%;
}
.form-block .wrap-form .form-header h3 {
  width: 100%;
  font-size: 1.68755em;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 35px;
  text-align: center;
}
.form-block .wrap-form .form-box .inputs {
  margin-bottom: 19px;
}
.form-block .wrap-form .form-box .inputs input, .form-block .wrap-form .form-box .inputs select {
  width: 100%;
  margin-bottom: 18px;
}
.form-block .wrap-form .form-box .inputs .date-field, .form-block .wrap-form .form-box .inputs .time-field {
  position: relative;
  width: 100%;
}
.form-block .wrap-form .form-box .inputs .date-field input {
  background-size: 17px 19px;
  background-position: right 10px top 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.906' height='20.785' viewBox='0 0 18.906 20.785'%3E%3Cg transform='translate(1 1)'%3E%3Crect width='16.906' height='16.906' rx='2' transform='translate(0 1.878)' stroke-width='2' stroke='%23adbbc6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Cline y2='3.757' transform='translate(12.21)' stroke-width='2' stroke='%23adbbc6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Cline y2='3.757' transform='translate(4.696)' stroke-width='2' stroke='%23adbbc6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3Cline x2='16.906' transform='translate(0 7.514)' stroke-width='2' stroke='%23adbbc6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.form-block .wrap-form .form-box .inputs .time-field select {
  background-size: 19px 19px;
  background-position: right 10px top 50%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.415' height='21.415' viewBox='0 0 21.415 21.415'%3E%3Cg transform='translate(1 1)'%3E%3Cellipse cx='9.707' cy='9.707' rx='9.707' ry='9.707' fill='none' stroke='%23adbbc6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M12,6v5.824l3.883,1.941' transform='translate(-2.293 -2.117)' fill='none' stroke='%23adbbc6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 767px) {
  .form-block {
    padding: 10px;
  }
  .form-block .wrap-form {
    padding-top: 19px;
    padding-bottom: 44px;
    padding-left: 29px;
    padding-right: 29px;
  }
  .form-block .wrap-form .form-header h3 {
    font-size: 1.125em;
    margin-bottom: 19px;
  }
  .form-block .wrap-form .form-box .inputs {
    margin-bottom: 4px;
  }
  .form-block .wrap-form .form-box .inputs input, .form-block .wrap-form .form-box .inputs select {
    font-size: 0.825em;
    padding: 0 11px;
  }
  .form-block .wrap-form .form-box .inputs .date-field input {
    background-size: 12px 13px;
  }
  .form-block .wrap-form .form-box .inputs .time-field select {
    background-size: 13px 13px;
  }
}

.popup {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  width: 100%;
  opacity: 0.999;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 10px;
  z-index: 1000;
  /*@include screen-down(xs) {
  	.popup-inner {
  		padding-left: 10px;
  		padding-right: 10px;
  	}
  }*/
}
.popup .popup-bg {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(48, 49, 51, 0.7);
}
.popup .popup-inner {
  max-width: 800px;
  width: 100%;
  z-index: 1002;
  opacity: 0.999;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(96, 65, 38, 0.43);
  border-radius: 6px 6px 6px 6px;
  position: relative;
}
.popup.hidden {
  display: none;
}
.popup .popup-content {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.popup .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 1003;
  opacity: 0.999;
}
.popup .popup-close:hover {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.popup .popup-close svg {
  width: 40px;
  height: 40px;
  max-height: 40px;
  vertical-align: middle;
  fill: #8C97A3;
}
.popup .popup-close svg.close-svg-mobile {
  width: 30px;
  height: 30px;
  display: none;
}
.popup .popup-close svg.close-svg-desktop {
  width: 16px;
  height: 16px;
  display: block;
}
.popup .popup-close:hover svg {
  fill: #f83b6a;
}
.popup.only-18 {
  z-index: 1001;
}
.popup.only-18 .popup-inner {
  max-width: 500px;
}
.popup.only-18 .popup-content {
  padding: 30px;
}
.popup.only-18 .popup-content .text-popup-only-18 {
  font-size: 1.5em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .popup.only-18 .popup-content {
    padding: 30px 10px;
  }
  .popup.only-18 .popup-content .text-popup-only-18 {
    font-size: 1em;
  }
}
@media (min-width: 640px) {
  .popup .popup-inner {
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(96, 65, 38, 0.43);
    border-radius: 6px 6px 6px 6px;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .popup {
    padding: 15px;
    background-color: rgba(39, 55, 71, 0.12);
  }
  .popup .popup-inner {
    min-height: auto;
  }
}

[data-popup=privacy_policy] {
  z-index: 1001;
}
[data-popup=privacy_policy] h3 {
  margin-bottom: 10px;
}
[data-popup=privacy_policy] .text {
  width: 100%;
  overflow-wrap: break-word;
  white-space: pre-line;
}
[data-popup=privacy_policy] .popup-inner {
  padding: 30px 20px;
}

[data-popup^=form] .popup-close {
  top: 3px;
  right: 3px;
}
[data-popup^=form] .popup-inner {
  width: 100%;
  max-width: 441px;
}
[data-popup^=form] .popup-inner .popup-content {
  width: 100%;
  /*.form-block {
  	width: 100%;
  	@include flex-direction(column);
  	@include align-items(center);
  	@include flex-shrink(0);
  	@include box-shadow(0,0,0);
  	.wrap-form {
  		padding-top: 23px;
  	   padding-bottom: 21px;
  	   padding-left: 20px;
  	   padding-right: 20px;
  		.form-header h3 {
  			font-size: 1em;
  			line-height: 1.5625;
  			text-align: center;
  			margin-bottom: 26px;
  		}
  		.form-box {
  			width: 100%;
  			@include display(flex);
  			@include flex-direction(column);
  			padding: 0 9px;
  			.inputs {
  				@include flex-direction(column);
  				margin-bottom: 12px;
  				input {
  					width: 100%;
  					margin-bottom: 20px;
  					@include border-radius(32px);
  				}
  			}
  			.bottom {
  				@include display(flex);
     				@include flex-direction(column-reverse);
     				.custom_checkbox {
     					text-align: left;
     					margin-right: 0;
     					br {
     						display: none;
     					}
     				}
     				.btn {
     					font-weight: 400;
     					margin-bottom: 20px;
     					.text-btn {
     						padding-left: 10px;
     						padding-right: 10px;
     					}
     				}
  			}
  		}
  	}
  }*/
}
[data-popup^=form] .popup-inner .popup-content > * {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  [data-popup^=form] .popup-inner {
    padding: 0;
  }
}

.ui-datepicker {
  z-index: 1003 !important;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  color: #000;
  height: 30px !important;
  border: 0 !important;
  margin: 0;
}

.block-steps {
  background-color: #fff;
  padding: 16px;
  box-shadow: 0 6px 34px rgba(0, 0, 0, 0.16);
  border-radius: 12px 12px 12px 12px;
}
.block-steps .wrap-form {
  width: 100%;
  border: 1px solid rgba(112, 112, 112, 0.13);
  border-radius: 12px 12px 12px 12px;
  padding-top: 34px;
  padding-bottom: 44px;
  padding-left: 22px;
  padding-right: 22px;
}
.block-steps .wrap-form .list-steps {
  position: relative;
  border-radius: 3px 3px 3px 3px;
  background-color: #E9E9E9;
  z-index: 1;
  margin-bottom: 26px;
  overflow: hidden;
  margin-left: 24px;
  margin-right: 24px;
}
.block-steps .wrap-form .list-steps .status-bar {
  width: 25%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(104deg, #7dc356 0%, #39b14b 100%);
  z-index: 10;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.block-steps .wrap-form .list-steps .status-bar.step-2 {
  width: 50%;
}
.block-steps .wrap-form .list-steps .status-bar.step-3 {
  width: 75%;
}
.block-steps .wrap-form .list-steps .status-bar.step-4 {
  width: 100%;
}
.block-steps .wrap-form .list-steps .single-step {
  width: 25%;
  color: rgba(112, 112, 112, 0.21);
  font-weight: 700;
  line-height: 2.25;
  z-index: 10;
  position: relative;
  text-align: center;
}
.block-steps .wrap-form .list-steps .single-step.active {
  color: #fff;
}
.block-steps .wrap-form .tab-success {
  display: none;
  margin-bottom: 47px;
}
.block-steps .wrap-form .tab-success .count-question {
  color: #707070;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 11px;
}
.block-steps .wrap-form .tab-success .tab-question {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.47;
  font-weight: 700;
  margin-bottom: 28px;
}
.block-steps .wrap-form .tab-success .list-answers .answer {
  width: 205px;
  min-height: 109px;
  font-size: 0.875em;
  line-height: 1.43;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  margin: 0 10px;
  box-shadow: 0 7px 27px #E8EAEE;
  border-radius: 15px 15px 15px 15px;
}
.block-steps .wrap-form .tab-success .list-answers .answer:hover, .block-steps .wrap-form .tab-success .list-answers .answer.active {
  color: #fff;
  background-image: linear-gradient(104deg, #7dc356 0%, #39b14b 100%);
  box-shadow: 0 7px 27px #7dc356;
}
.block-steps .wrap-form .tab-success.step-4 {
  padding-top: 29px;
  margin-bottom: 17px;
}
.block-steps .wrap-form .tab-success.step-4 .tab-question {
  margin-bottom: 50px;
}
.block-steps .wrap-form .tab-success.step-4 svg {
  display: block;
  margin: 0 auto 58px;
}
.block-steps .wrap-form .tab-success.step-4 .btn {
  margin: 0 auto;
  max-width: 180px;
  width: 100%;
}
.block-steps .wrap-form .tab-success.step-4 .btn .text-btn {
  font-size: 0.84em;
  font-weight: 700;
  padding: 11px 10px;
}
.block-steps .wrap-form .btn-success .text-btn {
  padding: 11px 64px;
  font-size: 0.84em;
}
.block-steps .wrap-form .submit-form {
  display: none;
}
.block-steps .wrap-form #steps-form input br {
  display: none;
}
@media (max-width: 1023px) {
  .block-steps .wrap-form .tab-success {
    margin-bottom: 13px;
  }
  .block-steps .wrap-form .tab-success .list-answers {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .block-steps .wrap-form .tab-success .list-answers .answer {
    margin-bottom: 34px;
  }
}
@media (max-width: 767px) {
  .block-steps .wrap-form {
    padding-top: 32px;
    padding-bottom: 26px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .block-steps .wrap-form .list-steps {
    margin-left: 9px;
    margin-right: 9px;
  }
  .block-steps .wrap-form .tab-success .list-answers {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
}

section.topbar_bg {
  width: 100%;
}




.topbar {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 14px;
  z-index: 1;
}
.topbar .brand, .topbar .contacts, .topbar .contacts > *, .topbar .topbar_items, .topbar .langs {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.topbar .container {
  height: 100%;
  position: relative;
}
.topbar #toggle-menu {
  display: none;
  position: absolute;
  z-index: 100;
  width: 40px;
  height: 40px;
  top: 50%;
  left: -7px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  outline: none;
}
.topbar #toggle-menu.active span {
  background: none;
}
.topbar #toggle-menu.active span::before {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.topbar #toggle-menu.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.topbar #toggle-menu.active span::before, .topbar #toggle-menu.active span::after {
  transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
}
.topbar #toggle-menu span {
  display: block;
  position: absolute;
  top: 20px;
  left: 11px;
  right: 9px;
  height: 2px;
  background: #fff;
  transition: background 0s 0.3s;
  -webkit-transition: background 0s 0.3s;
}
.topbar #toggle-menu span:before {
  top: -6px;
  background: #fff;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
  -webkit-transition-property: top, transform;
}
.topbar #toggle-menu span:after {
  background: #fff;
  bottom: -6px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
  -webkit-transition-property: bottom, transform;
}
.topbar #toggle-menu span:before, .topbar #toggle-menu span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  left: 0;
  background: #fff;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  -webkit-transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
}
.topbar .brand {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  width: 280px;
  height: 120px;
  background-image: url("https://i.ibb.co/ggdvM4y/Untitled-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}



.logo img{
  width: 250px;
  height: 120px;
}





.right-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto; /* Отодвигает правый блок к правому краю */
}



.topbar .brand svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.topbar .brand img {
  width: 100%;
}
.topbar .social-topbar {
  margin-left: 46px;
  height: 100%;
}
.topbar .social-topbar a {
  margin-left: 15px;
}
.topbar .social-topbar a:first-child {
  margin-left: 0;
}
.topbar .navigation {
  margin-right: 30px;
}
.topbar .navigation a {
  font-size: 0.875em;
  text-transform: uppercase;
  border-bottom: 1px dotted;
}
.topbar .contacts {
  margin-right: 67px;
}
.topbar .contacts > * {
  font-size: 0.875em;
}
.topbar .contacts > * svg {
  max-height: 16px;
  height: 16px;
  width: 16px;
  margin-right: 10px;
}
.topbar .contacts .location {
  margin-right: 37px;
}
.topbar .contacts .location a {
  -webkit-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.topbar .contacts .location a span {
  border-bottom: 2px dashed #fff;
}
.topbar .contacts .phone {
  font-weight: 700;
  letter-spacing: 0.45px;
}
.topbar .topbar_items {
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  -webkit-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.topbar .langs {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 0.75em;
  font-weight: 400;
}
.topbar .langs * {
  border-radius: 6px 6px 6px 6px;
  width: 100%;
}
.topbar .langs .lang {
  width: 50px;
  height: 40px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 6px 6px 6px 6px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.topbar .langs .lang:hover {
  color: #000;
  background-color: #fff;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.topbar .langs .lang.active {
    position: static;
    top: 10px; /* расстояние сверху */
    right: 10px; /* расстояние справа */
}
}
.topbar .langs .lang.active:hover {
  color: #fff;
  background-color: transparent;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.topbar .langs .dropdown {
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.42, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.42, 1);
  height: auto;
  display: none;
}
.topbar .langs .dropdown * {
  width: 100%;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.42, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.42, 1);
}
.topbar .langs .dropdown *:hover {
  background-color: #fff;
  color: #000;
}
.topbar .langs .dropdown > *:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.topbar .langs_wrap {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 100%;
}
@media (min-width: 768px) {
  .topbar .langs_wrap:hover .langs .dropdown {
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .topbar .langs_wrap .langs.active .dropdown {
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    opacity: 1;
  }
  .topbar .langs_wrap .langs.active .dropdown * {
    background-color: #403f3f;
  }
}
@media (max-width: 1023px) {
  .topbar .container {
    -webkit-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
  }
  .topbar #toggle-menu {
    display: block;
  }
  .topbar .brand {
    margin-left: 60px;
  }
  .topbar .topbar_items {
    display: none;
    position: absolute;
    background: transparent;
    z-index: 10;
    right: 0;
    top: 0;
    width: 100%;
    padding-left: 55px;
    -webkit-box-pack: start;
    box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
  }
  .topbar .langs_wrap {
    position: absolute;
    right: 0;
    z-index: 100;
  }
}
@media (max-width: 767px) {
  .topbar {
    padding-top: 5px;
  }
  .topbar .brand {
    margin-top: 0;
    width: 182px;
    margin-left: 35px;
  }
  .topbar #toggle-menu {
    left: 17px;
  }
  .topbar .social-topbar {
    display: none !important;
  }
  .topbar .topbar_items {
    -webkit-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
  }
  .topbar .navigation {
    margin-right: 25px;
  }
  .topbar .navigation a {
    font-size: 0.8125em;
  }
  .topbar .contacts {
    margin-right: 27px;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
  }
  .topbar .contacts .location {
    margin-right: 0;
  }
  .topbar .langs_wrap {
    right: 27px;
  }
  .topbar .langs {
    font-size: 16px;
  }
}
@media (max-width: 374px) {
  .topbar #toggle-menu {
    left: 0;
  }
  .topbar .navigation {
    margin-right: 18px;
  }
  .topbar .navigation a {
    font-size: 11px;
  }
  .topbar .contacts {
    margin-right: 10px;
  }
  .topbar .contacts .location {
    font-size: 14px;
  }
  .topbar .contacts .phone {
    font-size: 14px;
  }
  .topbar .langs_wrap {
    right: 10px;
  }
}

footer, #footer {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  padding-top: 15px;
  padding-bottom: 16px;
  bottom: 0;
  font-weight: 400;
}
footer .container, footer .container > *, #footer .container, #footer .container > * {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
footer .container, #footer .container {
  -webkit-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
footer .brand img, #footer .brand img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
footer .social-footer, #footer .social-footer {
  display: none;
  margin-left: 30px;
}
footer .social-footer a, #footer .social-footer a {
  margin: 0 7px;
}
footer .privacy_policy, #footer .privacy_policy {
  margin-left: 15px;
  margin-right: 91px;
  text-decoration: underline;
}
footer .links > *, #footer .links > * {
  margin: 0 5px;
}
footer .links svg, #footer .links svg {
  width: 35px;
  height: 35px;
  max-height: 40px;
}
footer .gim, #footer .gim {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
footer .gim svg, #footer .gim svg {
  width: 20px;
  height: 20px;
  max-height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
footer .gim a, #footer .gim a {
  color: #000;
}
@media (max-width: 1023px) {
  footer, #footer {
    padding: 29px 0 22px;
  }
  footer .left, #footer .left {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
  }
  footer .right, #footer .right {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
  }
  footer .privacy_policy, #footer .privacy_policy {
    margin-right: 0;
    margin-bottom: 7px;
    margin-top: -8px;
  }
}
@media (max-width: 767px) {
  footer .left, #footer .left {
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
  }
  footer .brand, #footer .brand {
    width: 116px;
    height: 32px;
  }
  footer .brand img, #footer .brand img {
    height: 32px;
  }
  footer .social-footer, #footer .social-footer {
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
  }
}
@media (max-width: 639px) {
  footer, #footer {
    padding: 12px 0 22px;
    font-size: 1em;
    font-weight: 400;
  }
  footer .container, #footer .container {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
  footer .left, #footer .left {
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  footer .copyright, footer .privacy_policy, footer .gim, #footer .copyright, #footer .privacy_policy, #footer .gim {
    margin: 5px auto;
  }
}

/*!
 * jQuery UI Datepicker 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 * jQuery UI CSS Framework 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0 0 5px #666666;
}

.d-flex {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}

.f-column {
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}

.f-row {
  -webkit-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
}

.f-wrap {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.f-nowrap {
  -webkit-box-lines: single;
  -moz-box-lines: single;
  box-lines: single;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.align-items-start {
  -webkit-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
}
.align-items-center {
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.align-items-end {
  -webkit-box-align: end;
  box-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
}
.align-items-stretch {
  -webkit-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}

.justify-content-start {
  -webkit-box-pack: start;
  box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: start;
}
.justify-content-center {
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.justify-content-end {
  -webkit-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
}
.justify-content-between {
  -webkit-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
.justify-content-around {
  -webkit-box-pack: distribute;
  box-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: distribute;
}

.first-screen {
  background-image: url(../img/bg_first_screen.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}
.first-screen .content {
  -webkit-box-align: start;
  box-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
  padding-top: 192px;
  padding-bottom: 150px;
  position: relative;
}
.first-screen .content:after {
  content: "";
  display: block;
  width: 668px;
  height: 743px;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: -77px;
}
.first-screen h1 {
  margin-bottom: 16px;
}
.first-screen .subtitle {
  font-size: 1.25em;
  line-height: 1.65;
  position: relative;
  margin-bottom: 98px;
}
.first-screen .free-trial .title {
  display: inline-block;
  font-size: 1.1875em;
  line-height: 1.58;
  position: relative;
  margin-bottom: 19px;
}
.first-screen .free-trial .title:after {
  content: "";
  display: block;
  width: 80px;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='98.911' height='108.71' viewBox='0 0 98.911 108.71'%3E%3Cdefs%3E%3Cfilter id='a' x='0' y='0' width='98.911' height='108.71' filterUnits='userSpaceOnUse'%3E%3CfeOffset dy='3' input='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='3' result='b'/%3E%3CfeFlood flood-color='%2339b04a'/%3E%3CfeComposite operator='in' in2='b'/%3E%3CfeComposite in='SourceGraphic'/%3E%3C/filter%3E%3C/defs%3E%3Cg transform='translate(9.373 6.677)'%3E%3Cg transform='translate(-939.815 -7.947) rotate(-33)'%3E%3Cg transform='matrix(0.84, 0.54, -0.54, 0.84, 779.64, 507.82)' filter='url(%23a)'%3E%3Cpath d='M770.6,538.96s79.723,21.744,26.323,77.869' transform='translate(-930.44 -1.27) rotate(-33)' fill='none' stroke='%233eb24c' stroke-width='1' stroke-dasharray='5'/%3E%3C/g%3E%3Cpath d='M796.275,610.047l.731,6.759,7.569-1.126' fill='none' stroke='%233eb24c' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -15px;
  right: -40px;
  z-index: 1;
}
.first-screen.success .content {
  padding-top: 158px;
}
.first-screen.success .content:after {
  display: none;
}
.first-screen.success .subtitle {
  margin-bottom: 44px;
}
.first-screen.success .block-steps {
  position: relative;
}
.first-screen.success .block-steps:after {
  content: "";
  display: block;
  width: 402px;
  height: 307px;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -307px;
  right: 0;
}
@media (max-width: 1023px) {
  .first-screen {
    overflow: hidden;
  }
  .first-screen .content {
    padding-top: 127px;
    padding-bottom: 262px;
  }
  .first-screen .content:after {
    width: 501px;
    height: 557px;
    right: -40px;
  }
  .first-screen.success .content {
    padding-top: 127px;
    padding-bottom: 94px;
  }
  .first-screen.success h1 {
    margin-bottom: 21px;
  }
  .first-screen.success .subtitle {
    margin-top: 0;
    margin-bottom: 72px;
  }
  .first-screen.success .block-steps:after {
    width: 274px;
    height: 304px;
    background-image: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: -304px;
  }
  .first-screen h1 {
    font-size: 2.3125em;
    line-height: 1.46;
    margin-bottom: 27px;
  }
  .first-screen .bottom-block {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: reverse;
    box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .first-screen .subtitle {
    width: 55%;
    margin-bottom: 0;
    margin-top: 37px;
    font-size: 1.06em;
  }
  .first-screen .free-trial .title {
    margin-bottom: 26px;
  }
}
@media (max-width: 767px) {
  .first-screen {
    background-image: url(../img/bg_first_screen_mobile_2x.jpg);
  }
  .first-screen .content {
    padding-top: 119px;
    padding-bottom: 342px;
  }
  .first-screen .content:after {
    display: none;
  }
  .first-screen.success .subtitle {
    width: 100%;
    margin-bottom: 35px;
  }
  .first-screen.success .block-steps:after {
    display: none;
  }
  .first-screen h1 {
    font-size: 1.3125em;
    line-height: 1.3;
    margin-bottom: 0;
  }
  .first-screen .bottom-block {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
  .first-screen .bottom-block .subtitle {
    font-size: 1em;
    margin-top: 11px;
    margin-bottom: 14px;
  }
  .first-screen .bottom-block .subtitle br {
    display: none;
  }
  .first-screen .bottom-block .free-trial .title {
    font-size: 0.8125em;
    line-height: 1.62;
    margin-bottom: 17px;
  }
  .first-screen .bottom-block .free-trial .title:after {
    right: -55px;
  }
}
@media (max-width: 374px) {
  .first-screen {
    font-size: 1.24em;
  }
}

.innovative-system {
  background-image: none;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 71px;
  padding-bottom: 55px;
}
.innovative-system .call-with-us {
  display: none;
}
.innovative-system .call-with-us .title-call {
  font-size: 1.5625em;
  line-height: 1.52;
  font-weight: 400;
  margin-bottom: 15px;
}
.innovative-system h2 {
  font-size: 2.9375em;
  line-height: 1.3;
  margin-bottom: 57px;
}
.innovative-system .points {
  margin-bottom: 42px;
}
.innovative-system .points .point {
  width: 308px;
  margin-bottom: 35px;
  background-color: #fff;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 14px 29px #e4e4e4;
}
.innovative-system .points .point .wrap-point {
  height: auto;
  min-height: 100%;
}
.innovative-system .points .point .wrap-point .img-point {
  width: 100%;
  height: 149px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 0 0;
}
.innovative-system .points .point .wrap-point .content-point {
  width: 100%;
  padding-top: 26px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 0 0 12px 12px;
}
.innovative-system .points .point .wrap-point .content-point .title-point {
  font-weight: bold;
  line-height: 1.44;
  margin-bottom: 9px;
  position: relative;
}
.innovative-system .points .point .wrap-point .content-point .title-point .arrow-point {
  display: none;
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.829' height='8.414' viewBox='0 0 14.829 8.414'%3E%3Cpath d='M6,9l6,6,6-6' transform='translate(-4.586 -7.586)' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.innovative-system .points .point .wrap-point .content-point .title-point .arrow-point.active {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.innovative-system .points .point .wrap-point .content-point .text-point.active {
  display: block;
}
.innovative-system .form-block {
  display: none;
}
@media (max-width: 1023px) {
  .innovative-system {
    padding-top: 28px;
    padding-bottom: 47px;
  }
  .innovative-system .call-with-us {
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
  }
  .innovative-system h2 {
    margin-bottom: 27px;
    margin-top: 46px;
  }
  .innovative-system .points {
    margin-bottom: 26px;
  }
  .innovative-system .points .point {
    width: 48.4%;
    margin-bottom: 39px;
  }
  .innovative-system .points .point .wrap-point .img-point {
    height: 168px;
  }
  .innovative-system .points .point .wrap-point .content-point {
    padding-top: 29px;
    padding-bottom: 33px;
    padding-left: 29px;
    padding-right: 29px;
  }
  .innovative-system .points .point .wrap-point .content-point .title-point {
    font-size: 1.125em;
    margin-bottom: 13px;
  }
}
@media (max-width: 767px) {
  .innovative-system {
    padding-top: 22px;
  }
  .innovative-system .call-with-us .title-call {
    font-size: 0.875em;
    line-height: 1.5;
  }
  .innovative-system .call-with-us .phone-link {
    width: 254px;
    font-size: 1em;
  }
  .innovative-system .call-with-us .phone-link .text-btn {
    font-size: 1em;
    padding: 14px 10px;
  }
  .innovative-system h2 {
    font-size: 1.375em;
    margin-top: 33px;
    margin-bottom: 32px;
  }
  .innovative-system .points {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-bottom: 24px;
  }
  .innovative-system .points .point {
    max-width: 350px;
    width: 100%;
    margin-bottom: 22px;
  }
  .innovative-system .points .point .wrap-point .img-point {
    height: 156px;
  }
  .innovative-system .points .point .wrap-point .content-point {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .innovative-system .points .point .wrap-point .content-point .title-point {
    font-size: 1.0625em;
    cursor: pointer;
    margin-bottom: 0;
    padding-right: 40px;
  }
  .innovative-system .points .point .wrap-point .content-point .title-point .arrow-point {
    display: block;
  }
  .innovative-system .points .point .wrap-point .content-point .text-point {
    display: none;
    line-height: 1.46;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .innovative-system .warning-text {
    display: none;
  }
  .innovative-system .form-block {
    display: block;
  }
}

.advantages {
  background-image: url(../img/bg_advantages.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 200px;
}
.advantages h2 {
  font-size: 2.9375em;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 11px;
}
.advantages h2 br {
  display: none;
}
.advantages .subtitle {
  font-size: 1.69em;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 59px;
}
.advantages .points .point {
  position: relative;
  padding-left: 70px;
  margin-bottom: 52px;
}
.advantages .points .point:before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cdefs%3E%3ClinearGradient id='iaafa' x1='28' x2='28' y1='8' y2='48' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%237dc356'/%3E%3Cstop offset='1' stop-color='%2339b14b'/%3E%3C/linearGradient%3E%3CclipPath id='iaafb'%3E%3Cpath fill='%23fff' d='M0 28C0 12.536 12.536 0 28 0s28 12.536 28 28-12.536 28-28 28S0 43.464 0 28z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg%3E%3Cpath fill='url(%23iaafa)' d='M8 28C8 16.954 16.954 8 28 8s20 8.954 20 20-8.954 20-20 20S8 39.046 8 28z'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='none' stroke='%237dc356' stroke-miterlimit='50' stroke-width='2' d='M0 28C0 12.536 12.536 0 28 0s28 12.536 28 28-12.536 28-28 28S0 43.464 0 28z' clip-path='url(&quot;%23iaafb&quot;)'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='50' stroke-width='2' d='M34.8 23.6v0L26 32.4v0l-4-4v0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.advantages .points .point .title-advantage {
  margin-bottom: 12px;
}
.advantages .points .point .text-advantage .item {
  width: 100%;
  position: relative;
  padding-left: 24px;
}
.advantages .points .point .text-advantage .item:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dc356), to(#39b14b));
  background-image: linear-gradient(180deg, #7dc356 0%, #39b14b 100%);
  border-radius: 12px 12px 12px 12px;
}
@media (max-width: 1023px) {
  .advantages {
    background-image: url(../img/bg_advantages_tablet.jpg);
    background-position: center bottom;
    padding-top: 54px;
    padding-bottom: 151px;
  }
  .advantages h2 {
    font-size: 2.375em;
    margin-bottom: 4px;
  }
  .advantages .subtitle {
    margin-bottom: 49px;
  }
  .advantages .points .point:nth-child(2) {
    margin-bottom: 57px;
  }
  .advantages .points .point:last-child .text-advantage .item {
    margin-top: 11px;
    margin-bottom: 11px;
  }
}
@media (max-width: 767px) {
  .advantages {
    background-image: url(../img/bg_advantages_mobile.jpg);
    padding-top: 32px;
    padding-bottom: 157px;
    margin-bottom: -37px;
  }
  .advantages h2 {
    font-size: 1.25em;
    line-height: 1.55;
    text-align: center;
    margin-bottom: 10px;
  }
  .advantages h2 br {
    display: block;
  }
  .advantages .subtitle {
    font-size: 1em;
    text-align: center;
    margin-bottom: 27px;
  }
  .advantages .points .point {
    padding-left: 0;
    margin-bottom: 37px;
  }
  .advantages .points .point .title-advantage {
    padding-left: 70px;
    margin-bottom: 19px;
    min-height: 58px;
  }
  .advantages .points .point .text-advantage {
    line-height: 1.4375;
  }
  .advantages .points .point .text-advantage .item:before {
    top: 3px;
  }
  .advantages .points .point:nth-child(1) .text-advantage br {
    display: none;
  }
  .advantages .points .point:nth-child(2) {
    margin-bottom: 37px;
  }
}

.monitoring-system {
  padding-bottom: 46px;
}
.monitoring-system .subtitle {
  margin-bottom: 33px;
}
.monitoring-system .content-columns {
  margin-bottom: 34px;
}
.monitoring-system .content-columns .left-column {
  width: 45%;
  float: left;
}
.monitoring-system .content-columns .left-column img {
  display: block;
  height: auto;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.16);
}
.monitoring-system .content-columns .left-column .img-mobile {
  display: none;
}
.monitoring-system .content-columns .right-column {
  width: 55%;
  float: left;
  padding-left: 50px;
}
.monitoring-system .content-columns .right-column .top-text {
  margin-top: -3px;
  margin-bottom: 22px;
}
.monitoring-system .content-columns .right-column .question {
  margin-bottom: 13px;
}
.monitoring-system .content-columns .right-column .points .point {
  margin-bottom: 23px;
}
.monitoring-system .content-columns .right-column .points .point .text {
  line-height: 1.4375;
  padding-left: 49px;
  position: relative;
}
.monitoring-system .content-columns .right-column .points .point .text svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .monitoring-system {
    position: relative;
    background-color: #fff;
    z-index: 1;
  }
}
@media (max-width: 1023px) {
  .monitoring-system {
    padding-bottom: 54px;
  }
  .monitoring-system .subtitle {
    margin-bottom: 28px;
  }
  .monitoring-system .content-columns {
    margin-bottom: 30px;
  }
  .monitoring-system .content-columns .left-column {
    width: 43%;
  }
  .monitoring-system .content-columns .right-column {
    width: 57%;
    padding-left: 34px;
  }
  .monitoring-system .content-columns .right-column .top-text {
    margin-bottom: 16px;
  }
  .monitoring-system .content-columns .right-column .question {
    font-size: 0.875em;
    margin-bottom: 13px;
  }
  .monitoring-system .content-columns .right-column .points .point {
    margin-bottom: 16px;
  }
  .monitoring-system .content-columns .right-column .points .point .text {
    padding-left: 35px;
  }
  .monitoring-system .content-columns .right-column .points .point .text svg {
    top: 14px;
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 767px) {
  .monitoring-system {
    padding-bottom: 28px;
  }
  .monitoring-system h2 {
    margin-bottom: 2px;
  }
  .monitoring-system .subtitle {
    margin-bottom: 18px;
  }
  .monitoring-system .content-columns {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    margin-bottom: 14px;
  }
  .monitoring-system .content-columns .left-column {
    width: 100%;
    margin-bottom: 26px;
  }
  .monitoring-system .content-columns .left-column .img-desktop {
    display: none;
  }
  .monitoring-system .content-columns .left-column .img-mobile {
    display: block;
  }
  .monitoring-system .content-columns .right-column {
    width: 100%;
    padding-left: 0;
  }
  .monitoring-system .content-columns .right-column .top-text {
    margin-top: 0;
    line-height: 1.47;
    margin-bottom: 21px;
  }
  .monitoring-system .content-columns .right-column .question {
    font-size: 1.25em;
    line-height: 1.5125;
    text-align: center;
    margin-bottom: 24px;
  }
  .monitoring-system .content-columns .right-column .points .point {
    margin-bottom: 8px;
  }
  .monitoring-system .content-columns .right-column .points .point .text {
    padding-left: 48px;
    min-height: 46px;
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .monitoring-system .content-columns .right-column .points .point .text svg {
    width: 31px;
    height: 31px;
    top: 23px;
  }
}

.not-sure-start {
  background-color: #f4f7fa;
  padding-top: 63px;
  padding-bottom: 42px;
}
.not-sure-start .container {
  position: relative;
}
.not-sure-start .container:before {
  content: "";
  display: block;
  width: 387px;
  height: 330px;
  background-image: url(../img/kisspng-dumbbell.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -459px;
  top: -198px;
  z-index: 1;
}
.not-sure-start .subtitle {
  margin-bottom: 70px;
}
.not-sure-start .content-columns .left-column {
  width: 485px;
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  padding-top: 3px;
  padding-right: 44px;
  float: left;
}
.not-sure-start .content-columns .left-column .points {
  counter-reset: div;
}
.not-sure-start .content-columns .left-column .points .point {
  padding-left: 127px;
  position: relative;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 35px;
}
.not-sure-start .content-columns .left-column .points .point:before {
  position: absolute;
  top: -15px;
  left: 35px;
  content: counter(div, decimal);
  counter-increment: div;
  font-size: 7.5625em;
  font-weight: 700;
  line-height: 1.1;
  opacity: 0.16;
  color: #7dc356;
  text-align: center;
}
.not-sure-start .content-columns .left-column .points .point:after {
  content: "";
  display: block;
  left: -10px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.not-sure-start .content-columns .left-column .points .point:nth-child(1):after {
  left: -31px;
  top: 11px;
  width: 123px;
  height: 123px;
  background-image: url(../img/1point.png);
}
.not-sure-start .content-columns .left-column .points .point:nth-child(2) {
  margin-bottom: 60px;
}
.not-sure-start .content-columns .left-column .points .point:nth-child(2):after {
  top: 22px;
  width: 91px;
  height: 87px;
  background-image: url(../img/2point.png);
}
.not-sure-start .content-columns .left-column .points .point:nth-child(3):after {
  top: 30px;
  width: 91px;
  height: 105px;
  background-image: url(../img/3point.png);
}
.not-sure-start .content-columns .left-column .points .point .title {
  margin-bottom: 4px;
}
.not-sure-start .content-columns .right-column {
  width: 441px;
  position: relative;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
}
.not-sure-start .content-columns .right-column:after {
  content: "";
  display: block;
  width: 460px;
  height: 460px;
  background-image: url(../img/kisspng-jump-ropes.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: -410px;
  bottom: -252px;
  z-index: 1;
}
.not-sure-start .content-columns .right-column .form-block {
  margin-bottom: 15px;
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .not-sure-start {
    overflow: hidden;
    position: relative;
    padding-top: 130px;
    padding-bottom: 195px;
    margin-top: -67px;
    margin-bottom: -99px;
  }
  .not-sure-start .container:before {
    width: 300px;
    height: 256px;
    left: -224px;
    top: -158px;
    z-index: 11;
  }
  .not-sure-start .content-columns .right-column:after {
    width: 400px;
    height: 400px;
    bottom: -245px;
    right: -290px;
    bottom: -252px;
    z-index: 11;
  }
}
@media (max-width: 1023px) {
  .not-sure-start {
    padding-top: 40px;
    padding-bottom: 17px;
    overflow: hidden;
  }
  .not-sure-start .container:before {
    left: -240px;
    top: 12px;
  }
  .not-sure-start .subtitle {
    margin-bottom: 32px;
  }
  .not-sure-start .content-columns {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: reverse;
    box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .not-sure-start .content-columns .left-column {
    padding-top: 32px;
    padding-right: 0;
    width: 100%;
  }
  .not-sure-start .content-columns .left-column .points .point {
    padding-left: 141px;
    margin-bottom: 42px;
  }
  .not-sure-start .content-columns .left-column .points .point:before {
    left: 48px;
    top: -19px;
  }
  .not-sure-start .content-columns .left-column .points .point:after {
    left: 1px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(1):before {
    left: 55px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(1):after {
    left: -18px;
    top: 7px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(2) {
    margin-bottom: 38px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(3):before {
    left: 51px;
  }
  .not-sure-start .content-columns .right-column:after {
    bottom: -105px;
  }
  .not-sure-start .content-columns .right-column .form-block {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .not-sure-start {
    padding-top: 37px;
    padding-bottom: 9px;
  }
  .not-sure-start .container:before {
    display: none;
  }
  .not-sure-start h2 {
    margin-bottom: 10px;
  }
  .not-sure-start .subtitle {
    line-height: 1.5;
    margin-bottom: 23px;
  }
  .not-sure-start .content-columns {
    position: relative;
    padding-bottom: 54px;
  }
  .not-sure-start .content-columns .left-column {
    width: 100%;
  }
  .not-sure-start .content-columns .left-column .points .point {
    padding-left: 0;
    margin-bottom: 44px;
  }
  .not-sure-start .content-columns .left-column .points .point:before {
    font-size: 6.25em;
  }
  .not-sure-start .content-columns .left-column .points .point .title {
    margin-bottom: 43px;
    padding-top: 26px;
    padding-left: 114px;
    line-height: 1.6;
  }
  .not-sure-start .content-columns .left-column .points .point .text {
    line-height: 1.4375;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(1):before {
    left: 34px;
    top: -16px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(1):after {
    width: 102px;
    height: 102px;
    left: -26px;
    top: 6px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(2):before {
    left: 37px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(2):after {
    top: 11px;
    left: -1px;
    width: 73px;
    height: 70px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(3):before {
    top: -22px;
    left: 29px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(3):after {
    top: 16px;
    left: -1px;
    width: 71px;
    height: 75px;
  }
  .not-sure-start .content-columns .left-column .points .point:nth-child(3) .title {
    margin-bottom: 52px;
  }
  .not-sure-start .content-columns .right-column {
    width: 100%;
    position: static;
  }
  .not-sure-start .content-columns .right-column:after {
    display: none;
  }
  .not-sure-start .content-columns .right-column .warning-text {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 1em;
    padding-left: 66px;
    padding-top: 20px;
  }
  .not-sure-start .content-columns .right-column .warning-text:before {
    left: 7px;
  }
}

.reviews-about-us {
  padding-top: 55px;
  padding-bottom: 30px;
}
.reviews-about-us .subtitle {
  margin-bottom: 35px;
}
.reviews-about-us .slider-reviews {
  width: 100%;
  margin-bottom: 54px;
}
.reviews-about-us .slider-reviews .slick-list {
  width: 798px;
  margin: 0 auto;
  box-shadow: 0 3px 31px rgba(162, 154, 154, 0.16);
  border-radius: 9px 9px 9px 9px;
}
.reviews-about-us .slider-reviews .single-review {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: flex !important;
  border-radius: 9px 9px 9px 9px;
  background-color: #fff;
}
.reviews-about-us .slider-reviews .single-review .link-review {
  padding: 30px 32px;
}
.reviews-about-us .slider-reviews .single-review .img-author {
  width: 174px;
  min-height: 176px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 3px 29px rgba(0, 0, 0, 0.16);
}
.reviews-about-us .slider-reviews .single-review .content-review {
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  padding-left: 29px;
}
.reviews-about-us .slider-reviews .single-review .content-review .name-author {
  font-size: 1.25em;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: -7px;
}
.reviews-about-us .slider-reviews .single-review .content-review .text-review {
  line-height: 1.4375;
  margin-bottom: 4px;
}
.reviews-about-us .slider-reviews .slick-arrow {
  width: 70px;
  height: 70px;
  border: 1px solid #7dc356;
  border-radius: 100px 100px 100px 100px;
  text-align: center;
  z-index: 1;
}
.reviews-about-us .slider-reviews .slick-arrow span {
  display: block;
  position: relative;
  width: 54px;
  height: 54px;
  margin: auto;
  box-shadow: 0 3px 6px #7dc356;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dc356), to(#39b14b));
  background-image: linear-gradient(180deg, #7dc356 0%, #39b14b 100%);
  border-radius: 100px 100px 100px 100px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.reviews-about-us .slider-reviews .slick-arrow span:before {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.reviews-about-us .slider-reviews .slick-arrow:before {
  display: none;
}
.reviews-about-us .slider-reviews .slick-arrow:hover span {
  box-shadow: 0 3px 10px #368b3d;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.reviews-about-us .slider-reviews .slick-prev {
  left: 0;
}
.reviews-about-us .slider-reviews .slick-prev span:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' viewBox='0 0 9 15'%3E%3Cg%3E%3Cg%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='50' stroke-width='2' d='M7.34 13.5v0l-6-6v0l6-6v0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.reviews-about-us .slider-reviews .slick-next {
  right: 0;
}
.reviews-about-us .slider-reviews .slick-next span:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' viewBox='0 0 9 15'%3E%3Cg%3E%3Cg%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='50' stroke-width='2' d='M1.66 13.5v0l6-6v0l-6-6v0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.reviews-about-us .slider-reviews .slick-dots {
  bottom: -56px;
  right: 0;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.reviews-about-us .slider-reviews .slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0 5px;
}
.reviews-about-us .slider-reviews .slick-dots li button {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 1px solid;
  border-color: #7dc356;
  padding: 0;
  border-radius: 50% 50% 50% 50%;
  box-shadow: 0 3px 6px #7dc356;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.reviews-about-us .slider-reviews .slick-dots li button:before {
  display: none;
}
.reviews-about-us .slider-reviews .slick-dots li:hover:not(.slick-active) button {
  box-shadow: 0 3px 10px #368b3d;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.reviews-about-us .slider-reviews .slick-dots li.slick-active button {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dc356), to(#39b14b));
  background-image: linear-gradient(180deg, #7dc356 0%, #39b14b 100%);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .reviews-about-us {
    background-color: #fff;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 1023px) {
  .reviews-about-us {
    padding-top: 38px;
    padding-bottom: 15px;
  }
  .reviews-about-us h2 {
    font-size: 1.8125em;
    margin-bottom: 4px;
  }
  .reviews-about-us .subtitle {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
  .reviews-about-us .subtitle br {
    display: none;
  }
  .reviews-about-us .slider-reviews .slick-list {
    width: 592px;
  }
  .reviews-about-us .slider-reviews .slick-list .slick-track {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .reviews-about-us .slider-reviews .single-review .link-review {
    padding: 25px 23px;
  }
  .reviews-about-us .slider-reviews .single-review .img-author {
    width: 165px;
    height: 186px;
  }
  .reviews-about-us .slider-reviews .single-review .content-review {
    padding-left: 25px;
  }
  .reviews-about-us .slider-reviews .single-review .content-review .name-author {
    font-size: 0.875em;
    margin-top: -4px;
  }
  .reviews-about-us .slider-reviews .single-review .content-review .text-review {
    font-size: 0.875em;
    line-height: 1.65;
    margin-bottom: 0;
  }
  .reviews-about-us .slider-reviews .slick-arrow {
    width: 52px;
    height: 52px;
  }
  .reviews-about-us .slider-reviews .slick-arrow span {
    width: 40px;
    height: 40px;
  }
  .reviews-about-us .slider-reviews .slick-arrow span:before {
    width: 8px;
    height: 14px;
  }
  .reviews-about-us .slider-reviews .slick-dots {
    bottom: -42px;
  }
}
@media (max-width: 767px) {
  .reviews-about-us {
    padding-top: 27px;
  }
  .reviews-about-us h2 {
    font-size: 1.25em;
    margin-bottom: 13px;
  }
  .reviews-about-us .subtitle {
    font-size: 1em;
    line-height: 1.47;
    margin-bottom: 38px;
  }
  .reviews-about-us .subtitle br {
    display: block;
  }
  .reviews-about-us .slider-reviews .slick-list {
    max-width: 300px;
    width: 100%;
  }
  .reviews-about-us .slider-reviews .slick-list .slick-track {
    -webkit-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
  }
  .reviews-about-us .slider-reviews .single-review .link-review {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    padding: 20px 18px 11px;
  }
  .reviews-about-us .slider-reviews .single-review .img-author {
    width: 100%;
  }
  .reviews-about-us .slider-reviews .single-review .content-review {
    padding-left: 0;
    padding-top: 24px;
  }
  .reviews-about-us .slider-reviews .single-review .content-review .name-author {
    margin-bottom: 8px;
  }
  .reviews-about-us .slider-reviews .single-review .content-review .text-review br {
    display: none;
  }
  .reviews-about-us .slider-reviews .slick-prev, .reviews-about-us .slider-reviews .slick-next {
    top: 113px;
  }
  .reviews-about-us .slider-reviews .slick-dots {
    bottom: -36px;
  }
}

.our-specialists {
  padding-top: 30px;
}
.our-specialists h2 {
  margin-bottom: 37px;
}
.our-specialists .points .point {
  min-height: 525px;
  margin-bottom: 47px;
  padding-top: 23px;
  padding-bottom: 37px;
  padding-left: 32px;
  padding-right: 32px;
  box-shadow: 0 7px 27px #E8EAEE;
  border-radius: 15px 15px 15px 15px;
}
.our-specialists .points .point .img-specialist {
  width: 418px;
  height: auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 15px 15px 15px 15px;
}
.our-specialists .points .point .info-specialist {
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  padding-left: 27px;
}
.our-specialists .points .point .info-specialist .main-info .meta-info {
  position: relative;
}
.our-specialists .points .point .info-specialist .main-info .meta-info .name-specialist {
  margin-bottom: 2px;
}
.our-specialists .points .point .info-specialist .main-info .meta-info .position-specialist {
  font-weight: 400;
  margin-bottom: 13px;
}
.our-specialists .points .point .info-specialist .main-info .meta-info .arrow-point {
  display: none;
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.829' height='8.414' viewBox='0 0 14.829 8.414'%3E%3Cpath d='M6,9l6,6,6-6' transform='translate(-4.586 -7.586)' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.our-specialists .points .point .info-specialist .main-info .meta-info .arrow-point.active {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.our-specialists .points .point .info-specialist .main-info .text-specialist {
  margin-bottom: 18px;
}
@media (max-width: 1023px) {
  .our-specialists {
    padding-top: 15px;
  }
  .our-specialists .points .point {
    padding-top: 17px;
    padding-bottom: 116px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    min-height: 425px;
    margin-bottom: 26px;
  }
  .our-specialists .points .point .img-specialist {
    width: 231px;
    height: 292px;
    border-radius: 12px 12px 12px 12px;
  }
  .our-specialists .points .point .info-specialist .main-info .meta-info .name-specialist {
    font-size: 0.875em;
    line-height: 1.5;
    margin-top: -2px;
  }
  .our-specialists .points .point .info-specialist .main-info .meta-info .position-specialist {
    font-size: 0.6875em;
    margin-bottom: 6px;
  }
  .our-specialists .points .point .info-specialist .main-info .text-specialist {
    font-size: 0.875em;
    line-height: 1.79;
    margin-bottom: -3px;
  }
  .our-specialists .points .point .info-specialist .quote {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 62px;
    font-size: 0.875em;
    line-height: 1.22;
    min-height: 71px;
  }
  .our-specialists .points .point .info-specialist .quote:before {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .our-specialists {
    padding-top: 0;
  }
  .our-specialists h2 {
    font-size: 1.25em;
    margin-bottom: 24px;
  }
  .our-specialists .points .point {
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 15px;
    padding-left: 13px;
    padding-right: 11px;
    margin-bottom: 45px;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    box-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
    -ms-flex-align: stretch;
  }
  .our-specialists .points .point:last-child {
    margin-bottom: 34px;
  }
  .our-specialists .points .point .img-specialist {
    width: 276px;
    height: 255px;
  }
  .our-specialists .points .point .info-specialist {
    width: 100%;
    padding-left: 0;
    padding-top: 27px;
  }
  .our-specialists .points .point .info-specialist .main-info .meta-info {
    cursor: pointer;
  }
  .our-specialists .points .point .info-specialist .main-info .meta-info .name-specialist {
    font-size: 1em;
    line-height: 1;
    margin-top: 0px;
    margin-bottom: 0;
  }
  .our-specialists .points .point .info-specialist .main-info .meta-info .position-specialist {
    font-size: 1em;
  }
  .our-specialists .points .point .info-specialist .main-info .meta-info .arrow-point {
    display: block;
  }
  .our-specialists .points .point .info-specialist .main-info .text-specialist {
    display: none;
    font-size: 1em;
    line-height: 1.45;
    margin-bottom: 0;
    padding-top: 13px;
  }
  .our-specialists .points .point .info-specialist .main-info .text-specialist.active {
    display: block;
  }
  .our-specialists .points .point .info-specialist .quote {
    display: none;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 35px;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 17px;
    line-height: 1.64;
    min-height: 137px;
  }
  .our-specialists .points .point .info-specialist .quote:before {
    left: 50%;
    top: -12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .our-specialists .points .point .info-specialist .quote.active {
    display: block;
  }
}

.answers-to-questions {
  padding-top: 10px;
  padding-bottom: 55px;
}
.answers-to-questions h2 {
  margin-bottom: 68px;
}
.answers-to-questions .points .points-left, .answers-to-questions .points .points-right {
  width: 50%;
}
.answers-to-questions .points .points-left .point, .answers-to-questions .points .points-right .point {
  border-radius: 12px 12px 12px 12px;
  padding: 9px;
  box-shadow: 0 7px 17px #E8EAEE;
  margin-bottom: 30px;
}
.answers-to-questions .points .points-left .point .wrap-point, .answers-to-questions .points .points-right .point .wrap-point {
  border-radius: 12px 12px 12px 12px;
  border: 1px solid rgba(112, 112, 112, 0.13);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 27px;
  padding-left: 31px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.answers-to-questions .points .points-left .point .wrap-point .question, .answers-to-questions .points .points-right .point .wrap-point .question {
  min-height: 85px;
  font-size: 1em;
  line-height: 1.5625;
  position: relative;
  padding-top: 20px;
  padding-bottom: 15px;
  padding-right: 35px;
  cursor: pointer;
}
.answers-to-questions .points .points-left .point .wrap-point .question .arrow-point, .answers-to-questions .points .points-right .point .wrap-point .question .arrow-point {
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px #7dc356;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7dc356), to(#39b14b));
  background-image: linear-gradient(180deg, #7dc356 0%, #39b14b 100%);
  position: absolute;
  top: 50%;
  right: -2px;
  border-radius: 100px 100px 100px 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
.answers-to-questions .points .points-left .point .wrap-point .question .arrow-point span, .answers-to-questions .points .points-right .point .wrap-point .question .arrow-point span {
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.828' height='8.414' viewBox='0 0 14.828 8.414'%3E%3Cg transform='translate(1.414 1)'%3E%3Cpath d='M6,0,0,6l6,6' transform='translate(12) rotate(90)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(180deg);
          transform: translateY(-50%) translateX(-50%) rotate(180deg);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.answers-to-questions .points .points-left .point .wrap-point .question .arrow-point.active span, .answers-to-questions .points .points-right .point .wrap-point .question .arrow-point.active span {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.answers-to-questions .points .points-left .point .wrap-point .answer, .answers-to-questions .points .points-right .point .wrap-point .answer {
  display: none;
  padding-bottom: 13px;
  line-height: 1.875;
  margin-top: -9px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.answers-to-questions .points .points-left .point .wrap-point .answer.active, .answers-to-questions .points .points-right .point .wrap-point .answer.active {
  display: block;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.answers-to-questions .points .points-left {
  padding-right: 12px;
}
.answers-to-questions .points .points-right {
  padding-left: 12px;
}
@media (max-width: 1023px) {
  .answers-to-questions {
    padding-top: 16px;
    padding-bottom: 76px;
  }
  .answers-to-questions h2 {
    margin-bottom: 37px;
  }
  .answers-to-questions .points .points-left {
    padding-right: 9px;
  }
  .answers-to-questions .points .points-right {
    padding-left: 9px;
  }
  .answers-to-questions .points .points-left .point, .answers-to-questions .points .points-right .point {
    padding: 7px;
    margin-bottom: 23px;
  }
  .answers-to-questions .points .points-left .point .wrap-point, .answers-to-questions .points .points-right .point .wrap-point {
    padding-right: 20px;
    padding-left: 22px;
  }
  .answers-to-questions .points .points-left .point .wrap-point .question, .answers-to-questions .points .points-right .point .wrap-point .question {
    font-size: 0.875em;
    min-height: 61px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .answers-to-questions .points .points-left .point .wrap-point .question .arrow-point, .answers-to-questions .points .points-right .point .wrap-point .question .arrow-point {
    width: 28px;
    height: 28px;
    right: 0px;
  }
  .answers-to-questions .points .points-left .point .wrap-point .question .arrow-point span, .answers-to-questions .points .points-right .point .wrap-point .question .arrow-point span {
    width: 12px;
    height: 6px;
  }
  .answers-to-questions .points .points-left .point .wrap-point .answer, .answers-to-questions .points .points-right .point .wrap-point .answer {
    font-size: 0.875em;
    padding-top: 3px;
    line-height: 1.73;
  }
}
@media (max-width: 767px) {
  .answers-to-questions {
    padding-bottom: 35px;
  }
  .answers-to-questions h2 {
    font-size: 1.25em;
    margin-bottom: 33px;
  }
  .answers-to-questions .points {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
  }
  .answers-to-questions .points .points-left, .answers-to-questions .points .points-right {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .answers-to-questions .points .points-left .point .wrap-point, .answers-to-questions .points .points-right .point .wrap-point {
    padding-right: 9px;
    padding-left: 13px;
  }
  .answers-to-questions .points .points-left .point .wrap-point .answer, .answers-to-questions .points .points-right .point .wrap-point .answer {
    padding-top: 10px;
    padding-bottom: 19px;
  }
}

.still-questions {
  background-image: url(../img/bg_still_questions.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 65px;
  padding-bottom: 55px;
  box-shadow: 0 9px 18px #949696;
}
.still-questions .wrap-container .left-column {
  width: 441px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -ms-flex-negative: 0;
}
.still-questions .wrap-container .right-column {
  -webkit-box-flex: auto;
  box-flex: auto;
  -webkit-flex: auto;
  -moz-flex: auto;
  flex: auto;
  padding-left: 42px;
}
.still-questions .wrap-container .right-column h2 {
  font-size: 3em;
  line-height: 1.27;
  text-align: left;
  margin-top: 2px;
  margin-bottom: 22px;
}
.still-questions .wrap-container .right-column .subtitle {
  font-size: 1.5625em;
  line-height: 1.52;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .still-questions {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .still-questions .wrap-container {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: reverse;
    box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .still-questions .wrap-container .right-column {
    padding-left: 0;
    margin-bottom: 54px;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
  .still-questions .wrap-container .right-column h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 17px;
  }
  .still-questions .wrap-container .right-column .subtitle {
    text-align: center;
    margin-bottom: 33px;
  }
}
@media (max-width: 767px) {
  .still-questions {
    background-image: url(../img/bg_still_questions_mobile.jpg);
    padding-top: 30px;
  }
  .still-questions .wrap-container .left-column {
    width: 100%;
  }
  .still-questions .wrap-container .right-column {
    width: 100%;
    margin-bottom: 45px;
  }
  .still-questions .wrap-container .right-column h2 {
    font-size: 1.25em;
    margin-bottom: 10px;
  }
  .still-questions .wrap-container .right-column .subtitle {
    font-size: 0.875em;
    margin-bottom: 35px;
  }
  .still-questions .wrap-container .right-column .phone-link .text-btn {
    padding: 21px 10px;
    font-size: 1.1875em;
  }
  
}


@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column; /* Изменяем направление флекс-контейнера */
        align-items: flex-start;
    }
    
  }
/*# sourceMappingURL=app.css.map*/
