@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	--main-font: "Jost", sans-serif;
	--main-text-color: #283A46;
	--dark-text-color: #262E43;
	--accent-color: #FED201;
	--transition-way: all .3s ease-out;
	--gray-bg-color: #D6E3EB;
	--text-accent-color: #2D6992;
}
body {
	font-family: var(--main-font);
	font-weight: 400;
	color: var(--main-text-color);
	line-height: 1.5;
}
body.page-template-blog-page {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}
body.page-template-blog-page main {
	flex: 1;
}
p {
	font-size: 18px;
}
h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.68;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 60px;
}
h3 {
	font-size: 24px;
	text-align: center;
}
a {
	transition: var(--transition-way);
}
a:hover, a:focus {
	color: var(--text-accent-color);
}
.container {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.menu-button {
	display: none;
}
.menu-button span {
	display: block;
	position: relative;
	width: 24px;
	height: 3px;
	border-radius: 4px;
	background-color: var(--main-text-color);
	transition: var(--transition-way);
}
.menu-button span::before,
.menu-button span::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 3px;
	border-radius: 4px;
	background-color: var(--main-text-color);
}
.menu-button span::before {
	top: -8px;
	right: 0;
}
.menu-button span::after {
	bottom: -8px;
}
.menu-button.is-open span {
	transform: rotate(-45deg);
}
.menu-button.is-open span::before {
	opacity: 0;
}
.menu-button.is-open span::after {
	opacity: 1;
	transform: rotate(91deg);
	top: 0;
}
.header {
	background-color: #fff;
	transition: var(--transition-way);
}
.header.sticky {
	position: sticky;
	top: 0;
	z-index: 999;
	padding: 12px 0;
	border-bottom: 1px solid var(--dark-text-color);
}
.header, .footer {
	padding: 16px 0;
}
.header .logo {
	cursor: pointer;
}
.header .container,
.nav_menu,
.socials_menu ul,
.footer .container,
.footer_menu ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navigation_menu {
	display: flex;
	align-items: center;
}
.nav_menu li {
	font-size: 16px;
	font-weight: 700;
}
.nav_menu li + li,
.header .socials_menu {
	margin: 0 0 0 25px;
}
.socials_menu a:hover > img,
.socials_menu a:focus > img {
	opacity: .7;
}
.socials_menu a span {
	display: none;
}
.socials_menu ._mi._before._svg {
	margin: 0;
}
.socials_menu ul li:not(:last-child) {
	margin-right: 15px;
}
.socials_menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	transition: var(--transition-way);
}
.lang_switch {
	margin: 0 0 0 15px;
}
.header .socials_menu a {
	background-color: var(--accent-color);
}
.hero {
	position: relative;
	background: linear-gradient(98.24deg, #7592A4 0%, #D6E3EB 100%);
	border-bottom: 31px solid var(--accent-color);
}
.hero .container {
	padding: 100px 0 40px 0;
}
.hero h2 {
	font-size: 44px;
	text-align: left;
	line-height: 1.25;
	margin-bottom: 43px;
}
.hero h1 {
	font-size: 20px;
	line-height: 1.15;
	text-transform: uppercase;
}
.hero_icons {
	display: flex;
	margin-bottom: 28px;
}
.hero_icons li + li {
	margin-left: 20px;
}
.logo_name_img {
	margin-bottom: 43px;
}
.hero_bg_img_circle,
.hero_bg_img_rect {
	position: absolute;
	left: 0;
	top: 0;
	height: calc(100% + 31px);
} 
.hero_content_wrap {
	position: relative;
	z-index: 1;
	width: 50%;
	margin-left: auto;
}
.lab_descr {
	padding: 80px 0 60px 0;
}
.lab_descr .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.schedule {
	width: 30%;
	padding: 24px;
	background-color: var(--gray-bg-color);
}
.schedule h2,
.schedule ul {
	margin-bottom: 20px;
}
.schedule ul li {
	line-height: 1.8;
	font-size: 20px;
}
.bold_text {
	font-weight: 500;
}
.lab_descr .socials_menu {
	display: flex;
	align-items: center;
}
.lab_descr .socials_menu a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
}
.lab_descr .socials_menu a + a {
	margin-left: 20px;
}
.lab_descr .socials_menu a > img {
	width: 30px;
	height: 30px;
}
.descr_text {
	width: calc(70% - 40px);
}
.descr_text p {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 500;
}
.descr_text p + p {
	margin-top: 12px;
}
.about_lab {
	padding: 60px 0 120px 0;
}
.about_lab h2,
.about_lab h3 {
	text-align: center;
}
.about_lab h3 {
	margin-bottom: 30px;
}
.about {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}
.about img {
	width: 50%;
	margin-right: 42px;
}
.about .descr {
	width: calc(50% - 42px);
}
.about .descr p {
	font-size: 18px;
}
.about .descr p + p,
.funct_list li + li {
	margin-top: 20px;
}
.funct_list {
	width: 65%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}
.funct_list li,
.research_list li {
	display: flex;
	font-size: 18px;
}
[class$="_list"] li::before {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	min-width: 28px;
	margin-right: 20px;
}
.funct_list li::before {
	background: center / cover no-repeat url(../img/icon_check_g.svg);
}
.advantages_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.advantages_list li {
	width: calc((100% - 80px) / 3);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 60px;
}
.advantages_list li::before {
	display: none;
}
.advantages_list li img {
	width: 80px;
	height: 80px;
}
.advantages_list p {
	margin-top: 20px;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}
.research {
	margin-bottom: 120px;
}
.research .container {
	padding: 60px;
	background-color: var(--gray-bg-color);
	border-bottom: 18px solid var(--accent-color);
}
.research_descr {
	margin-bottom: 60px;
	font-weight: 500;
}
.research_list {
	display: flex;
	justify-content: space-between;
}
.research_list ul {
	width: calc((100% - 60px) / 2)
}
.research_list li::before {
	background: center / cover no-repeat url(../img/dark_check.svg);
}
.research_list li {
	width: 100%;
}
.research_list li:not(:last-child) {
	margin-bottom: 20px;
}
.tariffs {
	padding: 0 0 120px 0;
	text-align: center;
}
.tariffs .container {
	width: 63%;
	margin: 0 auto;
}
.tariffs .descr {
	margin-bottom: 20px;
}
.tariffs a {
	font-size: 18px;
	word-break: break-word;
}
section.documents {
	padding: 60px 0;
	background-color: #FED2011A;
}
.docs_list_download {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.docs_list_download li {
	width: calc((100% - 80px) / 4);
	text-align: center;
}
.docs_list_download li img {
	width: 100%;
	margin-bottom: 20px;
}
.docs_list_download li p {
	margin-bottom: 10px;
	font-weight: 700;
}
.download_file,
.link_text {
	font-weight: 500;
	text-decoration: underline;
}
.documents h3 {
	margin-bottom: 30px;
}
.blanks_list_download {
	width: 65%;
	margin: 0 auto;
}
.blanks_list_download li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.blanks_list_download li + li,
.prozorro_list li + li {
	margin-top: 20px;
}
.blank_name {
	display: flex;
	align-items: center;
	font-weight: 700;    
	overflow: hidden;        
	text-overflow: ellipsis; 
	word-break: break-word;
	max-width: calc(100% - 92px);
	margin-right: 10px;
}
.prozorro_list li a {
	display: flex;
	align-items:center;
}
.blanks_list_download .blank_name::before,
.prozorro_list li a:before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	min-width: 32px;
	margin-right: 10px;
	background: center / cover no-repeat url(../img/icon_word.svg);
}
.prozorro_list li a[href$=".xlsx"]::before,
.prozorro_list li a[href$=".xls"]::before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	min-width: 32px;
	margin-right: 10px;
	background: center / cover no-repeat url(../img/excel-icon.svg);
}
.bank_details {
	padding: 120px 0;
}
.bank_details h3 {
	margin-bottom: 20px;
}
.bank_data {
	text-align: center;
	line-height: 1.65;
}
.lab_contacts {
	padding: 60px 0;
	background: #D6E3EB;
}
.contacts_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}
.contact_col {
	width: calc((100% - 40px) / 2);
}
ul.contacts li {
	display: flex;
	align-items: flex-start;
}
ul.contacts li + li {
	margin-top: 40px;
}
.contacts .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	border-radius: 50%;
	margin-right: 20px;
	background-color: var(--accent-color);
}
ul.contacts h4 {
	font-size: 24px;
	font-weight: 500;
}
ul.contacts a {
	font-size: 18px;
}
ul.contacts .mail a {
	display: block;
}
.mail_box h5 {
	font-size: 14px;
	letter-spacing: -0.4px;
}
.name_inputs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.name_inputs > p {
	width: calc((100% - 20px) / 2);
	margin: 20px 0 0 0;
}
.name_inputs input,
form textarea {
	padding: 13px 24px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	max-width: 100%;
	width: 100%;
	font-family: var(--main-font);
	border: 1px solid #262E4333;
	border-radius: 8px;
}
.name_inputs input:focus,
form textarea:focus {
	border: 1px solid #262E43;
}
form textarea {
	max-height: 198px;
	resize: none;
}
form > p {
	margin-top: 20px;
}
input[type="submit"] {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	border: none;
	background: var(--accent-color);
	transition: var(--transition-way);
	cursor: pointer;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
	color: var(--text-accent-color);
}
input.wpcf7-not-valid {
	border: 1px solid #E73131CC;
}
.wpcf7-not-valid-tip {
	color: #E73131CC;
	font-size: 14px;
}
input:not[type="submit"]:focus, textarea:focus {
	border: 1px solid #262E43;
}
.form_wrap {
	width: 65%;
	margin: 0 auto;
	text-align: center;
}
.form_wrap h4 {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 500;
}
.form_wrap .wpcf7-spinner {
	position: absolute;
}
.map iframe {
	width: 100%;
	height: 402px;
}
.prozorro {
	padding: 120px 0 80px 0;
}
.prozorro_list li {
	display: flex;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}
.footer {
	background-color: var(--accent-color);
}
.footer_menu ul {
	font-weight: 700;
}
.footer_menu ul li + li {
	margin-left: 104px;
}
.footer .socials_menu a {
	background-color: #fff;
}
.blog_title, .blog_descr {
	text-align: center;
	margin-bottom: 10px;
}
.blog_descr {
	margin-bottom: 40px;
	font-weight: 500;
}
#blog {
	padding: 50px 0;
}
#blog article {
	display: flex;
}
#blog .post:not(last-child) {
	margin-bottom: 30px;
}
#blog .post_img {
	width: 300px;
	height: fit-content;
	margin-right: 50px;
	overflow: hidden;
}
#blog .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post_content {
	width: calc(100% - 300px);
	display: flex;
	flex-direction: column;
}
.post_content .entry-title {
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 1.2;
	text-align: left;
	text-transform: none;
}
.read_more_link {
	display: inline-block;
	margin-left: auto;
	margin-top: auto;
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1.2;
	background: var(--accent-color);
	transition: var(--transition-way);
	cursor: pointer;
	font-weight: 600;
}
.read_more_link:hover,
.read_more_link:focus {
	color: var(--text-accent-color);
}
.post_content .entry-summary p {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}
.corruption {
	padding: 50px 0 100px 0;
}
.corruption form input:not([type="submit"]) {
	height: 40px;
	width: 50%;
}
div[id^="gallery"]  {
	display: flex;
	flex-wrap: wrap;
}
div[id^="gallery"]  .gallery-item {
	margin: 2px;
}

@media screen and (max-width: 1200px) {
	.container {
		width: 95%;
	}
	.nav_menu li + li,
	.header .socials_menu {
		margin-left: 25px;
	}
	.hero {
		height: auto;
	}
	.footer_menu ul li + li {
		margin-left: 54px;
	}
}
@media screen and (max-width: 1120px) {
	.nav_menu li {
		width: min-content;
		line-height: 1.2;
	}
}
@media screen and (max-width: 1024px) {
	.nav_menu li + li, .header .socials_menu {
		margin-left: 20px;
	}
	.hero_content_wrap {
		width: 75%;
	}
	.schedule {
		width: 40%;
		padding: 16px;
	}
	.descr_text {
		width: calc(60% - 40px);
	}
	.form_wrap {
		width: 85%;
	}
	.research_list ul {
		width: calc((100% - 30px) / 2);
	}
}
@media screen and (max-width: 922px) {
	.menu-button {
		display: block;
		top: 20px;
		right: 16px;
		z-index: 99;
		width: 40px;
		height: 40px;
		background-color: transparent;
		border: none;
		padding: 0;
		margin-left: auto;
	}
	.navigation_menu {
		position: absolute;
		top: 92px;
		left: 0;
		width: 100%;
		height: fit-content;
		display: block;
		padding: 20px 0 30px 0;
		transition: var(--transition-way);
		opacity: 0;
		visibility: hidden;
		transform: scaleY(0);
	}
	.navigation_menu.is-open {
		z-index: 9;
		background: #fff;
		opacity: 1;
		visibility: visible;
		transition: var(--transition-way);
		transform: scaleY(1);
	}
	.nav_menu {
		flex-direction: column;
		text-align: center;
	}
	.nav_menu li + li, .header .socials_menu {
		margin: 32px 0 0 0;
	}
	.nav_menu li {
		width: fit-content;
	}
	.socials_menu ul {
		justify-content: center;
	}
	.lang_switch {
		margin: 20px 0 0 0;
		text-align: center;
	}
	.funct_list {
		width: 100%;
	}
	.research {
		margin-bottom: 80px;
	}
	.tariffs {
		padding: 0 0 80px 0;
	}
	.contact_col {
		width: calc((100% - 20px) / 2);
	}
	.contacts_wrap {
		margin-bottom: 40px;
	}
	.footer_menu {
		padding: 0 20px;
	}
	.footer_menu ul li + li {
		margin-left: 20px;
	}
	.footer_menu ul li {
		text-align: center;
	}
	.bank_details {
		padding: 60px 0;
	}
	.prozorro {
		padding: 60px 0 40px 0;
	}
	.map iframe {
		height: 352px;
	}
	.research_list {
		flex-direction: column;
	}
	.research_list ul {
		width: 100%;
	}
	.research_list ul:first-child {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 768px) {
	.hero_content_wrap,
	.schedule,
	.descr_text,
	.about .descr,
	.about img {
		width: 100%;
	}
	.schedule {
		margin-top: 20px;
	}
	.lab_descr .container,
	.about,
	.advantages_list {
		flex-direction: column;
	}
	.advantages_list li:not(:last-child) {
		margin-bottom: 40px;
	}
	.lab_descr {
		padding: 40px 0 30px 0;
	}
	.about_lab {
		padding: 30px 0;
	}
	h2,
	.about {
		margin-bottom: 40px;
	}
	.about img {
		margin: 0 0 40px 0;
	}
	.advantages_list li,
	.research_list li,
	.contact_col {
		width: 100%;
	}
	.contact_col.contacts {
		margin-bottom: 40px;
	}
	.research {
		margin-bottom: 60px;
	}
	.research_list ul {
		max-height: 100%;
	}
	.research .container {
		padding: 30px;
	}
	.tariffs {
		padding: 0 0 60px 0;
	}
	.tariffs .container {
		width: 95%;
	}
	.contacts_wrap {
		flex-direction: column;
	}
	ul.contacts li {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.contacts .icon {
		margin: 0 0 20px 0;
	}
	.form_wrap {
		width: 100%;
	}
	.docs_list_download li {
		width: calc((100% - 40px) / 3);
	}
	.blanks_list_download {
		width: 80%;
	}
	#blog {
		padding: 30px 0;
	}
	#blog .post_img {
		width: 250px;
		height: 150px;
		margin-right: 30px;
	}
	.post_content {
		width: calc(100% - 250px);
	}
}
@media screen and (max-width: 650px) {
	.footer .container {
		flex-direction: column;
	}
	.footer {
		padding: 60px 0;
	}
	.footer .socials {
		margin-top: 20px;
	}
	.footer .logo {
		margin-bottom: 20px;
	}
	.name_inputs {
		flex-direction: column;
	}
	.name_inputs > p,
	.blanks_list_download {
		width: 100%;
	}
	.docs_list_download li {
		width: 80%;
	}
	.docs_list_download {
		flex-direction: column;
		align-items: center;
	}
	.docs_list_download li + li {
		margin-top: 40px;
	}
	#blog .post_img {
		width: 200px;
		height: 100px;
		margin-right: 25px;
	}
	.post_content {
		width: calc(100% - 200px);
	}
	.post_content .entry-summary p {
		-webkit-line-clamp: 3;
	}
}
@media screen and (max-width: 480px) {
	h2 {
		font-size: 24px;
	}
	.hero {
		padding: 54px 0 41px 0;
	}
	.hero h2 {
		font-size: 32px;
	}
	.hero h1, p, .descr_text p, .schedule ul li,
	.bank_details h3 {
		font-size: 18px;
	}
	.research .container {
		padding: 30px 16px;
	}
	.footer_menu ul {
		flex-direction: column;
	}
	.footer_menu ul li + li {
		margin: 20px 0 0 0;
	}
	.map iframe {
		height: 300px;
	}
	.docs_list_download li {
		width: 100%;
	}
	section.documents {
		padding: 30px 0;
	}
	.hero_bg_img_circle,
	.hero_bg_img_rect {
		display: none;
	}
	.hero .container {
		padding: 0;
	}
	.form_wrap h4 {
		font-size: 20px;
	}
	#blog article {
		flex-direction: column;
	}
	#blog .post_img,
	.post_content {
		width: 100%;
	}
	#blog .post_img {
		height: fit-content;
		/*max-height: 250px;*/
		margin-bottom: 15px;
	}
	.page-template-blog-page div[id^="gallery"] .gallery-item {
		width: 100%;
	}
	}
	.page-template-blog-page div[id^="gallery"] .gallery-item img {
		width: 100%;
   		object-fit: contain;
	}
	#blog .post:not(last-child) {
		padding-bottom: 30px;
		border-bottom: 1px solid #D6E3EB;
	}
}
@media screen and (max-width: 375px) {
	.map iframe {
		height: 200px;
	}
	h2 {
		font-size: 20px;
	}
	.about_lab h3 {
		margin-bottom: 20px;
	}
	.advantages_list p {
		font-size: 18px;
	}
	p, .descr_text p, .schedule ul li,
	.about .descr p,
	.funct_list li, .research_list li {
		font-size: 16px;
	}
	.blank_name,
	.prozorro_list li {
		text-align: center;
	}
	.blanks_list_download li a,
	.blank_name,
	.prozorro_list li {
		flex-direction: column;
	}
	.blank_name::before,
	.prozorro_list li::before {
		margin: 0 0 10px 0;
	}
	.link_text {
		margin-top: 10px;
	}
}



