/*Общие стили*/
@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Roboto&display=swap');
* {
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
body::-webkit-scrollbar {
 background: white;
 width: 10px;
}
body::-webkit-scrollbar-thumb {
 background-color: #0f2d69;
 -webkit-box-shadow: inset 0 0 2px #333;
         box-shadow: inset 0 0 2px #333;
 border-radius: 3px;
}
body::-webkit-scrollbar-corner {
 background: transparent;
}
body {
	width: 100%;
	padding: 0;
	margin: 0;
}
body.no_scroll {
	overflow: hidden;
}
main .section_title {
	font-size: 30px;
	font-family: 'Bitter', serif;
	margin: 0;
	padding: 0;
	text-align: center;
}
main .section_sub_title {
	font-size: 25px;
	margin: 0;
	font-family: 'Bitter', serif;
	padding: 0;
	text-align: center;
}
/*НАЧАЛО СТИЛЕЙ HEADER`а-----------------------------------------------------------------*/
	/*Десктопный header*/
	header {
		display: flex;
		width: 100%;
		padding: 10px 0;
		align-items: center;
		justify-content: center;
    	box-shadow: rgb(6 5 50 / 12%) 0px 4px 20px;
    	transition: 0.3s;
	}
	header .header_inner {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 1280px;
	}
	header .top {
		width: 100%;
		text-align: left;
		display: flex;
		align-items: center;
		margin-bottom: 20px;
		justify-content: space-between;
	}
	header .top>a {
		color: black;
		text-decoration: none;
	}
	header .top .header_title {
		font-size: 30px;
		font-weight: bold;
		margin:0;
		font-family: 'Bitter', serif;
		margin-bottom: 10px;
	}
	header .top .header_description {
		margin: 0;
		font-family: 'Bitter', serif;
		font-style: italic;
		font-size: 20px;
	}
	header .top .language_selector {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	header .top .language_selector a {
		margin-right: 10px;
		height: 40px;
	}
	header .top .language_selector img {
		width: 40px;
		cursor: pointer;
		transition: 0.3s;
	}
	header .top .language_selector img:hover {
		transform: scale(1.1);
	}
	header .top .language_selector a:last-child {
		margin: 0;
	}
	header .bottom {
		width: 100%;
		border-top: 3px solid #0f2d69;
		transition: 0.3s;
	}
	header .bottom ul {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		list-style: none;
		margin: 0;
		margin-top: 1em;
		margin-bottom: 0.5em;
		transition: 0.3s;
		padding: 0 10px;
	}
	header .bottom ul a {
		color: black;
		text-decoration: none;
		position: relative;
		padding-bottom: 4px;
		font-size: 17px;
	}
	header .bottom ul a:hover::after {
	    width: 100%;
	    left: 0;
	}
	header .bottom ul a::after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    display: block;
	    height: 3px;
	    width: 0;
	    background-image: linear-gradient(45deg,#0f2d69, #380036, #0CBABA, #0D324D, #2A2A72);
	    background-size: 200%;
	    animation: animateborder 3s ease infinite;
	    transition: width 0.3s ease 0s, left 0.3s ease 0s;
	}
	@keyframes animateborder {
	    0% {
	        background-position: 0%;
	    }
	    50% {
	        background-position: 100%;
	    }
	    100% {
	        background-position: 0%;
	    }
	}
	/*Фиксированный header при прокрутке*/
	header .fixed_bottom {
		width: 100%;
	    min-height: 51px;
	    border-top: 3px solid;
	    display: flex;
	    align-items: center;
	    margin: 0;
	    transition: 0.3s;
	    background-color: white;
	    z-index: 10;
	    position: fixed;
	    top: 0;
	    box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	.fixed_header_activated {
		padding-bottom: 0;
	}
	header .bottom_inner {
		display: flex;
	    width: 1280px;
	    min-height: 51px;
	    margin: 0 auto;
	    align-items: center;
	    transition: 0.3s;
	    /* position: sticky; */
	    top: 0;
	    z-index: 10;
	    justify-content: space-between;
	}
	header .bottom_logo {
		display: flex;
		width: 0;
		transition: 0.3s;
	}
	header .fixed_bottom ul {
	    width: calc((64.63px + 4vw)*7);
	}
	header .bottom ul a {
		transition: 0.6s;
	} 
	header .fixed_bottom ul a {
		margin-right: 4vw;
	}
	header .fixed_bottom ul a:last-child {
		margin: 0;
	}
	header .fixed_bottom .bottom_logo {
		width: 43px;
	}
	header .plug.active {
			height: 54px;
	}
	/*Мобильное меню*/
	.mobile_header {
		display: none;
	    width: 100%;
	    height: 0;
	    border-top: 3px solid;
	    align-items: center;
	    margin: 0;
	    transition: 0.3s;
	    background-color: white;
	    z-index: 10;
	    position: fixed;
	    top: 0;
	    box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	.mobile_header.active {
	   height: 51px;
	}
	.mobile_header_inner {
	    display: flex;
	    width: 80%;
	    margin: 0 auto;
	    align-items: center;
	    transition: 0.3s;
	    /* position: sticky; */
	    top: 0;
	    z-index: 10;
	    justify-content: space-between;
	}
	.mobile_header_inner .mobile_logo {
        display: flex;
	    width: 0;
	    transition: 0.3s;
	}
	.mobile_header.active .mobile_logo {
	    width: 43px;
	}
	/*Иконка бургер-меню*/
	header>#burger-menu {
		display: none;
	}
	#burger-menu {
	  cursor: pointer;
	  height: 27px;
	  width: 27px;
	  overflow: visible;
	  position: relative;
	  transition: 0.3s;
	  z-index:12;
	}
	#burger-menu span,
	#burger-menu span:before,
	#burger-menu span:after {
	  background: black;
	  display: block;
	  height: 4px;
	  opacity: 1;
	  position: absolute;
	  transition: 0.3s ease-in-out;
	}
	#burger-menu span:before,
	#burger-menu span:after {
	  content: "";
	}
	#burger-menu span {
	  right: 0px;
	  top: 13px;
	  width: 27px;
	}
	#burger-menu span:before {
	  left: 0px;
	  top: -10px;
	  width: 16px;
	}
	#burger-menu span:after {
	  left: 0px;
	  top: 10px;
	  width: 20px;
	}
	#burger-menu.close span {
	  transform: rotate(-45deg);
	  top: 13px;
	  width: 27px;
	}
	#burger-menu.close span:before {
	  top: 0px;
	  transform: rotate(90deg);
	  width: 27px;
	}
	#burger-menu.close span:after {
	  top: 0px;
	  left:0;
	  transform: rotate(90deg);
	  opacity:0;
	  width:0;
	}
	/*Непосредственно меню*/
	#menu{
	  z-index:1;
	  min-width:100%;
	  min-height:100%;
	  position: fixed;
	  top:0;
	  height:0;
	  visibility: hidden;
	  opacity: 0;
	  text-align:center;
	  overflow: auto;
	  padding-top:20px;
	  transition: all 0.3s ease-in-out;
	  
	}
	#menu ul {
	    padding: 0;
	    margin: 0 auto;
	    display: flex;
	    flex-direction: column;
	    align-items: flex-start;
	    justify-content: flex-start;
	}
	#menu.overlay{
	  visibility: visible;
	  opacity: 1;
	  padding-top:86px;
	  background:#0f2d69;
	}
	#menu a{
	  width: 100%;
	  color:#fff;
	  display:block;
	  font-size: 28px;
	  padding-top:30px;
	  text-decoration:none;
	  border-bottom: 1px solid darkblue;
	}
	#menu a:first-child {
	  padding-top: 0;
	  Масс медиа вся на русском без линков
	}
	#menu li{
      width: 80%;
      margin: 0 auto;
      padding-bottom: 30px;
      text-align: left;
      font-family: 'Bitter', serif;
	  list-style:none;
	}
	/*Суб-меню*/
	#menu .submenu {
		width: 100%;
	}
	#menu .open_submenu {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#menu .open_submenu li {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#menu .open_submenu img {
		width: 30px;
		transition: 0.3s;
	}
	#menu .open_submenu img.active {
		transform: rotate(180deg);
	}
	#menu .submenu a {
		border-color: silver;
		border-width: 1px;
	}
	#menu .submenu li {
		padding-left: 8vw;
	    font-size: 20px;
	}	
	/*Медиа-запросы*/
	@media (max-width: 1439px) {
		header .header_inner {
		    width: 1024px;
		}
		header .bottom_inner {
			 width: 1024px;
		}	
	}
	@media (max-width: 1279px) {
		header>.top {
		    width: 960px;
		}
	}
	@media (max-width: 1030px) {
		header .top {
		    flex-direction: column;
		    text-align: center;
		    justify-content: center;
		    align-items: center;
		    margin: 0;
		}
		header .bottom {
			display: none;
		}
		.mobile_header {
			border: 0;
			height: 0;
			display: flex;
		}
		header>#burger-menu {
			display: block;
			width: 27px;
			position: absolute;
			top: 14px;
			left: 90%;
			height: 27px;
		}
		header>#burger-menu.active {
			left: calc(90% - 27px);
			top: 12px;
		}
		header>#burger-menu span {
		  right: 0px;
		  top: 13px;
		  width: 27px;
		}
		header>#burger-menu span:before {
		  left: 0px;
		  top: -10px;
		  width: 16px;
		}
		header>#burger-menu span:after {
		  left: 0px;
		  top: 10px;
		  width: 20px;
		}

		header>#burger-menu.close span {
		  transform: rotate(-45deg);
		  top: 13px;
		  width: 27px;
		}
		header>#burger-menu.close span:before {
		  top: 0px;
		  transform: rotate(90deg);
		  width: 27px;
		}
		header>#burger-menu.close span:after {
		  top: 0px;
		  left:0;
		  transform: rotate(90deg);
		  opacity:0;
		  width:0;
		}
		#burger-menu {
			width: 0;
			height: 0;
		}
		#burger-menu span {
		  right: 0px;
		  top: 13px;
		  width: 0;
		}
		#burger-menu span:before {
		  left: 0px;
		  top: -10px;
		  width: 0;
		}
		#burger-menu span:after {
		  left: 0px;
		  top: 10px;
		  width: 0;
		}
		.mobile_header.active #burger-menu {
			height: 27px;
    		width: 27px;
		}
		.mobile_header.active #burger-menu span {
		  right: 0px;
		  top: 13px;
		  width: 27px;
		}
		.mobile_header.active #burger-menu span:before {
		  left: 0px;
		  top: -10px;
		  width: 16px;
		}
		.mobile_header.active #burger-menu span:after {
		  left: 0px;
		  top: 10px;
		  width: 20px;
		}
		.mobile_header.active #burger-menu.close span {
		  transform: rotate(-45deg);
		  top: 13px;
		  width: 27px;
		}
		.mobile_header.active #burger-menu.close span:before {
		  top: 0px;
		  transform: rotate(90deg);
		  width: 27px;
		}
		.mobile_header.active #burger-menu.close span:after {
		  top: 0px;
		  left:0;
		  transform: rotate(90deg);
		  opacity:0;
		  width:0;
		}
		header .mobile_header_inner {
			width: 80%;
			margin: 0 auto;
			border-top:0;
			min-height: auto;
			justify-content: space-between;
		}
		.mobile_header ul {
			display: none;
		}
		header .plug.active {
			height: 0;
		}
		.mobile_header.active {
			position: fixed;
			display: flex;
		}
		.fixed_header_activated {
			padding-bottom: 10px;
		}
	}
	@media (max-width: 385px) {
		header .top {
			text-align: left;
			align-items: flex-start;
			padding-left: 10px;
		}
	}
/*КОНЕЦ СТИЛЕЙ HEADER`а-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ FOOTER`а-----------------------------------------------------------------*/
	footer {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
    	box-shadow: rgb(6 5 50 / 12%) 0px 4px 20px;
    	padding-bottom: 10px;
    	margin-top: 40px;
	}
	footer .footer_inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 1280px;
	}
	footer .left ul {
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		list-style: none;
		margin: 0;
		margin-top: 1em;
		margin-bottom: 0.5em;
		padding: 0 10px;
	}
	footer .left ul li {
		width: fit-content;
	}
	footer .left ul>li {
		font-weight: bold;
		font-size: 17px;
		padding-bottom: 4px;
		margin-bottom: 5px;
		font-family: 'Bitter', serif;
	}
	footer .left ul a {
		color: black;
		text-decoration: none;
		position: relative;
		padding-bottom: 4px;
		width: fit-content;
		font-size: 15px;
		margin-bottom: 5px;
	}
	footer .left ul a:hover::after {
	    width: 100%;
	    left: 0;
	}
	footer .left ul a::after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    display: block;
	    height: 3px;
	    width: 0;
	    background-image: linear-gradient(45deg,#0f2d69, #380036, #0CBABA, #0D324D, #2A2A72);
	    background-size: 200%;
	    animation: animateborder 3s ease infinite;
	    transition: width 0.3s ease 0s, left 0.3s ease 0s;
	}
	footer .right .row{
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	footer .right .row a {
		height: 50px;
		margin-left: 10px;
	}
	footer .right .row a:first-child {
		margin: 0;
	}
	footer .right .row img {
		cursor: pointer;
		height: 50px;
		transition: 0.3s;
	}
	footer .right .row img:hover {
		transform: scale(1.1);
	}
	@media (max-width: 1439px) {
		footer .footer_inner {
		    width: 1024px;
		}
		footer .footer_inner {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		footer .footer_inner {
			 width: 80%;
		}	
	}
	@media (max-width: 569px) {
		footer .footer_inner {
			flex-direction: column;
		}	
		footer .left ul {
			justify-content: center;
			align-items: center;
		}
		footer .right .row {
			justify-content: center;
		}
	}
/*КОНЕЦ СТИЛЕЙ FOOTER`а-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ ГЛАВНОЙ СТРАНИЦЫ-----------------------------------------------------------------*/
	main.main_page  {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	main.main_page section {
		width: 1280px;
		margin: 0 auto;
		margin-top: 70px;
	}
	main.main_page .section_title {
		font-size: 30px;
		font-family: 'Bitter', serif;
		margin: 0;
		padding: 0;
	}
	main.main_page .section_sub_title {
		font-size: 25px;
		margin: 0;
		font-family: 'Bitter', serif;
		padding: 0;
	}
	main.main_page .section_text {
		font-size: 19px;
	}
	/*Секция интро*/
	main.main_page section.intro {
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
	main.main_page section.intro .left {
		order: 2;
	}
	main.main_page section.intro .right {
		margin-right: 30px;
		order: 1;
	}
	main.main_page section.intro img{
		height: 437px;
		border-radius: 10px;
	}
	main.main_page section.intro .mobile_intro {
		display: none;
	} 
	main.main_page section.intro ul {
		padding-left: 19px;
		font-size: 19px;
	}
	main.main_page section.intro ul li {
		padding-bottom: 7px;
	}
	main.main_page section.intro ul li:last-child {
		padding: 0;
	}
	/*Секция самые важные работы*/
	.best_works .items{
		margin-top: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	.best_works .item {
		display: flex;
		width: 300px;
		height: 320px;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
		padding: 10px;
		margin-right: 18px;
		margin-top: 20px;
		border-radius: 10px;
		box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	.best_works .item p {
		font-weight: bold;
		font-size: 18px;
		text-align: center;
	}
	.best_works .item img{
		width: 100px;
	}
	.best_works .item .buttons_block {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	.best_works .item button {
		background: none;
		margin-top: 10px;
		border-radius: 10px;
		margin-right: 10px;
		padding: 10px;
		cursor: pointer;
		font-size: 18px;
		border: 3px solid #0f2d69;
		color: white;
		background: #0f2d69;
		transition: 0.3s;
	}
	.best_works .item button:hover {
		color: black;
		transform: scale(1.05);
		background: white;
	}
	.report_btn {
		display: inline-block;
		margin-top: 10px;
		margin-right: 10px;
		border-radius: 10px;
		padding: 10px 16px;
		cursor: pointer;
		font-size: 18px;
		font-family: 'Roboto', sans-serif;
		border: 3px solid #0f2d69;
		color: white;
		background: #0f2d69;
		text-decoration: none;
		transition: 0.3s;
	}
	.report_btn:hover {
		color: black;
		transform: scale(1.05);
		background: white;
	}
	/*Секция акутальные видео*/
	.actual_videos .video_block {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 40px;
		flex-wrap: wrap;
	}
	.actual_videos .video_block>iframe {
		border: 3px solid #0f2d69;
		border-radius: 10px;
		margin-top: 10px;
		margin-right: 10px;
	    box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	.actual_videos .video_block>video {
		border: 3px solid #0f2d69;
		border-radius: 10px;
		margin-top: 10px;
		margin-right: 10px;
	    box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	.actual_videos .item {
		display: flex;
		width: 300px;
		height: 315px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding: 10px;
		border-radius: 10px;
		box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	.actual_videos a.item {
		text-decoration: none;
		color: black;
	}
	.actual_videos .item p {
		font-weight: bold;
		font-size: 18px;
		text-align: center;
		text-decoration: none;
		color: black;
	}
	.actual_videos .item img{
		width: 100px;
	}
	.actual_videos .item .buttons_block {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	.actual_videos .item button {
		background: none;
		margin-top: 10px;
		border-radius: 10px;
		margin-right: 10px;
		padding: 10px;
		color: white;
		cursor: pointer;
		text-decoration: none;
		font-size: 18px;
		border: 3px solid #0f2d69;
		color: white;
		background: #0f2d69;
		transition: 0.3s;
	}
	.actual_videos .item button.solo_button {
		margin-right: 0;
		margin-top: 0;
	}
	.actual_videos .item button:hover {
		color: black;
		transform: scale(1.05);
		background: white;
	}
	/*Секция новые работы*/
	.new_works ul {
		padding: 0;
		padding-left: 19px;
	}
	.new_works ul a{
		color: black;
	}
	.new_works ul li {
		width: fit-content;
		font-size: 17px;
		margin-bottom: 5px;
		position: relative;
	}
	.new_works ul li:hover::after {
	    width: 100%;
	    left: 0;
	}
	.new_works ul li::after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    display: block;
	    height: 3px;
	    width: 0;
	    background-image: linear-gradient(45deg,#0f2d69, #380036, #0CBABA, #0D324D, #2A2A72);
	    background-size: 200%;
	    animation: animateborder 3s ease infinite;
	    transition: width 0.3s ease 0s, left 0.3s ease 0s;
	}
	@media (max-width: 1439px) {
		main.main_page section {
		    width: 1024px;
		}
		main.main_page section  {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		main.main_page section  {
			 width: 80%;
		}	
		main.main_page section.intro {
			flex-wrap: wrap;
			margin-top: 20px;
		}
		main.main_page section.intro img {
			display: none;
			height: auto;
		}
		main.main_page section.intro .right {
			margin: 0;
		}
		main.main_page section.intro .mobile_intro {
			display: block;
			width: 80%;
		    margin: 0 auto;
		    margin-bottom: 20px;
		}
		main.main_page section.intro .left {
			order: 1;
		}
		main.main_page section.intro .right {
			order: 2;
		}
	}
	@media (max-width: 1030px) {
		main.main_page section  {
			 width: 90%;
		}	
	}
	@media (max-width: 670px) {
		.best_works .item {
			margin-right: 0;
		}
		main.main_page section.intro .mobile_intro {
			width: 100%;
		}
	}
	/*Попап подкаста*/
	.podcast-modal {
		position: fixed;
		inset: 0;
		z-index: 1000;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.podcast-modal.is-open {
		opacity: 1;
		visibility: visible;
	}
	.podcast-modal[hidden] {
		display: none;
	}
	.podcast-modal.is-open[hidden] {
		display: flex;
	}
	.podcast-modal__overlay {
		position: absolute;
		inset: 0;
		background: rgba(15, 45, 105, 0.55);
		backdrop-filter: blur(4px);
	}
	.podcast-modal__dialog {
		position: relative;
		width: 100%;
		max-width: 520px;
		max-height: calc(100vh - 40px);
		overflow-y: auto;
		background: #fff;
		border-radius: 12px;
		padding: 32px 28px 28px;
		box-shadow: rgb(6 5 50 / 20%) 0px 12px 40px;
		transform: translateY(16px) scale(0.98);
		transition: transform 0.3s ease;
	}
	.podcast-modal.is-open .podcast-modal__dialog {
		transform: translateY(0) scale(1);
	}
	.podcast-modal__close {
		position: absolute;
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
		border: none;
		border-radius: 50%;
		background: transparent;
		color: #0f2d69;
		font-size: 28px;
		line-height: 1;
		cursor: pointer;
		transition: background 0.2s ease, transform 0.2s ease;
	}
	.podcast-modal__close:hover {
		background: rgba(15, 45, 105, 0.08);
		transform: scale(1.05);
	}
	.podcast-modal__title {
		margin: 0 36px 12px 0;
		font-family: 'Bitter', serif;
		font-size: 22px;
		line-height: 1.35;
		color: #0f2d69;
		text-align: center;
	}
	.podcast-modal__subtitle {
		margin: 0 0 24px;
		font-size: 16px;
		line-height: 1.4;
		color: #555;
		text-align: center;
	}
	.podcast-modal__links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
	.podcast-modal__link {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 52px;
		padding: 12px 16px;
		border-radius: 10px;
		border: 3px solid #0f2d69;
		background: #0f2d69;
		color: #fff;
		font-size: 17px;
		font-weight: 500;
		text-align: center;
		text-decoration: none;
		transition: 0.3s;
	}
	.podcast-modal__link:hover {
		color: #000;
		background: #fff;
		transform: scale(1.03);
	}
	.podcast-modal__link:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
	@media (max-width: 768px) {
		.podcast-modal {
			padding: 16px;
			align-items: flex-end;
		}
		.podcast-modal__dialog {
			max-width: 100%;
			max-height: calc(100vh - 32px);
			padding: 28px 20px 20px;
			border-bottom-left-radius: 0;
			border-bottom-right-radius: 0;
		}
		.podcast-modal__title {
			font-size: 20px;
		}
	}
	@media (max-width: 480px) {
		.podcast-modal__links {
			grid-template-columns: 1fr;
		}
		.podcast-modal__link:last-child:nth-child(odd) {
			grid-column: auto;
		}
		.podcast-modal__link {
			min-height: 48px;
			font-size: 16px;
		}
	}
/*КОНЕЦ СТИЛЕЙ ГЛАВНОЙ СТРАНИЦЫ-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ РАЗДЕЛА БИОГРАФИЯ-----------------------------------------------------------------*/
	main.biography_page {
		width: 1280px;
		margin: 0 auto;
		padding-top: 40px;
	}
	main.biography_page .top_part {
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		margin-top: 30px;
	}
	main.biography_page .top_part .left {
		margin-right: 10px;
	}
	main.biography_page .top_part .right {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	main.biography_page .top_part .left .row {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	main.biography_page .top_part img {
		height: 500px;
		border-radius: 10px;
	}
	main.biography_page .right a {
		display: none;
	}
	main.biography_page button {
		background: none;
		margin-top: 10px;
		border-radius: 10px;
		margin-right: 10px;
		padding: 10px;
		cursor: pointer;
		font-size: 18px;
		border: 3px solid #0f2d69;
		color: white;
		background: #0f2d69;
		transition: 0.3s;
	}
	main.biography_page button:hover {
		color: black;
		transform: scale(1.05);
		background: white;
	}
	main.biography_page .united_bottom_part {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: space-between;
	}
	main.biography_page .bottom_part {
		width: 50%;
	}
	main.biography_page .bottom_part h2 {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	main.biography_page .bottom_part img {
		width: 40px;
		margin-right: 10px;
	}
	@media (max-width: 1439px) {
		main.biography_page {
		    width: 1024px;
		}
		main.biography_page  {
			 width: 1024px;
		}
		main.biography_page .top_part .left .row {
			display: none;
		}
		main.biography_page .top_part .right a {
			display: block;
		}	
	}
	@media (max-width: 1030px) {
		main.biography_page  {
			 width: 80%;
		}
	}
	@media (max-width: 1030px) {
		main.biography_page {
			 width: 90%;
		}
		main.biography_page .united_bottom_part {
			flex-wrap: wrap;
		}
		main.biography_page .bottom_part {
			width: 100%;
		}	
	}
	@media (max-width: 768px) {
		main.biography_page .top_part img {
			 display: none;
		}
		main.biography_page .top_part .left .row {
			display: flex;
		}
		main.biography_page .top_part .right a {
			display: none;
		}	
		main.biography_page .top_part h2 {
			text-align: center;
		}	
	}
/*КОНЕЦ СТИЛЕЙ РАЗДЕЛА БИОГРАФИЯ-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ РАЗДЕЛА ПУБЛИКАЦИИ-----------------------------------------------------------------*/
	main.publications_page {
		width: 1280px;
		margin: 0 auto;
		padding-top: 40px;
	}
	main.publications_page .content_block.active {
		display: block;
	}
	main.publications_page .content_block {
		display: none;
	}
	main.publications_page .content_block h4 {
		text-align: left;
		font-size: 20px;
		margin: 10px 0;
	}
	main.publications_page .content_block ul {
		padding: 0;
		padding-left: 19px;
	}
	main.publications_page .content_block ul a{
		color: black;
	}
	main.publications_page .content_block ul li {
		width: fit-content;
		font-size: 15px;
		margin-bottom: 5px;
		position: relative;
	}
	main.publications_page .content_block ul li:hover::after {
	    width: 100%;
	    left: 0;
	}
	main.publications_page .content_block ul li::after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    display: block;
	    height: 3px;
	    width: 0;
	    background-image: linear-gradient(45deg,#0f2d69, #380036, #0CBABA, #0D324D, #2A2A72);
	    background-size: 200%;
	    animation: animateborder 3s ease infinite;
	    transition: width 0.3s ease 0s, left 0.3s ease 0s;
	}
	/*Блок Художественное*/
	main.publications_page .books_block {
		margin-top: 20px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
	}
	main.publications_page .books_block .book {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 10px;
		width: 30%;
		color: black;
		text-decoration: none;
		cursor: pointer;
		height: 310px;
		margin-right: 5%;
		margin-bottom: 20px;
		border-radius: 10px;
		box-shadow: rgb(6 5 50 / 12%) 0px 4px 20px;
		text-align: center;
		transition: 0.3s;
	}
	main.publications_page .books_block .book:hover {
		border: 2px solid #0f2d69;
		transform: scale(1.05);
	}
	main.publications_page .books_block .book:nth-child(3n) {
		margin-right: 0;
	}
	main.publications_page .books_block .book img {
		border-radius: 10px;
		height: 200px;
	}
	main.publications_page .books_block .book p {
		font-size: 20px;
		font-weight: bold;
	}
	@media (max-width: 1050px) {
		main.publications_page .books_block {
			justify-content: space-around;
		}
		main.publications_page .books_block .book:nth-child(3n) {
		margin-right: 2.5%;
	}
		main.publications_page .books_block .book {
			width: 45%;
			margin-left: 2.5%;
			margin-right: 2.5%;
		}

	}
	@media (max-width: 750px) {
		main.publications_page .books_block .book {
			width: 90%;
			margin: 0;
			margin-right: 0!important;
			height: 310px;
			margin-bottom: 30px;
		}
		main.publications_page .books_block .book img {
			height: 200px;
		}
	}
	@media (max-width: 450px) {
		main.publications_page .books_block .book img {
			height: 150px;
		}
		main.publications_page .books_block .book:nth-child(3n) {
			margin-right: 0;
		}
		main.publications_page .books_block .book {
			height: auto;
		}
	}
	/*Меню*/
	main.publications_page .rounded li {
	  margin: 0px 23px;
          cursor:pointer;
  	}
	main.publications_page .rounded {
	  display: flex;
	  align-items: center;
	  justify-content: center;
		counter-reset: li; 
		flex-wrap: wrap;
		list-style: none; 
		font-size: 16px;
		width:fit-content;
		padding: 10px;
		text-shadow: 0 1px 0 rgba(255,255,255,.5);
	}
	main.publications_page .rounded h2 {
		margin: 0;
		position: relative;
		display: block;
		padding: .4em .4em .4em 2em;
		font-weight: normal;
		font-size: 16px;
		width: 280px;
		margin: .5em 0;
    		box-shadow: rgb(6 5 50 / 12%) 0px 4px 20px;
		color: black;
		text-decoration: none;
		border-radius: .3em;
		transition: .3s ease-out;
	}
	main.publications_page .rounded .toggle_content.active h2 {
		border: 2px solid #0d1932;
	}
	main.publications_page .rounded h2:hover {transform: scale(1.05);}
	main.publications_page .rounded h2:hover:before {transform: rotate(360deg);background: #0d1932;}
	main.publications_page .rounded h2:before {
		content: counter(li);
		counter-increment: li;
		position: absolute;
		left: -1.3em;
		top: 50%;
		color:white;
		margin-top: -1.3em;
		background: #0f2d69;
		height: 2em;
		width: 2em;
		line-height: 2em;
		border: .3em solid white;
		text-align: center;
		font-weight: bold;
		border-radius: 2em;
		transition: all .3s ease-out;
	}
	@media (max-width: 1439px) {
		main.publications_page {
		    width: 1024px;
		}
		main.publications_page  {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		main.publications_page  {
			 width: 80%;
		}
	}
	@media (max-width: 1030px) {
		main.publications_page {
			 width: 90%;
		}	
	}
	@media (max-width: 385px) {
		main.publications_page .rounded li {
			width: 100%;
			margin: 0;
			margin-left: 23px;
		}
		main.publications_page .rounded h2 {
			 width: 100%;
		}	
	}
/*КОНЕЦ СТИЛЕЙ РАЗДЕЛА ПУБЛИКАЦИИ-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ РАЗДЕЛА СМИ-----------------------------------------------------------------*/
	main.massmedia_page {
		width: 1280px;
		margin: 0 auto;
		padding-top: 40px;
	}
	main.massmedia_page>p {
		font-size: 20px;
	}
	main.massmedia_page .section_sub_title {
		text-align: left;
	}
	main.massmedia_page .content_block.active {
		display: block;
	}
	main.massmedia_page .content_block {
		display: none;
	}
	main.massmedia_page .content_block ul {
		padding: 0;
		padding-left: 19px;
	}
	main.massmedia_page .content_block ul a{
		color: black;
	}
	main.massmedia_page .content_block ul li {
		width: fit-content;
		font-size: 15px;
		margin-bottom: 5px;
		position: relative;
	}
	main.massmedia_page .content_block ul li:hover::after {
	    width: 100%;
	    left: 0;
	}
	main.massmedia_page .content_block ul li::after {
	    content: "";
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    display: block;
	    height: 3px;
	    width: 0;
	    background-image: linear-gradient(45deg,#0f2d69, #380036, #0CBABA, #0D324D, #2A2A72);
	    background-size: 200%;
	    animation: animateborder 3s ease infinite;
	    transition: width 0.3s ease 0s, left 0.3s ease 0s;
	}
	/*Меню*/
	main.massmedia_page .rounded li {
	  margin: 0px 23px;
          cursor:pointer;
  	}
	main.massmedia_page .rounded {
	  display: flex;
	  align-items: center;
	  justify-content: center;
		counter-reset: li; 
		flex-wrap: wrap;
		list-style: none; 
		font-size: 16px;
		width:fit-content;
		padding: 10px;
		text-shadow: 0 1px 0 rgba(255,255,255,.5);
	}
	main.massmedia_page .rounded h2 {
		margin: 0;
		position: relative;
		display: block;
		padding: .4em .4em .4em 2em;
		font-weight: normal;
		font-size: 16px;
		width: 219px;
		margin: .5em 0;
    		box-shadow: rgb(6 5 50 / 12%) 0px 4px 20px;
		color: black;
		text-decoration: none;
		border-radius: .3em;
		transition: .3s ease-out;
	}
	main.massmedia_page .rounded .toggle_content.active h2 {
		border: 2px solid #0d1932;
	}
	main.massmedia_page .rounded h2:hover {transform: scale(1.05);}
	main.massmedia_page .rounded h2:hover:before {transform: rotate(360deg);background: #0d1932;}
	main.massmedia_page .rounded h2:before {
		content: counter(li);
		counter-increment: li;
		position: absolute;
		left: -1.3em;
		top: 50%;
		color:white;
		margin-top: -1.3em;
		background: #0f2d69;
		height: 2em;
		width: 2em;
		line-height: 2em;
		border: .3em solid white;
		text-align: center;
		font-weight: bold;
		border-radius: 2em;
		transition: all .3s ease-out;
	}
	/*Аудио плеер*/
	main.massmedia_page .plyr--audio {
		width: 100%;
	}
	main.massmedia_page .audios_container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}
	main.massmedia_page .audio_container {
		width: 30%;
		margin-right: 5%;
		margin-bottom: 20px;
		height: 100px;
		box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
		padding: 10px;
		border-radius: 10px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
	}
	main.massmedia_page .audio_container:nth-child(3n) {
		margin-right: 0;
	}
	main.massmedia_page .audio_container>p {
		color: grey;
		margin: 0;
		margin-bottom: 10px;
	}
	main.massmedia_page .audio_container>p>span {
		color: black;
		font-weight: bold;
	}
	main.massmedia_page .plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
		background: #0f2d69;
	}
	main.massmedia_page .plyr--full-ui input[type=range] {
		color: #0f2d69;
	}

	main.massmedia_page .plyr--audio .plyr__controls {
		padding: 0;
	}
	@media (max-width: 1439px) {
		main.massmedia_page {
		    width: 1024px;
		}
		main.massmedia_page  {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		main.massmedia_page  {
			 width: 80%;
		}
	}
	@media (max-width: 1030px) {
		main.massmedia_page {
			 width: 90%;
		}
		main.massmedia_page .audio_container {
			width: 100%;
			margin-right: 0;
		}	
	}
/*КОНЕЦ СТИЛЕЙ РАЗДЕЛА СМИ-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ РАЗДЕЛА ФОТО-----------------------------------------------------------------*/
	main.photos_page {
		width: 1280px;
		margin: 0 auto;
		padding-top: 40px;
	}
	main.photos_page .sub_section_title {
	    font-size: 30px;
	    font-family: 'Bitter', serif;
	    margin: 20px 0;
	    padding: 0;
	    text-align: center;
	}
	main.photos_page .photos {
		margin-top: 30px;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content:center;
	}
	main.photos_page .photos .photo {
		cursor: pointer;
		transition: 0.3s;
		border-radius: 13px;
		display: flex;
		margin-right: 5px;
		margin-top: 5px;
		border: 4px solid white;
	}
	main.photos_page .photos .photo:hover {
		border-color:#0f2d69;
	}
	main.photos_page .photos .photo img{
		height: 300px;
		border-radius: 10px;
	}
	main.photos_page .video_block {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 24px 0 50px;
	}
	main.photos_page .video_block video {
	    width: 560px;
	    max-width: 100%;
	    aspect-ratio: 16 / 9;
	    height: auto;
	    background: #000;
	    object-fit: contain;
	    border: 3px solid #0f2d69;
	    border-radius: 10px;
	    box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	main.photos_page .report_text {
		margin: 20px 0;
		font-size: 19px;
		text-align: center;
	}
	main.photos_page .report_text p {
		margin: 0 0 14px;
	}
	main.photos_page .report_materials {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		margin: 10px 0 30px;
	}
	@media (max-width: 1439px) {
		main.photos_page {
		    width: 1024px;
		}
		main.photos_page  {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		main.photos_page  {
			 width: 80%;
		}
	}
	@media (max-width: 1030px) {
		main.photos_page {
			 width: 90%;
		}	
	}
	@media (max-width: 650px) {
		main.photos_page .photos {
			align-items: center;
		}
		main.photos_page .photos .photo {
			margin: 0;
			margin-top: 5px;
		}
		main.photos_page .photos img{
			 width: 100%;
			 height: auto!important;
		}
		main.photos_page .video_block video {
		    width: 100%;
		}	
	}
/*КОНЕЦ СТИЛЕЙ РАЗДЕЛА ФОТО-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ РАЗДЕЛА ВИДЕО-----------------------------------------------------------------*/
	main.videos_page {
		width: 1280px;
		margin: 0 auto;
		padding-top: 40px;
	}
	main.videos_page .items {
		display: flex;
		align-items: flex-start;
		justify-content: space-around;
		text-align: center;
		flex-wrap: wrap;
		margin-top: 10px;
	}
	main.videos_page .items .item {
		margin-bottom: 10px;
	}
	main.videos_page .items .item iframe, main.videos_page .items .item video{
		width: 400px;
		border: 3px solid #0f2d69;
		border-radius: 10px;
		margin-top: 10px;
		background: black;
		margin-right: 10px;
	    box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
	}
	 main.videos_page .items .item video {
	 	height: 315px;
	 }
	main.videos_page .items .item p {
		font-size: 19px;
		max-width: 400px;
		font-weight: bold;
	}
	@media (max-width: 1439px) {
		main.videos_page {
		    width: 1024px;
		}
		main.videos_page  {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		main.videos_page  {
			 width: 80%;
		}
	}
	@media (max-width: 1030px) {
		main.videos_page {
			 width: 90%;
		}	
	}
	@media (max-width: 885px) {
		main.videos_page .items .item iframe, main.videos_page .items .item video {
			 margin-right: 0;
		}	
	}
	@media (max-width: 600px) {
		main.videos_page .items .item {
			 width: 100%;
		}
		main.videos_page .items .item iframe, main.videos_page .items .item video {
			 width: 100%;
		}
		main.videos_page .items .item p {
			max-width: 100%;
		}	
	}
	@media (max-width: 450px) {
		main.videos_page .items .item {
			 width: 100%;
		}
		main.videos_page .items .item iframe, main.videos_page .items .item video {
			 width: 100%;
		}	
	}
/*КОНЕЦ СТИЛЕЙ РАЗДЕЛА ВИДЕО-----------------------------------------------------------------*/
/*НАЧАЛО СТИЛЕЙ РАЗДЕЛА КОНТАКТЫ-----------------------------------------------------------------*/
	main.contacts_page {
		width: 1280px;
		margin: 0 auto;
		padding-top: 40px;
	}
	main.contacts_page>p {
		font-size: 20px;
	}
	main.contacts_page .section_sub_title {
		text-align: left;
	}
	/*FORM*/
	main.contacts_page form {
	  margin-top: 10px;
	  padding: 10px;
      box-shadow: rgb(6 5 50 / 10%) 0px 4px 30px;
      border-radius: 10px;
	}
	 main.contacts_page .container {
	  border-radius: 5px; /* скруглим углы */
	  padding: 34px;
	  width: 60%;
	  margin: 0 auto;
	}
	main.contacts_page .col-25 {
	  float: left;
	    width: 100%;
	  margin-top: 6px;
	  color: #212121;
	}
	main.contacts_page form button {
		float: right;
		width: fit-content;
	}
	main.contacts_page .col-75 {
	  float: left;
	  margin-top: 6px;
	}
	main.contacts_page .phone_block {
		max-width: 90%;
	}
	 /*@media screen and (max-width: 600px) {
	  .col-25, .col-75, input[type=submit] {
	    width: 95%;
	    margin-top: 0;
	  } }*/
	 main.contacts_page col-25, .col-75, input[type=submit] {
	    width: 100%;
	    margin-top: 0;
	  } 
	main.contacts_page form .row:after {
	  content: "";
	  display: table;
	  clear: both;
	}
	main.contacts_page form label {
	  padding: 10px 10px 10px 0;
	  display: inline-block;
	}
	main.contacts_page form label i {
		margin-right: 5px;
	}
	main.contacts_page textarea {
	 	max-height: 90px;
	 }
	 main.contacts_page form  select {
	 	box-sizing: content-box;
	 }
	 main.contacts_page input, select, textarea {
	  width: 100%; /* ширина полей*/
	  padding: 10px; /* отступы*/
	  border: 1px solid #bdbdbd; /* толщина стиль цвет рамки*/
	  border-radius: 5px; /* скругление углов*/
	  resize: vertical; /* Можно изменять размеры элемента по вертикали*/
      transition: 0.3s;
	}
	main.contacts_page form input:focus, select:focus, textarea:focus {
	 	outline: 0;
	 	border-color: #0f2d69;
	 	border-width: 2px;
	 }
	main.contacts_page form button {
		background: none;
		margin-top: 10px;
		border-radius: 10px;
		padding: 10px;
		cursor: pointer;
		font-size: 18px;
		border: 3px solid #0f2d69;
		color: white;
		background: #0f2d69;
		transition: 0.3s;
	}
	main.contacts_page form button:hover {
		color: black;
		transform: scale(1.1);
		background: white;
	}
	@media (max-width: 1439px) {
		main.contacts_page {
		    width: 1024px;
		}
		main.contacts_page  {
			 width: 1024px;
		}	
	}
	@media (max-width: 1030px) {
		main.contacts_page  {
			 width: 80%;
		}
	}
	@media (max-width: 1030px) {
		main.contacts_page {
			 width: 90%;
		}	
	}
	@media (max-width: 450px) {
		main.contacts_page>p {
			font-size: 17px;
		}	
	}
/*КОНЕЦ СТИЛЕЙ РАЗДЕЛА КОНТАКТЫ-----------------------------------------------------------------*/