/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*NORMALIZE.CSS*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  -ms-text-size-adjust: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 1 */ }

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

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

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

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

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

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

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

/**
 * 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"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */ }

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

td,
th {
  padding: 0; }

/*NORMALIZE.CSS END*/
/*RESET*/
*,
:focus {
  outline: none; }

body {
  -webkit-fontype-smalloothing: antialiased; }

body,
html {
  height: 100%;
  width: 100%; }

a,
input[type=radio],
input[type=checkbox],
select {
  cursor: pointer; }

select[disabled] {
  cursor: default; }

/*normalization mozila*/
input:-webkit-autofill {
  background-color: transparent; }

/*normalization ie7*/
* + html input[type=checkbox],
* + html input[type=radio] {
  width: 13px;
  height: 13px; }

textarea {
  resize: none;
  vertical-align: top; }

em,
i {
  font-style: italic; }

img {
  vertical-align: top; }

input {
  vertical-align: middle; }

dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu,
ol,
ul {
  padding: 0 0 0 40px; }

nav ul,
nav ol {
  list-style: none outside none; }

blockquote,
q {
  quotes: none; }

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

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

:focus {
  -moz-outline: 3px solid #fff !important; }

input[type="radio"]:focus {
  -moz-outline-radius: 12px !important;
  -moz-outline-offset: 0 !important; }

input[type="checkbox"]:focus {
  -moz-outline-offset: -1px !important;
  -moz-outline: 1px solid #000 !important; }

/*fix button click opera old version*/
button:after {
  content: ""; }

del {
  text-decoration: line-through; }

table {
  width: 100%; }

form {
  margin: 0;
  padding: 0; }

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

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1; }

::-webkit-input-placeholder {
  /* chrome */
  opacity: 1;
  color: inherit; }

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1; }

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

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

body {
  line-height: 1; }

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

blockquote, q {
  quotes: none; }

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

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

@font-face {
  font-family: 'Myriad Pro';
  src: url("../fonts/myriad-pro/MyriadPro-Regular.eot") format("embedded-opentype"), url("../fonts/myriad-pro/MyriadPro-Regular.woff") format("woff"), url("../fonts/myriad-pro/MyriadPro-Regular.ttf") format("truetype"), url("../fonts/myriad-pro/MyriadPro-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Myriad Pro';
  src: url("../fonts/myriad-pro/MyriadPro-It.eot");
  src: url("../fonts/myriad-pro/MyriadPro-It.eot#iefix") format("embedded-opentype"), url("../fonts/myriad-pro/MyriadPro-It.woff") format("woff"), url("../fonts/myriad-pro/MyriadPro-It.ttf") format("truetype"), url("../fonts/myriad-pro/MyriadPro-It.svg") format("svg");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: 'Myriad Pro';
  src: url("../fonts/myriad-pro/MyriadPro-LightIt.eot");
  src: url("../fonts/myriad-pro/MyriadPro-LightIt.eot#iefix") format("embedded-opentype"), url("../fonts/myriad-pro/MyriadPro-LightIt.woff") format("woff"), url("../fonts/myriad-pro/MyriadPro-LightIt.ttf") format("truetype"), url("../fonts/myriad-pro/MyriadPro-LightIt.svg") format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Myriad Pro';
  src: url("../fonts/myriad-pro/MyriadPro-Bold.eot") format("embedded-opentype"), url("../fonts/myriad-pro/MyriadPro-Bold.woff") format("woff"), url("../fonts/myriad-pro/MyriadPro-Bold.ttf") format("truetype"), url("../fonts/myriad-pro/MyriadPro-Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Myriad Pro';
  src: url("../fonts/myriad-pro/MyriadPro-Semibold.eot") format("embedded-opentype"), url("../fonts/myriad-pro/MyriadPro-Semibold.woff") format("woff"), url("../fonts/myriad-pro/MyriadPro-Semibold.ttf") format("truetype"), url("../fonts/myriad-pro/MyriadPro-Semibold.svg") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Myriad Pro';
  src: url("../fonts/myriad-pro/hinted-MyriadPro-Black.eot");
  src: local("Myriad Pro Black"), local("MyriadPro-Black"), url("../fonts/myriad-pro/hinted-MyriadPro-Black.eot#iefix") format("embedded-opentype"), url("../fonts/myriad-pro/hinted-MyriadPro-Black.woff") format("woff"), url("../fonts/myriad-pro/hinted-MyriadPro-Black.ttf") format("truetype"), url("../fonts/myriad-pro/hinted-MyriadPro-Black.svg") format("svg");
  font-weight: 900;
  font-style: normal; }

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

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

.centered {
  display: table;
  width: 100%;
  height: 100%; }
  .centered > * {
    display: table-cell;
    text-align: center;
    vertical-align: middle; }

body {
  background: #fff;
  color: #000;
  font-family: "Myriad Pro", Verdana;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px; }
  @media (max-width: 1024px) {
    body {
      font-size: 14px;
      line-height: 18px; } }
  @media (max-width: 767px) {
    body {
      line-height: 16px; } }

h1, h2, h3, h4, h5, h6 {
  color: #4c4c4c;
  font-family: "Rotonda", "Myriad Pro", Verdana;
  margin: 0;
  padding: 0;
  color: #000;
  letter-spacing: .05em;
  text-transform: uppercase; }

h1 {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  padding: 0 0 25px;
  text-align: center; }
  @media (max-width: 1024px) {
    h1 {
      font-size: 28px;
      line-height: 32px; } }
  @media (max-width: 767px) {
    h1 {
      font-size: 24px;
      line-height: 26px; } }

h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  color: #ffcc00; }
  @media (max-width: 1024px) {
    h2 {
      font-size: 20px;
      line-height: 24px; } }
  @media (max-width: 767px) {
    h2 {
      font-size: 16px;
      line-height: 20px; } }

h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600; }

h4 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300; }

h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300; }

h6 {
  font-size: 12px;
  line-height: 1.4; }

p {
  padding: 0 0 20px;
  margin: 0; }
  @media (max-width: 1024px) {
    p {
      padding-bottom: 18px; } }
  @media (max-width: 767px) {
    p {
      padding-bottom: 16px; } }

hr {
  overflow: hidden;
  height: 1px;
  background: #e9e9e9;
  border: 0;
  margin: 32px 0; }

q,
blockquote {
  text-align: center;
  display: block;
  font-style: italic; }

strong,
b {
  font-weight: 700; }

a {
  color: #354fc1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none; }
  a.button {
    text-decoration: none; }
    a.button:hover {
      text-decoration: none; }

a:hover {
  text-decoration: none;
  opacity: .8; }

[class*="icon-"] {
  display: inline-block;
  vertical-align: top; }

img[style*="float: left"],
img[style*="float:left"],
img[align="left"] {
  margin: 0 20px 5px 0; }

img[style*="float: right"],
img[style*="float:right"],
img[align="right"] {
  margin: 0 0 5px 20px; }

.static-content .content__main ul li, .default-list li {
  position: relative;
  padding-left: 10px; }
  .static-content .content__main ul li:before, .default-list li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: pink;
    border-radius: 50%; }

ol {
  list-style-type: decimal;
  list-style-position: inside;
  counter-reset: item; }
  ol li {
    display: block;
    position: relative; }
    ol li:before {
      content: counters(item, ".") ". ";
      counter-increment: item;
      display: inline;
      vertical-align: top;
      font-weight: 700; }

.upper {
  text-transform: uppercase; }

fieldset {
  display: block;
  text-align: center; }

label {
  display: block; }
  label:hover {
    cursor: pointer; }

.form-row:after {
  content: " ";
  display: block;
  clear: both; }

.form-row__col {
  float: left;
  padding-right: 13px; }

.form-row:last-child {
  padding-bottom: 0 !important; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select,
.input {
  background: #fff;
  border: 2px solid #a4a4a4;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  padding: 1px 15px;
  width: 100%;
  display: block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-appearance: none;
  border-radius: 0;
  border-radius: 14px; }
  input[type="text"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  .input::-webkit-input-placeholder {
    color: #9c9c9c; }
  input[type="text"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  input[type="search"]::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder,
  .input::-moz-placeholder {
    color: #9c9c9c;
    opacity: 1; }
  input[type="text"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  input[type="search"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder,
  .input:-ms-input-placeholder {
    color: #9c9c9c; }
  input[type="text"]:focus::-moz-placeholder,
  input[type="password"]:focus::-moz-placeholder,
  input[type="email"]:focus::-moz-placeholder,
  input[type="tel"]:focus::-moz-placeholder,
  input[type="search"]:focus::-moz-placeholder,
  textarea:focus::-moz-placeholder,
  select:focus::-moz-placeholder,
  .input:focus::-moz-placeholder {
    color: transparent;
    opacity: 1; }
  input[type="text"]:focus::-webkit-input-placeholder,
  input[type="password"]:focus::-webkit-input-placeholder,
  input[type="email"]:focus::-webkit-input-placeholder,
  input[type="tel"]:focus::-webkit-input-placeholder,
  input[type="search"]:focus::-webkit-input-placeholder,
  textarea:focus::-webkit-input-placeholder,
  select:focus::-webkit-input-placeholder,
  .input:focus::-webkit-input-placeholder {
    color: transparent; }
  input[type="text"]:focus:-ms-input-placeholder,
  input[type="password"]:focus:-ms-input-placeholder,
  input[type="email"]:focus:-ms-input-placeholder,
  input[type="tel"]:focus:-ms-input-placeholder,
  input[type="search"]:focus:-ms-input-placeholder,
  textarea:focus:-ms-input-placeholder,
  select:focus:-ms-input-placeholder,
  .input:focus:-ms-input-placeholder {
    color: transparent; }
  input[type="text"]:focus::placeholder,
  input[type="password"]:focus::placeholder,
  input[type="email"]:focus::placeholder,
  input[type="tel"]:focus::placeholder,
  input[type="search"]:focus::placeholder,
  textarea:focus::placeholder,
  select:focus::placeholder,
  .input:focus::placeholder {
    color: transparent; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="search"]:focus,
  textarea:focus,
  select:focus,
  .input:focus {
    border-color: #696969;
    background: #fff; }
  input[type="text"].disabled, input[type="text"][disabled="disabled"], input[type="text"][disabled],
  input[type="password"].disabled,
  input[type="password"][disabled="disabled"],
  input[type="password"][disabled],
  input[type="email"].disabled,
  input[type="email"][disabled="disabled"],
  input[type="email"][disabled],
  input[type="tel"].disabled,
  input[type="tel"][disabled="disabled"],
  input[type="tel"][disabled],
  input[type="search"].disabled,
  input[type="search"][disabled="disabled"],
  input[type="search"][disabled],
  textarea.disabled,
  textarea[disabled="disabled"],
  textarea[disabled],
  select.disabled,
  select[disabled="disabled"],
  select[disabled],
  .input.disabled,
  .input[disabled="disabled"],
  .input[disabled] {
    background-color: #fafafa;
    opacity: .4; }
  @media (max-width: 767px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    textarea,
    select,
    .input {
      font-size: 14px; } }

textarea {
  height: 150px; }

input[type="file"] {
  display: none; }
  input[type="file"] + label {
    display: block;
    background: #fff;
    font-size: 14px;
    line-height: 24px;
    padding: 25px 15px;
    color: #969696;
    text-align: center;
    border: 1px dashed #c4c4c4;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out; }
    input[type="file"] + label:hover {
      border-color: #696969;
      background: #e9e9e9; }

select,
.select,
.ui-selectmenu-button {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-transition: none;
  transition: none;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../img/icons/slct-down.png");
  line-height: 26px;
  padding: 1px 15px;
  height: 32px;
  border: 2px solid #a4a4a4;
  border-radius: 14px;
  background-position: right 10px center; }
  select:focus,
  .select:focus,
  .ui-selectmenu-button:focus {
    background-image: url("../img/icons/slct-down.png");
    background-repeat: no-repeat;
    background-position: right 15px center; }
  @media (max-width: 1024px) {
    select,
    .select,
    .ui-selectmenu-button {
      height: 30px;
      padding: 0 15px; } }

.js-autocomplete {
  background-color: #fff !important;
  background-image: url("../img/icons/slct-down.png") !important;
  background-position: right 10px center !important;
  background-repeat: no-repeat !important; }
  .js-autocomplete.open {
    background-image: url("../img/icons/slct-up.png") !important; }

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

.ui-selectmenu-button {
  background: #fff !important; }
  .ui-selectmenu-button[aria-expanded="true"] span.ui-icon-triangle-1-s {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .ui-selectmenu-button span.ui-selectmenu-text {
    padding: 0 16px 0 0;
    line-height: 26px; }
  .ui-selectmenu-button span.ui-icon-triangle-1-s {
    right: 10px;
    margin-top: -4px;
    background-image: url(../img/sprite.png);
    background-position: -419px -280px;
    width: 17px;
    height: 8px; }

.ui-selectmenu-menu {
  -webkit-box-shadow: 0 4px 18px rgba(102, 102, 102, 0.08);
          box-shadow: 0 4px 18px rgba(102, 102, 102, 0.08);
  background: #fff;
  padding: 0 0 10px; }
  .ui-selectmenu-menu .ui-widget-content {
    border-radius: 0;
    border: 0;
    max-height: 170px;
    overflow-y: auto;
    padding: 0; }
    .ui-selectmenu-menu .ui-widget-content .ui-menu-item {
      font-size: 16px;
      line-height: 24px;
      color: #595957;
      padding: 0 17px; }
      .ui-selectmenu-menu .ui-widget-content .ui-menu-item.ui-state-focus {
        border: 0;
        margin: 0;
        font-weight: inherit;
        background-color: transparent;
        color: #ffcc00; }

.jspVerticalBar {
  width: 17px;
  background: #fff;
  top: -8px;
  right: 12px; }

.jspTrack {
  width: 2px;
  background: #e2dfdf;
  left: 50%;
  margin-left: -1px; }

.jspScrollable {
  position: relative; }

.jspDrag {
  height: 12px;
  width: 12px;
  background: #ffcc00;
  border-radius: 50%;
  margin-left: -5px; }

.jspArrow {
  width: 17px !important;
  height: 8px !important;
  background-color: transparent;
  position: relative;
  left: 1px; }
  .jspArrow:after {
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    top: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8.5px 0 8.5px;
    border-color: #ffcc00 transparent transparent transparent; }
  .jspArrow.jspArrowUp:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .jspArrow.jspDisabled {
    background-color: transparent; }
    .jspArrow.jspDisabled:after {
      border-color: #ccc transparent transparent transparent; }

.ui-autocomplete {
  -webkit-box-shadow: 0 4px 18px rgba(102, 102, 102, 0.08);
          box-shadow: 0 4px 18px rgba(102, 102, 102, 0.08);
  background: #fff;
  padding: 0 0 10px;
  border: 0;
  position: absolute;
  left: 0;
  top: 0; }
  .ui-autocomplete .ui-menu-item {
    font-size: 16px;
    line-height: 24px;
    color: #595957;
    padding: 0 17px; }
    .ui-autocomplete .ui-menu-item.ui-state-focus {
      border: 0;
      margin: 0;
      font-weight: inherit;
      background-color: transparent;
      color: #ffcc00; }

button,
.btn {
  text-align: center;
  vertical-align: top;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 14px 15px;
  text-transform: uppercase;
  background: #ffcc00;
  color: #231f20;
  border: 0;
  border-radius: 3px;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: block;
  min-width: 244px;
  letter-spacing: .05em; }
  button:hover, button.active,
  .btn:hover,
  .btn.active {
    color: #fff;
    background: #ffcc00; }
  button.disabled, button[disabled="disabled"], button[disabled],
  .btn.disabled,
  .btn[disabled="disabled"],
  .btn[disabled] {
    background: #ccc;
    color: #aaa;
    cursor: not-allowed; }
  button--border,
  .btn--border {
    padding-top: 12px;
    padding-bottom: 12px;
    border: 2px solid #000; }
    button--border:hover,
    .btn--border:hover {
      border-color: #fff; }
  @media (max-width: 1024px) {
    button,
    .btn {
      font-size: 14px;
      line-height: 18px;
      padding: 12px 15px;
      min-width: 210px; }
      button--border,
      .btn--border {
        padding-top: 10px;
        padding-bottom: 10px; } }
  @media (max-width: 767px) {
    button,
    .btn {
      padding: 12px 5px; } }

input[type="checkbox"].custombox {
  position: absolute;
  left: -9999px; }
  input[type="checkbox"].custombox + label {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 30px;
    position: relative;
    cursor: pointer;
    font-size: 15px;
    line-height: 24px;
    width: auto !important; }
    input[type="checkbox"].custombox + label:before, input[type="checkbox"].custombox + label:after {
      position: absolute;
      content: '';
      border-radius: 50%; }
	input[type="checkbox"].custombox + label:before{
		left: 0;
	    top: 0;
	    width: 28px;
	    height: 28px;
	    border: 2px solid #a4a4a4;
	}
	input[type="checkbox"].custombox + label:after {
        width: 22px;
    	height: 19px;
    	background-image: url(../img/icons/check.png);
    	left: 5px;
    	top: 0.5px;
      opacity: 0;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
  	input[type="checkbox"].custombox:checked + label:after {
    opacity: 1; }

input[type="radio"].custombox {
  position: absolute;
  left: -9999px; }
  input[type="radio"].custombox + label {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 35px !important;
    position: relative;
    cursor: pointer;
    font-size: 16px !important;
    line-height: 28px !important;
    width: auto !important;
    font-weight: 400 !important; }
    input[type="radio"].custombox + label:before, input[type="radio"] + label:after {
      position: absolute;
      content: '';
      border-radius: 50%; }
    input[type="radio"].custombox + label:before {
      left: 0;
      top: 0;
      width: 28px;
      height: 28px;
      border: 2px solid #a4a4a4; }
    input[type="radio"].custombox + label:after {
      width: 12px;
      height: 12px;
      background: #ffcc00;
      left: 8px;
      top: 8px;
      opacity: 0;
      -webkit-transition: .3s ease;
      transition: .3s ease; }
  input[type="radio"].custombox:checked + label:after {
    opacity: 1; }
  @media (max-width: 1024px) {
    input[type="radio"] + label {
      font-size: 14px !important; } }
  @media (max-width: 767px) {
    input[type="radio"].custombox + label {
      font-size: 12px !important;
      line-height: 18px !important;
      padding-top: 5px !important; } }

.rating-stars:after {
  content: " ";
  display: block;
  clear: both; }

.rating-stars.static {
  pointer-events: none; }

.rating-stars:not(old) {
  display: inline-block;
  vertical-align: top; }
  .rating-stars:not(old) > input[type="radio"] {
    margin-right: -100%;
    opacity: 0;
    display: none; }
  .rating-stars:not(old) > label {
    display: block;
    float: right;
    position: relative;
    margin: 0 1px 0 0;
    padding: 0;
    text-indent: -9999%;
    overflow: hidden;
    top: 0; }
    .rating-stars:not(old) > label:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      -webkit-transition: opacity 0.2s linear;
      transition: opacity 0.2s linear; }
    .rating-stars:not(old) > label:before {
      display: none; }

.rating-stars:not(old) > label:hover:after,
.rating-stars:not(old) > label:hover ~ label:after,
.rating-stars:not(:hover) > :checked ~ label:after {
  opacity: 1; }

.rating-stars.static {
  position: relative; }
  .rating-stars.static .inner {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0; }

.ui-datepicker {
  width: 242px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 2px #ccc;
          box-shadow: 0 0 2px #ccc;
  padding: 10px !important;
  display: none; }
  .ui-datepicker .ui-widget-header {
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 5px 35px 13px; }
    .ui-datepicker .ui-widget-header .ui-datepicker-prev, .ui-datepicker .ui-widget-header .ui-datepicker-next {
      position: absolute;
      font-family: 'mymobstr-pt';
      top: 14px;
      color: #9B9B9B;
      font-size: 24px;
      height: 24px;
      width: 24px; }
      .ui-datepicker .ui-widget-header .ui-datepicker-prev:hover, .ui-datepicker .ui-widget-header .ui-datepicker-next:hover {
        background: #fff;
        border: 0;
        text-decoration: none; }
    .ui-datepicker .ui-widget-header .ui-datepicker-prev {
      left: 10px; }
      .ui-datepicker .ui-widget-header .ui-datepicker-prev:before {
        content: '\e6fe'; }
    .ui-datepicker .ui-widget-header .ui-datepicker-next {
      right: 10px; }
      .ui-datepicker .ui-widget-header .ui-datepicker-next:before {
        content: '\e6ff'; }
    .ui-datepicker .ui-widget-header .ui-datepicker-title {
      color: #333;
      font-size: 14px;
      line-height: 18px;
      font-weight: 600;
      text-align: center;
      text-transform: uppercase; }
  .ui-datepicker .ui-datepicker-calendar {
    margin: 0 -10px;
    padding: 0 10px; }
  .ui-datepicker thead th {
    font-size: 12px;
    line-height: 16px;
    color: #9B9B9B;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 0 6px; }
  .ui-datepicker tbody tr td .ui-state-default {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    padding: 5px 8px;
    color: #333;
    border: 0;
    background: #fff;
    display: block;
    text-align: center; }
    .ui-datepicker tbody tr td .ui-state-default.ui-state-hover {
      border: 0;
      background: #eee;
      text-decoration: none; }
    .ui-datepicker tbody tr td .ui-state-default.ui-state-highlight {
      color: #fff; }
    .ui-datepicker tbody tr td .ui-state-default.ui-state-active {
      background: #eee;
      text-decoration: none; }

.autocomplete-holder {
  display: inline-block;
  vertical-align: top;
  position: relative; }

.autocomplete-all {
  width: 17px;
  height: 8px;
  background-color: transparent;
  position: absolute;
  cursor: pointer;
  right: 12px;
  bottom: 12px; }

.autocomplete-scrollpane {
  max-height: 170px; }

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

body {
  height: 100%;
  min-width: 320px;
  background: #e7f9ff; }

.container {
  padding: 0 15px;
  max-width: 1170px;
  margin: 0 auto; }
  .container:after {
    content: " ";
    display: block;
    clear: both; }

.main-wrapper {
  min-height: 100%;
  margin: 0 0 -76px;
  padding: 0 0 76px;
  background: url("../img/clouds-left-bg.png") left top 500px repeat-y, url("../img/clouds-right-bg.png") right top 500px repeat-y; }
  @media (max-width: 1024px) {
    .main-wrapper {
      background: url("../img/clouds-left-bg.png") center top 500px repeat-y;
      margin: 0;
      padding: 0;
      background-size: 70%; } }

.content__title {
  text-align: center;
  padding: 93px 0 63px; }

@media (max-width: 1024px) {
  .content__title {
    padding: 54px 0 43px; } }

.header {
  padding: 16px 0 0;
  background: #fff; }
  .header__container {
    max-width: 1705px; }
  .header__top {
    padding: 0 0 12px; }
  .header__bottom {
    background: #ffcc00;
    padding: 10px 0;
    overflow: hidden; }
  .header__logo {
    display: block;
    float: left;
    margin: 0 46px 0 0;
    width: 160px; }
    .header__logo img {
      max-width: 100%; }
  .header__slogan {
    float: left;
    text-align: center;
    padding: 16px 0 0; }
    .header__slogan-top {
      font-size: 20px;
      line-height: 24px; }
    .header__slogan-bottom {
      font-weight: 900;
      font-size: 53px;
      line-height: 53px;
      color: #ffcc00;
      text-transform: uppercase; }
  .header__fund {
    float: right;
    margin: 12px 0 0 115px;
    width: 276px; }
	.header__fund.logo-en{
		margin: 12px 0 0 55px;
	}
    .header__fund img {
      max-width: 100%; }
  .header__callback {
    color: #ffcc00;
    float: right;
    padding: 26px 0 0;
    overflow: hidden; }
    .header__callback-icon {
      float: left;
      padding: 2px 15px 0 0; }
    .header__callback-inner {
      float: left; }
    .header__callback-title {
      font-size: 18px;
      line-height: 24px;
      padding: 0 0 1px; }
    .header__callback-link {
      color: #ffcc00;
      font-size: 24px;
      line-height: 28px;
      font-weight: 700;
      display: block; }
  .header__nav {
    overflow: hidden;
    height: 24px;
    padding-right: 20px; }
    .header__nav-layout {
      font-size: 0;
      text-align: justify; }
      .header__nav-layout:after {
        width: 100%;
        height: 0;
        visibility: hidden;
        overflow: hidden;
        content: '';
        display: inline-block; }
      .header__nav-layout-item {
        display: inline-block;
        vertical-align: top;
        padding: 0 42px 0 0; }
        .header__nav-layout-item:last-child {
          padding-right: 0; }
    .header__nav-link, .submenu__nav-link {
      display: block;
      color: #fff;
      font-size: 16px;
      line-height: 24px;
      text-transform: uppercase;
      letter-spacing: .05em;
      font-weight: 600; }
      .header__nav-link:hover, .submenu__nav-link:hover {
        color: #231f20; }
  .header__hamburger {
    width: 55px;
    height: 55px;
    display: none;
    border-radius: 50%;
    background: #ffcc00;
    cursor: pointer; }
    .header__hamburger-line {
      height: 3px;
      width: 20px;
      background: #000;
      position: absolute;
      left: 50%;
      top: 50%;
      margin: -1px 0 0 -10px; }
      .header__hamburger-line:before, .header__hamburger-line:after {
        position: absolute;
        content: '';
        height: 3px;
        width: 20px;
        left: 0;
        background: #000; }
      .header__hamburger-line:before {
        top: -7px; }
      .header__hamburger-line:after {
        bottom: -7px; }
  .header__socials {
    display: none; }
  .header__lng {
    float: right; }
    .header__lng .socials__link {
      height: 24px;
      width: 24px;
      font-size: 14px;
      line-height: 24px;
      color: #ffcc00;
      text-align: center;
      border-radius: 50%;
      background: #fff; }

@-moz-document url-prefix() {
  .header__lng .socials__link {
    line-height: 22px; } }
  @media (max-width: 1750px) {
    .header__nav-layout-item {
      padding: 0 20px 0 0; }
    .header__nav-link, .submenu__nav-link {
      font-size: 14px; } }
  @media (max-width: 1335px) {
    .header__fund {
      margin-left: 25px; } }
  @media (max-width: 1324px) {
    .header__nav-layout-item {
      padding: 0 10px 0 0; }
    .header__nav-link, .submenu__nav-link {
      font-size: 14px; } }
  @media (max-width: 1258px) {
    .header__logo {
      margin-right: 25px; }
    .header__slogan-top {
      font-size: 13px; }
    .header__slogan-bottom {
      font-size: 30px; }
    .header__fund {
      width: 236px; } }
  @media (max-width: 1221px) {
    .header__lng {
      position: absolute;
      top: 10px;
      right: 20px; }
      .header__lng .socials__link {
        background: #ffcc00;
        color: #fff; }
    .header__nav {
      padding-right: 0; }
      .header__nav-layout-item {
        padding: 0 10px 0 0; }
      .header__nav-link, .submenu__nav-link {
        letter-spacing: 0; } }
  @media (max-width: 1160px) {
    .header__lng {
      position: absolute;
      top: 10px;
      right: 20px; }
      .header__lng .socials__link {
        background: #ffcc00;
        color: #fff; }
    .header__nav-layout-item {
      padding: 0 8px 0 0; }
    .header__nav-link, .submenu__nav-link {
      font-weight: 400; } }
  @media (max-width: 1024px) {
    .header {
      padding: 4px 0 0; }
      .header__logo {
        width: 107px;
        display: inline-block;
        vertical-align: top;
        float: none;
        margin: 0 8px 3px; }
        .header__logo .icon-logo {
          width: 107px; }
      .header__lng {
        position: static; }
        .header__lng .socials__link {
          background: #fff;
          color: #ffcc00; }
      .header__slogan {
        float: none;
        display: inline-block;
        vertical-align: top;
        padding: 22px 0 0 20px; }
        .header__slogan-top {
          display: none; }
        .header__slogan-bottom {
          font-size: 36px;
          line-height: 36px; }
      .header__hamburger {
        display: block;
        position: absolute;
        right: 28px;
        top: 9px;
        z-index: 150; }

        .header__hamburger hr{
          overflow: hidden;
          width: 50%;
          display: block;
          margin: 8px auto;
          color: black;
          height: 2px;
          background: black;
        }

        .header__hamburger hr:first-child{
          margin-top: 17px;
        }

      .header__nav {
        float: none;
        height: auto;
        padding: 0 0 13px 39px; }
        .header__nav-layout-item {
          display: block;
          padding: 0 0 24px; }
      .header__top {
        padding-bottom: 0;
        text-align: center; }
        .header__top .header__fund {
          display: none; }
      .header__bottom {
        position: fixed;
        width: 296px;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 25px 15px 20px;
        z-index: 150;
        overflow-y: auto;
        right: -296px;
        -webkit-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        -webkit-box-shadow: -2px 2px 24px rgba(102, 102, 102, 0.48);
                box-shadow: -2px 2px 24px rgba(102, 102, 102, 0.48);
        opacity: 0; }
        .header__bottom .container {
          padding: 0; }
        .header__bottom .header__fund {
          width: 139px;
          margin: 0 auto;
          display: block;
          float: none; }
        .header__bottom.visible {
          right: 0;
          opacity: 1; }
      .header__socials {
        float: none;
        padding-bottom: 33px;
        text-align: center;
        display: block; }
        .header__socials .socials__layout-item {
          padding: 0 0 0 13px; }
      .header__lng {
        float: none;
        text-align: center;
        padding: 0 0 30px; }
        .header__lng .socials__layout-item {
          padding: 0 0 0 13px; }
      .header__callback {
        font-size: 16px;
        line-height: 24px;
        font-size: 0;
        display: block;
        background: #ffcc00;
        float: none;
        clear: both;
        padding: 6px 15px;
        margin: 0 -15px;
        text-align: left; }
        .header__callback-icon, .header__callback-inner, .header__callback-title, .header__callback-link {
          display: inline-block;
          vertical-align: top; }
        .header__callback-icon {
          padding: 0 8px 0 0; }
          .header__callback-icon .icon-callback {
            background-image: url(../img/sprite.png);
            background-position: -254px -381px;
            width: 24px;
            height: 24px; }
        .header__callback-title, .header__callback-link {
          color: #231f20;
          font-size: 16px;
          line-height: 24px;
          font-weight: 600; }
        .header__callback-title {
          padding-right: 5px; } }
  @media (max-width: 767px) {
    .header__logo {
      width: 64px;
      display: block;
      float: left;
      margin: 5px 12px 0 0; }
      .header__logo .icon-logo {
        width: 64px;
        height: 39px; }
    .header__slogan {
      padding: 13px 0 0;
      display: block;
      float: left; }
      .header__slogan-bottom {
        font-size: 17px;
        line-height: 17px; }
    .header__callback {
      display: none; }
    .header__hamburger {
      width: 48px;
      height: 48px;
      top: 2px;
      right: 15px; }
    .header__nav {
      padding-left: 20px; }
      .header__nav-layout-item {
        padding: 0 0 12px; }
      .header__nav-link, .submenu__nav-link {
        font-size: 12px;
        line-height: 16px; }
    .header__bottom {
      width: 213px;
      padding: 14px 15px 20px; }
    .header__lng {
      padding: 0 0 22px; }
    .header__socials {
      padding-bottom: 16px; } }

.icon-logo {
  background-image: url(../img/sprite.png);
  background-position: 0px -328px;
  width: 160px;
  height: 96px;
  background: none; }

.icon-rozvitok {
  background-image: url(../img/sprite.png);
  background-position: 0px -243px;
  width: 276px;
  height: 80px; }

.icon-callback {
  background-image: url(../img/sprite.png);
  background-position: -165px -328px;
  width: 48px;
  height: 48px; }

.icon-vk-white {
  background-image: url(../img/sprite.png);
  background-position: -225px -381px;
  width: 24px;
  height: 24px; }

.icon-fb-white {
  background-image: url(../img/sprite.png);
  background-position: -196px -381px;
  width: 24px;
  height: 24px; }
.icon-inst-white {
    background-image: url("../img/instagram-logo_w.png");
    background-position: 0 0;
    height: 24px;
    width: 24px;
}
.icon-ok-white {
  background-image: url(../img/sprite.png);
  background-position: -165px -381px;
  width: 26px;
  height: 26px; }

.icon-vk-brown {
  background-image: url(../img/sprite.png);
  background-position: -292px -328px;
  width: 32px;
  height: 32px; }

.icon-ok-brown {
  background-image: url(../img/sprite.png);
  background-position: -366px -328px;
  width: 32px;
  height: 32px; }

.icon-fb-brown {
  background-image: url(../img/sprite.png);
  background-position: -218px -328px;
  width: 32px;
  height: 32px; }

.footer {
  //height: 76px;
  background: #ffcc00;
  padding: 30px 0 10px;
  color: #231f20; }
  .footer__cpr {
    float: left; 
	margin-top: -2px;}
  .footer__callback {
    font-size: 0;
    line-height: 24px;
    float: right;
    padding-left: 24px;
    margin-top: -5px; }
    .footer__callback-icon, .footer__callback-title, .footer__callback-link {
      display: inline-block;
      vertical-align: top;
      font-size: 16px; }
    .footer__callback-icon {
      padding: 0 8px 0 0; }
    .footer__callback-title {
      font-weight: 600;
      padding-right: 5px; }
    .footer__callback-link {
      color: #231f20;
      font-weight: 600; }
  .footer__help {
    font-size: 0;
    line-height: 24px;
    float: right;
    margin-top: -5px; }
    .footer__help-icon, .footer__help-title {
      display: inline-block;
      vertical-align: top;
      font-size: 16px; }
    .footer__help-icon {
      padding-right: 8px; }
    .footer__help-title {
      color: #231f20;
      font-weight: 600; }
  .footer__socials {
    float: right;
    padding-left: 77px;
    margin: -7px 0 0; }
    .footer__socials .socials__layout-item {
      padding: 0 8px; }
  @media (max-width: 1024px) {
    .footer {
      height: auto;
      padding: 18px 0 15px; }
      .footer__cpr {
        float: none;
        font-size: 12px;
        line-height: 12px; }
		.test {
			float: none;
			margin: 0 0 10px;
			display: block;
		}
      .footer__help {
        float: none;
        margin: 0 0 30px;
        display: block; }
      .footer__callback {
        float: none;
        padding: 0;
        margin: 0 0 19px;
        display: block; }
      .footer__socials {
        margin: 6px 0 0; } }
  @media (max-width: 767px) {
    .footer {
      padding: 25px 0 14px; }
      .footer__help-title, .footer__callback-title {
        font-size: 14px; }
      .footer__socials {
        float: none;
        text-align: center;
        padding: 0 0 33px 8px;
        margin: 0; }
      .footer__callback {
        margin: 0 0 15px; } }

.icon-callback-yellow {
  background-image: url(../img/sprite.png);
  background-position: -254px -381px;
  width: 24px;
  height: 24px; }

.icon-help {
  background-image: url(../img/sprite.png);
  background-position: -439px -328px;
  width: 24px;
  height: 24px; }

@media (max-width: 767px) {
  .news-page h1 {
    display: none; } }

.news__layout {
  font-size: 0;
  margin: 0 -20px; }
  .news__layout-item {
    width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px 63px; }

.news__title {
  font: 700 40px/44px 'Rotonda';
  color: #000;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 40px;
  letter-spacing: .05em; }

.news__item {
  font-size: 16px;
  line-height: 20px; }
  .news__item-preview {
    display: block;
    border-radius: 15px; }
    .news__item-preview-img {
      display: block;
      max-width: 100%; }
  .news__item-category {
    display: inline-block;
    vertical-align: top;
    color: #231f20;
    font-size: 16px;
    line-height: 24px;
    padding: 0 16px;
    border-radius: 3px;
    background: #ffcc00;
    margin: -13px 0 0 7px;
    position: relative; }
    .news__item-category:hover {
      opacity: 1; }
  .news__item-date {
    color: #7a7a7a;
    padding: 3px 0 5px; }
  .news__item-annot {
    font-size: 16px;
    line-height: 24px;
    color: #231f20;
    max-height: 72px;
    overflow: hidden; }
  .news__item-more {
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    color: #5cc9ff;
    text-decoration: underline;
    margin: 2px 0 0; }

.news--widget {
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden; }
  .news--widget .news__layout-item {
    padding-bottom: 44px; }
  .news--widget .news__action {
    font-size: 0;
    text-align: center; }
    .news--widget .news__action .btn {
      display: inline-block;
      vertical-align: top; }

@media (max-width: 1024px) {
  .news__layout {
    max-width: 654px;
    margin: 0 auto; }
    .news__layout-item {
      width: 50%;
      padding: 0 18px 26px; }
  .news__item-category {
    font-size: 14px;
    line-height: 22px;
    margin: -9px 0 0 7px; }
  .news__item-date {
    font-size: 14px;
    line-height: 18px; }
  .news__item-annot {
    font-size: 14px;
    line-height: 20px; }
  .news--widget {
    padding-top: 78px;
    padding-bottom: 25px; }
    .news--widget .news__title {
      font-size: 28px;
      line-height: 32px;
      padding-bottom: 25px; }
    .news--widget .news__layout-item {
      padding-bottom: 37px; }
      .news--widget .news__layout-item:nth-child(3) {
        display: none; } }

@media (max-width: 767px) {
  .news__layout {
    margin: 0 auto; }
    .news__layout-item {
      width: 100%;
      padding: 0 5px 20px; }
  .news--widget {
    padding-top: 50px; }
    .news--widget .news__title {
      font-size: 24px;
      line-height: 26px;
      padding-bottom: 25px; }
    .news--widget .news__layout-item:nth-child(3) {
      display: none; } }

.load-more {
  margin: 23px auto 125px;
  width: 166px;
  text-align: center;
  display: block; }
  .load-more__icon {
    padding: 0 0 16px; }
    .load-more__icon .icon-reload {
      -webkit-transition: .3s ease-in-out;
      transition: .3s ease-in-out; }
  .load-more__text {
    font: 700 24px/24px 'Rotonda';
    color: #ffcc00;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    letter-spacing: 0; }
  .load-more:hover .load-more__text {
    letter-spacing: .05em; }
  .load-more:hover .icon-reload {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  @media (max-width: 1024px) {
    .load-more {
      margin-top: 20px; }
      .load-more__icon {
        padding: 0 0 11px; }
      .load-more__text {
        font-size: 20px; } }
  @media (max-width: 767px) {
    .load-more {
      -webkit-transform: scale(0.7);
          -ms-transform: scale(0.7);
              transform: scale(0.7);
      margin: 15px auto 25px; } }

.icon-reload {
  background-image: url(../img/sprite.png);
  background-position: -281px -243px;
  width: 73px;
  height: 80px; }

.catalog {
  padding: 93px 0 0; }
  .catalog__layout {
    margin: 0 -6px;
    font-size: 0; }
    .catalog__layout:after {
      content: " ";
      display: block;
      clear: both; }
    .catalog__layout-item {
      display: inline-block;
      vertical-align: top;
      padding: 0 6px 62px; }
  .catalog__title {
    padding: 0 0 18px;
    text-align: center; }
  .catalog__intro {
    padding: 0 0 73px;
    font-size: 16px;
    line-height: 24px;
    color: #403737; }
  .catalog__child {
    width: 215px;
    display: block;
    text-align: center;
    margin: 0 auto; }
    .catalog__child-photo {
      display: inline-block;
      vertical-align: top;
      margin: 0 0 29px;
      width: 164px;
      height: 164px;
      position: relative; }  

      .catalog__child-photo:after {
        position: absolute;
        content: '';
        left: -16px;
        right: -16px;
        top: -16px;
        bottom: -16px;
        border: 16px solid #fff;
        border-radius: 50%;
        /*-webkit-box-shadow: 0 4px 24px rgba(102, 102, 102, 0.48);
                box-shadow: 0 4px 24px rgba(102, 102, 102, 0.48);*/ }
      .catalog__child-photo-img {
        display: block;
		margin: 0 auto;
        max-width: 100%;
        min-width: 100%;
        max-height: 100%;
        border-radius: 50%; }

		/*Oval image fix*/
		.catalog__child-photo-img.no-oval
		{
		    display: block;
		    min-width: 160px;
		    max-height: 160px;
		}

		@media screen and (max-width:768px){
		.catalog__child-photo-img.no-oval
			{
			    min-width: 80px;
			    max-height: 80px;
			}	
		}

		@media screen and (max-width:320px){
		.catalog__child-photo-img.no-oval
			{
			    min-width: 81px;
			    max-height: 81px;
			}	
		}

		/*Oval image fix*/

      .catalog__child-photo--square .catalog__child-photo-img {
        border-radius: 0; }
      .catalog__child-photo--square:after {
        left: -16px;
        right: -16px;
        top: -16px;
        bottom: -16px;
        border: 16px solid #fff;
        border-radius: 14px; }
		.profile .catalog__child-photo--square:after{
			left: -11px;
			right: -11px;
		}
    .catalog__child-name, .catalog__child-age {
      font-size: 24px;
      line-height: 24px;
      color: #373535;
      display: block; }
    .catalog__child-name {
      font-weight: 600;
      padding: 0 0 3px; }
    .catalog__child-age {
      font-size: 16px;
      font-style: italic; }
  .catalog__action {
    text-align: center; }
    .catalog__action .btn {
      display: inline-block;
      vertical-align: top; }
  .catalog--widget {
    height: 674px;
    background: url("../img/catalog-widget-bg.png") left top no-repeat;
    margin-bottom: -20px; }
    .catalog--widget .catalog__title {
      padding: 0 0 30px; }
    .catalog--widget .catalog__layout-item {
      padding: 0 35px 25px;
      float: left; }
    .catalog--widget .catalog__child {
      padding-top: 25px;
      max-width: none;
      width: 100%; }
      .catalog--widget .catalog__child-photo {
        margin: 0 0 29px;
        width: auto;
        height: auto; }
      .catalog--widget .catalog__child-name, .catalog--widget .catalog__child-age {
        color: #fff; }
  .catalog--profile {
    padding-top: 25px; }
    .catalog--profile .catalog__layout {
      margin: 0; }
      .catalog--profile .catalog__layout-item {
        width: 50%;
        padding: 0 25px; }
    .catalog--profile .catalog__child {
      width: 80%; }
      .catalog--profile .catalog__child-name {
        font-weight: 400;
        color: #373535;
        font-size: 20px;
        line-height: 22px; }
      .catalog--profile .catalog__child-photo {
        width: 98%;
    	height: auto;
    	padding-left: 2px;
    }
  @media (max-width: 1024px) {
    .catalog {
      padding-top: 52px; }
      .catalog__intro {
        font-size: 14px;
        line-height: 24px;
        padding: 0 0 54px; }
      .catalog__layout {
        text-align: center; }
        .catalog__layout-item {
          display: inline-block;
          vertical-align: top;
          float: none;
          padding: 0 14px 62px; }
      .catalog__child {
        width: 120px; }
        .catalog__child-photo {
          width: 93px;
          height: 94px;
          margin: 0 0 17px; }
          .catalog__child-photo:after {
            border-width: 12px;
            left: -12px;
            top: -12px;
            right: -12px;
            bottom: -12px; }
        .catalog__child-name, .catalog__child-age {
          font-size: 14px;
          line-height: 14px; }
        .catalog__child-age {
          font-size: 12px; }
      .catalog--widget {
        height: auto;
        padding: 49px 0 50px;
        background-size: cover; }
        .catalog--widget .catalog__title {
          padding: 0 0 6px; }
        .catalog--widget .catalog__layout-item {
          padding-bottom: 9px; }
          .catalog--widget .catalog__layout-item:last-child {
            display: block !important; }
        .catalog--widget .catalog__child-photo {
          margin: 0 0 16px; }
        .catalog--widget .catalog__child-age {
          font-size: 12px;
          line-height: 14px; } }
  @media (max-width: 767px) {
    .catalog__intro {
      font-size: 12px;
      line-height: 16px; }
    .catalog__layout-item {
      padding: 0 9px 25px; }
      .catalog__layout-item:last-child {
        display: none; }
    .catalog__child-age {
      font-size: 12px;
      line-height: 14px;
      font-weight: 400; } }

.search {
  background: #fff;
  padding: 25px 0 44px;
  margin-bottom: 50px;
  position: relative;
  margin-bottom: -5px; }
  .search:after {
    content: " ";
    display: block;
    clear: both; }
  .search:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -49px;
    height: 49px;
    background: url("../img/search-bg.png") center bottom repeat-x; }
  .search__title, .search__left, .search__right {
    float: left; }
  .search__title {
    font: 700 32px/32px "Rotonda";
    padding: 0 64px 0 0; }
  .search__left {
    max-width: 551px;
    padding: 0 135px 0 0; }
  .search__form {
    padding: 7px 0 0; }
    .search__form-region .js-autocomplete, .search__form-region input[type="text"], .search__form-city .js-autocomplete, .search__form-city input[type="text"] {
      width: 354px; }
    .search__form-city label {
      padding-top: 10px !important;
      font-size: 14px !important; }
    .search__form-age label {
      display: inline-block;
      vertical-align: top;
      padding-right: 7px !important;
      padding-bottom: 0 !important;
      line-height: 32px !important; }
    .search__form-age select, .search__form-age .ui-selectmenu-button {
      width: 70px;
      display: inline-block;
      vertical-align: top; }
  .search__code {
    text-align: center;
    clear: both;
    padding: 10px 0 24px;
    overflow: hidden; }
    .search__code-title {
      font: 700 24px/24px "Rotonda";
      display: inline-block;
      vertical-align: top;
      color: #ffcc00;
      position: relative; }
      .search__code-title:after, .search__code-title:before {
        position: absolute;
        content: '';
        height: 7px;
        width: 226px;
        top: 50%;
        margin-top: -3px;
        background: url("../img/form-code-title-bg.png") left top repeat-x; }
      .search__code-title:after {
        left: calc(100% + 11px); }
      .search__code-title:before {
        right: calc(100% + 11px); }
    .search__code-input[type="text"] {
      width: 130px;
      margin: 10px auto 0;
      text-align: center; }
  .search__action {
    text-align: center; }
    .search__action .btn {
      display: inline-block;
      vertical-align: top; }
  .search__bottom-title {
    display: none; }
  .search .form-row {
    padding: 0 0 29px; }
    .search .form-row label {
      font-size: 20px;
      line-height: 24px;
      padding: 0 0 9px;
      font-weight: 600; }
  @media (max-width: 1024px) {
    .search {
      padding: 20px 44px; }
      .search__title {
        float: none;
        font-size: 28px;
        line-height: 32px;
        padding: 12px 0 28px; }
      .search__left {
        width: 50%;
        padding-right: 20px; }
      .search__right {
        padding-left: 20px; }
      .search__form-age {
        margin-top: -14px; }
      .search__form-region .js-autocomplete, .search__form-region input[type="text"], .search__form-city .js-autocomplete, .search__form-city input[type="text"] {
        width: 250px; }
      .search__code-title {
        font-size: 20px;
        line-height: 22px; }
      .search .form-row {
        padding-bottom: 18px; }
        .search .form-row label {
          font-size: 16px;
          line-height: 20px;
          padding: 0 0 11px; } }
  @media (max-width: 767px) {
    .search {
      padding: 12px 15px 20px; }
      .search__container {
        max-width: 280px; }
      .search__title {
        font-size: 24px;
        line-height: 26px;
        padding: 0 0 2px; }
      .search__left {
        float: none;
        width: 100%;
        padding: 0; }
      .search__right {
        padding: 0;
        float: none; }
      .search__code {
        margin: -10px -30px 0;
        padding: 0 30p 20px; }
        .search__code-title {
          font-size: 17px;
          line-height: 19px; }
      .search-region .js-autocomplete, .search-region input[type="text"], .search-city .js-autocomplete, .search-city input[type="text"] {
        width: 100%; }
      .search__bottom-title {
        display: inline-block;
        vertical-align: top;
        font: 700 16px/18px "Rotonda";
        color: #ffcc00;
        position: relative;
        padding: 0 17px 0 0;
        margin: 25px 0; }
        .search__bottom-title:after {
          position: absolute;
          content: '';
          width: 0;
          height: 0;
          right: 0;
          top: 6px;
          border-style: solid;
          border-width: 7px 7px 0 7px;
          border-color: #ffcc00 transparent transparent transparent;
          -webkit-transition: .3s ease;
          transition: .3s ease; }
        .search__bottom-title.active:after {
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }
      .search__bottom-content {
        display: none; }
      .search .form-row {
        padding-bottom: 15px; }
        .search .form-row label {
          font-size: 14px;
          line-height: 14px;
          padding: 0 0 11px; } }

.checkboxes__layout-item {
  display: inline-block;
  vertical-align: top;
  padding: 10px 24px 0 0; }
  .checkboxes__layout-item:last-child {
    padding-right: 0; }

@media (max-width: 1024px) {
  .checkboxes__layout-item {
    padding: 0 8px 14px 0; } }

@media (max-width: 767px) {
  .checkboxes__layout-item {
    padding: 0 8px 12px 0; } }

.article-page {
  padding-top: 94px; }
  @media (max-width: 1024px) {
    .article-page {
      padding-top: 20px; } }
  @media (max-width: 767px) {
    .article-page {
      padding-top: 0; }
      .article-page .news {
        background: #fff;
        padding: 30px 0 40px;
        margin-bottom: -10px; }
        .article-page .news__title, .article-page .news__layout {
          display: none; } }

.article {
  padding: 20px 0;
  background: #fff;
  max-width: 1545px;
  padding: 20px 60px;
  margin: 0 auto; }
  .article__date {
    color: #7a7a7a;
    padding: 2px 0 33px;
    font-size: 17px; }
  .article__title {
    text-align: center;
    color: #ffcc00;
    padding: 0 0 53px; }
  .article__slider {
    max-width: 761px;
    margin: 0 auto;
    position: relative;
    padding: 0 0 13px; }
    .article__slider-fullscreen {
      position: absolute;
      top: 23px;
      right: 25px;
      z-index: 10; }
    .article__slider-list {
      max-height: 480px;
      overflow: hidden; }
    .article__slider-slide {
      border-radius: 20px;
      overflow: hidden;
      display: block; }
      .article__slider-slide-img {
        display: block;
        max-width: 100%; }
    .article__slider-thumb {
      text-align: center;
      padding: 10px 30px; }
      .article__slider-thumb-list {
        font-size: 0;
        height: 82px;
        overflow: hidden; }
        .article__slider-thumb-list-item {
          display: inline-block;
          vertical-align: top;
          padding: 0 5px; }
      .article__slider-thumb-link {
        display: block;
        border-radius: 4px;
        overflow: hidden; }
        .article__slider-thumb-link:after {
          position: absolute;
          content: '';
          border-color: transparent; }
        .article__slider-thumb-link img {
          display: block;
          max-width: 100%; }
    .article__slider .slick-arrow {
      position: absolute;
      top: 50%;
      margin-top: -18px;
      z-index: 20; }
      .article__slider .slick-arrow:after {
        position: absolute;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 19px 19px 19px 0;
        border-color: transparent #ffcc00 transparent transparent; }
      .article__slider .slick-arrow-prev {
        left: 12px; }
      .article__slider .slick-arrow-next {
        right: 12px;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
        margin-top: 20px; }
    .article__slider .slick-center .article__slider-thumb-link {
      position: relative; }
      .article__slider .slick-center .article__slider-thumb-link:after {
        position: absolute;
        content: '';
        left: 0;
        right: 0;
        top: 0;
        border-radius: 3px;
        bottom: 0;
        border: 3px solid #ffcc00;
        -webkit-transition: .2s ease .2s;
        transition: .2s ease .2s; }
  .article__container {
    max-width: 100%;
    padding: 0; }
  .article__breadcrumbs {
    padding-bottom: 20px; }
  .article__blockquote {
    width: 50%;
    height: 250px;
    float: left; }
  .article__socials {
    padding: 19px 0 22px; }
    .article__socials .socials__title {
      float: left;
      font-size: 20px;
      line-height: 32px;
      font-weight: 700;
      color: #494848;
      padding-right: 34px; }
    .article__socials .socials__layout {
      overflow: hidden; }
      .article__socials .socials__layout-item {
        padding: 0 8px; }
    .article__socials .socials__link {
      width: 32px;
      height: 32px; }
  .article h2 {
    padding: 11px 0 12px; }
  .article .icon-fullscreen {
    background-image: url(../img/sprite.png);
    background-position: -403px -328px;
    width: 31px;
    height: 31px; }
  @media (max-width: 1024px) {
    .article {
      padding: 20px 15px;
      margin: 0 10px; }
      .article__date {
        font-size: 13px;
        padding-top: 0; }
      .article__title {
        padding-bottom: 40px; }
      .article__socials {
        padding: 5px 0 0; }
        .article__socials .socials__title {
          float: left;
          font-size: 17px;
          padding-right: 27px; }
      .article__slider-thumb {
        padding: 10px 0; }
        .article__slider-thumb-list {
          height: 71px; }
        .article__slider-thumb-link {
          width: 115px;
          height: 71px; }
      .article h2 {
        padding-top: 0; } }
  @media (max-width: 767px) {
    .article {
      margin: 0; }
      .article__title {
        padding-bottom: 25px; }
      .article__slider-thumb {
        padding: 5px; }
        .article__slider-thumb-list {
          height: 51px; }
        .article__slider-thumb-link {
          width: 83px;
          height: 51px; }
      .article__blockquote {
        float: none;
        width: 280px;
        margin: 0 auto; } }

.breadcrumbs {
  font-size: 20px;
  line-height: 20px;
  color: #ffcc00;
  padding: 10px 0; }
  .breadcrumbs__layout {
    font-size: 0; }
    .breadcrumbs__layout-item {
      display: inline-block;
      vertical-align: top;
      position: relative;
      padding-right: 17px;
      font-size: 20px; }
      .breadcrumbs__layout-item:after {
        position: absolute;
        content: '>';
        right: 2px;
        top: 0;
        font-size: 20px;
        line-height: inherit;
        color: inherit; }
      .breadcrumbs__layout-item:last-child:after {
        display: none; }
  .breadcrumbs__link {
    display: block;
    color: #ffcc00;
    font-size: 20px; }
  @media (max-width: 1024px) {
    .breadcrumbs {
      font-size: 16px;
      line-height: 16px; }
      .breadcrumbs__layout-item {
        font-size: 16px; }
        .breadcrumbs__layout-item:after {
          font-size: 16px; }
      .breadcrumbs__link {
        font-size: 16px; } }
  @media (max-width: 767px) {
    .breadcrumbs {
      font-size: 14px;
      line-height: 16px; }
      .breadcrumbs__layout-item {
        font-size: 14px; }
        .breadcrumbs__layout-item:after {
          font-size: 14px;
          right: 4px; }
      .breadcrumbs__link {
        font-size: 14px; } }

.socials__layout {
  font-size: 0; }
  .socials__layout-item {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 8px; }
    .socials__layout-item:first-child {
      padding-left: 0; }

.socials__link {
  display: block;
  font-size: 14px;
  border-radius: 50%; }

.icon-vk {
  background-image: url(../img/sprite.png);
  background-position: -419px -243px;
  width: 32px;
  height: 32px; }

.icon-ok {
  background-image: url(../img/sprite.png);
  background-position: -255px -328px;
  width: 32px;
  height: 32px; }

.icon-fb {
  background-image: url(../img/sprite.png);
  background-position: -329px -328px;
  width: 32px;
  height: 32px; }

.main__top {
  background: #fff;
  position: relative;
  overflow: hidden; }
  .main__top:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    right: 0;
    height: 43px;
    background: url("../img/main-middle-bg.png") left bottom repeat-x; }
  .main__top-left {
    width: 75.625%;
    float: left; }
  .main__top-right {
    overflow: hidden;
    padding: 134px 0 0; }

.main__middle {
  padding: 82px 0 0; }

.main__bottom {
  background: #e7f9ff url("../img/main-bottom-bg.png") center bottom no-repeat;
  padding: 0 0 40px;
  background-size: contain; }

.main__counters {
  padding: 0 0 67px; }
  .main__counters-left {
    width: 50%;
    padding-right: 20px;
    float: left; }
  .main__counters-right {
    overflow: hidden;
    padding-left: 20px; }
@media (max-width: 1366px) {
	.main__top-right {
		padding: 10px 0 0;
	}
}
@media (max-width: 1024px) {
  .main__top:after {
    height: 23px;
    background-size: auto 100%; }
  .main__top-left {
    width: 70.05208%; }
  .main__top-right {
    padding: 30px 0 0; }
  .main__counters {
    padding: 0 0 31px; }
    .main__counters-left {
      padding-right: 5px; }
    .main__counters-right {
      padding-left: 5px; }
  .main__middle {
    padding: 11px 0 0; }
  .main__bottom {
    padding-bottom: 0; } }

@media (max-width: 767px) {
  .main__top {
    background-color: transparent; }
    .main__top:after {
      display: none; }
    .main__top-left {
      position: relative;
      float: none;
      width: 100%; }
      .main__top-left:after {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        right: 0;
        height: 23px;
        background: url(../img/main-middle-bg.png) left bottom repeat-x;
        background-size: auto 100%; }
    .main__top-right {
      padding: 0; }
  .main__counters-left {
    float: none;
    width: 100%;
    padding: 0 0 32px; } }

.banner__item {
  height: 750px;
  cursor: pointer;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
@media (max-width: 1366px) {
	.banner__item {
		height: 570px;
	}
}
@media (max-width: 1024px) {
  .banner__item {
    height: 280px; } }

@media (max-width: 767px) {
  .banner__item, .banner__item video{
    height: 230px;
    background-position: center top; }
}
@media (max-width: 410px) {
	.banner__item video{
		height: auto;
	}
}
.promo {
  max-width: 306px;
  padding: 0 10px;
  color: #231f20;
  margin: 0 auto;
  text-align: center;
  overflow: hidden; }
  .promo__photo {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 0; }
    .promo__photo:after {
      position: absolute;
      content: '';
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      background: #ffcc00;
      border-radius: 2px; }
    .promo__photo img {
      display: inline-block;
      vertical-align: top; }
  .promo__status {
    font-size: 16px;
    line-height: 18px;
    font-style: italic;
    padding: 16px 0 3px; }
  .promo__name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 0 0 13px; }
  .promo__quote {
    font-size: 16px;
    line-height: 24px;
    font-style: italic;
    max-height: 216px;
    overflow: hidden; }
  @media (max-width: 1024px) {
    .promo {
      width: 230px; }
      .promo__photo {
        width: 175px; }
        .promo__photo img {
          max-width: 100%; }
      .promo__status {
        font-size: 16px;
        line-height: 18px;
        padding: 10px 0 3px; }
      .promo__name {
        font-size: 18px;
        line-height: 24px; }
      .promo__quote {
        display: none; } }
  @media (max-width: 767px) {
    .promo {
      background-color: transparent;
      padding: 25px 0 15px; }
      .promo__photo {
        width: 119px; }
      .promo__status {
        font-size: 14px; }
      .promo__name {
        font-size: 16px; } }

.counter {
  background: #fff;
  padding: 30px;
  border-radius: 15px; }
  .counter:after {
    content: " ";
    display: block;
    clear: both; }
  .counter__title {
    font: 700 32px/32px "Rotonda";
    padding: 0 0 20px;
    text-align: center; }
  .counter__img {
    float: left;
    padding-right: 40px; }
    .counter__img img {
      display: block; }
    .counter__img--childs {
      /*padding-top: 22px;*/ }
  .counter__inner {
    overflow: hidden;
    padding: 54px 0 0; }
  .counter__period {
    position: relative;
    top: -19px;
    left: 0;
    right: 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center; }
  .counter__total {
    font-size: 0;
    text-align: center;
    padding: 16px 8px;
    background: #ffcc00;
    width: 260px;
    border-radius: 8px;
    margin: 0 0 24px;
    position: relative; }
    .counter__total-item {
      display: inline-block;
      vertical-align: top;
      margin: 0 8px;
      width: 41px;
      height: 56px;
      font-size: 54px;
      color: #ff4c05;
      line-height: 56px;
      text-align: center;
      background: url("../img/counter-bg.png") left top no-repeat;
      background-size: cover;
      border-radius: 2px;
      overflow: hidden; }
  @media (max-width: 1150px) {
    .counter {
      padding: 17px; }
      .counter__title {
        font-size: 20px;
        line-height: 24px;
        padding: 0 0 11px; }
      .counter__img {
        padding-right: 27px; }
        .counter__img img {
          width: 128px; }
        .counter__img--childs {
          padding-top: 9px; }
      .counter__inner {
        padding: 32px 0 0; }
      .counter__period {
        font-size: 14px;
        line-height: 14px;
        top: -23px; }
      .counter__total {
        padding: 10px 5px;
        width: auto;
        margin: 0 0 9px; }
        .counter__total-item {
          width: 28px;
          height: 36px;
          margin: 0 5px;
          font-size: 34px;
          line-height: 36px; }
      .counter .btn {
        width: 100%;
        min-width: auto; } }
  @media (max-width: 767px) {
    .counter {
      padding: 15px; }
      .counter__title {
        font-size: 16px;
        line-height: 20px;
        padding: 0 0 9px; }
      .counter__img {
        padding-right: 10px; }
        .counter__img img {
          width: 108px; }
        .counter__img--childs {
          padding-top: 13px;
          padding-right: 15px; }
      .counter__total {
        padding: 8px; }
        .counter__total-item {
          width: 24px;
          height: 30px;
          line-height: 30px;
          font-size: 28px;
          margin: 0 3px;
          font-weight: 600; }
      .counter__inner {
        padding: 24px 0 0; }
      .counter__period {
        font-size: 11px; }
      .counter .btn {
        font-size: 12px; } }

.partners__title, .initiators__title, .map__title {
  font: 700 40px/44px "Rotonda";
  color: #231f20;
  text-transform: uppercase;
  text-align: center;
  padding: 0 0 40px;
  letter-spacing: .05em; }
  @media (max-width: 1024px) {
    .partners__title, .initiators__title, .map__title {
      font-size: 28px;
      line-height: 32px;
      padding: 0 0 25px; } }
  @media (max-width: 767px) {
    .partners__title, .initiators__title, .map__title {
      font-size: 24px;
      line-height: 26px; } }

.partners {
  padding: 0 0 40px;
  overflow: hidden; }
  .partners__list {
  	text-align: center;
    font-size: 0;
    margin: 0 -20px; }
    .partners__list-item {
      display: inline-block;
      vertical-align: top;
      padding: 0 20px;
      width: 20%; }
  .partners__item {
    height: 128px;
    background: #fff;
    border-radius: 15px;
    font-size: 0; }
    .partners__item .inner {
      padding: 10px 15px; }
    .partners__item img {
      display: inline-block;
      vertical-align: middle;
      max-width: 100%; }
  @media (max-width: 1024px) {
    .partners__list {
      margin: 0 -15px; }
    .partners__item {
      height: 77px;
      min-height: 77px\9;
      height: auto\9; }
      .partners__item img {
        height: 40%;
        max-height: 60px;
        width: 100%\9;
        max-height: none\9;
        height: auto\9; } }
  @media (max-width: 767px) {
    .partners__list {
      font-size: 0;
      margin: 0; }
      .partners__list-item {
        padding: 0 0 20px;
        width: 100%; }
    .partners__item img {
      height: 60%; } }

.initiators {
  padding: 73px 0 102px;
  margin: 70px 0 109px;
  background: #fff;
  position: relative;
  overflow: hidden; }
  .initiators:before, .initiators:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 43px;
    background: url("../img/initiators-bg.png") left top repeat-x; }
  .initiators:before {
    top: -43px; }
  .initiators:after {
    bottom: -43px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .initiators__list {
    font-size: 0; }
    .initiators__list-item {
      display: inline-block;
      vertical-align: top;
      width: 33.33%;
      padding: 0 10px; }
  .initiators__link {
    height: 120px;
    display: block; }
    .initiators__link-img {
      display: inline-block;
      vertical-align: middle; }
  @media (max-width: 1024px) {
    .initiators {
      padding: 10px 0 12px;
      margin-bottom: 80px; }
      .initiators__title {
        padding-bottom: 5px; }
      .initiators__link {
        -webkit-transform: scale(0.7);
            -ms-transform: scale(0.7);
                transform: scale(0.7); } }
  @media (max-width: 767px) {
    .initiators {
      padding: 53px 0 22px; }
      .initiators:before, .initiators:after {
        height: 23px;
        background-size: auto 100%; }
      .initiators:before {
        top: -23px; }
      .initiators:after {
        bottom: -23px; }
      .initiators__list-item {
        width: 100%;
        padding: 0 0 20px; } }

.map {
  text-align: center;
  padding-bottom: 75px; }
  .map__preview {
    font-size: 0;
    display: inline-block;
    vertical-align: top;
    position: relative; }
    .map__preview-img {
      display: inline-block;
      vertical-align: top;
      max-width: 100%; }
  .map__ukraine {
    width: 744px;
    height: 500px; }
    .map__ukraine path, .map__ukraine polygon {
      cursor: pointer; }
      .map__ukraine path:hover, .map__ukraine polygon:hover {
        fill: #c59c05; }
  @media (max-width: 1024px) {
    .map {
      display: none; } }

[class*="balloon-"] {
  width: 336px;
  min-height: 146px;
  background: #fff;
  position: absolute;
  top: -150px;
  padding: 34px 20px 20px 48px;
  text-align: left;
  border-radius: 50px 50px 50px 0;
  display: none; }
  .balloon__title {
    font-size: 18px;
    line-height: 20px;
    color: #231f20;
    font-weight: 600;
    padding: 0 0 15px;
    margin: 0 0 10px;
    background: url("../img/baloon-title-bg.png") left bottom repeat-x;
    display: inline-block;
    vertical-align: top; }
  .balloon__content {
    font-size: 16px;
    line-height: 24px;
    color: #231f20; }

.color-red {
  color: #e74c3c; }

.profile-page {
  padding: 35px 0 0; }
  .profile-page .breadcrumbs {
    padding: 10px 0 22px; }
  @media (max-width: 1024px) {
    .profile-page .breadcrumbs {
      display: none; } }

.profile {
  color: #000;
  padding: 0 0 168px; }
  .profile:after {
    content: " ";
    display: block;
    clear: both; }
  .profile__top {
    padding: 0 0 58px;
    text-align: center;
    position: relative; }
  .profile__left {
    width: 455px;
    float: left;
    padding: 0 76px 0 0; }
  .profile__right {
    overflow: hidden; }
  .profile__slider {
    padding: 0 0 10px; }
    .profile__slider-list {
      height: 240px;
      overflow: hidden;
      font-size: 0; }
    .profile__slider-link {
      display: block;
      border-radius: 0px;
      overflow: hidden; }
      .profile__slider-link img {
		  margin: 0 auto;
        display: block;
        max-width: 100%; }
  .profile__thumbnail {
    padding: 0 0 10px; }
    .profile__thumbnail-list {
      font-size: 0; }
      .profile__thumbnail-list-item {
        display: inline-block;
        vertical-align: top;
        padding: 0 4px; }
    .profile__thumbnail-link {
      display: block;
      height: 156px;
      width: 120px; }
      .profile__thumbnail-link img {
        display: block;
        max-width: 100%; }
  .profile__region {
    position: absolute;
    right: 8px;
    top: 5px; }
  .profile__name {
    padding: 0 0 10px; }
  .profile__age {
    font-size: 19px;
    line-height: 19px;
    font-style: italic; }
  .profile__info {
    padding: 7px 0 0; }
    .profile__info-title {
      font: 700 24px/24px "Rotonda";
      padding: 0 0 46px;
      text-transform: uppercase; }
    .profile__info-list {
      font-size: 20px;
      line-height: 28px; }
      .profile__info-list-item {
        padding: 0 0 20px; }
        .profile__info-list-item:after {
          content: " ";
          display: block;
          clear: both; }
      .profile__info-list-title {
        width: 47%;
        float: left;
        font-weight: 700;
        padding-right: 5px; }
      .profile__info-list-data {
        overflow: hidden; }
        .profile__info-list-data span {
          display: block; }
  .profile__video-title {
    text-decoration: underline;
    color: #ffcc00;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    padding: 0 18px 20px 0;
    position: relative;
    display: inline-block;
    vertical-align: top; }
    .profile__video-title span {
      text-decoration: underline; }
    .profile__video-title:after {
      position: absolute;
      content: '';
      right: 0;
      top: 8px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 6.5px 0 6.5px;
      border-color: #ffcc00 transparent transparent transparent;
      -webkit-transition: .2s ease;
      transition: .2s ease; }
    .profile__video-title.active:after {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  .profile__video-content {
    display: none; }
  .profile__catalog {
    position: relative; }
  .profile__arrow {
    position: absolute;
    right: -62px;
    top: -183px; }
    .profile__arrow img {
      display: block; }
  @media (max-width: 1024px) {
    .profile {
      padding: 0 0 53px; }
      .profile__left {
        width: 349px;
        padding-right: 56px; }
      .profile__top {
        padding: 0 0 49px; }
      .profile__name {
        font-size: 20px;
        line-height: 24px; }
      .profile__age {
        font-size: 14px;
        line-height: 14px; }
      .profile__slider-list {
        height: 186px; }
      .profile__thumbnail-list {
        height: 59px;
        overflow: hidden; }
      .profile__thumbnail-link {
        width: 93px;
        height: 59px; }
      .profile__info {
        padding: 2px 0 0; }
        .profile__info-title {
          font-size: 16px;
          line-height: 20px;
          padding: 0 0 35px; }
        .profile__info-list {
          font-size: 14px;
          line-height: 21px; }
          .profile__info-list-title {
            width: 43%; }
          .profile__info-list-item {
            padding: 0 0 17px; }
      .profile__video-title {
        font-size: 14px;
        line-height: 14px;
        padding-bottom: 17px; }
        .profile__video-title:after {
          top: 5px; } }
  @media (max-width: 767px) {
    .profile__catalog {
      display: none; }
    .profile__left {
      float: none;
      width: 100%;
      padding: 0 0 20px; }
    .profile__top {
      padding-bottom: 35px; }
    .profile__name {
      font-size: 24px;
      padding: 8px 0 7px; }
    .profile__region {
      width: 107px;
      top: 392px;
      right: 0; }
      .profile__region img {
        max-width: 100%; }
    .profile__info-title {
      text-align: center;
      font-size: 14px;
      line-height: 16px;
      padding: 0 0 31px; }
    .profile__info-list {
      line-height: 18px; }
      .profile__info-list-item {
        padding: 0 0 14px; } }

.slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  z-index: 20; }
  .slick-arrow:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 19px 19px 19px 0;
    border-color: transparent #ffcc00 transparent transparent; }
  .slick-arrow-prev {
    left: 12px; }
  .slick-arrow-next {
    right: 12px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-top: 20px; }

.slick-center .article__slider-thumb-link,
.slick-center .profile__thumbnail-link {
  position: relative; }
  .slick-center .article__slider-thumb-link:after,
  .slick-center .profile__thumbnail-link:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    border-radius: 3px;
    bottom: 0;
    border: 3px solid #ffcc00;
    -webkit-transition: .2s ease .2s;
    transition: .2s ease .2s; }

.slick-dots {
  font-size: 0;
  line-height: 0;
  text-align: center;
  padding: 0 0 48px; }
  .slick-dots li {
    display: inline-block;
    vertical-align: top;
    padding: 0 4px; }
    .slick-dots li button {
      padding: 0;
      min-width: 12px;
      font-size: 0;
      line-height: 0;
      width: 12px;
      height: 12px;
      background-color: transparent;
      border: 1px solid #fff;
      border-radius: 50%;
      position: relative;}
      .slick-dots li button:after {
        position: absolute;
        content: '';
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        left: 1px;
        top: 1px;
        opacity: 0; }
    .slick-dots li.slick-active button:after {
      opacity: 1; }

@media (max-width: 1024px) {
  .slick-dots {
    padding: 0 0 19px; } }

@media (max-width: 767px) {
  .slick-arrow-prev {
    left: 5px !important; }
  .slick-arrow-next {
    right: 5px !important; } }

.submenu {
  background: #ffcc00;
  border-top: 1px solid #fff;
  padding: 10px 0; }
  .submenu__nav-layout {
    font-size: 0;
    text-align: center;
    display: table;
    width: 100%;
    table-layout: fixed; }
    .submenu__nav-layout-item {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
      padding: 0 10px; }
  .submenu__nav-link {
    display: inline-block;
    vertical-align: top; }
    .submenu__nav-link--active {
      color: #231f20;
      position: relative; }
      .submenu__nav-link--active:after {
        position: absolute;
        content: '';
        left: 0;
        bottom: -24px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 24px 24px 0 0;
        border-color: #ffcc00 transparent transparent transparent; }
  @media (max-width: 1024px) {
    .submenu__nav-link {
      font-size: 14px;
      line-height: 18px; } }
  @media (max-width: 767px) {
    .submenu {
      background-color: transparent; }
      .submenu__nav-layout {
        display: block; }
        .submenu__nav-layout-item {
          display: block;
          padding: 0 0 14px; }
      .submenu__nav-link {
        font-size: 16px;
        line-height: 24px;
        color: #231f20; }
        .submenu__nav-link--active {
          color: #ffcc00; }
          .submenu__nav-link--active:after {
            display: none; } }

.icon-vk-brown {
  width: 32px;
  height: 32px; }
.icon-inst-brown{
	width: 32px;
	height: 32px;
	background-image: url("../img/instagram-logo_b.png");
    background-position: 0 0;
}
.fancybox-skin {
  border-radius: 15px;
  background-color: transparent; }

.popup-gallery .fancybox-inner {
  border-radius: 15px;
  overflow: hidden !important; }

.fancybox-overlay {
  background: rgba(0, 0, 0, 0.5); }

#fancybox-thumbs {
  background: #000; }

/*MAIN ANIMATIONS*/

.main__counters-left{
  overflow: hidden;
}

.heart,.leaf{
      position: absolute;
      z-index: 90;
      width:40px;
      bottom:-100px;
      transition: bottom 2s cubic-bezier(0, 0, 1, 1);
      display: none;
    }

#heartbox,#leafbox{
  position: relative;
  z-index: 89;
}
#happy,#lonely,.counter__title,.counter__inner{
  position: relative;
  z-index: 100;
}

#happy,#lonely{
  width:192px;
}

#mom{
    width:78px;
    position: absolute;
    top: 32px;
    left: 77px;
    z-index: 99;
    -webkit-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
}

#boy1{
    width:78px;
    position: absolute;
    top: 80px;
    left:12px;
    z-index: 101;
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}

#boy2{
  width:78px;
  position: absolute;
  z-index: 101;
  top: 98px;
  right: 42px;
  -webkit-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
}


/*ABOUTPAGE */
.about_page{
  margin-bottom: 112px;
}

.quote{
    line-height: 24px;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    color: #7b7b7b;
}

.quote:after, .quote:before {
  display: block;
  content: '';
  height: 5px;
  width: 192px;
  background: url(../img/icons/quoteline.png) center no-repeat;
  margin: 16px auto; 
}

.about-left{
  margin-top: 16px;
  float: right;
  width: 75%;
}

.about-right{
    float: right;
    width: 75%;
    margin-top: 40px;
}

img.left{
  float: left;
}
img.right{
  float: right;
}

.about_page .article__socials{
  padding-bottom: 100px;
}

.about_page .article__socials .socials__layout{
    text-align: left;
}

.about_page .article__socials .socials__title{
  margin-left: 25%;
}

.about_page .subtitle{
  text-align: center;
  color:#828181;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  padding-bottom: 32px;
}

.about_page h1{
  padding-top: 40px;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media screen and (max-width:768px){
  /*ABOUPAGE MOBILE*/
  .quote{
    width:100%;
  }

  .about_page .subtitle{
    padding-bottom: 0;
  }

  .about-right, .about-left{
    float: none;
    width: 100%;
    margin-top: 20px;
  }

  img.left, img.right{
    width:210px;
  }

  img.left{
    margin-right:20px;
  }

  .about_page .article__socials .socials__title{
    margin-left: 0;
  }

  .about_page .article__socials{
    padding-bottom: 40px;
  }

  .about_page{
    margin-bottom: 40px;
  }
  /*COUNTERS ON MAIN*/
  .counter__img {
    float: none;
  }

  
  #happy, #lonely{
    width:100%;
  }

  #boy1,#boy2,#mom{
    width:128px;
    display: none;
  }

  #boy1{
    top:125px;
  }

  #boy2{
    top: 150px;
    right: 22px;
  }

  #mom{
    top: 47px;
    left: 117px;
  }

}

@media screen and (max-width:414px){
  .about_page{
    margin-bottom: -12px;
  }

  .about_page .subtitle {
    font-size: 16px;
    padding-top: 10px;
  }

  .quote{
    width:100%;
    line-height: 20px;
    font-size: 16px;
  }

  img.left, img.right{
    float: none;
    width:236px;
    margin: 0 auto;
    display: block;
  }

  .about_page .article__socials .socials__title{
    font-size: 16px;
    line-height: 20px;
    padding: 0;
  }

  .about_page .article__socials .socials__layout{
    width:100%;
    text-align: center;
    padding-top: 10px;
  }

  .flip-clock-wrapper ul{
    margin:5px;
  }

  .header__hamburger hr{
    margin: 5px auto;
  }

  #happy,#lonely{
    width: 192px;
    margin: auto;
  }

  #mom,#boy1,#boy2 {
    width: 78px;
    display: none;

  }

  #mom{
    left: 107px;
    top:32px;
  }

  #boy1{
    left: 35px;
    top: 80px;
  }

  #boy2{
    right: 35px;
    top:98px;
  }
}

.footer-pet{
  margin-left: 20px;
}

.article img{
  max-width: 100%;
  height: auto;
}