@font-face {
  font-family: "Exo2";
  font-display: swap;
  src: url("../fonts/Exo2-ExtraLight.woff") format("woff"), url("../fonts/Exo2-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Exo2";
  font-display: swap;
  src: url("../fonts/Exo2-Light.woff") format("woff"), url("../fonts/Exo2-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Exo2";
  font-display: swap;
  src: url("../fonts/Exo2-Regular.woff") format("woff"), url("../fonts/Exo2-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Exo2";
  font-display: swap;
  src: url("../fonts/Exo2-Medium.woff") format("woff"), url("../fonts/Exo2-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Exo2";
  font-display: swap;
  src: url("../fonts/Exo2-SemiBold.woff") format("woff"), url("../fonts/Exo2-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Exo2";
  font-display: swap;
  src: url("../fonts/Exo2-Bold.woff") format("woff"), url("../fonts/Exo2-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/* null style */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

* {
  -webkit-tap-highlight-color: transparent;
}

/* null style */
.mask {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #edecec;
  top: 0;
  z-index: 500;
  transition: 0.6s;
}
.mask .loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-left-color: rgba(12, 12, 12, 0.83);
  border-radius: 50%;
  animation: loader 1.3s linear infinite;
}
.mask._hide {
  opacity: 0;
}
@keyframes loader {
  100% {
    transform: rotate(360deg);
  }
}

.body {
  position: relative;
  font-family: "Exo2";
  font-weight: 400;
  animation-name: opacityFooter;
  animation-duration: 700ms;
}
@keyframes opacityFooter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.body::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(12, 12, 12, 0.83);
}
.body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(12, 12, 12, 0.83);
}
.body::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #c4c4c4;
}

.body._pc .header__menu-item:hover .header__sub-menu-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(0, 0);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.main {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}

.header {
  background: rgba(12, 12, 12, 0.83);
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  color: #cac9c9;
  z-index: 101;
}
.header a {
  color: #cac9c9;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header__logo-text {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  flex-grow: 1;
  text-align: center;
}
.header__logo-img {
  order: -1;
  width: 55px;
  transition: all 500ms;
}
.header__logo-img:hover {
  transform: scale(1.05);
}
.header__logo-img img {
  width: 100%;
}
.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #353535;
  padding: 25px 15px 15px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translate(380px, 0);
  opacity: 0;
  pointer-events: none;
  transition: all 300ms;
  z-index: 10;
}
.header__menu._active {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.header__menu-titte {
  width: 65%;
  color: #cac9c9;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #cac9c950;
  text-align: center;
  font-weight: 400;
}
.header__menu-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 65%;
  margin-bottom: 13px;
}
.header__menu-item:last-child {
  margin-bottom: 0;
}
.header__menu-link, .header__menu-link-with-submenu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.header__menu-link:hover, .header__menu-link-with-submenu:hover {
  transform: scale(1.05);
}
.header__menu-link-stream {
  position: relative;
}
.header__menu-stream-led {
  position: absolute;
  top: -1px;
  right: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(150, 150, 150, 0.6);
  box-shadow: 0px 0px 3px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.header__menu-stream-led._on {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 5px #00ff46;
  background: #00ff46;
}
.header__menu-arrow {
  width: 14px;
  height: 7px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  transform: rotate(-90deg) translateX(-1px);
}
.header__sub-menu-list {
  flex: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 15px 15px 15px;
  background: #353535;
  opacity: 0;
  transform: translateX(380px);
  transition: all 300ms;
  z-index: 12;
}
.header__menu-item._active .header__sub-menu-list {
  opacity: 1;
  transform: translateX(0px);
}
.header__back-to-menu {
  position: fixed;
  width: 65%;
  top: 20px;
  left: 50%;
  color: #cac9c9;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease-in 0.3s;
}
.header__back-to-menu .header__menu-arrow {
  transform: rotate(90deg) translateX(6px);
  margin-right: 7px;
}
.header__menu-item._active .header__back-to-menu {
  transform: translateX(-48%);
  opacity: 1;
}
.header__sub-menu-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 65%;
  margin-bottom: 15px;
}
.header__sub-menu-item:last-child {
  margin-bottom: 0;
}
.header__sub-menu-link {
  transition: all 0.1s ease-in;
}
.header__sub-menu-link:hover {
  transform: scale(1.05);
}
.header__menu-icon {
  z-index: 15;
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 1px solid #cac9c9;
  border-radius: 50%;
  background: transparent;
  transition: all 100ms;
}
.header__menu-icon._active {
  background: url(../img/icon/close-menu.svg) center/14px no-repeat;
}
.header__menu-icon::before, .header__menu-icon span, .header__menu-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  height: 1px;
  width: 58%;
  background-color: #cac9c9;
  transition: all 500ms;
}
.header__menu-icon::before {
  top: 10px;
}
.header__menu-icon span {
  top: 50%;
}
.header__menu-icon::after {
  bottom: 9px;
}
.header__menu-icon._active::before, .header__menu-icon._active span, .header__menu-icon._active::after {
  opacity: 0;
}
.header__menu-icon-link {
  position: absolute;
  width: 100%;
  height: 100%;
}
.header .breadgrumbs {
  --font-size: 14px;
  --line-height: var(--font-size);
  --max-width: 320px;
  --margin-arrow: 7px;
  --padding-inner: 2px 16px 5px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #6c707a;
  font-size: var(--font-size);
  line-height: calc(var(--line-height) + 5px);
  color: #cac9c9;
  transition: all 0.3s;
}
.header .breadgrumbs__fon-extra {
  opacity: 0;
  transition: all 0.3s;
}
.header .breadgrumbs._close .breadgrumbs__fon-extra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}
.header .breadgrumbs__inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  padding: var(--padding-inner);
  flex-wrap: wrap;
}
.header .breadgrumbs__link {
  color: #cac9c9;
}
.header .breadgrumbs__link span {
  border-bottom: 1px solid #cac9c970;
  transition: all 0.2s;
}
.header .breadgrumbs__link span:hover {
  color: white;
  transform: scale(1.04);
}
.header .breadgrumbs__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .breadgrumbs__item br {
  display: none;
}
.header .breadgrumbs__arrow {
  width: 15px;
  height: 15px;
  margin: 0 var(--margin-arrow);
  transform: translateY(2px);
}

.titles-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 26px;
  background: linear-gradient(to left, transparent, #ffffff95, #ffffff95, #ffffff95, transparent);
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  color: #263952;
  text-align: center;
}

.titles-block-article {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  font-size: 14px;
  line-height: 14px;
  color: #263952;
  text-align: center;
  width: 100%;
  background: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
  margin-bottom: 15px;
}

.titles-block.home-title {
  margin-bottom: 10px;
}

.sermons {
  width: 100%;
  background: #edecec;
  font-size: 12px;
  line-height: 12px;
}
.sermons .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sermons .titles-block.home-page {
  margin-bottom: 0;
  margin-top: 10px;
}
.sermons__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 4px;
}
.sermons__screen {
  margin-bottom: 10px;
}
.sermons__screen-img {
  width: 100%;
  cursor: pointer;
  transition: all 300ms;
}
.sermons__screen-img:hover {
  transform: scale(1.03);
}
.sermons__button-block {
  display: flex;
  flex-direction: column;
}
.sermons__button {
  width: 250px;
  padding: 6px 25px;
  margin-bottom: 6px;
  background: #c4c4c4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent;
  text-align: center;
  color: black;
  cursor: pointer;
  transition: all 300ms;
}
.sermons__button:hover {
  transform: scale(1.05);
  background: white;
  border: 1px solid #c4c4c4;
}
.sermons__button img {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.sermons__button span {
  flex-grow: 1;
}

.message {
  width: 100%;
  background: rgba(162, 163, 169, 0.5);
  color: #fefefe;
}
.message__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.message__article {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.message__article:nth-last-child(2), .message__article:nth-last-child(3), .message__article:nth-last-child(4), .message__article:nth-last-child(5), .message__article:nth-last-child(6) {
  display: none;
}
.message__article-img {
  width: 100%;
}
.message__article-info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 178px;
  height: 126px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(254, 254, 254, 0.4);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 8px;
  color: #fefefe;
  cursor: pointer;
  z-index: 3;
  transition: all 300ms;
}
.message__article-info-block:hover {
  transform: scale(1.03);
}
.message__article-date {
  font-size: 11px;
  line-height: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.message__article-name {
  display: flex;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.05em;
}
.message__article-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.message__wmb {
  position: absolute;
  bottom: 9px;
  left: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 200;
  color: #fefefe;
}

.last-events {
  width: 100%;
  background: url(../img/fon-last-events.webp) center/cover no-repeat;
}
.last-events__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.last-events__categories {
  font-size: 12px;
  margin-bottom: 10px;
}
.last-events__article-block {
  position: relative;
  transition: all 300ms;
  cursor: pointer;
}
.last-events__article-block:hover {
  transform: scale(1.03);
}
.last-events__img {
  width: 100%;
}
.last-events__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  background: rgba(12, 12, 12, 0.83);
  color: rgba(238, 238, 238, 0.5);
  font-size: 12px;
  line-height: 12px;
}
.footer__menu {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  padding: 10px 0;
  margin-bottom: 6px;
}
.footer__menu-link {
  color: #cac9c9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 200ms;
  flex-grow: 1;
  padding: 0 7px;
  height: 20px;
}
.footer__menu-link:hover {
  transform: scale(1.03);
}
.footer__menu-link .icon-contacts {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer__copyright {
  text-align: center;
  margin-bottom: 7px;
}

.video-player {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 163px;
  margin-bottom: 10px;
}
.video-player video {
  width: 288px;
  height: 163px;
}

.audio {
  width: 100%;
  margin-bottom: 10px;
  height: 35px;
}

.button-to-top {
  position: fixed;
  width: 33px;
  height: 33px;
  bottom: 49px;
  right: 5px;
  background: rgba(12, 12, 12, 0.6);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.35s;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s;
}
.button-to-top:hover {
  transform: scale(1.03);
}
.button-to-top img {
  width: 71%;
  height: 71%;
}

.error-fzf {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-grow: 1;
  padding: 15px 0;
}
.error-fzf__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
}
.error-fzf img {
  display: block;
  width: 80%;
}
.error-fzf p {
  padding: 0 0 20px;
}
.error-fzf__btn {
  display: block;
  width: 200px;
  border: 1px solid rgba(52, 50, 50, 0.5);
  padding: 7px 43px;
  margin-bottom: 7px;
  font-size: 11px;
  line-height: 11px;
  color: #263952;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms;
}
.error-fzf__btn:last-child {
  margin-bottom: 0;
}
.error-fzf__btn:hover {
  transform: scale(1.05);
  background: rgba(162, 163, 169, 0.5);
}

/* --- Media --- */
@media (min-width: 375px) {
  .container {
    max-width: 375px;
    padding: 0 27px;
  }

  .header {
    font-size: 17px;
    line-height: 17px;
  }
  .header__menu {
    transform: translate(455px, 0);
  }
  .header__menu-titte {
    width: 60%;
  }
  .header__menu-item {
    width: 60%;
  }
  .header__menu-stream-led {
    top: 0;
    right: -7px;
  }
  .header__menu-arrow {
    width: 15px;
  }
  .header__back-to-menu {
    top: 25px;
  }
  .header__sub-menu-list {
    transform: translate(455px, 0);
  }
  .header__sub-menu-item {
    width: 60%;
  }
  .header__menu-item._active .header__back-to-menu {
    transform: translateX(-44%);
  }
  .header .breadgrumbs {
    --max-width: 375px;
    --padding-inner: 2px 27px 5px;
  }

  .titles-block {
    height: 28px;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  .titles-block-article {
    height: 28px;
    font-size: 14px;
  }

  .message__article-info-block {
    top: 13px;
    left: 13px;
    width: 192px;
    height: 131px;
  }
  .message__wmb {
    bottom: 11px;
    left: 34px;
  }

  .last-events__categories {
    font-size: 13px;
  }

  .video-player {
    height: 180px;
  }
  .video-player video {
    width: 320px;
    height: 180px;
  }

  .audio {
    height: 37px;
    margin-bottom: 12px;
  }

  .button-to-top {
    bottom: 44px;
    right: 10px;
  }

  .error-fzf {
    padding: 15px 0;
  }
  .error-fzf__info {
    font-size: 15px;
    line-height: 15px;
  }
  .error-fzf__btn {
    width: 230px;
    font-size: 14px;
    line-height: 14px;
  }
}
@media (min-width: 450px) {
  .container {
    max-width: 450px;
    padding: 0 40px;
  }

  .header {
    font-size: 18px;
    line-height: 18px;
  }
  .header__menu {
    transform: translate(605px, 0);
    padding-top: 23px;
  }
  .header__menu-titte {
    width: 50%;
  }
  .header__menu-item {
    width: 50%;
    margin-bottom: 13px;
  }
  .header__menu-arrow {
    width: 16px;
    height: 8px;
  }
  .header__sub-menu-list {
    transform: translate(605px, 0);
  }
  .header__sub-menu-item {
    width: 50%;
  }
  .header__menu-item._active .header__back-to-menu {
    transform: translateX(-37%);
  }
  .header .breadgrumbs {
    --max-width: 450px;
    --padding-inner: 2px 40px 5px;
  }

  .titles-block {
    height: 30px;
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 21px;
  }

  .titles-block-article {
    height: 30px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .titles-block.home-title {
    margin-bottom: 15px;
  }

  .sermons {
    font-size: 14px;
    line-height: 14px;
  }
  .sermons .titles-block.home-page {
    margin-top: 15px;
  }
  .sermons__inner {
    padding: 15px 0 8px;
  }
  .sermons__screen {
    margin-bottom: 15px;
  }
  .sermons__button {
    width: 280px;
    margin-bottom: 7px;
  }

  .message__inner {
    padding: 15px 0;
  }
  .message__article {
    margin-bottom: 15px;
  }
  .message__article-info-block {
    top: 15px;
    left: 15px;
    width: 220px;
    height: 150px;
    padding: 10px;
  }
  .message__article-name {
    font-size: 16px;
    line-height: 18px;
  }
  .message__wmb {
    bottom: 14px;
    left: 36px;
    font-size: 14px;
  }

  .last-events__inner {
    padding: 15px 0;
  }
  .last-events__categories {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer {
    font-size: 12px;
    line-height: 12px;
  }
  .footer .container {
    padding: 0 15px;
  }
  .footer__menu {
    padding: 12px 5px 8px 5px;
  }
  .footer__menu-link {
    padding: 0;
    font-size: 15px;
    height: 23px;
  }
  .footer__menu-link .icon-contacts {
    width: 18px;
    height: 19px;
    margin-right: 10px;
  }
  .footer__copyright {
    margin-bottom: 8px;
  }

  .video-player {
    width: 100%;
    height: 208px;
    margin-bottom: 15px;
  }
  .video-player video {
    width: 370px;
    height: 208px;
  }

  .audio {
    margin-bottom: 14px;
    height: 40px;
  }

  .button-to-top {
    bottom: 45px;
    right: 24px;
  }

  .error-fzf {
    padding: 20px 0;
  }
  .error-fzf__info {
    font-size: 16px;
    line-height: 16px;
  }
  .error-fzf__btn {
    width: 250px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 600px) {
  .container {
    max-width: 600px;
    padding: 0 100px;
  }

  .header__menu {
    transform: translate(773px, 0);
  }
  .header__menu-titte {
    width: 40%;
  }
  .header__menu-item {
    width: 40%;
  }
  .header__sub-menu-list {
    transform: translate(773px, 0);
  }
  .header__sub-menu-item {
    width: 40%;
  }
  .header__menu-item._active .header__back-to-menu {
    transform: translateX(-30.5%);
  }
  .header .breadgrumbs {
    --max-width: 600px;
    --padding-inner: 2px 100px 5px;
  }

  .titles-block {
    height: 35px;
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .titles-block-article {
    height: 35px;
    font-size: 20px;
  }

  .sermons {
    font-size: 14px;
    line-height: 14px;
  }
  .sermons__inner {
    padding: 15px 0 8px;
  }
  .sermons__button {
    width: 280px;
    margin-bottom: 7px;
  }

  .message__article-info-block {
    width: 240px;
    height: 165px;
    padding: 10px;
  }
  .message__article-date {
    font-size: 12px;
  }
  .message__article-name {
    font-size: 17px;
    line-height: 19px;
  }
  .message__wmb {
    bottom: 14px;
    left: 45px;
  }

  .last-events__categories {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer {
    font-size: 14px;
    line-height: 14px;
  }
  .footer .container {
    padding: 0 30px;
  }
  .footer__menu {
    padding: 15px 5px 9px 5px;
    margin-bottom: 8px;
  }
  .footer__copyright {
    margin-bottom: 10px;
  }
  .footer__menu-link {
    font-size: 17px;
    height: 27px;
  }
  .footer__menu-link .icon-contacts {
    width: 19px;
    height: 20px;
  }

  .video-player {
    width: 100%;
    height: 225px;
  }
  .video-player video {
    width: 400px;
    height: 225px;
  }

  .audio {
    margin-bottom: 16px;
    height: 40px;
  }

  .button-to-top {
    bottom: 40px;
    right: 20px;
  }

  .error-fzf {
    padding: 20px 0;
  }
  .error-fzf__info {
    font-size: 17px;
    line-height: 17px;
  }
  .error-fzf__btn {
    width: 260px;
    font-size: 17px;
    line-height: 17px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 50px;
  }

  .header__menu {
    transform: translate(1005px, 0);
    width: 50%;
    left: auto;
    right: 0;
    padding-top: 25px;
    border-left: 1px solid #cac9c925;
    box-shadow: -2px 0 10px #353535;
  }
  .header__menu-titte {
    width: 65%;
    margin-bottom: 15px;
  }
  .header__menu-item {
    width: 65%;
    margin-bottom: 12px;
  }
  .header__sub-menu-list {
    transform: translate(1005px, 0);
  }
  .header__sub-menu-item {
    width: 65%;
  }
  .header__menu-item._active .header__back-to-menu {
    transform: translateX(-48%);
  }
  .header .breadgrumbs {
    --max-width: 768px;
    --padding-inner: 2px 50px 5px;
  }

  .titles-block {
    height: 41px;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 30px;
  }

  .titles-block-article {
    height: 41px;
    margin-bottom: 20px;
    width: 490px;
    font-size: 22px;
  }

  .titles-block.home-title {
    margin-bottom: 20px;
  }

  .sermons {
    font-size: 16px;
    line-height: 20px;
  }
  .sermons .titles-block.home-page {
    margin-top: 20px;
  }
  .sermons__inner {
    padding: 20px 0 25px;
  }
  .sermons__screen {
    margin-bottom: 20px;
  }
  .sermons__screen-img {
    width: 440px;
  }
  .sermons__button {
    width: 100%;
    padding: 11px 20px;
    margin-bottom: 19px;
  }
  .sermons__button:last-child {
    margin-bottom: 0;
  }

  .message__inner {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .message__article {
    position: relative;
    width: 310px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .message__article:nth-last-child(6) {
    display: block;
    margin-right: 20px;
  }
  .message__article:nth-last-child(1) {
    display: block;
    margin-right: 0;
  }
  .message__article-info-block {
    top: 12px;
    left: 12px;
    width: 185px;
    height: 135px;
    padding: 8px;
  }
  .message__article-name {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.05em;
  }
  .message__wmb {
    bottom: 8px;
    left: 23px;
    font-size: 13px;
    line-height: 13px;
  }

  .last-events__inner {
    padding: 20px 0;
  }
  .last-events__categories {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 18px;
  }
  .last-events__article-block {
    width: 450px;
  }

  .footer {
    font-size: 15px;
    line-height: 15px;
  }
  .footer__menu {
    padding: 15px 50px 10px 50px;
  }
  .footer__menu-link {
    font-size: 18px;
  }
  .footer__menu-link .icon-contacts {
    width: 20px;
    height: 20px;
  }
  .footer__copyright {
    margin-bottom: 12px;
  }

  .video-player {
    width: 100%;
    height: 253px;
    margin-bottom: 20px;
  }
  .video-player video {
    width: 450px;
    height: 253px;
  }

  .audio {
    margin-bottom: 18px;
    width: 455px;
  }

  .button-to-top {
    width: 40px;
    height: 40px;
    bottom: 41px;
    right: 32px;
  }

  .error-fzf {
    padding: 20px 0;
  }
  .error-fzf__info {
    font-size: 18px;
    line-height: 18px;
  }
  .error-fzf__btn {
    width: 270px;
    font-size: 18px;
    line-height: 18px;
  }
}
@media (min-width: 1000px) {
  .container {
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
  }

  .header {
    line-height: 20px;
  }
  .header__menu {
    border-left: 0;
  }
  .header .container {
    padding: 0 30px;
  }
  .header__inner {
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .header__logo-text {
    width: 100%;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .header__logo-img {
    order: 0;
    width: 120px;
    margin-top: -47px;
    margin-bottom: 0;
    transition: all 500ms;
    margin-right: 55px;
  }
  .header__logo-img:hover {
    transform: scale(1.05);
  }
  .header__logo-img img {
    width: 100%;
  }
  .header__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
    flex: 1;
  }
  .header__menu-titte {
    display: none;
  }
  .header__menu-list {
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
  }
  .header__menu-item {
    flex: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
  }
  .header__menu-item:last-child {
    margin-left: 44px;
  }
  .header__menu-link, .header__menu-link-with-submenu {
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in-out;
  }
  .header__menu-link:hover, .header__menu-link-with-submenu:hover {
    border-bottom: 1px solid #fff;
  }
  .header__menu-stream-led {
    top: 1px;
    right: -6px;
  }
  .header__menu-arrow {
    width: 11px;
    height: 6px;
    transform: rotate(0deg) translate(0px, 3px);
    margin-left: 3px;
  }
  .header__sub-menu-list {
    flex: 0;
    position: absolute;
    top: 24px;
    left: -10px;
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    padding: 20px 0 0 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    font-size: 16px;
    line-height: 18px;
    transform: translate(0, 10%);
    transition: all 100ms ease-in 0.2s;
    z-index: 12;
  }
  .header__back-to-menu {
    display: none;
  }
  .header__sub-menu-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 7px 15px;
    margin-bottom: 0;
    background: rgba(12, 12, 12, 0.83);
    border-top: 1px solid #ffffff60;
    border-left: 1px solid #ffffff60;
    border-right: 1px solid #ffffff60;
  }
  .header__sub-menu-item:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #ffffff60;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  .header__menu-link-search {
    padding-left: 16px;
    position: relative;
  }
  .header__menu-link-search::before {
    content: "";
    background: url(../img/icon/search.svg) center/cover no-repeat;
    position: absolute;
    top: 4px;
    left: 0;
    width: 13px;
    height: 13px;
  }
  .header__menu-icon {
    display: none;
  }
  .header .breadgrumbs {
    --font-size: 15px;
    --max-width: 1000px;
    --padding-inner: 3px 30px 6px;
  }
  .header .breadgrumbs__arrow {
    width: 16px;
    height: 16px;
  }

  .titles-block {
    height: 51px;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 13px;
  }

  .titles-block-article {
    width: 590px;
    height: 51px;
    font-size: 24px;
  }

  .titles-block.home-title {
    width: 610px;
  }

  .sermons {
    font-size: 16px;
    line-height: 20px;
  }
  .sermons .titles-block.home-page {
    margin-top: 20px;
  }
  .sermons__inner {
    padding: 20px 0 35px;
  }
  .sermons__screen-img {
    width: 592px;
  }
  .sermons__button {
    width: 250px;
    padding: 16px 25px;
    margin-bottom: 20px;
  }

  .message__inner {
    padding: 20px 0 30px 0;
  }
  .message__article {
    width: 340px;
    margin-bottom: 25px;
    margin-right: 25px;
  }
  .message__article:nth-last-child(5) {
    display: block;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .message__article:nth-last-child(4) {
    display: block;
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .message__article:nth-last-child(6) {
    margin-right: 25px;
  }
  .message__article-info-block {
    width: 200px;
    height: 145px;
  }
  .message__wmb {
    bottom: 11px;
    left: 31px;
  }

  .last-events__inner {
    padding: 20px 0 30px 0;
  }
  .last-events__categories {
    margin-bottom: 20px;
  }
  .last-events__article-block {
    width: 560px;
  }

  .footer {
    font-size: 16px;
    line-height: 16px;
  }
  .footer__menu {
    padding: 15px 45px 10px;
    margin-bottom: 10px;
  }
  .footer__menu-link {
    font-size: 20px;
    height: 29px;
  }
  .footer__menu-link .icon-contacts {
    width: 22px;
    height: 23px;
  }
  .footer__copyright {
    margin-bottom: 10px;
  }

  .video-player {
    width: 100%;
    height: 315px;
  }
  .video-player video {
    width: 560px;
    height: 315px;
  }

  .audio {
    height: 45px;
    width: 570px;
    margin-bottom: 20px;
  }

  .button-to-top {
    width: 45px;
    height: 45px;
    bottom: 40px;
    right: 30px;
  }

  .error-fzf {
    padding: 25px 0;
  }
  .error-fzf__info {
    font-size: 19px;
    line-height: 19px;
  }
  .error-fzf__btn {
    width: 290px;
    font-size: 19px;
    line-height: 19px;
    padding: 10px 50px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }

  .header {
    font-size: 20px;
    line-height: 24px;
  }
  .header__inner {
    padding: 22px 0;
  }
  .header__logo-text {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 22px;
  }
  .header__logo-img {
    width: 140px;
    margin-top: -52px;
    margin-right: 70px;
  }
  .header__menu-stream-led {
    top: 3px;
  }
  .header__menu-arrow {
    width: 14px;
    height: 8px;
    margin-left: 4px;
  }
  .header__sub-menu-list {
    top: 27px;
    width: 205px;
    padding: 23px 0 0 0;
  }
  .header__sub-menu-item {
    padding: 12px 15px;
  }
  .header__menu-link-search {
    padding-left: 17px;
  }
  .header__menu-link-search::before {
    top: 5px;
    width: 16px;
    height: 16px;
  }
  .header .breadgrumbs {
    --font-size: 16px;
    --max-width: 1200px;
    --padding-inner: 2px 30px 5px;
  }
  .header .breadgrumbs__arrow {
    width: 16px;
    height: 16px;
  }

  .titles-block {
    margin-bottom: 14px;
  }

  .titles-block-article {
    margin-bottom: 27px;
  }

  .titles-block.home-title {
    width: 800px;
    margin-bottom: 27px;
  }

  .sermons {
    font-size: 18px;
    line-height: 22px;
  }
  .sermons .titles-block.home-page {
    margin-top: 27px;
  }
  .sermons__inner {
    padding: 27px 0 35px;
  }
  .sermons__screen {
    margin-bottom: 27px;
  }
  .sermons__screen-img {
    width: 590px;
  }
  .sermons__button {
    width: 286px;
    padding: 18px 28px;
    margin-bottom: 27px;
  }
  .sermons__button img {
    width: 35px;
    height: 35px;
  }

  .message__inner {
    padding: 27px 0 35px 0;
  }
  .message__article {
    width: 340px;
    margin-bottom: 25px;
    margin-right: 25px;
  }
  .message__article:nth-last-child(6) {
    margin-right: 25px;
  }
  .message__article:nth-last-child(5) {
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .message__article:nth-last-child(4) {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .message__article:nth-last-child(3), .message__article:nth-last-child(2) {
    display: block;
    margin-right: 25px;
    margin-bottom: 25px;
  }

  .last-events__inner {
    padding: 27px 0 35px 0;
  }
  .last-events__categories {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .footer {
    font-size: 18px;
    line-height: 18px;
  }
  .footer__menu {
    padding: 18px 70px 17px;
    margin-bottom: 14px;
  }
  .footer__menu-link {
    font-size: 22px;
  }
  .footer__menu-link .icon-contacts {
    width: 24px;
    height: 26px;
    margin-right: 12px;
  }
  .footer__copyright {
    margin-bottom: 14px;
  }

  .audio {
    width: 560px;
    margin-bottom: 22px;
  }

  .button-to-top {
    bottom: 58px;
    right: 43px;
  }

  .error-fzf {
    padding: 30px 0;
  }
  .error-fzf__info {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 50px;
  }

  .titles-block.home-title {
    width: 950px;
  }

  .header {
    font-size: 22px;
    line-height: 26px;
  }
  .header__logo-text {
    font-size: 36px;
    line-height: 36px;
  }
  .header__logo-img {
    width: 160px;
    margin-top: -57px;
  }
  .header__menu-stream-led {
    top: 4px;
  }
  .header__menu-arrow {
    width: 15px;
    height: 9px;
  }
  .header__sub-menu-list {
    top: 29px;
    width: 220px;
    font-size: 18px;
    line-height: 20px;
  }
  .header__menu-link-search {
    padding-left: 18px;
  }
  .header__menu-link-search::before {
    top: 6px;
  }
  .header .breadgrumbs {
    --max-width: 1400px;
    --padding-inner: 2px 30px 5px;
  }

  .footer {
    font-size: 20px;
    line-height: 20px;
  }
  .footer__menu-link .icon-contacts {
    width: 26px;
    height: 26px;
  }

  .button-to-top {
    width: 50px;
    height: 50px;
    right: 56px;
  }

  .error-fzf {
    padding: 35px 0;
  }
  .error-fzf__info {
    font-size: 22px;
    line-height: 22px;
  }
}