/*
 Theme Name:   SpasTV
 Theme URI:    N/A
 Description:
 Author:
 Author URI:   N/A
 Text Domain:
*/
#wpadminbar {
    position: fixed;
}

.yith-infs-loader {
    text-align: center;
    margin: 10px 0 30px;
}

.yith-infs-loader img {
    max-width: 100%;
    display: inline-block;
}

.yith-infs-button-wrapper {
    text-align: center;
    margin-bottom: 10px;
}

/******************
* Animation
*******************/

.yith-infs-animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Zoom In */

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

.yith-infs-zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* Bounce In */

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.yith-infs-bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

/* Fade In */

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

.yith-infs-fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

/* Fade In Down */

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.yith-infs-fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Fade In Left */

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.yith-infs-fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

/* Fade In Right */

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.yith-infs-fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/* Fade In Up */

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.yith-infs-fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

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

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong, .page-title {
    font-weight: 600 !important;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 38px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */


pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

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

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

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

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

input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

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

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

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

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

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

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

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

td,
th {
    padding: 0;
}

/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    color: #1EAEDB;
}

a:hover {
    color: #000;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: #555;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: #333;
    border-color: #888;
    outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #FFF;
    background-color: #33C3F0;
    border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #FFF;
    background-color: #1EAEDB;
    border-color: #1EAEDB;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 2px solid #D1D1D1;
    box-shadow: none;
    box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 2px solid #33C3F0;
    outline: 0;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label > .label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}


–––––––––––––––––––––––––––––––––––––––––––––––––– *

/
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
    margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol, {
    margin-bottom: 2.5rem;
}


/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}

@charset "UTF-8";


/*=== https://www.gridlover.net/try ===*/
html, .root {
    font-size: 17px;
    line-height: 130%;
}


body, .article {
    font-size: 1em;
    line-height: 1.30769231em;
}

h1, .h1 {
    font-size: 3.5em;
    font-size: 45px;
    line-height: 1.23636364em;
    margin-top: 0.30909091em;
    margin-bottom: 0.61818182em;
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 30px;
    }
}

h2, .h2 {
    font-size: 2.61538462em;
    line-height: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

h3, .h3 {
    font-size: 1.61538462em;
    line-height: 1.2em;
    /*line-height: 1.61904762em;*/
    margin-top: 0.80952381em;
    margin-bottom: 0.5em;
}

h4, .h4 {
    font-size: 1em;
    line-height: 1.30769231em;
    margin-top: 1.30769231em;
    margin-bottom: .5em;
}

h5, .h5 {
    font-size: 1em;
    line-height: 1.30769231em;
    margin-top: 1.30769231em;
    margin-bottom: 0em;
}

p, ul, ol, pre, table, blockquote {
    margin-top: 0em;
    margin-bottom: 1.30769231em;
}

ul ul, ol ol, ul ol, ol ul {
    margin-top: 0em;
    margin-bottom: 0em;
}


sub, sup {
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}


h1, h3 {
    font-weight: bold;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

blockquote {
    text-align: center;
    overflow: hidden;
    margin: 0;
    padding: 15px 50px;
    color: #c1272d;
    font-size: 150%;
    line-height: 130%;
    font-weight: bold;
    font-style: italic;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    margin-bottom: 1em;
}

footer a, footer a:hover {
    color: #ffffff;
}
@media all and (min-width: 768px) {


    footer {
        /* height: 256px; */
        /* background: #3888FF !important;  */
        position: relative;
        padding: 0;
        font-family: Roboto, 'Open Sans', sans-serif;

    }

    footer .wrapper {
        padding-top: 26px;
        height: 100%;
        /* padding-left: 120px; */
        position: relative;
        background-image: url("./images/footer_city.png");
        background-size: contain;
        background-position: right bottom;
        background-repeat: repeat-x;
        padding-bottom: 80px !important;
    }
}

.footer-box1 {
    display: inline-block;
    width: 30%;
    float: left;
    padding-right: 10px;
    color: #fff;
}

.footer-box2 {
    display: inline-block;
    width: 67%;
    color: #fff;
}

.footer-box2 {
    display: grid;
    grid-template-columns: auto auto;
}

.footer-box2 div {
    padding: 0px 15px;
}

.footer-box1 a, .footer-box2 a {
    font-weight: 600;
}

footer .share-buttons img {
    height: 25px;
    margin-right: 5px;
}


@media (max-width: 979px) {
    footer nav, footer .menu {
        display: block !important;
    }
}

@media (max-width: 791px) {
    .footer-box1, .footer-box2 {
        width: 100%;
        float: none;
    }
}


footer .menu a {
    color: #fff;
}

footer .menu a:hover {
    color: #fff;
}

footer .menu li {
    margin-right: 0px;
}

footer .menu li.active a {
    color: #fff;
    /*text-decoration: underline;*/
}

footer img {
    margin-left: -6px;
}

@media all and (max-width: 979px) {
    footer {
        /* height: 400px; */
        padding: 0px 20px;
    }

    footer .wrapper {
        padding-top: 0px;
    }

    footer .wrapper:before {
        width: 60px;
        height: 60px;
        left: 20px;
    }

    footer nav, footer .menu {
        padding-top: 35px;
        padding-bottom: 5px;
        display: block;
    }

    footer img {
        margin-left: 24px;
        margin-top: 18px;
    }
}


.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
       supported by Chrome and Opera */
}


.iframe {
    position: relative;
    padding-top: 58%;
    background: #222;
}

.iframe iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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


.wrapper {
    max-width: 1640px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
}

@media (max-width: 1024px) {
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

iframe {
    max-width: 100%;
}

@media all and (max-width: 1024px) {
    .threeway {
        grid-template-columns: 1fr 2fr !important;
    }
}

.mobile-sup {
    display: none;
}

.video {
    width: 100%;
    max-width: 100%;
}

.video__button {
    font-size: 16px;
    max-width: 100%;
    width: 100%;
    background-color: #ff002e;
    color: #fff;
    text-transform: uppercase;
    height: 2.187vw;
    border-radius: 1.478vw;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin: -60px auto 0 auto;
    display: flex;
    position: relative;
}

.video__button:hover {
    color: #fff;
}

@media all and (max-width: 720px) {
    .threeway {
        grid-template-columns: 2fr !important;
    }

    /*aside { display: none; }*/
    .mobile-sup {
        display: flex;
        flex-direction: column;
    }

    .mobile-sup {
        border-radius: 10px;
        background-color: #fff;
    }

    .mobile-sup__wrap {
        padding: 10px 15px;
    }

    .mobile-sup__button {
        height: 36px;
        margin-top: -80px;
    }
}

.post-item__footer p {
    font-size: 17px !important;
}


footer #menu-footer-menu li:last-child {
    background-color: #fff !important;
    border-radius: 10px !important;
}

footer #menu-footer-menu li:last-child a {
    color: #111 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
html, body {
    font-family: 'Roboto', sans-serif;
}

img {
    max-width: 100%;
}

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

.calendar {
    margin-top: 2.955vw;
}

.calendar__wrap {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    min-height: 310px;
}

.calendar__slider {
    padding: 0 2.083vw 2.083vw 2.083vw;
}

.calendar__slide {
    padding-top: 25px;
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50vh;
    background-color: #fff;
    border-radius: 10px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.not-found h1 {
    color: #006FF1;
}

.not-found a {
    display: inline-flex;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    height: 2.187vw;
    border-radius: 1.478vw;
    background: #006FF1;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
}
@media ( max-width: 768px ) {
    .not-found{
        max-width: 100%;
        margin-bottom: 40px;
    }
    .not-found a{
        height: 36px;
    }

}
.searchform {
    display: flex;
    align-items: center;
    margin-right: 15px;
    padding: 2.5vw;
}

.searchform__wrap {
    display: none;
    align-items: center;
    position: absolute;
    right: 0;
}

.searchform__input {
    flex: 1;
}

.searchform input[type=text],
.searchform input[type=submit] {
    margin-bottom: 0;
}

.searchform input[type=submit] {
    border-radius: 0;
    border: 0;
    background-color: #0094f4;
    color: #fff;
}

.search-query {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.searchform__btn {
    display: inline-flex;
    width: 27px;
    height: 27px;
}

.search__header {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: .5vw;
    padding-bottom: 0;
}

.search__header p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 15px;
}

.search__header span {
    font-weight: 700;
    color: #2072B6;
}

.search__list {
    padding: 0 25px 15px 25px;
}

.search__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    grid-row-gap: 2.364vw;
    grid-column-gap: 1.478vw;
}

.search__post {
    position: relative;
}

.search__post picture {
    display: inline-flex;
}

.search__post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.search__post a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.search__post h4 {
    margin: 0;
    font-size: 16px;
}

.cat__wrapper {
    padding: 25px;
}

.cat__image {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.cat__description p:last-child {
    margin-bottom: 0;
}

.cat__tags {
    margin-top: 10px;
}

.cat__tags span {
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px;
    font-size: 12px;
    display: inline-flex;
    font-family: inherit;
    transition: .3s;
}

.cat__tags span:hover {
    color: #FF002E;
}
.post-list{
    margin-top: 25px;
    font-size: 16px;
    font-weight: 700;
}
.cat__repeater {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 700;
}

.post-item__content input,
.post-item__content textarea {
    display: block;
}

.post-item__content textarea {
    height: 150px;
    resize: none;
}

.post-item__content input[type="submit"] {
    color: #fff;
    background-color: #0094f4;
}

.calendar__head {
    position: relative;
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #8F9DB1;
    margin-bottom: 15px;
    align-items: center;
    height: 60px;
}

.calendar__today {
    position: absolute;
    left: 0;
    right: 0;
    top: -35px;
    background-color: #0094f4;
    color: #fff;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 150px;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
}

.calendar__data {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-auto-rows: 20px;
    flex: 0 0 50%;
    border-right: 1px solid #8F9DB1;
    align-items: center;
}

.calendar__num {
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 3.191vw;
    line-height: 3.723vw;
    color: #0094f4;
    margin-right: 10px;
}

.calendar__month {
    font-weight: 500;
    font-size: 16px;
    color: #0094f4;
}

.calendar__day {
    color: #4F5865;
    font-size: 14px;
}

.calendar__allow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #4F5865;
}

.calendar__red .calendar__num,
.calendar__red .calendar__month {
    color: #FF002E;
}

.calendar__allow p {
    margin: 0;
}

.calendar__content {
    display: flex;
}

.calendar__picture {
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
    margin-right: 15px;
}

.calendar__picture img {
    height: 157px;
    object-fit: contain;
    width: 100%;
}

.calendar__text {
    flex: 1;
}

.calendar__text h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    font-size: 14px;
}

.calendar__text p {
    font-size: 13px;
    line-height: 16px;
}

.title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 6;
    padding: 15px 15px 15px 15px;
    max-width: 300px;
    line-height: 17px;
}

.title a {
    color: #fff;
}

.title:before {
    content: '';
    position: absolute;
    background-image: url("./images/background.png");
    left: -1px;
    top: -1px;
    width: 95%;
    height: 120px;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 300px;
}

.title__live:before {
    background-image: url("./images/live.png");
}

.live__main {
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}

.live__main a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.live__main img {
    border-radius: 10px;
}

.live__wrap {
    padding-top: 20px;
}

.live__further {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #000000;
    margin: 5px 0 5px 0;
}

.live__item {
    margin-bottom: 10px;
}

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

.live__title {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0px;
}

.live__title span {
    color: #2072B6;
}

.live__descr {
    max-height: 2.813vw;
    overflow: hidden;
}

.live__descr p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-transform: lowercase;
    color: #4F5865;
    margin-top: 0;
    margin-bottom: 0;
}

.live__main--wrap {
    display: none;
}

.partners a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    text-decoration: none;
}

.partners img {
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    object-position: center;
}

.partners__title {
    margin-left: 25px;
}

.partners__title span {
    font-size: 12px;
    color: #0094f4;
}

.partners__title h4 {
    margin: 0;
    font-size: 14px;
}

.partners a:hover span {
    text-decoration: underline;
}

.calendar {
    position: relative;
    margin-bottom: 30px;
}

.calendar:before {
    border-radius: 10px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 3px solid #fff;
}

.site-header {
    position: relative;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
}

.site-header__top {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header__bottom {
    position: relative;
    background-color: #0094f4;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 3200px;
    margin: auto;
}
.site-header__logo picture{
    display: inline-flex;
    max-width: 105px;
    width: 100%;
}
.site-header ul li {
    margin-bottom: 0;
}

.site-header ul a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    font-family: Roboto, sans-serif;
    color: inherit;
}

@media ( max-width: 1200px ) and ( min-width: 768px ) {
    .site-header ul a {
        font-size: 10px;
    }
}

.top-menu {
    display: flex;
}

.top-menu a {
    color: #0094f4 !important;
    margin-left: 10px;
    margin-right: 10px;
}

.bottom-menu {
    display: flex;
    align-items: center;
}

.bottom-menu a {
    color: #fff !important;
    margin-left: 5px;
    margin-right: 5px;
}

.bottom-menu li:first-child {
    margin-left: 0;
}

.bottom-menu__bg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 35px;
}

.bottom-menu__bg:before {
    content: '';
    background-image: url("./images/nav_bg.png");
    position: absolute;
    left: 0;
    top: 5px;
    width: 115px;
    height: 35px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bottom-menu__scale:before {
    transform: scale(-1, 1);
}

.bottom-menu__bg a {
    position: relative;
    color: #2072B6 !important;
    z-index: 5;
    display: inline-flex;
    align-items: center;
}

.bottom-menu__bg a:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FF002E;
    border-radius: 50%;
    left: -15px;
}

.bottom-menu__scale a:before {
    left: unset;
    right: -15px;
}

@media ( max-width: 1024px ) {
    .bottom-menu .site-header__bg {
        width: unset;
        height: unset;
    }

    .bottom-menu li {
        display: flex;
        width: 100% !important;
    }

    .bottom-menu a {
        width: 100% !important;
    }

    .site-header__bg:before {
        content: none;
    }

    .site-header__bg a {
        color: #fff !important;
    }

    .site-header__bg a:before {
        content: none;
    }
}

.site-header__right {
    display: flex;
    align-items: center;
    position: relative;
}

.site-header__search {
    width: 27px;
    height: 27px;
    margin-right: 35px;

}

.site-header__support {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #FF0000;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 17px;
}

.news-grid {
    padding-bottom: 50px !important;
}

.column-2 {
    flex: 0 0 50%;
    width: 50%;
    display: grid;
    grid-template-columns: 50% 50%;
}

.column-2 img {
    max-width: 100%;
}

.site-content {
    padding-top: 25px;
    padding-bottom: 50px;
    background-color: #E5E5E5;
}

.post-block {
    background-color: #fff;
    border-radius: 10px;
}

.post-block__header {
    position: relative;
    z-index: 1;
}

.post-block__header a {
    position: absolute;
    right: 20px;
    top: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    text-align: right;
    color: #2072B6;
}
.post-list{
    display: flex;
    flex-wrap: wrap;
    padding: 25px 10px;
    position: relative;
    z-index: 2;
}
.post-list__item{
    display: flex;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}
.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 12vw;
    grid-row-gap: 0.77vw;
    grid-column-gap: 0.77vw;
    padding: 0.77vw;
    position: relative;
    z-index: 5;
}

@media ( min-width: 1680px ) {
    .post-grid {
        grid-auto-rows: 200px;
    }
}
@media ( max-width: 1030px ) {
    .post-grid{
        grid-auto-rows: 25vw;
    }
}
@media( max-width: 1030px ) and ( min-width: 768px ) {
    .post-grid{
        /*grid-template-columns: repeat(3, 1fr);*/
        /*grid-auto-rows: 17vw;*/
    }
}
.post-grid__header{
    position: relative;
    z-index: 1;
}

.post-grid__best {
    grid-auto-rows: 10.116vw;
    grid-column-gap: 1.478vw;
    grid-row-gap: 1.773vw;
}

.post-grid__post {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.post-grid__link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}

.post-grid__post h4 {
    margin-top: 0;
    color: #fff;
    padding: 0 10px;
    font-size: 16px;
    position: absolute;
    text-transform: uppercase;
    bottom: 5px;
    z-index: 5;
}

.post-grid__picture {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.post-grid__picture img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}


.post-grid__placeholder {
    background-color: #E5E5E5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-grid__placeholder rect {
    fill: transparent;
}
.saints{
    padding: 0 10px;
}
.list{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.list__item{
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 5px;
}
.image-left img{
    object-position: left;
}
@media (max-width: 480px) and (min-width: 320px) {
    .post-grid figure img {
        height: 150px;
    }

    .post-grid {
        grid-template-columns: 1fr 1fr;
        padding: 10px;
        grid-row-gap: 5px;
        grid-column-gap: 5px;
    }
    .footer-menu{
        flex-wrap: wrap;
    }
}




.content {
    flex: 0 0 50%;
    max-width: 50%;
}

.sidebar {
    position: relative;
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.sidebar__between {
    display: flex;
    flex-direction: column;
}

.sidebar__between .sidebar__item {
    flex: 1;
    display: inline-flex;
    flex-wrap: wrap;
}

.sidebar__between .sidebar__item header {
    flex: 1;
}

.sidebar__item {
    position: relative;
    border-radius: 10px;
    background-color: #fff;
}

.sidebar img {
    display: block;
}

.sidebar__picture img {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.donate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    text-decoration: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.donate img {
    max-width: 120px;
}

.donate__button {
    display: inline-flex;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 36px;
    border-radius: 15px;
    background-color: #ff002e;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
}
@media (max-width: 1440px) {
    .donate img{
        max-width: 80px;
    }
    .donate div{
        width: 100%;
    }
    .donate__button{
        font-size: 10px;
        padding: 10px;
    }
}
.post-item {
}

.post-item__wrapper {
    border-radius: 10px;
    background-color: #fff;
}

.post-item__header {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.post-item__social {
    justify-self: end;
    padding-right: 2.083vw;
}

.post-item__social a {
    display: inline-flex;
    margin: 0 10px;
}

.post-item__social a:last-child {
    margin-right: 0;
}

.post-item__picture img {
    border-radius: 10px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.post-item__main {
    position: relative;
    z-index: 1;
    padding-left: 2.083vw;
    padding-right: 2.083vw;
    padding-bottom: 2.5vw;
}

.post-item__pic {
    display: block;
    margin-bottom: 0.887vw;
}

.post-item__pic img {
    width: 100%;
    border-radius: 10px;
    height: 18.750vw;
    object-fit: cover;
    object-position: center;
    display: flex;
}

.post-item__watchon p {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    /* text-transform: uppercase; */
    color: #000000;
    margin: auto 0px;
    padding-right: 10px;
}

.post-item__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 10px;
}

.post-item__list a {
    display: inline-flex;
    margin-right: 25px;
}

.post-item__list a:last-child {
    margin-right: 0;
}

.post-item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    color: #2072B6;
    margin-bottom: 15px;
    padding-top: 10px;
    margin-top: 0;
}

.post-item__info {
    display: flex;
    /*grid-template-columns: 50% 50%;*/
    /*grid-template-rows: 1fr;*/
    margin-bottom: 1.418vw;
}

.post-item__date {
    color: #74869E;
    font-size: 1.064vw;
    font-weight: 700;
}

.post-item__tags {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.post-item__tags a {
    display: inline-flex;
    margin-left: 0.591vw;
    font-size: 1.182vw;
    line-height: 1.359vw;
    color: #000;
    text-transform: uppercase;
}

.post-item__tags a:before {
    content: '#';
    color: #2072B6;
}

.post-item__content {
    font-size: 17px;
    line-height: 22px;
}

.post-item__content a {
    color: #1EAEDB;
}

.post-item__footer {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.post-item__footer p {
    margin-top: 0;
    margin-bottom: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000000;

}

.post-item__follow {
    display: flex;
    margin-left: auto;
    flex: 1;
    justify-content: end;
    margin-left: 2vw;
}

.post-item__follow li {
    margin-left: 5px;
    margin-right: 5px;
}

.post-item__follow a {
    position: relative;
    display: inline-flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #2072B6;
}

.post-item__follow a:before {
    content: '|';
    color: #B6BDC9;
    margin-right: 18px;
    margin-left: 2px;
}

.post-item__follow li:first-child a:before {
    content: none;
}

.post-block__related {
    margin-bottom: 30px;
}

@media ( max-width: 1024px ) {

    .post-item__social,
    .post-item__info {
        display: none;
    }
    .post-item__list{
        margin-bottom: 10px;
    }
    .post-item__title {
        font-size: 22px;
        line-height: 1.2;
    }
    .post-item__header{
        grid-template-columns: 1fr;
        margin-bottom: 15px;
    }
    .post-item__content {
        font-size: 16px;
        line-height: 1.2;
    }

    .post-item__pic img {
        height: 210px;
    }

    .post-item__list {
        justify-content: center;
    }

    .post-item__list p {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        padding: 0;
    }

    .post-item__footer {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .post-item__footer p {
        text-transform: none;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;

    }

    .post-item__follow {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 285px;
    }

}


.sidebar .sidebar__item {
    margin-bottom: 15px;
}

.sidebar .sidebar__item:last-child {
    margin-bottom: 0;
}

.sidebar__wrap {
    position: relative;
    z-index: 5;
    padding: 10px 15px;
    width: 100%;
}

.sidebar__text {
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    font-weight: 400;
}
@media ( max-width: 1024px ) {
    .sidebar__text{
        font-size: 16px;
        line-height: 1.2;
    }
}
.sidebar__white {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 1.478vw;
    position: relative;
    z-index: 6;
}

.sidebar__social p {
    margin-bottom: 15px;
    font-size: 30px;
    text-align: center;
    line-height: 34px;
}

.sidebar__social {
    padding-bottom: 35px;
}

.sidebar__social--list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    max-width: 17.73vw;
    margin-left: auto;
    margin-right: auto;
}

.faces {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
}

.faces__item {
    position: relative;
    max-width: 180px;
        
}

.faces__slug{
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.faces__title{
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1;
    color: #1EAEDB;
    font-weight: bold;
}
.faces__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E5E5E5;
    border-radius: 10px;
}

.faces__placeholder svg {
    max-width: 75px;
}

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

.faces__pic img {
    border-radius: 10px;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.modal {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99;
}

.modal:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.modal__close {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    color: #FF002E;
    border: 1px solid #FF002E;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modal__close svg{
    fill: #FF002E;
    width: 20px;
}
.modal__name {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    color: #2072B6;
    margin-bottom: 15px;
    margin-top: 0;
}

.modal__body {
    position: fixed;
    max-width: 80%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 50px 50px 0px;
    transition: all 0.4s ease;
    opacity: 1;
    visibility: visible;
    max-height: 74%;
    height: 100%;
    display: flex;
    overflow-y: scroll;
}

.modal__picture {
    margin-right: 25px;
    margin-bottom: 25px;
    display: inline-block;
    max-width: 300px;
    width: 100%;
}

.modal__picture img {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
}
.modal__wrap a{
    font-weight: bold;
    color: #1EAEDB;
}
@media (max-width: 1024px) {
    .modal__picture{
        margin-left: auto;
        margin-right: auto;
        max-width: 180px;
    }
    .modal__picture img{
        max-width: 180px;
    }
    .modal__body{
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .faces {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
.director {
    background: #006FF1;
    margin-top: -25px;
    height: 20vw;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1.478vw;
}

.director p {
    font-size: 1.064vw;
    color: #fff;
    position: relative;
    z-index: 51;
    max-width: 10vw;
    margin-top: 3vw;
}

.director__pic {
    position: absolute;
    bottom: 10px;
    right: 13px;
    display: flex;
    z-index: 10;
}

.sidebar__background {
    min-height: 12vw;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    padding: 25px;
    margin-top: -20px;
}

.sidebar__question p {
    margin: 0;
}

.sidebar__question a {
    display: inline-flex;
    font-size: 1.182vw;
    color: #000;
    text-transform: uppercase;
    width: 11.584vw;
    height: 2.187vw;
    border-radius: 1.478vw;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.sidebar__question .sidebar__blue {
    min-height: 9.456vw;
    display: flex;
    align-items: center;
}

.sidebar__lion img {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    border-radius: 15px;
    max-height: 350px;
    object-fit: cover;
    object-position: top;
}

.sidebar__church {
    padding-left: 2.069vw;
    padding-right: 2.069vw;
}

.sidebar__church p {
    margin-bottom: 1.5vw;
}

.sidebar__church a {
    text-transform: uppercase;
    color: #0094f4;
    font-size: 20px;
    font-weight: 700;
    /*white-space: nowrap;*/
}
@media( max-width: 1024px ) {
    .sidebar__church a{
        font-size: 16px;
    }
}
.sidebar__church img {
    display: block;
}

.broadcast {
    position: relative;
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: 30px;
    margin-left: 3.125vw;
    margin-right: 3.125vw;
}

.broadcast__link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.broadcast__slider {
    padding: 30px;
}

.broadcast__slide {
    border-radius: 10px;
}

.broadcast__wrap {
    padding: 20px 10px;
    background: #EFF1F2;
    border-radius: 10px;
}

.broadcast__wrap picture {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.broadcast__wrap img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    border-radius: 5px;
}

.broadcast__wrap h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #2072B6;
}

.broadcast__wrap p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #4F5865;
    margin-top: 0;
    margin-bottom: 0;
}

.broadcast__buttons {
    position: absolute;
    left: -3.125vw;
    right: -3.125vw;
    top: 50%;
}

.wrapper .swiper-button-prev,
.container .swiper-button-prev,
.container .swiper-button-next,
.wrapper .swiper-button-next {
    width: 55px;
    height: 55px;
    background-color: #0094f4;
    border-radius: 50%;
}

.container .swiper-button-prev,
.wrapper .swiper-button-prev {
    left: -20px;
}

.container .swiper-button-next,
.wrapper .swiper-button-next {
    right: -20px;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after {
    content: '' !important;
    background-image: url("./images/slider-arrow.svg");
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-button-next:after {
    transform: rotate(180deg);
}

.topnews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 13vw;
    gap: 0.3vw;
    padding-bottom: 25px;
}

@media ( min-width: 1640px ) {
    .topnews {
        grid-auto-rows: 220px;
    }
}

.topnews__item {
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.topnews__main {
    grid-column: auto/span 2;
    grid-row: 1/3;
}

.topnews__item picture {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}

.topnews__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.topnews__content {
    position: relative;
    z-index: 10;
    padding: 10px;
}

.topnews__link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
}

.topnews__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0094f4;
    border-radius: 5px;
    color: #fff;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.topnews__item h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

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

.sidebar__bordered {
    position: relative;
    background-color: #E5E5E5;
}

.sidebar__bordered:before {
    border-radius: 10px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: 3px solid #fff;
}

.patriarch__sidebar {

}

.patriarch__quote {
    padding: 25px 25px 80px 25px;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.patriarch__pic {
    position: relative;
    margin-top: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patriarch__pic img {
    max-width: 20.686vw;
}

.patriarch-day {
    padding: 20px 10px 60px 20px;
    background: #EFF1F2;
    border-radius: 10px;
}

.patriarch-day__wrap {
    position: relative;
}

.patriarch-day__wrap a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.patriarch-day__pic {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.patriarch-day__pic img {
    border-radius: 10px;
}

.patriarch-day__info h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #2072B6;
}

.patriarch-pic {
    right: 3px;
    bottom: 3px;
    display: flex;
    z-index: 5;
    position: absolute;
}

.list-words {
    padding: 10px;
}

.list-words__item {
    position: relative;
    display: flex;
    border-radius: 10px;
    padding: 20px 10px;
    background: #EFF1F2;
    margin-bottom: 10px;
}

.list-words__item:last-child {
    margin-bottom: 0;
}

.list-words__author {
    width: 30%;
    max-width: 30%;
    flex: 0 0 30%;
    margin-right: 10px;
}

.list-words__author img {
    max-width: 100%;
}

.list-words__author h5 {
    text-align: center;
    margin-top: 5px;
    color: #2072B6;
    font-weight: 700;
    font-size: 14px
}

.list-words__text p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-transform: lowercase;
    color: #4F5865;
    margin-top: 0;
    margin-bottom: 0;
}

.authors-cols {
    padding: 10px;
}

.authors-cols__item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #8F9DB1;
}

.authors-cols__item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.authors-cols__image {
    width: 30%;
    max-width: 30%;
    flex: 0 0 30%;
    margin-right: 10px;
}

.authors-cols__text h5 {
    text-align: left;
    margin-top: 5px;
    color: #2072B6;
    font-weight: 700;
    font-size: 14px;
}

.authors-cols__text p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-transform: lowercase;
    color: #4F5865;
    margin-top: 0;
    margin-bottom: 0;
}

.burger {
    display: none;
}

.mobile-stream {
    display: none;
}

.loadmore {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.loadmore button {
    margin-bottom: 0;
}

.menu-bg {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.menu-bg a {
    color: #0094f4 !important;
    position: relative;
}

.films__item {
    display: flex;
    margin-bottom: 10px;
}

.films__item img {
    border-radius: 10px;
}

.news {
    display: flex;
    flex-wrap: wrap;
    padding: 0.77vw;
}

.news__item {
    display: flex;
    align-items: center;
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
    position: relative;
}

.news__item a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.news__pic {
    max-width: 280px;
    width: 100%;
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-right: 15px;
}

.news__pic img {
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.news__placeholder {
    max-width: 280px;
    width: 100%;
    flex: 0 0 100%;
    border-radius: 10px;
    background-color: #E5E5E5;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-right: 15px;
}

.news__placeholder svg {
    max-width: 120px;
}

.news__wrap h5 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1;
}

.news__wrap p {
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
}

@media ( max-width: 768px ) {
    .news__item {
        flex-wrap: wrap;
    }

    .news__item picture,
    .news__placeholder {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .news__item img {
        height: 220px;
    }

}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

.h-100 {
    height: 100%;
}

.relative {
    position: relative !important;
}

.overflow-hidden {
    overflow-x: hidden;
}

@media ( max-width: 1024px ) {
    html, body {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }

    .mobile-stream {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: relative;
        margin-top: -25px;
    }

    .mobile-stream__top {
        width: 100%;
        background-color: #fff;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        margin-bottom: 15px;
    }

    .mobile-stream__top img {
        display: block;
        width: 100%;
    }

    .mobile-stream__wrap {
        background-color: #fff;
        padding: 15px 45px;
    }

    .mobile-stream__wrap h4 {
        margin-top: 0;
        font-weight: 400;
        font-size: 22px;
        line-height: 26px;
        color: #74869E;
        margin-bottom: 8px;
    }

    .mobile-stream__wrap span {
        color: #F41240;
    }

    .mobile-stream__wrap p {
        margin: 0;
        font-weight: 700;
        font-size: 20px;
        line-height: 23px;
        color: #000000;
    }

    .mobile-stream__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        min-width: inherit;
        width: 110%;
        overflow-x: auto;
        display: flex;
    }

    site-header__logo {
        order: 1;
    }

    .burger {
        display: block;
        order: 2;
        position: relative;
        z-index: 91;
    }

    .bottom-menu {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: #0094f4;
        z-index: 90;
        padding: 80px 20px 20px 20px;
        transform: translateX(100%);
        transition: transform .3s;
    }

    .body-open {
        height: 100vh;
        overflow: hidden;
    }

    .bottom-menu__open {
        transform: translate(0%);
    }

    .bottom-menu a {
        display: block !important;
        text-decoration: none;
        padding: 10px 25px;
        font-size: 20px;
        font-weight: 400;
        border-bottom: 1px solid #fff;
    }

    .site-header {
        margin-bottom: 0;
    }

    .site-header__bottom {
        padding-left: 15px;
        padding-right: 15px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .site-content {
        padding-top: 25px;
        padding-bottom: 0;
    }

    .calendar,
    .flex-sidebar .sidebar {
        margin: 0;
    }

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

    .flex-sidebar {
        width: 100%;
        flex: 0 0 100%;
    }

    .container {
        width: 100%;
        margin: 0 auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .site-header__top,
    .site-header__right {
        display: none !important;
    }

    .site-content {
        display: flex;
        flex-wrap: wrap;
    }

    .order-1 {
        order: 1;
    }

    .order-2 {
        order: 2;
    }

    .order-3 {
        order: 3;
    }

    .order-4 {
        order: 4;
    }

    .order-5 {
        order: 5;
    }

    .order-6 {
        order: 6;
    }

    .content,
    .sidebar {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mobile-sup,
    .sidebar,
    .flex-content,
    .slider-mt {
        margin-bottom: 20px !important;
    }

    .m-hide {
        display: none !important;
    }


    .topnews {
        display: none;
    }


    .live {
        background-color: transparent;
        display: none !important;
        margin-bottom: 30px;
        width: calc(100% + 30px);
        margin-left: -30px;
    }

    .live .sidebar {
        background-color: transparent;
    }

    .live .sidebar__header {
        display: none;
    }

    .live__main {
        background: #FFFFFF;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .live__main--wrap {
        display: flex;
        flex-direction: column;
    }

    .live__main--title {
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        text-transform: uppercase;
        color: #4F5865;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .live__main--title span {
        color: #F41240;
    }

    .live__main--descr {
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        text-transform: lowercase;
        color: #4F5865;
        margin-top: 0;
        margin-bottom: 0;
    }

    .live__further {
        text-transform: none;
        color: #0094f4;

    }

    .live__list {
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        min-width: inherit;
        width: 110%;
        overflow-x: auto;
    }

    .live__item {
        width: 50%;
        flex: 0 0 50%;
        padding-right: 15px;
        padding-left: 15px;
        border-right: 1px solid #8F9DB1;
    }

    .live__title {
        font-size: 11px;
        line-height: 13px;
    }

    .main-popular {
        width: calc(100% + 60px);
        flex: 0 0 calc(100% + 60px);
        max-width: calc(100% + 60px);;
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .main-popular .post-block__header a {
        display: none;
    }

    .main-popular .post-block {
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
    }

    .main-popular__posts {
        display: flex;
        overflow-x: scroll;
    }

    .main-popular__posts {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        min-width: inherit;
        width: 110%;
        overflow-x: auto;
        padding-right: 40px;
    }

    .main-popular__post {
        height: 180px;
        width: 320px;
        max-width: 320px;
        flex: 0 0 320px
    }

    /*.calendar{*/
    /*    margin-top: 50px;*/
    /*}*/
    .calendar__header {
        position: absolute;
        top: 0;
        left: 0;
        height: 65px;
        width: 100%;
    }

    .calendar__num {
        font-size: 54px;
        line-height: 63px;
    }

    .broadcast {
        margin: 0;
    }

    .broadcast__wrapper {
        display: block;
        grid-gap: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        min-width: inherit;
        width: 110%;
        overflow-x: auto;
        grid-column-gap: 15px;
    }

    .broadcast__slide {
        height: 180px;
        width: 320px;
        max-width: 320px;
        flex: 0 0 320px;
    }

    .broadcast__slider {
        padding: 15px 25px;
    }

    .broadcast__wrap {
        background-color: transparent;
        padding: 0;
    }

    .broadcast__wrap picture {
        margin-bottom: 10px;
    }

    .broadcast__wrap h4 {
        font-weight: 700;
        color: #000;
    }

    .broadcast__wrap p {
        display: none;
    }

    .calendar:before {
        content: none;
    }

    .calendar__slider {
        padding: 0;
    }

    .calendar__slide {
        padding-top: 0px;
    }

    .calendar__wrap {
        padding-top: 80px;
    }

    .broadcast__buttons,
    .calendar__buttons {
        display: none;
    }

    .bottom-menu__bg {
        height: unset;
    }

    .bottom-menu__bg:before {
        content: none;
    }

    .bottom-menu__bg a {
        background-color: #fff;
    }

    .bottom-menu__bg a:before {
        top: 18px;
        left: 10px;
    }

    .menu-bg {
        background-color: unset;
        box-shadow: unset;
    }

    .menu-bg a,
    .bottom-menu__scale a {
        background-color: #fff;
    }

    .bottom-menu__scale:before,
    .bottom-menu__scale a:before {
        content: none;
    }

    .mb {
        margin-bottom: 10px !important;
    }

    .search-item a {
        border-bottom: none;
        text-align: center;
    }

    .horizontal-slide {
        width: calc(100% + 60px);
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .horizontal-title {
        padding-left: 30px;
    }

    .patriarch-pic {
        display: none;
    }
}

@media ( max-width: 1024px ) and ( min-width: 576px ) {
    .p-none {
        display: none !important;
    }
}
.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.footer-menu a {
    text-transform: uppercase;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    font-family: Roboto, sans-serif;
}

@media ( max-width: 1024px ) {
    .footer-menu {
        height: unset;
        flex-wrap: wrap;
    }

    .footer-box2 {
        grid-template-columns: 1fr;
    }

    .footer-box2 div {
        padding: 0;
    }
}

