@charset "UTF-8";
/* Overall wrapper */
.grecaptcha-badge {visibility: hidden;}
.dom{width: 45px;}

.monthly {
  background: #F3F3F5;
  color: #545454;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}

/* Top bar containing title, navigation, and buttons */
.monthly-header {
  position: relative;
  text-align: center;
  padding: 0.5em;
  background: #fff;
  height: 3em;
  box-sizing: border-box;
}

/* Center area of top bar containing title and buttons */
.monthly-header-title {
  text-transform: uppercase;
}

.monthly-header-title a:link, .monthly-header-title a:visited {
  display: inline-block;
  border: 1px solid #ccc;
  color: #545454;
  text-decoration: none;
  height: 1.75em;
  line-height: 1.65em;
  padding: 0 0.65em 0 0.65em;
  box-sizing: border-box;
  transition: background .1s;
}

.monthly-header-title a:first-of-type {
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}

.monthly-header-title a:last-of-type {
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}

.monthly-header-title a:hover {
  background: #8b8b8b;
  border: 1px solid #8b8b8b;
  color: #fff;
}

.monthly-header-title a:active {
  background: #222;
  border: 1px solid #222;
  transition: none;
}

/* Buttons for reverting to "today", and closing event list */
/* Add some roundy-ness */
/* current month/yr block */
.monthly-header-title-date {
  background: #eee;
  border: 1px solid #ccc;
  color: #545454;
  cursor: default;
}

/* Button to reset to current month */
.monthly-reset {
  border-left: 0 !important;
}

.monthly-reset::before {
  content: '\21BB';
  margin-right: 0.25em;
}

/* Button to return to month view */
.monthly-cal {
  border-right: 0 !important;
}

.monthly-cal::before {
  content: '\2637';
  margin-right: 0.25em;
}

/* wrapper for left/right buttons to make the clickable area bigger */
.monthly-prev, .monthly-next {
  position: absolute;
  top: 0;
  width: 3em;
  height: 100%;
  opacity: .5;
}

.monthly-prev {
  left: 0;
}

.monthly-next {
  right: 0;
}

.monthly-prev:hover, .monthly-next:hover {
  opacity: 1;
}

/* Arrows */
.monthly-prev:after, .monthly-next:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-style: solid;
  border-color: #222;
  width: 0.6em;
  height: 0.6em;
  margin: -0.4em 0 0 -0.4em;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Left Arrow */
.monthly-prev:after {
  border-width: 0 0 0.2em 0.2em;
}

/* Right Arrow */
.monthly-next:after {
  border-width: 0.2em 0.2em 0 0;
}

/* Day of the week headings */
.monthly-day-title-wrap {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #EBEBEB;
}

.monthly-day-title-wrap div {
  width: 14.28% !important;
  display: table-cell;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

/* Calendar days wrapper */
.monthly-day-wrap {
  display: table;
  table-layout: fixed;
  width: 100%;
  overflow: hidden;
}

.monthly-week {
  display: table-row;
  width: 100%;
}

/* Calendar Days */
.monthly-day, .monthly-day-blank {
  width: 14.28% !important;
  display: table-cell;
  vertical-align: top;
  box-sizing: border-box;
  position: relative;
  color: inherit;
  background: #fff;
  box-shadow: 0 0 0 1px #EBEBEB;
  transition: .25s;
  padding: 0;
  text-decoration: none;
}

/* Trick to make the days' width equal their height */
.monthly-day:before {
  content: '';
  display: block;
  padding-top: 100%;
  float: left;
}

/* Hover effect for non event calendar days */
.monthly-day-wrap > a:hover {
  background: #A1C2E3;
}

/* Days that are part of previous or next month */
.monthly-day-blank {
  background: #F3F3F5;
}

/* Event calendar day number styles */
.monthly-day-event > .monthly-day-number {
  position: absolute;
  line-height: 1em;
  top: 0.2em;
  left: 0.25em;
}

/* Non-Event calendar day number styles */
.monthly-day-pick > .monthly-indicator-wrap {
  margin: 0;
}

.monthly-day-pick > .monthly-day-number:before, .monthly-day-pick > .monthly-day-number:after {
  content: '';
  display: block;
  padding-top: calc(50% - 0.8em);
  width: 0;
  height: 0;
}

/* Days in the past in "picker" mode */
.monthly-past-day:after {
  content: '';
  width: 150%;
  height: 2px;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}

.monthly-past-day:hover {
  background: #fff !important;
}

/* Current day style */
.monthly-today .monthly-day-number {
  color: #FFF;
  background: #EA6565;
  border-radius: 0.75em;
  top: 0.08em;
  left: 0.05em;
  font-size: 0.9em;
  padding: 0;
  width: 1.25em;
  height: 1.25em;
  line-height: 1.25em;
  text-align: center;
}

.monthly-day-pick.monthly-today .monthly-day-number {
  padding: 0.15em;
  margin: calc(50% - 0.7em) auto auto auto;
  font-size: 1em;
}

/* Wrapper around events */
.monthly-indicator-wrap {
  position: relative;
  text-align: center;
  line-height: 0;
  max-width: 1.5em;
  margin: 0 auto;
  padding-top: 1.2em;
}

/* Event indicator dots */
.monthly-day .monthly-event-indicator {
  display: inline-block;
  margin: 0.05em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  vertical-align: middle;
  background: #7BA7CE;
}

.monthly-day .monthly-event-indicator span {
  color: transparent;
}

.monthly-day .monthly-event-indicator:hover {
  cursor: pointer;
}

/* Listing of events under calendar */
.monthly-event-list {
  background: rgba(233, 235, 236, 0.9);
  overflow: auto;
  position: absolute;
  top: 2.5em;
  width: 100%;
  height: calc(100% - 2.5em);
  display: none;
  transition: .25s;
  -ms-transform: scale(0);
  transform: scale(0);
}

/* Days in Events List */
.monthly-list-item {
  position: relative;
  padding: 0.5em 0.7em 0.25em 4em;
  display: none;
  border-top: 1px solid #D6D6D6;
  text-align: left;
}

.monthly-list-item:after {
  padding: 0.4em 1em;
  display: block;
  margin-bottom: 0.5em;
}

.monthly-event-list .monthly-today .monthly-event-list-date {
  color: #EA6565;
}

.monthly-event-list .listed-event, .monthly-event-list .event-listed {
  display: block;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 0.2em;
  margin-bottom: 0.5em;
}

/* Events in Events List */
.monthly-list-item a:link, .monthly-list-item a:visited {
  text-decoration: none;
}

.item-has-event {
  display: block;
}

.item-has-event:after {
  display: none !important;
}

.monthly-event-list-date {
  width: 4em;
  position: absolute;
  left: 0;
  top: 1.2em;
  text-align: center;
  font-weight: bold;
  line-height: 1.2em;
}

.monthly-list-time-start {
  font-size: .8em;
  display: inline-block;
}

.monthly-list-time-end {
  font-size: .8em;
  display: inline-block;
}

.monthly-list-time-end:not(:empty):before {
  content: '\2013';
  padding: 0 2px;
}

/* Events List custom webkit scrollbar */
.monthly-event-list::-webkit-scrollbar {
  width: 0.75em;
}

.monthly-event-list::-webkit-scrollbar-track {
  background: none;
}

.monthly-event-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border: 1px solid #E9EBEC;
  border-radius: 0.5em;
}

.monthly-event-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Track */
/* Handle */
/* Language-specific. Default is English. */
.monthly-reset:after {
  content: 'Today';
}

.monthly-cal:after {
  content: 'Month';
}

.monthly-list-item:after {
  content: 'No Events';
}

.monthly-locale-fr .monthly-reset:after {
  content: "aujourd'hui";
}

.monthly-locale-fr .monthly-cal:after {
  content: "mois";
}

.monthly-locale-fr .monthly-list-item:after {
  content: 'aucun événement';
}

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
}

input[type="submit"],
button {
  cursor: pointer;
}

input[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

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

button {
  border-radius: 0;
}

.icon-arr-b {
  width: 1.67em;
  height: 1em;
  fill: initial;
}

.icon-arr-light {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-arr-some {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-arr {
  width: 2.41em;
  height: 1em;
  fill: initial;
}

.icon-calendar {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-clock {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-close {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-comment {
  width: 1.2em;
  height: 1em;
  fill: initial;
}

.icon-fb {
  width: 0.5em;
  height: 1em;
  fill: initial;
}

.icon-google-plus {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-instagram {
  width: 1em;
  height: 1em;
  fill: none;
}

.icon-logo {
  width: 2.4em;
  height: 1em;
  fill: none;
}

.icon-mail {
  width: 1em;
  height: 1em;
  fill: #1C2837;
}

.icon-play {
  width: 1em;
  height: 1em;
  fill: #FFF;
}

.icon-search {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-share {
  width: 1.2em;
  height: 1em;
  fill: initial;
}

.icon-telegram {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-triangle {
  width: 0.8em;
  height: 1em;
  fill: #FFF;
}

.icon-twitter {
  width: 1.23em;
  height: 1em;
  fill: initial;
}

.icon-weather {
  width: 1.43em;
  height: 1em;
  fill: initial;
}

.icon-youtube {
  width: 1.4em;
  height: 1em;
  fill: initial;
}

/* Slider */
/* rtl:begin:ignore */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* rtl:end:ignore */
.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility 0s linear .25s;
  box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s, visibility 0s;
}

.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
}

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transform-style: preserve-3d;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: visible;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide > div {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background .25s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px;
}

.fancybox-slide--iframe .fancybox-close-small:after {
  background: transparent;
  font-size: 35px;
  color: #aaa;
}

.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
}

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none;
}

.fancybox-button[disabled] {
  cursor: default;
  pointer-events: none;
}

.fancybox-infobar__body,
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-button:hover:not([disabled]) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button::before,
.fancybox-button::after {
  content: '';
  pointer-events: none;
  position: absolute;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button[disabled]::before,
.fancybox-button[disabled]::after {
  opacity: 0.3;
}

.fancybox-button--left::after,
.fancybox-button--right::after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
}

.fancybox-button--left::after {
  left: 20px;
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.fancybox-button--right::after {
  right: 20px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close::before,
.fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close::before {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--close::after {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Navigation arrows */
.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity .25s;
}

.fancybox-arrow::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

.fancybox-arrow--right {
  right: 0;
}

.fancybox-arrow--left {
  left: 0;
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.fancybox-arrow--right::after,
.fancybox-arrow--left::after {
  left: 0;
}

.fancybox-show-nav .fancybox-arrow {
  opacity: 0.6;
}

.fancybox-show-nav .fancybox-arrow[disabled] {
  opacity: 0.3;
}

/* Loading indicator */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none;
}

/* Slideshow button */
.fancybox-button--play::before,
.fancybox-button--pause::before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent;
}

.fancybox-button--play::before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
}

.fancybox-button--pause::before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
}

/* Thumbs */
.fancybox-thumbs {
  display: none;
}

.fancybox-button--thumbs {
  display: none;
}

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

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

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

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

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

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

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

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

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

body {
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  color: #1c2837;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  padding-top: 102px;
  /*display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;*/
  min-height: 100vh;
}

[dir=rtl] body {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

body.is-hidden {
  overflow: hidden;
}

.center {
  text-align: center;
}

.color-white {
  color: #fff;
}

a {
  text-decoration: none;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

.bg-wrapper {
  padding: 90px 0 100px;
}

.bg-wrapper_gray {
  background: #f4f4f4;
}

.bg-img {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  z-index: 1;
}

.bg-img:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.bg-img > div {
  position: relative;
  z-index: 3;
}

.bg-img__in {
  padding: 160px 0 190px;
}

.bg-img .text {
  color: #fff;
}

.slick-dots {
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}

.slick-dots li.slick-active button {
  background: #0047ba;
  -ms-transform: scale(1);
  transform: scale(1);
}

.slick-dots li button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b8d8d;
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

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

.left {
  float: left;
}

.right {
  float: right;
}

.scrollbar-measure {
  width: 100px;
  height: 100px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
}

.search-item {
  padding: 15px 0;
}

.search-content {
  padding-bottom: 40px;
}

a {
  text-decoration: none;
}

.h1 {
  font-size: 42px;
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  line-height: 1.19;
  font-weight: normal;
}

[dir=rtl] .h1 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h1_bold {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .h1_bold {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.h1_margin-md {
  margin-bottom: 80px;
}

.h1_margin-sm {
  margin-bottom: 40px;
}

.h1_margin-xs {
  margin-bottom: 20px;
}

.h2 {
  font-size: 24px;
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  line-height: 1.25;
}

[dir=rtl] .h2 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h3 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
}

[dir=rtl] .h3 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h4 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
}

[dir=rtl] .h4 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h5 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 14px;
}

[dir=rtl] .h5 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h6 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 12px;
}

[dir=rtl] .h6 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.is-primary {
  color: #852125;
}

.bold {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .bold {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.exbold {
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .exbold {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.book {
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .book {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.upper {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.heading {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
  padding-bottom: 13px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 26px;
}

[dir=rtl] .heading {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.heading__link {
  position: absolute;
  right: 0;
  font-size: 12px;
  color: #0047ba;
}

.heading__link:hover {
  color: #1c2837;
}

.heading__link .icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 4px;
  font-size: 6px;
  fill: currentColor;
}

.title {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
  padding-bottom: 14px;
  margin-bottom: 13px;
}

[dir=rtl] .title {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 35px;
  background: #f5c300;
}

.title_center:after {
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.text {
  font-size: 14px;
  line-height: 1.43;
  color: #8b8d8d;
}

.text_md {
  font-size: 16px;
}

.text_white {
  color: #fff;
}

.text_margin-sm {
  margin-bottom: 10px;
}

.meta {
  color: #8b8d8d;
  font-size: 12px;
}

.divider {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
  height: 11px;
}

.divider_md {
  height: 21px;
}

.divider_white {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(255, 255, 255, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.subhead {
  position: relative;
  letter-spacing: 0.5px;
  color: #1c2837;
  padding-bottom: 10px;
  margin-bottom: 13px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .subhead {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.subhead:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #1c2837;
}

.subhead_md {
  font-size: 20px;
}

.subhead_sm {
  font-size: 16px;
}

.subhead_white {
  color: #fff;
}

.subhead_white:after {
  background: #fff;
}

.line-text {
  overflow: hidden;
}

.line-text:after, .line-text:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.line-text:after {
  margin-right: -100%;
}

.line-text:before {
  margin-left: -100%;
}

.line-text__in {
  margin: 0 40px;
}

hr {
  height: 1px;
  background: rgba(139, 141, 141, 0.25);
  border: none;
  margin: 15px 0;
}

.required {
  display: inline-block;
  color: #f5c300;
}

strong {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] strong {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

blockquote {
  position: relative;
  font-size: 18px;
  color: #1c2837;
  text-align: center;
  margin: 70px 0;
  padding: 0 40px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] blockquote {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

blockquote:after, blockquote:before {
  position: absolute;
  font-family: PTSerif-Italic, serif;
  font-style: italic;
  font-size: 72px;
  color: #f5c300;
}

blockquote:before {
  content: '\201C';
  left: -10px;
  top: -20px;
}

blockquote:after {
  content: '\201D';
  right: 0;
  bottom: -63px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.container__in {
  max-width: 580px;
  margin: 0 auto;
}

.wrapper {
  padding: 0 50px;
}

.row {
  margin: 0 -20px -25px;
}

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

.row > div {
  margin-bottom: 25px;
  padding: 0 20px;
  float: left;
}

.video-item {
  max-width: 500px;
}

.video-col-2 {
  display: inline-block;
  padding: 0 15px;
}

.row_inline {
  font-size: 0;
}

.row_inline > div {
  font-size: 16px;
  float: none;
  display: inline-block;
  vertical-align: top;
}

.row_margin-md > div {
  margin-bottom: 50px;
}

.col {
  width: 100%;
}

.col-3 {
  width: 33.333%;
}

.col-4 {
  width: 25%;
}

.col-2 {
  width: 50%;
}

.col__in {
  max-width: 420px;
}

.col_margin-md:not(:last-child) {
  margin-bottom: 50px;
}

.visible-sm {
  display: none;
}

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

.l .l-col1 {
  float: left;
  width: calc(100% - 285px);
}

.l .l-col2 {
  float: right;
  width: 285px;
}

.stock-down {
  margin-bottom: 100px;
}

a {
  text-decoration: none;
}

.h1 {
  font-size: 42px;
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  line-height: 1.19;
  font-weight: normal;
}

[dir=rtl] .h1 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h1_bold {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .h1_bold {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.h1_margin-md {
  margin-bottom: 80px;
}

.h1_margin-sm {
  margin-bottom: 40px;
}

.h1_margin-xs {
  margin-bottom: 20px;
}

.h2 {
  font-size: 24px;
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  line-height: 1.25;
}

[dir=rtl] .h2 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h3 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
}

[dir=rtl] .h3 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h4 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: normal;
}

[dir=rtl] .h4 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h5 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 14px;
}

[dir=rtl] .h5 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.h6 {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 12px;
}

[dir=rtl] .h6 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.is-primary {
  color: #852125;
}

.bold {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .bold {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.exbold {
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .exbold {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.book {
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .book {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.upper {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.heading {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
  padding-bottom: 13px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 26px;
}

[dir=rtl] .heading {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.heading__link {
  position: absolute;
  right: 0;
  font-size: 12px;
  color: #0047ba;
}

.heading__link:hover {
  color: #1c2837;
}

.heading__link .icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 4px;
  font-size: 6px;
  fill: currentColor;
}

.title {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
  padding-bottom: 14px;
  margin-bottom: 13px;
}

[dir=rtl] .title {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 35px;
  background: #f5c300;
}

.title_center:after {
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.text {
  font-size: 14px;
  line-height: 1.43;
  color: #8b8d8d;
}

.text_md {
  font-size: 16px;
}

.text_white {
  color: #fff;
}

.text_margin-sm {
  margin-bottom: 10px;
}

.meta {
  color: #8b8d8d;
  font-size: 12px;
}

.divider {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
  height: 11px;
}

.divider_md {
  height: 21px;
}

.divider_white {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(255, 255, 255, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.subhead {
  position: relative;
  letter-spacing: 0.5px;
  color: #1c2837;
  padding-bottom: 10px;
  margin-bottom: 13px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .subhead {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.subhead:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #1c2837;
}

.subhead_md {
  font-size: 20px;
}

.subhead_sm {
  font-size: 16px;
}

.subhead_white {
  color: #fff;
}

.subhead_white:after {
  background: #fff;
}

.line-text {
  overflow: hidden;
}

.line-text:after, .line-text:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.line-text:after {
  margin-right: -100%;
}

.line-text:before {
  margin-left: -100%;
}

.line-text__in {
  margin: 0 40px;
}

hr {
  height: 1px;
  background: rgba(139, 141, 141, 0.25);
  border: none;
  margin: 15px 0;
}

.required {
  display: inline-block;
  color: #f5c300;
}

strong {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] strong {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

blockquote {
  position: relative;
  font-size: 18px;
  color: #1c2837;
  text-align: center;
  margin: 70px 0;
  padding: 0 40px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] blockquote {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

blockquote:after, blockquote:before {
  position: absolute;
  font-family: PTSerif-Italic, serif;
  font-style: italic;
  font-size: 72px;
  color: #f5c300;
}

blockquote:before {
  content: '\201C';
  left: -10px;
  top: -20px;
}

blockquote:after {
  content: '\201D';
  right: 0;
  bottom: -63px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 8;
  transform: translate3d(0, 0, 0);
  min-width: 320px;
}

.header.is-hide .header__menu {
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__top {
  position: relative;
  min-height: 55px;
  padding: 0 55px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  background: #fff;
  z-index: 1;
}

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

.header__left {
  float: left;
}

.header__right {
  float: right;
  padding-right: 20px;
  margin-top: 4px;
}

.header__center {
  padding: 0 300px;
}

.header__logo {
  font-size: 22px;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
  display: inline-block;
  vertical-align: middle;
  margin-right: 60px;
  font-size: 0;
  padding-top: 3px;
}

[dir=rtl] .header__logo {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.header__logo img {
  width: 99px;
  max-width: 100%;
}

.header__soc {
  display: inline-block;
  vertical-align: middle;
  padding-top: 6px;
}

.header__burger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
}

.header__btns {
  text-align: center;
  white-space: nowrap;
}

.header__btns-item {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  padding-top: 12px;
}

.header__btns-item:not(:last-child) {
  margin-right: 20px;
}

.header__list {
  height: 100%;
}

.header__list-item {
  display: inline-block;
}

.header__weather, .header__lang, .header__search, .header__calendar {
  display: block;
  color: #1c2837;
  height: 50px;
  text-align: center;
  font-size: 0;
  min-width: 20px;
  padding: 0 10px;
}

.header__weather:before, .header__lang:before, .header__search:before, .header__calendar:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.header__weather span, .header__lang span, .header__search span, .header__calendar span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

.header__weather, .header__lang {
  letter-spacing: 0.5px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .header__weather, [dir=rtl] .header__lang {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.header__weather .icon, .header__lang .icon {
  display: inline-block;
  margin-right: 4px;
}

.header__weather {
  transition: color .3s;
}

.header__weather .icon {
  position: relative;
  top: 2px;
  top: 4px;
  fill: #1c2837;
  transition: fill .3s;
  display: inline-block;
}

.header__weather:hover {
  color: #0047ba;
}

.header__weather:hover .icon {
  fill: #0047ba;
}

.header__lang {
  transition: color .3s;
}

.header__lang:hover {
  color: #852125;
}

.header__calendar .icon {
  position: relative;
  top: 2px;
  fill: #1c2837;
  transition: fill .3s;
  width: 2.1em;
  height: 1.4em;
}

.header__calendar .icon:hover {
  fill: #0047ba;
}

.header__search span {
  font-size: 0;
}

.header__search:hover .icon {
  fill: #852125;
}

.header__search .icon {
  font-size: 14px;
  fill: #1c2837;
  transition: fill .3s;
}

.header__menu {
  position: relative;
  min-height: 55px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  background: #fff;
  transition: transform .3s;
}

.header__menu.is-active .header__nav a:after {
  transition: opacity 0s;
}

.header__menu-content {
  padding-top: 40px;
  padding-bottom: 48px;
  display: none;
  transform: translate3d(0, 0, 0);
}

.header__nav {
  text-align: center;
}

.header__nav li {
  display: inline-block;
}

.header__nav a {
  position: relative;
  display: block;
  font-size: 12px;
  color: #1c2837;
  text-transform: uppercase;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  padding: 17px 20px;
  transition: color .3s;
}

[dir=rtl] .header__nav a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.header__nav a:hover, .header__nav a.is-active {
  color: #0047ba;
}

.header__nav a:hover:after, .header__nav a.is-active:after {
  opacity: 1;
}

.header__nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -6px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #f2f2f2 transparent;
  opacity: 0;
  transition: opacity .3s;
  transition-delay: 0.35s;
}

.header__drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  height: calc(100vh - 100px);
  padding-bottom: 50px;
  display: none;
}

.header__drop-in {
  position: relative;
  background: #f2f2f2;
  z-index: 2;
}

.header__drop-in:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
  height: 11px;
}

.footer {
  background: #1c2837;
  padding: 40px 90px 16px 90px;
  color: #8b8d8d;
  margin-top: auto;
}

.footer__top {
  margin-bottom: 30px;
}

.footer__in {
  text-align: justify;
  line-height: 0;
  font-size: 1px;
  text-align-last: justify;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
}

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

.footer__in:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 0px;
  overflow: hidden;
  visibility: hidden;
}

.footer__col {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  line-height: normal;
  font-size: 16px;
  text-align-last: left;
}

.footer__col:not(:last-child) {
  margin-bottom: 25px;
}

.footer__col_md {
  width: 20%;
  min-width: 270px;
}

.footer__col_sm {
  width: 8%;
  min-width: 120px;
}

.footer__text {
  font-size: 16px;
  color: #8b8d8d;
  line-height: 1.44;
  margin-bottom: 15px;
}

.footer__logo {
  display: inline-block;
  vertical-align: middle;
  width: 96px;
  height: 45px;
}

.footer__divider {
  display: none;
}

.post {
  display: block;
  color: #8b8d8d;
  transition: color .3s;
}

.post:hover {
  color: #1c2837;
}

.post:hover .post__title {
  color: #0047ba;
}

.post:hover .post__text {
  color: #1c2837;
}

.post:hover .post__footer .icon {
  fill: #1c2837;
}

.post:hover .post__footer li {
  color: #1c2837;
}

.post:hover .post__overlay:after {
  opacity: 1;
}

.post__media {
  margin-bottom: 15px;
  position: relative;
}

.post__img {
  position: relative;
  font-size: 0;
  width: 100%;
  padding-bottom: 56.6%;
  height: 0;
  transition: opacity 0.3s;
}

.post__img:not(:only-child) {
  margin-bottom: 18px;
}

.post__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover;object-position:center center";
  object-fit: cover;
  object-position: center center;
}

.post__img iframe {
  z-index: 7 !important;
}

.post__overlay:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s;
}

.post__title {
  color: #1c2837;
  margin-bottom: 7px;
  transition: color .3s;
}

.post__title-text {
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

[dir=rtl] .post__title-text {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.post__text {
  margin-bottom: 13px;
  color: #8b8d8d;
  color: #333;
  font-size: 14px;
  line-height: 1.43;
  transition: color .3s;
}

.post__footer {
  font-size: 12px;
  margin-top: 13px;
}

.post__footer li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  color: #8b8d8d;
  transition: color 0.3s;
}

.post__footer li:not(:last-child) {
  margin-right: 15px;
}

.post__footer li .icon {
  position: absolute;
  left: 0;
  top: 2px;
  fill: #8b8d8d;
  transition: fill .3s;
}

.post__category {
  color: #852125;
  text-transform: uppercase;
  font-family: FuturaPTDemi, Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
}

[dir=rtl] .post__category {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.post__category_blue {
  color: #0047ba;
}

.post__content {
  display: block;
  height: 100%;
}

.post_video:not(.post_big):hover .post__img:before {
  opacity: 1;
}

.post_video:not(.post_big) .post__img {
  position: relative;
}

.post_video:not(.post_big) .post__img:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  background: #0047ba;
  opacity: .75;
  z-index: 1;
  transition: opacity .3s;
}

.post_video:not(.post_big) .post__img:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 14px;
  margin-left: -4px;
  margin-top: -7px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzQ5LjQgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNDkuNCA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojRkZGRkZGO308L3N0eWxlPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMzIuNywyMjUuOWMyMi4yLDE2LjUsMjIuMiw0My42LDAsNjAuMUw0MC40LDUwMy44QzE4LjIsNTIwLjMsMCw1MTEuMiwwLDQ4My41di00NTVDMCwwLjgsMTguMi04LjMsNDAuNCw4LjJMMzMyLjcsMjI1Ljl6Ii8+PC9zdmc+) center center/contain no-repeat;
  z-index: 2;
}

.post_big .post__title-text {
  font-size: 24px;
  line-height: 1.25;
}

.post_big .post__category {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  background: #0047ba;
  padding: 0 20px 0;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.post_big.post_video:hover .post__title:before {
  opacity: 1;
}

.post_sm .post__title-text {
  font-size: 16px;
  line-height: 1.38;
}

.post_category:hover:not(.post_big) .post__title {
  color: #852125;
}

.post_xs .post__text, .post_xs .post__title {
  margin-bottom: 13px;
}

.post_xs .post__title-text {
  font-size: 16px;
  line-height: 1.38;
}

.post_xs .post__footer li:not(.post__footer-clock) {
  display: none;
}

.post_width {
  max-width: 266px;
  width: 100%;
  background: #fff;
}

.post_width .post__category,
.post_width .post__title,
.post_width .post__footer {
  display: block;
  text-align: center;
  padding: 0 20px;
}

.post_width .post__category:not(.post__footer),
.post_width .post__title:not(.post__footer),
.post_width .post__footer:not(.post__footer) {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .post_width .post__category:not(.post__footer), [dir=rtl]
.post_width .post__title:not(.post__footer), [dir=rtl]
.post_width .post__footer:not(.post__footer) {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.post_width .post__footer {
  padding-bottom: 16px;
}

.post_width .post__footer li {
  padding-left: 0;
}

.post_width .post__title-text {
  height: 65px;
  overflow: hidden;
}

.post_width .icon {
  display: none;
}

.post_horizontal {
  margin-bottom: 60px;
}

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

.post_horizontal .post__media {
  float: left;
  margin: 0 40px 0 0;
}

.post_horizontal .post__img {
  width: 265px;
}

.post_horizontal .post__text {
  max-width: 420px;
}

.post_horizontal .post__title {
  padding-right: 13%;
}

.post_horizontal .post__content {
  overflow: hidden;
}

.post_margin-text .post__text {
  margin-bottom: 0;
}

.p-preview:after {
  content: " ";
  display: table;
  clear: both;
}

.p-preview:hover .p-preview__title {
  color: #852125;
}

.p-preview:hover .p-preview__date {
  color: #1c2837;
}

.p-preview:hover .p-preview__date .icon {
  fill: #1c2837;
}

.p-preview__category {
  margin-bottom: 13px;
}

.p-preview__category a {
  display: block;
}

.p-preview__img {
  font-size: 0;
  float: left;
  width: 92px;
}

.p-preview__img img {
  max-width: 100%;
  height: 67px;
  font-family: "object-fit:cover";
  object-fit: cover;
}

.p-preview__content {
  margin-left: 112px;
}

.p-preview__title {
  display: block;
  font-size: 16px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  line-height: 1.11;
  color: #1c2837;
  margin-bottom: 10px;
  transition: color .3s;
  word-break: break-word;
}

[dir=rtl] .p-preview__title {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.p-preview__date {
  transition: color .3s;
}

.p-preview__date .icon {
  position: relative;
  top: 1px;
  margin-right: 4px;
  fill: #8b8d8d;
  transition: fill .3s;
}

.p-preview_light:hover .p-preview__date {
  color: #fff;
}

.p-preview_light.p-preview_video:hover .p-preview__title {
  color: #f5c300;
}

.p-preview_light .p-preview__title {
  color: #fff;
}

.p-preview_light .p-preview__date .icon {
  display: none;
}

.p-preview_video:hover .p-preview__img:before {
  opacity: 1;
}

.p-preview_video:hover .p-preview__title {
  color: #0047ba;
}

.p-preview_video .p-preview__content {
  margin-left: 0;
}

.p-preview_video .p-preview__img {
  position: relative;
  float: none;
  width: 100%;
}

.p-preview_video .p-preview__img img {
  width: 100%;
  height: 145px;
}

.p-preview_video .p-preview__img:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  background: #0047ba;
  border-radius: 50%;
  opacity: .75;
  transition: opacity .3s;
}

.p-preview_video .p-preview__img:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2px;
  margin-top: -3px;
  width: 5px;
  height: 7px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzQ5LjQgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNDkuNCA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojRkZGRkZGO308L3N0eWxlPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMzIuNywyMjUuOWMyMi4yLDE2LjUsMjIuMiw0My42LDAsNjAuMUw0MC40LDUwMy44QzE4LjIsNTIwLjMsMCw1MTEuMiwwLDQ4My41di00NTVDMCwwLjgsMTguMi04LjMsNDAuNCw4LjJMMzMyLjcsMjI1Ljl6Ii8+PC9zdmc+) center center/contain no-repeat;
}

.p-preview_lg .p-preview__img {
  position: relative;
  float: none;
  width: 100%;
  margin-right: 0;
  padding-bottom: 56.6%;
  height: 0;
}

.p-preview_lg .p-preview__img img {
  position: absolute;
  height: 100%;
  width: 100%;
}

.p-preview_lg .p-preview__content {
  margin-left: 0;
}

.p-preview_lg .p-preview__title {
  font-size: 16px;
}

.p-preview_xs .p-preview__content {
  margin-left: 0;
}

.p-preview_xs .p-preview__date .icon {
  display: none;
}

.post-simple {
  display: block;
  color: #1c2837;
  transition: color .3s;
}

.post-simple:hover {
  color: #852125;
}

.post-simple__img {
  margin-bottom: 15px;
}

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

.post-simple__title {
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

[dir=rtl] .post-simple__title {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.post-simple__text {
  font-size: 14px;
  color: #8b8d8d;
  line-height: 1.43;
  margin-bottom: 14px;
}

.disclaimer {
  text-align: center;
  padding: 0 20%;
}

.disclaimer__text, .disclaimer__copy {
  color: #8b8d8d;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .disclaimer__text, [dir=rtl] .disclaimer__copy {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.disclaimer__text {
  font-size: 12px;
  margin-bottom: 10px;
}

.disclaimer__copy {
  font-size: 14px;
}

.wrap-catalog:after {
  content: " ";
  display: table;
  clear: both;
}

.wrap-catalog .catalog_half {
  float: left;
  width: 50%;
}

.catalog {
  padding-right: 20px;
}

.catalog__link {
  font-size: 16px;
  line-height: 1.44;
  text-align: left;
  color: #8b8d8d;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  transition: color 0.3s;
}

[dir=rtl] .catalog__link {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.catalog__link:hover {
  color: #fff;
}

.catalog__link:hover .icon {
  fill: #fff;
}

.catalog__link > span {
  display: inline-block;
  vertical-align: middle;
}

.catalog__pic {
  display: inline-block;
  vertical-align: middle;
}

.catalog__pic .icon {
  width: 14px;
  height: 13px;
  fill: #8b8d8d;
  margin-right: 5px;
}

.catalog_white .catalog__link {
  color: #fff;
}

.catalog_white .catalog__link:hover {
  color: #f5c300;
}

.catalog_white .catalog__link:hover .icon {
  fill: #f5c300;
}

.catalog_white .catalog__link .icon {
  fill: #fff;
}

.post-preview {
  display: block;
  color: #1c2837;
}

.post-preview + .post-preview {
  margin-top: 17px;
}

.post-preview:not(:last-child) {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.post-preview:hover .post-preview__name {
  color: #852125;
}

.post-preview__title {
  position: relative;
  padding-right: 70px;
  margin-bottom: 11px;
}

.post-preview__time {
  position: absolute;
  right: 0;
  top: 0;
}

.post-preview__time .icon-clock {
  fill: #8b8d8d;
  margin: 0 4px -1px 0;
}

.post-preview__content:after {
  content: " ";
  display: table;
  clear: both;
}

.post-preview__name {
  transition: color .3s;
  line-height: 1.25;
  color: #1c2837;
}

.post-preview__img {
  float: left;
  width: 92px;
  margin-right: 10px;
  padding-top: 6px;
}

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

.post-preview__img_md {
  float: none;
  margin: 0 0 15px 0;
  width: 100%;
}

.post-preview__img_counter {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5c300;
}

.post-preview__img_counter > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post-preview_mod .post-preview__content {
  padding-left: 50px;
}

.post-preview_time-down .post-preview__name {
  display: block;
  margin-bottom: 10px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .post-preview_time-down .post-preview__name {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.post-preview_time-down .post-preview__name + .post-preview__title {
  margin-bottom: 0;
}

.post-preview_time-down .post-preview__name + .post-preview__title .post-preview__time {
  position: static;
}

.soc {
  font-size: 0;
}

.soc li {
  display: inline-block;
  vertical-align: middle;
}

.soc li:not(:last-child) {
  margin-right: 20px;
}

.soc a {
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  text-align: center;
  font-size: 0;
}

.soc a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.soc a:hover .icon {
  fill: #852125;
}

.soc a .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  fill: #1c2837;
  max-width: 20px;
  transition: fill .3s;
}

.soc a .icon-youtube {
  font-size: 10px;
}

.soc_white a:hover .icon {
  fill: #f5c300;
}

.soc_white a .icon {
  fill: #fff;
}

.soc_sm li:not(:last-child) {
  margin-right: 10px;
}

.soc_sm a {
  width: auto;
  height: auto;
}

.soc_sm a:hover .icon {
  fill: #1c2837;
}

.soc_sm a .icon {
  font-size: 10px;
  fill: #8b8d8d;
}

.nav-list__links {
  text-align: center;
  margin-bottom: 37px;
  list-style-type: none;
}

.nav-list__links li {
  display: inline-block;
}

.nav-list__links a {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #1c2837;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  transition: color .3s;
}

[dir=rtl] .nav-list__links a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.nav-list__links a:hover {
  color: #852125;
}

.wrap-list {
  margin-bottom: 41px;
}

.wrap-list:last-child {
  margin-bottom: 80px;
}

.wrap-list__caption {
  font-size: 30px;
  color: #1c2837;
  margin-bottom: 41px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .wrap-list__caption {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.wrap-list__in {
  padding-left: 80px;
}

.list__item {
  padding-left: 30px;
  line-height: 30px;
}

.list__item:hover .list__link {
  color: #0247ba;
}

.list__link {
  position: relative;
  font-size: 16px;
  color: #8b8d8d;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  transition: color 0.3s;
}

[dir=rtl] .list__link {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.list__link:before {
  content: '';
  position: absolute;
  right: 100%;
  top: 10px;
  width: 10px;
  height: 2px;
  background: #f5c300;
  margin-right: 20px;
}

.list_nohover:hover .list__item .list__link {
  color: #8b8d8d;
}

.letter-list {
  margin-bottom: 35px;
}

.letter-list__first, .letter-list__caption {
  display: table-cell;
  vertical-align: middle;
}

.letter-list__first {
  font-family: ProximaNovaExtrabold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .letter-list__first {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.letter-list__first_blue {
  color: #0047ba;
}

.letter-list__first_yellow {
  color: #f5c300;
}

.letter-list__first_gray {
  color: #8b8d8d;
}

.letter-list__top {
  display: inline-table;
  margin-bottom: 10px;
}

.letter-list__in {
  display: table-row;
}

.letter-list__caption {
  padding-left: 15px;
  color: #1c2837;
  letter-spacing: .5px;
  line-height: normal;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .letter-list__caption {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  min-width: 320px;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity .3s, visibility .3s;
}

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

.menu.is-active {
  opacity: 1;
  visibility: visible;
}

.menu.is-active .menu__inner {
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.menu__inner {
  width: 315px;
  float: right;
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background: #0047ba;
  transition: transform .3s;
  height: 100%;
  overflow: auto;
}

.menu__content {
  position: relative;
  padding: 75px 126px 40px 76px;
  min-height: 100%;
}

.menu__title {
  font-size: 14px;
  line-height: 1.43;
}

.menu__item {
  position: relative;
}

.menu__item:not(:last-child) {
  padding-bottom: 29px;
  margin-bottom: 35px;
}

.menu__item:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(255, 255, 255, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
  height: 11px;
}

.menu__list a {
  color: #fff;
  line-height: 1.88;
  font-size: 16px;
  transition: color .3s;
}

.menu__list a:hover {
  color: #f5c300;
}

.menu__soc {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 20px 70px;
}

.menu__links {
  position: relative;
  text-align: center;
  padding-bottom: 45px;
  margin-bottom: 28px;
}

.menu__links:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(255, 255, 255, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.menu__links li {
  position: relative;
}

.menu__links li:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 9px;
}

.menu__links li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 1px;
  width: 20px;
  left: 50%;
  bottom: 0;
  margin-left: -10px;
  background: rgba(255, 255, 255, 0.25);
}

.menu__links a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  transition: color .3s;
}

[dir=rtl] .menu__links a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.menu__links a:hover {
  color: #f5c300;
}

.menu__row {
  margin-bottom: -20px;
}

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

.menu__row > div {
  margin-bottom: 20px;
}

.menu__col {
  float: left;
  width: 100%;
}

.menu__col-2 {
  float: left;
  width: 50%;
}

.menu__col-2:not(:last-child) {
  padding-right: 20px;
}

.breadcrumb {
  display: inline-block;
  padding: 37px 0;
}

.breadcrumb + .bg-img__in {
  padding-top: 70px;
}

.breadcrumb_white .breadcrumb__item:hover .breadcrumb__link:link {
  color: #fff;
}

.breadcrumb__item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb__item:not(:first-child):before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 5px;
  background: url("../img/arr.svg");
  background-size: cover;
}

.breadcrumb__item:hover .breadcrumb__link:link {
  color: #0247ba;
}

.breadcrumb__link {
  font-size: 12px;
  color: #8b8d8d;
  text-align: left;
  text-decoration: underline;
  transition: color 0.2s;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .breadcrumb__link {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.breadcrumb span.breadcrumb__link {
  text-decoration: none;
}

.new-vacancy {
  counter-reset: list1;
  font-size: 0;
  margin-bottom: 60px;
}

.new-vacancy__item {
  display: inline-block;
  vertical-align: top;
  width: 33.3%;
  padding: 0 44px;
  margin-bottom: 30px;
}

.new-vacancy__item:before {
  content: counter(list1, decimal-leading-zero) " ";
  counter-increment: list1;
  font-size: 30px;
  color: #1c2837;
  padding-bottom: 5px;
  border-bottom: 2px solid #f5c300;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .new-vacancy__item:before {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.new-vacancy__link {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  line-height: 1.38;
  color: #1c2837;
  margin: 13px 0;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .new-vacancy__link {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.new-vacancy__link:hover {
  color: #0247ba;
}

.nav-list__links {
  text-align: center;
  margin-bottom: 37px;
  list-style-type: none;
}

.nav-list__links li {
  display: inline-block;
}

.nav-list__links a {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #1c2837;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  transition: color .3s;
}

[dir=rtl] .nav-list__links a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.nav-list__links a:hover {
  color: #852125;
}

.wrap-list {
  margin-bottom: 41px;
}

.wrap-list:last-child {
  margin-bottom: 80px;
}

.wrap-list__caption {
  font-size: 30px;
  color: #1c2837;
  margin-bottom: 41px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .wrap-list__caption {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.wrap-list__in {
  padding-left: 80px;
}

.list__item {
  padding-left: 30px;
  line-height: 30px;
}

.list__item:hover .list__link {
  color: #0247ba;
}

.list__link {
  position: relative;
  font-size: 16px;
  color: #8b8d8d;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  transition: color 0.3s;
}

[dir=rtl] .list__link {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.list__link:before {
  content: '';
  position: absolute;
  right: 100%;
  top: 10px;
  width: 10px;
  height: 2px;
  background: #f5c300;
  margin-right: 20px;
}

.list_nohover:hover .list__item .list__link {
  color: #8b8d8d;
}

.letter-list {
  margin-bottom: 35px;
}

.letter-list__first, .letter-list__caption {
  display: table-cell;
  vertical-align: middle;
}

.letter-list__first {
  font-family: ProximaNovaExtrabold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .letter-list__first {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.letter-list__first_blue {
  color: #0047ba;
}

.letter-list__first_yellow {
  color: #f5c300;
}

.letter-list__first_gray {
  color: #8b8d8d;
}

.letter-list__top {
  display: inline-table;
  margin-bottom: 10px;
}

.letter-list__in {
  display: table-row;
}

.letter-list__caption {
  padding-left: 15px;
  color: #1c2837;
  letter-spacing: .5px;
  line-height: normal;
  font-family: FuturaPTExtraBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .letter-list__caption {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.directory:not(:last-child) {
  margin-bottom: 50px;
}

.directory__text {
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  color: #1c2837;
}

[dir=rtl] .directory__text {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.label {
  height: 30px;
  padding: 1px 20px 0;
  height: 30px;
  line-height: 30px;
  background: #f5c300;
  color: #1c2837;
  font-size: 12px;
  text-transform: uppercase;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  display: inline-block;
}

[dir=rtl] .label {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.label_primary {
  background: #852125;
  color: #fff;
}

.entry {
  max-width: 1280px;
  margin: 0 auto 20px;
  width: 100%;
}

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

.entry__main {
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  margin-bottom: 30px;
}

.entry__content {
  margin-right: 305px;
}

.entry__content-in {
  position: relative;
  z-index: 2;
}

.entry__sidebar {
  width: 265px;
  float: right;
  padding-top: 20px;
  padding-bottom: 20px;
}

.entry__sidebar-item:not(:last-child) {
  margin-bottom: 22px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.entry__footer {
  position: relative;
  padding-bottom: 11px;
  display: table;
}

.entry__footer:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.entry__col {
  display: table-cell;
  padding-right: 20px;
  padding-bottom: 16px;
  border-right: 1px solid rgba(139, 141, 141, 0.25);
  width: 25%;
  padding-left: 37px;
}

.entry__col:first-child {
  border-left: 1px solid rgba(139, 141, 141, 0.25);
}

.live {
  margin-bottom: 40px;
  background: #1c2837;
  padding-bottom: 30px;
  color: #fff;
}

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

.live-sm {
  display: block;
  color: #1c2837;
}

.live-sm:hover {
  color: #852125;
}

.live-sm:hover .live-sm__title:before {
  background: #1c2837;
}

.live-sm__title {
  position: relative;
  padding-left: 52px;
  margin-bottom: 15px;
  min-height: 40px;
  max-width: 190px;
  transition: color .3s;
}

.live-sm__title:after {
  content: '';
  position: absolute;
  left: 17px;
  top: 14px;
  width: 10px;
  height: 14px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgOCAxMCI+ICAgIDxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTcuNTY4IDQuMjkxTDEuMjg0LjFDMS4xLS4wMTguODY4IDAgLjY5NCAwLS4wMDMuMDAxIDAgLjU3MSAwIC43MTV2OC41N2MwIC4xMjItLjAwMy43MTQuNjk0LjcxNC4xNzQgMCAuNDA1LjAyLjU5LS4wOThMNy41NjggNS43MWMuNTE1LS4zMjUuNDI2LS43MDkuNDI2LS43MDlzLjA5LS4zODQtLjQyNi0uNzA5eiIvPjwvc3ZnPg==) center center/contain no-repeat;
}

.live-sm__title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  background: #852125;
  border-radius: 50%;
  transition: background .3s;
}

.live-sm__img {
  font-size: 0;
  text-align: center;
}

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

.live-sm_mod {
  color: #fff;
}

.live-sm_mod:hover .live-sm__title {
  color: #f5c300;
}

.live-sm_mod:hover .live-sm__title:before {
  background: #f5c300;
}

.live-sm_mod .live-sm__title {
  max-width: 100%;
  min-height: 0;
  margin-bottom: 17px;
  padding-top: 10px;
  padding-left: 0;
  line-height: 1;
}

.live-sm_mod .live-sm__title:before {
  height: 2px;
  width: 37px;
  border-radius: 0;
  background: #f5c300;
}

.live-sm_mod .live-sm__title:after {
  display: none;
}

.live-sm_mod .live-sm__img {
  position: relative;
}

.live-sm_mod .live-sm__img:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -7px;
  margin-left: -5px;
  width: 10px;
  height: 14px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgOCAxMCI+ICAgIDxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTcuNTY4IDQuMjkxTDEuMjg0LjFDMS4xLS4wMTguODY4IDAgLjY5NCAwLS4wMDMuMDAxIDAgLjU3MSAwIC43MTV2OC41N2MwIC4xMjItLjAwMy43MTQuNjk0LjcxNC4xNzQgMCAuNDA1LjAyLjU5LS4wOThMNy41NjggNS43MWMuNTE1LS4zMjUuNDI2LS43MDkuNDI2LS43MDlzLjA5LS4zODQtLjQyNi0uNzA5eiIvPjwvc3ZnPg==) center center/contain no-repeat;
}

.live-sm_mod .live-sm__img:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background: #f5c300;
  border-radius: 50%;
}

.top__title {
  position: relative;
  margin-bottom: 9px;
  padding-top: 5px;
}

.top__title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 37px;
  height: 2px;
  background: #f5c300;
}

.top__items_border .top__item:last-child {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.top__item:not(:last-child) {
  margin-bottom: 14px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.news {
  position: relative;
  margin-left: -50px;
  min-height: 509px;
  margin-bottom: -1px;
  color: #fff;
  padding: 120px 50px 50px;
  background: center center / cover;
}

.news-list__item .news {
  margin-left: 0;
}

.news:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background-color .2s linear;
}

.news:hover:after {
  background: rgba(0, 0, 0, 0.5);
}

.news__inner {
  position: relative;
  z-index: 2;
}

.news__label {
  margin-bottom: 21px;
}

.news__title {
  display: block;
  max-width: 525px;
  margin-bottom: 28px;
  color: inherit;
}

.news__link-mobile {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.news__text {
  margin-bottom: 12px;
}

.news__data {
  font-size: 12px;
}

.news__data li {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.news__data li:not(:last-child) {
  margin-right: 15px;
}

.news__data li .icon {
  fill: #fff;
  position: absolute;
  left: 0;
  top: 1px;
}

.news__live {
  position: relative;
  z-index: 2;
  margin-top: 36px;
}

.news__breadcrumbs {
  position: absolute;
  z-index: 2;
  top: 0;
}

.news-wrapper {
  position: relative;
  padding-bottom: 48px;
  margin-bottom: 30px;
}

.news-wrapper.no-divider {
  padding-bottom: 0;
  margin-bottom: 60px;
}

.news-wrapper_margin-md {
  margin-bottom: 50px;
}

.news-wrapper:not(.no-divider):before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.news-wrapper .row {
  font-size: 0;
}

.news-wrapper .row > div {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.news-list:not(.news-list_wide) {
  padding-right: 20px;
}

.news-list__item:not(:last-child) {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 48px;
}

.news-list__item:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.news-list__item_big:not(:last-child) {
  padding-bottom: 57px;
  margin-bottom: 40px;
}

.news-list__item_big:not(:last-child):after {
  height: 21px;
}

.news-list__item_mod:not(:last-child) {
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-list_mod .news-list__item:after {
  display: none;
}

.news-sidebar {
  padding-left: 20px;
}

.news-pagination {
  margin-top: 60px;
}

.human-card-wrap {
  margin-left: -20px;
  margin-right: -20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.human-card {
  display: inline-block;
  vertical-align: top;
  max-width: 266px;
  overflow: hidden;
  width: 100%;
  background: #fff;
  margin: 0 10px 20px 10px;
}

.human-card:after {
  content: " ";
  display: table;
  clear: both;
}

.human-card__img {
  margin-bottom: 14px;
  height: 170px;
  height: 266px;
}

.human-card__img img {
  display: inline-block;
  font-family: "object-fit:cover";
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.human-card__body {
  padding: 0 20px;
}

.human-card__name {
  display: inline-block;
  margin-bottom: 16px;
}

.human-card__text {
  margin-bottom: 20px;
}

.human-card_h {
  position: relative;
  max-width: 100%;
  margin: 0 0 35px 0;
}

.human-card_h .human-card__img {
  position: absolute;
  width: 113px;
  margin: 0 0 0 0;
  min-height: 150px;
  height: 100%;
}

.human-card_h .human-card__text {
  padding-right: 40%;
  margin-bottom: 10px;
}

.human-card_h .human-card__link, .human-card_h a {
  color: #1c2837;
}

.human-card_h .human-card__body {
  padding: 15px 20px 15px 133px;
}

.human-card_h a:hover {
  color: #0047ba;
}

.sidebar {
  position: relative;
  padding-left: 20px;
  transform: translate3d(0, 0, 0);
}

.sidebar.is-sticky {
  position: fixed;
  bottom: 0;
  width: 285px;
}

.sidebar:before {
  content: '';
  position: absolute;
  top: 67px;
  bottom: 10px;
  width: 1px;
  left: 0;
  background: rgba(139, 141, 141, 0.25);
}

.sidebar__list_num {
  counter-reset: top;
}

.sidebar__list_num .sidebar__list-item {
  position: relative;
  padding-left: 50px;
  counter-increment: top;
}

.sidebar__list_num .sidebar__list-item:not(:last-child) {
  margin-bottom: 17px;
}

.sidebar__list_num .sidebar__list-item:before {
  content: counter(top);
  position: absolute;
  left: 0;
  top: 4px;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #f5c300;
  color: #1c2837;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  font-size: 12px;
}

[dir=rtl] .sidebar__list_num .sidebar__list-item:before {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.sidebar__list-item:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  margin-bottom: 12px;
}

.sidebar__list-item_space {
  margin-top: 20px;
}

.sidebar__list-item_space:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.sidebar__item {
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  margin-bottom: 20px;
}

.sidebar__item:only-child {
  margin-bottom: 0;
}

.sidebar__calendar {
  margin-bottom: 25px;
}

.c-item {
  position: relative;
  display: block;
  color: #fff;
}

.c-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 13, 33, 0.6);
  z-index: 1;
}

.c-item__inner {
  position: relative;
  min-height: 370px;
  padding: 122px 62px 80px 27px;
  z-index: 2;
}

.c-item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover;object-position:center center";
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
}

.c-item__date {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  background: #852125;
  text-align: center;
}

.c-item__date > div {
  display: inline-block;
  vertical-align: middle;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}

[dir=rtl] .c-item__date > div {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.c-item__date strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.c-item__title {
  line-height: 1.09;
  font-size: 25px;
}

.c-item__about {
  position: absolute;
  bottom: 38px;
  left: 27px;
  right: 37px;
  font-size: 14px;
}

.info {
  position: relative;
  color: #fff;
  display: block;
}

.info:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 13, 33, 0.4);
  z-index: 1;
}

.info__inner {
  position: relative;
  min-height: 150px;
  padding: 43px 20px;
  z-index: 2;
}

.info__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover;object-position:center center";
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
}

.info__label {
  position: absolute;
  top: 0;
  left: 0;
}

.info__date {
  position: absolute;
  left: 20px;
  bottom: 17px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.partners {
  padding-top: 29px;
  padding-bottom: 20px;
  background-color: #f4f4f4;
}

.partners__title {
  margin-bottom: 27px;
}

.partners__slider {
  padding-bottom: 20px;
}

.partners__slider .slick-list {
  margin-bottom: 11px;
}

.partners__img {
  height: 72px;
  text-align: center;
  font-size: 0;
  padding: 0 20px;
}

.partners__img:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.partners__img img {
  display: inline-block;
  vertical-align: middle;
  max-height: 72px;
  width: auto;
  max-width: 100%;
}

.content {
  margin: 0 auto;
  max-width: 100%;
  width: 571px;
  font-size: 16px;
  text-align: left;
  line-height: 1.38;
  color: #8b8d8d;
}

.content img {
  max-width: 100% !important;
  height: auto;
}

.content iframe {
  max-width: 100% !important;
}

.content .alignnone {
  margin: 5px 20px 20px 0;
}

.content .aligncenter, .content div.aligncenter {
  margin: auto;
}

.content .alignright {
  margin: 5px 0 20px 20px;
}

.content .alignleft {
  margin: 5px 20px 20px 0;
}

.content .aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.content img.alignleft {
  margin: 5px 20px 20px 0;
}

.content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.content .wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.content .wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.content .wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.content .wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.content .wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.content .wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.content a {
  color: #852225;
}

.content h1 {
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
  color: #1c2837;
  margin-bottom: 25px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .content h1 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.content h2 {
  font-size: 14px;
  line-height: 1.43;
  color: #8b8d8d;
  text-align: center;
  margin-bottom: 35px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .content h2 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.content h5 {
  font-size: 16px;
  line-height: 1.43;
  color: #8b8d8d;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .content h5 {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.content ul {
  margin: 1em 2em;
  list-style-type: disc;
}

.content ul li {
  margin-bottom: .6em;
}

.content p {
  font-size: 16px;
  text-align: left;
  line-height: 1.38;
  color: #8b8d8d;
  margin-bottom: 20px;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .content p {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.content p + img {
  margin-top: 10px;
}

.content > div {
  margin-left: -76px;
  margin-right: -76px;
}

.content > img {
  max-width: 100%;
  display: inline-block;
  text-align: center;
  margin: 30px 0;
}

.content blockquote {
  padding: 0;
  padding: 20px 40px;
}

.content blockquote:before {
  left: -85px;
}

.content blockquote:after {
  right: -76px;
}

.content table {
  width: 100%;
  border-top: 1px solid #1c2837;
  margin: 70px 0 30px;
}

.content table tr {
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.content table td {
  padding: 5px 0;
  vertical-align: middle;
}

.content table td:first-child {
  font-size: 14px;
  color: #1c2837;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: 150px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .content table td:first-child {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.content table td:last-child, .content table td a {
  font-size: 14px;
  color: #8b8d8d;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .content table td:last-child, [dir=rtl] .content table td a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.content table td a {
  text-decoration: underline;
}

.content table td a:hover {
  color: #0047ba;
}

.content table td .soc a {
  text-decoration: none;
}

.content .divider {
  max-width: 266px;
  margin: 35px auto;
}

.content_text-sm p {
  font-size: 14px;
}

.content-slider {
  margin: 75px 0;
}

.content-slider__item {
  max-height: 410px;
}

.content-slider__bottom {
  width: 100%;
  max-width: 571px;
  margin: 0 auto;
}

.content-slider__info {
  width: 100%;
  display: inline-table;
  table-layout: fixed;
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.content-slider__in {
  display: table-row;
}

.content-slider__title, .content-slider__btn {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 0;
}

.content-slider__title {
  padding-right: 20px;
}

.content-slider__btn {
  border-left: 1px solid rgba(139, 141, 141, 0.25);
  width: 120px;
  text-align: right;
}

.content-slider__arr:not(:last-child) {
  margin-right: 20px;
}

.content-slider img {
  max-width: 100%;
}

.writer {
  border-top: 1px solid rgba(139, 141, 141, 0.25);
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  padding: 11px 0;
  margin-bottom: 70px;
}

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

.writer__in {
  float: left;
}

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

.writer__pic {
  float: left;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.writer img {
  font-family: "object-fit:contain";
  object-fit: contain;
  max-width: 100%;
  height: 100%;
}

.writer__info {
  overflow: hidden;
}

.writer__info-name {
  font-size: 14px;
  color: #1c2837;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .writer__info-name {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.writer__info-date {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8b8d8d;
}

.writer__soc {
  float: right;
  margin: 0 -10px;
}

.writer__soc-btn {
  margin: 0 10px;
}

.modal-search {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.84);
  z-index: 99;
  text-align: center;
  font-size: 0;
}

.modal-search:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.modal-search__close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background: none;
  font-size: 30px;
}

.modal-search__close .icon {
  fill: #852125;
}

.modal-search__form {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 722px;
  font-size: 16px;
}

.promo-wrap {
  padding: 50px 0 60px;
  background: #f4f4f4;
}

.promo-wrap__slider {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.promo-wrap__slider-arr {
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.promo-wrap__slider-arr_left {
  left: -60px;
}

.promo-wrap__slider-arr_right {
  right: -60px;
}

.promo-wrap__title {
  margin-bottom: 47px;
}

.promo {
  margin: 0 20px;
}

.dropdown {
  position: relative;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

[dir=rtl] .dropdown {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 60px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 0 10px 0 #bdbdbd;
  text-align: left;
  z-index: 5;
  opacity: 0;
  font-size: 14px;
  transform: translate3d(-50%, 0, 0);
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.dropdown__menu:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-left: -3px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
}

.dropdown__menu a {
  display: block;
  padding: 5px 14px 5px 19px;
  color: #1c2837;
  transition: color .3s;
}

.dropdown__menu a:not(:last-child) {
  margin-bottom: 3px;
}

.dropdown__menu a:hover {
  color: #852125;
}

.dropdown_header {
  height: 50px;
  text-align: center;
  font-size: 0;
  min-width: 20px;
  padding: 0 10px;
}

.dropdown_header:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.dropdown_header .dropdown__value {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

.dropdown-select {
  position: relative;
  text-align: center;
}

.dropdown-select.is-open .dropdown-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}

.dropdown-select__title {
  text-transform: uppercase;
  font-size: 12px;
}

.dropdown-select__value {
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-bottom: 10px;
  text-align: center;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: color .3s;
}

[dir=rtl] .dropdown-select__value {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.dropdown-select__value:hover {
  color: #852125;
}

.dropdown-select__value:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 5px;
  margin-top: -2px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgOCA0LjgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDggNC44OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe2ZpbGw6IzFDMjgzNzt9PC9zdHlsZT48cGF0aCBjbGFzcz0ic3QwIiBkPSJNNy44LDAuMkM3LjcsMC4xLDcuNiwwLDcuNSwwaC03QzAuNCwwLDAuMiwwLjEsMC4xLDAuMkMwLjEsMC4zLDAsMC40LDAsMC41YzAsMC4xLDAuMSwwLjMsMC4xLDAuNGwzLjUsMy43YzAuMiwwLjIsMC41LDAuMiwwLjcsMGMwLDAsMCwwLDAsMGwzLjUtMy43QzcuOSwwLjgsOCwwLjcsOCwwLjVDOCwwLjQsNy45LDAuMyw3LjgsMC4yeiIvPjwvc3ZnPg==) center center/contain no-repeat;
}

.dropdown-select__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 100px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  transform: translate3d(-50%, 10px, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 2;
}

.dropdown-select__menu:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-left: -3px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
}

.dropdown-select__menu a {
  display: block;
  padding: 5px 14px;
  color: #1c2837;
  transition: color .3s;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .dropdown-select__menu a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.dropdown-select__menu a:not(:last-child) {
  margin-bottom: 3px;
}

.dropdown-select__menu a:hover {
  color: #852125;
}

.pagination {
  padding-top: 8px;
}

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

.pagination__item {
  float: left;
  margin: 0 6px;
}

.pagination__item.is-active .pagination__link, .pagination__item:hover .pagination__link {
  color: #0047ba;
}

.pagination__item.is-active .icon, .pagination__item:hover .icon {
  fill: #0047ba;
}

.pagination__item_arr .icon {
  width: 15px;
  height: 10px;
  fill: #8b8d8d;
  transition: fill .3s;
}

.pagination__item_arr-left {
  margin-right: 12px;
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination__item_arr-right {
  margin-left: 12px;
}

.pagination__link {
  color: #8b8d8d;
  font-size: 14px;
  transition: color 0.3s;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .pagination__link {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.category-wrap {
  margin-bottom: 40px;
}

.category-list {
  margin-bottom: 15px;
}

.category {
  min-height: 500px;
}

.category:not(:last-child) {
  border-right: 1px solid rgba(139, 141, 141, 0.25);
}

.category__in {
  padding-bottom: 17px;
  margin-bottom: 13px;
}

.category_border .category__in:not(:last-child) {
  border-bottom: 1px solid rgba(139, 141, 141, 0.25);
}

.program {
  padding: 21px 0 0;
  position: relative;
}

.program__container {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 48px;
}

.program__container:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
}

.program__table {
  width: 100%;
  max-width: 1028px;
  margin: 0 auto;
  border: solid 1px rgba(139, 141, 141, 0.25);
  display: table;
}

.program__header {
  display: table-row;
  height: 49px;
  background-color: #f4f4f4;
  border-bottom: solid 1px rgba(139, 141, 141, 0.25);
  font-size: 14px;
}

.program__header .cell {
  display: table-cell;
  color: #1c2837;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  padding: 15px;
}

[dir=rtl] .program__header .cell {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.program__header .cell:last-child {
  padding-right: 41px;
  text-align: right;
}

.program__header .cell_time {
  text-align: center;
}

.program__header .cell_name {
  padding-left: 35px;
}

.program__header .cell_descr {
  text-align: center;
}

.program__row {
  line-height: 49px;
  display: table-row;
  font-size: 14px;
}

.program__row:last-child .cell {
  border-bottom: none;
}

.program__row .cell {
  border-bottom: solid 1px #e2e2e2;
  display: table-cell;
  padding: 15px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  line-height: 1.14;
  text-align: left;
  color: #1c2837;
}

[dir=rtl] .program__row .cell {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.program__row .cell:last-child {
  padding-right: 41px;
  text-align: right;
}

.program__row .cell_lang {
  font-family: FuturaPTMedium, Arial, Helvetica, sans-serif;
  color: #0047ba;
}

[dir=rtl] .program__row .cell_lang {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.program__row .cell_name {
  padding-left: 35px;
}

.program__row .cell_descr {
  border-right: solid 1px #e2e2e2;
  border-left: solid 1px #e2e2e2;
  text-align: center;
}

.program__row .cell_time {
  text-align: center;
  border-right: solid 1px #e2e2e2;
  color: #852225;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .program__row .cell_time {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.stream__header {
  width: 100%;
  color: #1c2837;
}

.stream__inform {
  width: 110px;
  height: 80px;
  vertical-align: middle;
  padding: 10px 18px;
  background: #852125;
  color: #fff;
}

.stream__title {
  padding: 14px 40px;
  border-right: 1px solid rgba(139, 141, 141, 0.25);
}

.stream__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 35px;
}

.stream__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stream__about {
  color: #8b8d8d;
}

.stream__text {
  margin-bottom: 17px;
  line-height: 1.38;
}

.stream__info li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  font-size: 12px;
}

.stream__info li:not(:last-child) {
  margin-right: 15px;
}

.stream__info li .icon {
  position: absolute;
  left: 0;
  top: 2px;
  fill: #8b8d8d;
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  padding: 15px;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  min-height: 400px;
  overflow: auto;
  text-align: center;
  font-size: 0;
}

.popup:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.popup.is-active {
  opacity: 1;
  visibility: visible;
}

.popup.is-active .popup__container {
  transform: translate3d(0, 0, 0);
}

.popup_sm .popup__container {
  max-width: 875px;
}

.popup_xs .popup__container {
  max-width: 500px;
}

.popup_xs .popup__in {
  height: auto;
  padding: 40px 55px;
}

.popup__container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 1076px;
  background: #fff;
  text-align: left;
  min-width: 290px;
  white-space: normal;
}

.popup__in {
  overflow: auto;
  height: 600px;
  padding: 70px 75px;
}

.popup__close {
  position: absolute;
  z-index: 1000;
  top: 19px;
  right: 19px;
  background: transparent;
  border: none;
}

.popup__close:hover .icon {
  fill: #852125;
}

.popup__close .icon {
  width: 15px;
  height: 15px;
  fill: #1c2837;
  transition: fill 0.3s;
}

.popup__date {
  position: absolute;
  top: 0;
  left: 0;
}

.calendar-place {
  display: inline-block;
  text-align: center;
  width: 90px;
  height: 90px;
  background: #852225;
  color: #fff;
  padding: 13px 0;
}

.calendar-place__date {
  font-size: 32px;
  color: #fff;
  line-height: normal;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar-place__date {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar-place__month {
  font-size: 10px;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar-place__month {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.wrap-coverage {
  margin-bottom: 95px;
}

.coverage-image {
  margin-bottom: 29px;
  background-color: #f4f4f4;
}

.coverage-image img {
  max-width: 100%;
}

.coverage-slider {
  padding-bottom: 25px;
}

.coverage-about {
  display: inline-block;
  text-align: left;
}

.coverage-about__item:not(:last-child) {
  margin-bottom: 8px;
}

.coverage-text {
  background-color: #f4f4f4;
  padding-top: 56px;
}

.coverage-box {
  padding: 27px 0 102px;
}

.coverage-table {
  margin: 27px 0 102px;
  border: solid 1px rgba(139, 141, 141, 0.25);
  width: 100%;
}

.coverage-table__row {
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #e2e2e2;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}

.coverage-table__row_border {
  border-bottom: none;
}

.coverage-table__row:last-child {
  border-bottom: none;
}

.coverage-table__header {
  background-color: #f4f4f4;
  color: #1c2837;
  text-transform: uppercase;
}

.coverage-table__header .coverage-table__cell {
  padding: 25px 36px 7px;
}

.coverage-table__header .coverage-table__country {
  color: #1c2837;
}

.coverage-table__accordion {
  width: calc(100% - 250px);
}

.coverage-table__accordion .coverage-table__row {
  border-color: transparent;
  transition: ease 0.5s border-color;
}

.is-open .coverage-table__accordion .coverage-table__row {
  border-color: #e2e2e2;
}

.coverage-table__accordion_toggle {
  display: none;
}

.coverage-table__accordion .coverage-table__content {
  width: calc(100% - 320px);
}

.coverage-table__cell {
  line-height: 1.3;
  font-size: 14px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  text-align: left;
  padding: 11px 36px;
}

[dir=rtl] .coverage-table__cell {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.coverage-table__cell a {
  color: #0047ba;
  text-decoration: none;
}

.coverage-table__content {
  width: calc(100% - 570px);
}

.coverage-table__country {
  color: #852225;
  width: 230px;
  border-right: solid 1px #e2e2e2;
  width: 250px;
}

.coverage-table__country-accordeon {
  position: relative;
}

.coverage-table__country-accordeon span {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #1c2837 transparent transparent transparent;
  position: absolute;
  right: 15px;
  top: 18px;
  transition: ease 0.3s transform;
}

.is-open .coverage-table__country-accordeon span {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.coverage-table__link {
  text-align: right;
  width: 320px;
}

.coverage-table__link_big {
  width: 100% !important;
}

.calendar {
  position: relative;
  margin-bottom: 100px;
  margin-top: 50px;
}

.calendar .monthly-header {
  position: absolute;
  bottom: 100%;
  left: -1px;
  right: -1px;
  padding: 18px 0;
  height: auto;
}

.calendar .monthly-header-title {
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
}

.calendar .monthly-header-title a {
  font-size: 42px;
  color: #1c2837;
  line-height: 1.19;
  height: auto;
  background: transparent;
  border: none;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar .monthly-header-title a {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-header-title .monthly-reset, .calendar .monthly-header-title .monthly-cal {
  display: none;
}

.calendar .monthly-prev, .calendar .monthly-next {
  position: static;
  width: auto;
  height: auto;
  opacity: 1;
}

.calendar .monthly-prev:hover, .calendar .monthly-next:hover {
  opacity: .8;
}

.calendar .monthly-prev:after, .calendar .monthly-next:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: static;
  width: 30px;
  height: 50px;
  border: none;
  background: url("../img/arrow-forward.svg") center center;
  background-size: cover;
  margin: 0;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.calendar .monthly-prev:after {
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.calendar .monthly-day-title-wrap {
  background: #f4f4f4;
  padding-top: 25px;
  border-style: solid;
  border-color: rgba(139, 141, 141, 0.25);
  border-width: 1px 1px 0 1px;
}

.calendar .monthly-day-title-wrap > div {
  text-align: right;
  font-size: 14px;
  color: #1c2837;
  letter-spacing: 0.5px;
  padding: 0 7px 6px 0;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar .monthly-day-title-wrap > div {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-day-title-wrap > div:last-child, .calendar .monthly-day-title-wrap > div:nth-last-child(2) {
  color: #8b8d8d;
}

.calendar .monthly-day-wrap {
  border: 1px solid rgba(139, 141, 141, 0.25);
}

.calendar .monthly-day-wrap .monthly-week {
  text-align: right;
}

.calendar .monthly-day-wrap .monthly-week .m-d {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: right;
  color: #1c2837;
  border-color: #e2e2e2;
  padding: 30px 11px 11px 11px;
  height: 111px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar .monthly-day-wrap .monthly-week .m-d {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-day-wrap .monthly-week .m-d:last-child, .calendar .monthly-day-wrap .monthly-week .m-d:nth-last-child(2) {
  color: #8b8d8d;
}

.calendar .monthly-day-wrap .monthly-week .m-d:hover {
  position: relative;
  z-index: 5;
  box-shadow: 0 0 10px 0 rgba(139, 141, 141, 0.25);
}

.calendar .monthly-day-wrap .monthly-week .m-d.monthly-day-blank {
  background: rgba(139, 141, 141, 0.25);
}

.calendar .monthly-day-wrap .monthly-day-event > .monthly-day-number {
  top: 7px;
  right: 10px;
  z-index: 2;
}

.calendar .monthly-day-wrap .monthly-day-event > .monthly-day-number > span {
  text-transform: capitalize;
}

.calendar .monthly-day-wrap .monthly-day {
  overflow: hidden;
}

.calendar .monthly-day-wrap .monthly-day:before {
  padding-top: calc(100% - 70px);
}

.calendar .monthly-day-wrap .monthly-day .monthly-event-indicator {
  background: rgba(245, 195, 0, 0.5);
  border-left: 2px solid #f5c300;
  height: auto;
  margin: 0 0 5px 0;
  padding: 0;
}

.calendar .monthly-day-wrap .monthly-day .monthly-event-indicator:hover {
  background: #f5c300;
}

.calendar .monthly-day-wrap .monthly-day .monthly-event-indicator > span {
  font-size: 12px;
  color: #1c2837;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  padding-left: 9px;
  line-height: 30px;
  text-align: left;
}

[dir=rtl] .calendar .monthly-day-wrap .monthly-day .monthly-event-indicator > span {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-day-wrap .monthly-day .monthly-indicator-wrap {
  max-height: 71px;
  overflow: hidden;
}

.calendar .monthly-day-wrap .monthly-today {
  background: #fff;
  text-align: right;
}

.calendar .monthly-day-wrap .monthly-today > .monthly-day-number {
  top: 8px;
  right: 8px;
  background: transparent;
  text-align: right;
  left: auto;
  width: auto;
  height: auto;
  font-size: 14px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar .monthly-day-wrap .monthly-today > .monthly-day-number {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-day-wrap .monthly-today > .monthly-day-number:before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -5px;
  top: -5px;
  width: 26px;
  height: 26px;
  background: #0047ba;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
}

.calendar .monthly-day-wrap .monthly-today .monthly-event-indicator {
  padding: 3px 0;
  margin-top: 3px;
}

.calendar .monthly-day-wrap .monthly-today .monthly-event-indicator > span {
  white-space: normal;
  line-height: 1.3;
}

.calendar .monthly-list-item {
  padding: 0;
  border: none;
}

.calendar .monthly-list-item.item-has-event {
  display: none;
}

.calendar .monthly-list-item.item-has-event.is-show {
  display: block;
}

.calendar .monthly-event-list-date {
  position: static;
  text-align: left;
  width: 100%;
  display: none;
}

.calendar .monthly-event-list-date > p {
  display: inline-block;
  line-height: 1.2;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  color: #1c2837;
}

[dir=rtl] .calendar .monthly-event-list-date > p {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-event-list-date > p:first-child {
  font-size: 14px;
}

.calendar .monthly-event-list-date > p:first-child:after {
  content: '/';
  display: inline-block;
  vertical-align: top;
  margin-left: 2px;
}

.calendar .monthly-event-list {
  width: 305px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(139, 141, 141, 0.25);
  padding: 40px 30px 40px 40px;
  height: auto;
  z-index: 5;
  overflow: visible;
  transition: none;
}

.calendar .monthly-event-list:after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  bottom: -40px;
  left: -40px;
  z-index: -1;
  background: transparent;
}

.calendar .monthly-event-list:before {
  content: '';
  position: absolute;
  right: 100%;
  top: 30%;
  z-index: 6;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent #fff transparent transparent;
}

.calendar .monthly-event-list.is-show-left:before {
  right: auto;
  left: 100%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fff;
}

.calendar .monthly-event-list .listed-event, .calendar .monthly-event-list .event-listed {
  display: block;
  font-size: 12px;
  line-height: 1.33;
  color: #1c2837;
  background: rgba(245, 195, 0, 0.5);
  border-left: 2px solid #f5c300;
  padding: 8px 9px;
  border-radius: 0;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .calendar .monthly-event-list .listed-event, [dir=rtl] .calendar .monthly-event-list .event-listed {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.calendar .monthly-event-list .listed-event:hover, .calendar .monthly-event-list .event-listed:hover {
  cursor: pointer;
  background: #f5c300;
}

.calendar .monthly-event-list .listed-event:not(:last-child), .calendar .monthly-event-list .event-listed:not(:last-child) {
  margin-bottom: 20px;
}

.main-slider {
  position: relative;
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all;
  overflow: hidden;
}

.main-slider__arr {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 2;
  background: transparent;
  transition: opacity 0.3s;
}

.main-slider__arr:hover {
  cursor: pointer;
  opacity: .7;
}

.main-slider__arr-left {
  left: 0;
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.main-slider__arr-right {
  right: 0;
}

.main-slider__item {
  display: inline-block;
  width: 100%;
}

.main-slider .news {
  margin-left: 0;
}

.icon-arr-some {
  width: 40px;
  height: 40px;
  fill: transparent;
  stroke: #fff;
  stroke-width: 4px;
}

.input input {
  border: 1px solid rgba(139, 141, 141, 0.25);
  padding: 14px 20px;
  width: 100%;
  font-size: 16px;
  color: #1c2837;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .input input {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.input input::-webkit-input-placeholder {
  color: #8b8d8d;
}

.input input:-ms-input-placeholder {
  color: #8b8d8d;
}

.input input::placeholder {
  color: #8b8d8d;
}

.input input:focus, .input input:active {
  border-color: #1c2837;
}

.input-sub {
  position: relative;
}

.input-sub input {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  background: transparent;
  font-size: 16px;
  color: #fff;
  padding: 0 25px 5px 0;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  transition: border-bottom-color 0.3s;
}

[dir=rtl] .input-sub input {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.input-sub input::-webkit-input-placeholder {
  color: #8b8d8d;
}

.input-sub input:-ms-input-placeholder {
  color: #8b8d8d;
}

.input-sub input::placeholder {
  color: #8b8d8d;
}

.input-sub input:focus {
  border-bottom-color: #fff;
}

.input-sub input:focus + .input-sub__btn .icon {
  fill: #fff;
}

.input-sub__btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 20px;
  background: transparent;
  border: none;
}

.input-sub .icon {
  display: inline-block;
  vertical-align: super;
  width: 20px;
  height: 8px;
  fill: #8b8d8d;
  transition: fill 0.3s;
}

input[type="file"] {
  display: none;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: background .2s , color .2s, border .2s;
  min-height: 42px;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .btn {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.btn:hover {
  cursor: pointer;
}

.btn:disabled, .btn.is-disabled {
  pointer-events: none;
  opacity: .8;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn > .icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  transition: fill 0.2s;
}

.btn > span:not(.required) {
  display: inline-block;
  vertical-align: middle;
  padding: 4px 0;
}

.btn_sm {
  padding: 2px 22px;
  min-height: 1px;
}

.btn_md {
  min-width: 266px;
}

.btn_blue {
  background: #0047ba;
  border-color: #0047ba;
  color: #fff;
}

.btn_blue:hover {
  background: #1c2837;
  border-color: #1c2837;
}

.btn_gray {
  border-color: #e2e2e2;
  color: #8b8d8d;
}

.btn_gray:hover {
  background: #1c2837;
  color: #fff;
}

.btn_gray:hover .required {
  color: #fff;
}

.btn_gray:disabled, .btn_gray.is-disabled {
  background: #ececec;
}

.btn_red {
  background: #852125;
  border-color: #852125;
  color: #fff;
}

.btn_border {
  border-color: #1c2837;
  color: #1c2837;
}

.btn_border:hover, .btn_red:hover {
  background: #1c2837;
  border-color: #1c2837;
  color: #fff;
}

.btn_border:hover .icon, .btn_red:hover .icon {
  fill: #fff;
}

.btn_border-white {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn_border-white:hover {
  color: #f5c300;
  border-color: #f5c300;
}

.btn_arr {
  padding-left: 20px;
  padding-right: 46px;
  position: relative;
}

.btn_arr:hover .icon {
  fill: #f5c300;
}

.btn_arr .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -4px;
  font-size: 8px;
  fill: #fff;
  transition: fill .3s;
}

.icon-play {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.icon-mail {
  width: 24px;
  height: 24px;
  fill: #1c2837;
}

.btn-burger {
  position: relative;
  width: 55px;
  height: 55px;
  background: #0047ba;
}

.btn-burger:hover i, .btn-burger:hover i:before, .btn-burger:hover i:after {
  background: #f5c300;
}

.btn-burger.is-active i {
  background: transparent;
}

.btn-burger.is-active i:after {
  -ms-transform: translate(3px, -0.4px) rotate(-45deg);
  transform: translate(3px, -0.4px) rotate(-45deg);
}

.btn-burger.is-active i:before {
  -ms-transform: translate(3px, -1px) rotate(45deg);
  transform: translate(3px, -1px) rotate(45deg);
}

.btn-burger i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  margin-top: -1px;
  background: #fff;
  transition: background .3s;
}

.btn-burger i:after, .btn-burger i:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: inherit;
  background: #fff;
  -ms-transform-origin: left center;
  transform-origin: left center;
  transition: transform .3s, background .3s;
}

.btn-burger i:after {
  bottom: -6px;
}

.btn-burger i:before {
  top: -6px;
}

.slider-btn {
  position: relative;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.3s;
}

.slider-btn__left {
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.slider-btn .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slider-btn_border {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(139, 141, 141, 0.25);
}

.slider-btn_border .icon {
  width: 12px;
  height: 12px;
  fill: #1c2837;
}

.slider-btn_border:hover {
  background: #1c2837;
}

.slider-btn_border:hover .icon {
  fill: #fff;
}

.slider-btn_bg {
  width: 40px;
  height: 40px;
  background: #0047ba;
}

.slider-btn_bg .icon {
  width: 18px;
  height: 15px;
  fill: #fff;
}

.slider-btn_bg:hover {
  background: #1c2837;
}

.share-btn {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  vertical-align: middle;
  background: transparent;
  border: 1px solid rgba(139, 141, 141, 0.25);
  transition: background 0.3s;
}

.share-btn .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: fill 0.3s;
}

.share-btn .icon.icon-twitter {
  width: 15px;
  height: 14px;
}

.share-btn .icon.icon-fb {
  width: 14px;
  height: 14px;
}

.share-btn:hover {
  background: #1c2837;
}

.share-btn:hover .icon {
  fill: #fff;
}

.select-custom {
  position: relative;
}

.select-custom select {
  display: none;
}

.select-custom.is-open .select-custom__btn {
  border-color: #4a4a4a;
}

.select-custom.is-open .select-custom__btn:after {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select-custom.is-open .select-custom__list {
  display: block;
}

.select-custom__btn {
  text-align: left;
  position: relative;
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 40px 14px 20px;
  color: #1c2837;
  font-size: 16px;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
  border: 1px solid rgba(139, 141, 141, 0.25);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

[dir=rtl] .select-custom__btn {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.select-custom__btn:after, .select-custom__btn:before {
  content: '';
  position: absolute;
  right: 0;
  pointer-events: none;
}

.select-custom__btn:after {
  right: 20px;
  top: 50%;
  margin-top: -2.5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #1c2837 transparent transparent transparent;
  z-index: 2;
}

.select-custom__list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  z-index: 2;
  padding: 5px 0;
  box-shadow: 0 2px 6px 0 #bdbdbd;
  max-height: 350px;
  overflow-y: auto;
}

.select-custom__item {
  padding: 3px 20px;
  font-size: 16px;
  color: #1c2837;
}

.select-custom__item:hover, .select-custom__item.is-selected {
  cursor: pointer;
  background: #f5f5f5;
}

.form__caption {
  font-size: 30px;
  color: #1c2837;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
}

[dir=rtl] .form__caption {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.form__heading {
  margin-bottom: 50px;
}

.form__heading .text {
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.form__line {
  margin-bottom: 25px;
}

.form__line.row_inline > [class^='col'] {
  margin-bottom: 0;
}

.form__line.row > [class^='col']:last-child {
  margin-bottom: 0;
}

.form__line .btn {
  width: 100%;
}

.form__line-title {
  margin-bottom: 14px;
}

.form__line-bottom {
  margin-top: 3px;
}

.search-form {
  position: relative;
}

.search-form__input {
  width: 100%;
  height: 80px;
  padding: 10px 50px 10px 83px;
  padding-left: 83px;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 28px;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .search-form__input {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.search-form__input::-webkit-input-placeholder {
  color: rgba(28, 40, 55, 0.5);
}

.search-form__input:-ms-input-placeholder {
  color: rgba(28, 40, 55, 0.5);
}

.search-form__input::placeholder {
  color: rgba(28, 40, 55, 0.5);
}

.search-form__input::-ms-clear {
  display: none;
}

.search-form__btn {
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  top: 0;
  bottom: 0;
  width: 80px;
}

.search-form__btn .icon {
  font-size: 26px;
  fill: #852125;
}

.search-form__reset {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: none;
}

.search-form__reset .icon {
  font-size: 17px;
}

.wpcf7-response-output {
  font-size: 16px;
}

.textarea textarea {
  border: 1px solid rgba(139, 141, 141, 0.25);
  width: 100%;
  padding: 15px 20px;
  height: 150px;
  font-size: 16px;
  color: #1c2837;
  resize: none;
  font-family: FuturaPTBook, Arial, Helvetica, sans-serif;
}

[dir=rtl] .textarea textarea {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
}

.textarea textarea::-webkit-input-placeholder {
  color: #8b8d8d;
}

.textarea textarea:-ms-input-placeholder {
  color: #8b8d8d;
}

.textarea textarea::placeholder {
  color: #8b8d8d;
}

.textarea textarea:focus, .textarea textarea:active {
  border-color: #1c2837;
}

.checkbox {
  position: relative;
  padding-left: 30px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
}

.checkbox input + label {
  cursor: pointer;
}

.checkbox input:not(checked) + label:before, .checkbox input:not(checked) + label:after {
  content: '';
  position: absolute;
}

.checkbox input:not(checked) + label:before {
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: solid 1px #e2e2e2;
  transition: border-color .2s, background .2s;
}

.checkbox input:not(checked) + label:after {
  display: inline-block;
  opacity: 0;
  left: -1px;
  top: 1px;
  content: '';
  width: 24px;
  height: 20px;
  background: url("/img/check.svg") center center no-repeat;
  background-size: cover;
  transition: opacity 0.3s;
}

.checkbox input:checked + label:after {
  opacity: 1;
}

.checkbox input:checked + label:before {
  background: #852225;
  border-color: #852225;
}

.checkbox label {
  font-size: 14px;
  line-height: 1.2;
  color: #8b8d8d;
  font-family: FuturaPTBold, Arial, Helvetica, sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

[dir=rtl] .checkbox label {
  font-family: aljazeera, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

[dir=rtl] .h4 {
  font-weight: bold !important;
}

[dir=rtl] .heading__link .icon, [dir=rtl] .main-slider__arr {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

[dir=rtl] .main-slider__arr-left {
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.news-wrapper .row {
  font-size: 0;
}

.news-wrapper .row > div {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.entry__content {
  position: relative;
}

.news {
  display: block;
}

.heading a:first-child {
  color: #1c2837;
  text-decoration: none;
}

.post__title-text {
  word-break: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

html {
  margin-top: 32px !important;
}

* html body {
  margin-top: 32px !important;
}

ol {
  padding-left: 20px;
  list-style: decimal;
}

@media (min-width: 25em){
  .monthly-day-event{
    padding-top: 1.3em;
  }
  .monthly-day-event > .monthly-indicator-wrap{
    width: auto;
    max-width: none;
  }
  .monthly-indicator-wrap{
    padding: 0;
  }
  .monthly-day .monthly-event-indicator{
    display: block;
    margin: 0 0 1px 0;
    width: auto;
    height: 1.5em;
    line-height: 1.2em;
    padding: 0.125em 0 0.1em 0.125em;
    border-radius: 0;
    overflow: hidden;
    background-color: #333;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .monthly-day .monthly-event-indicator.monthly-event-continued{
    box-shadow: -1px 0 0 0;
  }
  .monthly-day .monthly-event-indicator span{
    display: block;
    width: auto;
    margin: 0;
    color: #fff;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media only screen and (min-width: 768px){
  .show-sm{
    display: none;
  }
  .post_big.post_video .post__title{
    position: relative;
    padding-left: 80px;
    min-height: 54px;
  }
  .post_big.post_video .post__title:before{
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0047ba;
    opacity: .75;
    transition: opacity .3s;
  }
  .post_big.post_video .post__title:after{
    content: '';
    position: absolute;
    left: 21px;
    top: 22px;
    width: 10px;
    height: 14px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzQ5LjQgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNDkuNCA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojRkZGRkZGO308L3N0eWxlPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMzIuNywyMjUuOWMyMi4yLDE2LjUsMjIuMiw0My42LDAsNjAuMUw0MC40LDUwMy44QzE4LjIsNTIwLjMsMCw1MTEuMiwwLDQ4My41di00NTVDMCwwLjgsMTguMi04LjMsNDAuNCw4LjJMMzMyLjcsMjI1Ljl6Ii8+PC9zdmc+) center center/contain no-repeat;
  }
  .c-item__date{
    text-align: center;
    font-size: 0;
  }
  .c-item__date:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
  }
  .stream__header{
    background: #fff;
    display: table;
  }
  .stream__header > div{
    display: table-cell;
  }
  .stream__about{
    padding: 0 75px;
  }
}

@media all and (min-width: 800px){
  .fancybox-button--thumbs{
    display: inline-block;
  }
  .fancybox-button--thumbs span{
    font-size: 23px;
  }
  .fancybox-button--thumbs::before{
    width: 3px;
    height: 3px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
  }
  .fancybox-thumbs{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995;
  }
  .fancybox-show-thumbs .fancybox-thumbs{
    display: block;
  }
  .fancybox-show-thumbs .fancybox-inner{
    right: 220px;
  }
  .fancybox-thumbs > ul{
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
  }
  .fancybox-thumbs > ul > li{
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid transparent;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
  }
  li.fancybox-thumbs-loading{
    background: rgba(0, 0, 0, 0.1);
  }
  .fancybox-thumbs > ul > li > img{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .fancybox-thumbs > ul > li:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before{
    opacity: 1;
  }
}

@media only screen and (min-width: 961px){
  .menu__mobile{
    display: none;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1199px){
  .menu__soc{
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px){
  .post_big.post_video .post__title{
    padding-left: 70px;
  }
}

@media only screen and (max-width: 1199px){
  .header__center{
    padding: 0 200px;
  }
  .header__soc{
    display: none;
  }
  .header__nav a{
    padding-left: 10px;
    padding-right: 10px;
  }
  .menu__content{
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 1100px){
  .video-row{
    text-align: center;
  }
  .video-item{
    text-align: left;
  }
}

@media only screen and (max-width: 1099px){
  .col-lg-3{
    width: 33.333%;
  }
  .col-lg-4{
    width: 33.333%;
  }
  .col-lg-2{
    width: 50%;
  }
  .post_big .post__title-text{
    font-size: 20px;
  }
  .stream__title{
    padding-left: 30px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1050px){
  blockquote{
    padding: 0 40px;
  }
  blockquote:before{
    left: 0;
  }
  blockquote:after{
    right: 0;
  }
  blockquote{
    padding: 0 40px;
  }
  blockquote:before{
    left: 0;
  }
  blockquote:after{
    right: 0;
  }
  .content > div{
    margin-left: 0;
    margin-right: 0;
  }
  .content blockquote:before{
    left: 0;
  }
  .content blockquote:after{
    right: 0;
  }
  .promo-wrap__slider{
    max-width: 600px;
  }
}

@media only screen and (max-width: 1023px){
  .program__header{
    font-size: 12px;
  }
  .program__row{
    font-size: 12px;
  }
  .coverage-table__header .coverage-table__cell{
    padding: 25px 20px 7px;
  }
  .coverage-table__cell{
    padding: 11px 20px;
  }
}

@media only screen and (max-width: 980px){
  .footer{
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 960px){
  .header__center{
    padding-left: 0;
  }
  .header__logo{
    margin-right: 30px;
  }
  .header__btns{
    text-align: left;
  }
  .header__menu{
    display: none;
  }
  .footer__in{
    text-align: left;
    text-align-last: left;
    font-size: 0;
    border-bottom-color: transparent;
    margin-bottom: 40px;
  }
  .footer__col_md{
    width: 100%;
  }
  .footer__col_sm{
    width: 50%;
    padding-right: 20px;
  }
  .footer__col_sm-mod{
    padding-right: 0;
  }
  .footer__divider{
    display: block;
    margin-bottom: 33px;
  }
  .menu__inner{
    width: 500px;
    max-width: 100%;
  }
  .menu__content{
    padding: 40px 20px 35px;
  }
  .menu__items{
    display: none;
  }
}

@media only screen and (max-width: 959px){
  body{
    padding-top: 51px;
  }
  .h1{
    font-size: 30px;
  }
  .col-md{
    width: 100%;
  }
  .col-md-3{
    width: 33.333%;
  }
  .col-md-4{
    width: 33.333%;
  }
  .col-md-2{
    width: 50%;
  }
  .hide-md{
    display: none;
  }
  .l .l-col1{
    width: calc(100% - 245px);
  }
  .l .l-col2{
    width: 245px;
  }
  .h1{
    font-size: 30px;
  }
  .header__top{
    padding-left: 20px;
  }
  .post_horizontal{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  }
  .post_horizontal .post__media{
    float: none;
    margin: 0 0 15px 0;
  }
  .post_horizontal .post__img{
    width: 100%;
  }
  .post_horizontal .post__text{
    margin-bottom: 0;
  }
  .p-preview_lg .p-preview__img{
    display: none;
  }
  .p-preview_lg .p-preview__title{
    font-size: 16px;
  }
  .entry__content{
    margin-right: 265px;
  }
  .entry__sidebar{
    width: 225px;
  }
  .entry__col{
    padding-left: 15px;
  }
  .entry__col{
    padding-right: 15px;
  }
  .news_mod-height{
    min-height: 0;
    padding-top: 50px;
  }
  .sidebar.is-sticky{
    width: 245px;
  }
  .pagination{
    display: none;
  }
  .category{
    min-height: 1px;
  }
  .calendar .monthly-header-title a{
    font-size: 30px;
  }
  .calendar .monthly-day-wrap .monthly-week .m-d{
    height: 70px;
    padding: 0;
  }
  .calendar .monthly-day-wrap .monthly-week .m-d:hover{
    z-index: auto;
    box-shadow: 0 0 0 1px #ebebeb;
  }
  .calendar .monthly-day-wrap .monthly-week .m-d.monthly-day-has-event{
    background: rgba(245, 195, 0, 0.5);
    color: #fff;
  }
  .calendar .monthly-day-wrap .monthly-day .monthly-indicator-wrap{
    display: none;
  }
  .calendar .monthly-day-wrap .monthly-today{
    background: #0047ba;
  }
}

@media only screen and (max-width: 840px){
  .header__logo{
    margin-right: 0;
  }
  .header__btns{
    display: none;
  }
}

@media all and (max-width: 800px){
  .fancybox-infobar{
    left: 0;
    margin-left: 0;
  }
  .fancybox-button--left,
  .fancybox-button--right{
    display: none !important;
  }
  .fancybox-caption{
    padding: 20px 0;
    margin: 0;
  }
}

@media only screen and (max-width: 782px){
  html{
    margin-top: 46px !important;
  }
  * html body{
    margin-top: 46px !important;
  }
}

@media only screen and (max-width: 767px){
  body{
    padding-top: 41px;
  }
  .bg-wrapper{
    padding: 45px 0 50px;
  }
  .bg-img__in{
    padding: 100px 0 130px;
  }
  .left{
    float: none;
  }
  .right{
    float: none;
  }
  .h1_margin-md{
    margin: 40px 0;
  }
  .h1_margin-sm{
    margin-bottom: 20px;
  }
  .h1_margin-xs{
    margin-bottom: 10px;
  }
  .h4.upper{
    font-size: 14px;
  }
  .heading{
    margin-bottom: 17px;
    font-size: 14px;
  }
  .heading__link{
    padding-top: 2px;
  }
  .divider_md{
    height: 11px;
  }
  .divider_margin{
    margin: 35px 0;
  }
  blockquote{
    font-size: 16px;
    margin: 25px 0;
  }
  .container{
    padding: 0 15px;
  }
  .wrapper{
    padding: 0 15px;
  }
  .row{
    margin-left: -15px;
    margin-right: -15px;
  }
  .row > div{
    padding: 0 15px;
  }
  .row_margin-md > div{
    margin-bottom: 25px;
  }
  .col-sm{
    width: 100%;
  }
  .col-sm-3{
    width: 33.333%;
  }
  .col-sm-4{
    width: 33.333%;
  }
  .col-sm-2{
    width: 50%;
  }
  .col__in{
    max-width: 100%;
  }
  .hide-sm{
    display: none;
  }
  .hide-xs{
    display: none;
  }
  .visible-sm{
    display: block;
  }
  .l .l-col1{
    width: 100%;
  }
  .l .l-col2{
    width: 100%;
  }
  .stock-down{
    margin-bottom: 50px;
  }
  .h1_margin-md{
    margin: 40px 0;
  }
  .h1_margin-sm{
    margin-bottom: 20px;
  }
  .h1_margin-xs{
    margin-bottom: 10px;
  }
  .h4.upper{
    font-size: 14px;
  }
  .heading{
    margin-bottom: 17px;
    font-size: 14px;
  }
  .heading__link{
    padding-top: 2px;
  }
  .divider_md{
    height: 11px;
  }
  .divider_margin{
    margin: 35px 0;
  }
  blockquote{
    font-size: 16px;
    margin: 25px 0;
  }
  .header__top{
    padding: 0 45px;
    padding-left: 10px;
    min-height: 40px;
  }
  .header__right{
    padding-right: 10px;
  }
  .header__logo{
    max-width: 67px;
  }
  .header__weather, .header__lang, .header__search, .header__calendar{
    height: 40px;
  }
  .header__weather span, .header__lang span, .header__search span, .header__calendar span{
    font-size: 12px;
  }
  .header__weather .icon{
    font-size: 10px;
    fill: #0047ba;
    top: 1px;
  }
  .post_big.post_video .post__img{
    position: relative;
  }
  .post_big.post_video .post__img:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    background: #0047ba;
    opacity: .75;
    z-index: 1;
    transition: opacity .3s;
  }
  .post_big.post_video .post__img:after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 14px;
    margin-left: -4px;
    margin-top: -7px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzQ5LjQgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzNDkuNCA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojRkZGRkZGO308L3N0eWxlPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMzIuNywyMjUuOWMyMi4yLDE2LjUsMjIuMiw0My42LDAsNjAuMUw0MC40LDUwMy44QzE4LjIsNTIwLjMsMCw1MTEuMiwwLDQ4My41di00NTVDMCwwLjgsMTguMi04LjMsNDAuNCw4LjJMMzMyLjcsMjI1Ljl6Ii8+PC9zdmc+) center center/contain no-repeat;
    z-index: 2;
  }
  .post_xs .post__title-text{
    font-size: 20px;
  }
  .post_xs .post__footer li:not(.post__footer-clock){
    display: inline-block;
  }
  .post_width .post__footer li:not(.post__footer-clock){
    display: none;
  }
  .post_horizontal .post__text{
    max-width: 100%;
  }
  .post_horizontal .post__title{
    padding-right: 0;
  }
  .post-wrap{
    margin-bottom: 50px;
  }
  .p-preview_icon-sm .p-preview__date .icon{
    display: inline-block;
  }
  .wrap-list__in{
    padding-left: 40px;
  }
  .list__item{
    line-height: 1.8;
  }
  .letter-list{
    margin-bottom: 0;
  }
  .menu__content{
    padding-left: 15px;
    padding-right: 15px;
  }
  .new-vacancy__item{
    width: 50%;
  }
  .wrap-list__in{
    padding-left: 40px;
  }
  .list__item{
    line-height: 1.8;
  }
  .letter-list{
    margin-bottom: 0;
  }
  .entry__row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .entry__content{
    margin-right: -15px;
    margin-left: -15px;
    -ms-flex-order: -1;
    order: -1;
  }
  .entry__sidebar{
    width: 100%;
  }
  .entry__footer{
    display: block;
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .entry__footer:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 11px;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='4' height='21' %3E%3Cpath d='M0.5,0.5 L0.5,21.5' stroke='rgba(133, 33, 37, 0.25)' /%3E/%3E%3C/svg%3E") repeat-x;
  }
  .entry__col{
    padding-left: 0;
  }
  .entry__col{
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  }
  .entry__col:not(:last-child){
    margin-bottom: 17px;
  }
  .live{
    padding-top: 30px;
  }
  .news{
    margin-left: 0;
    min-height: 0;
    padding-top: 50px;
  }
  .news-wrapper_margin-md{
    margin-bottom: 25px;
  }
  .news-wrapper{
    padding-bottom: 50px;
  }
  .news-list:not(.news-list_wide){
    padding-right: 0;
  }
  .news-list__item_mod:not(:last-child):after{
    display: none;
  }
  .news-list_mod .news-list__item:after{
    display: block;
  }
  .human-card:last-child{
    margin-bottom: 0;
  }
  .sidebar.is-sticky{
    position: static;
    width: auto;
  }
  .sidebar{
    padding-left: 0;
  }
  .sidebar:before{
    display: none;
  }
  .c-item:after{
    background: rgba(0, 71, 186, 0.8);
  }
  .c-item__inner{
    min-height: 0;
    padding: 40px 45px 35px;
  }
  .c-item__date > div{
    line-height: 1;
    font-size: 12px;
  }
  .c-item__date strong{
    display: inline-block;
    font-size: 12px;
  }
  .c-item__date{
    width: auto;
    height: 30px;
    padding: 0 20px;
    height: 30px;
    line-height: 28px;
    background: #f5c300;
    color: #1c2837;
    font-size: 12px;
    text-transform: uppercase;
  }
  .c-item__title{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .c-item__about{
    position: static;
  }
  .writer__soc{
    margin: 0;
  }
  .writer__soc-btn{
    margin: 0;
  }
  .modal-search__form{
    max-width: 540px;
  }
  .promo-wrap{
    padding: 30px 0 50px;
  }
  .promo-wrap__slider-arr{
    display: none;
  }
  .promo-wrap__title{
    margin-bottom: 17px;
  }
  .dropdown_header{
    height: 40px;
  }
  .category-list .category{
    margin-bottom: 0;
  }
  .category:last-child .category__in:last-child{
    border-bottom: none;
  }
  .category:not(:last-child){
    border-right: none;
  }
  .category__in{
    border-bottom: 1px solid rgba(139, 141, 141, 0.25);
  }
  .program__header .cell:last-child{
    padding-right: 15px;
  }
  .program__row .cell{
    padding: 10px;
  }
  .program__row .cell:last-child{
    padding-right: 15px;
  }
  .stream__inform{
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .stream__title{
    padding-left: 15px;
    padding-right: 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(139, 141, 141, 0.25);
    background: #fff;
  }
  .popup__container{
    max-width: 100%;
  }
  .popup__date{
    display: none;
  }
  .coverage-table__row{
    display: block;
  }
  .coverage-table__header{
    display: none;
  }
  .coverage-table__accordion{
    width: 100%;
  }
  .coverage-table__accordion .coverage-table__content{
    width: 100%;
  }
  .coverage-table__cell{
    width: 100%;
    text-align: center;
    border-right: none;
  }
  .calendar{
    margin-top: 83px;
    border-bottom-color: transparent;
    background: #fff;
  }
  .calendar .monthly-prev:after, .calendar .monthly-next:after{
    width: 15px;
    height: 25px;
  }
  .calendar .monthly-day-title-wrap{
    padding-top: 15px;
  }
  .calendar .monthly-day-title-wrap > div{
    font-size: 10px;
  }
  .calendar .monthly-day-wrap .monthly-day-event > .monthly-day-number > span{
    display: none;
  }
  .calendar .monthly-list-item.item-has-event{
    margin-top: 50px;
  }
  .calendar .monthly-event-list-date{
    display: block;
    position: absolute;
    left: 0;
    top: -30px;
    pointer-events: none;
  }
  .calendar .monthly-event-list{
    position: static;
    background: #fff;
    width: 100%;
    margin-top: 50px;
    box-shadow: none;
    padding: 0;
  }
  .calendar .monthly-event-list:after, .calendar .monthly-event-list::before{
    display: none;
  }
  .btn-burger{
    width: 45px;
    height: 40px;
  }
  .share-btn{
    border-color: transparent;
    width: 30px;
  }
  .share-btn:hover{
    background: transparent;
  }
  .share-btn:hover .icon{
    fill: #852125;
  }
  .form__caption{
    font-size: 20px;
  }
  .form__heading{
    margin-bottom: 25px;
  }
  .search-form__input{
    height: 50px;
    padding-top: 8px;
    padding-left: 53px;
    font-size: 24px;
  }
  .search-form__btn{
    width: 50px;
  }
  .search-form__btn .icon{
    font-size: 18px;
  }
  .search-form__reset .icon{
    font-size: 15px;
  }
}

@media only screen and (max-width: 600px){
  .video-item iframe{
    max-width: 100% !important;
  }
  .content{
    max-width: 100%;
    width: 100%;
  }
  .coverage-slider .coverage-about__item:after{
    right: 0;
    margin: auto;
  }
  .coverage-slider .coverage-about{
    text-align: center;
  }
}

@media only screen and (max-width: 599px){
  .h1{
    font-size: 20px;
  }
  .line-text__in{
    margin: 0 20px;
  }
  .row_bd-xs > div:not(:last-child){
    position: relative;
    padding-bottom: 35px;
  }
  .row_bd-xs > div:not(:last-child):after{
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    height: 1px;
    bottom: 0;
    background: rgba(139, 141, 141, 0.25);
  }
  .col-xs{
    width: 100%;
  }
  .col-xs-3{
    width: 33.333%;
  }
  .col-xs-4{
    width: 33.333%;
  }
  .col-xs-2{
    width: 50%;
  }
  .h1{
    font-size: 20px;
  }
  .line-text__in{
    margin: 0 20px;
  }
  .footer{
    padding-bottom: 36px;
  }
  .footer__col_md{
    min-width: auto;
  }
  .footer__col_sm{
    min-width: auto;
  }
  .post_width .post__footer li{
    padding-left: 20px;
  }
  .post_width .post__title-text{
    line-height: 1.2;
    height: 60px;
    font-size: 16px;
  }
  .post_width .icon{
    display: block;
  }
  .disclaimer{
    padding: 0 10%;
  }
  .post-preview__img_md img{
    width: 100%;
  }
  .post-preview__img:not(.post-preview__img_md, .post-preview__img_counter){
    display: none;
  }
  .wrap-list__caption{
    margin-bottom: 20px;
    font-size: 20px;
  }
  .wrap-list__in{
    padding-left: 0;
  }
  .breadcrumb{
    display: none;
  }
  .new-vacancy__item{
    width: 100%;
    padding: 0;
  }
  .new-vacancy__item:last-child{
    margin-bottom: 0;
  }
  .wrap-list__caption{
    margin-bottom: 20px;
    font-size: 20px;
  }
  .wrap-list__in{
    padding-left: 0;
  }
  .label_mod{
    height: auto;
    padding: 0;
    line-height: 1;
    background: none;
    color: #f5c300;
  }
  .news{
    padding: 37px 15px 49px;
  }
  .human-card_h .human-card__img{
    display: none;
  }
  .human-card_h .human-card__body{
    padding-left: 20px;
  }
  .partners{
    padding-bottom: 0;
  }
  .partners__title{
    font-size: 24px;
  }
  .content{
    padding-top: 33px;
  }
  .content h1{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .content table{
    margin: 35px 0;
  }
  .content table td:first-child{
    width: 118px;
  }
  .content-slider{
    margin: 35px 0;
  }
  .writer{
    margin-bottom: 30px;
  }
  .promo-wrap__title{
    font-size: 24px;
  }
  .promo{
    width: 300px;
  }
  .category-wrap{
    padding-top: 35px;
  }
  .popup__in{
    padding: 30px;
    height: 500px;
  }
  .popup__close{
    top: 10px;
    right: 10px;
  }
  .coverage-about{
    display: block;
  }
  .calendar .monthly-header-title a{
    font-size: 20px;
  }
  .calendar .monthly-day-wrap .monthly-week .m-d{
    height: 40px;
  }
  .main-slider__arr-left{
    left: -12px;
  }
  .main-slider__arr-right{
    right: -12px;
  }
  .btn_md{
    min-width: 100%;
  }
  .btn_gray{
    width: 100%;
  }
}

@media only screen and (max-width: 480px){
  .header__right{
    padding-right: 5px;
  }
  .header__weather, .header__lang, .header__search, .header__calendar{
    padding: 0 7px;
  }
  .program__table{
    display: block;
    border: none;
  }
  .program__header{
    display: none;
  }
  .program__header .cell{
    display: block;
  }
  .program__row{
    margin-bottom: 15px;
    border: solid 1px #e2e2e2;
    display: block;
  }
  .program__row .cell{
    padding: 5px;
    text-align: center;
    display: block;
    border: none;
  }
  .program__row .cell:last-child{
    text-align: center;
  }
  .program__row .cell_time-utc{
    display: none;
  }
  .main-slider__arr{
    margin-top: -100px;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    transition: none !important;
  }
}

/*# sourceMappingURL=app.css.map */
