/*! 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.
 */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:400,500,700,900&subset=cyrillic");
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * 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,
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 variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

td,
th {
  padding: 0; }

.guarantee ul, .meet ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after, .container:after, .inlove:after {
  content: '';
  display: block;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.guarantee ul, .meet ul {
  font-size: 0;
  line-height: 0;
  letter-spacing: -5px; }
  .guarantee ul > *, .meet ul > * {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: normal; }
    @media (max-width: 767px) {
      .guarantee ul > *, .meet ul > * {
        font-size: 16px;
        line-height: 19px; } }
    @media (max-width: 479px) {
      .guarantee ul > *, .meet ul > * {
        font-size: 14px;
        line-height: 17px; } }

html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit;
  outline: none; }

* {
  max-height: 1000000px; }

body {
  color: #393b3e;
  background: #fff;
  font: 16px/1.2 "Roboto", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: auto; }

.gm-style img {
  max-width: none; }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  margin: 0 0 0.5em;
  color: inherit; }
  h1.blend, .h1.blend,
  h2.blend, .h2.blend,
  h3.blend, .h3.blend,
  h4.blend, .h4.blend,
  h5.blend, .h5.blend,
  h6.blend, .h6.blend,
  .h.blend {
    font-size: 56px;
    line-height: 61px;
    margin-bottom: 64px;
    text-align: center;
    text-transform: uppercase;
    padding: 59px 10px 55px;
    background: url(../images/pattern-02.png) no-repeat 50% 50%;
    background-blend-mode: luminosity; }
    @media (max-width: 950px) {
      h1.blend, .h1.blend,
      h2.blend, .h2.blend,
      h3.blend, .h3.blend,
      h4.blend, .h4.blend,
      h5.blend, .h5.blend,
      h6.blend, .h6.blend,
      .h.blend {
        font-size: 46px;
        line-height: 50px;
        margin-bottom: 45px;
        padding: 42px 10px 40px;
        background-size: 52% auto; } }
    @media (max-width: 760px) {
      h1.blend, .h1.blend,
      h2.blend, .h2.blend,
      h3.blend, .h3.blend,
      h4.blend, .h4.blend,
      h5.blend, .h5.blend,
      h6.blend, .h6.blend,
      .h.blend {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 26px;
        padding: 30px 10px 28px; } }
    @media (max-width: 400px) {
      h1.blend, .h1.blend,
      h2.blend, .h2.blend,
      h3.blend, .h3.blend,
      h4.blend, .h4.blend,
      h5.blend, .h5.blend,
      h6.blend, .h6.blend,
      .h.blend {
        font-size: 26px;
        line-height: 29px;
        padding: 16px 10px 14px; } }

h1, .h1 {
  font-size: 30px; }

h2, .h2 {
  font-size: 27px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 21px; }

h5, .h5 {
  font-size: 17px; }

h6, .h6 {
  font-size: 15px; }

p {
  margin: 0 0 1em; }

a {
  color: #39f; }
  a:hover, a:focus {
    text-decoration: none; }

form,
fieldset {
  margin: 0;
  padding: 0;
  border: none; }

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  border: 1px solid #999;
  padding: 0.4em 0.7em; }
  input[type='text']:focus,
  input[type='tel']:focus,
  input[type='email']:focus,
  input[type='search']:focus,
  input[type='password']:focus,
  textarea:focus {
    /* border-color: $form-element-focus-border-color; */
    outline: none; }
  input[type='text']::-webkit-input-placeholder,
  input[type='tel']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder,
  input[type='search']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #999; }
  input[type='text']::-moz-placeholder,
  input[type='tel']::-moz-placeholder,
  input[type='email']::-moz-placeholder,
  input[type='search']::-moz-placeholder,
  input[type='password']::-moz-placeholder,
  textarea::-moz-placeholder {
    opacity: 1;
    color: #999; }
  input[type='text']:-moz-placeholder,
  input[type='tel']:-moz-placeholder,
  input[type='email']:-moz-placeholder,
  input[type='search']:-moz-placeholder,
  input[type='password']:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #999; }
  input[type='text']:-ms-input-placeholder,
  input[type='tel']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='search']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #999; }
  input[type='text'].placeholder,
  input[type='tel'].placeholder,
  input[type='email'].placeholder,
  input[type='search'].placeholder,
  input[type='password'].placeholder,
  textarea.placeholder {
    color: #999; }

select {
  -webkit-border-radius: 0; }

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

button,
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='submit'] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  cursor: pointer; }

.button {
  border: none;
  outline: none;
  text-decoration: none;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  height: 76px;
  text-align: center;
  color: #fff;
  font: bold 20px/68px "Roboto", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  padding: 0 50px;
  box-shadow: inset 0 -4px 0 #da741c, inset 0 -1px 2px #ed9b2b;
  border-radius: 3px;
  background: #ffc20e;
  background: -webkit-linear-gradient(top, #ffc20e 0%, #f58220 100%);
  background: linear-gradient(to bottom, #ffc20e 0%, #f58220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc20e', endColorstr='#f58220',GradientType=0 ); }
.button[disabled] {
  opacity: 0.5;
}
.button[disabled]:hover {
  background: -webkit-linear-gradient(top, #ffc20e 0%, #f58220 100%);
  background: linear-gradient(to bottom, #ffc20e 0%, #f58220 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc20e', endColorstr='#f58220',GradientType=0 );
}
  .button:hover {
    background: #ffd400;
    background: -webkit-linear-gradient(top, #ffd400 0%, #f99d1c 100%);
    background: linear-gradient(to bottom, #ffd400 0%, #f99d1c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd400', endColorstr='#f99d1c',GradientType=0 ); }
  .button:active {
    background: #f58220;
    background: -webkit-linear-gradient(top, #f58220 0%, #ffc20e 100%);
    background: linear-gradient(to bottom, #f58220 0%, #ffc20e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f58220', endColorstr='#ffc20e',GradientType=0 );
    box-shadow: inset 0 -2px 0 #da741c, inset 0 -1px 2px #ed9b2b; }
  .button em {
    font-style: normal; }
  @media (max-width: 900px) {
    .button {
      height: 54px;
      font-size: 18px;
      line-height: 46px;
      padding: 0 20px; } }
  @media (max-width: 500px) {
    .button {
      padding: 0 12px;
      height: 44px;
      font-size: 14px;
      line-height: 39px; }
      .button em {
        display: none; } }

.input {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  border: 2px solid #fff;
  height: 76px;
  padding: 22px 30px; }
  .input input {
    display: block;
    width: 100%;
    background-color: transparent;
    padding: 0 30px 0 0;
    margin: 0;
    border: none;
    font: 20px/20px "Roboto", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    color: #393b3e; }
    .input input::-webkit-input-placeholder {
      color: #393b3e; }
    .input input::-moz-placeholder {
      opacity: 1;
      color: #393b3e; }
    .input input:-moz-placeholder {
      color: #393b3e; }
    .input input:-ms-input-placeholder {
      color: #393b3e; }
    .input input.placeholder {
      color: #393b3e; }
    .input input:focus::-webkit-input-placeholder {
      color: transparent; }
    .input input:focus::-moz-placeholder {
      opacity: 1;
      color: transparent; }
    .input input:focus:-moz-placeholder {
      color: transparent; }
    .input input:focus:-ms-input-placeholder {
      color: transparent; }
    .input input:focus.placeholder {
      color: transparent; }
  .input:after {
    content: '';
    position: absolute;
    top: 28px;
    right: 23px;
    bottom: 0;
    background: url(../images/mail.png) no-repeat 0 0/34px 34px;
    width: 34px;
    height: 17px;
    pointer-events: none; }
  .input .error-text {
    display: none;
    position: absolute;
    bottom: -22px;
    right: 0;
    color: #f00;
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    letter-spacing: normal; }
  .input.error {
    border-color: #f00; }
    .input.error:after {
      background-position: 0 -17px; }
    .input.error .error-text {
      display: block; }
  @media (max-width: 900px) {
    .input .error-text {
      font-size: 12px;
    }
    .input {
      height: 55px;
      padding: 12px 18px; }
      .input:after {
        top: 16px;
        right: 18px; }
      .input input {
        font-size: 18px;
        line-height: 18px; } }
  @media (max-width: 500px) {
    .input {
      height: 44px;
      padding: 10px 14px; }
      .input input {
        font-size: 14px;
        line-height: 14px; }
      .input:after {
        top: 10px;
        right: 10px; } }

.subscribe-form {
  font-size: 0;
  line-height: 0;
  letter-spacing: -5px;
  margin: 0 auto;
  max-width: 974px; }
  .subscribe-form .input, .subscribe-form .button {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 52px);
    margin: 0 26px; }
    @media (max-width: 640px) {
      .subscribe-form .input, .subscribe-form .button {
        display: block;
        width: 100%;
        margin: 0 0 16px; } }
  .subscribe-form .button {
    padding: 0 0 4px;
    /* @include media('<=900px') {padding-bottom: 5px;} */ }
  @media (max-width: 640px) {
    .subscribe-form {
      max-width: 360px; } }

#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  padding-right: 1px; }
  @media (max-width: 1617px) {
    #wrapper {
      padding-right: 0 !important; } }

.container {
  position: relative;
  max-width: 1190px;
  min-height: 120px;
  padding: 0 10px;
  margin: 0 auto; }
  .container a:not(.button) {
    color: inherit;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out; }
    .container a:not(.button):hover {
      opacity: .8; }

#header {
  padding: 53px 0 82px;
  text-align: center;
  background: url(../images/pattern-01.jpg) repeat 50% 0%; }
  #header .container {
    max-width: 770px; }
  #header .h1 {
    font-size: 80px;
    line-height: 95px;
    margin-bottom: 39px; }
    @media (max-width: 950px) {
      #header .h1 {
        font-size: 62px;
        line-height: 75px;
        margin-bottom: 28px; } }
    @media (max-width: 760px) {
      #header .h1 {
        font-size: 46px;
        line-height: 50px;
        margin-bottom: 18px; } }
    @media (max-width: 640px) {
      #header .h1 {
        font-size: 36px;
        line-height: 39px;
        margin-bottom: 12px; } }
    @media (max-width: 360px) {
      #header .h1 {
        font-size: 32px;
        line-height: 34px; } }
  #header span {
    display: block;
    font-size: 23px;
    line-height: 26px;
    font-weight: 500; }
    @media (max-width: 950px) {
      #header span {
        font-size: 21px;
        line-height: 24px; } }
    @media (max-width: 760px) {
      #header span {
        font-size: 18px;
        line-height: 21px; } }
    @media (max-width: 360px) {
      #header span {
        font-size: 16px;
        line-height: 19px; } }
  @media (max-width: 950px) {
    #header {
      padding: 30px 0 40px; } }
  @media (max-width: 760px) {
    #header {
      padding: 20px 0 24px; } }

.logo {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  display: block;
  background: url(../images/logo.png) no-repeat 0 0/100% auto;
  width: 230px;
  height: 60px;
  margin: 0 auto 25px; }
  .logo a {
    display: block;
    height: 100%; }
  @media (max-width: 950px) {
    .logo {
      width: 160px;
      height: 42px; } }
  @media (max-width: 760px) {
    .logo {
      width: 130px;
      height: 34px;
      margin-bottom: 16px; } }
  @media (max-width: 640px) {
    .logo {
      width: 100px;
      height: 27px; } }

.inlove {
  margin: 0 -15px;
  padding: 43px 0; }
  .inlove .item {
    float: left;
    width: calc(50% - 30px);
    margin: 0 15px 20px;
    text-align: center; }
    .inlove .item.big {
      float: none;
      width: 100%;
      max-width: 930px;
      margin: 0 auto 108px;
      display: table; }
      .inlove .item.big .title {
        display: table-header-group;
        font-size: 41px;
        line-height: 50px;
        margin-bottom: 0; }
        .inlove .item.big .title a {
          display: block;
          margin: 0 auto 39px;
          /* max-width: 80%; */
          padding: 0 20px; }
        @media (max-width: 950px) {
          .inlove .item.big .title {
            font-size: 34px;
            line-height: 39px; }
            .inlove .item.big .title a {
              margin-bottom: 28px; } }
        @media (max-width: 760px) {
          .inlove .item.big .title {
            font-size: 26px;
            line-height: 29px; }
            .inlove .item.big .title a {
              margin-bottom: 18px; } }
        @media (max-width: 640px) {
          .inlove .item.big .title {
            display: block;
            font-size: 22px;
            line-height: 25px; }
            .inlove .item.big .title a {
              max-width: 100%;
              margin-bottom: 15px;
              padding: 0; } }
        @media (max-width: 360px) {
          .inlove .item.big .title {
            font-size: 18px;
            line-height: 21px; } }
      .inlove .item.big .visual {
        display: table-footer-group;
        margin-bottom: 0;
        height: 440px; }
        @media (max-width: 800px) {
          .inlove .item.big .visual iframe {
            height: 330px; } }
        @media (max-width: 640px) {
          .inlove .item.big .visual {
            display: block;
            margin-bottom: 10px;
            height: 310px; }
            .inlove .item.big .visual iframe {
              width: 100%;
              height: 100%; } }
        @media (max-width: 500px) {
          .inlove .item.big .visual {
            height: 250px; } }
        @media (max-width: 400px) {
          .inlove .item.big .visual {
            height: 210px; } }
      @media (max-width: 950px) {
        .inlove .item.big {
          margin-bottom: 60px; }
          .inlove .item.big img {
            max-width: 80%; } }
      @media (max-width: 760px) {
        .inlove .item.big {
          margin-bottom: 30px; } }
      @media (max-width: 640px) {
        .inlove .item.big {
          margin-bottom: 6px; } }
    @media (max-width: 640px) {
      .inlove .item {
        width: 100%;
        margin: 0 0 20px; } }
  .inlove .title {
    display: block;
    font: 700 24px/29px "Roboto Condensed", sans-serif;
    margin: 0;
    padding: 0 20px; }
    @media (max-width: 950px) {
      .inlove .title {
        font-size: 22px;
        line-height: 27px; } }
    @media (max-width: 760px) {
      .inlove .title {
        font-size: 18px;
        line-height: 21px;
        padding: 0 10px; } }
    @media (max-width: 640px) {
      .inlove .title {
        font-size: 16px;
        line-height: 19px; } }
  .inlove .visual {
    display: block;
    margin: 0 auto 32px;
    height: 311px; }
    @media (max-width: 950px) {
      .inlove .visual {
        height: 250px;
        margin-bottom: 22px; } }

@media (max-width: 760px) and (min-width: 641px) {
  .inlove .visual {
    height: 210px;
    margin-bottom: 16px; } }

@media (max-width: 640px) and (min-width: 501px) {
  .inlove .visual {
    height: 310px; } }
    @media (max-width: 400px) {
      .inlove .visual {
        height: 210px;
        max-width: calc(100% + 20px);
        margin: 0 -10px 15px; } }
  @media (max-width: 950px) {
    .inlove {
      padding: 30px 0; } }
  @media (max-width: 760px) {
    .inlove {
      padding: 22px 0 10px; } }
  @media (max-width: 640px) {
    .inlove {
      margin: 0; }
      .inlove img {
        max-height: 230px;
        width: auto; } }

.subscribe {
  padding: 53px 0 91px;
  background: url(../images/pattern-03.jpg) no-repeat; }
  .subscribe .h2 {
    font-size: 63px;
    line-height: 76px;
    text-align: center;
    margin-bottom: 60px; }
    @media (max-width: 950px) {
      .subscribe .h2 {
        font-size: 56px;
        line-height: 65px;
        margin-bottom: 48px; } }
    @media (max-width: 900px) {
      .subscribe .h2 {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 28px; } }
    @media (max-width: 760px) {
      .subscribe .h2 {
        font-size: 32px;
        line-height: 35px;
        margin-bottom: 18px; } }
    @media (max-width: 640px) {
      .subscribe .h2 {
        font-size: 24px;
        line-height: 27px; } }
    @media (max-width: 360px) {
      .subscribe .h2 {
        font-size: 20px;
        line-height: 23px; } }
  .subscribe .success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    text-align: center;
    z-index: 10;
    display: none; }
    .subscribe .success-message:after {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 0;
      min-height: 100%; }
    .subscribe .success-message > * {
      white-space: normal;
      display: inline-block;
      vertical-align: middle; }
    .subscribe .success-message .h2 {
      margin-bottom: 0; }
  .subscribe.success .subscribe-form, .subscribe.success .h2:not(.mess) {
    opacity: 0;
    pointer-events: none; }
  @media (max-width: 950px) {
    .subscribe {
      padding: 40px 0 65px; } }
  @media (max-width: 900px) {
    .subscribe {
      padding: 30px 0 45px; } }
  @media (max-width: 760px) {
    .subscribe {
      padding: 20px 0 28px; } }
  @media (max-width: 640px) {
    .subscribe {
      padding: 20px 0 16px; } }

.guarantee {
  padding-top: 58px;
  padding-bottom: 43px; }
  .guarantee .h2 {
    font-size: 41px;
    line-height: 54px;
    margin-bottom: 58px;
    text-align: center; }
    @media (max-width: 950px) {
      .guarantee .h2 {
        font-size: 32px;
        line-height: 37px;
        margin-bottom: 35px; } }
    @media (max-width: 760px) {
      .guarantee .h2 {
        font-size: 26px;
        line-height: 29px;
        margin-bottom: 20px; } }
    @media (max-width: 360px) {
      .guarantee .h2 {
        font-size: 20px;
        line-height: 23px; } }
  .guarantee .h3 {
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 20px;
    text-align: center; }
    @media (max-width: 950px) {
      .guarantee .h3 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 15px; } }
    @media (max-width: 900px) {
      .guarantee .h3 {
        font-size: 26px;
        line-height: 29px; } }
    @media (max-width: 760px) {
      .guarantee .h3 {
        font-size: 22px;
        line-height: 25px; } }
    @media (max-width: 360px) {
      .guarantee .h3 {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 10px; } }
  .guarantee ul {
    margin: 0 -22px; }
    @media (max-width: 900px) {
      .guarantee ul {
        margin: 0 15px; } }
    @media (max-width: 640px) {
      .guarantee ul {
        margin: 0; } }
  .guarantee li {
    font-size: 21px;
    line-height: 26px;
    text-align: center;
    width: calc(50% - 96px);
    margin: 0 48px;
    font-weight: 500; }
    @media (max-width: 950px) {
      .guarantee li {
        font-size: 18px;
        line-height: 23px; } }
    @media (max-width: 900px) {
      .guarantee li {
        font-size: 16px;
        line-height: 20px;
        width: calc(50% - 30px);
        margin: 0 15px; } }
    @media (max-width: 640px) {
      .guarantee li {
        width: 100%;
        margin: 0 0 30px; }
        .guarantee li:last-child {
          margin-bottom: 10px; } }
    @media (max-width: 360px) {
      .guarantee li {
        font-size: 14px;
        line-height: 17px; } }
  .guarantee p {
    margin-bottom: 0; }
  .guarantee .pic {
    display: block;
    margin: 0 0 29px; }
    @media (max-width: 950px) {
      .guarantee .pic {
        margin-bottom: 15px; } }
  @media (max-width: 950px) {
    .guarantee {
      padding-top: 34px;
      padding-bottom: 34px; } }
  @media (max-width: 760px) {
    .guarantee {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media (max-width: 640px) {
    .guarantee img {
      max-height: 230px;
      width: auto; } }

.meet .h2 {
  background-color: #ffd400; }

.meet li {
  width: 50%;
  padding: 0 15px 33px;
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  text-align: center; }
  @media (max-width: 950px) {
    .meet li {
      font-size: 21px;
      line-height: 26px; } }
  @media (max-width: 760px) {
    .meet li {
      font-size: 18px;
      line-height: 21px; } }
  @media (max-width: 640px) {
    .meet li {
      width: 100%;
      padding: 0;
      margin-bottom: 30px; } }

.meet .pic {
  display: block;
  margin: 0 0 24px;
  height: 310px; }
  @media (max-width: 950px) {
    .meet .pic {
      height: 250px;
      margin-bottom: 15px; } }

@media (max-width: 750px) and (min-width: 641px) {
  .meet .pic {
    height: 210px; } }

@media (max-width: 640px) and (min-width: 501px) {
  .meet .pic {
    height: 310px; } }
  @media (max-width: 400px) {
    .meet .pic {
      height: 210px;
      max-width: calc(100% + 20px);
      margin: 0 -10px 15px; } }

.meet strong:not(.h2) {
  display: block;
  max-width: 490px;
  margin: 0 auto;
  font-weight: 500; }

@media (max-width: 640px) {
  .meet img {
    max-height: 230px;
    width: auto; } }

.reviews {
  padding-bottom: 11px; }
  .reviews .h2 {
    background-color: #0096ff;
    color: #fff; }
  .reviews .pic {
    float: left;
    width: 340px;
    height: 340px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden; }
    @media (max-width: 950px) {
      .reviews .pic {
        width: 300px;
        height: 300px; } }
    @media (max-width: 900px) {
      .reviews .pic {
        width: 270px;
        height: 270px; } }
    @media (max-width: 760px) {
      .reviews .pic {
        float: none;
        width: 160px;
        height: 160px;
        margin: 0 auto 15px; } }
  .reviews .frame {
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
    font-size: 19px;
    line-height: 23px;
    text-align: center;
    padding: 0 44px 0 65px;
    color: #000; }
    @media (max-width: 1050px) {
      .reviews .frame {
        padding: 0 20px; } }
    @media (max-width: 950px) {
      .reviews .frame {
        font-size: 16px;
        line-height: 20px; } }
    @media (max-width: 760px) {
      .reviews .frame {
        display: block;
        padding: 0 15px; } }
  .reviews .title {
    display: block;
    font-size: 31px;
    line-height: 37px;
    font-weight: 900;
    color: #ff9600;
    margin: 0 0 9px; }
    @media (max-width: 950px) {
      .reviews .title {
        font-size: 26px;
        line-height: 32px; } }
    @media (max-width: 760px) {
      .reviews .title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 4px; } }
  .reviews .meta {
    display: block;
    font-size: 15px;
    line-height: 18px;
    margin: 0 0 24px; }
  .reviews p {
    margin-bottom: 24px; }
  .reviews .button {
    height: 58px;
    line-height: 51px;
    min-width: 234px; }

.slick-gallery {
  padding: 0 112px 64px;
  position: relative; }
  .slick-gallery:before, .slick-gallery:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 5;
    pointer-events: none; }
  .slick-gallery:before {
    left: 110px;
    background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); }
  .slick-gallery:after {
    right: 110px;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); }
  .slick-gallery .slick-arrow {
    position: absolute;
    top: 133px;
    background: url(../images/arrows.png) no-repeat 0 0/29px 160px;
    width: 29px;
    height: 80px;
    cursor: pointer;
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    z-index: 10; }
    .slick-gallery .slick-arrow:hover, .slick-gallery .slick-arrow.disabled {
      opacity: .6; }
    @media (max-width: 500px) {
      .slick-gallery .slick-arrow {
        top: 40px; } }
  .slick-gallery .slick-prev {
    left: 54px;
    background-position: 0 -81px; }
  .slick-gallery .slick-next {
    right: 51px; }
  @media (max-width: 1050px) {
    .slick-gallery {
      padding: 0 40px 64px; }
      .slick-gallery:before {
        left: 40px; }
      .slick-gallery:after {
        right: 40px; }
      .slick-gallery .slick-prev {
        left: 5px; }
      .slick-gallery .slick-next {
        right: 5px; } }
  @media (max-width: 950px) {
    .slick-gallery {
      padding-bottom: 40px; } }
  @media (max-width: 760px) {
    .slick-gallery {
      padding-bottom: 18px; }
      .slick-gallery:before, .slick-gallery:after {
        width: 20px; }
      .slick-gallery .slick-prev {
        left: 0; }
      .slick-gallery .slick-next {
        right: 0; } }
  @media (max-width: 500px) {
    .slick-gallery {
      padding: 0 0 14px; }
      .slick-gallery:before {
        left: 0; }
      .slick-gallery:after {
        right: 0; } }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  height: 100%; }

.slick-track {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  position: relative;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  margin: 0 auto;
  overflow: hidden; }

.slick-slide {
  float: left;
  display: none;
  padding-left: 45px; }
  .slick-initialized .slick-slide {
    display: table; }
  @media (max-width: 760px) {
    .slick-slide {
      padding-left: 0; } }

.first {
  text-align: center;
  padding: 0 0 61px; }
  .first .h2 {
    color: #23570a;
    background-color: #59cc35;
    margin-bottom: 57px; }
    @media (max-width: 950px) {
      .first .h2 {
        margin-bottom: 40px; } }
    @media (max-width: 400px) {
      .first .h2 {
        margin-bottom: 22px; } }
  .first .pic {
    display: block;
    width: 86%;
    height: 560px;
    margin: 0 auto 65px; }
    @media (max-width: 950px) {
      .first .pic {
        margin-bottom: 40px; } }
    @media (max-width: 900px) {
      .first .pic {
        height: 400px; } }
    @media (max-width: 740px) {
      .first .pic {
        height: 320px; } }
    @media (max-width: 600px) {
      .first .pic {
        height: 300px; } }
    @media (max-width: 550px) {
      .first .pic {
        height: 280px; } }
    @media (max-width: 400px) {
      .first .pic {
        height: 210px;
        width: calc(100% + 20px);
        margin: 0 -10px 20px; } }
  @media (max-width: 950px) {
    .first {
      padding-bottom: 40px; } }
  @media (max-width: 400px) {
    .first {
      padding-bottom: 22px; } }

iframe {
  max-width: 100%; }
/*# sourceMappingURL=main.css.map */