body {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-display: swap;
	font-weight: normal;
	font-size: 15px;
}

a {
	text-decoration: none;
	color: #4b526e;
	transition: 0.4s;
	cursor: pointer;
}
a:hover {
	text-decoration: underline;
	color: #f4c60d;
}

*:focus {
	outline: none;
}

h1 {
	display: block;
	font-weight: normal;
    margin: 0;
    color: #4b526e;
}

h2 {
	display: block;
	font-weight: normal;
    margin: 40px 0 0 0;
	font-size: 26px;
	color: #4b526e;
}

h3 {
	display: block;
	font-weight: normal;
    margin: 0;
    font-size: 21px;
    color: #4b526e;
}

.wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 40px auto 0 auto;
}

section {
	margin-bottom: 60px;
}

header {
	padding-bottom: 24px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e8e8e8;
}

header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'PT Sans', sans-serif;
	font-size: 10px;
	color: #30363e;
}

header .logo:hover {
	text-decoration: none;
}

header .rightside {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: 200px;
	margin-right: 20px;
}

header .icons, footer .icons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 30px;
}

header .icons a, footer .icons a {
	display: flex;
    justify-content: center;
    align-items: center;
	margin-left: 20px;
	color: #fff;
	background-color: #5a6286;
	width: 28px;
	height: 28px;
	border: 1px solid #5a6286;
	border-radius: 30px;
	font-size: 14px;
}

header .icons a:hover, footer .icons a:hover {
	color: #5a6286;
	background-color: #fff;
	text-decoration: none;
}

header .search {
	width: 200px;
}

nav {
	margin-bottom: 40px;
}

nav .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav a {
	font-family: 'PT Sans', sans-serif;
	font-size: 20px;
}

nav .eng-link {
	text-transform: uppercase;
	font-weight: 700;
}

.menu-a {
	position: relative;
	z-index: 99999;
}

.submenu {
	display: none;
	flex-direction: column;
    background: #fff;
    padding-bottom: 10px;
	padding-left: 10px;
    position: absolute;
    width: 200px;
	left: -10px;
}

.submenu a {
	padding-top: 10px;
	font-size: 17px;
}

.menu-a:hover .submenu {
	display: flex;
}

.main-block .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-slider {
	width: 790px;
	height: 600px;
	border: 1px solid #e4e4e4;
}

.main-slider-image {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	height: 460px;
}

.main-slider-text {
	height: 100px;
	padding: 20px;
	background-color: #f6f6f6;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.main-slider-text span {
	font-family: 'PT Sans', sans-serif;
	margin-bottom: 10px;
}

.main-slider-text a {
	font-size: 25px;
	line-height: 32px;
	color: #000;
}

.main-calendar {
	width: 340px;
	height: 550px;
	padding: 24px;
	background-color: #f6f6f6;
	border: 1px solid #e4e4e4;
}

.main-calendar-title {
	margin-bottom: 30px;
	text-align: center;
	font-size: 25px;
	color: #4b526e;
}

.section-title {
	font-size: 50px;
	color: #4b526e;
	margin-bottom: 30px;
	text-align: center;
}

.section-title-left {
	text-align: left !important;
}

.news-list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.news-item {
	display: block;
	width: 280px;
	margin-bottom: 20px;
	border: 1px solid #e4e4e4;
}

.news-item-image-wrap {
	overflow: hidden;
	position: relative;
	width: 280px;
	height: 200px;
}

.news-item-image {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	width: 280px;
	height: 200px;
	transition: 0.4s;
	position: absolute;
}

.news-item:hover .news-item-image {
	transform: scale(1.1);
}

.news-item-text {
	height: 70px;
	padding: 15px 10px;
	background-color: #f6f6f6;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.news-item-text span {
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	color: #626262;
	margin-bottom: 5px;
}

.news-item-name {
	color: #000;
	max-width: 260px;
	height: 52px;
    overflow: hidden;
}

.section-readmore {
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-readmore a, .section-readmore input {
	padding: 10px 20px;
	border-radius: 2px;
	background-color: #4b526e;
	font-size: 18px;
	color: #fff;
	border: 1px solid #4b526e;
	cursor: pointer;
}

.section-readmore a:hover, .section-readmore input:hover {
	background-color: #fff;
	color: #4b526e;
	text-decoration: none;
}

.about-chess {
	display: flex;
	flex-wrap: wrap;
}

.joinform textarea {
	display: block;
	margin-top: 10px;
	resize: none;
	width: 100%;
    height: 60px;
    border: 1px solid #cdd0da;
	color: #5a6286;
	font-size: 14px;
	padding: 7px;
}

.joinform select {
	display: block;
	margin-top: 10px;
	border: 1px solid #cdd0da;
	color: #5a6286;
	font-size: 14px;
	padding: 7px;
}

.joinform .section-readmore {
	margin-top: 40px;
}

.joinform input[type="submit"] {
	padding: 10px 20px;
    border-radius: 2px;
    background-color: #4b526e;
    font-size: 18px;
    color: #fff;
    border: 1px solid #4b526e;
    cursor: pointer;
}
.joinform input[type="submit"]:hover {
	background-color: #fff;
    color: #4b526e;
    text-decoration: none;
}

.joinform input[type="text"] {
	display: block;
	margin-top: 10px;
	width: 100%;
	border: 1px solid #cdd0da;
	color: #5a6286;
	font-size: 14px;
	padding: 7px;
}

.about-chess-text {
	width: 318px;
	height: 278px;
	padding: 60px 40px;
	background-color: #f4f4f4;
	border: 1px solid #e4e4e4;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	color: #000;
}

.about-chess-text:hover {
	background-color: #586182;
	border: 1px solid #586182;
	color: #fff;
	text-decoration: none;
}

.about-chess-image {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	width: 400px;
	height: 400px;
}

.about-chess-text-name {
	font-size: 21px;
	margin-bottom: 20px;
}

.about-chess-text-line {
	width: 35px;
	height: 1px;
	margin-bottom: 24px;
	background-color: #a1a1a1;
}

.about-chess-text:hover .about-chess-text-line {
	background-color: #fff;
}

.about-chess-text-button {
	color: #4b526e;
	padding: 12px 25px;
	margin-top: 30px;
	border: 1px solid transparent;
}

.about-chess-text:hover .about-chess-text-button {
	color: #fff;
	border: 1px solid #fff;
}

footer {
	padding: 40px 0;
	background-color: #444962;
	color: #fff;
}

footer .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

footer .leftside {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

footer .rightside {
	max-width: 230px;
	font-size: 13px !important;
	text-align: right;
}

footer span {
	display: block;
	font-size: 24px;
	margin-bottom: 24px;
}

footer p {
	margin: 0;
	line-height: 22px;
}

footer a {
	color: #fff;
}

.footer-contacts {
	margin-right: 140px;
}

.breadcrumbs {
	margin-bottom: 40px;
	font-size: 15px;
	color: #4b526e;
}

.breadcrumbs a {
	color: #828384;
}
.breadcrumbs a:hover {
	color: #4b526e;
}

.news-list-inside {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.news-list-inside a {
	display: flex;
	width: 49%;
	margin-bottom: 10px;
}

.news-inside-image-wrap {
	flex: none;
	overflow: hidden;
	position: relative;
	width: 145px;
	height: 110px;
}

.news-inside-image {
	width: 145px;
	height: 110px;
	position: absolute;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	transition: 0.4s;
}

.news-list-inside a:hover .news-inside-image {
	transform: scale(1.1);
}

.news-list-inside .news-item-text {
	height: 80px;
	width: 100%;
}

.news-block-inside {
	margin-bottom: 35px;
}

.paginator {
	margin-bottom: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.paginator a {
	display: block;
	color: #5a6286;
	border: 1px solid #5a6286;
	text-align: center;
	padding: 0 7px;
	height: 25px;
    line-height: 23px;
}
.paginator .active, .paginator a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #5a6286;
}

.partners-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 40px 0;
}

.partners-list a img {
	max-width: 170px;
	max-height: 100px;
}

.app-block {
	background-color: #5a6285;
	text-align: center;
	padding: 60px 0;
	margin-bottom: 0;
}

.app-block .section-title {
	color: #fff;
}

.app-block p {
	max-width: 500px;
    margin: 0 auto 20px auto;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 17px;
}

.app-block a {
	margin: 0 20px;
}

.app-block a img {
	width: 200px;
}

.vb-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}

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

.videos-small {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 600px;
}

.video-block .section-readmore {
	margin-top: 30px;
}

.videos-small-inside {
	flex-direction: row !important;
	flex-wrap: wrap;
	height: auto !important;
}

.videos-small-inside .video-small {
	margin-bottom: 20px;
}

.video-big {
	width: 570px;
}

.video-small {
	width: 390px;
	height: 290px;
}

.video-image {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.video-big .video-image {
	width: 570px;
    height: 350px;
}

.video-small .video-image {
	width: 390px;
	height: 200px;
}

.video-shadow {
	background-color: rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-big .video-shadow {
	width: 570px;
    height: 350px;
}

.video-small .video-shadow {
	width: 390px;
	height: 200px;
}

.video-play {
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.4s;
}

.video-big .video-play {
	width: 100px;
	height: 100px;
	border-radius: 100px;
}

.video-small .video-play {
	width: 64px;
	height: 64px;
	border-radius: 64px;
}

.video-play:hover {
	background-color: rgba(255, 255, 255, 1);
}

.video-big .video-play img {
	width: 30px;
	margin-left: 10px;
	transition: 0.2s;
}

.video-small .video-play img {
	width: 18px;
	margin-left: 4px;
	transition: 0.2s;
}

.video-big .video-play:hover img {
	width: 40px;
	margin-left: 13px;
}

.video-small .video-play:hover img {
	width: 25px;
	margin-left: 6px;
}

.video-text {
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 20px;
}

.video-big .video-text {
    height: 110px;
}

.video-small .video-text {
    height: 60px;
}

.video-text span {
	font-family: 'PT Sans', sans-serif;
	margin-bottom: 5px;
	color: #626262;
}

.video-small .video-text span {
	font-size: 12px;
}

.video-big .video-name {
	font-family: 'PT Sans', sans-serif;
	font-size: 24px;
	color: #000;
}

.video-small .video-name {
	font-family: 'PT Sans', sans-serif;
	color: #000;
}

.quote-block {
	background-color: #585f81;
	color: #fff;
}

.quote-block .wrapper {
	max-width: 720px;
	padding: 40px 0 50px 0;
	text-align: center;
	position: relative;
}

.quote-block img {
	width: 120px;
	margin-bottom: 36px;
}

.quote-block a {
	padding: 10px 30px;
	border-radius: 2px;
	background-color: #585f81;
	font-size: 18px;
	color: #fff;
	border: 1px solid #fff;
}

.quote-block a:hover {
	background-color: #fff;
	color: #585f81;
	text-decoration: none;
}

.quote-right {
	position: absolute;
	width: 180px;
	right: 0;
	top: 90px;
	text-align: right;
}

.quote-right span {
	display: block;
	color: #abafc0;
	font-family: 'PT Sans', sans-serif;
	margin-top: 5px;
}

.quote-block .quote {
	font-size: 18px;
	line-height: 28px;
	max-width: 550px;
	margin: 0 auto 36px auto;
	position: relative;
}

.quote-open {
	font-size: 170px;
	position: absolute;
	left: -70px;
    top: 12px;
}

.quote-close {
	font-size: 170px;
	position: absolute;
	bottom: 10px;
    right: -70px;
    transform: rotate(180deg);
}

.slider-arrow {
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.4s;
}

.slider-arrow:hover {
	background-color: rgba(255, 255, 255, 1);
}

.slick-prev, .slick-next {
    position: absolute;
    top: 230px;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    z-index: 999;
}

.slick-prev {
	left: 20px;
}

.slick-next {
	right: 20px;
}

.main-slider .arrow img {
	width: 10px;
}

.ya-site-form__submit {
	display: none !important;
}

.ya-site-form__input-text {
	width: 200px !important;
	padding: 8px 10px;
	border-radius: 2px;
}

.calendar-monthes {
	border-bottom: 1px solid #dadbe2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	padding-bottom: 20px;
	font-family: 'PT Sans', sans-serif;
}

.calendar-row {
	margin: 10px 0;
	display: flex;
	justify-content: space-around;
}

.calendar-col {
	width: 30px;
	height: 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'PT Sans', sans-serif;
	color: #626c75;
	font-size: 12px;
	border-radius: 30px;
}

.calendar-dayname {
	color: #404850;
	font-weight: bold;
	text-transform: uppercase;
}

.calendar-disabled {
	color: #dadbe2;
}

.calendar-today {
	background-color: #5a6286;
	color: #fff;
}

.calendar-event {
	cursor: pointer;
	background-color: #f4c60d;
	color: #fff;
}

.calendar-event-past {
	background-color: #dbdbdb;
}

.calendar-upcoming {
    height: 110px;
	margin-top: 20px;
	padding: 20px;
	text-align: center;
	background-color: #fff;
	border-radius: 2px;
	border: 1px solid #dadbe2;
}

.calendar-upcoming .active {
	display: block;
}

.calendar-upcoming .upcoming {
	display: none;
}

.calendar-upcoming span {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	color: #4b526e;
}

.calendar-month-current {
	font-weight: bold;
	font-size: 18px;
	color: #4b526e;
}

.calendar-month {
	cursor: pointer;
	transition: 0.4s;
}

.calendar-month:hover {
	color: #f4c60d;
}

.news-view {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.news-view article {
	width: 860px;
}

.news-view aside {
	width: 280px;
}

.news-view h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.news-view-date {
	font-family: 'PT Sans', sans-serif;
	font-size: 13px;
	color: #828384;
	margin-bottom: 20px;
}

.news-view-slider {
	margin-bottom: 40px;
}

.news-view-slide {
	width: 860px;
	height: 530px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.news-text {
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	color: #444;
	line-height: 22px;
	text-align: justify;
}

.news-text b {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 18px;
	color: #4b526e;
}

.ya-share2 {
	margin-bottom: 40px;
}

.news-text-tags-title {
	margin-bottom: 20px;
	font-size: 26px;
	color: #4b526e;
}

.news-text-tags {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.news-text-tag {
	display: block;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 9px 15px;
	background-color: #ebebeb;
	text-align: center;
	font-family: 'PT Sans', sans-serif;
	color: #000;
}

.news-text-tag:hover {
	text-decoration: none;
	background-color: #f4c60d;
	color: #fff;
}

.sidebar-title {
	margin: 5px 0 30px 0;
	font-size: 26px;
	color: #4b526e;
}

.georgia-contacts-line {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
}

.georgia-contacts-left {
	width: 90px;
	color: #808080;
}

.georgia-contacts-right {
	color: #4c4c4c;
}

.person-wide {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
}

.person-wide-photo {
	width: 146px;
	height: 185px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.person-wide-text {
	margin-left: 40px;
	width: 200px;
	color: #4b526e;
	font-size: 14px;
	font-style: italic;
}

.person-wide-text span {
	display: block;
	margin-bottom: 10px;
	font-size: 20px;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-style: normal;
}

.persons {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.persons .person {
	width: 146px;
	height: 220px;
	overflow: hidden;
	margin: 0 10px 10px 10px;
	text-align: center;
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	color: #4b526e;
}

.person-photo {
	width: 146px;
	height: 146px;
	margin-bottom: 12px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.tabs {
	width: 100%;
	margin: 40px 0 20px 0;
	font-size: 22px;
}

.tab {
	display: none;
}

.tab.active {
	display: block;
}

.tabs span, .tabs a {
	cursor: pointer;
	color: #878787;
}

.tabs span:hover, .tabs .active, .tabs a:hover {
	color: #4b526e;
	text-decoration: none;
}

.documents {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 20px;
}

.document {
	display: flex;
	width: 48%;
	margin-bottom: 20px;
}

.document-icon {
	background: url('../img/pdf.png') no-repeat center center;
	width: 42px;
	height: 70px;
	background-size: contain !important;
	flex: none;
}

.document-icon-doc {
	background: url('../img/doc.png') no-repeat center center;
}

.document-icon-file {
	background: url('../img/file.png') no-repeat center center;
}

.document-name {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 20px;
}

.projects {
	margin: 20px 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.project {
	width: 220px;
	height: auto;
	margin: 0 10px 20px 10px;
	text-align: center;
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	color: #4b526e;
}

.projects-image {
	width: 220px;
	height: 220px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	margin-bottom: 20px;
}

.projects-wrap h1 {
	margin-bottom: 50px;
}

.news-overlay {
    color: #fff;
    padding: 3px 0 5px 10px;
    width: 120px;
    border-radius: 0 0 20px 0;
    position: absolute;
    z-index: 2;
}

.news-overlay-blue {
	background-color: #5a6285;
}

.news-overlay-yellow {
	background-color: #f4c60d;
}

.news-overlay-gray {
	background-color: #333;
}

.news-overlay-red {
	background-color: #cd3e24;
}

.main-slider .slick-arrow img {
	width: 10px;
    margin-left: 2px;
}

.hidden_el {
	display: none;
}

.news-text a {
	text-decoration: underline;
}

.date-paginator {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 20px 0;
}

.month-selector {
	width: 100px;
}

.year-selector {
	width: 70px;
}

.select {
	border-radius: 2px;
	border: 1px solid #444962;
	height: 30px;
	margin-right: 20px;
	overflow: hidden;
}

.select select {
   background: transparent;
   border: none;
   font-size: 16px;
   height: 30px;
   padding: 5px;
   color: #444962;
}

.date-paginator-text {
	font-size: 16px;
	font-weight: bold;
	margin-right: 20px;
}

.date-paginator-button {
	padding: 5px 10px;
    border-radius: 2px;
    background-color: #4b526e;
    font-size: 16px;
    color: #fff;
    border: 1px solid #4b526e;
    cursor: pointer;
}

.person-big-photo {
	margin-right: 20px;
	margin-bottom: 20px;
	max-width: 200px;
}

.aside-contacts span {
	font-weight: bold;
	color: #4b526e;
}

.eng-selector {
	background: url('/local/templates/fund/img/flag-en.jpg');
	background-size: contain;
}

.rus-selector {
	background: url('/local/templates/fund/img/flag-ru.jpg');
	background-size: contain;
}

.traur {
	border: 5px solid black;
    width: 131px !important;
    height: 131px !important;
}

.search-input {
	padding: 6px 10px;
	border: 1px solid #cdd0da;
	color: #5a6286;
}

.main-anounces {
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	height: 500px;
}

.anounce-item {
	display: flex;
	margin-bottom: 45px;
}
.anounce-item:hover {
	text-decoration: none;
}

.anounce-image {
	width: 75px;
	height: 75px;
	margin-right: 10px;
	flex: none;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.anounce-details {
	display: flex;
	flex-direction: column;
}

.anounce-name {
	color: #4b526e;
	font-weight: bold;
	margin-bottom: 6px;
}

.anounce-desc {
	color: #333;
}

footer .row {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

footer .row .col {
	display: flex;
	flex-direction: column;
}

footer .row2 {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 30px;
}

.anounce-dop {
	font-weight: bold;
}

.grants-titleline {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.grants-titleline a {
	padding: 10px 20px;
    border-radius: 2px;
    background-color: #4b526e;
    font-size: 18px;
    color: #fff;
    border: 1px solid #4b526e;
    cursor: pointer;
}
.grants-titleline a:hover {
	background-color: #fff;
	color: #4b526e;
	text-decoration: none;
}

@media only screen and (max-width:768px){
	footer .wrapper, footer .leftside, header .wrapper, header .rightside, .main-block .wrapper, .video-wrap {
		flex-direction: column;
	}
	
	aside, .quote-right, .breadcrumbs, .quote-open, .quote-close {
		display: none;
	}
	
	.partners-list, nav .wrapper {
		flex-wrap: wrap;
	}
	
	.wrapper {
		width: calc(100% - 40px);
		margin: 20px auto 0 auto;
	}
	
	nav {
	    margin-bottom: 20px;
	}
	
	.section-title {
	    font-size: 36px;
	    margin-bottom: 20px;
    }
	
	.news-list-inside a {
		width: 100%;
	}

	.paginator {
	    margin-bottom: 20px;
	    justify-content: center;
    }

    .news-block-inside {
	    margin-bottom: 15px;
	}
	
	footer {
	    padding: 20px 0;
	}
	
	footer .wrapper {
		margin: 0;
		width: 100% !important;
	}
	
	footer .leftside {
		width: 100%;
	}
	
	.footer-contacts {
	    margin: 0 auto 20px auto;
		text-align: center;
	}
	
	.footer-address {
	    text-align: center;
		margin: 0 auto;
	}
	
	footer span {
		margin-bottom: 10px;
	}
	
	footer .rightside {
		margin: 20px auto 0 auto;
		text-align: center;
	}
	
	nav .wrapper {
		justify-content: flex-start;
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	
	header .icons {
		margin-left: 0;
	}
	
	header {
		margin-bottom: 10px;
	}
	
	nav a {
		padding: 5px 10px;
	}
	
	.main-slider {
	    width: 100%;
	    height: auto;
		margin-bottom: 20px;
	}
	
	.main-slider-image {
		height: 260px;
	}
	
	.main-slider-text a {
	    font-size: 18px;
	    line-height: 24px;
	}
	
	.main-slider-text span {
		font-size: 12px;
	}
	
	.video-big, .video-small {
	    width: 100%;
	    height: 360px;
	}

	.video-big .video-image, .video-big .video-shadow, .video-small .video-image, .video-small .video-shadow {
	    width: 100%;
	    height: 260px;
	}

	.partners-list a {
		margin-bottom: 20px;
	}
	
	.main-calendar {
		width: calc(100% - 48px);
	}
	
	.news-list {
		justify-content: center;
	}
	
	.video-big .video-name {
		font-size: 14px;
	}
	
	.video-text span, .select select {
		font-size: 12px;
	}
	
	.video-big .video-text {
	    height: 70px;
	}
	
	.video-wrap {
		margin-bottom: 140px;
	}
	
	article {
	    width: 100% !important;
	}
	
	.tabs {
		font-size: 16px;
	    line-height: 28px;
	    margin: 20px 0;
	}
	
	h1 {
	    font-size: 24px !important;
	    margin-bottom: 0px;
	}
	
	.georgia-contacts-line {
		height: 60px;
	}
	
	.georgia-contacts-left {
		width: 100px;
		flex: none;
	}
	
	.news-view-slide {
		height: 260px;
	}
	
	.slick-prev, .slick-next {
		top: 130px;
	}
	
	.project {
		margin: 10px auto;
	}
	
	header .search {
		margin: 10px 0;
	}
	
	footer .row {
		flex-direction: column;
	}
	
	footer .row .col {
	    padding-left: 40px;
    	margin-bottom: 20px;
	}

	footer .row2 {
	    flex-direction: column;
	    align-items: center;
	    padding: 0 40px;
	    width: calc(100% - 80px);
    }
    
    footer .icons {
	    margin: 20px 0 0 0;
    }
}

.news-text table td {
	border: 1px solid #666;
	padding: 7px;
}