<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin:0;
  font-family: 'Rubik', sans-serif;
  overflow-x: hidden;
  cursor: default;
  width: 100%;
  outline: none !important;
  background: #fff;
  color: #000;
}
a{
  text-decoration: none;
  -webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
a:active,
a:focus,
a:hover {
  outline: none !important;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
	position: absolute;
	content: "";
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
* {
    margin: 0;
	padding: 0;
}
button,
input,
textarea,
select {
  outline: none;
  font-family: 'Rubik', sans-serif;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
ol,ul {
  list-style: none;
  margin:0;
  padding:0;
}
.news-txt ol, .news-txt ul {
  list-style: none;
  list-style-type: disc;
  list-style-position: inside;
  position: relative;
  font-size: 16px;
  /*font-weight: 300;*/
  line-height: 1.6;
  margin: 10px 0 10px 6px;
}

p {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 10px 0;
}

input::-webkit-input-placeholder {
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
input::-moz-placeholder{
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
input:-moz-placeholder{
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
input:-ms-input-placeholder {
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
textarea::-webkit-input-placeholder {
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
textarea::-moz-placeholder{
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
textarea:-moz-placeholder{
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
textarea:-ms-input-placeholder {
	font-family: 'Rubik', sans-serif;
	color: #000 !important;
}
.container {
	position: relative;
    width: 100%;
    padding: 0 50px;
}



/* --------------------------------

header

-------------------------------- */
header {
	position: fixed;
	width: 100%;
	background: #fff;
	z-index: 9;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.shrink {
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}
.logo {
	position: relative;
	width: 140px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.logo img {
	width: 100%;
	display: block;
}
.nav-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.nav {
	display: flex;
	align-items: center;
	margin-right: 40px;
}
.nav li {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 20px 25px;
}
.nav li:last-child {
	padding: 20px 0 20px 20px;
}
.nav li a {
	color: #000;
}
.nav li a.active {
	color: #E31E24;
}
.nav li a:hover {
	color: #E31E24;
}
.search-btn {
	display: flex;
	align-items: center;
	margin-right: 20px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}
.search-img {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0;
}
.search-img:before {
	width: 60px;
	height: 60px;
	background: #E31E24;
	border-radius: 5px;
}
.search-img img {
	position: relative;
	width: 20px;
	height: 20px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.active .search-img img {
	transform: rotate(-20deg);
}
.search-container {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	background: #F3F5F5;
	padding: 0 50px;
	height: 80px;
	display: flex;
	align-items: center;
	transform: translateY(0%);
	-webkit-transition: 0.25s ease;
	-moz-transition: 0.25s ease;
	-o-transition: 0.25s ease;
	transition: 0.25s ease;
}
.search-container form {
	display: flex;
	align-items: center;
	width: 100%;
}
.search-container.open {
	transform: translateY(100%);
	box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
}
.close-search {
	position: absolute;
	right: 50px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E31E24;
}
.close-search img {
	width: 15px;
	height: 15px;
	-webkit-transition: 0.25s ease;
	-moz-transition: 0.25s ease;
	-o-transition: 0.25s ease;
	transition: 0.25s ease;
}
.close-search:hover img {
	transform: rotate(90deg);
}
#search {
	position: relative;
	width: 100%;
	background: #fff;
	border: 0;
	padding: 0 30px 0 30px;
	height: 60px;
	font-size: 18px;
}
.search-img2 {
	position: relative;
	height: 60px;
	width: 60px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid rgba(0,0,0,0.2);
}
.search-img2 img {
	height: 20px;
	width: 20px;
}
.burger {
	display: none;
}
.btn {
	position: relative;
	display: flex;
	height: 60px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 40px;
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid #E31E24;
	background: transparent;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
}
.btn-white {
	border: 1px solid #fff;
	color: #E31E24;
}
.btn-tr {
	border: 1px solid #fff;
	color: #fff;
	height: 50px;
	padding: 0 30px;
}
.btn:before {
	background: #E31E24;
	width: 100%;
	height: 50%;
	top: 0;
	left: 0;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.btn:after {
	background: #E31E24;
	width: 100%;
	height: 50%;
	bottom: 0;
	right: 0;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.btn-white:before, .btn-tr:before {
	background: #fff;
}
.btn-white:after, .btn-tr:after {
	background: #fff;
}
.btn span {
	position: relative;
	z-index: 1;
}
.btn:hover {
	color: #E31E24;
}
.btn-white:hover {
	color: #fff;
}
.btn-tr:hover {
	color: #000;
}
.btn:hover:before, .btn:hover:after {
	width: 0%;
}
.btn-tr:before {
	width: 0;
}
.btn-tr:after {
	width: 0;
}
.btn-tr:hover:before, .btn-tr:hover:after {
	width: 100%;
}
header .social {
	margin-right: 20px;
}

/* --------------------------------

intro

-------------------------------- */
#intro {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	color: #fff;
	background: #fff;
}
.intro-item {
	overflow: hidden;
}
.slider-img {
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.slick-slide img.img-mobile {
	display: none;
}
.intro-video {
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.mobile-video {
  display: none;
}
.slider-content {
	position: absolute;
	width: 50%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	left: 0;
	bottom: 0;
	z-index: 1;
	padding: 200px 0 50px 50px;
	justify-content: space-between;
}
.slider-content h2 {
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
}
.slider-content .time {
	position: relative;
	width: 340px;
}
.slider-content .time:before {
	background: #E31E24;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	bottom: 0px;
	left: 0px;
	transform: translateY(100%) translateX(-100%);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slick-active .time:before {
	transform: translateY(40%) translateX(-30%);
}
.slider-content .time h3 {
	position: relative;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.slider-content .time p {
	font-size: 50px;
	line-height: 1.4;
	font-weight: 500;
	text-transform: uppercase;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
.slider-content .time p span {
	font-size: 20px;
	font-weight: 400;
}

/* --------------------------------

slick

-------------------------------- */
.slick-slider, .slick-track {
    position: relative;
    display: block;
    margin: 0 auto;
	cursor: grab;
}
.slick-list {
    position: relative;
    display: block;
	width: 100%;
	overflow: hidden;
}
.slick-loading .slick-slide, .slick-loading .slick-track {
    visibility: hidden;
}
.slick-slider {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: 0;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list, .slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
	top: 0;
	left: 0;
	display: flex;
}
.slick-track:after, .slick-track:before {
    display: table;
    content: ''}
.slick-track:after {
    clear: both;
}
.slick-slide {
    display: none;
    display: inline-block;
    height: 100%;
    min-height: 1px;
}
[dir=rtl] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
    object-fit: cover;
	width: 100%;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
	position: relative;
	vertical-align: middle;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-initialized .slick-slide.slick-active {
    opacity: 1;
}
@charset 'UTF-8';
.slick-dots, .slick-next, .slick-prev {
    position: absolute;
    display: block;
    padding: 0;
	z-index: 1;
}
.slick-dots li button:before, .slick-next:before, .slick-prev:before {
    font-family: slick;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: transparent;
    outline: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slick-next img, .slick-prev img {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 12px;
	height: 12px;
	object-position: center center;
}
.slick-next:before, .slick-prev:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
    width: 40px;
    height: 40px;
	border: 1px solid #141520;
	border-radius: 50%;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
	transform: scale(1.15);
}
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    color: transparent;
    outline: 0;
    opacity: 1;
}
.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
    opacity: 1;
}
.slick-next.slick-disabled, .slick-prev.slick-disabled {
    opacity: 0;
	pointer-events: none;
}
.slick-prev {
	bottom: -55px;
	left: 0px;
}
.slick-next {
	bottom: -55px;
    right: 0px;
}
.slick-dots {
	bottom: 50px;
	list-style: none;
	text-align: center;
	display: flex;
	justify-content: flex-end;
	right: 50px;
}
.slick-dots li {
	position: relative;
	height: 20px;
	width: 20px;
	margin: 0 0 0 20px;
	cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    height: 20px;
	width: 20px;
	background: #fff;
    cursor: pointer;
    color: transparent;
    border: 0;
	border-radius: 50%;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slick-dots li.slick-active button {
	background: #E31E24;
	transform: scale(1.3);
}

/* --------------------------------

main-news

-------------------------------- */
#main-news {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0;
}
.title-group {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0;
}
.title {
	position: relative;
	font-size: 48px;
	font-weight: 300;
	padding-left: 30px;
	line-height: 1.2;
}
.title:before {
	background: #E31E24;
	width: 4px;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 4px;
}
.main-news-flex {
	display: flex;
	justify-content: space-between;
}
.main-news-img {
	position: relative;
	overflow: hidden;
	width: 50%;
}
.main-news-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-news-txt {
	position: relative;
	width: 50%;
	padding: 0 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.main-news-txt .btn {
	margin-top: 25px;
}
.news-date {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.news-date img {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}
.news-date span {
	font-size: 12px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.4);
}
.main-news-txt h3 {
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: 400;
}
.baner {
	position: relative;
	width: 100%;
	max-width: 270px;
}
.baner1 {
	background: #fff;
	display: flex;
	/*display: none;*/
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 8px;
}
.end-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.baner1-wrap {
	position: relative;
	border: 1px dashed rgba(0, 0, 0, 0.08);
	padding: 30px 15px;
}
.baner1-title {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.baner1-title:before {
	background: #01708E;
	width: 50%;
	height: 2px;
	bottom: 0;
	left: 0;
}
.baner1-title:after {
	background: #D40B53;
	width: 50%;
	height: 2px;
	bottom: 0;
	right: 0;
}
.baner1-title h2 {
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 400;
	color: #D40B53;
	margin-bottom: 15px;
	line-height: 1;
}
.baner1-title p {
	font-size: 16px;
	color: #01708E;
	line-height: 1.2;
}
.baner1-title img {
	position: absolute;
	width: 34px;
	height: 34px;
	top: 0;
	right: 0;
}
.baner1-footer {
	position: relative;
	padding-bottom: 100px;
}
.baner1-footer img {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto 20px auto;
}
.baner1-footer a {
	position: relative;
	display: block;
	font-size: 22px;
	line-height: 1;
	font-weight: 500;
	color: #01708E;
	margin-bottom: 20px;
	text-align: center;
}
.baner1-footer a:before {
	background: #01708E;
	width: 0;
	height: 1px;
	bottom: -6px;
	right: 0;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.baner1-footer a:hover:before {
	width: 100%;
}
.sub-title {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
}
.main-news-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 1% 0;
}
.news-grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.news-item {
	position: relative;
	width: 32.333%;
	overflow: hidden;
	margin: 1% 1% 0 0;
	color: #fff;
}
.news-item:first-of-type, .news-item:nth-of-type(2), .news-item:nth-of-type(3) {
	margin: 0 1% 0 0;
}
.news-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.news-item h3 {
	position: absolute;
	font-size: 18px;
	color: #fff;
	bottom: 20px;
	left: 0;
	padding: 0 30px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	font-weight: 400;
}
.news-item h3 span {
  display: block;
	font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin: 0 0 6px 0;
}
.news-item p {
	position: absolute;
	font-size: 16px;
	color: #fff;
	margin: 0;
	bottom: 20px;
	opacity: 0;
	transform: translateY(100%);
	padding: 0 30px 20px 30px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.news-item:before {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	/*height: 85px;*/
	height: 90px;
	bottom: 0;
	left: 0;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.news-item:hover p {
	opacity: 1;
	transform: translateY(0%);
}
.news-item:hover h3 {
	transform: translateY(-110px);
}
.news-item:hover:before {
	height: 100%;
}
.baner2 {
	background: radial-gradient(50% 50% at 50% 50%, #414550 0%, #2C2D32 100%);
	color: #fff;
}
.baner2 h2 {
	font-size: 28px;
	font-weight: 400;
	padding: 30px 15px 15px 15px;
}
.baner2 p {
	font-size: 24px;
	padding: 0 15px;
	margin: 0;
	line-height: 1;
}
.baner2 img {
	width: 100%;
	display: block;
}

/* --------------------------------

online

-------------------------------- */
#online {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0 0 40px 0;
	background: #F3F5F5;
}
.online-flex {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.online-video {
	position: relative;
	padding: 0 0 36.25% 0;
	height: 0;
	width: 50%;
	overflow: hidden;
}
.online-video iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.online-list {
	position: relative;
	width: 50%;
	padding-left: 100px;
}
.online-list-item {
	position: relative;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.19);
}
.online-list-item:first-of-type {
	padding: 0 0 15px 0;
}
.time-item {
	position: relative;
	margin: 0 0 10px 0;
	font-size: 36px;
	color: #686868;
	line-height: 1;
}
.name-item {
	font-size: 20px;
	margin: 0;
	font-weight: 500;
}
.online-list-item.active::before {
	content: "ÑÐµÐ¹Ñ‡Ð°Ñ Ð² ÑÑ„Ð¸Ñ€Ðµ";
	background: #E31E24;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: right;
	padding: 10px 12px 10px 35px;
	top: 0;
	right: 0;
	border-radius: 4px;
	line-height: 1;
}
.online-list-item.active::after {
	background: #fff;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	top: 10px;
	right: 125px;
}
.active .time-item {
	color: #E31E24
}
.active .time-item::before {
	background: url(../img/arrow-online.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	top: 10px;
	left: -45px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.online-list-item.active:hover .time-item::before {
	transform: translateX(-20px);
}

/* --------------------------------

main-program

-------------------------------- */
#main-program {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0;
	height: 100%;
	min-height: 1050px;
}
.program-grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5%;
	padding-bottom: 0.5%;
}
.program-item {
	position: relative;
	overflow: hidden;
	width: 32.333%;
	background: #E31E24;
	margin: 0.5%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.program-item:first-of-type {
	width: 100%;
}
.program-item img {
	position: relative;
	display: block;
	width: 100%;
	object-fit: cover;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	height: 100%;
}
.program-item .btn {
	position: absolute;
	transform: scale(0);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.program-item:hover img {
	opacity: 0.2;
	filter: grayscale(1);
}
.program-item:hover .btn {
	transform: scale(1);
}

/* --------------------------------

main-contact

-------------------------------- */
#main-contact {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0;
	background: url(../img/contact.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 70px 0;
}
.main-contact-grid {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.main-contact-txt {
	background: #fff;
	padding: 40px 100px;
	width: 59.5%;
}
.main-contact-form {
	background: #F3F5F5;
	width: 39.5%;
	padding: 40px 100px;
	display: none;
}
.main-contact-txt .title {
	margin-bottom: 40px;
}
.main-contact-txt h3 {
	font-size: 28px;
	font-weight: 300;
	margin-bottom: 20px;
	line-height: 1.4;
}
.title-form {
	font-size: 48px;
	font-weight: 300;
	margin-bottom: 30px;
}

/* --------------------------------

form

-------------------------------- */
.form-group {
	position: relative;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form-group:last-of-type {
	margin-bottom: 0px;
}
.thank {
    font-size: 28px;
    color: #000;
    font-weight: 700;
    padding: 30px;
    text-align: center;
}
label.error {
    display: block;
    position: absolute;
    right: 0;
    background: #212c7e;
    border: 0;
    color: #fff;
    padding: 6px 8px 6px 8px;
    text-align: center;
    font-size: 10px;
	line-height: 1;
    transition: all 0.25s linear;
}
label.error::before {
    background: #212c7e;
    width: 7px;
    height: 7px;
    left: -4px;
    top: 8px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
input[type="text"], input[type="email"], textarea {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	display: block;
	width: 100%;
	height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
input[type="text"]:hover, input[type="email"]:hover, textarea:hover {
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
textarea {
	padding-top: 10px;
	height: auto;
	resize: vertical;
}
.agreement {
	position: relative;
	margin-bottom: 30px;
}
.agreement input {
   position: absolute;
   display: block;
   width: 100%;
   height: 100%;
   cursor: pointer;
   opacity: 0;
}
.agreement label {
	text-align: left;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-left: 30px;
	display: table;
	font-size: 12px;
	color: #000;
}
.agreement label a {
	font-weight: 600;
	color: #E31E24;
}
.agreement input.checkbox ~ label:before {
	background: url(../img/check-default.svg) no-repeat center center;
	background-size: contain;
	width: 16px;
	height: 16px;
    -webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	top: -2px;
    left: 0;
}
.agreement input.checkbox:checked ~ label:before {
	background: url(../img/check-active.svg) no-repeat center center;
	background-size: contain;
}
#agreement-error:after {
	display: none;
}

/* --------------------------------

footer

-------------------------------- */
footer {
	position: relative;
	background: #161718;
	color: #fff;
}
.footer-top {
	position: relative;
	padding: 40px 0;
}
.footer-top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.social {
	position: relative;
	display: flex;
	align-items: center;
}
.social li {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.social li:last-child {
	margin-right: 0;
}
.social li a {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social li a:before {
	background: #E31E24;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.social li a img {
	position: relative;
	width: 15px;
	height: 15px;
}
.social li a:hover:before {
	transform: scale(1.15);
}
.footer-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.footer-list {
	position: relative;
	margin-right: 70px;
}
.footer-list li {
	position: relative;
	font-size: 18px;
	line-height: 1.6;
	margin: 10px 0;
	font-weight: 500;
}
.footer-list li a {
	color: #fff;
}
.footer-list li span {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.45);
}
.footer-bottom {
	position: relative;
	padding: 20px 0;
	background: #000;
}
.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.footer-link-item {
	display: flex;
	align-items: center;
}
.footer-link-item li {
	font-size: 14px;
	margin-left: 40px;
}
.footer-link-item li a {
	position: relative;
	color: #fff;
	font-weight: 300;
}
.footer-link-item li a:before {
	background: #E31E24;
	width: 0;
	height: 2px;
	bottom: -6px;
	right: 0;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.footer-link-item li a:hover:before {
	width: 60px;
}
.copy {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
}
.copy a {
	color: #fff
}

/* --------------------------------

modal-box

-------------------------------- */
.modal, .modal-box {
    z-index: 9999;
}
.modal-sandbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
}
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  overflow: auto;
}
.modal-box {
  display: table;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
/*.modal-body {
	display: flex;
	width: 100%;
	height: 100vh;
	vertical-align: middle;
	z-index: 9999;
	align-items: center;
	justify-content: center;
}*/
.modal-body {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    z-index: 9999;
}
.modal_container {
	background: #fff;
	color: #000;
	margin: 0 auto;
	width: 85%;
	height: auto;
	position: relative;
	display: flex;
	animation-name: modalbox;
	animation-duration: .3s;
	animation-timing-function: ease-out;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
	justify-content: space-between;
}
#modal-form .modal_container { 
    width: 95%;
}
.close-modal {
	position: absolute;
	top: 0;
	right: -40px;
	background: #E31E24;
	cursor: pointer;
	width: 40px;
	height: 40px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.close-modal:before {
	background: url(../img/close.svg) no-repeat center center;
	background-size: contain;
    width: 15px;
    height: 15px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.close-modal:hover:before {
    transform: rotate(-90deg);
}
@-webkit-keyframes modalbox {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes modalbox {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/*iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.modal-video {
	position: relative;
	width: 100%;
	display: block;
	height: 80vh;
}
#modal-video .modal_container {
	background: #000;
}*/




/* --------------------------------

modal-form

-------------------------------- */
.modal-flex {
	position: relative;
	display: flex;
	justify-content: space-between;
}
#modal-form .modal_container {
    width: 60%;
}
.modal-flex-txt {
	/*width: 40%;*/
	width: 100%;
	padding: 40px 70px;
}
.modal-flex-form {
	position: relative;
	background: #F3F5F5;
	width: 60%;
	padding: 40px 70px;
	display: none;
}
.modal-flex-txt .title {
	font-size: 36px;
	margin-bottom: 40px;
}
.modal-flex-txt h3 {
	font-size: 18px;
	margin-bottom: 15px;
}
.modal-flex-txt p span {
	font-weight: 700;
	color: #E31E24;
}
.form-item {
	position: relative;
	width: 49%;
	display: flex;
	align-items: center;
}
.group-item input {
	width: 100%;
}

/* --------------------------------

modal-contact

-------------------------------- */
.modal-contact-txt {
	position: relative;
	padding: 40px 70px;
	width: 100%;
	color: #000;
}
#modal-contact .modal_container {
	width: 40%;
}
.logo-modal {
	height: 100px;
	margin-bottom: 30px;
}
.phone-modal li {
	position: relative;
	font-size: 18px;
	line-height: 1.6;
	margin: 10px 0;
	font-weight: 500;
}
.phone-modal li a {
	color: #000;
}
.phone-modal li span {
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.45);
}
.phone-modal {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #969696;
}
.social-title {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
}
.modal-contact-txt .social {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #969696;
}
.modal-btn-group {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.whatsapp {
	position: relative;
	height: 60px;
	display: flex;
	align-items: center;
	background: #3EBD02;
	text-align: center;
	justify-content: center;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	border-radius: 5px;
	padding: 0 40px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.whatsapp img {
	position: relative;
	margin-right: 12px;
	width: 30px;
	height: 30px;
}
.whatsapp:hover {
	background: #00C78B;
}
.modal-contact-form {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	padding: 40px;
	visibility: hidden;
	transform: scale(0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.modal-contact-form.open {
	visibility: visible;
	transform: scale(1);
}
.modal-contact-form .title-form {
	font-size: 28px;
	margin-bottom: 20px;
}
.btn-back-modal {
	position: absolute;
	top: 15px;
	left: 40px;
	opacity: 0.5;
	display: flex;
	align-items: center;
	color: #000;
	font-size: 12px;
	font-weight: 500;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.btn-back-modal img {
	width: 12px;
	height: 12px;
	margin-right: 10px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.btn-back-modal:hover {
	opacity: 1;
}
.btn-back-modal:hover img {
	transform: translateX(-10px);
}

/* --------------------------------

news-intro

-------------------------------- */
#news-intro {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #F3F5F5;
}
.news-intro-flex {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 100vh;
	padding: 120px 0 40px 0;
}
.news-txt-bg {
	background: #fff;
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.news-txt .news-date {
	height: 5%;
	margin: 0 0 15px 0;
}
.news-txt {
	position: relative;
	width: 50%;
	padding: 0 50px;
}
.news-img {
	position: relative;
	width: 50%;
}
.main-news .news-txt {
	width: 40%;
}
.main-news .news-img {
	width: 60%;
}
.news-img img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.news-txt .title {
	font-size: 28px;
	margin-bottom: 40px;
}
.news-txt .scroll-block {
	height: 100%;
}
.news-footer-group {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0 0 0;
}
.btn-back-news {
	opacity: 0.5;
	display: flex;
	align-items: center;
	color: #000;
	font-size: 12px;
	font-weight: 500;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.btn-back-news img {
	width: 12px;
	height: 12px;
	margin-right: 10px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.btn-back-news:hover {
	opacity: 1;
}
.share {
	display: flex;
	align-items: center;
}
.share p {
	margin: 0;
	margin-right: 20px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(0,0,0,0.5);
}







/* --------------------------------

news-wrap

-------------------------------- */
#news-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #F3F5F5;
	padding: 0;
	padding: 120px 0 40px 0;
}
#news-wrap .news-grid {
	margin: 0 -0.5%;
	display: none;
}
#news-wrap .news-grid.active {
	margin: 0 -0.5%;
	display: flex;
}
.btn.load-more {
	width: 100%;
	max-width: 200px;
	margin: 40px auto;
}
#news-wrap .news-item {
	margin: 0.5%;
	width: 24%;
}
#news-wrap .news-item:first-of-type, #news-wrap .news-item:nth-of-type(2), #news-wrap .news-item:nth-of-type(3) {
	margin: 0.5%;
}
#news-wrap .news-item h3 {
	font-size: 16px;
}
#news-wrap .news-item p {
	font-size: 14px;
}
.pagination {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 40px 0;
}
.pagination-item {
	position: relative;
	width: 50px;
	height: 50px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	margin: 0 8px 0 0;
	color: #000;
	font-size: 14px;
	font-weight: 700;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.pagination-item:hover {
	background: #E31E24;
	color: #fff;
}
.next, .prev {
	position: absolute;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.next2 {
	position: absolute;
	opacity: 0;
	transform: translateX(50px);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.prev2 {
	position: absolute;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.pagination-item:hover .next2 {
	opacity: 1;
	transform: translateX(0px);
}
.pagination-item:hover .next {
	opacity: 0;
	transform: translateX(50px);
}
.pagination-item:hover .prev2 {
	opacity: 1;
	transform: translateX(0px);
}
.pagination-item:hover .prev {
	opacity: 0;
	transform: translateX(-50px);
}

/* --------------------------------

video-link

-------------------------------- */
.video-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	cursor: pointer;
}
.player-icon {
	position: absolute;
	width: 180px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.player-icon img {
    width: 100%;
	position: relative;
	display: block;
	z-index: 1;
	border-radius: 50%;
	-moz-transition: 0.35s linear;
    -o-transition: 0.35s linear;
    -webkit-transition: 0.35s linear;
    -ms-transition: 0.35s linear;
    transition: 0.35s linear;
}
.player-icon:before {
  width: 180px;
  height: 180px;
  border: 2px solid #E31E24;
  border-radius: 50%;
  will-change: transform;
    -webkit-animation: scale 2.5s linear;
    -moz-animation: scale 2.5s linear;
    animation: scale 2.5s linear;
	animation-iteration-count: infinite
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
	opacity: 0;
  }
}
@-webkit-keyframes scale {
   0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
	opacity: 0;
  }
}
/*.video-iframe {display: none;}*/

/****/
.player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
}
.player__video {
  position: relative;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 65%;
  transform: translate(-50%, -50%);
}
.js--show-video {
  opacity: 1;
}
.video-filler {
  display: block;
  width: 100%;
}
.video-close {
    position: absolute;
    z-index: 0;
    top: -60px;
    right: -60px;
	width: 50px;
    height: 50px;
	line-height: 44px;
    padding: 0 0 18px 0px;
    border: none;
    outline: none;
    border-radius: 0 50% 50% 0;
    cursor: pointer;
    font-size: 48px;
    color: #fff;
    background: transparent;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.video-iframe {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pop_up_video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  text-align: center;
  z-index: 9999999999999;
}
.pop_up_video &gt; div {
  display: table;
  width: 100%;
  height: 100%;
}
.pop_up_video &gt; div &gt; div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.YouTubePopUp-Wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	background-color: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	z-index: 9999999999999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.YouTubePopUp-animation{
    opacity: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUp;
    animation-name: YouTubePopUp;
}
@-webkit-keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

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

    100% {
        opacity: 1;
    }
}
body.logged-in .YouTubePopUp-Wrap{ /* For WordPress */
    top:32px;
    z-index:99998;
}
.YouTubePopUp-Content {
	max-width: 1200px;
	display: block;
	margin: 0 auto;
	position: relative;
	height: 80%;
	width: 100%;
}
.YouTubePopUp-Content iframe {
	max-width: 100% !important;
	width: 100% !important;
	display: block !important;
	border: none !important;
	position: absolute;
	margin: auto 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.YouTubePopUp-Hide{
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUpHide;
    animation-name: YouTubePopUpHide;
}
@-webkit-keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.YouTubePopUp-Close{
    position: absolute;
    top: 0px;
	right: -30px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background:url(../img/close.svg) no-repeat;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.YouTubePopUp-Close:hover{
    opacity: 0.75;
}

/****/




















/* --------------------------------

news-region-wrap

-------------------------------- */
#news-region-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #F3F5F5;
}
.news-region-flex {
	display: flex;
	justify-content: space-between;
	padding-right: 50px;
	align-items: flex-start;
}
.news-region-item {
	position: relative;
	width: 100%;
	padding-right: 1%;
	padding-bottom: 40px;
}
.news-search {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news-region-item.baner-news {
	width: 100%;
	padding: 0;
	max-width: 270px;
	display: none;
}
.baner-news .baner1 {
	margin-bottom: 5%;
}
.news-search .date {
	width: 40%;
}
.news-search {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 30px 50px;
}
.news-search input[type="text"] {
	height: 60px;
	background: #F3F5F5;
	border-bottom: none;
	padding: 0 30px;
	border-radius: 5px;
}
.news-search .search-group {
	width: 100%;
	margin: 0 1%;
}
.news-region-grid {
	position: relative;
	display: none;
	flex-wrap: wrap;
	padding-left: calc(50px - 1%);
}
.news-region-grid.active {
	display: flex;
}
/*.video-item {
	width: 32.333%;
	margin: 1% 0 0 1%;
	overflow: hidden;
	background: #E31E24;
	position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}*/
.video-item {
	width: 32.333%;
	margin: 1% 0 0 1%;
	overflow: hidden;
	background: #E31E24;
}
.video-item:after {
	content: "ÐŸÐ¾Ð´Ñ€Ð¾Ð±Ð½ÐµÐµ";
	font-size: 12px;
	font-weight: 600;
	color: #e31e24;
	background: #fff;
	padding: 10px 15px;
	text-align: center;
	border-radius: 5px;
	bottom: 15px;
    opacity: 0;
    transform: translateY(100%);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.video-item:hover:after {
    opacity: 1;
    transform: translateY(0%);
}
.video-item .player-icon {
	transform: scale(0);
}
.video-item:hover .player-icon {
	transform: scale(1);
}
.video-item .player-icon::before {
	border: 2px solid #fff;
}
.news-bg {
	width: 100%;
	display: block;
	object-fit: cover;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.video-item:hover .news-bg {
	opacity: 0.2;
	filter: grayscale(1);
}
.video-item .player-icon, .video-item .player-icon::before {
	width: 70px;
	height: 70px;
}
.video-time {
	position: absolute;
	font-size: 18px;
	text-align: center;
	color: #fff;
	top: 0;
	padding: 20px 30px;
	width: 100%;
	transform: translateY(-100%);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.video-item:hover .video-time {
	transform: translateY(0%);
}
.topic .video-link {
	height: auto;
	background: #e31e24;
}
.topic .video-item {
	background: #fff;
}
.topic-detail {
  position: absolute;
	font-size: 12px;
	font-weight: 600;
	color: #e31e24;
	background: #fff;
	padding: 10px 15px;
	text-align: center;
	border-radius: 5px;
	bottom: 15px;
  opacity: 0;
  will-change: transform;
  transform: translateY(100%);
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.video-item:hover .topic-detail {
    opacity: 1;
    transform: translateY(0);
}
.news-item-txt {
  position: absolute;
  font-size: 18px;
  text-align: center;
  color: #fff;
  padding: 20px 30px;
  width: 100%;
  will-change: transform;
  transform: scale(0);
  -webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	-o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
	transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.video-item:hover .news-item-txt {
  transform: scale(1);
}



/* --------------------------------

program-intro

-------------------------------- */
#program-intro {
	position: relative;
	padding: 80px 0 0 0;
	overflow: hidden;
}
.program-first-grid {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.program-first-grid .program-item img {
	height: 100%;
}
.program-first-grid .program-item {
	margin: 0;
}
.program-second-grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5%;
	padding: 0.5% 0;
}
.program-second-grid .program-item:first-of-type {
	width: 32.333%
}

/* --------------------------------

program-detail

-------------------------------- */
#program-detail {
	position: relative;
	padding: 80px 0 0 0;
	overflow: hidden;
	background: #F3F5F5;
}
.program-bg {
	width: 100%;
	display: block;
}
.program-detail-flex {
	position: relative;
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
}
.program-detail-txt {
	position: relative;
	width: 65%;
	padding-right: 70px;
}
.program-avtor {
	position: relative;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 35%;
	padding: 0 40px;
	margin-right: 1%;
}
.program-avtor h3 {
	font-size: 24px;
}
.program-avtor img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin-bottom: 20px;
}
#program-detail .title {
	margin-bottom: 40px;
}
.schedule-list {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 0;
}
.schedule-item {
	position: relative;
	width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 14px;
	font-weight: 600;
}
.schedule-item.active {
	background: #E31E24;
	color: #fff;
}
.program-detail-txt h3 {
	font-size: 32px;
	font-weight: 400;
	margin-top: 30px;
}
.schedule-time {
	font-size: 20px;
}
.schedule-time span {
	font-weight: 600;
}

/* --------------------------------

program-galery

-------------------------------- */
#program-galery {
	position: relative;
	padding: 40px 0;
	overflow: hidden;
	background: #fff;
}
.program-slider {
	padding: 0 70px;
}
.slider-item {
	margin: 0 10px;
}
.program-slider .slick-prev {
	bottom: 45%;
}
.program-slider .slick-next {
	bottom: 45%;
}
.slider-item a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #E31E24;
}
.slider-item a:before {
	background: url(../img/plus.svg) no-repeat center center;
	background-size: contain;
	width: 70px;
	height: 70px;
	transform: scale(0);
	z-index: 1;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slider-item img {
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.slider-item:hover img {
	opacity: 0.2 !important;
	filter: grayscale(1);
}
.slider-item:hover a:before {
	transform: scale(1);
}

/* --------------------------------

release

-------------------------------- */
#release {
	position: relative;
	background: #F3F5F5;
	padding: 40px 0;
	overflow: hidden;
}
#release .title {
	margin-bottom: 40px;
}
.release-grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1%;
}

/* --------------------------------

face

-------------------------------- */
#face {
	position: relative;
	padding: 120px 0 40px 0;
	background: #F3F5F5;
	overflow: hidden;
}
.face-flex {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.face-grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5%;
	padding-left: 70px;
}
.face-item {
	position: relative;
	width: 19%;
	margin: 0 0.5% 0.5% 0.5%;
	text-align: center;
	cursor: pointer;
}
.face-img {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #e31e24;
	display: flex;
	justify-content: center;
}
.face-img img {
	width: 100%;
	display: block;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.face-img .btn-detail {
	position: absolute;
	bottom: 20px;
	transform: translateY(100%);
	opacity: 0;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.face-item:hover img {
	opacity: 0.2;
	filter: grayscale(1);
}
.face-item:hover .btn-detail {
	transform: translateY(0%);
	opacity: 1;
}
.append-face {
	display: none;
}
#modal-face .modal_container {
	width: 70%;
}
.container-face {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.modal-face-img {
	width: 50%;
	height: 50vh;
}
.modal-face-img img {
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
}
.face-info {
	width: 50%;
	height: 50vh;
	padding: 40px 70px;
	display: flex;
	flex-direction: column;
}
.face-info .title {
	position: relative;
	font-size: 36px;
	font-weight: 300;
	padding-left: 30px;
	line-height: 1.2;
	margin-bottom: 30px;
}
.face-info p {
	font-size: 16px;
}
.face-info a {
	font-size: 16px;
	line-height: 1.6;
	padding: 10px 0;
	font-weight: 500;
	color: #e31e24;
	display: block;
}
.face-detail {
	position: relative;
	padding: 10px 0 0 0;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.face-detail p {
	font-weight: 500;
}
.face-info .social {
	padding-top: 15px;
}





/* --------------------------------

about

-------------------------------- */
#about {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #F3F5F5;
}
.about-flex {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 100vh;
	padding: 120px 0 40px 0;
}
.about-txt-bg {
	background: #fff;
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.about-txt {
	position: relative;
	width: 40%;
	padding: 0 50px;
}
.about-img {
	position: relative;
	width: 60%;
}
.about-img img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.about-txt .title {
	font-size: 48px;
	margin-bottom: 40px;
}
.about-txt .scroll-block {
	height: 95%;
}

/* --------------------------------

partner

-------------------------------- */
#partner {
	position: relative;
	overflow: hidden;
	padding: 40px 0;
	background: #F3F5F5;
}
#partner .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.partner-grid {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 0 -1%;
	padding-left: 70px;
}
.partner-item {
	position: relative;
	margin: 0 1%;
}
.partner-item img {
	width: 100%;
	/*filter: grayscale(1);*/
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.partner-item:hover img {
	/*filter: grayscale(0);*/
}

/* --------------------------------

teleprogram

-------------------------------- */
#teleprogram {
	position: relative;
	overflow: hidden;
	padding: 80px 0 40px 0;
	background: #F3F5F5;
}
.tele-search {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 60%;
}
.tele-search input[type="text"] {
	height: 60px;
	width: 100%;
	background: #fff;
	border-bottom: none;
	padding: 0 30px;
	border-radius: 5px;
	margin-right: 1%;
}
.teleprogram-flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.tabs {
	position: relative;
	width: 30%;
	padding-right: 70px;
	display: flex;
	flex-wrap: wrap;
}
.tabs li {
	width: 48%;
	margin: 1%;
}
.tabs li {
	display: block;
}
.tabs li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	text-align: center;
	padding: 25px;
	font-size: 14px;
	line-height: 1.6;
	color: #000;
	cursor: pointer;
	height: 100%;
}
.tabs li a span {
	font-weight: 600;
}
.tabs li a:hover {
	background: #E8E8E8;
}
.tabs li a.active {
	background: #E31E24;
	color: #fff;
}
.tabgroup {
	position: relative;
	width: 70%;
	background: #fff;
	padding: 40px 70px;
}
.tab-item {
	display: none;
}
.tab-item.opentab {
	display: block;
}
.tab-item h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 30px;
}
.tele-list li {
	position: relative;
	display: block;
	padding: 8px 30px;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 300;
}
.tele-list li:nth-child(odd) {
	background: #F3F5F5;
}
.tele-list li span {
	font-size: 14px;
	font-weight: 600;
	margin-right: 20px;
}

/* --------------------------------

contact

-------------------------------- */
#contact {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
#contact-map {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	height: 100vh;
	justify-content: center;
	align-items: flex-end;
}

/* -------------------------------- 

map

-------------------------------- */
#map {
    position: relative;
    background: #fff;
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
}
.btn-map {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #161718;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
}
.btn-map:before {
    width: 0;
    height: 100%;
    background: #e31e24;
    top: 0;
    left: 0;
    border-radius: 5px;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}
.btn-map:hover:before {
    width: 100%;
}
.btn-map span {
    position: relative;
}


.contact-block {
	position: absolute;
	width: 70%;
	padding-bottom: 50px;
}
.contact-list {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.contact-info-list {
	position: relative;
	background: #fff;
	padding: 40px 70px;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
}
.contact-info-list h1 {
	font-size: 48px;
	margin-bottom: 35px;
}
.contact-list li a {
	color: #000;
}
.contact-list li a:hover {
	color: #E31E24;
}
.contact-list li {
	font-size: 20px;
	line-height: 1.6;
	margin: 8px 0;
}
.contact-list li span {
	font-size: 16px;
	color: rgba(0, 0, 0, 0.5);
	margin-right: 15px;
}

/* --------------------------------

search-page

-------------------------------- */
#search-page {
	position: relative;
	overflow: hidden;
	padding: 80px 0 40px 0;
	background: #F3F5F5;
}
.search-form {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: 60%;
}
.search-list {
	position: relative;
	background: #fff;
	padding: 70px;
	min-height: 600px;
}
.search-item {
	position: relative;
	padding: 10px 0;
	border-bottom: 1px dashed rgba(0,0,0,0.2);
}
.search-item p {
	margin: 0;
	font-size: 14px;
}
.search-item .link {
	margin-bottom: 15px;
	display: block;
}
.search-item .link a {
	color: #e31e24;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 300;
}
.search-item .link span {
	font-weight: 600;
	margin-right: 30px;
}

/* --------------------------------

best

-------------------------------- */
#best {
	position: relative;
	overflow: hidden;
	background: #F3F5F5;
	padding: 0 0 70px 0;
}
.best-item {
	position: relative;
	overflow: hidden;
	background: #e31e24;
	margin: 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}
.best-item span {
	position: absolute;
	opacity: 0;
	transform: translateY(100%);
	padding: 0 30px;
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.best-item img {
	-webkit-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -moz-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    -o-transition: 0.25s cubic-bezier(.56,.35,.36,.89);
    transition: 0.25s cubic-bezier(.56,.35,.36,.89);
}
.best-item:hover span {
	opacity: 1;
	transform: translateY(0%);
}
.best-item:hover img {
	opacity: 0.25;
	filter: grayscale(1);
}
.best-slider .slick-next {
	bottom: auto;
	top: -85px;
	right: 0px;
}
.best-slider .slick-prev {
	bottom: auto;
	top: -85px;
	right: 90px;
	left: auto;
}




















































/* --------------------------------

Ð°Ð´Ð°Ð¿Ñ‚Ð¸Ð²

-------------------------------- */
@media (max-width: 1600px) {
.container {
	padding: 0 30px;
}
.nav li {
	padding: 20px;
}
.slider-content {
	padding: 140px 0 50px 30px;
}
.slider-content h2 {
	font-size: 60px;
}
.slick-dots {
	right: 30px;
}
.title, .title-form {
	font-size: 42px;
}
.name-item {
	font-size: 18px;
}
.main-contact-txt, .main-contact-form {
	padding: 40px 70px;
}
.main-contact-txt h3 {
	font-size: 24px;
}
.about-txt {
	padding: 0 30px;
}
.contact-info-list {
	padding: 30px 50px;
}
.contact-info-list h1 {
	font-size: 36px;
	margin-bottom: 25px;
}
.contact-list li {
	font-size: 18px;
}
.contact-block {
	padding-bottom: 30px;
}
#contact #cd-zoom-in, #contact #cd-zoom-out {
	margin-right: 30px;
}
.news-txt {
	padding: 0 30px;
}
.player-icon::before, .player-icon {
	width: 120px;
	height: 120px;
}
.news-region-grid {
	padding-left: calc(30px - 1%);
}
.news-search {
	padding: 30px;
}
.news-region-flex {
	padding-right: 30px;
}
.face-info {
	padding: 40px;
}
.face-info .title {
	font-size: 36px;
}
.modal-contact-txt {
	padding: 40px;
}
#modal-contact .modal_container {
	width: 50%;
}
.modal-flex-txt {
	padding: 40px;
}
.modal-face-img, .face-info {
	height: 70vh;
}
.search-list {
	padding: 40px 70px;
}
.YouTubePopUp-Content {
	max-width: 1000px;
}
#modal-video .modal_container {
	width: 60%;
}
.nav {
	margin-right: 40px;
}
.search-btn {
	margin-right: 20px;
}
.nav li:last-child {
	padding: 20px 0 20px 15px;
}l
.nav li {
	padding: 20px 15px;
}





}

@media (max-width: 1400px) {
.nav {
	margin-right: 40px;
}
.slider-content .time::before {
	width: 400px;
	height: 400px;
}
.baner {
	max-width: 220px;
}
.baner1-title h2 {
	font-size: 28px;
}
.baner1-footer a {
	font-size: 18px;
}
.sub-title {
	font-size: 16px;
}
p {
	font-size: 16px;
}
.main-news-txt {
	padding: 0 40px;
}
.news-item h3 {
	font-size: 16px;
	padding: 0 20px;
}
.news-item p {
	font-size: 14px;
	bottom: 20px;
	padding: 0 20px 20px 20px;
}
.baner2 h2 {
	font-size: 24px;
}
.baner2 p {
	font-size: 20px;
}
.time-item {
	font-size: 32px;
}
.btn {
	height: 50px;
	font-size: 10px;
}
.search-img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
}
.search-img::before {
	width: 50px;
	height: 50px;
}
.search-container {
	height: 74px;
}
.search-container {
	padding: 0 30px;
}
.close-search {
	right: 30px;
}
#search {
	height: 50px;
	font-size: 16px;
}
.close-search {
	width: 50px;
	height: 50px;
}
.search-img2 {
	height: 50px;
	width: 50px;
}
.search-img img {
	width: 15px;
	height: 15px;
}
.search-img2 img {
	height: 15px;
	width: 15px;
}
.slider-content h2 {
	font-size: 42px;
}
.slider-content .time h3 {
	font-size: 26px;
}
.slider-content .time p {
	font-size: 30px;
}
.slider-content .time p span {
	font-size: 18px;
}
.slider-content .time {
	width: 280px;
}
.search-btn {
	margin-right: 20px;
	font-size: 12px;
}
.footer-list {
	margin-right: 40px;
}
.copy {
	font-size: 12px;
}
.footer-list li {
	font-size: 16px;
}
.slick-dots li, .slick-dots li button {
	height: 15px;
	width: 15px;
}
.logo {
	width: 120px;
}
.about-txt .title {
	font-size: 36px;
	margin-bottom: 20px;
}
.contact-list li span {
	font-size: 14px;
}
.face-item {
	width: 24%;
}
#news-wrap .news-item {
	width: 32.333%;
}
.news-region-item.baner-news {
	max-width: 220px;
}
.news-search input[type="text"] {
	height: 50px;
}
.tabgroup {
	padding: 40px;
}
.whatsapp {
	height: 50px;
}
.logo-modal {
	height: 80px;
}
.modal-flex-txt .title {
	font-size: 32px;
}
.modal-flex-form {
	padding: 40px;
}
.search-list {
	padding: 40px;
}
#search-page .title {
	font-size: 36px;
}
.share p {
	margin-right: 15px;
	font-size: 12px;
}
.news-txt .title {
	font-size: 24px;
}
.nav li {
	font-size: 10px;
	padding: 15px;
}
#news-wrap {
	padding: 100px 0 40px 0;
}








}

@media (max-width: 1200px) {
.burger {
	position: relative;
	width: 35px;
	height: 18px;
	cursor: pointer;
	display: block;
	z-index: 999;
	-moz-transition: 0.25s linear;
	-o-transition: 0.25s linear;
	-webkit-transition: 0.25s linear;
	-ms-transition: 0.25s linear;
	transition: 0.25s linear;
	margin-left: 30px;
}
.burger::before, .burger span, .burger::after {
	width: 100%;
	height: 2px;
	display: block;
	background: #006bb4;
	border-radius: 2px;
	position: absolute;
	opacity: 1;
}
.burger:before, .burger:after {
    transition: .15s linear;
	-webkit-transition: .15s linear;
	content: "";
}
.burger::before {
    top: 0px;
}
.burger span {
	top: 9px;
	width: 100%;
	-moz-transition: 0.25s linear;
	-o-transition: 0.25s linear;
	-webkit-transition: 0.25s linear;
	-ms-transition: 0.25s linear;
	transition: 0.25s linear;
}
.burger:after {
	top: 18px;
	width: 100%;
	-moz-transition: 0.25s linear;
	-o-transition: 0.25s linear;
	-webkit-transition: 0.25s linear;
	-ms-transition: 0.25s linear;
	transition: 0.25s linear;
}
/* Hover */
.burger:hover span {
	width: 100%;
}
.burger:hover:after {
	width: 100%;
}
/* Click */
.burger.cross span {
	opacity: 0;
}
.burger.cross:before, .burger.cross:after {
	top: 50%;
	width: 100%;
}
.burger.cross:before {
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5); /*for IE*/
}
.burger.cross:after {
	-webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5); /*for IE*/
}
.burger:focus {
	outline: none;
}
.nav {
	margin-right: 0;
	position: fixed;
	width: 30%;
	height: 100%;
	z-index: 99;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	background: #f3f5f5;
	transform: translateX(-100%);
	visibility: hidden;
	-moz-transition: 0.25s linear;
	-o-transition: 0.25s linear;
	-webkit-transition: 0.25s linear;
	-ms-transition: 0.25s linear;
	transition: 0.25s linear;
}
.nav.show {
	transform: translateX(0%);
	visibility: visible;
	box-shadow: 4px 0 6px rgba(0,0,0,0.2);
}
.nav li {
	margin: 0;
	padding: 0;
	text-align: center;
}
.nav li a {
	font-size: 16px;
	padding: 15px;
	border: 0;
	display: block;
}
.nav li:last-child {
	padding: 0;
}
.search-container {
	height: 70px;
}
.main-news-flex {
	flex-wrap: wrap;
}
.main-news-img {
	width: 100%;
	margin-bottom: 1%;
}
.main-news-txt {
	width: 70%;
	padding: 0;
}
.main-news-wrap {
	flex-wrap: wrap;
	padding: 0;
}
.news-grid {
	margin: 1% -1%;
}
.news-item {
	width: 48%;
	margin: 1%;
}
.news-item:first-of-type, .news-item:nth-of-type(2), .news-item:nth-of-type(3) {
	margin: 1%;
}
.baner2 {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.baner2 img {
	width: 25%;
}
.baner2 p {
	font-size: 24px;
	margin-bottom: 20px;
}
.baner2 p br {
	display: none;
}
.baner2 h2 {
	font-size: 36px;
}
.online-list {
	padding-left: 70px;
}
.online-list-item {
	padding: 10px 0;
}
.time-item {
	font-size: 28px;
	margin: 0;
}
.name-item {
	font-size: 16px;
}
.active .time-item::before {
	width: 15px;
	height: 15px;
	top: 8px;
	left: -35px;
}
.online-list-item.active::before {
	font-size: 12px;
}
.online-list-item.active::after {
	width: 10px;
	height: 10px;
	top: 12px;
	right: 115px;
}
.online-video {
	padding: 0 0 27.25% 0
}
.program-item {
	width: 48%;
	margin: 1%;
}
.program-grid {
	margin: 0 -1%;
	padding-bottom: 1%;
}
.main-contact-txt, .main-contact-form {
	padding: 40px;
}
.title, .title-form {
	font-size: 36px;
}
.form-group {
	margin-bottom: 20px;
}
.footer-top .container {
	justify-content: center;
	flex-wrap: wrap;
}
.footer-contact {
	padding-top: 20px;
	width: 100%;
	justify-content: space-between;
}
.footer-bottom .container {
	justify-content: center;
	flex-wrap: wrap;
}
.footer-link {
	justify-content: space-between;
	width: 100%;
	padding-top: 20px;
}
.news-item p {
	font-size: 16px;
}
.news-item h3 {
	font-size: 18px;
}
.about-flex {
	padding: 110px 0 40px 0;
}
#about, .about-flex {
	height: auto;
}
.about-flex {
	flex-wrap: wrap;
}
.about-txt {
	width: 100%;
}
.about-img {
	width: 100%;
	padding: 30px 30px 0 30px;
}
.about-txt .scroll-block {
	height: auto;
}
.about-flex {
	padding: 110px 0 0 0;
}
.partner-item img {
	filter: grayscale(0);
}
.contact-block {
	width: 100%;
	padding: 0px 30px 30px 30px;
}
.face-item {
	width: 32.333%;
}
.face-flex {
	flex-wrap: wrap;
}
.face-grid {
	padding-left: 0;
	padding-top: 40px;
}
.face-img .btn-detail {
	display: none;
}
.news-item::before {
	height: 95px;
}
.news-intro-flex {
	height: auto;
	padding: 100px 0 40px 0;
	flex-wrap: wrap;
}
#news-intro {
	height: auto;
}
.news-txt {
	width: 100%;
}
.news-img {
	width: 100%;
	padding: 30px 30px 0px 30px
}
#news-wrap .news-item {
	width: 49%;
}
.video-item {
	width: 49%;
}
.video-item .news-bg {
	opacity: 0.2;
	filter: grayscale(1);
}
.video-item .player-icon {
	transform: scale(1);
}
.video-item .video-time {
	transform: translateY(0%);
}
.news-region-item .baner2 img {
	width: 85%;
}
.news-region-item .baner2 h2 {
	font-size: 28px;
}
.program-second-grid .program-item:first-of-type {
	width: 48%;
}
.program-second-grid {
	margin: 0 -1%;
}
.program-detail-txt {
	width: 45%;
	padding-right: 40px;
}
.program-avtor img {
	width: 160px;
	height: 160px;
}
.schedule-item {
	width: 50px;
	height: 50px;
}
#modal-face .modal_container {
	width: 85%;
}
.tele-search input[type="text"] {
	height: 50px;
}
.tabs {
	padding-right: 30px;
	width: 35%;
}
.tabs li a {
	padding: 15px;
}
.tabgroup {
	width: 65%;
}
#modal-contact .modal_container {
	width: 65%;
}
.main-news .news-txt {
	width: 100%;
}
.main-news .news-img {
	width: 100%;
}
.search-form {
	width: 50%;
}
.YouTubePopUp-Close {
	top: -30px;
	right: 15px;
}
#modal-video .modal_container {
	width: 80%;
}
.modal-video {
	height: 70vh;
}
.topic-detail {
	opacity: 1;
	transform: translateY(0);
}
.social {
	margin-right: 20px;
}





}

@media (max-width: 991px) {
.slider-content {
	width: 80%;
}
.main-news-txt {
	width: 100%;
	padding: 40px 0;
}
.baner {
	max-width: 100%;
}
.baner1-title h2 {
	font-size: 36px;
}
.baner1-title h2 br {
	display: none;
}
.baner1-title img {
	width: 80px;
	height: 80px;
}
.baner1-title p {
	font-size: 18px;
}
.baner1-footer {
	padding-bottom: 300px;
}
.sub-title {
	font-size: 18px;
	text-align: center;
}
.sub-title br {
	display: none;
}
.baner1-footer a {
	font-size: 28px;
}
.online-flex {
	flex-direction: column;
}
.online-video {
	padding: 0 0 57.25% 0;
	width: 100%;
}
.online-list {
	width: 100%;
	padding-left: 0px;
	padding-top: 40px;
}
.active .time-item::before {
	display: none;
}
#main-contact {
	padding: 40px 0;
}
.main-contact-grid {
	flex-direction: column;
}
.main-contact-txt {
	width: 100%;
	margin-bottom: 2%;
}
.main-contact-form {
	width: 100%;
}
.footer-contact {
	flex-direction: column;
}
.footer-list {
	margin-right: 0;
	margin-bottom: 10px;
}
.footer-link {
	flex-direction: column;
}
.footer-link-item {
	padding-top: 20px;
}
.nav {
	width: 40%;
}
.footer-link-item li {
	margin-left: 0;
	padding: 0 30px;
}
.about-flex {
	padding: 90px 0 0 0;
}
#partner .container {
	flex-direction: column;
}
.partner-grid {
	padding-left: 0;
	padding-top: 40px;
}
.contact-info-list {
	padding: 30px;
}
.contact-list {
	flex-wrap: wrap;
}
#face {
	padding: 100px 0 40px 0;
}
.news-region-flex {
	flex-wrap: wrap;
}
.news-region-item.baner-news {
	max-width: 100%;
}
.news-region-item.baner-news {
	max-width: 100%;
	padding-left: 30px;
	padding-top: 0;
	padding-bottom: 30px;
}
.news-region-item {
	padding-right: 0;
	padding-bottom: 0;
}
.news-region-item .baner2 img {
	width: 35%;
}
.program-first-grid {
	flex-wrap: wrap;
}
.program-first-grid .program-item {
	margin-right: 0;
}
.program-detail-flex {
	flex-wrap: wrap;
}
.program-detail-txt {
	width: 100%;
	padding-right: 0;
	padding-bottom: 30px;
}
.program-avtor {
	width: 100%;
	padding: 40px;
	margin: 0 0 30px 0;
}
.face-info .title {
	font-size: 28px;
}
.container-face {
	flex-direction: column;
}
.modal-face-img {
	width: 100%;
}
.face-info {
	width: 100%;
	justify-content: center;
}
.title-group {
	flex-wrap: wrap;
}
.tele-search {
	width: 100%;
	margin-top: 30px;
}
.teleprogram-flex {
	flex-wrap: wrap;
}
.tabs {
	padding-right: 0;
	width: auto;
	margin: 0 -1% 30px -1%;
}
.tabgroup {
	width: 100%;
}
.title-group {
	padding: 20px 0;
}
.tabgroup {
	padding: 40px 15px;
}
#modal-contact .modal_container {
	width: 85%;
}
.modal-flex {
	flex-direction: column;
}
.modal-flex-txt {
	width: 100%;
}
.modal-flex-form {
	width: 100%;
}
.modal-face-img, .face-info {
	height: 45vh;
}
.search-form {
	width: 100%;
	padding-top: 20px;
}
.YouTubePopUp-Content {
	height: 60%;
}
.best-slider .slick-next, .best-slider .slick-prev {
	top: -60px;
}
.modal-video {
	height: 45vh;
}









}

@media (max-width: 767px) {
.container {
	padding: 0 15px;
}
.logo {
	width: 80px;
}
.header-flex {
	padding: 5px 0;
}
.search-img, .search-img::before {
	width: 40px;
	height: 40px;
}
.search-btn {
	font-size: 0;
}
.btn {
	height: 40px;
	font-size: 10px;
	padding: 0 30px;
}
.search-container {
	height: 50px;
}
#search {
	height: 40px;
	font-size: 14px;
}
.close-search {
	width: 40px;
	height: 40px;
}
.close-search img {
	width: 10px;
	height: 10px;
}
.search-img2 {
	height: 40px;
	width: 40px;
}
.search-container {
	padding: 0 15px;
}
.slick-dots {
	right: 15px;
	bottom: 20px;
}
.slider-content {
	padding: 0 0 30px 15px;
	justify-content: flex-end;
}
.slider-content h2 {
	font-size: 32px;
}
.slider-content .time::before {
	width: 250px;
	height: 250px;
}
.slider-content .time {
	padding-top: 45px;
}
.slider-content .time h3 {
	font-size: 20px;
	margin-bottom: 20px;
}
.slider-content .time p {
	font-size: 24px;
}
.slider-content .time p span {
	font-size: 14px;
}
.slick-active .time::before {
	transform: translateY(50%) translateX(-30%);
}
.main-news-txt h3 {
	font-size: 24px;
	margin-bottom: 10px;
}
.main-news-txt {
	padding: 20px 0;
}
.baner1-footer {
	padding-bottom: 260px;
}
.news-grid {
	margin: 0;
}
.news-item {
	width: 100%;
	margin: 1% 0;
}
.news-item:first-of-type, .news-item:nth-of-type(2), .news-item:nth-of-type(3) {
	margin: 1% 0;
}
.main-contact-txt .title {
	margin-bottom: 20px;
}
.main-contact-txt h3 {
	font-size: 20px;
}
.main-contact-txt, .main-contact-form {
	padding: 40px 20px;
}
.nav {
	width: 60%;
}
.nav li a {
	font-size: 14px;
	padding: 10px;
}
.about-txt {
	padding: 0 15px;
}
.about-txt-bg {
	padding: 0;
}
.about-img {
	padding: 30px 15px 0 15px;
}
.about-flex {
	padding: 70px 0 0 0;
}
#contact, #contact-map {
	height: auto;
}
#contact-map {
	align-items: center;
	flex-direction: column;
}
.contact-block {
	padding: 30px;
	position: relative;
	background: #F3F5F5;
}
#face {
	padding: 80px 0 40px 0;
}
.close-search {
	right: 15px;
}
.news-intro-flex {
	padding: 80px 0 40px 0;
}
.news-txt {
	padding: 0 15px;
}
.news-txt .title {
	font-size: 24px;
	margin-bottom: 20px;
}
.news-img {
	padding: 30px 15px 0px 15px;
}
.news-search input[type="text"] {
	height: 40px;
	font-size: 14px;
	padding: 0 15px;
}
.news-region-flex {
	padding-right: 15px;
}
.news-region-grid {
	padding-left: calc(15px - 1%);
}
.news-region-item.baner-news {
	padding-left: 15px;
}
#program-detail .title {
	margin-bottom: 20px;
}
#modal-face .modal_container {
	width: 65%;
}
#teleprogram {
	padding: 50px 0 40px 0;
}
.tele-search input[type="text"] {
	height: 40px;
}
.modal-contact-txt {
	padding: 20px;
}
.logo-modal {
	height: 60px;
	margin-bottom: 20px;
}
.whatsapp {
	height: 40px;
	padding: 0 20px;
}
.whatsapp img {
	width: 20px;
	height: 20px;
}
.modal-contact-form .title-form {
	font-size: 24px;
	margin-bottom: 0;
}
.modal-flex-txt {
	padding: 30px;
}
.modal-flex-txt .title {
	font-size: 28px;
	margin-bottom: 20px;
}
.modal-flex-form {
	padding: 20px;
}
.modal-face-img, .face-info {
	height: auto;
}
.face-info .social {
	justify-content: space-between;
}
#search-page {
	padding: 50px 0 40px 0;
}
#search-page .title {
	font-size: 28px;
}
.search-list {
	padding: 20px;
}
.search-item .link a {
	font-size: 18px;
}
.YouTubePopUp-Content {
	height: 80%;
}
.slider-content .time {
	width: 200px;
}
#best {
	padding: 0 0 40px 0;
}
.btn.load-more {
	margin: 20px auto;
}
.modal-video {
	height: 95vh;
}
#news-wrap {
	padding: 80px 0 40px 0;
}
header .social {
	display: none;
}
.mobile-video {
    display: block;
}
.pc-video {
    display: none;
}








}

@media (max-width: 480px) {
.slider-content {
	width: 100%;
}
.slider-content {
	padding: 0 0 30px 15px;
}
.title-group {
	flex-direction: column;
}
.title-group .title {
	margin-bottom: 20px;
}
.burger {
	margin-left: 15px;
}
.search-btn {
	margin-right: 5px;
}
.btn {
	padding: 0 20px;
}
.baner1-footer {
	padding-bottom: 120px;
}
.baner1-title img {
	width: 60px;
	height: 60px;
}
.news-item, .news-item:first-of-type, .news-item:nth-of-type(2), .news-item:nth-of-type(3) {
	margin: 2% 0;
}
.news-grid {
	margin-top: 1%;
}
.baner2 img {
	width: 70%;
}
.active .time-item {
	margin-bottom: 15px;
}
.program-grid {
	margin: 0;
	padding-bottom: 0;
}
.program-item {
	width: 100%;
	margin: 1% 0;
}
#main-program {
	padding: 0 0 40px 0;
}
.footer-bottom {
	text-align: center;
}
.copy {
	font-size: 14px;
}
.copy a {
	display: block;
	width: 100%;
}
.footer-link-item {
	flex-direction: column;
}
.footer-link-item li {
	padding: 10px 0;
}
.nav {
	width: 80%;
}
.nav li a {
	padding: 15px;
}
.partner-grid {
	flex-wrap: wrap;
}
.partner-item {
	width: 48%;
}
.contact-block {
	padding: 30px 15px;
}
.contact-info-list {
	padding: 30px 15px;
}
.contact-list li span {
	display: block;
}
.contact-list li {
	font-size: 16px;
}
.face-item {
	width: 49%;
}
.news-txt-bg {
	padding: 30px 15px;
}
.news-txt .title {
	font-size: 20px;
}
#news-wrap .news-grid {
	margin: 0;
}
#news-wrap .news-item {
	width: 100%;
}
#news-wrap .news-item, #news-wrap .news-item:first-of-type, #news-wrap .news-item:nth-of-type(2), #news-wrap .news-item:nth-of-type(3) {
	margin: 0 0 15px 0;
}
.pagination {
	justify-content: space-between;
}
.pagination-item {
	margin: 0;
}
.player-icon::before, .player-icon {
	width: 100px;
	height: 100px;
}
.news-search {
	padding: 30px 15px;
	flex-direction: column;
	margin-bottom: 30px;
}
.news-search .date {
	width: 100%;
}
.news-search .search-group {
	margin: 0;
	padding: 20px 0;
}
.news-search input[type="text"] {
	height: 60px;
}
.news-search .btn {
	width: 100%;
}
.video-item {
	width: 100%;
	margin: 0 0 15px 0;
}
.news-region-item .baner2 img {
	width: 85%;
}
.program-second-grid .program-item:first-of-type {
	width: 100%;
}
.schedule-list {
	justify-content: space-between;
}
.schedule-item {
	margin: 0 5px;
}
.program-avtor {
	padding: 30px;
}
.program-slider {
	padding: 0;
}
.slider-item {
	margin: 0;
}
#program-galery {
	padding: 40px 0 80px;
}
.program-slider .slick-prev, .program-slider .slick-next {
	bottom: -60px;
}
.player__video {
	max-width: 100%;
}
.video-close {
	right: 0;
}
#modal-face .modal_container {
	width: 95%;
}
.close-modal {
	right: 0;
}
.tele-search {
	width: 100%;
	margin-top: 20px;
	flex-wrap: wrap;
}
.tele-search input[type="text"] {
	height: 50px;
	margin: 0 0 20px 0;
}
.tele-search .btn {
	width: 100%;
}
.tele-list li span {
	margin-right: 0;
	display: block;
}
.tele-list li {
	padding: 15px;
}
#modal-contact .modal_container {
	width: 95%;
}
.social li {
	margin: 0 10px;
}
.modal-btn-group {
	flex-wrap: wrap;
}
.modal-btn-group .btn {
	width: 100%;
}
.whatsapp {
	width: 100%;
	margin-top: 15px;
}
.modal-contact-form {
	padding: 40px 15px;
}
.btn-back-modal {
	left: 15px;
}
.modal_container {
	width: 95%;
}
#modal-form .modal_container { 
    width: 95%;
}
#modal-form .modal-flex-txt {
    padding: 20px;
}
.form-group {
	flex-wrap: wrap;
}
.form-item {
	width: 100%;
}
.form-item:first-of-type {
	margin-bottom: 20px;
}
.face-info {
	padding: 30px 15px;
}
.search-form {
	padding-top: 0;
}
.share p {
	text-align: center;
	margin: 0 0 5px 0;
}
.share {
	flex-direction: column;
}
.YouTubePopUp-Content {
	height: 50%;
}
.slider-content .time::before {
	width: 350px;
	height: 350px;
}
.slider-content .time {
	padding-top: 65px;
}
.best-slider .slick-next, .best-slider .slick-prev {
	top: 45%;
}
.best-slider .slick-prev {
	right: auto;
	left: 0;
}
.best-slider .slick-next::before, .best-slider .slick-prev::before {
	border: 1px solid #e31e24;
	background: #e31e24;
}
.slick-slide img.slider-img {
	display: none;
}
.slick-slide img.img-mobile {
	display: block;
}
.program-second-grid {
	margin: 0;
}
iframe {
	position: relative;
}
.modal-video {
	height: auto;
	min-height: 240px;
}
#modal-video .modal_container {
	width: 100%;
}
#map {
	height: 80vh;
}







}



/**/
blockquote {
margin: 0;
background: white;
border-top: 5px solid #E31E24;
border-bottom: 5px solid #E31E24;
/*color: #E31E24;*/
padding: 30px 30px 30px 60px;
position: relative;
/*font-family: 'Lato', sans-serif;*/
/*font-weight: 300;*/
}
blockquote:before {
content: "\201C";
font-family: serif;
position: absolute;
left: 5px;
top: 5px;
color: white;
background: #E31E24;
width: 30px;
height: 30px;
border-radius: 50%;
/*font-size: 50px;*/
font-size: 35px;
line-height: 1.35;
text-align: center;
}
blockquote p {
margin: 0 0 16px;
/*letter-spacing: .05em;*/
}
/**/

/**/
@media (max-width: 767px){
.slider-content h2 {
    margin-bottom: 25px;
}
 .baner1 img {
     max-height: 520px;
     width: 100%;
     height: auto;
 }   
}

/*.news-item h3 span {
    float: right;
}*/
.pagination-active {
    background: #E31E24;
    color: #fff;
}

.baner1:before {
    content: "16+";
    color: #fff;
}
.baner1 img {
     width: 100%;
     height: auto;
} 
.index-banner-pr-3:before {
    content: "0+";
    color: #fff;
    right: 1%;
}
.index-banner-pr-3, .index-banner-pr-2 {
    padding: 30px 0 0 0 !important;
}
.index-banner-pr-3 {
    display: none;
}
/**/</pre></body></html>