@font-face {
	font-family: 'Inter';
	src: local('Inter Regular'), local('Inter-Regular'), url('/assets/fonts/Inter-Regular.woff2') format('woff2'), url('/assets/fonts/Inter-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: local('Inter Italic'), local('Inter-Italic'), url('/assets/fonts/Inter-Italic.woff2') format('woff2'), url('/assets/fonts/Inter-Italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: local('Inter Medium'), local('Inter-Medium'), url('/assets/fonts/Inter-Medium.woff2') format('woff2'), url('/assets/fonts/Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: local('Inter Semi Bold'), local('Inter-SemiBold'), url('/assets/fonts/Inter-SemiBold.woff2') format('woff2'), url('/assets/fonts/Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: local('Inter Bold'), local('Inter-Bold'), url('/assets/fonts/Inter-Bold.woff2') format('woff2'), url('/assets/fonts/Inter-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: local('Inter Extra Bold'), local('Inter-ExtraBold'), url('/assets/fonts/Inter-ExtraBold.woff2') format('woff2'), url('/assets/fonts/Inter-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: local('Inter Black'), local('Inter-Black'), url('/assets/fonts/Inter-Black.woff2') format('woff2'), url('/assets/fonts/Inter-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--black: #000000;
	--white: #ffffff;
	--grey-1: #333333;
	--grey-2: #808080;
	--grey-3: #ebe9ed;
	--red: #ec1c24;

	--font-Rubik: 'Inter', Tahoma;
	--container-padding: 52px;
	--container: calc(1296px + var(--container-padding) * 2);
	--container-margin: calc((100vw - var(--container) + var(--container-padding) * 2) / 2);
	--col: calc(var(--container) / 12);
	--header-height: 50px;
	--admin-bar-height: 32px;
	--transition-time: 0.3s;

	--pr: 0px;
}

@media (max-width: 1399px) {
	:root {
		--container-padding: 42px;
	}
}

@media (max-width: 1199px) {
	:root {
		--container-padding: 28px;
	}
}

@media (max-width: 991px) {
	:root {
		--container-padding: 36px;
	}
}

@media (max-width: 782px) {
	:root {
		--admin-bar-height: 46px;
	}
}

@media (max-width: 767px) {
	:root {
		--container-padding: 30px;
	}
}

@media (max-width: 575px) {
	:root {
		--container-padding: 27px;
	}
}

:focus-visible {
	outline: 1px solid #525252;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	-webkit-tap-highlight-color: transparent;
}

html {
	height: 100%;
	min-width: 360px;
	font-size: 16px;
}

body {
	font-family: var(--font-Rubik);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	height: 100%;
	color: var(--grey-1);
	padding-right: var(--pr);
}

[dir='rtl'] body {
	-webkit-font-smoothing: auto;
	direction: rtl;
	unicode-bidi: embed;
	text-align: right;
}

img {
	max-width: 100%;
	vertical-align: middle;
	transition: var(--transition-time);
	transition-property: opacity;
}

a,
button:not(:disabled) {
	cursor: pointer;
}

a,
button,
svg {
	transition: var(--transition-time);
}

a {
	text-decoration: none;
}

a {
	color: var(--red);
	text-decoration: none;
}

@media (min-width: 992px) {
	a:hover,
	a:focus {
		color: var(--red);
		text-decoration: none;
	}
}

textarea,
input:not([type='radio']):not([type='checkbox']) {
	border-radius: 0;
	-webkit-appearance: none;
	text-align: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
}

input[type='number'] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding-top: var(--header-height);
}

.main {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 50px 0;
}

@media (max-width: 767px) {
	.main {
		padding: 40px 0;
	}
}

@media (max-width: 575px) {
	.main {
		padding: 30px 0;
	}
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	height: 30px;
	margin: 0;
	padding: 5px 20px;
	background: none;
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: none;
	vertical-align: middle;
	touch-action: manipulation;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	position: relative;
}

.btn--default {
	color: var(--white);
	background: var(--red);
	border-color: var(--red);
}

.btn--default:focus {
	color: var(--white);
	background: var(--red);
	border-color: var(--red);
}

@media (min-width: 992px) {
	.btn--default:hover {
		color: var(--white);
		background: var(--red);
		border-color: var(--red);
		opacity: 0.8;
	}
}

.btn--primary {
	color: var(--white);
	background: var(--grey-1);
	border-color: var(--grey-1);
}

.btn--primary:focus {
	color: var(--white);
	background: var(--grey-1);
	border-color: var(--grey-1);
}

@media (min-width: 992px) {
	.btn--primary:hover {
		color: var(--white);
		background: var(--grey-1);
		border-color: var(--grey-1);
		opacity: 0.8;
	}
}
/* Buttons EMD*/

/* Form */
.wpcf7-form p {
	margin: 0;
}

.wpcf7-form br,
.wpcf7-not-valid-tip,
.wpcf7-response-output {
	/* display: none; */
}

.wpcf7 form .wpcf7-response-output {
	text-align: center;
	border: 0;
}

.field-input {
	line-height: 20px;
	padding: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--black);
}

.field-textarea {
	line-height: 1.4;
	padding: 5px;
	border: 1px solid var(--black);
}

.field-input,
.field-textarea {
	font-size: 14px;
	color: var(--black);
	width: 100%;
}

.field-input.wpcf7-not-valid,
.field-textarea.wpcf7-not-valid {
	border-color: var(--red);
}

.field-input::placeholder,
.field-textarea::placeholder {
	color: var(--grey-2);
}

.form-error {
	display: none;
	color: var(--red);
	margin: 15px 0 0 0;
}

.invalid .form-error {
	display: block;
}

.form-bottom {
	margin: 30px 0 0;
}

.form-submit {
	display: grid;
	width: 100%;
	max-width: 112px;
	margin: 0 auto;
}

.submitting .form-submit span {
	display: none;
}

.form-submit::after {
	content: '';
	display: none;
	width: 20px;
	height: 20px;
	border-top: 2px solid transparent;
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	border-left: 2px solid var(--white);
	border-radius: 50%;
	-webkit-animation: rotate 0.8s normal linear infinite;
	animation: rotate 0.8s normal linear infinite;
}

.submitting .form-submit::after {
	display: flex;
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.grievance-review__form {
	max-width: 856px;
	margin: 0 auto;
}

.form-wrap {
	display: grid;
	grid-template-columns: 306px 1fr;
	column-gap: 20px;
	row-gap: 30px;
}

.form-inputs {
	display: grid;
	grid-auto-rows: min-content;
	row-gap: 20px;
	max-width: 306px;
}

.field-files {
	display: grid;
	grid-auto-rows: min-content;
	row-gap: 5px;
}

.field-file {
	display: none;
	align-items: center;
	order: 2;
}

.field-file.active {
	display: flex;
}

.field-file.selected {
	order: 1;
}

.field-file label {
	cursor: pointer;
	position: relative;
}

.field-file label::before {
	content: '';
	width: 100%;
	height: 1px;
	background: var(--red);
	position: absolute;
	left: 0;
	bottom: 0;
}

.field-file input {
	opacity: 0;
	position: absolute;
	z-index: -1;
}

.field-file:not(.selected) span,
.field-file:not(.selected) button,
.field-file.selected label {
	display: none;
}

.field-file label,
.field-file span {
	color: var(--red);
}

.field-file button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 11px;
	height: 11px;
	border: 0;
	padding: 0;
	margin: 0 0 0 10px;
}

.field-file button svg {
	stroke: var(--red);
}

@media (max-width: 991px) {
	.form-wrap {
		grid-template-columns: 1fr;
	}
}
/* Form END */

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

p {
	margin: 0;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

a img.alignright {
	float: right;
	margin: 0.313rem 0 1.25rem 1.25rem;
}

a img.alignnone {
	margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.alignleft {
	float: left;
	margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption.alignnone {
	margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignleft {
	margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignright {
	margin: 0.313rem 0 1.25rem 1.25rem;
}

@media (max-width: 991px) {
	.alignleft,
	.alignright,
	a img.alignright,
	a img.alignnone,
	a img.alignleft {
		display: block;
		float: none;
		margin: 0;
	}
}
/* Typography END */

/* Header */
.admin-bar {
	padding-top: var(--admin-bar-height);
}

.admin-bar .header {
	top: var(--admin-bar-height);
}

#wpadminbar {
	position: fixed;
}

.header {
	height: var(--header-height);
	background: var(--grey-1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
}

.header__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--white);
	padding: 0 30px 0 0;
	position: relative;
	z-index: 3;
}

.header__title h1 {
	display: contents;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.header__burger {
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	position: relative;
	z-index: 3;
}

.hamburger {
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.menu-opened .hamburger .hamburger-inner,
.menu-opened .hamburger .hamburger-inner::before,
.menu-opened .hamburger .hamburger-inner::after {
	background-color: var(--white);
}

.hamburger-box {
	width: 29px;
	height: 20px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: calc(50% - 1px);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 29px;
	height: 2px;
	background-color: var(--white);
	border-radius: 0;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: '';
	display: block;
}
.hamburger-inner::before {
	top: -9px;
}
.hamburger-inner::after {
	bottom: -9px;
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.menu-opened .hamburger--spin .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-opened .hamburger--spin .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.menu-opened .hamburger--spin .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header__title,
.header__burger {
	display: none;
}

.header__menu {
	position: relative;
	z-index: 2;
}

@media (max-width: 991px) {
	.header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: var(--header-height);
		position: relative;
	}

	.header__inner::before,
	.header__inner::after {
		content: '';
		top: 0;
		left: 0;
		right: 0;
	}

	.header__inner::before {
		background: var(--grey-1);
		position: absolute;
		bottom: 0;
		z-index: 3;
	}

	.header__inner::after {
		position: fixed;
		z-index: 1;
	}

	.menu-opened .header__inner::after {
		bottom: 0;
	}

	.header__title,
	.header__burger {
		display: flex;
	}
}

.main-menu {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: max-content;
	column-gap: 30px;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-menu__item {
	display: flex;
	align-items: center;
	height: var(--header-height);
}

.main-menu__toggle {
	display: none;
}

.main-menu__link {
	font-size: 14px;
}

@media (max-width: 1199px) {
	.main-menu__link {
		font-size: 13px;
	}
}

.main-menu__link,
.child-menu__link {
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--white);
	position: relative;
}

.main-menu__link:after,
.child-menu__link:after {
	content: '';
	width: 0%;
	height: 1px;
	background: var(--white);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: var(--transition-time);
}

.main-menu__link.active,
.child-menu__link.active {
	color: var(--grey-2);
	pointer-events: none;
}

@media (min-width: 992px) {
	.main-menu__link:hover,
	.child-menu__link:hover,
	.main-menu__link:focus,
	.child-menu__link:focus {
		color: var(--white);
	}

	.main-menu__link:not(.active):hover:after,
	.child-menu__link:not(.active):hover:after {
		width: 100%;
	}
}

.main-menu__dropdown {
	position: relative;
}

@media (min-width: 992px) {
	.main-menu__dropdown:hover .child-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
}

.child-menu {
	display: grid;
	row-gap: 10px;
	padding: 20px;
	background: var(--grey-1);
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition-time);
}

.child-menu__link {
	font-size: 12px;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.child-menu[hidden] {
		display: grid;
	}
}

@media (max-width: 991px) {
	.menu-opened {
		overflow-y: hidden;
	}

	.header__menu {
		display: flex;
		align-items: center;
		justify-content: center;
		background: var(--grey-1);
		/* height: 100vh; */
		position: fixed;
		left: 0;
		right: 0;
		bottom: 100%;
		transform: translate(0, 0);
		transition: transform var(--transition-time);
	}

	.menu-opened .header__menu {
		transform: translate(0, calc(99% + var(--header-height)));
	}

	.admin-bar.menu-opened .header__menu {
		transform: translate(0, calc(100% + var(--header-height) + var(--admin-bar-height)));
	}

	.main-menu {
		grid-auto-flow: row;
		grid-auto-rows: min-content;
		row-gap: 25px;
		max-height: calc(100vh - var(--header-height));
		width: 100%;
		padding: 25px 0;
		overflow-y: auto;
	}

	.admin-bar .main-menu {
		max-height: calc(100vh - var(--admin-bar-height) - var(--header-height));
	}

	.main-menu__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0 0 0 20px;
		border: 0;
		background: transparent;
	}

	.main-menu__toggle svg {
		transition: var(--transition-time);
		transform-origin: center;
	}

	.item-opened > .main-menu__toggle svg {
		transform: rotate(180deg);
	}

	.main-menu__item {
		justify-content: center;
		flex-wrap: wrap;
		height: auto;
	}

	.main-menu__link {
		display: flex;
	}

	.child-menu {
		text-align: center;
		width: 100%;
		padding: 35px 0 10px;
		position: relative;
		top: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		transition: unset;
	}

	.child-menu[hidden] {
		display: none;
	}
}
/* Header END */

/* Footer */
.footer {
	padding: 50px 0;
	background: var(--black);
}

.footer__inner {
	display: grid;
	grid-template-columns: 657px 1fr 526px;
	grid-template-rows: min-content min-content;
	row-gap: 50px;
}

.footer__logo {
	grid-row: 1/2;
	grid-column: 1/2;
	display: flex;
	align-items: center;
	width: 100%;
}

.footer__logo .prefix {
	font-size: 62px;
	font-weight: 800;
	line-height: 0.75;
	text-transform: uppercase;
	margin: 0 15px 0 0;
	color: var(--grey-2);
}

.footer__logo .text {
	font-size: 15px;
	font-weight: 600;
	line-height: 218%;
	letter-spacing: 0.089em;
	text-transform: uppercase;
	text-align: justify;
	color: var(--grey-2);
}

.footer__logo .text > span {
	letter-spacing: 0.165em;
}

.footer-menu {
	grid-row: -1/-2;
	grid-column: 1/2;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 0 25px;
	margin: -20px -25px 0 -25px;
	list-style: none;
}

.footer-menu__item {
	padding: 20px 25px 0;
}

.footer-menu__link {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	position: relative;
}

.footer-menu__link.active {
	color: var(--grey-2);
	pointer-events: none;
}

@media (min-width: 992px) {
	.footer-menu__link:hover {
		color: var(--red);
	}
}

.footer__description {
	grid-row: 1/-1;
	grid-column: -1/-2;
	font-size: 12px;
	line-height: 1.3;
	color: var(--white);
}

@media (max-width: 1399px) {
	.footer__inner {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, min-content);
		row-gap: 30px;
	}

	.footer-menu {
		margin: -20px auto 0;
	}

	.footer__logo {
		grid-row: 1/2;
		grid-column: 1/-1;
		justify-content: center;
	}

	.footer__description {
		grid-row: 3/4;
		grid-column: 1/-1;
	}

	.footer-menu {
		grid-row: 2/3;
		grid-column: 1/-1;
		padding: 0;
	}
}

@media (max-width: 991px) {
	.footer__logo {
		max-width: 100%;
	}

	.footer-menu {
		margin: -20px -25px 0;
		max-width: unset;
	}

	.footer__logo .prefix {
		font-size: calc(1vw * (66 / (767 / 100)));
	}

	.footer__logo .text {
		font-size: calc(1vw * (16 / (767 / 100)));
	}
}

@media (max-width: 767px) {
	.footer__logo .prefix {
		margin: 0 12px 0 0;
		font-size: calc(1vw * (63 / (767 / 100)));
	}

	.footer__logo .text {
		font-size: calc(1vw * (16 / (767 / 100)));
		line-height: 208%;
	}
}

@media (max-width: 575px) {
	.footer__logo {
		min-width: 306px;
	}

	.footer__logo .prefix {
		font-size: calc(1vw * (58 / (767 / 100)));
	}

	.footer__logo .text {
		font-size: calc(1vw * (15 / (767 / 100)));
	}
}

@media (max-width: 359px) {
	.footer__logo .prefix {
		font-size: 27px;
	}

	.footer__logo .text {
		font-size: 7px;
	}
}

/* Footer END */

/* Home */
.title-home-wrap {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto 20px;
	padding: 0 var(--container-padding);
}

.title-home {
	display: flex;
	align-items: center;
}

.title-home > span {
	display: block;
	font-size: 96px;
	font-weight: 800;
	line-height: 0.75;
	margin: 0 15px 0 0;
	color: var(--red);
}

.title-home h1 {
	display: block;
	font-size: 32px;
	font-weight: 900;
	line-height: 47px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	max-width: 420px;
	margin: 0;
}

.title-home h1 > span {
	letter-spacing: 0.135em;
}

@media (max-width: 991px) {
	.title-home {
		max-width: 100%;
	}

	.title-home > span {
		font-size: calc(1vw * (102 / (767 / 100)));
	}

	.title-home h1 {
		font-size: calc(1vw * (33 / (767 / 100)));
		line-height: 140%;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.title-home > span {
		font-size: calc(1vw * (102 / (767 / 100)));
	}

	.title-home h1 {
		font-size: calc(1vw * (32 / (767 / 100)));
		line-height: 140%;
		max-width: 100%;
	}
}

@media (max-width: 575px) {
	.title-home > span {
		font-size: calc(1vw * (94 / (767 / 100)));
	}

	.title-home h1 {
		font-size: calc(1vw * (30 / (767 / 100)));
		line-height: 140%;
		max-width: 100%;
	}
}

@media (max-width: 359px) {
	.title-home > span {
		font-size: 44px;
	}

	.title-home h1 {
		font-size: 14px;
	}
}

/* @media (max-width: 767px) {
	.title-home > span {
		font-size: 75px;
	}

	.title-home h1 {
		font-size: 24px;
		line-height: 38px;
		max-width: 316px;
	}
}

@media (max-width: 575px) {
	.title-home > span {
		font-size: 44px;
	}

	.title-home h1 {
		font-size: 14px;
		line-height: 20px;
		max-width: 200px;
	}
} */
/* Home NED */

/* Page */
.title-page {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	padding: 0 var(--container-padding);
	max-width: var(--container);
}

.category .title-page {
	margin: 0 auto 50px;
}

.title-page span,
.title-page div,
.title-page h1 {
	display: block;
	font-size: 64px;
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.title-page span {
	color: var(--red);
}

.title-page div {
	padding: 0 15px;
}

.title-page h1 {
	margin: 0;
	letter-spacing: 0.05em;
}

@media (max-width: 991px) {
	.title-page {
		display: none;
	}
}
/* Page END */

/* Module */
.module {
	padding: 25px 0;
}

.module__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 0.75;
	margin: 0 0 20px;
	position: relative;
}

.module__title::before {
	content: '';
	width: 100%;
	height: 2px;
	background: var(--grey-3);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}

.module__title a,
.module__title span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--black);
	background: var(--white);
	padding: 0 5px 0 12px;
	margin: 0 0 0 10px;
	position: relative;
}

.module__title a::before,
.module__title span::before {
	content: '';
	width: 2px;
	height: 100%;
	background: var(--red);
	position: absolute;
	top: 0;
	left: 5px;
}

@media (min-width: 992px) {
	.module__title a:hover {
		color: var(--red);
	}
}

.category__list,
.category-banner__list,
.category-row__list,
.category-author__list {
	display: grid;
	grid-auto-rows: min-content;
	column-gap: 24px;
	row-gap: 24px;
}

.category__list,
.category-banner__list {
	grid-template-columns: repeat(3, 1fr);
}

.category-row__list.column-6 {
	grid-template-columns: repeat(6, 1fr);
}

.category-row__list.column-4 {
	grid-template-columns: repeat(4, 1fr);
}

.category-author__list {
	grid-template-columns: repeat(4, 1fr);
}

.category-banner {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 306px);
	column-gap: 24px;
	padding-bottom: 30px;
}

.category-banner .module__title {
	grid-row: 1/2;
	grid-column: 1/-1;
}

.category-banner__media {
	position: relative;
}

.category-banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 1399px) {
	.category__list,
	.category-banner__list {
		row-gap: 45px;
	}

	.category-banner {
		grid-template-columns: 1fr minmax(auto, 261px);
	}

	.category-row__list.column-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	.category-row__list.column-4 .article-box:nth-child(4) {
		display: none;
	}
}

@media (max-width: 1199px) {
	.category__list,
	.category-banner__list {
		row-gap: 20px;
	}

	.category-row__list.column-6 {
		grid-template-columns: repeat(4, 1fr);
	}

	.category-row__list.column-6 .article-box:nth-child(5),
	.category-row__list.column-6 .article-box:nth-child(6) {
		display: none;
	}
}

@media (max-width: 991px) {
	.category-banner {
		grid-template-columns: 1fr;
		padding-bottom: 25px;
	}

	.category-banner__media {
		display: none;
	}

	.category-row__list.column-6 {
		grid-template-columns: repeat(3, 1fr);
	}

	.category-row__list.column-6 .article-box:nth-child(5),
	.category-row__list.column-6 .article-box:nth-child(6) {
		display: block;
	}

	.category-author__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.category__list,
	.category-banner__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.category__list .article-box:nth-child(3),
	.category-banner__list .article-box:nth-child(9) {
		display: none;
	}

	.category-row__list.column-6 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.category__list,
	.category-banner__list {
		grid-template-columns: repeat(1, 1fr);
	}

	.category-row__list.column-6,
	.category-author__list {
		grid-template-columns: 1fr;
	}
}
/* Module END */

/* Article box */
.article-box__media,
.article-big__media {
	padding: 56.25% 0 0;
	position: relative;
}

.article-blog__media,
.article-author__media {
	padding: 178.82% 0 0;
	position: relative;
}

.article-box__image,
.article-big__image,
.article-blog__image,
.article-author__image {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.article-author__image,
.article-blog__image {
	filter: grayscale(1);
	transition: var(--transition-time);
}

.article-box__title {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	margin: 10px 0 0;
	color: var(--black);
	transition: var(--transition-time);
}

.article-big__excerpt {
	transition: var(--transition-time);
}

.highlight .article-box__title,
.highlight .article-big__title,
.highlight .article-blog__title,
.highlight .article-author__title {
	color: var(--red);
}

@media (min-width: 992px) {
	.article-box:hover .article-box__title,
	.article-big:hover .article-big__title,
	.article-big:hover .article-big__excerpt,
	.article-blog:hover .article-blog__title,
	.article-author:hover .article-author__title {
		color: var(--red);
	}

	.article-author:hover .article-author__image,
	.article-blog:hover .article-blog__image {
		filter: grayscale(0);
	}
}

.article-big,
.article-blog {
	display: grid;
	column-gap: 24px;
	padding: 25px 0;
	border-bottom: 2px solid var(--grey-3);
}

.article-big {
	grid-template-columns: 430px 1fr;
}

.article-big.no-image {
	grid-template-columns: 1fr;
}

.article-blog {
	grid-template-columns: 85px 1fr;
}

.article-big:first-child,
.article-blog:first-child {
	border-top: 2px solid var(--grey-3);
}

.article-big:last-child,
.article-blog:last-child {
	border-bottom: 0;
}

.article-blog__author {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--grey-2);
	margin: 0 0 15px;
}

.article-big__title,
.article-blog__title a {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.22;
	color: var(--black);
	transition: var(--transition-time);
}

.article-big__title {
	margin: 0 0 20px;
}

.article-blog__title {
	margin: 0 0 15px;
}

.article-big__excerpt,
.article-blog__excerpt a {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	color: var(--black);
}

.article-big__excerpt {
	margin: 0 0 20px;
}

.article-blog__excerpt {
	margin: 0 0 15px;
}

.article-big__date,
.article-blog__date,
.article-big__author {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--grey-2);
}

.article-big__date {
	color: var(--black);
	margin: 0 0 10px;
}

.article-big__author {
	color: var(--black);
}

.article-author {
	display: grid;
	grid-template-columns: 85px 1fr;
	column-gap: 24px;
	row-gap: 10px;
}

.article-author__author {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 10px;
	color: var(--black);
}

.article-author__title {
	font-size: 14px;
	font-weight: 400;
	color: var(--black);
	/*word-break: break-all;*/
	transition: var(--transition-time);
}

@media (min-width: 992px) {
	.article-blog__author:hover,
	.article-blog__title a:hover,
	.article-blog__excerpt a:hover {
		color: var(--red);
	}
}

@media (max-width: 991px) {
	.article-big {
		grid-template-columns: 1fr;
		row-gap: 24px;
	}

	.article-blog__author {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.article-blog {
		grid-template-columns: 50px 1fr;
	}
}
/* Article box END */

/* Author posts */
.author-header {
	display: grid;
	grid-template-columns: 85px 1fr;
	grid-template-rows: 1fr min-content min-content 1fr;
	row-gap: 15px;
	column-gap: 20px;
	align-items: center;
	margin: 0 0 50px;
}

.author-header__media {
	grid-row: 1/-1;
}

.author-header__title {
	grid-row: 2/3;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

.author-header__description {
	grid-row: 3/4;
}

@media (max-width: 991px) {
	.author-header__title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.author-header {
		grid-template-columns: 50px 1fr;
		grid-template-rows: min-content 1fr;
		margin: 0 0 30px;
	}

	.author-header__media {
		grid-row: 2/3;
	}

	.author-header__title {
		grid-column: 1/-1;
		grid-row: 1/2;
		font-size: 24px;
	}

	.author-header__description {
		grid-row: 2/3;
	}
}
/* Author posts END */

/* Horizontal banner */
.horizontal-banner {
	margin: auto 0 0;
	padding: 25px 0 0;
}

.horizontal-banner__media {
	display: block;
	height: 250px;
	position: relative;
}

.horizontal-banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
/* Horizontal banner END */

/* Categories posts */
@media (max-width: 991px) {
	.page-template-page-categories-posts .category-row:first-child {
		padding-top: 0;
	}
}

@media (max-width: 575px) {
	.page-template-page-categories-posts .module__title {
		margin: 0;
	}

	.page-template-page-categories-posts .module__title::before {
		display: none;
	}

	.page-template-page-categories-posts .module__title a,
	.page-template-page-categories-posts .module__title span {
		margin: 0;
	}

	.page-template-page-categories-posts .category-row__list {
		display: none;
	}

	.page-template-page-categories-posts .category-row {
		padding: 15px 0;
	}
}
/* Categories posts EMD */

/* Pagination */
.pagination {
	font-size: 20px;
	padding: 25px 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-numbers {
	padding: 0 2.5px;
	color: var(--red);
}

.page-numbers.current {
	text-decoration: underline;
}

.page-numbers svg {
	fill: var(--red);
}

.page-numbers.next {
	padding: 0 0 0 10px;
}

.page-numbers.prev {
	padding: 0 10px 0 0;
}

@media (max-width: 575px) {
	.pagination {
		padding: 5px 0;
	}
}
/* Pagination END */

/* Single article */
.single-header {
	display: grid;
	grid-template-columns: 85px max-content max-content 1fr;
	grid-template-rows: min-content min-content 1fr;
	column-gap: 20px;
}

.single-header__media {
	grid-column: 1/2;
	grid-row: 1/4;
}

.single-header__title {
	grid-column: 2/5;
	grid-row: 1/2;
}

.grievance-review-form__title {
	text-align: center;
}

.single-header__title,
.grievance-review-form__title,
.grievance-review__title {
	font-size: 48px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

.grievance-review__bottom {
	margin: 30px 0 0;
	display: flex;
	justify-content: flex-end;
}

.grievance-review__link {
	font-size: 14px;
	font-weight: 500;
}

.single-header__author {
	grid-column: 2/3;
	grid-row: 2/3;
	margin: 20px 20px 0 0;
}

.single-header__date {
	grid-column: 3/4;
	grid-row: 2/3;
	margin: 20px 0 0;
}

.single-header__author,
.single-header__date {
	font-size: 14px;
	font-weight: 700;
	color: var(--grey-2);
}

.single-header2 {
	display: grid;
	grid-template-columns: max-content max-content  1fr;
}

.single-header2 .single-header__title {
	grid-row: 1/2;
	grid-column: 1/-1;
}

.single-header2 .single-header__date {
	grid-row: 2/3;
	grid-column: 1/2;
	margin: 20px 0 0;
}

.single-header2 .single-header__author {
	grid-row: 2/3;
	grid-column: 2/3;
	margin: 20px 0 0 20px;
}

.single__image {
	float: left;
	margin: 0 24px 10px 0;
	max-width: 450px;
}

.single__description {
	margin: 20px 0 0;
	border-top: 2px solid var(--grey-3);
	border-bottom: 2px solid var(--grey-3);
}

.grievance-review__description {
	margin: 25px 0 0;
}

.editor {
	padding: 25px 0 15px;
}

.editor [class*='wp-image'] {
	height: auto;
}

.editor h2 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px;
}

.editor h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 10px;
}

.editor p {
	margin: 0 0 10px;
}

.fb-comments {
	padding: 20px 0 25px;
}

@media (max-width: 991px) {
	.single-header__title,
	.grievance-review-form__title,
	.grievance-review__title {
		font-size: 36px;
	}

	.single__image {
		float: none;
		margin: 0 0 24px 0;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.single-header {
		grid-template-columns: 50px 1fr;
		grid-template-rows: min-content min-content 1fr min-content;
	}

	.single-header__media {
		grid-column: 1/2;
		grid-row: 1/4;
	}

	.single-header__title {
		grid-column: 1/-1;
		grid-row: 4/5;
		margin: 20px 0 0;
	}

	.single-header__title,
	.grievance-review-form__title,
	.grievance-review__title {
		font-size: 24px;
	}

	.single-header__author {
		grid-column: 2/3;
		grid-row: 1/2;
		margin: 17px 0 0 0;
	}

	.single-header__date {
		grid-column: 2/3;
		grid-row: 2/3;
	}

	.single-header2 {
		display: grid;
		grid-template-columns: max-content 1fr;
	}

	.single-header2 .single-header__date {
		grid-row: 2/3;
		grid-column: 1/-1;
		margin: 20px 0 0;
	}

	.single-header2 .single-header__author {
		grid-row: 3/4;
		grid-column: 1/-1;
		margin: 10px 0 0 0;
	}
}
/* Single article END */

/* Page: Useful */
.useful-list {
	padding: 25px 0;
}

.useful-item {
	display: grid;
	grid-template-columns: 100px 1fr;
	column-gap: 24px;
	padding: 25px 0 30px;
	border-bottom: 2px solid var(--grey-3);

	position: absolute;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: var(--transition-time);
}

.useful-item.active {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
	position: relative;
}

.useful-item:first-child {
	border-top: 2px solid var(--grey-3);
}

.useful-item__media {
	align-self: center;
}

.useful-item__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
	margin: 0 0 15px;
	transition: var(--transition-time);
}

.useful-item__description {
	color: var(--black);
	transition: var(--transition-time);
}

@media (min-width: 992px) {
	a.useful-item:hover .useful-item__title,
	a.useful-item:hover .useful-item__description {
		color: var(--red);
	}
}

.useful-load {
	display: none;
	width: 160px;
	margin: 50px auto 0;
	padding: 0;
	border: 0;
	background: none;
	color: var(--red);
}

.useful-load.active {
	display: grid;
}

@media (max-width: 991px) {
	.useful-list {
		padding: 0 0 25px;
	}
}

@media (max-width: 767px) {
	.useful-list {
		padding: 0 0 5px;
	}
	.useful-item {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}

	.useful-item__media {
		justify-self: center;
	}

	.useful-load {
		margin: 30px auto 0;
	}
}
/* Page: Useful END */

/* Grievance/Review */
.grievance-review {
	padding: 30px 0 0;
}

.grievance-review__buttons-top,
.grievance-review__buttons-bottom {
	display: grid;
	grid-template-columns: max-content max-content;
	column-gap: 30px;
}

.grievance-review__buttons-top {
	margin: 30px 0 20px;
}

.grievance-review__buttons-bottom {
	margin: 30px 0 0;
}

.grievance-review__list {
	display: grid;
	row-gap: 30px;
}

.grievance-review__more {
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
}

.grievance-review__more,
.grievance-review__link {
	font-size: 14px;
	font-weight: 500;
	color: var(--red);
}

.grievance-review-item {
}

.grievance-review-item__title,
.grievance-review-item__description,
.grievance-review-item__name {
	font-size: 14px;
	color: var(--grey-1);
	transition: var(--transition-time);
}

.grievance-review-item__title {
	font-weight: 600;
}

.grievance-review-item__description {
	margin: 8px 0 0;
}

.grievance-review-item__name {
	font-style: italic;
	margin: 8px 0 0;
}

.article-grievance-review__name {
	font-size: 14px;
	font-weight: 700;
	color: var(--grey-2);
	margin: 20px 0 0;
}

.article-grievance-review__description {
	margin: 20px 0;
	border-top: 2px solid var(--grey-3);
	border-bottom: 2px solid var(--grey-3);
}

.article-grievance-review__files {
	display: grid;
	row-gap: 5px;
}

@media (min-width: 992px) {
	.grievance-review-item:hover .grievance-review-item__title,
	.grievance-review-item:hover .grievance-review-item__description,
	.grievance-review-item:hover .grievance-review-item__name {
		color: var(--red);
	}
}

@media (max-width: 991px) {
	.grievance-review {
		padding: 0;
	}

	.grievance-review__buttons-top {
		margin-top: 0;
	}
}

@media (max-width: 575px) {
	.grievance-review__buttons-top,
	.grievance-review__buttons-bottom {
		grid-template-columns: max-content;
		row-gap: 10px;
	}

	.grievance-review__buttons-top {
		margin-bottom: 0;
	}

	.grievance-review__buttons-top {
		justify-content: center;
	}

	.grievance-review__buttons-bottom {
	}
}
/* Grievance/Review END */
