@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: "Roboto", sans-serif;
}

a, p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
    text-decoration: none;
    line-height: 1.2;
}
button:focus,
textarea:focus,
select:focus{
	outline: none!important;
	box-shadow: none;
}
input:focus{
	outline: none!important;
}
a:active, a:focus {
  outline: 0;
  outline: none!important;
  -moz-outline-style: none;
}

span, button, img, a {
	transition: .3s all ease;
}

a, span, button {
	display: inline-block;
}

.wrapper {
	/* overflow: hidden; */
	padding-top: 55px;
}


header {
	border-bottom: 2px solid #f5f5f5;
	padding: 10px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	background: #fff;
}

header .head-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .head-nav .menu-opener {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	margin-top: 5px;
}
header .head-nav .menu-opener span {
	position: relative;
	background-color: #000;
    display: block;
    height: 1px;
    margin-bottom: 4px;
    transition: all .2s cubic-bezier(.645,.045,.355,1);
    width: 16px;
}
header .head-nav .menu-opener.active .two {
	opacity: 0;
}
header .head-nav .menu-opener.active .one {
	transform: rotate(45deg);
	top: 5px;
}
header .head-nav .menu-opener.active .three {
	transform: rotate(-45deg);
	top: -5px;
}

header .head-left {
	display: flex;
	align-items: center;
	gap: 0 25px;
}

header .logo img {
	height: 22px;
}
header .current-date {
	display: flex;
	align-items: center;
	margin-top: 3px;
}

.head-center {
	margin-right: 200px;
}
.head-center .send-news {
	display: inline-flex;
	align-items: center;
	gap: 0 6px;
	font-size: 16px;
	color: #fff;
	border-radius: 5px;
    padding: 7px 10px;
	background-color: #326489;
}
.head-nav .send-news img {
	height: 16px;
}
.head-nav .send-news:hover {
	background-color: #0072bb;
}
.head-nav .search-opener {
	border: none;
	background: transparent;
	padding: 0;
}
.head-nav .search-opener img {
	height: 30px;
}



.nav-main {
	background-color: #4a4a4a;
	/* padding: 0 15px; */
	padding: 0 8px;
	/* margin-bottom: 20px; */
}
.nav-main .nav-main-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-main ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}
.nav-main .nav-main-links li a {
    color: #fff;
    display: block;
    font-weight: 500;
    padding: 8px;
    text-decoration: none;
    white-space: nowrap;
}
.nav-main .nav-main-links li a:hover {
    background: #363636;
    color: #dbdbdb;
}


header .head-menu {
	background: #fff;
	border-bottom: 1px dotted #d2691e;
	left: 0;
	padding: 24px;
	position: absolute;
	top: 55px;
	transform: translateX(-100%);
	transition: all .3s cubic-bezier(.645,.045,.355,1);
	width: 100%;
	z-index: 100;
}
header .head-menu.active {
	transform: translateX(0);
}

header .head-menu .menu-block {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px 0;
}
header .head-menu .menu-block > p {
	color: #242424;
	font-size: 16px;
	font-weight: 600;
}
header .head-menu .menu-block a {
	font-size: 16px;
	color: #242424;
}
header .head-menu .menu-block a:hover {
	color: #0072bb;
}

/* section hot news */
.hot-news {
	background-color: #f5f5f5;
	padding: 0 12px 12px;
}
.hot-news .hot-news__img img {
	width: 100%;
}
.hot-news .hot-news__img {
	margin-bottom: 10px;
	margin-left: -12px;
	margin-right: -12px;
}
.hot-news .hot-news__title a {
    font-size: 27px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 1rem;
	color: #242424;
}
.hot-news .hot-news__title a:hover {
    color: #303c9c;
}
.hot-news .hot-news__lead a {
    display: block;
    font-size: 110%;
    line-height: 140%;
	color: #242424;
}
.hot-news .hot-news__info-date {
    font-weight: 700;
}

.news-mini__block {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
.news-mini__item:hover .news-mini__text {
	color: #303c9c;
}
.news-mini__item .news-mini__img img {
	width: 100%;
	border: 1px solid #b5b5b5;
}
.news-mini__item .news-mini__text {
	font-size: 14px;
	line-height: 1.3;
	color: #242424;
	margin-top: 5px;
}

/* Выбор редакции */
.editors-choice {
	/* padding-top: 60px; */
}
.title {
	margin-bottom: 16px;
}
.title .title-h2 a,
.title .title-h2 {
	font-size: 24px;
	line-height: 1.3;
	color: #000;
}
.title .title-h2 a:hover {
	color: #303c9c;
}
.choice-block {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.choice-img img {
	width: 100%;
}
.choice-text {
	margin-top: 6px;
	font-size: 14px;
	color: #242424;
	line-height: 1.4;
}
.choice-block:hover .choice-text {
	color: #303c9c;
}

/* Все новости */
.all-news-sec {
	padding: 60px 0;
}
.all-news {
	display: flex;
	align-items: flex-start;
	gap: 0 16px;
	margin-bottom: 30px;
}
.all-news:last-child {
	margin-bottom: 0;
}
.all-news .all-news__img {
	border: 1px solid #b5b5b5;
	min-width: 240px;
	width: 240px;
}
.all-news .all-news__img img {
	width: 100%;
}
.all-news .all-news__in {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.all-news .all-news__title {
	font-size: 18px;
	line-height: 22px;
	color: #242424;
	margin-bottom: 4px;
	font-weight: 500;
}
.all-news .all-news__title:hover {
	color: #303c9c;
}
.all-news .all-news__date {
	font-size: 14px;
	margin-bottom: 10px;
	color: #000;
}
.all-news .all-news__text {
	font-size: 14px;
	line-height: 1.3;
	color: #242424;
}


.peoples-news__top {
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #b5b5b5;
}
.blue-btn {
	padding: 7px 10px;
	background-color: #326489;
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
	border-radius: 5px;
}
.blue-btn:hover {
	background-color: #0072bb;
	color: #fff;
}

.peoples-news__item {
	margin-bottom: 10px;
}
.peoples-news__item a {
	font-size: 14px;
	line-height: 1.2;
	color: #242424;
}
.peoples-news__item a:hover {
	color: #303c9c;
}
.peoples-news__item .all-news {
	color: #3273dc;
}
.all-news__btn {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 256px;
}
.all-news__btn a {
	border: 1px solid #3273dc;
    color: #3273dc;
	padding: 10px;
	font-size: 16px;
	line-height: 1.2;
	border-radius: 5px;
}
.all-news__btn a:hover {
    border-color: #303c9c;
    color: #303c9c;
}

.title .title-h3 a,
.title .title-h3 {
	font-size: 20px;
	line-height: 1.2;
	color: #242424;
	font-weight: 500;
}
.title .title-h3 a:hover {
	color: #303c9c;
}

.other-news-sec {
	padding: 60px 0;
}
.other-block {
    background: #f5f5f5;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 12px;
    width: 100%;
	height: 100%;
}
.other-block .other-text-link {
	margin-bottom: 20px;
	font-size: 14px;
	color: #242424;
	line-height: 1.2;
}
.other-block .other-text-link:hover {
	color: #303c9c;
}
.other-rov {
	gap: 16px 0;
}
.other-img {
	margin-left: -6px;
	margin-right: -6px;
}
.other-img img {
	width: 100%;
	max-height: 234px;
	margin-bottom: 4px;
}
.other-block .other-link a {
	font-size: 14px;
	line-height: 1.2;
	color: #303c9c;
}


/* politika page */
.last-news__top {
	margin-bottom: 12px;
}
.last-news__item {
	margin-bottom: 10px;
}
.last-news__item span,
.last-news__item a {
	font-size: 14px;
	line-height: 1.2;
	color: #242424;
}
.last-news__item a:hover {
	color: #303c9c;
}
.last-news__item .all-news {
	color: #3273dc;
}

.side-links {
	margin-top: 32px;
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #b5b5b5;
}
.side-links .title-h2 {
	margin-bottom: 12px;
}
.side-links .title-links {
	display: flex;
	align-items: center;
}
.side-links .title-links a {
	font-weight: 500;
	color: #7a7a7a;
	font-size: 16px;
	position: relative;
}
.side-links .title-links a.active {
	color: rgb(10, 10, 10);
}
.side-links .title-links a::before {
	content: "|";
	margin: 0 8px;
}
.side-links .title-links a:first-child:before {
	content: none;
}

/* blog page */
.blog-sec {
	padding: 60px 0;
}
.blog-sec .blog-rov {
	justify-content: center;
}
.blog-title .title-h1 {
	margin-bottom: 8px;
}
.blog-title .title-date {
	margin: 24px 0;
	display: flex;
	align-items: center;
	gap: 0 12px;
}
.blog-text {
	margin: 24px 0;
}
.blog-title .title-date span {
	display: flex;
	align-items: center;
	/* opacity: 0.5; */
	color: #b5b5b5;
	gap: 0 4px;
}
.blog-title .title-date img {
	height: 16px;
	opacity: 0.3;
}
.blog-text p {
	font-size: 18px;
	line-height: 130%;
	color: #000;
	margin-bottom: 16px;
}
.blog-text p:last-child {
	margin-bottom: 0;
}
.blog-img {
	margin: 24px 0;
}
.blog-img img {
	width: 100%;
	max-height: 580px;
}

.blog-quote blockquote {
    background: #b5b5b5;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    line-height: 120%;
    margin: 40px 0;
    padding: 12px 12px 12px 60px;
    position: relative;
    text-align: left;
}
.blog-quote blockquote:before {
    color: #fff;
    content: "”";
    font-family: Georgia,Times New Roman,serif;
    font-size: 54px;
    left: 22px;
    position: absolute;
    top: 24px;
}

.center-rov {
	justify-content: center;
}
.favoritesYandex {
    border: 1px solid #ebebeb;
    margin: 20px 0;
    padding: 30px;
}















/* footer */
.footer {
    background: #f5f5f5;
    padding: 1rem 0;
	margin-top: 60px;
}

.ftr-block {
	display: flex;
	align-items: flex-start;
	gap: 0 40px;
	margin-bottom: 30px;
}
.ftr-menu > p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
	margin-bottom: 10px;
}
.ftr-menu .ftr-menu-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px 0;
}
.ftr-menu .ftr-menu-links a {
	font-size: 14px;
	line-height: 1.4;
	color: #121212;
}
.ftr-menu .ftr-menu-links a:hover {
	color: #303c9c;
}

.ftr-end {
	display: flex;
	flex-direction: column;
	gap: 6px 0;
}
.ftr-end p {
	font-size: 14px;
	line-height: 1.2;
	color: #000;
}
.ftr-end p a {
	display: inline;
}
.ftr-end > a {
	font-size: 14px;
}

/* modal */
.modal {
	background-color: #000000e6;
}
.modal-dialog {
	max-width: 890px;
	margin-top: 80px;
}
.modal-body {
	padding: 0;
}
.modal-body form {
	display: block;
}
.modal-body form .form-group {
	position: relative;
}
.modal-body form .form-group .search-input {
    background: #fff;
    border-color: #0000;
    border-radius: 5px;
    font-size: 19px;
    height: 60px;
    outline: none;
    padding: 0 20px;
    width: 100%;
}
.modal-body form .form-group .btn-close {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	width: 20px;
	height: 20px;
	padding: 0;
}













































/*@media only screen and (max-width: 480px){}*/



.menu-opener{
	cursor:pointer;
}

.sticky-banner{
	position: -webkit-sticky;
    position: sticky;
    top: 50px;
    z-index: 1;
}


@media screen and (max-width: 417px)
{
	.all-news__btn {
		margin-left: 0!important;
	}
	
	.all-news .all-news__img {
		min-width: 120px!important;
		width: 120px!important;
	}
	
	.all-news .all-news__in {
		max-width: 200px!important;
		width: 200px!important;
	}
	
	.all-news .all-news__title {
		font-size: 15px!important;
	}
}