/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
 .loader-overlay {
  /* Position/size the overlay to cover the entire screen */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Stacking: ensure it’s above other elements */
  z-index: 9999;

  display: flex;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  /* Use flex to center the spinner in both directions */
  display: none;
  align-items: center;
  justify-content: center;
  
}

.loader-overlay[style*='display: block']{
    display: flex !important;
}

.loader-spinner {
  /* Adjust this as needed for your spinner size/alignment */
  width: 80px;
  height: 80px;
  text-align: center;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://pravzhizn.com/dist/zapiski_new/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
/* .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
} */
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/* .shop-carousel {
  margin: 0 auto;
  width: 120px;
  min-height: 120px;
} */

/*.shop-carousel.owl-theme .owl-nav button {*/
  /*position: absolute;*/
  /*left: 0px;*/
  /*top: 40px;*/
  /*display: block;*/
  /*width: 55px;*/
  /*height: 48px;*/
  /*font-size: 0;*/
  /*background-repeat: no-repeat;*/
/*}*/

/*.shop-carousel.owl-theme .owl-nav button.owl-prev {*/
  /*left: 0px;*/
  /*background-image: url("../img/icon/arrows_mini_left.svg");*/
/*}*/

/*.shop-carousel.owl-theme .owl-nav button.owl-next {*/
  /*right: 0px;*/
  /*background-image: url("../img/icon/arrows_mini_right.svg");*/
/*}*/
@charset "UTF-8";
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  margin: 0; }

input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: textfield; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0; }

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

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

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-100.woff2") format("woff2"), url("../fonts/MuseoCyrillic-100.woff") format("woff"), url("../fonts/MuseoCyrillic-100.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-700.woff2") format("woff2"), url("../fonts/MuseoCyrillic-700.woff") format("woff"), url("../fonts/MuseoCyrillic-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-900.woff2") format("woff2"), url("../fonts/MuseoCyrillic-900.woff") format("woff"), url("../fonts/MuseoCyrillic-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: "TriodPostnaja";
  src: url("../fonts/TriodPostnaja.ttf") format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-100Italic.woff2") format("woff2"), url("../fonts/MuseoCyrillic-100Italic.woff") format("woff"), url("../fonts/MuseoCyrillic-100Italic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-900Italic.woff2") format("woff2"), url("../fonts/MuseoCyrillic-900Italic.woff") format("woff"), url("../fonts/MuseoCyrillic-900Italic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-500Italic.woff2") format("woff2"), url("../fonts/MuseoCyrillic-500Italic.woff") format("woff"), url("../fonts/MuseoCyrillic-500Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-300Italic.woff2") format("woff2"), url("../fonts/MuseoCyrillic-300Italic.woff") format("woff"), url("../fonts/MuseoCyrillic-300Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-700Italic.woff2") format("woff2"), url("../fonts/MuseoCyrillic-700Italic.woff") format("woff"), url("../fonts/MuseoCyrillic-700Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-300.woff2") format("woff2"), url("../fonts/MuseoCyrillic-300.woff") format("woff"), url("../fonts/MuseoCyrillic-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: "Museo Cyrillic";
  src: url("../fonts/MuseoCyrillic-500.woff2") format("woff2"), url("../fonts/MuseoCyrillic-500.woff") format("woff"), url("../fonts/MuseoCyrillic-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-700Italic.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-700Italic.woff") format("woff"), url("../fonts/MuseoSansCyrl-700Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-300.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-300.woff") format("woff"), url("../fonts/MuseoSansCyrl-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-700.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-700.woff") format("woff"), url("../fonts/MuseoSansCyrl-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-100.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-100.woff") format("woff"), url("../fonts/MuseoSansCyrl-100.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-900.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-900.woff") format("woff"), url("../fonts/MuseoSansCyrl-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-100Italic.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-100Italic.woff") format("woff"), url("../fonts/MuseoSansCyrl-100Italic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-500Italic.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-500Italic.woff") format("woff"), url("../fonts/MuseoSansCyrl-500Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-500.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-500.woff") format("woff"), url("../fonts/MuseoSansCyrl-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-300Italic.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-300Italic.woff") format("woff"), url("../fonts/MuseoSansCyrl-300Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("../fonts/MuseoSansCyrl-900Italic.woff2") format("woff2"), url("../fonts/MuseoSansCyrl-900Italic.woff") format("woff"), url("../fonts/MuseoSansCyrl-900Italic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic; }

.select__list {
  list-style: none;
  margin: 0;
  padding: 0; }

.list li::before, .holy-about ul li::before, .notes__left-text a::before, .notes-mob__opener::before, .notes-mob__opener::after, .order__radio span::before, .order__radio span::after, .order-moleben__item--add .order-moleben__icon::before, .order-moleben__item--add .order-moleben__icon::after, .moleben-drop::before, .video::before {
  content: "";
  position: absolute;
  display: block; }

body {
  height: 100%;
  font-family: "Museo Cyrillic", sans-serif;
  font-weight: 500;
  color: #212121; }

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

a {
  text-decoration: none;
  outline: none; }

button {
  cursor: pointer;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0; }

.list {
  padding: 0;
  margin: 0;
  list-style-type: none; }
  .list li {
    position: relative;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    padding-left: 38px; }
    .list li:not(:last-child) {
      margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .list li:not(:last-child) {
        margin-bottom: 30px; } }
    .list li::before {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #d13d24;
      top: 10px;
      left: 0; }

.wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }

.align {
  /*max-width: 1125px;*/
  max-width: 1155px;
  width: 85%;
  margin: 0 auto; }
  @media only screen and (min-width: 1024px) {
    .align {
      width: 90%;
      /*margin-top: -100px;*/
    } }

.note {
  color: #9b9b9b;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .note {
      font-size: 20px; } }

.block-heading {
  text-align: center;
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .block-heading {
      margin-bottom: 95px; }
      .block-heading--order {
        padding-top: 35px; } }

.title {
  font-size: 23px;
  line-height: 1.45;
  margin: 0; }
  @media only screen and (min-width: 768px) {
    .title {
      font-size: 35px;
      padding: 0 8%;
      line-height: 1.1; } }

.btn-gradient {
  min-height: 60px;
  display: inline-block;
  text-align: center;
  padding: 20px 31px;
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 16px;
  line-height: 1;
  border-radius: 35px;
  max-width: 288px;
  width: 100%;
  box-shadow: 0 10px 20px 0 rgba(250, 165, 51, 0.1); }
  @media only screen and (min-width: 1024px) {
    .btn-gradient {
      width: auto; } }
  .btn-gradient--primary {
    max-width: 240px;
    color: #212121;
    background: linear-gradient(-135deg, #f7f606 0%, #f7a406 100%); }
    @media only screen and (min-width: 1025px) {
      .btn-gradient--primary:hover {
        background: #f7f606; } }
    .btn-gradient--primary:focus {
      background: #f7a406; }
  .btn-gradient--secondary {
    color: #fff;
    background: linear-gradient(-135deg, #02c7b5 0%, #029550 100%); }
    @media only screen and (min-width: 1025px) {
      .btn-gradient--secondary:hover {
        background: #02c7b5; } }
    .btn-gradient--secondary:focus {
      background: #029550; }
  .btn-gradient--tertiary {
    color: #fff;
    background: linear-gradient(-135deg, #c42f2e 0%, #faa533 100%); }
    @media only screen and (min-width: 1025px) {
      .btn-gradient--tertiary:hover {
        background: #faa533;
        color: #fff; } }
    .btn-gradient--tertiary:focus {
      background: #c42f2e; }
  .btn-gradient--blue {
    color: #fff;
    background: linear-gradient(-135deg, #4c6195 0%, #8288c3 100%); }
    @media only screen and (min-width: 1025px) {
      .btn-gradient--blue:hover {
        background: #8288c3;
        color: #fff; } }
    .btn-gradient--blue:focus {
      background: #4c6195; }
  .btn-gradient--green {
    color: #fff;
    background: linear-gradient(-135deg, #00bb6e 0%, #008f49 100%); }
    @media only screen and (min-width: 1025px) {
      .btn-gradient--green:hover {
        background: #00bb6e;
        color: #fff; } }
    .btn-gradient--green:focus {
      background: #008f49; }
  .btn-gradient--green-blue {
    color: #fff;
    background: linear-gradient(-135deg, #008f49 0%, #02c7b5 100%); }
    @media only screen and (min-width: 1025px) {
      .btn-gradient--green-blue:hover {
        background: #02c7b5;
        color: #fff; } }
    .btn-gradient--green-blue:focus {
      background: #008f49; }

.btn-outlined {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 288px;
  border: 2px solid;
  padding: 20px 31px;
  font-size: 16px;
  font-family: "Museo Sans Cyrl", sans-serif;
  line-height: 1;
  border-radius: 35px;
  background-color: #fff; }
  @media only screen and (min-width: 1024px) {
    .btn-outlined {
      max-width: 274px; } }
  .btn-outlined--primary {
    border-color: #ff482f;
    color: #ff482f;
    box-shadow: 0 10px 20px 0 rgba(255, 72, 47, 0.15); }
    @media only screen and (min-width: 1025px) {
      .btn-outlined--primary:hover {
        background: #ff482f;
        color: #fff; } }
    .btn-outlined--primary:focus {
      background: #ff482f;
      color: #fff; }
  .btn-outlined--secondary {
    border-color: #029550;
    color: #029550;
    box-shadow: 0 10px 20px 0 rgba(2, 149, 80, 0.15); }
    @media only screen and (min-width: 1025px) {
      .btn-outlined--secondary:hover {
        background: #029550;
        color: #fff; } }
    .btn-outlined--secondary:focus {
      background: #029550;
      color: #fff; }

.btn-contained {
  font-size: 16px;
  line-height: 1;
  font-family: "Museo Sans Cyrl", sans-serif;
  text-align: center;
  color: #fff;
  max-width: 288px;
  width: 100%;
  padding: 22px 30px;
  display: inline-block;
  border-radius: 35px; }
  @media only screen and (min-width: 1024px) {
    .btn-contained {
      width: auto;
      max-width: unset; } }
  .btn-contained--primary {
    background-color: #ff482f; }
    @media only screen and (min-width: 1025px) {
      .btn-contained--primary:hover {
        box-shadow: 0 10px 20px 0 rgba(255, 72, 47, 0.15);
        color: #fff; } }
    .btn-contained--primary:focus {
      box-shadow: 0 10px 20px 0 rgba(255, 72, 47, 0.15); }

input {
  outline: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 18px;
  line-height: 1.2; }
  input::-webkit-input-placeholder {
    color: #9b9b9b;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.2; }
  input::-moz-placeholder {
    color: #9b9b9b;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.2; }
  input:-ms-input-placeholder {
    color: #9b9b9b;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.2; }
  input:-moz-placeholder {
    color: #9b9b9b;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.2; }
  @media only screen and (min-width: 1025px) {
    input:hover {
      border-color: rgba(33, 33, 33, 0.54); } }
  input:active, input:focus {
    border-color: #212121; }

.sticky {
  position: fixed;
  top: 0;
  z-index: 100; }

a.btn-gradient.not-active {
  color: #fff;
  opacity: 0.7;
  cursor: default;
  background: #9b9b9b; }
  a.btn-gradient.not-active span {
    background: #9b9b9b; }
  a.btn-gradient.not-active:hover {
    color: #fff;
    background: #9b9b9b; }
    a.btn-gradient.not-active:hover span {
      background: #9b9b9b; }

a.btn-gradient:hover {
  color: #fff; }

.crumbs {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0 0 40px; }
  @media only screen and (min-width: 768px) {
    .crumbs {
      margin: 0 0 120px;
      display: flex;
      align-items: center;
      flex-wrap: wrap; } }
  .crumbs__item {
    position: relative;
    color: #0f0f0f;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    display: inline; }
    .crumbs__item:not(:last-child) {
      margin-right: 20px; }
      .crumbs__item:not(:last-child)::before {
        content: ">";
        display: block;
        position: absolute;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 300;
        top: 50%;
        right: -16px;
        transform: translateY(-50%); }
    @media only screen and (min-width: 768px) {
      .crumbs__item {
        display: block;
        font-size: 20px; }
        .crumbs__item:not(:last-child) {
          margin-right: 30px; }
          .crumbs__item:not(:last-child)::before {
            right: -20px; } }
  .crumbs__link {
    text-decoration: none;
    color: #212121;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300; }

.holy-about {
  margin-bottom: 95px; }
  @media only screen and (min-width: 768px) {
    .holy-about {
      margin-bottom: 120px; } }
  @media only screen and (min-width: 1024px) {
    .holy-about__wrap {
      display: flex;
      align-items: flex-start; } }
  @media only screen and (min-width: 1024px) {
    .holy-about__left {
      flex: 0 0 auto;
      width: 363px; } }
  @media only screen and (min-width: 1024px) {
    .holy-about__right {
      margin-left: 110px;
      flex: 1 0 0%; } }
  .holy-about__img {
    padding: 42px;
    border: 5px solid rgba(207, 204, 185, 0.2);
    margin-bottom: 40px;
    text-align: center; }
    @media only screen and (min-width: 1024px) {
      .holy-about__img {
        margin-bottom: 0; } }
  .holy-about__title {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.4; }
    @media only screen and (min-width: 768px) {
      .holy-about__title {
        font-size: 24px;
        margin-bottom: 50px; } }
    .holy-about__title--red {
      color: #d13d24; }
  .holy-about ul {
    margin-bottom: 35px;
    margin-top: 35px;
    padding: 0;
    list-style-type: none; }
    .holy-about ul li {
      position: relative;
      font-family: "Museo Sans Cyrl", sans-serif;
      font-size: 18px;
      line-height: 1.4;
      padding-left: 38px; }
      .holy-about ul li:not(:last-child) {
        margin-bottom: 15px; }
      @media only screen and (min-width: 768px) {
        .holy-about ul li:not(:last-child) {
          margin-bottom: 15px; } }
      .holy-about ul li::before {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #d13d24;
        top: 10px;
        left: 0; }
  .holy-about .btn-contained {
    width: 100%;
    max-width: 288px;
    margin-top: 35px; }
    @media only screen and (min-width: 768px) {
      .holy-about .btn-contained {
        width: 380px;
        margin: 0 auto;
        display: block;
        margin-top: 85px; } }
  .holy-about .holy-about-slider {
    position: relative; }
    .holy-about .holy-about-slider .swiper-button-prev,
    .holy-about .holy-about-slider .swiper-button-next {
      margin-top: 0;
      top: 37%; }
    .holy-about .holy-about-slider .swiper-button-prev {
      left: -5%; }
    .holy-about .holy-about-slider .swiper-button-next {
      right: 62%; }
    .holy-about .holy-about-slider .list li.active {
      color: #d13d24; }
    .holy-about .holy-about-slider .swiper-pagination {
      width: auto;
      left: 50%;
      top: 47%;
      transform: translateX(-50%);
      bottom: auto; }
      @media only screen and (min-width: 1024px) {
        .holy-about .holy-about-slider .swiper-pagination {
          left: 16%;
          top: 79%;
          transform: translateX(0); } }
    .holy-about .holy-about-slider .holy-about__img {
      margin-bottom: 74px; }
      @media only screen and (min-width: 1024px) {
        .holy-about .holy-about-slider .holy-about__img {
          margin-bottom: 0; } }

.holy-about__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px; }

.holy-about__note {
  font-size: 17px;
  margin-top: 15px; }

@media (min-width: 1024px) {
  .holy-about__header-title.title {
    font-size: 35px;
    padding: 0 8%;
    line-height: 1.1; } }

.holy-slider {
  margin-bottom: 65px;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .holy-slider {
      margin-bottom: 120px; } }
  .holy-slider--bg {
    padding: 65px 0;
    background-color: rgba(236, 236, 229, 0.23); }
    @media only screen and (min-width: 768px) {
      .holy-slider--bg {
        padding: 120px 0;
        background-color: #ecece5; } }
  .holy-slider--2 .holy-slider__text {
    font-size: 24px; }
    @media only screen and (min-width: 768px) {
      .holy-slider--2 .holy-slider__text {
        font-size: 18px; } }
  .holy-slider__img {
    padding: 20px;
    border: 5px solid rgba(207, 204, 185, 0.2);
    margin-bottom: 30px;
    text-align: center;
    height: 270px; }
    .holy-slider__img img {
      height: 100%;
      width: auto; }
    @media only screen and (min-width: 768px) {
      .holy-slider__img {
        margin-bottom: 20px;
        height: 250px; } }
  .holy-slider__text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    text-align: center; }
    .holy-slider__text--blue {
      color: #0071bc; }
    .holy-slider__text--red {
      color: #ff482f; }
    .holy-slider__text--green {
      color: #7c872e; }
  .holy-slider .swiper-container {
    padding-bottom: 60px; }
    .holy-slider .swiper-container .swiper-pagination {
      bottom: 25px; }
  .holy-slider__btn {
    text-align: center; }
  .holy-slider .btn-contained {
    padding: 14px 30px; }
    @media only screen and (min-width: 768px) {
      .holy-slider .btn-contained {
        padding: 22px 30px; } }
    .holy-slider .btn-contained span {
      display: none; }
      @media only screen and (min-width: 768px) {
        .holy-slider .btn-contained span {
          display: inline; } }

.how {
  margin-bottom: 95px; }
  @media only screen and (min-width: 768px) {
    .how {
      margin-bottom: 120px; } }
  .how--note {
    background: #faf7df;
    padding-top: 40px;
    padding-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .how--note {
        padding-top: 120px;
        padding-bottom: 100px; } }
    .how--note__done {
      margin-top: 70px;
      text-align: center;
      color: #f65500;
      font-size: 35px;
      line-height: 1.2; }
  .how .names__arrow {
    fill: #d13d24;
    bottom: -22%;
    z-index: 1;
    display: block; }
    .how .names__arrow--right {
      right: 1%; }
    @media only screen and (min-width: 768px) {
      .how .names__arrow {
        transform: rotate(-99deg);
        bottom: auto;
        top: 10%; }
        .how .names__arrow--right {
          right: -7%; } }
  @media only screen and (min-width: 768px) {
    .how__items {
      display: flex;
      justify-content: space-between; } }
  .how__item {
    position: relative;
    padding: 24px;
    text-align: center;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .how__item {
        margin-bottom: 0;
        flex: 0 0 auto;
        width: 32%;
        border: 5px solid rgba(207, 204, 185, 0.2); } }
    @media only screen and (min-width: 1024px) {
      .how__item {
        padding: 100px 35px; } }
    .how--note .how__item {
      background: #fafaf9;
      border: 5px solid rgba(207, 204, 185, 0.2); }
      @media only screen and (min-width: 1024px) {
        .how--note .how__item {
          padding: 100px 35px 45px; } }
  .how__icon {
    height: 100px;
    width: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center; }
    .how__icon img {
      vertical-align: bottom; }
  .how__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px; }
    .how__title--orange {
      color: #f65500; }
    .how__title--blue {
      color: #0071bc; }
    .how__title--green {
      color: #026837; }
    .how--note .how__title {
      font-weight: 500;
      font-size: 20px;
      line-height: 1.2; }
  .how__text {
    font-size: 18px;
    line-height: 1.4;
    width: 240px;
    max-width: 100%;
    margin: 0 auto; }
    .how--note .how__text {
      font-size: 20px;
      line-height: 1.2;
      width: 285px; }

.miracle {
  margin-bottom: 95px; }
  @media only screen and (min-width: 768px) {
    .miracle {
      margin-bottom: 120px; } }
  .miracle .note {
    width: 90%;
    margin: 0 auto 15px; }
    @media only screen and (min-width: 768px) {
      .miracle .note {
        width: 100%;
        margin: 0 0 15px; } }
  .miracle__item {
    margin-bottom: 60px; }
    .miracle__item:nth-child(odd) a {
      color: #0071bc; }
    .miracle__item:nth-child(even) a {
      color: #d13d24; }
    .miracle__item a:hover {
      color: #f65500; }
    .miracle__item.visible {
      display: block; }
    @media only screen and (min-width: 768px) {
      .miracle__item {
        border: 5px solid rgba(207, 204, 185, 0.2);
        padding: 65px;
        margin-bottom: 30px; } }
  .miracle__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 30px; }
    .miracle__title--red {
      color: #d13d24; }
    .miracle__title--blue {
      color: #0071bc; }
  .miracle__text {
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 16px;
    line-height: 1.5; }
  .miracle__more {
    text-align: center; }
    .miracle__more.hidden {
      display: none; }
  .miracle .btn-contained {
    margin-top: 30px; }

.mob-menu {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100vw;
  height: 100vh;
  background: #f7a806;
  padding: 110px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; }
  .mob-menu * {
    font-family: "Museo Sans Cyrl", sans-serif;
    color: #fff; }
  .mob-menu a {
    text-decoration: none;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700; }
  .mob-menu.active {
    transform: translateX(0);
    transition: transform 0.3s; }
  @media only screen and (min-width: 768px) {
    .mob-menu {
      width: 400px; } }
  @media only screen and (min-width: 1024px) {
    .mob-menu {
      display: none; } }
  .mob-menu__opener {
    width: 24px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .mob-menu__opener svg {
      width: 24px;
      height: 17px;
      fill: #fff; }
    .mob-menu__opener .line {
      width: 100%;
      height: 2px;
      background-color: #fff; }
    .mob-menu__opener.active {
      position: relative; }
      .mob-menu__opener.active .line {
        position: absolute; }
      .mob-menu__opener.active .line--2 {
        opacity: 0;
        transition: opacity 0.3s; }
      .mob-menu__opener.active .line--1 {
        transform: rotate(-45deg) translateY(-50%);
        top: 50%;
        transition: transform 0.3s; }
      .mob-menu__opener.active .line--3 {
        transform: rotate(45deg) translateY(-50%);
        top: 50%;
        transition: transform 0.3s; }
    @media only screen and (min-width: 1024px) {
      .mob-menu__opener {
        display: none; } }

.moleben {
  margin-bottom: 60px; }
  @media only screen and (min-width: 768px) {
    .moleben {
      margin-bottom: 120px; } }
  .moleben__items {
    margin-bottom: 35px; }
    @media only screen and (min-width: 768px) {
      .moleben__items {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        margin-bottom: 60px; } }
  .moleben__item {
    margin-bottom: 20px;
    border: 3px solid #ecece5;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.12;
    position: relative;
    padding: 10px;
    display: none;
    color: #212121; }
    .moleben__item.visible {
      display: flex; }
    @media only screen and (max-width: 768px) {
      .moleben__item {
        display: flex;
        padding-left: 30px;
        padding-top: 15px;
        padding-bottom: 15px; } }
    @media only screen and (min-width: 768px) {
      .moleben__item {
        font-weight: 700;
        font-size: 18px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        width: 48%;
        padding: 28px 20px 28px 60px; } }
  .moleben__more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px; }
    .moleben__more.hidden {
      display: none; }
    .moleben__more span {
      color: #ff482f;
      font-size: 16px;
      line-height: 1;
      font-family: "Museo Sans Cyrl", sans-serif;
      margin-right: 10px; }
    @media only screen and (min-width: 768px) {
      .moleben__more {
        display: none; } }
  .moleben__icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -4%;
    display: none; }
    @media only screen and (max-width: 768px) {
      .moleben__icon {
        display: block;
        width: 25px;
        height: 25px; } }
    @media only screen and (min-width: 768px) {
      .moleben__icon {
        display: block; } }
  .moleben__btn {
    text-align: center; }

.names {
  margin-bottom: 65px; }
  @media only screen and (min-width: 768px) {
    .names {
      margin-bottom: 120px; } }
  .names .block-heading {
    margin-bottom: 80px; }
  .names__items {
    display: block;
    margin-bottom: 60px; }
    @media only screen and (min-width: 768px) {
      .names__items {
        margin-bottom: 80px;
        display: flex;
        justify-content: space-between; } }
  .names__item {
    position: relative; }
    .names__item:not(:last-child) {
      margin-bottom: 160px; }
    @media only screen and (min-width: 768px) {
      .names__item {
        flex: 0 0 auto;
        width: 48%; }
        .names__item:not(:last-child) {
          margin-bottom: 0; } }
    .names__item > img {
      max-width: unset;
      width: 545px;
      position: relative;
      left: 50%;
      transform: translateX(-50%); }
      @media only screen and (min-width: 768px) {
        .names__item > img {
          max-width: 100%;
          position: static;
          width: auto;
          transform: translateX(0%); } }
  .names__icon, .names__text, .names__arrow {
    position: absolute; }
  .names__arrow {
    display: none;
    bottom: 58px;
    width: 30px;
    height: 106px;
    fill: #fff; }
    .names__arrow--left {
      left: 15%; }
    .names__arrow--right {
      right: 15%; }
    @media only screen and (min-width: 1024px) {
      .names__arrow {
        display: block; } }
  .names__icon {
    top: -36px;
    left: 38px; }
  .names__text {
    width: 100%;
    max-width: 315px;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 1; }
    @media only screen and (min-width: 1024px) {
      .names__text {
        display: block; } }
    .names__text p {
      margin: 0; }
    .names__text span {
      display: block;
      margin-top: 15px;
      font-size: 18px;
      line-height: 1.4;
      font-weight: 500; }
      @media only screen and (min-width: 768px) {
        .names__text span {
          display: block;
          font-weight: 700;
          margin-top: 20px;
          font-size: 16px; } }
  .names .btn-outlined {
    position: absolute;
    left: 50%;
    margin-left: -137px;
    bottom: -23px; }
  .names__btn {
    text-align: center; }

.notes {
  margin-bottom: 95px; }
  @media only screen and (min-width: 768px) {
    .notes {
      margin-bottom: 160px; } }
  .notes__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .notes__items .notes__text {
      text-align: left; }
    .notes__items .notes__item-wrap {
      flex: 0 0 auto;
      width: 100%;
      margin-bottom: 0; }
      @media only screen and (min-width: 768px) {
        .notes__items .notes__item-wrap {
          margin-bottom: 125px; } }
      @media only screen and (min-width: 768px) {
        .notes__items .notes__item-wrap--sm {
          margin-bottom: 0; } }
      @media only screen and (min-width: 1024px) {
        .notes__items .notes__item-wrap--sm {
          width: 49%; }
          .notes__items .notes__item-wrap--sm .notes__text {
            text-align: center; } }
    .notes__items .notes__item {
      margin-bottom: 0; }
    .notes__items .notes__item-wrap:not(:last-child) .notes__item::after {
      display: none; }
  .notes__wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    @media only screen and (min-width: 768px) {
      .notes__wrap {
        flex-direction: row; } }
  .notes__left {
    order: 1; }
    @media only screen and (min-width: 768px) {
      .notes__left {
        flex: 0 0 auto;
        order: 0;
        width: 35%;
        border-right: 1px solid #cfccb9;
        display: flex;
        flex-direction: column;
        justify-content: center; } }
    .contact .notes__left {
      order: 0; }
      @media only screen and (min-width: 768px) {
        .contact .notes__left {
          width: 50%;
          border: none; } }
  .notes__right {
    order: 0; }
    @media only screen and (min-width: 768px) {
      .notes__right {
        flex: 0 0 auto;
        order: 1;
        width: 57%;
        display: flex;
        flex-direction: column;
        justify-content: center; } }
    .contact .notes__right {
      order: 1;
      font-size: 18px;
      line-height: 1.4; }
      .contact .notes__right p {
        margin-top: 0;
        margin-bottom: 30px; }
      @media only screen and (min-width: 768px) {
        .contact .notes__right {
          width: 43%; } }
  .notes__item-wrap {
    position: relative;
    display: flex; }
    @media only screen and (min-width: 768px) {
      .notes__item-wrap {
        padding: 5px; }
        .notes__item-wrap--orange {
          background-image: linear-gradient(to left, #c42f2e 0%, #faa533 100%); }
          .notes__item-wrap--orange .link {
            color: #faa533;
            transition: 0.3s; }
            .notes__item-wrap--orange .link:hover {
              opacity: 0.7;
              text-decoration: none; }
        .notes__item-wrap--blue {
          background-image: linear-gradient(to left, #4c6195 0%, #8288c3 100%); }
          .notes__item-wrap--blue .link {
            color: #8288c3;
            transition: 0.3s; }
            .notes__item-wrap--blue .link:hover {
              opacity: 0.7;
              text-decoration: none; }
        .notes__item-wrap--green {
          background-image: linear-gradient(to left, #00bb6e 0%, #008f49 100%); }
          .notes__item-wrap--green .link {
            color: #008f49;
            transition: 0.3s; }
            .notes__item-wrap--green .link:hover {
              opacity: 0.7;
              text-decoration: none; } }
    .contact .notes__item-wrap {
      margin-bottom: 30px;
      padding: 5px; }
      .contact .notes__item-wrap--orange {
        background-image: linear-gradient(to left, #c42f2e 0%, #faa533 100%); }
      .contact .notes__item-wrap--blue {
        background-image: linear-gradient(to left, #4c6195 0%, #8288c3 100%); }
      .contact .notes__item-wrap--green {
        background-image: linear-gradient(to left, #00bb6e 0%, #008f49 100%); }
      @media only screen and (min-width: 768px) {
        .contact .notes__item-wrap {
          margin-bottom: 0; } }
  .notes__item {
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 25px; }
    .contact .notes__item {
      text-align: left;
      padding: 40px 20px;
      margin-bottom: 0; }
      @media only screen and (min-width: 768px) {
        .contact .notes__item {
          padding: 60px 40px 40px; } }
      @media only screen and (min-width: 1024px) {
        .contact .notes__item {
          padding: 80px; } }
    @media only screen and (min-width: 768px) {
      .notes__item {
        margin-bottom: 0;
        padding: 53px 75px 100px; } }
  .notes__title {
    font-weight: 700;
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 30px; }
    .notes__title--red {
      color: #d13d24;
      font-size: 24px; }
    @media only screen and (min-width: 768px) {
      .notes__title {
        font-size: 30px;
        line-height: 1.3; } }
  .notes__text {
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px; }
    @media only screen and (min-width: 768px) {
      .notes__text {
        margin-bottom: 0; } }
    .contact .notes__text {
      margin-bottom: 0; }
  .notes__icon {
    margin-bottom: 26px;
    width: 44px;
    height: 44px; }
    @media only screen and (min-width: 768px) {
      .notes__icon {
        position: absolute;
        top: -40px;
        left: 4%;
        width: 80px;
        height: 80px;
        margin-bottom: 0; } }
    .contact .notes__icon {
      position: absolute;
      top: -22px;
      left: 4%;
      margin-bottom: 0; }
  @media only screen and (min-width: 768px) {
    .notes .btn-gradient {
      position: absolute;
      bottom: -28px;
      left: 50%;
      transform: translateX(-50%);
      min-width: 317px; } }
  .notes a.btn-gradient:active {
    opacity: 1; }
  .notes__left-text {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    padding-bottom: 25px;
    text-align: center;
    position: relative; }
    .notes__left-text a {
      display: block;
      font-weight: 300;
      font-size: 20px;
      line-height: 1.2;
      color: #212121;
      text-decoration: none;
      position: static; }
      .notes__left-text a::before {
        height: 1px;
        width: 120%;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        background-color: #cfccb9; }
      .notes__left--orange .notes__left-text a.active {
        color: #f65500; }
      .notes__left--blue .notes__left-text a.active {
        color: #0071bc; }
      .notes__left--green .notes__left-text a.active {
        color: #029550; }
      .notes__left--red .notes__left-text a.active {
        color: #d13d24; }
    .notes__left-text:not(:last-child) {
      margin-bottom: 25px; }
    @media only screen and (min-width: 768px) {
      .notes__left-text {
        text-align: left;
        position: static; }
        .notes__left-text:not(:last-child) {
          margin-bottom: 40px; }
        .notes__left-text a {
          position: relative;
          padding: 0;
          padding-right: 40px; }
          .notes__left-text a::before {
            height: 48px;
            width: 2px;
            top: 50%;
            margin-top: -24px;
            right: -1px;
            left: auto;
            transform: translateX(0);
            display: none; }
        .notes__left-text a.active::before {
          display: block; }
        .notes__left--orange .notes__left-text a.active::before {
          background-color: #f65500; }
        .notes__left--blue .notes__left-text a.active::before {
          background-color: #0071bc; }
        .notes__left--green .notes__left-text a.active::before {
          background-color: #029550; }
        .notes__left--red .notes__left-text a.active::before {
          background-color: #d13d24; } }
  .notes__holder {
    display: none; }
    @media only screen and (min-width: 768px) {
      .notes__holder {
        display: block; } }
    .notes__holder .notes__wrap:nth-child(2n) .notes__left {
      order: 1; }
      @media only screen and (min-width: 768px) {
        .notes__holder .notes__wrap:nth-child(2n) .notes__left {
          border-right: none;
          border-left: 1px solid #cfccb9;
          display: flex;
          align-items: center; } }
    @media only screen and (min-width: 768px) {
      .notes__holder .notes__wrap:nth-child(2n) .notes__left-text a {
        padding-left: 40px;
        padding-right: 0; }
        .notes__holder .notes__wrap:nth-child(2n) .notes__left-text a.active::before {
          left: -1px;
          right: auto; } }
    .notes__holder .notes__wrap:nth-child(2n) .notes__right {
      order: 0; }
    @media only screen and (min-width: 768px) {
      .notes__holder .notes__wrap:not(:last-child) {
        margin-bottom: 140px; } }

@media only screen and (min-width: 768px) {
  .notes-mob {
    display: none; } }

.notes-mob__wrap {
  margin-bottom: 100px; }

.notes-mob__opener {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: #212121;
  text-align: center;
  padding: 20px 0;
  position: relative; }
  .notes-mob__opener::before {
    height: 1px;
    width: 120%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #cfccb9; }
  .notes-mob__opener::after {
    height: 1px;
    width: 120%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #cfccb9; }
  .notes-mob__opener.active::after {
    opacity: 0; }
  .notes-mob__wrap--orange .notes-mob__opener.active {
    color: #f65500; }
  .notes-mob__wrap--blue .notes-mob__opener.active {
    color: #0071bc; }
  .notes-mob__wrap--green .notes-mob__opener.active {
    color: #029550; }
  .notes-mob__wrap--red .notes-mob__opener.active {
    color: #d13d24; }
  .notes-mob__opener.active + .notes__item {
    display: block; }

.notes-mob .notes__item {
  display: none;
  position: relative; }

.order {
  /*margin-bottom: 80px;*/ }
  @media only screen and (min-width: 1024px) {
    .order {
      /*margin-bottom: 188px;*/ } }
  @media only screen and (min-width: 1024px) {
    .order__form {
      display: flex;
      justify-content: space-between;
    } }
  @media only screen and (min-width: 1024px) {
    .order__left, .order__right {
      flex: 0 0 auto;
      width: 48%; } }
  .order__left {
    margin-bottom: 70px; }
    @media only screen and (min-width: 1024px) {
      .order__left {
        margin-bottom: 0; } }
  @media only screen and (min-width: 768px) {
    .order__choose {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; } }
  .order__select {
    margin-bottom: 40px;
    font-family: "Museo Sans Cyrl", sans-serif; }
    .order__select > span {
      display: block;
      margin-bottom: 20px;
      font-size: 13px;
      line-height: 1.5; }
    @media only screen and (min-width: 768px) {
      .order__select {
        flex: 0 0 auto;
        width: 49%; } }
  .order__select--email .errorMessage {
    font-size: 13px;
    line-height: 13px; }
  .order__radio-wrap {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column; }
    @media only screen and (min-width: 1024px) {
      .order__radio-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px; } }
  .order__radio {
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    flex: 0 0 auto;
    width: 33%;
    margin-bottom: 15px; }
    @media only screen and (min-width: 1024px) {
      .order__radio {
        margin-bottom: 0px; } }
    .order__radio span::before, .order__radio span::after {
      border-radius: 50%; }
    .order__radio span::before {
      width: 15px;
      height: 15px;
      border: 1px solid #ccc;
      top: 5px;
      left: 0; }
    .order__radio span::after {
      width: 5px;
      height: 5px;
      background-color: #fff;
      opacity: 0;
      top: 10px;
      left: 5px; }
    .order__radio input:checked + span::before {
      background-color: #d13d24;
      border-color: #d13d24; }
    .order__radio input:checked + span::after {
      opacity: 1; }
    .order__radio input {
      opacity: 0;
      visibility: hidden;
      position: absolute;
      left: 0;
      top: 0; }
  .order__radio:hover span {
    color: #f65500; }
  .order__radio:active span {
    opacity: 0.7;
    color: #f65500; }

@media only screen and (max-width: 1024px) {
  .order__radio {
    width: 100%; } }

.order-candle__closed {
  position: relative;
  border: 3px solid rgba(204, 204, 204, 0.5);
  padding: 30px 30px 60px;
  text-align: center; }
  .order-candle__closed.hidden {
    display: none; }

.order-candle__opened {
  display: none; }
  .order-candle__opened.active {
    display: block; }

.order-candle__title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 30px; }
  .order-candle__opened .order-candle__title {
    text-align: left; }

.order-candle__text {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 18px;
  line-height: 1.4; }

.order-candle .btn-gradient {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px; }
  @media only screen and (min-width: 768px) {
    .order-candle .btn-gradient {
      width: 317px; } }

.order-candle .order-moleben__item {
  align-items: flex-start; }

.order-candle input {
  margin-bottom: 15px; }

.order-candle__add {
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  color: #9b9b9b;
  display: flex;
  align-items: center;
  height: 60px;
  font-size: 16px;
  margin-top: 15px;
  justify-content: center; }
  @media only screen and (min-width: 1025px) {
    .order-candle__add:hover {
      border-color: #f65500;
      color: #f65500; } }
  .order-candle__add--green {
    color: #029550;
    border-color: #029550; }

.order-candle__price-title {
  display: inline-block;
  width: 100%; }

@media only screen and (max-width: 1024px) {
  .order-candle__price-title {
    width: auto; } }

.order-moleben {
  margin-bottom: 10px; }
  .order-moleben--church {
    margin-bottom: 60px; }
  .order-moleben__title {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Museo Sans Cyrl", sans-serif; }
    .order-moleben__title span {
      display: block;
      margin-top: 15px; }
      .order-moleben__title span:first-child {
        margin-top: 0; }
      @media only screen and (min-width: 768px) {
        .order-moleben__title span {
          flex: 0 0 auto;
          width: 48%;
          margin-top: 0px; } }
    @media only screen and (min-width: 768px) {
      .order-moleben__title {
        display: flex;
        justify-content: space-between; } }
    .order-moleben__title-link.active {
      text-decoration: underline;
      color: #F65500; }
      .order-moleben__title-link.active:hover {
        opacity: 0.7; }
      .order-moleben__title-link.active:active {
        opacity: 0.5; }
  .order-moleben__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: default; }
    .order-candle .order-moleben__item {
      display: block; }
      @media only screen and (min-width: 768px) {
        .order-candle .order-moleben__item {
          display: flex;
          justify-content: space-between; } }
    .order-moleben__item--add {
      cursor: pointer; }
      .order-moleben__item--add .change .order-moleben__icon {
        border: none; }
        .order-moleben__item--add .change .order-moleben__icon::before, .order-moleben__item--add .change .order-moleben__icon::after {
          display: none; }
      .order-moleben__item--add .change .order-moleben__name {
        color: #212121; }
      .order-moleben__item--add .order-moleben__icon {
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        position: relative; }
        .order-moleben__item--add .order-moleben__icon::before, .order-moleben__item--add .order-moleben__icon::after {
          background-color: #ccc;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
        .order-moleben__item--add .order-moleben__icon::before {
          width: 2px;
          height: 26px; }
        .order-moleben__item--add .order-moleben__icon::after {
          height: 2px;
          width: 26px; }
      .order-moleben__item--add .order-moleben__name {
        color: #ccc; }
      .order-moleben__item--add .order-moleben__remove {
        display: none; }
    .order-moleben__item--add:hover .order-moleben__icon {
      border-color: #f65500; }
      .order-moleben__item--add:hover .order-moleben__icon::before, .order-moleben__item--add:hover .order-moleben__icon::after {
        background-color: #f65500; }
    .order-moleben__item--add:hover .order-moleben__name {
      color: #f65500; }
    .order-moleben__item--add:active {
      opacity: 0.7; }
  .order-moleben__saint {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 0 0%;
    margin-right: 20px;
    margin-bottom: 12px; }
    @media only screen and (min-width: 768px) {
      .order-moleben__saint {
        margin-bottom: 0; } }
  .order-moleben__icon {
    flex: 0 0 auto;
    width: 80px;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
    height: 80px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center 0;
    background-repeat: no-repeat; }
    .order-moleben__icon--sm {
      width: 60px;
      height: 60px; }
  .order-moleben__name {
    flex: 1 0 0%; }
  .order-moleben__person {
    position: relative;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.2; }
    @media only screen and (min-width: 768px) {
      .order-moleben__person {
        flex: 0 0 auto;
        width: 48%; } }
    .order-moleben__person span + input {
      padding: 0 0 5px 20px; }
    .order-moleben__person input {
      width: 100%; }
    .order-moleben__person span {
      position: absolute;
      top: 41%;
      left: 0;
      transform: translateY(-50%); }
    .order-moleben__person .order-moleben__input {
      position: relative; }
      .order-moleben__person .order-moleben__input .order-moleben__check {
        display: none; }
    .order-moleben__person .order-moleben__input.checked .order-moleben__check {
      position: absolute;
      display: block;
      content: '';
      top: 6px;
      right: 0px; }
    .order-moleben__person .order-moleben__input.error input::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #ff482f; }
    .order-moleben__person .order-moleben__input.error input::-moz-placeholder {
      /* Firefox 19+ */
      color: #ff482f; }
    .order-moleben__person .order-moleben__input.error input:-ms-input-placeholder {
      /* IE 10+ */
      color: #ff482f; }
    .order-moleben__person .order-moleben__input.error input:-moz-placeholder {
      /* Firefox 18- */
      color: #ff482f; }
  .order-moleben__remove {
    color: #d13d24;
    flex: 0 0 auto;
    width: 10%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (min-width: 1025px) {
      .order-moleben__remove:hover {
        color: #ff482f; } }

.moleben-drop {
  position: absolute;
  width: 275px;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 0 15px 1px rgba(204, 204, 204, 0.31);
  padding: 30px 0;
  z-index: 1;
  display: none; }
  @media only screen and (min-width: 768px) {
    .moleben-drop {
      width: 400px; } }
  .moleben-drop.active {
    display: block; }
  .moleben-drop::before {
    border: 5px solid transparent;
    border-bottom: 4px solid #fff;
    top: -9px;
    left: 9%; }
  .moleben-drop .order-moleben__saint {
    padding: 0 12px; }
    .moleben-drop .order-moleben__saint:not(:last-child) {
      margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      .moleben-drop .order-moleben__saint {
        padding: 0 30px; } }
    @media only screen and (min-width: 1025px) {
      .moleben-drop .order-moleben__saint:hover {
        background: #faf7df; } }

.order-names {
  background-image: url("../images/frame.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 30px;
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .order-names {
      margin-bottom: 80px;
      padding: 30px 60px 40px; } }
  .order-names--remembrance {
    background-image: url("../images/frame-black.jpg"); }
  .order-names__text {
    background-image: url("../images/lines.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: -20px;
    margin-bottom: 10px;
    background-position: 0 -2px; }
    .order-names__text textarea {
      height: 460px;
      resize: none;
      width: 100%;
      font-family: "Museo Sans Cyrl", sans-serif;
      font-style: italic;
      font-size: 24px;
      outline: none;
      background-color: transparent;
      border: none;
      /*line-height: 1.75;*/
      line-height: 2.38;
    }
    @media only screen and (min-width: 768px) {
      .order-names__text {
        margin-top: 35px; } }
  .order-names__cross {
    text-align: center; }
  .order-names__decor {
    width: 100%; }
    .order-names__decor:first-child {
      margin-bottom: 40px; }
  .order-names__title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: center;
    font-family: TriodPostnaja; }
    @media only screen and (min-width: 768px) {
      .order-names__title {
        font-size: 48px; } }
  .order-names__subtitle {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
    font-family: TriodPostnaja; }
    @media only screen and (min-width: 768px) {
      .order-names__subtitle {
        font-size: 24px; } }

.order-total .order__select {
  position: relative;
  width: 100%; }
  .order-total .order__select input {
    max-width: 370px;
    width: 100%;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 17px 30px; }
    @media only screen and (min-width: 1025px) {
      .order-total .order__select input:hover {
        border-color: #f65500; } }
    .order-total .order__select input:active, .order-total .order__select input:focus {
      border-color: #f65500; }

.order-total__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px; }
  .order-total__title--flex {
    display: flex;
    align-items: center; }

.order-total__subtitle {
  font-family: "Museo Sans Cyrl", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px; }
  .order-total__subtitle .price {
    font-style: normal;
    font-weight: bold;
    color: #00bb6e; }

.order-total__sum {
  text-align: center; }
  .order-total__sum .order-total__title {
    margin-bottom: 30px; }
  @media only screen and (min-width: 1024px) {
    .order-total__sum {
      width: 212px;
      margin: 0 auto; } }

.order-total__list {
  position: relative; }
  .order-total__list li {
    position: relative;
    margin-bottom: 10px;
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    padding-left: 20px; }
    .order-total__list li:last-child {
      margin-bottom: 0; }
  .order-total__list li::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d13d24;
    top: 6px;
    left: 0; }

.order-total__info-btn {
  margin-right: 10px; }

.order-modal {
  border-radius: 7px; }
  .order-modal .modal-dialog {
    border-radius: 7px; }
  .order-modal .modal-content {
    border-radius: 7px; }
  .order-modal .modal-header {
    padding: 20px; }
  .order-modal .modal-body {
    padding: 20px 0px 30px; }
  .order-modal .modal-header .modal-title {
    font-family: "Museo Cyrillic", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4; }
  .order-modal__list-wrapper {
    max-height: 300px;
    overflow: hidden;
    overflow-y: scroll; }
    @media (max-height: 666px) {
      .order-modal__list-wrapper {
        max-height: 220px; } }
  .order-modal__title.title {
    padding: 0px 20px;
    margin-bottom: 15px; }
  .order-modal__list {
    margin-bottom: 30px; }
  .order-modal__dynamic-item {
    padding: 10px 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    box-sizing: border-box;
    cursor: pointer; }
    .order-modal__dynamic-item .order-moleben__saint {
      margin-right: 0; }
    .order-modal__dynamic-item.active {
      background-color: #FAF7DF; }
  .order-modal__dynamic-item:hover {
    opacity: 0.7; }
  .order-modal__dynamic-item.active:hover {
    opacity: 1; }
  .order-modal .modal-btns {
    padding-top: 30px;
    display: flex;
    justify-content: center; }
  .order-modal__search {
    position: relative;
    padding: 10px 20px;
    padding-top: 0;
    margin-bottom: 25px; }
  .order-modal__search-clear {
    position: absolute;
    right: 40px;
    top: 25px;
    width: 12px;
    height: 12px;
    font-size: 0px;
    background-image: url("../img/closer_icon.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    z-index: 10; }
    .order-modal__search-clear:hover {
      opacity: 0.7; }
    .order-modal__search-clear:active {
      opacity: 0.5; }
  @media (max-width: 500px) {
    .order-modal {
      width: calc(100% - 20px);
      height: calc(100% - 20px); }
      .order-modal .modal-header {
        padding-bottom: 0px; }
      .order-modal__search {
        margin-bottom: 10px; }
      .order-modal__search.input input[type="text"] {
        height: 40px;
        font-size: 14px;
        line-height: 18px; }
      .order-modal .order-moleben__saint {
        margin-bottom: 0; }
      .order-modal .order-moleben__name {
        font-size: 14px;
        line-height: 18px; }
      .order-modal .modal-dialog {
        padding: 0px; } }
  @media (min-width: 500px) and (max-width: 768px) {
    .order-modal {
      width: calc(100% - 60px);
      height: calc(100% - 60px); } }

.order-modal.modal {
  overflow-y: hidden;
  right: auto;
  bottom: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }

@media (max-width: 500px) {
  .order-modal.modal.order-modal--wide {
    width: calc(100% - 20px); }
    .order-modal.modal.order-modal--wide .modal-dialog {
      padding: 0px; } }

.order-modal__dropdown {
  height: 100%; }
  .order-modal__dropdown-btn {
    position: relative; }
    .order-modal__dropdown-btn::after {
      position: absolute;
      content: '';
      width: 15px;
      height: 13px;
      top: 0px;
      bottom: 0px;
      margin-top: auto;
      margin-bottom: auto;
      left: 130px;
      background-image: url("../img/icon/icon-triangle.svg");
      -webkit-background-size: contain;
      background-size: contain;
      background-repeat: no-repeat;
      transition: 0.5s;
      opacity: 0.5; }
  .order-modal__dropdown-btn.active::after {
    transition: 0.5s;
    opacity: 1;
    transform: rotate(180deg); }
  .order-modal__dropdown-list {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s; }
  .order-modal__dropdown-list.active {
    transition: 0.5s;
    max-height: 1000px; }

select {
  display: none; }

.select {
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 0.8em 2em;
  position: relative;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 60px; }
  .select span {
    font-size: 18px;
    overflow: hidden; }
  .select::after {
    border: 4px solid transparent;
    border-top: 5px solid #ccc;
    content: "";
    display: block;
    margin-top: -0.1em;
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform-origin: 66% 66%;
    transition: transform-origin 0.15s ease-in-out; }
  @media only screen and (min-width: 1025px) {
    .select:not(.select--open):hover {
      border-color: #f65500; }
      .select:not(.select--open):hover::after {
        border-top-color: #f65500; } }
  .select:focus {
    border-color: #666; }
  .select--open {
    overflow: visible;
    border-color: #f65500;
    border-bottom-color: transparent;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px 5px 15px 1px rgba(204, 204, 204, 0.31); }
    .select--open::after {
      transform: rotate(-180deg);
      margin-top: -0.5em;
      border-top-color: #f65500; }
    .select--open .select__list {
      box-shadow: 0px 12px 15px 1px rgba(204, 204, 204, 0.31); }
  .select--medium {
    max-width: 30em; }
  .select__list {
    position: absolute;
    left: -1px;
    right: -1px;
    top: 100%;
    background-color: #fff;
    border-radius: 0 0 30px 30px;
    border: 1px solid #f65500;
    border-top: 0;
    box-sizing: border-box;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    transform-origin: 50% 0;
    transform: translateY(-2em);
    transition: transform 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.1s ease-out;
    z-index: -1;
    max-height: 170px;
    overflow-y: auto; }
    .select--open .select__list {
      visibility: visible;
      opacity: 1;
      z-index: 1;
      transform: translateY(0); }
  .select__item {
    padding: 0.5em 2em;
    cursor: pointer; }
    .select__item:hover {
      background: #faf7df; }
    .select__item--active {
      color: #ff482f;
      background: #faf7df; }
    .select__item--disabled {
      opacity: 0.3;
      cursor: not-allowed; }

.slider {
  position: relative;
  margin-bottom: 65px; }
  @media only screen and (min-width: 768px) {
    .slider {
      margin-bottom: 120px; } }
  .slider .align {
    width: 100%;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .slider .align {
        width: 90%;
        margin: 0 auto; } }
  .slider .block-heading {
    width: 90%;
    margin: 0 auto 30px; }
    @media only screen and (min-width: 768px) {
      .slider .block-heading {
        width: 100%;
        margin: 0; } }
  .slider__about {
    margin-bottom: 45px;
    display: block; }
    @media only screen and (min-width: 768px) {
      .slider__about {
        display: flex;
        align-items: center; } }
  .slider__slide {
    display: flex;
    align-items: center;
    flex-direction: column; }
    @media only screen and (min-width: 1024px) {
      .slider__slide {
        align-items: flex-start;
        flex-direction: row; } }
  .slider__left {
    order: 1;
    width: 90%;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      .slider__left {
        width: 100%;
        margin: 0; } }
    @media only screen and (min-width: 1024px) {
      .slider__left {
        flex: 0 0 auto;
        width: 45%;
        order: 0;
        padding-right: 40px; } }
  .slider__right {
    order: 0;
    width: 100%;
    height: 384px;
    margin-bottom: 30px; }
    @media only screen and (min-width: 1024px) {
      .slider__right {
        margin-bottom: 0;
        order: 1;
        flex: 0 0 auto;
        width: 55%;
        height: 533px; } }
  .slider__text {
    font-family: "Museo Sans Cyrl", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 25px; }
    @media only screen and (min-width: 768px) {
      .slider__text {
        margin-bottom: 45px;
        overflow-y: scroll;
        max-height: 300px; } }
    .slider__text > div {
      overflow: hidden;
      text-overflow: ellipsis; }
      .slider__text > div.active {
        max-height: unset; }
    .slider__text a {
      color: #7c872e;
      border-bottom: 1px solid #7c872e;
      opacity: 0.7; }
      @media only screen and (min-width: 1025px) {
        .slider__text a:hover {
          opacity: 1; } }
  .slider__img {
    flex: 0 0 auto;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px; }
    @media only screen and (min-width: 768px) {
      .slider__img {
        margin: 0;
        width: 120px;
        height: 120px; } }
  .slider__church {
    flex: 1 0 0%; }
    @media only screen and (min-width: 768px) {
      .slider__church {
        padding-left: 40px; } }
  .slider__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px; }
  .slider__note {
    font-family: "Museo Sans Cyrl", sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6; }
  .slider .slider__video .swiper-pagination {
    width: 100%;
    top: 355px;
    bottom: auto; }
  .slider .btn-gradient {
    display: block;
    width: 288px;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      .slider .btn-gradient {
        display: inline-block;
        width: auto; } }

.slider .swiper-wrapper {
  height: auto; }

.slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 10px;
  width: 15px;
  height: 15px;
  border-color: #2FB9AA; }

.slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2FB9AA; }

.slider .jsCurchReadMore + [data-readmore-toggle] {
  display: inline; }

.slider .slider__video {
  margin-top: 25px; }

.slider .slider__left {
  height: 100%; }

.slider .video {
  -webkit-background-size: contain;
  background-size: contain; }

@media (max-width: 1023px) {
  .slider .slider__video {
    display: flex; }
  .slider .slider__right {
    margin-bottom: 50px;
    padding-bottom: 20px; } }

/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight {
  height: auto; }
  .swiper-container-autoheight .swiper-slide {
    height: auto; }
  .swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }
  .swiper-container-3d .swiper-wrapper,
  .swiper-container-3d .swiper-slide,
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom,
  .swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }
  .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y; }

.swiper-container-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }
  .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  outline: none; }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 100%;
    height: 100%;
    fill: #ea3518; }
  @media only screen and (min-width: 1025px) {
    .swiper-button-prev:hover svg,
    .swiper-button-next:hover svg {
      fill: #212121; } }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto; }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: 100%;
  text-align: center; }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative; }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 100%;
  background: transparent;
  border: 2px solid #ff482f;
  cursor: pointer;
  margin: 0 6px;
  outline: none; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  background: #ff482f; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }
  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block; }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px; }
    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      display: inline-block;
      -webkit-transition: 200ms top, 200ms -webkit-transform;
      transition: 200ms top, 200ms -webkit-transform;
      -o-transition: 200ms transform, 200ms top;
      transition: 200ms transform, 200ms top;
      transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }
  .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0; }

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }
  .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }
  .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg,
  .swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }
  .swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }
  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none; }

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto; }
  .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }
  .swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%; }
    .swiper-container-cube .swiper-slide .swiper-slide {
      pointer-events: none; }
  .swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0; }
  .swiper-container-cube .swiper-slide-active {
    pointer-events: auto;
    pointer-events: auto;
    visibility: visible; }
    .swiper-container-cube .swiper-slide-active .swiper-slide-active {
      pointer-events: auto; }
  .swiper-container-cube .swiper-slide-next,
  .swiper-container-cube .swiper-slide-prev,
  .swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible; }
  .swiper-container-cube .swiper-slide-shadow-top,
  .swiper-container-cube .swiper-slide-shadow-bottom,
  .swiper-container-cube .swiper-slide-shadow-left,
  .swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0; }

.swiper-container-flip {
  overflow: visible; }
  .swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1; }
    .swiper-container-flip .swiper-slide .swiper-slide {
      pointer-events: none; }
  .swiper-container-flip .swiper-slide-active {
    pointer-events: auto; }
    .swiper-container-flip .swiper-slide-active .swiper-slide-active {
      pointer-events: auto; }
  .swiper-container-flip .swiper-slide-shadow-top,
  .swiper-container-flip .swiper-slide-shadow-bottom,
  .swiper-container-flip .swiper-slide-shadow-left,
  .swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

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

.tabs-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: 100%; }

.top {
  color: #fff;
  background-image: url("../images/church_sm_mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
  height: 80px; }
  @media only screen and (min-width: 768px) {
    .top {
      margin-bottom: 60px; } }
  @media only screen and (min-width: 1024px) {
    .top {
      height: 180px;
      background-image: url("../images/church_sm.jpg"); } }
  .home .top {
    height: 546px;
    margin-bottom: 50px;
    background-image: url("../images/church_mobile.jpg"); }
    @media only screen and (min-width: 768px) {
      .home .top {
        margin-bottom: 120px; } }
    @media only screen and (min-width: 1024px) {
      .home .top {
        height: 700px;
        background-image: url("../images/church.jpg"); } }
  .top__text {
    padding-top: 50px;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .top__text {
        font-size: 20px;
        padding-top: 90px;
        margin-bottom: 30px; } }
  .top__heading {
    font-size: 25px;
    line-height: 1.1;
    margin: 0 0 50px;
    font-weight: 500; }
    @media only screen and (min-width: 768px) {
      .top__heading {
        font-size: 45px;
        font-weight: 700; } }
  .top .btn-gradient--primary {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .top .btn-gradient--primary {
        width: 240px; } }

.video {
  display: block;
  background-image: url("../images/batushka_img.png");
  background-repeat: no-repeat;
  background-size: 140%;
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  cursor: pointer; }
  @media only screen and (min-width: 768px) {
    .video {
      background-size: contain; } }
  @media only screen and (min-width: 1025px) {
    .video:hover svg {
      fill: #029550; } }
  .video::before {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0; }
  .video svg {
    position: absolute;
    width: 14px;
    height: 19px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    fill: #ff482f; }

/*COMMON*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

@font-face {
  font-family: 'HelveticaNeue';
  src: url("https://pravzhizn.com/dist/zapiski_new/fonts/HelveticaNeue.woff") format("woff"), url("https://pravzhizn.com/dist/zapiski_new/fonts/HelveticaNeue.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoCyrillic-300';
  src: url("../fonts/MuseoCyrillic-300.woff") format("woff"), url("../fonts/MuseoCyrillic-300.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoCyrillic-500';
  src: url("../fonts/MuseoCyrillic-500.woff") format("woff"), url("../fonts/MuseoCyrillic-500.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoCyrillic-700';
  src: url("../fonts/MuseoCyrillic-700.woff") format("woff"), url("../fonts/MuseoCyrillic-700.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoCyrillic-900';
  src: url("../fonts/MuseoCyrillic-900.woff") format("woff"), url("../fonts/MuseoCyrillic-900.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl-300';
  src: url("../fonts/MuseoSansCyrl-300.woff") format("woff"), url("../fonts/MuseoSansCyrl-300.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl-500';
  src: url("../fonts/MuseoSansCyrl-500.woff") format("woff"), url("../fonts/MuseoSansCyrl-500.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl-500Italic';
  src: url("../fonts/MuseoSansCyrl-500Italic.woff") format("woff"), url("../fonts/MuseoSansCyrl-500Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl-700';
  src: url("../fonts/MuseoSansCyrl-700.woff") format("woff"), url("../fonts/MuseoSansCyrl-700.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl-900';
  src: url("../fonts/MuseoSansCyrl-900.woff") format("woff"), url("../fonts/MuseoSansCyrl-900.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

body {
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-family: "MuseoSansCyrl-500", "Arial", sans-serif;
  color: #212121; }

h1 {
  margin: 0px; }

b {
  font-weight: normal; }

p {
  margin-top: 0;
  margin-bottom: 0; }

a {
  color: #212121;
  text-decoration: none; }
  a:hover {
    color: #F65500; }
    a:hover svg, a:hover use, a:hover path {
      fill: #F65500; }
  a:active {
    color: #F65500;
    opacity: 0.7; }
    a:active svg, a:active use, a:active path {
      fill: #F65500; }

ul {
  padding: 0px;
  margin: 0px;
  list-style: none; }

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

.title {
  font-family: "MuseoCyrillic-700";
  font-size: 22px;
  line-height: 22px; }
  .title--sm {
    font-size: 20px;
    line-height: 20px; }
  .title--md {
    display: inline-block;
    font-size: 22px;
    line-height: 30px; }
.title--l {
    display: inline-block;
    /*font-size: 24px;
    line-height: 35px;*/
    font-size: 16px;
    line-height: 20px;
    font-family: arial;
    text-align: center;
    color: #732701;
}
  .title--xl {
    display: inline-block;
    font-size: 34px;
    line-height: 45px; }

.text {
  font-size: 18px;
  line-height: 26px; }

.text-secondary {
  font-family: "MuseoCyrillic-500";
  font-size: 16px;
  line-height: 22px; }

.text-yellow {
  color: #F7EC30; }

.text-red {
  color: #FF482F; }

.text-bolder {
  font-family: "MuseoSansCyrl-900"; }

.gradient-bg {
  position: relative;
  padding: 5px;
  box-sizing: border-box; }
  .gradient-bg__logo {
    display: flex;
    position: absolute;
    top: -40px;
    left: 40px; }
  .gradient-bg--molitva {
    background: linear-gradient(45deg, #F79F33 0, #C5322E 100%); }
  .gradient-bg--brotherhood {
    background: linear-gradient(45deg, #2FB9AA 0, #4794EF 100%); }
  .gradient-bg--grey {
    background: #FAFAF9; }
  .gradient-bg--green {
    background: linear-gradient(45deg, #008F49 0, #00BB6E 100%); }
  .gradient-bg__btn {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    bottom: -28px; }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
  text-align: center; }
  .section-header__text {
    display: inline-block;
    margin-bottom: 10px;
    color: #9B9B9B;
    font-family: "MuseoCyrillic-500";
    font-size: 20px;
    line-height: 30px; }
  .section-header__title {
    display: inline-block;
    font-family: "MuseoCyrillic-700";
    font-size: 30px;
    line-height: 40px; }

@media (min-width: 320px) and (max-width: 1024px) {
  .gradient-bg--desktop {
    padding: 0px;
    background: transparent; }
    .gradient-bg--desktop .gradient-bg__logo {
      display: none; } }

.container {
  max-width: 768px;
  padding: 0px 20px;
  margin: 0 auto;
  box-sizing: border-box; }
  .container--wide {
    padding: 0px 8px; }

.modal-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: #00000071; }

.visually-hidden {
  max-width: 0;
  max-height: 0;
  overflow: auto;
  opacity: 0;
  transition: all 0.3s ease-in-out; }

.hidden {
  display: none !important; }

@media (min-width: 768px) {
  .container {
    max-width: 1024px; }
    .container--wide {
      padding: 0px 20px; } }

@media (min-width: 1024px) {
  .container {
    max-width: 1440px;
    padding: 0px 40px; }
    .container--wide {
      padding: 0px 40px; }
  .title--md {
    font-size: 26px;
    line-height: 35px; }
    .title--l {
        /*font-size: 35px;
    line-height: 45px;*/
        font-size: 16px;
        line-height: 20px;
        font-family: arial;
        text-align: left;
        color: #732701;
    }
  .title--xl {
    font-size: 45px;
    line-height: 55px; }
  .text-secondary {
    font-size: 18px;
    line-height: 24px; }
  .section-header {
    padding-bottom: 95px; }
    .section-header__title {
      font-size: 35px;
      line-height: 45px; } }

@media (min-width: 1440px) {
  .container {
    padding: 0px 157px; }
    .container--wide {
      padding: 0px 157px; } }

ul.list {
  margin-bottom: 35px;
  margin-top: 35px;
  padding: 0;
  list-style-type: none; }
  ul.list li {
    position: relative;
    font-family: "MuseoCyrillic-500";
    font-size: 18px;
    line-height: 1.4;
    padding-left: 38px; }
    ul.list li:not(:last-child) {
      margin-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      ul.list li:not(:last-child) {
        margin-bottom: 15px; } }
    ul.list li::before {
      content: "";
      position: absolute;
      display: block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #D13D24;
      top: 10px;
      left: 0; }

ul.list.list--green li::before {
  background-color: #0A9C56; }

h1.static-page-title, .static-page-title {
  margin-bottom: 20px;
  line-height: 40px; }

.main-content.main-content--static-page {
  padding-bottom: 80px; }

.icon {
  display: block;
  content: '';
  font-size: 0px !important;
  background-repeat: no-repeat; }
  .icon--vk {
    background-image: url("../../main_pravzhizn_new/img/social/vk.png"); }
  .icon--fb {
    background-image: url("../../main_pravzhizn_new/img/social/fb.png"); }
  .icon--yb {
    background-image: url("../../main_pravzhizn_new/img/social/yt.png"); }
  .icon--tg {
    background-image: url("../../main_pravzhizn_new/img/social/tg.png"); }
  .icon--inst {
    background-image: url("../../main_pravzhizn_new/img/social/icon-social-inst.png"); }
  .icon--zen {
    background-image: url("../../main_pravzhizn_new/img/social/logo-social-zen.svg"); }
  .icon__social {
    width: 45px;
    height: 45px;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center; }
  .icon__payment {
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center; }
    .icon__payment--visa {
      width: 53px;
      height: 15px;
      background-image: url(../img/icon/icon-payment-visa.svg); }
    .icon__payment--mc {
      width: 45px;
      height: 35px;
      background-image: url(../img/icon/icon-payment-mc.svg); }
    .icon__payment--mir {
      width: 45px;
      height: 13px;
      background-image: url(../img/icon/icon-payment-mir.svg); }
    .icon__payment--ya {
      width: 81px;
      height: 23px;
      background-image: url(../img/icon/icon-payment-ya-kassa.svg); }
  .icon__phone {
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center; }
    .icon__phone-mts {
      width: 40px;
      height: 40px;
      background-image: url(../img/icon/logo-phone-mts.svg); }
    .icon__phone-mega {
      width: 35px;
      height: 35px;
      background-image: url(../img/icon/logo-phone-megafon.svg); }
    .icon__phone-bee {
      width: 40px;
      height: 40px;
      background-image: url(../img/icon/logo-phone-beeline.svg); }
    .icon__phone-tele {
      width: 74px;
      height: 29px;
      background-image: url(../img/icon/logo-phone-tele2.svg); }
  .icon__quotes {
    width: 37px;
    height: 27px;
    color: #FF482F;
    font-size: 100px;
    line-height: 70px;
    font-family: 'HelveticaNeue';
    font-style: normal; }
  .icon__play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    background-image: url(../img/icon/play_orange.svg);
    -webkit-background-size: 25px;
    background-size: 25px;
    background-position: 30px center;
    border: 3px solid #F65500;
    transition: 0.3s; }
    .icon__play:hover {
      opacity: 0.8;
      box-shadow: 0px 0px 10px 0px #f65500; }
  .icon__sheet {
    width: 60px;
    height: 73px;
    background-image: url(../img/icon/icon-sheet-gold.svg); }
  .icon__letter {
    width: 80px;
    height: 57px;
    background-image: url(../img/icon/icon-mail-gold.svg); }
  .icon__church {
    width: 80px;
    height: 78px;
    background-image: url(../img/icon/icon-church-gold.svg); }
  .icon__calendar {
    width: 52px;
    height: 52px;
    background-image: url(../img/icon/icon-calendar-gold.svg); }
  .icon__calendar-black {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon/icon-calendar-black.svg); }
  .icon__arrow-rounded {
    width: 93px;
    height: 54px;
    background-image: url(../img/icon/icon-arrow-rounded-orange.svg); }
  .icon__store-apple {
    width: 177px;
    height: 60px;
    background-image: url(../img/icon/logo-apple-store.svg); }
  .icon__store-google {
    width: 177px;
    height: 60px;
    background-image: url(../img/icon/logo-google-play.svg); }
  .icon__check {
    width: 26px;
    height: 20px;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url(../img/icon/icon-check.svg); }

.burger {
  position: relative;
  display: flex;
  align-items: center;
  width: 24px;
  height: 16px;
  font-size: 0px;
  line-height: 0px;
  box-sizing: border-box; }
  .burger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #ffffff; }
  .burger::before, .burger::after {
    display: block;
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    top: 0px;
    background-color: #ffffff;
    transition: 0.2s; }
  .burger::after {
    top: auto;
    bottom: 0px; }
  .burger--opened span {
    background-color: transparent; }
  .burger--opened::before {
    top: 7px;
    transform: rotate(-45deg); }
  .burger--opened::after {
    bottom: 7px;
    transform: rotate(45deg); }

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 28px;
  height: 60px;
  max-width: 308px;
  font-size: 16px;
  line-height: 16px;
  border-radius: 35px; }
  .btn span {
    text-align: center;
    border-radius: 35px; }
  .btn--sm {
    height: 40px; }
  .btn--xl {
    height: 87px;
    border-radius: 43.5px; }
    .btn--xl span {
      border-radius: 43.5px; }
  .btn__icon {
    margin-right: 10px;
    opacity: 0.25; }
    .btn__icon--glass {
      width: 14px;
      height: 14px; }
    .btn__icon--user {
      width: 11px;
      height: 14px; }
  .btn--red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2px 2px;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
    background: #EA3518; }
    .btn--red:hover {
      color: #ffffff;
      background: #FF482F; }
      .btn--red:hover span {
        color: #ffffff;
        background: #FF482F; }
    .btn--red:active {
      color: #ffffff;
      background: #D13D24;
      opacity: 1; }
      .btn--red:active span {
        color: #ffffff;
        background: #D13D24; }
  .btn--transparent {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px; }
    .btn--transparent:hover {
      background-color: #ffffff;
      color: #212121; }
      .btn--transparent:hover span {
        color: #212121; }
      .btn--transparent:hover .btn__icon {
        opacity: 1; }
      .btn--transparent:hover svg, .btn--transparent:hover path, .btn--transparent:hover use {
        fill: #0A9C56; }
    .btn--transparent:active {
      color: #212121; }
      .btn--transparent:active span {
        color: #212121; }
      .btn--transparent:active svg, .btn--transparent:active path, .btn--transparent:active use {
        fill: #212121; }
  .btn--transparent-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    box-sizing: border-box;
    color: #ffffff;
    border: 2px solid #ffffff; }
    .btn--transparent-white span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%; }
    .btn--transparent-white:hover {
      color: #ffffff;
      opacity: 0.7; }
    .btn--transparent-white:active {
      opacity: 0.5; }
  .btn--transparent-green {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    box-sizing: border-box;
    color: #0A9C56;
    background: linear-gradient(45deg, #008F49 0, #00BB6E 100%); }
    .btn--transparent-green span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      background-color: #ffffff; }
    .btn--transparent-green:hover {
      color: #ffffff; }
      .btn--transparent-green:hover span {
        background: transparent; }
  .btn--transparent-darkgreen {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    box-sizing: border-box;
    color: #026837;
    background: #026837;
    box-shadow: 0px 10px 20px 0px rgba(2, 104, 55, 0.1); }
    .btn--transparent-darkgreen span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      background-color: #ffffff; }
    .btn--transparent-darkgreen:hover {
      color: #02C7B5;
      background: #02C7B5; }
      .btn--transparent-darkgreen:hover span {
        color: #02C7B5;
        background: #ffffff; }
    .btn--transparent-darkgreen:active {
      opacity: 1;
      color: #026837;
      background: #026837; }
      .btn--transparent-darkgreen:active span {
        opacity: 1;
        color: #026837;
        background: #ffffff; }
  .btn--transparent-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    box-sizing: border-box;
    color: #1B1564;
    background: #1B1564;
    box-shadow: 0px 10px 20px 0px rgba(2, 104, 55, 0.1); }
    .btn--transparent-blue span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      background-color: #ffffff; }
    .btn--transparent-blue:hover {
      color: #5B71A6;
      background: #5B71A6; }
      .btn--transparent-blue:hover span {
        color: #5B71A6;
        background: #ffffff; }
    .btn--transparent-blue:active {
      opacity: 1;
      color: #1B1564;
      background: #1B1564; }
      .btn--transparent-blue:active span {
        opacity: 1;
        color: #1B1564;
        background: #ffffff; }
  .btn--green {
    color: #ffffff;
    border-radius: 35px;
    border: 2px solid #0A9C56;
    background-color: #0A9C56;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1); }
    .btn--green:hover {
      color: #0A9C56;
      background-color: #ffffff; }
  .btn--transparent-yellow {
    color: #ffffff;
    border: 2px solid #F7EC30;
    border-radius: 25px; }
    .btn--transparent-yellow:hover {
      color: #212121;
      background-color: #F7EC30;
      opacity: 1; }
      .btn--transparent-yellow:hover span {
        color: #212121;
        opacity: 1; }
    .btn--transparent-yellow:active {
      color: #212121;
      background-color: #F7AE06;
      border-color: #F7AE06;
      opacity: 1; }
      .btn--transparent-yellow:active span {
        color: #212121;
        opacity: 1; }
  .btn--grad-yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    border-radius: 35px;
    box-sizing: border-box;
    color: #000000;
    background: linear-gradient(45deg, #F7F606 0, #F7A406 100%);
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1); }
    .btn--grad-yellow span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-yellow:hover {
      color: #000000;
      background: #F7EC30;
      opacity: 1; }
      .btn--grad-yellow:hover span {
        background: #F7EC30;
        opacity: 1; }
    .btn--grad-yellow:active {
      color: #000000;
      background: #F7AE06;
      opacity: 1; }
      .btn--grad-yellow:active span {
        background: #F7AE06;
        opacity: 1; }
  .btn--grad-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #2FB9AA 0, #4794EF 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-blue span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-blue:hover {
      color: #4794EF; }
      .btn--grad-blue:hover span {
        background: #ffffff; }
    .btn--grad-blue:hover {
      color: #ffffff;
      background: #2FB9AA;
      opacity: 1; }
      .btn--grad-blue:hover span {
        background: #2FB9AA;
        opacity: 1; }
    .btn--grad-blue:active {
      color: #ffffff;
      background: #4794EF;
      opacity: 1; }
      .btn--grad-blue:active span {
        background: #4794EF;
        opacity: 1; }
  .btn--grad-maroon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #88021B 0, #D93A3C 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-maroon span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-maroon:hover {
      color: #C5322E; }
      .btn--grad-maroon:hover span {
        background: #ffffff; }
    .btn--grad-maroon:hover {
      color: #ffffff;
      background: #88021B;
      opacity: 1; }
      .btn--grad-maroon:hover span {
        background: #88021B;
        opacity: 1; }
    .btn--grad-maroon:active {
      color: #ffffff;
      background: #D93A3C;
      opacity: 1; }
      .btn--grad-maroon:active span {
        background: #D93A3C;
        opacity: 1; }
  .btn--grad-green {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #008F49 0, #00BB6E 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-green span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-green:hover {
      color: #0A9C56; }
      .btn--grad-green:hover span {
        background: #ffffff; }
    .btn--grad-green:hover {
      color: #ffffff;
      background: #008F49;
      opacity: 1; }
      .btn--grad-green:hover span {
        background: #008F49;
        opacity: 1; }
    .btn--grad-green:active {
      color: #ffffff;
      background: #00BB6E;
      opacity: 1; }
      .btn--grad-green:active span {
        background: #00BB6E;
        opacity: 1; }
  .btn--grad-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #F79F33 0, #C5322E 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-gold span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-gold:hover {
      color: #C5322E; }
      .btn--grad-gold:hover span {
        background: #ffffff; }
    .btn--grad-gold:hover {
      color: #ffffff;
      background: #F79F33;
      opacity: 1; }
      .btn--grad-gold:hover span {
        background: #F79F33;
        opacity: 1; }
    .btn--grad-gold:active {
      color: #ffffff;
      background: #C5322E;
      opacity: 1; }
      .btn--grad-gold:active span {
        background: #C5322E;
        opacity: 1; }
  .btn--grad-greenlight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #02C7B5 0, #029550 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-greenlight span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-greenlight:hover {
      color: #2FB9AA; }
      .btn--grad-greenlight:hover span {
        background: #ffffff; }
    .btn--grad-greenlight:hover {
      color: #ffffff;
      background: #02C7B5;
      opacity: 1; }
      .btn--grad-greenlight:hover span {
        background: #02C7B5;
        opacity: 1; }
    .btn--grad-greenlight:active {
      color: #ffffff;
      background: #029550;
      opacity: 1; }
      .btn--grad-greenlight:active span {
        background: #029550;
        opacity: 1; }
  .btn--grad-greenlighter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #5BDBC7 0, #40A854 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-greenlighter span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-greenlighter:hover {
      color: #2FB9AA; }
      .btn--grad-greenlighter:hover span {
        background: #ffffff; }
    .btn--grad-greenlighter:hover {
      color: #ffffff;
      background: #5BDBC7;
      opacity: 1; }
      .btn--grad-greenlighter:hover span {
        background: #5BDBC7;
        opacity: 1; }
    .btn--grad-greenlighter:active {
      color: #ffffff;
      background: #40A854;
      opacity: 1; }
      .btn--grad-greenlighter:active span {
        background: #40A854;
        opacity: 1; }
  .btn--grad-violet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #C65ADA 0, #7547B5 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-violet span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-violet:hover {
      color: #7547B5; }
      .btn--grad-violet:hover span {
        background: #ffffff; }
    .btn--grad-violet:hover {
      color: #ffffff;
      background: #C65ADA;
      opacity: 1; }
      .btn--grad-violet:hover span {
        background: #C65ADA;
        opacity: 1; }
    .btn--grad-violet:active {
      color: #ffffff;
      background: #7547B5;
      opacity: 1; }
      .btn--grad-violet:active span {
        background: #7547B5;
        opacity: 1; }
  .btn--grad-yellowdark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    padding: 2px 2px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(45deg, #E4C600 0, #C69000 100%);
    border-radius: 35px;
    border: none;
    box-shadow: 0px 10px 20px 0px rgba(2, 152, 86, 0.1);
    box-sizing: border-box; }
    .btn--grad-yellowdark span {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      border-radius: 35px; }
    .btn--grad-yellowdark:hover {
      color: #B68400; }
      .btn--grad-yellowdark:hover span {
        background: #ffffff; }
    .btn--grad-yellowdark:hover {
      color: #ffffff;
      background: #E4C600;
      opacity: 1; }
      .btn--grad-yellowdark:hover span {
        background: #E4C600;
        opacity: 1; }
    .btn--grad-yellowdark:active {
      color: #ffffff;
      background: #C69000;
      opacity: 1; }
      .btn--grad-yellowdark:active span {
        background: #C69000;
        opacity: 1; }

.btn.not-active {
  opacity: 0.7;
  cursor: default;
  background-color: #9B9B9B; }
  .btn.not-active span {
    background-color: #9B9B9B; }

.btn.not-active:hover {
  background-color: #9B9B9B; }
  .btn.not-active:hover span {
    background-color: #9B9B9B; }

.btn.btn--red.not-active {
  background: #EA3518; }
  .btn.btn--red.not-active span {
    background: #EA3518; }
  .btn.btn--red.not-active:hover {
    background: #EA3518; }
    .btn.btn--red.not-active:hover span {
      background: #EA3518; }

.info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  color: #CCCCCC;
  border: 2px solid #CCCCCC;
  border-radius: 50%; }
  .info-btn:hover {
    color: #F65500;
    border-color: #F65500; }
  .info-btn:active {
    opacity: 0.5; }
  .info-btn__popup {
    position: absolute;
    padding: 10px 15px;
    top: -62px;
    left: -15px;
    max-width: 300px;
    font-size: 13px;
    line-height: 17px;
    font-family: "MuseoSansCyrl-500";
    font-weight: 500;
    border: 1px solid #CCCCCC;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0px 3px 15px -11px black; }
    .info-btn__popup::before {
      display: block;
      position: absolute;
      content: '';
      width: 10px;
      height: 10px;
      bottom: -6px;
      left: 19px;
      transform: rotate(-45deg);
      background-color: #ffffff;
      border: 1px solid #CCCCCC;
      border-top: none;
      border-right: none; }

.tabs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 16px;
  line-height: 60px;
  font-family: "MuseoCyrillic-500"; }
  .tabs__item {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 2px;
    border-radius: 35px;
    box-sizing: border-box; }
    .tabs__item span {
      display: flex;
      justify-content: center;
      padding: 0px 15px;
      height: 100%;
      width: 100%;
      background-color: #ffffff;
      border-radius: 35px; }
    .tabs__item:hover {
      color: #F65500; }
  .tabs__item--active {
    color: #F65500;
    background: linear-gradient(45deg, #F79F33 0, #C5322E 100%); }
  .tabs--sm {
    font-size: 16px;
    line-height: 40px; }
    .tabs--sm .tabs__item {
      height: 40px; }
      .tabs--sm .tabs__item span {
        font-size: 16px;
        line-height: 40px; }
  .tabs--adaptive {
    font-size: 16px;
    line-height: 40px; }
    .tabs--adaptive .tabs__item {
      height: 40px; }
      .tabs--adaptive .tabs__item span {
        font-size: 16px;
        line-height: 38px; }
  .tabs--list {
    flex-wrap: nowrap;
    flex-direction: column; }
    .tabs--list .tabs__wrapper {
      border-top: 2px solid #EDEDE6; }
    .tabs--list .tabs__wrapper:last-child {
      border-bottom: 2px solid #EDEDE6; }
    .tabs--list .tabs__item {
      padding: 0px;
      border-radius: 0px; }
      .tabs--list .tabs__item span {
        align-items: center; }
    .tabs--list .tabs__item--active {
      background: transparent; }
  .tabs--biege .tabs__item span {
    background-color: #FAF7DF; }
  .tabs--grey .tabs__item span {
    background-color: #FAFAF9; }
  .tabs--green .tabs__item:hover {
    color: #0A9C56; }
  .tabs--green .tabs__item--active {
    color: #0A9C56;
    background: linear-gradient(45deg, #008F49 0, #00BB6E 100%); }

.switch {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  font-family: "MuseoCyrillic-500"; }
  .switch__item {
    text-align: center;
    padding-bottom: 17px;
    flex: 1;
    border-bottom: 2px solid #EDEDE6; }
    .switch__item:hover {
      color: #0A9C56; }
  .switch__item--active {
    color: #0A9C56;
    border-color: #0A9C56; }

.info {
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  line-height: 18px;
  font-family: "MuseoCyrillic-300";
  color: #9B9B9B; }
  .info__date {
    margin-right: 40px; }
  .info__watched {
    display: flex;
    align-items: flex-end; }
    .info__watched-icon {
      margin-right: 15px;
      width: 34px;
      height: 20px;
      display: inline-block; }

.badge {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-family: "MuseoCyrillic-500";
  font-size: 22px;
  line-height: 28px;
  border-radius: 5px;
  border: 5px solid #EDEDE6;
  color: #F65500; }

.link {
  color: #F65500;
  text-decoration: underline; }
  .link--scour-swamp {
    color: #7C872F; }

.input {
  position: relative; }
  .input label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 20px; }
  .input__field, .input input[type="text"] {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0px 20px;
    height: 60px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 30px;
    border: 1px solid #EDEDE6;
    box-sizing: border-box;
    transition: border 0.3s; }
    .input__field::-webkit-input-placeholder, .input input[type="text"]::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #9B9B9B; }
    .input__field::-moz-placeholder, .input input[type="text"]::-moz-placeholder {
      /* Firefox 19+ */
      color: #9B9B9B; }
    .input__field:-ms-input-placeholder, .input input[type="text"]:-ms-input-placeholder {
      /* IE 10+ */
      color: #9B9B9B; }
    .input__field:-moz-placeholder, .input input[type="text"]:-moz-placeholder {
      /* Firefox 18- */
      color: #9B9B9B; }
    .input__field:focus, .input input[type="text"]:focus {
      outline: none;
      border-color: #FF482F; }
  .input__field--big {
    color: #FF482F;
    font-size: 40px;
    line-height: 40px; }
  .input input[type="checkbox"] {
    display: none; }
  .input input[type="checkbox"] + label {
    position: relative;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 30px;
    font-size: 13px;
    line-height: 15px;
    color: #9B9B9B;
    cursor: pointer; }
    .input input[type="checkbox"] + label a {
      display: inline-block;
      margin-right: 5px; }
    .input input[type="checkbox"] + label span {
      display: inline-block;
      margin-right: 5px; }
  .input input[type="checkbox"] + label::before {
    position: absolute;
    content: '';
    left: 0px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 2px;
    box-sizing: border-box; }
  .input input[type="checkbox"]:checked + label::before {
    background-image: url(../img/icon/icon-check.svg);
    background-position: center;
    background-repeat: no-repeat; }
  .input input[type="checkbox"] + label:hover::before {
    border-color: #FF482F; }
  .input--disabled .input__field, .input--disabled input[type="text"] {
    color: #9B9B9B; }
  .input__thumb {
    position: absolute;
    height: 24px;
    right: 19px;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 20px;
    line-height: 24px;
    color: #212121;
    font-style: normal; }
    .input__thumb--grey {
      height: 85%;
      display: flex;
      align-items: center;
      padding-left: 10px;
      background-color: #ffffff;
      overflow: hidden;
      font-size: 16px;
      line-height: 16px;
      color: #9B9B9B;
      font-style: italic; }
  .input--squared input[type="text"] {
    border-radius: 5px; }

.select .select2-container--default {
  height: 56px;
  border-radius: 30px;
  border: none; }
  .select .select2-container--default .select2-selection--single {
    height: 100%;
    padding-left: 30px;
    padding-right: 50px;
    border-radius: 30px;
    border: 1px solid #CCCCCC;
    outline: none; }
    .select .select2-container--default .select2-selection--single .select2-selection__rendered {
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0px;
      font-size: 16px;
      line-height: 26px;
      color: #212121; }
    .select .select2-container--default .select2-selection--single .select2-selection__arrow {
      top: 0px;
      bottom: 0px;
      right: 26px;
      margin-top: auto;
      margin-bottom: auto;
      width: 10px;
      height: 8px;
      transition: transform 0.3s;
      transform: rotate(0deg); }
      .select .select2-container--default .select2-selection--single .select2-selection__arrow b {
        position: relative;
        display: block;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        margin-left: 0;
        margin-top: 0px;
        border: none;
        background-image: url("https://pravzhizn.com/dist/zapiski_new/img/icon/icon-arrow-grey.svg");
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-size: contain;
        background-size: contain; }

.select .select2-container--focus .select2-selection--single {
  border-color: #F65500; }
  .select .select2-container--focus .select2-selection--single .select2-selection__arrow b {
    background-image: url("https://pravzhizn.com/dist/zapiski_new/img/icon/icon-arrow-orange.svg"); }

.select .select2-container--open .select2-selection--single {
  border-color: #F65500; }
  .select .select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg); }
    .select .select2-container--open .select2-selection--single .select2-selection__arrow b {
      background-image: url("https://pravzhizn.com/dist/zapiski_new/img/icon/icon-arrow-orange.svg"); }

.select .select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none; }

.select .select2-container--open.select2-container--above .select2-selection--single {
  border-top: none; }

.select--no-arrow::after {
  display: none; }

.select2-container--open .select2-dropdown {
  border-color: #F65500; }
  .select2-container--open .select2-dropdown .select2-results {
    padding: 0px 30px; }
  .select2-container--open .select2-dropdown .select2-results__option {
    padding: 0px;
    font-size: 16px;
    line-height: 26px;
    color: #212121; }
  .select2-container--open .select2-dropdown .select2-results__option[aria-selected=true] {
    background-color: transparent;
    color: #F65500; }
  .select2-container--open .select2-dropdown .select2-results__option--highlighted[aria-selected] {
    color: #F65500;
    background-color: transparent; }

.select2-container--open .select2-dropdown--below {
  border-radius: 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
  .select2-container--open .select2-dropdown--below .select2-results__option {
    margin-bottom: 17px; }

.select2-container--open .select2-dropdown--above {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px; }
  .select2-container--open .select2-dropdown--above .select2-results__option {
    margin-top: 17px; }

.error {
  position: relative; }
  .error input {
    border-color: #FF0000; }

.errorMessage {
  position: absolute;
  bottom: -20px;
  left: 10px;
  font-size: 11px;
  line-height: 11px;
  color: #FF0000; }

.capcha {
  display: flex;
  align-items: center; }
  .capcha__text {
    font-size: 36px;
    line-height: 36px;
    font-family: "MuseoSansCyrl-500Italic";
    color: #0A9C56; }
  .capcha__btn {
    display: block;
    margin-left: 13px; }
    .capcha__btn svg {
      width: 27px;
      height: 30px; }

/*ya-share2*/
.ya-share2--pravzhizn.ya-share2 .ya-share2__container_size_m .ya-share2__item {
  position: relative;
  margin-right: 20px; }

.ya-share2--pravzhizn.ya-share2 .ya-share2__container_size_m .ya-share2__item:last-child {
  margin-right: 0; }

.ya-share2--pravzhizn.ya-share2 .ya-share2__container_size_m .ya-share2__icon {
  width: 34px;
  height: 34px; }

.ya-share2--pravzhizn.ya-share2 .ya-share2__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: visible; }

.ya-share2--pravzhizn.ya-share2 .ya-share2__container_size_m .ya-share2__counter {
  position: absolute;
  bottom: -30px;
  background-color: #ffffff;
  color: #212121;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2); }

@media (max-width: 767px) {
  .ya-share2--pravzhizn.ya-share2 .ya-share2__badge {
    width: 35px;
    height: 35px; }
  .ya-share2--pravzhizn.ya-share2 .ya-share2__container_size_m .ya-share2__icon {
    width: 29px;
    height: 29px; }
  .ya-share2--pravzhizn.ya-share2 .ya-share2__container_size_m .ya-share2__item {
    margin-right: 5px; } }

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg); }

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0A9C56;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg); }

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg); }

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg); }

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@media (min-width: 768px) {
  .tabs--adaptive {
    font-size: 16px;
    line-height: 60px; }
    .tabs--adaptive .tabs__item {
      height: 60px; }
      .tabs--adaptive .tabs__item span {
        font-size: 16px;
        line-height: 57px;
        padding: 0px 27px; }
  .tabs--sm {
    font-size: 16px;
    line-height: 40px; }
    .tabs--sm .tabs__item {
      height: 40px; }
      .tabs--sm .tabs__item span {
        font-size: 16px;
        line-height: 40px;
        padding: 0px 15px; } }

@media (min-width: 1024px) {
  .tabs--list {
    flex-direction: row; }
    .tabs--list .tabs__wrapper {
      border: none; }
    .tabs--list .tabs__wrapper:last-child {
      border: none; }
    .tabs--list .tabs__item {
      padding: 2px 2px;
      border-radius: 35px; }
      .tabs--list .tabs__item span {
        align-items: center; }
      .tabs--list .tabs__item:hover {
        color: #F65500; }
    .tabs--list .tabs__item--active {
      color: #F65500;
      background: linear-gradient(45deg, #F79F33 0, #C5322E 100%); } }

@media (min-width: 1440px) {
  .tabs {
    font-size: 20px;
    line-height: 60px; }
    .tabs__item {
      height: 60px; }
      .tabs__item span {
        padding: 0px 27px; }
  .switch {
    font-size: 20px;
    line-height: 24px; }
    .switch__item {
      padding-bottom: 20px; } }

::-webkit-scrollbar {
  width: 14px;
  height: 18px; }

::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05); }

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none; }

::-webkit-scrollbar-corner {
  background-color: transparent; }

.capcha {
  display: flex;
  align-items: center;
  width: 100%; }
  .capcha__text {
    font-size: 36px;
    line-height: 36px;
    font-family: "MuseoSansCyrl-500Italic";
    color: #0A9C56; }
  .capcha__img {
    display: flex;
    align-items: center; }
  .capcha__btn {
    display: block;
    margin-left: 13px; }
    .capcha__btn svg {
      width: 27px;
      height: 30px; }
  .capcha__input {
    flex: 1; }

.header-main {
  padding-top: 25px;
  padding-bottom: 60px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: center 0px;
  background-size: 1320px auto; }
  .header-main--bg-main {
    background-image: url("https://pravzhizn.com/dist/zapiski_new/img/main_bg.png"); }
  .header-main--bg-donations {
    background-image: url("https://pravzhizn.com/dist/img/bg-church-green.jpg"); }
  .header-main--bg-sober {
    background-image: url("https://pravzhizn.com/dist/zapiski_new/img/bratstvo_main_big-filter.png");
    background-size: 1240px; }
  .header-main--bg-repair {
    background-image: url("https://pravzhizn.com/dist/zapiski_new/img/bg-church-green-dark.jpg");
    background-size: 1440px auto;
    background-position: 80% 0px; }
  .header-main--bg-remember {
    background-image: url("https://pravzhizn.com/dist/zapiski_new/img/church-orange.jpg"); }
  .header-main--bg-molitva {
    background-image: url("../img/bg-header-molitva.jpg"); }
@media (max-width: 1024px) {
    .header-main--bg-zapiski {
        /*background: url(../img/podvorie_mini.jpg) top left;
        background-size: cover;*/
        background: url(../img/podvorie_mini_2.jpg) top center;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

    .header-main__text {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }

    .header-main__text-wrap {
        display: inline-block;
        width: 100%;
        margin-bottom: 25px;
    }

        .header-main__text-wrap:last-child {
            margin-bottom: 0;
        }

    .header-main__text-wrap--rotation {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 150px;
    }

    .header-main__text-title {
        display: inline-block;
        width: 100%;
        max-width: 1200px;
        font-size: 23px;
        line-height: 30px;
    }

    .header-main__text-rotation {
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-main__statistics {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
    }

    .header-main__statistics-text {
        margin-bottom: 20px;
    }

        .header-main__statistics-text:last-child {
            margin-bottom: 0;
        }

    .header-main__statistics b {
        display: inline-block;
        margin-right: 10px;
        font-family: "MuseoCyrillic-700";
        font-size: 24px;
        line-height: 24px;
    }

    .header-main__donate {
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }

    .header-main__breadcrumbs {
        padding-top: 30px;
        margin-bottom: 35px;
    }

        .header-main__breadcrumbs .header-main__breadcrumbs-item {
            color: #ffffff;
        }

            .header-main__breadcrumbs .header-main__breadcrumbs-item a {
                color: #ffffff;
            }

    .header-main__thanks {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: "MuseoCyrillic-300";
        max-width: 745px;
        margin-left: auto;
        margin-right: auto;
    }

        .header-main__thanks p, .header-main__thanks b {
            display: inline-block;
        }

    .header-main__thanks-title {
        margin-bottom: 20px;
        font-size: 25px;
        line-height: 30px;
    }

    .header-main__thanks-comment {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 18px;
    }

    .header-main__thanks-text {
        margin-bottom: 36px;
        font-family: "MuseoCyrillic-500";
        font-size: 18px;
        line-height: 20px;
    }

    .header-main__thanks-summ {
        display: flex;
        align-items: center;
        text-align: start;
        margin-bottom: 35px;
    }

        .header-main__thanks-summ svg {
            margin-right: 20px;
            width: 40px;
            height: 40px;
        }

        .header-main__thanks-summ p {
            flex: 1;
            font-size: 16px;
            line-height: 18px;
        }

    .header-main__thanks-link {
        font-family: "MuseoSansCyrl-500";
        font-size: 14px;
        line-height: 18px;
        text-decoration: underline;
        color: #ffffff;
        opacity: 0.7;
    }

    .header-main__report {
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-main__report-title {
        display: inline-block;
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 35px;
    }

    .header-main__report-text {
        display: inline-block;
        font-size: 18px;
        line-height: 28px;
        font-family: "MuseoCyrillic-300";
    }

    .header-main__payment {
        display: flex;
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-main__slider {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-main__slider-item {
        text-align: center;
    }

    .header-main__slider-text {
        font-size: 16px;
        line-height: 20px;
    }

        .header-main__slider-text b {
            font-size: 16px;
            line-height: 20px;
        }

    .header-main__btn {
        display: flex;
        justify-content: center;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .header-main.header-main--small {
        padding-bottom: 130px;
    }

    .header-main.header-main--bg-zapiski {
        /*margin-bottom: 60px;*/
    }

    .header-main--bg-zapiski.header-main--small {
        margin-bottom: 10px;
    }

    .header-main.header-main--small.header-main--bg-main {
        background-position: center bottom;
        background-image: url("https://pravzhizn.com/dist/zapiski_new/img/main_bg.png");
    }

    @media (min-width: 768px) {
        .header-main__donate {
            margin-left: auto;
            margin-right: auto;
        }

        .header-main__payment {
            padding-top: 25px;
        }

        .header-main--bg-sober {
            padding-bottom: 120px;
            background-position: center 0px;
        }
    }

    @media (min-width: 1024px) {
        .header-main {
            min-height: 597px;
            padding-bottom: 60px;
            background-position: center 0px;
            background-size: 1440px auto;
        }

        .header-main__text {
            position: relative;
            font-size: 20px;
            line-height: 20px;
            padding-top: 50px;
            padding-bottom: 25px;
            z-index: 100;
        }

        .header-main__text-title {
            font-family: "MuseoCyrillic-300";
            display: inline-block;
            font-size: 45px;
            line-height: 50px;
        }

        .header-main__text-caption {
            max-width: 650px;
            padding-top: 5px;
            padding-bottom: 5px;
            margin-left: auto;
            margin-right: auto;
            font-size: 20px;
            line-height: 30px;
        }

        .header-main__text-rotation {
            min-height: auto;
            display: inline-block;
            min-height: 100px;
        }

        .header-main__statistics {
            flex-direction: row;
            justify-content: center;
            margin-top: 170px;
            margin-bottom: 110px;
        }

        .header-main__statistics-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 0;
            margin-right: 80px;
            font-size: 25px;
            line-height: 25px;
        }

        .header-main__statistics b {
            margin-bottom: 8px;
            font-family: "MuseoCyrillic-500";
            font-size: 55px;
            line-height: 55px;
        }

        .header-main__statistics-text:last-child {
            margin-right: 0;
        }

        .header-main__thanks {
            padding-top: 44px;
            font-size: 20px;
            line-height: 25px;
        }

        .header-main__thanks-title {
            margin-bottom: 30px;
            font-size: 45px;
            line-height: 75px;
        }

        .header-main__thanks-comment {
            margin-bottom: 25px;
        }

        .header-main__thanks-text {
            margin-bottom: 60px;
            text-align: center;
            font-size: 24px;
            line-height: 30px;
        }

        .header-main__thanks-summ {
            margin-bottom: 50px;
        }

            .header-main__thanks-summ svg {
                width: 60px;
                height: 60px;
            }

        .header-main__report {
            padding-top: 110px;
        }

        .header-main__report-title {
            margin-bottom: 10px;
            font-size: 35px;
            line-height: 45px;
        }

        .header-main__report-text {
            font-size: 20px;
            line-height: 30px;
        }

        .header-main__slider {
            display: flex;
            max-width: 1095px;
            margin-left: auto;
            margin-right: auto;
            justify-content: space-between;
            padding: 25px 0;
        }

        .header-main__slider-item {
            display: flex;
            align-items: center;
            padding-left: 10px;
            padding-right: 10px;
            max-width: 400px;
        }

        .header-main__slider-text {
            font-size: 20px;
            line-height: 30px;
            font-family: "MuseoSansCyrl-300";
        }

            .header-main__slider-text b {
                font-size: 20px;
                line-height: 30px;
            }

        .header-main__payment {
            padding-bottom: 25px;
        }

        .header-main.header-main--bg-zapiski {
            min-height: 648px;
        }

        .header-main.header-main--small {
            min-height: 154px;
            background-image: url("https://pravzhizn.com/dist/img/bg-church-green-sm.jpg");
            margin-bottom: 0px;
            padding-bottom: 0px;
        }

        .header-main.header-main--bg-molitva .header-main__text,
        .header-main.header-main--bg-zapiski .header-main__text {
            padding-top: 100px;
        }

        .header-main.header-main--bg-zapiski {
            /*margin-bottom: 120px;*/
        }

        .header-main--bg-molitva.header-main--small {
            background-image: url("../img/bg-header-molitva-sm.jpg");
        }

        .header-main--bg-zapiski.header-main--small {
            background-image: url("../img/podvorie_6.jpg");
            height: 550px;
            background-size: contain;
        }

        .order {
            margin-top: 20px;
        }

        .block-heading--order {
            display: none;
        }

        .header-main.header-main--medium {
            min-height: auto;
            background-position: center -395px;
        }

        .header-main.header-main--small.header-main--bg-main {
            background-position: center bottom;
            background-image: url("https://pravzhizn.com/dist/zapiski_new/img/main_bg.png");
        }
    }

    @media (min-width: 1440px) {
        .header-main {
            padding-top: 52px;
            padding-bottom: 75px;
            background-position: center 0px;
        }

            .header-main .container {
                padding-left: 60px;
                padding-right: 60px;
            }

        .header-main__statistics {
            margin-top: 165px;
            margin-bottom: 100px;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .header-main__statistics-text {
            margin-right: 200px;
            font-size: 35px;
            line-height: 35px;
        }

        .header-main__statistics b {
            font-size: 75px;
            line-height: 75px;
        }

        .header-main.header-main--small.header-main--bg-main {
            background-position: center bottom;
            background-image: url("https://pravzhizn.com/dist/zapiski_new/img/main_bg.png");
        }
    }

    .footer-main {
        background-color: #FAF7DF;
    }

    .footer-main__container {
        padding: 40px 0px;
        padding-bottom: 20px;
    }

    .footer-main__title {
        padding: 0px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .footer-main__column {
        padding: 0px 20px;
        margin-bottom: 40px;
    }

    .footer-main__details, .footer-main__social, .footer-main__application {
        padding: 40px 20px 40px 20px;
        border-top: 2px solid #ECE9CB;
    }

    .footer-main a {
        text-decoration: none;
    }

        .footer-main a:not(.footer-main__application-link) {
            font-size: 16px;
            line-height: 22px;
            font-family: "MuseoSansCyrl-500", "Arial", sans-serif;
        }

        .footer-main a:not(.promo-app__logos-link) {
            color: #212121;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-main a:not(.promo-app__logos-link):hover {
                color: #F65500;
            }

                .footer-main a:not(.promo-app__logos-link):hover svg, .footer-main a:not(.promo-app__logos-link):hover use, .footer-main a:not(.promo-app__logos-link):hover path {
                    fill: #F65500;
                }

            .footer-main a:not(.promo-app__logos-link):active {
                color: #F65500;
                opacity: 0.7;
            }

                .footer-main a:not(.promo-app__logos-link):active svg, .footer-main a:not(.promo-app__logos-link):active use, .footer-main a:not(.promo-app__logos-link):active path {
                    fill: #F65500;
                }

    @media (min-width: 768px) {
        .footer-main__container {
            padding: 40px 0px;
        }
    }

    @media (min-width: 1024px) {
        .footer-main__container {
            display: flex;
            justify-content: center;
            padding: 70px;
        }

        .footer-main__column {
            padding: 0px;
            padding-right: 40px;
            margin-bottom: 0;
        }

        .footer-main__details, .footer-main__social, .footer-main__application {
            padding: 0px 0px;
            padding-bottom: 40px;
            border-top: none;
        }

        .footer-main__details-item {
            margin-bottom: 5px;
        }

            .footer-main__details-item:last-child {
                margin-bottom: 0;
            }
    }

    @media (min-width: 1440px) {
        .footer-main__container {
            padding: 120px 157px;
        }
    }

    .static-page {
        padding-bottom: 30px;
    }

    .static-page__header {
        padding-bottom: 30px;
    }

    .static-page__header-title {
        margin-bottom: 15px;
    }

    .static-page__text {
        display: block;
        margin-bottom: 15px;
    }

        .static-page__text:last-child {
            margin-bottom: 0;
        }

        .static-page__text b {
            font-family: "MuseoSansCyrl-700";
        }

    .static-page__title {
        width: 100%;
        text-align: center;
        margin: 0;
        margin-bottom: 25px;
    }

    .static-page__image {
        margin-top: 20px;
    }

    .static-page__content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .static-page__column--right {
        padding-top: 25px;
    }

    .static-page__btn {
        margin-top: 35px;
        margin-left: auto;
        margin-right: auto;
    }

    .static-page ul.static-page__list:last-child {
        margin-bottom: 0;
    }

    @media (min-width: 1024px) {
        .static-page {
            padding-bottom: 95px;
        }

        .static-page__image {
            margin-top: 30px;
        }

        .static-page__wrapper {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

            .static-page__wrapper:last-child {
                margin-bottom: 0;
            }

        .static-page__column {
            flex: 1;
        }

        .static-page__column--right {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 360px;
            padding-left: 60px;
            padding-top: 0;
            box-sizing: border-box;
        }
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo__icon {
        width: 40px;
        height: 40px;
        -webkit-background-size: contain;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .logo__icon--l {
        width: 60px;
        height: 60px;
    }

    .logo__icon--xl {
        width: 80px;
        height: 80px;
    }

    .logo__text {
        padding-left: 6px;
        font-size: 12px;
        line-height: 12px;
        font-family: "MuseoSansCyrl-500";
        flex: 1;
    }

    .logo__text-title {
        font-family: "MuseoCyrillic-700";
        font-size: 16px;
        line-height: 16px;
    }

    .logo--donations .logo__icon {
        background-image: url("../img/icon/logo-donations.svg");
    }

    .logo--donations .logo__text-desc {
        color: #4B8523;
    }

    .logo--sobriety .logo__icon {
        background-image: url("../img/icon/logo-sobriety.svg");
    }

    .logo--sobriety .logo__text-desc {
        color: #0496B5;
    }

    .logo--remembrance .logo__icon {
        background-image: url("../img/icon/logo-remembrance.svg");
    }

    .logo--remembrance .logo__text-desc {
        color: #CB6A01;
    }

    .logo--molitva .logo__icon {
        background-image: url("../img/icon/logo-molitva.svg");
    }

    .logo--molitva .logo__text-desc {
        color: #FF4100;
    }

    .logo--сatechization .logo__icon {
        background-image: url("../img/icon/logo-сatechization.svg");
    }

    .logo--сatechization .logo__text-desc {
        color: #B68400;
    }

    .logo--telegram .logo__icon {
        background-image: url("../img/icon/logo-telegram.svg");
    }

    .logo--telegram .logo__text-desc {
        color: #536B8B;
    }

    .logo--shop .logo__icon {
        background-image: url("../img/icon/logo-shop.svg");
    }

    .logo--shop .logo__text-desc {
        color: #EA543F;
    }

    .logo--shop .logo__text-title {
        color: #EA543F;
    }

    .logo--main .logo__icon {
        background-image: url("../img/icon/logo-pravzhizn.svg");
    }

    .logo--main .logo__text-desc {
        color: #EA543F;
    }

    .logo--faq .logo__icon {
        background-image: url("../img/icon/logo-faq.svg");
    }

    .logo--faq .logo__text-desc {
        color: #1A894E;
    }

    .logo--school .logo__icon {
        background-image: url("../img/icon/logo-school.svg");
    }

    .logo--school .logo__text-desc {
        color: #983072;
    }

    .logo--tv .logo__icon {
        background-image: url("../img/icon/logo-tv.svg");
    }

    .logo--tv .logo__text-desc {
        color: #FF533B;
    }

    .logo--calendar .logo__icon {
        background-image: url("../img/icon/logo-tv.svg");
    }

    .logo--calendar .logo__text-desc {
        color: #FF533B;
    }

    .logo--pravme .logo__icon {
        background-image: url("../img/icon/logo-pravme.svg");
    }

    .logo--pravme .logo__text-desc {
        color: #D93A3C;
    }

    .nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        padding-bottom: 15px;
    }

        .nav a {
            transition: 0.3s;
        }

    .nav__logo {
        color: #ffffff;
        z-index: 111;
    }

        .nav__logo .logo__text-desc {
            color: #ffffff;
        }

    .nav a.nav__logo:hover {
        color: #ffffff;
        opacity: 0.7;
    }

    .nav a.nav__logo:hover {
        color: #ffffff;
        opacity: 0.5;
    }

    .nav__menu {
        position: absolute;
        display: flex;
        flex-direction: column;
        padding: 125px 25px 25px 25px;
        width: calc(100% + 40px);
        min-height: 546px;
        top: -25px;
        left: calc(100% + 40px);
        background-color: #F7A806;
        box-sizing: border-box;
        z-index: 110;
        transition: 0.2s;
    }

        .nav__menu .nav__application {
            margin: auto;
            margin-bottom: 0;
            order: 2;
        }

        .nav__menu .nav__menu-list {
            order: 1;
        }

    .nav__menu--donation {
        background-color: #0A9C56;
    }

    .nav--show .nav__menu {
        min-height: 576px;
        left: -20px;
        z-index: 110;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav__list-item {
        min-width: 163px;
        margin-bottom: 25px;
        text-align: center;
    }

        .nav__list-item a {
            font-size: 24px;
            line-height: 24px;
            font-family: "MuseoCyrillic-700";
            color: #ffffff;
            text-decoration: none;
        }

            .nav__list-item a:hover {
                color: #F65500;
            }

                .nav__list-item a:hover svg, .nav__list-item a:hover use, .nav__list-item a:hover path {
                    fill: #F65500;
                }

            .nav__list-item a:active {
                color: #F65500;
                opacity: 0.7;
            }

                .nav__list-item a:active svg, .nav__list-item a:active use, .nav__list-item a:active path {
                    fill: #F65500;
                }

            .nav__list-item a svg, .nav__list-item a use, .nav__list-item a path {
                fill: #ffffff;
            }

        .nav__list-item .nav__list-btn {
            height: 46px;
            font-family: "MuseoSansCyrl-500";
            font-size: 16px;
            line-height: 16px;
        }

        .nav__list-item:nth-child(3) {
            margin-top: 10px;
        }

    .nav__burger {
        z-index: 111;
    }

    @media (min-width: 1024px) {
        .nav {
            align-items: flex-start;
            overflow: visible;
            padding-bottom: 0px;
            z-index: 101;
        }

        .nav__logo {
            margin-right: 20px;
        }

        .nav__burger {
            display: none;
        }

        .nav__menu {
            position: relative;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            padding: 0px;
            width: auto;
            min-height: auto;
            top: auto;
            left: auto;
            background-color: transparent;
            z-index: 0;
            transition: none;
            flex: 1;
        }

        .nav__list {
            flex-direction: row;
            justify-content: flex-end;
            max-width: 600px;
            min-width: 550px;
            padding-left: 10px;
            flex: 1;
            order: 2;
        }

            .nav__list a {
                font-family: "MuseoSansCyrl-300";
                color: #ffffff;
                font-size: 14px;
                line-height: 14px;
            }

            .nav__list .nav__list-btn {
                padding: 0px 20px;
                height: 36px;
            }

        .nav__list-item {
            min-width: auto;
            margin-bottom: 0px;
            margin-right: 15px;
        }

            .nav__list-item:nth-child(3) {
                margin-bottom: 0px;
                margin-right: 15px;
                margin-top: 0;
            }

            .nav__list-item:last-child {
                margin-right: 0;
            }

        .nav__application {
            order: 1;
        }

            .nav__application .application__info {
                margin-bottom: 10px;
            }

                .nav__application .application__info p {
                    padding-left: 10px;
                }

        .nav.nav--zapiski .nav__logo {
            margin-right: 80px;
        }

        .nav.nav--zapiski .nav__list {
            min-width: auto;
        }
    }

    @media (min-width: 1440px) {
        .nav__logo {
            min-width: auto;
            margin-right: 30px;
        }

        .nav__application .application__info p {
            padding-left: 20px;
        }

        .nav__list {
            padding-left: 0px;
            min-width: auto;
            max-width: none;
            justify-content: flex-end;
        }

        .nav__list-item {
            margin-right: 30px;
        }

            .nav__list-item:nth-child(3) {
                margin-right: 30px;
            }

            .nav__list-item:nth-child(4) {
                margin-right: 20px;
            }

            .nav__list-item:last-child {
                margin-right: 0px;
            }

        .nav__list a {
            font-size: 16px;
            line-height: 18px;
        }
    }

    .dropdown-list__title {
        padding: 0px;
        display: inline-block;
        position: relative;
        margin-bottom: 0;
    }

        .dropdown-list__title::after {
            display: inline-block;
            margin-left: 15px;
            content: '';
            width: 10px;
            height: 10px;
            -webkit-background-size: 10px 8px;
            background-size: 10px 8px;
            background-repeat: no-repeat;
            background-image: url("../../main_pravzhizn_new/img/icon/icon-triangle.svg");
            transition: 0.5s;
        }

    .dropdown-list__list {
        display: none;
        overflow: hidden;
        padding: 0px;
        margin: 0px;
        margin-top: 30px;
        list-style: none;
    }

    .dropdown-list__list-item {
        margin-bottom: 22px;
    }

        .dropdown-list__list-item:last-child {
            margin-bottom: 0;
        }

    .dropdown-list.show .dropdown-list__title::after {
        transform: rotate(180deg);
    }

    .dropdown-list.show .dropdown-list__list {
        display: block;
    }

    @media (min-width: 1024px) {
        .dropdown-list__title {
            margin-bottom: 15px;
        }

            .dropdown-list__title::after {
                display: none;
            }

        .dropdown-list__list {
            margin-top: 0px;
        }
    }

    .social__title {
        display: inline-block;
        margin-bottom: 20px;
    }

    .social__list {
        display: flex;
    }

    .social__item {
        margin-right: 7px;
    }

        .social__item:last-child {
            margin-right: 0;
        }

        .social__item:hover {
            opacity: 0.7;
        }

        .social__item:active {
            opacity: 0.5;
        }

    .social.social--share .social__list {
        display: grid;
        justify-content: center;
        grid-column-gap: 4px;
        grid-row-gap: 15px;
        grid-template-columns: repeat(4, 45px);
    }

    @media (min-width: 768px) {
        .social.social--share .social__list {
            grid-template-columns: repeat(8, 45px);
        }
    }

    .application__title {
        display: inline-block;
        margin-bottom: 20px;
    }

    .application__info {
        display: flex;
        margin-bottom: 20px;
        font-family: "MuseoSansCyrl-300";
        font-size: 12px;
        line-height: 14px;
    }

        .application__info p {
            padding-left: 20px;
        }

            .application__info p a {
                font-family: "MuseoSansCyrl-500";
                font-size: 12px;
                line-height: 14px;
            }

        .application__info .application__icon {
            width: 15px;
            height: 27px;
        }

    .application__links {
        display: flex;
    }

        .application__links .application__icon {
            margin-right: 30px;
            width: 22px;
            height: 26px;
        }

        .application__links .application__icon--google {
            margin-top: 3px;
            height: 24px;
        }

        .application__links a path {
            transition: 0.3s;
        }

        .application__links a:hover svg, .application__links a:hover path, .application__links a:hover use, .application__links a:hover g {
            fill: #F65500;
        }

        .application__links a:active {
            opacity: 0.7;
        }

    .application--white svg, .application--white path, .application--white use, .application--white g {
        fill: #ffffff;
    }

    .application--white p {
        padding-left: 20px;
        color: #ffffff;
    }

        .application--white p a {
            font-family: "MuseoSansCyrl-500";
            color: #ffffff;
        }

    .application--adaptive {
        display: none;
    }

    .application--hramy {
        display: flex;
        align-items: center;
    }

        .application--hramy .application__info {
            margin-bottom: 0;
            padding-right: 30px;
            align-items: center;
            flex: 1;
        }

            .application--hramy .application__info p {
                margin: 0px;
                padding-left: 30px;
                font-size: 16px;
                line-height: 1.4;
            }

                .application--hramy .application__info p a {
                    font-family: "MuseoSansCyrl-300";
                    font-size: 16px;
                    line-height: 1.4;
                }

            .application--hramy .application__info .application__icon {
                width: 38px;
                height: 60px;
            }

        .application--hramy .application__links {
            flex-direction: column;
        }

            .application--hramy .application__links .application__icon {
                margin-top: 0;
                margin-right: 0px;
                width: 38px;
                height: 38px;
            }

            .application--hramy .application__links .application__icon--apple {
                margin-bottom: 20px;
            }

            .application--hramy .application__links .application__icon--google {
                margin-right: 0px;
                margin-top: 0;
                height: 38px;
                width: 38px;
            }

    .application--hramy-vertical {
        flex-direction: column;
    }

        .application--hramy-vertical .application__info {
            padding-right: 0;
            margin-bottom: 25px;
        }

            .application--hramy-vertical .application__info p {
                padding-left: 15px;
            }

        .application--hramy-vertical .application__links {
            flex-direction: row;
            width: 100%;
            justify-content: space-around;
        }

    @media (min-width: 768px) {
        .application--adaptive {
            display: block;
        }
    }

    .slider.owl-theme {
        position: relative;
    }

        .slider.owl-theme .owl-stage {
            display: flex;
            align-items: center;
        }

        .slider.owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 0px;
        }

        .slider.owl-theme .owl-dots .owl-dot span {
            width: 15px;
            height: 15px;
            margin: 10px;
            background: transparent;
            border: 2px solid #ffffff;
        }

        .slider.owl-theme .owl-dots .owl-dot.active span, .slider.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
            background: #ffffff;
        }

        .slider.owl-theme .owl-nav {
            position: absolute;
            display: flex;
            justify-content: space-between;
            width: 100%;
            height: 0px;
            margin: 0px;
            left: 0px;
            top: 50%;
            transform: translate(0, -50%);
        }

            .slider.owl-theme .owl-nav [class*=owl-] {
                margin: 0px;
            }

                .slider.owl-theme .owl-nav [class*=owl-] svg {
                    fill: #0A9C56;
                }

            .slider.owl-theme .owl-nav button {
                width: 20px;
                height: 10px;
            }

            .slider.owl-theme .owl-nav .owl-next {
                transform: rotate(180deg);
            }

            .slider.owl-theme .owl-nav [class*=owl-]:hover {
                background-color: transparent;
            }

                .slider.owl-theme .owl-nav [class*=owl-]:hover svg {
                    fill: #F65500;
                }

            .slider.owl-theme .owl-nav [class*=owl-]:active {
                opacity: 0.7;
            }

            .slider.owl-theme .owl-nav.disabled {
                display: none;
            }

    .slider--tabs.owl-theme .owl-stage {
        display: flex;
        margin: 0 auto;
    }

    .slider--tabs.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 15px;
    }

    .slider--shop.owl-theme .owl-nav {
        width: calc(100% + 40px);
        left: -20px;
    }

        .slider--shop.owl-theme .owl-nav button {
            position: absolute;
            display: block;
            width: 26px;
            height: 20px;
            font-size: 0;
            background-repeat: no-repeat;
            background-position: center;
            -webkit-background-size: contain;
            background-size: contain;
            background-image: url("../img/icon/arrows_mini_left.svg");
        }

            .slider--shop.owl-theme .owl-nav button.owl-prev {
                left: 0px;
            }

            .slider--shop.owl-theme .owl-nav button.owl-next {
                right: 0px;
                transform: rotate(180deg);
            }

    .slider--brotherhood.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 20px;
    }

    .slider--brotherhood.owl-theme .owl-dots .owl-dot span {
        border: 2px solid #2FB9AA;
    }

    .slider--brotherhood.owl-theme .owl-dots .owl-dot.active span, .slider--brotherhood.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
        background: #2FB9AA;
    }

    .slider--brotherhood.owl-theme .owl-nav button {
        position: absolute;
        display: block;
        width: 26px;
        height: 20px;
        font-size: 0;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-size: contain;
        background-size: contain;
        background-image: url("../img/icon/arrows_mini_left.svg");
    }

        .slider--brotherhood.owl-theme .owl-nav button.owl-prev {
            left: 0px;
        }

        .slider--brotherhood.owl-theme .owl-nav button.owl-next {
            right: 0px;
            transform: rotate(180deg);
        }

    .slider--pz.owl-theme .owl-stage {
        align-items: flex-start;
    }

    .slider--pz.owl-theme .owl-nav.disabled + .owl-dots {
        margin-top: 20px;
    }

    .slider--pz.owl-theme .owl-dots .owl-dot span {
        border: 2px solid #2FB9AA;
    }

    .slider--pz.owl-theme .owl-dots .owl-dot.active span, .slider--pz.owl-theme .owl-theme .owl-dots .owl-dot:hover span {
        background: #2FB9AA;
    }

    .slider--pz.owl-theme .owl-nav {
        width: calc(100% + 40px);
        left: -20px;
    }

        .slider--pz.owl-theme .owl-nav button {
            position: absolute;
            display: block;
            width: 26px;
            height: 20px;
            font-size: 0;
            background-repeat: no-repeat;
            background-position: center;
            -webkit-background-size: contain;
            background-size: contain;
            background-image: url("../img/icon/arrows_mini_left.svg");
        }

            .slider--pz.owl-theme .owl-nav button.owl-prev {
                left: 0px;
            }

            .slider--pz.owl-theme .owl-nav button.owl-next {
                right: 0px;
                transform: rotate(180deg);
            }

    .slider--molitva.owl-theme .owl-stage {
        align-items: flex-start;
    }

    @media (min-width: 1024px) {
        .slider.owl-theme {
            box-sizing: border-box;
        }
    }

    #sync2 .current .owl-thumb-item, #sync4 .current .owl-thumb-item {
        opacity: 0.5;
    }

    .slider--thumbs.owl-theme .owl-stage {
        align-items: flex-start;
    }

    .slider--thumbs.owl-theme .owl-nav {
        /*default owl-theme theme reset .disabled:hover links */
    }

        .slider--thumbs.owl-theme .owl-nav [class*='owl-'] {
            transition: all .3s ease;
        }

    .breadcrumbs {
        width: 100%;
        padding: 30px 0px;
    }

    .breadcrumbs__list {
        display: flex;
        flex-wrap: wrap;
    }

    .breadcrumbs__item {
        margin-right: 10px;
    }

    .breadcrumbs__link {
        display: flex;
        font-family: "MuseoCyrillic-300";
        font-size: 16px;
        line-height: 24px;
    }

        .breadcrumbs__link::after {
            display: block;
            content: '>';
            margin-left: 10px;
        }

        .breadcrumbs__link.active {
            font-family: "MuseoCyrillic-700";
        }

            .breadcrumbs__link.active::after {
                display: none;
            }

    @media (min-width: 1024px) {
        .breadcrumbs {
            padding: 60px 0px;
        }

        .breadcrumbs__link {
            font-size: 20px;
            line-height: 24px;
        }
    }

    .download-note {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .download-note--row {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

        .download-note--row .download-note__mini-img {
            margin-bottom: 0;
        }

    .download-note__wrapper {
        padding-left: 60px;
        box-sizing: border-box;
    }

    .download-note__mini-img {
        margin-bottom: 20px;
    }

    .download-note__mini-img--small {
        max-width: 100px;
    }

    .download-note__link {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .modal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10400;
        display: none;
        overflow: auto;
        overflow-y: scroll;
        color: #282828;
    }

    .modal-open {
        overflow: hidden;
    }

    .modal-dialog {
        position: relative;
        z-index: 1050;
        width: auto;
        padding: 10px;
        margin-right: auto;
        margin-left: auto;
    }

    .modal-header {
        min-height: 16px;
        padding: 15px;
    }

        .modal-header .close {
            margin-top: -2px;
        }

    .modal-content {
        position: relative;
        background-color: #ffffff;
        border: 1px solid #999999;
        border: 1px solid rgba(0, 0, 0, 0.2);
        outline: none;
        -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
        box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
        background-clip: padding-box;
    }

    .modal-title {
        margin: 0;
        line-height: 1.428571429;
    }

    .modal-body {
        position: relative;
        padding: 20px 20px 30px;
    }

        .modal-body:before, .modal-body:after {
            content: "";
            clear: both;
            height: 0;
            display: block;
        }

    .modal-footer {
        padding: 19px 20px 20px;
        margin-top: 15px;
        text-align: right;
        border-top: 1px solid #e5e5e5;
    }

        .modal-footer:before, .modal-footer:after {
            display: table;
            content: " ";
        }

        .modal-footer:after {
            clear: both;
        }

        .modal-footer .btn + .btn {
            margin-bottom: 0;
            margin-left: 5px;
        }

        .modal-footer .btn-group .btn + .btn {
            margin-left: -1px;
        }

        .modal-footer .btn-block + .btn-block {
            margin-left: 0;
        }

    .modal-backdrop {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10300;
        background-color: #000000;
    }

        .modal-backdrop.fade {
            opacity: 0;
            filter: alpha(opacity=0);
        }

        .modal-backdrop.in {
            opacity: 0.5;
            filter: alpha(opacity=50);
        }

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -moz-transition: -moz-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    @media screen and (min-width: 768px) {
        .modal-dialog {
            width: 500px;
            padding-top: 10%;
            padding-bottom: 30px;
        }

        .modal-content {
            -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        #dialog-add-photo .modal-dialog {
            width: 522px;
        }

        #dialog-play-video .modal-dialog {
            width: 662px;
        }

        .modal.order-modal .modal-dialog {
            padding-top: 5%;
            padding-bottom: auto;
        }
    }

    .close {
        float: right;
        font-size: 21px;
        font-weight: bold;
        line-height: 1;
        color: #000000;
        text-shadow: 0 1px 0 #ffffff;
        opacity: 0.2;
        filter: alpha(opacity=20);
    }

        .close:hover,
        .close:focus {
            color: #000000;
            text-decoration: none;
            cursor: pointer;
            opacity: 0.5;
            filter: alpha(opacity=50);
        }

    button.close {
        padding: 0;
        cursor: pointer;
        background: transparent;
        border: 0;
        -webkit-appearance: none;
    }

    /*Chudesa*/
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
    }

    .modal-header h4, .modal-header .modal-title {
        font-size: 18px;
        font-weight: 400;
        color: #282828;
        font-family: Arial, sans-serif;
        /*margin:40px 0 0;*/
    }

    .modal-row {
        margin-bottom: 10px;
    }

    .js-mistake-text {
        color: red;
    }

    #temple-map {
        height: 600px;
        width: 100%;
    }

    .js-map-loader {
        display: none;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
        background-color: #000000;
        height: 600px;
        font-size: 30px;
        text-align: center;
        color: white;
        padding-top: 320px;
    }

        .js-map-loader.loading:after {
            top: 50%;
        }

        .js-map-loader.loading {
            display: block;
            opacity: 0.5;
            filter: alpha(opacity=50);
        }

    .modal-moderation {
        font-size: 15px !important;
    }

    .modal-video {
        width: 100%;
        z-index: 1041;
    }

        .modal-video .modal-header .modal-title {
            margin-bottom: 0;
        }

        .modal-video .modal-dialog {
            width: auto;
            height: auto;
            padding: 0;
            position: absolute;
            top: 0px;
            bottom: 0px;
            left: 0px;
            right: 0px;
            margin: auto;
            max-height: 550px;
            max-width: 95%;
        }

        .modal-video .modal-content {
            display: block;
            border-radius: 5px;
        }

        .modal-video .modal-header {
            padding: 10px 10px 22px;
        }

        .modal-video .modal-body {
            height: 100%;
            max-height: 340px;
            padding: 10px;
        }

        .modal-video iframe {
            width: 100%;
            height: 100%;
        }

    .modal-backdrop.in {
        opacity: .5;
    }

    .modal-backdrop {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;
        background-color: #000;
    }

    @media (min-width: 1024px) {
        .modal-video .modal-body {
            max-height: 500px;
        }
    }

    @media (min-width: 1024px) {
        .modal-video .modal-dialog {
            max-height: 80%;
            max-width: 80%;
        }
    }

    .error-modal {
        position: fixed;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
        display: flex;
        flex-direction: column;
        width: 320px;
        max-width: 95%;
        max-height: 160px;
        padding: 15px;
        background-color: #fff;
        webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        border-radius: 5px;
        z-index: 1041;
    }

    .error-modal__body {
        flex: 1;
    }

    .error-modal .errorMessage {
        position: relative;
        top: auto;
        left: auto;
        font-size: 18px;
        line-height: 1.4;
    }

    /*END-COMMON*/
    .showcase {
        padding: 60px 0px;
    }

    .showcase--grey {
        background-color: rgba(236, 236, 229, 0.23);
    }

    .showcase__content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .showcase__item-wrapper {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .showcase__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 375px;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .showcase__item-img {
        padding: 10px;
        margin-bottom: 15px;
        border: 5px solid rgba(207, 204, 185, 0.2);
        box-sizing: border-box;
    }

    .showcase__item-text {
        display: inline-block;
        text-align: center;
        color: #0071BC;
        font-family: "MuseoCyrillic-700";
        font-size: 18px;
        line-height: 24px;
        box-sizing: border-box;
    }

    .showcase__item-link:hover {
        color: #F65500;
    }

    .showcase__item-link:active {
        color: #F65500;
        opacity: 0.7;
    }

    .showcase__item:last-child {
        margin-bottom: 0;
    }

    .showcase__item.active .showcase__item-img {
        border: 5px solid #F65500;
        box-shadow: 0px 0px 20px -10px black;
    }

    .showcase__item:nth-child(2n) .showcase__item-text {
        color: #7C872F;
    }

    .showcase__item:nth-child(2n) .showcase__item-link:hover {
        color: #F65500;
    }

    .showcase__item:nth-child(2n) .showcase__item-link:active {
        color: #F65500;
        opacity: 0.7;
    }

    .showcase__item:nth-child(3n) .showcase__item-text {
        color: #F65500;
    }

    .showcase__item:nth-child(3n) .showcase__item-link:hover {
        color: #F65500;
    }

    .showcase__item:nth-child(3n) .showcase__item-link:active {
        color: #F65500;
        opacity: 0.7;
    }

    .showcase__content--small .showcase__item {
        max-width: 280px;
    }

    .showcase__btn {
        width: 99%;
        margin-top: 20px;
        padding: 0px 10px;
    }

    .showcase__header-note {
        margin-bottom: 0;
        margin-top: 20px;
        color: #212121;
    }

    .showcase__slider.slider {
        margin-bottom: 40px;
    }

    @media (min-width: 1024px) {
        .showcase {
            padding: 120px 0px;
        }

        .showcase__slider.owl-theme {
            margin-bottom: 0;
        }

            .showcase__slider.owl-theme .owl-nav {
                top: 30%;
            }

        .showcase__item-wrapper {
            flex-direction: row;
            margin-bottom: 30px;
        }

        .showcase__item {
            margin-right: 15px;
        }

        .showcase__item-img {
            padding: 35px;
            margin-bottom: 30px;
        }

        .showcase__item-text {
            padding: 0 40px;
            font-size: 24px;
            line-height: 30px;
        }

        .showcase__item:last-child {
            margin-right: 0;
        }

        .showcase__content--small .showcase__item-img {
            padding: 20px;
            margin-bottom: 20px;
            width: 204px;
            height: 266px;
        }

            .showcase__content--small .showcase__item-img img {
                width: 100%;
            }

        .showcase__content--small .showcase__item-text {
            padding: 0 10px;
            font-size: 18px;
            line-height: 24px;
        }

        .showcase__btn {
            width: 100%;
            padding: 0px;
            margin-top: 30px;
            max-width: 510px;
        }
    }

    @media (min-width: 1440px) {
        .showcase__slider.owl-theme {
            margin-bottom: 0;
        }

            .showcase__slider.owl-theme .owl-nav {
                width: calc(100% + 80px);
                left: -40px;
            }
    }

    .showcase__item {
        margin-bottom: 40px;
    }

    @media (min-width: 1024px) {
        .showcase__item {
            margin-bottom: 0;
        }

        .showcase__item-img {
            width: 355px;
            height: 420px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
        }

            .showcase__item-img img {
                width: auto !important;
            }

        .showcase__content--small .showcase__item-img {
            width: 204px;
            height: 266px;
        }
    }

    .dropdown-menu__btn {
        display: none;
    }

    .dropdown-menu__btn-icon {
        display: none;
    }

    .dropdown-menu__list li {
        margin-bottom: 25px;
    }

        .dropdown-menu__list li:last-child {
            margin-bottom: 0;
        }

    @media (min-width: 1024px) {
        .dropdown-menu {
            position: relative;
        }

        .dropdown-menu__btn {
            display: flex;
            align-items: center;
        }

        .dropdown-menu__btn-icon {
            display: block;
            width: 10px;
            height: 10px;
            margin-left: 10px;
            transition: transform 0.2s;
        }

        .dropdown-menu__list {
            position: absolute;
            text-align: left;
            left: 0px;
            box-sizing: border-box;
            padding: 10px;
            border-radius: 5px;
            background: linear-gradient(45deg, #F79F33 0, #C5322E 100%);
            box-shadow: 0px 10px 20px 0px rgba(2, 104, 55, 0.1);
        }

            .dropdown-menu__list li {
                margin-bottom: 15px;
            }

                .dropdown-menu__list li:last-child {
                    margin-bottom: 0;
                }

        .dropdown-menu .dropdown-menu__btn.active .dropdown-menu__btn-icon {
            transform: rotate(180deg);
        }
    }

    .social-block {
        margin-bottom: 60px;
    }

    @media (min-width: 1024px) {
        .social-block {
            margin-bottom: 120px;
        }
    }

    .pope-block {
        padding: 50px 0px;
        box-sizing: border-box;
    }

    .pope-block__header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
        padding: 0px 20px;
        text-align: center;
        box-sizing: border-box;
    }

    .pope-block__header-text {
        display: inline-block;
        padding: 10px 0px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 20px;
        color: #9B9B9B;
        box-sizing: border-box;
    }

    .pope-block__header-title {
        font-size: 24px;
        line-height: 35px;
        font-family: "MuseoCyrillic-700";
    }

    .pope-block__img {
        display: block;
        position: relative;
        min-height: 373px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        background-image: url("https://pravzhizn.com/dist/zapiski_new/img/pope-block-img.png");
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-size: 320px auto;
        background-size: 320px auto;
    }

    .pope-block__img-btn {
        position: absolute;
        top: 180px;
        left: 125px;
    }

    .pope-block__img--desk {
        display: none;
    }

    .pope-block__wrapper {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pope-block__icon-quotes {
        padding: 0px 20px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .pope-block__text {
        padding: 0px 20px;
        font-size: 18px;
        line-height: 33px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .pope-block__text-content p {
        display: inline-block;
        margin-bottom: 26px;
    }

    .pope-block__text-content b {
        font-family: "MuseoSansCyrl-700";
    }

    .pope-block__text-content i {
        font-family: "MuseoSansCyrl-500Italic";
    }

    .pope-block__text-link {
        margin: 0px 20px;
        display: inline;
        color: #7C872F;
        border-bottom: 1px solid #7C872F;
        opacity: 0.7;
    }

        .pope-block__text-link:hover {
            opacity: 1;
            border-color: #F65500;
        }

    .pope-block__author {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .pope-block__author-img {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-size: cover;
        background-size: cover;
    }

    @media (min-width: 768px) {
        .pope-block__author-text {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
    }

    .pope-block__author-title {
        display: inline-block;
        margin-bottom: 14px;
        font-size: 24px;
        line-height: 30px;
        font-family: "MuseoCyrillic-700";
    }

    @media (max-width: 768px) {
        .pope-block__author-title {
            width: 100%;
            text-align: center;
        }
    }

    .pope-block__author-caption {
        font-size: 16px;
        line-height: 26px;
        font-family: "MuseoSansCyrl-500Italic";
    }

    @media (max-width: 768px) {
        .pope-block__author-caption {
            width: 100%;
            text-align: center;
            display: inline-block;
        }
    }

    .pope-block__btn {
        max-width: 182px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px 20px;
        margin-bottom: 20px;
    }

    @media (max-width: 1024px) {
        .pope-block .pope-block__container {
            padding-left: 0;
            padding-right: 0;
        }
    }

    @media (min-width: 768px) {
        .pope-block__img {
            min-height: 434px;
            max-width: 434px;
            background-size: 470px auto;
        }

        .pope-block__img-btn {
            top: 210px;
            left: 185px;
        }

        .pope-block__text-link {
            margin: 0px;
        }

        .pope-block__author {
            flex-direction: row;
            max-width: none;
            padding: 0px;
            margin: 0px;
        }

        .pope-block__author-img {
            margin-right: 40px;
        }

        .pope-block__btn {
            padding: 0px;
            margin: 0px;
            margin-bottom: 20px;
        }
    }

    @media (min-width: 1024px) {
        .pope-block {
            padding: 60px 0px;
        }

        .pope-block__header {
            margin-bottom: 0px;
        }

        .pope-block__header-text {
            margin-bottom: 11px;
            font-size: 20px;
            line-height: 30px;
        }

        .pope-block__header-title {
            font-size: 35px;
            line-height: 45px;
        }

        .pope-block__item {
            display: flex;
            padding-top: 30px;
        }

        .pope-block__img {
            height: 566px;
            max-width: none;
            width: 563px;
            margin-left: 0;
            margin-right: 0;
            background-position: center 0;
            -webkit-background-size: 510px auto;
            background-size: 510px auto;
            flex: 1;
        }

        .pope-block__img-btn {
            top: 230px;
            left: 220px;
        }

        .pope-block__img--desk {
            display: block;
        }

        .pope-block__img--mob {
            display: none;
        }

        .pope-block__wrapper {
            max-width: 460px;
            padding-top: 50px;
            flex: 1;
        }

        .pope-block__icon-quotes {
            padding: 0px;
        }

        .pope-block__text {
            padding: 0px;
        }

        .pope-block__author {
            margin-bottom: 40px;
            margin-top: 40px;
        }
    }

    @media (min-width: 1220px) {
        .pope-block__wrapper {
            padding-left: 40px;
        }
    }

    .main-logo {
        height: 100px;
        width: 100px;
    }

    .send-button {
        background-color: #993300; /* Green */
        border: none;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 30px;
    }
    /*# sourceMappingURL=index.css.map*/