@charset "UTF-8";

/* Stylesheet Guide
== ROOT

== MAIN
=== Popup
=== Default Page Template 
=== Breadcrumbs
=== Buttons
=== Links

== HEADER
=== Preloader
=== Header
=== Logo
=== Header Menu
=== Submenu
=== Lang

== FOOTER
=== Contact Items
=== Social links
=== Address
=== Footer bottom

== HOME
=== Hero Section
=== Home About Section
=== Practices
=== Home News Section

== ABOUT US
=== Hero Section
=== Partners

== PRACTICES
=== Services

== NEWS
=== Archive News
=== Single News
=== Slider

== CONTACTS
=== Map

== 404



*/

/* ROOT */
:root {
	/* Colors */
	--agps-color-1: #584B53;
	--agps-color-2: #9D5C63;
	--agps-color-3: #BDC9DB;
	--agps-color-4: #EEEAE3;
	--agps-color-5: #D9CBB7;
	--agps-color-6: #151515;
	--agps-color-7: #473C43;
	--agps-color-8: #E5E5E5;
	--agps-white: #ffffff;
	--agps-light: #f8f9fa;
	--agps-dark: #1d2327;
	--agps-black: #000000;
	--agps-success: #198754;
	--agps-info: #0dcaf0;
	--agps-warning: #ffc107;
	--agps-danger: #dc3545;
	--agps-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	/* Fonts */
	--agps-font-primary: 'Raleway', sans-serif;
	--agps-font-secondary: 'Roboto';
	--agps-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--agps-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--agps-body-font-size: 1rem;
	--agps-body-font-weight: 400;
	--agps-body-line-height: 1.5;
}

html,
body {
	color: var(--agps-color-1);
	background: var(--agps-white);
}

::-webkit-scrollbar {
	width: 10px;
	height: 8px;
	background-color: var(--agps-light);
}

::-webkit-scrollbar-thumb {
	background-color: var(--agps-color-2);
	border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background-color: rgba(0, 0, 0, 0.5);
}

/* MAIN */
body.lock {
	overflow: hidden;
}

.section .title {
	margin-bottom: 50px;
}

.section__padding {
	margin: 100px 0;
}

/* Popup */
.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 999;
	-webkit-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	background: transparent;
}

.popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #FFFFFF;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), #FFFFFF;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #FFFFFF;
	z-index: 1;
}

.popup.active {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.popup__wrap {
	background: #EEEAE3;
	padding: 100px;
	max-width: 760px;
	font-weight: 600;
	font-size: 24px;
	color: var(--agps-color-1);
	position: relative;
	z-index: 2;
}

.popup__btn__close {
	position: absolute;
	right: 5%;
	top: 10%;
	cursor: pointer;
	opacity: .8;
}

.popup__btn__close:hover {
	opacity: 1;
}

.popup__btn__close svg {
	width: 15px;
	height: 15px;
	fill: var(--agps-color-1);
}

@media (max-width: 1200px) {
	.popup__wrap {
		font-weight: 500;
		font-size: 18px;
		max-width: none;
		width: 90%;
		padding: 80px;
	}
}

@media (max-width: 569px) {
	.popup__wrap {
		font-weight: 500;
		font-size: 16px;
		padding: 30px;
	}
}


/* Default Page Template */
.page__default {
	padding-bottom: 100px;
}

.page__default h1 {
	font-weight: 600;
	font-size: 42px;
	color: var(--agps-color-6);
	margin-bottom: 80px;
}

.page__default h2,
.page__default h3,
.page__default h4,
.page__default h5,
.page__default h6 {
	color: var(--agps-color-6);
	margin-bottom: 50px;
	margin-top: 50px;
}

.page__default ul,
.page__default ol,
.page__default p {
	color: var(--agps-color-1);
	font-weight: 500;
	font-size: 1.25rem;
	font-variant-numeric: lining-nums;
}

.page__default ol li,
.page__default ul li {
	margin-bottom: 1rem;
}


/* Breadcrumbs */
.section__breadcrumbs {
	padding: 60px 0;
	font-weight: 600;
}

.breadcrumbs__separator,
.breadcrumbs__link {
	opacity: .6;
}

.breadcrumbs__link:hover {
	opacity: 1;
}

/* Buttons */
.btn {
	font-weight: 600;
	color: var(--agps-white);
	padding: 1.4375rem 2.5rem;
	background-color: var(--agps-color-1);
}

.btn:hover {
	background-color: var(--agps-color-7);
	color: var(--agps-white);
}

.btn__arrow {
	padding-right: 5rem;
	position: relative;
}

.btn__arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 2.5rem;
	width: 1rem;
	height: 1rem;
	background: url('../img/icons/btn__arrow.svg') 100% no-repeat;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: right .5s ease;
	-o-transition: right .5s ease;
	transition: right .5s ease;
}

.btn__arrow:hover::after {
	right: 1.875rem;
}

.btn_disabled {
	background: var(--agps-color-1);
	opacity: 0.6;
	pointer-events: none;
}

/* To top button */
.to__top {
	border: none;
	background-color: var(--agps-white);
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	width: 2.8rem;
	height: 2.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-animation: bounce-up ease-in-out infinite 5s;
	animation: bounce-up ease-in-out infinite 5s;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.11);
	z-index: 998;
}

.to__top.active {
	opacity: 1;
	pointer-events: auto;
}

.to__top span:after,
.to__top span::before {
	content: '';
	position: absolute;
	top: 13px;
	width: 2px;
	height: 17px;
	background: var(--agps-color-1);
	border-radius: 40px;
	-webkit-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}

.to__top span::before {
	left: 16px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.to__top span:after {
	right: 16px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.to__top:hover {
	background: var(--agps-color-1);
	-webkit-box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 0.5);
	box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 0.5);
}

.to__top:hover span::after,
.to__top:hover span::before {
	background: #fff;
}

@-webkit-keyframes bounce-up {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	10% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px);
	}

	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	30% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	40% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounce-up {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	10% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-8px);
	}

	20% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	30% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	40% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* Links */
a:hover {
	color: var(--agps-color-2);
}

.link {
	color: var(--agps-color-2);
	font-weight: 600;
}

.link__arrow {
	padding-right: 3rem;
	position: relative;
}

.link__arrow.mob {
	display: none;
}

.link__arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1.5rem;
	width: 1rem;
	height: 1rem;
	background: url('../img/icons/link__arrow.svg') 100% no-repeat;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: right .5s ease;
	-o-transition: right .5s ease;
	transition: right .5s ease;
}

.link__arrow:hover::after {
	right: .875rem;
}

.link_disabled {
	opacity: 0.6;
	pointer-events: none;
}

.link__bottom {
	position: relative;
}


.link__bottom::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: transparent;
	-webkit-transition: width .5s ease;
	-o-transition: width .5s ease;
	transition: width .5s ease;
	opacity: 0;
}

.link__bottom:hover {
	color: var(--agps-white);
	opacity: 1;
}

.link__bottom:hover::after {
	background-color: var(--agps-white);
	opacity: 1;
	width: 100%;
}

.link__bottom_white:hover::after {
	background-color: var(--agps-white);
}

.link__bottom_main_color:hover::after {
	background-color: var(--agps-color-2);
}

@media (max-width:1200px) {
	.section__padding {
		margin: 60px 0;
	}
}

@media (max-width:769px) {
	.section .title {
		margin-bottom: 40px;
	}

	.section__padding {
		margin: 60px 0;
	}

	.page__default h1 {
		font-size: 26px;
		margin-bottom: 40px;
	}

	.section__breadcrumbs {
		padding: 50px 0 40px;
	}

	.page__default ul,
	.page__default ol,
	.page__default p {
		font-size: 18px;
	}

	.page__default h2,
	.page__default h3,
	.page__default h4,
	.page__default h5,
	.page__default h6 {
		margin-bottom: 20px;
		margin-top: 40px;
	}

	.page__default {
		padding-bottom: 60px;
	}
}

@media (max-width:577px) {
	.section .title {
		margin-bottom: 30px;
	}

	.section__padding {
		margin: 40px 0;
	}

	/* .btn__arrow {
		width: 100%;
	} */

	.link__arrow {
		display: block;
		width: 100%;
	}

	.link__arrow::after {
		right: 10px;
	}

	.link__arrow:hover::after {
		right: 0px;
	}

	.link__arrow.pc {
		display: none;
	}

	.link__arrow.mob {
		display: block;
	}

	.to__top {
		right: 2rem;
		bottom: 2rem;
	}

	.page__default h1 {
		font-size: 18px;
	}
}

/* HEADER */
/* Preloader */
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	background: rgb(0 0 0 / 0.7);
	z-index: 9999;
	display: none;
}

.preloader span {
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	overflow: hidden;
}

.preloader span::after {
	content: '';
	margin: auto;
	border: 10px solid #787878;
	border-top-color: var(--agps-color-3);
	border-radius: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-animation: loading 1.5s ease infinite;
	animation: loading 1.5s ease infinite;
}

@-webkit-keyframes loading {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loading {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Header */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: var(--agps-white);
	-webkit-transition: -webkit-transform 0.7s 0.3s ease;
	-webkit-transition: -webkit-transform 0.7s .3s ease;
	transition: -webkit-transform 0.7s .3s ease;
	-o-transition: transform 0.7s .3s ease;
	transition: transform 0.7s .3s ease;
	transition: transform 0.7s .3s ease, -webkit-transform 0.7s .3s ease;
	-webkit-box-shadow: 0 0px 5px 2px rgb(0 0 0 / 15%);
	box-shadow: 0 0px 5px 2px rgb(0 0 0 / 15%);
}

#header.scroll {
	-webkit-transform: translate(0, -100%);
	-ms-transform: translate(0, -100%);
	transform: translate(0, -100%);
}

.header ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header__wrap {
	position: relative;
	height: 100px;
}

/* Logo */
.logo {
	max-width: 120px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 120px;
	flex: 0 0 120px;
}

.logo__link img {
	width: 100%;
}

/* Menu */
.menu__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header__menu__items>li {
	padding: 1rem 2rem;
}

.footer__menu__items li a,
.header__menu__items li a {
	color: var(--agps-color-1);
	opacity: .8;
	font-weight: 600;
	position: relative;
}

.header__menu__items li a::after {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 0;
	height: 1px;
	background: transparent;
	-webkit-transition: width .5s ease;
	-o-transition: width .5s ease;
	transition: width .5s ease;
	opacity: 0;
}

.header__menu__items li a:hover {
	color: var(--agps-color-2);
	opacity: 1;
}

.header__menu__items li a:hover::after {
	background: var(--agps-color-2);
	opacity: 1;
	width: 100%;
}

.header__burger {
	display: none;
}

.header__menu__items li.current-menu-item a,
.header__menu__items li.current_page_item a {
	color: var(--agps-color-2);
}


/* Submenu */
.menu__items>li.menu-item-has-children {
	position: relative;
}

.menu__items>li .sub-menu {
	width: 280px;
	position: absolute;
	padding: 30px;
	top: 100%;
	left: -50%;
	background: #fff;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: all;
	-webkit-transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
	-o-transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
	transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
	-webkit-box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.menu__items>li .sub-menu li:not(:last-child) {
	margin-bottom: 10px;
}

.menu__items>li:hover .sub-menu {
	display: block;
	pointer-events: all;
	opacity: 1;
	visibility: visible;
}

li.menu-item-has-children::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 15px;
	width: 6px;
	height: 6px;
	background: url('../img/icons/arrow_down.svg') 100% no-repeat;
	-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
}

li.menu-item-has-children:hover::before {
	-webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 760px) {
	.header__wrap {
		height: 70px;
	}

	.logo {
		max-width: 80px;
		margin-left: 5px;
		-ms-flex: 0 0 80px;
		-webkit-box-flex: 0;
		flex: 0 0 80px;
	}

	.header__menu {
		position: fixed;
		top: 70px;
		right: -100%;
		width: 100%;
		height: 100%;
		overflow: auto;
		background: var(--agps-color-1);
		padding: 10px;
		-webkit-transition: all .5s cubic-bezier(.5, .25, .015, 1);
		-o-transition: all .5s cubic-bezier(.5, .25, .015, 1);
		transition: all .5s cubic-bezier(.5, .25, .015, 1);
	}

	.header__menu.active {
		right: 0;
	}

	.header__menu .menu__items {
		display: block;
		margin: 60px 0 0 20px;
		width: 100%;
	}

	.header__menu .menu__items li {
		margin-bottom: 10px;
		padding: 0;
		position: relative;
	}

	.header__menu .menu__items li a {
		color: var(--agps-white);
		opacity: .8;
		font-weight: 400;
		font-size: 35px;
	}

	.header__menu .menu__items li.current-menu-item a,
	.header__menu .menu__items li.current_page_item a {
		color: var(--agps-color-2);
		opacity: .8;
	}

	.header__menu .menu__items .sub-menu {
		padding: 0;
	}

	.header__menu .menu__items .sub-menu li a {
		font-size: 16px;
		font-weight: 500;
	}

	li.menu-item-has-children::before {
		top: 25px;
		right: 10px;
		width: 13px;
		height: 8px;
		background: url('../img/icons/arrow_down_white.svg') 100% no-repeat;
	}

	li.menu-item-has-children:hover::before {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	li.menu-item-has-children.active::before {
		-webkit-transform: translateY(-50%) rotate(180deg);
		-ms-transform: translateY(-50%) rotate(180deg);
		transform: translateY(-50%) rotate(180deg);
	}

	.menu__items>li.menu-item-has-children .sub-menu {
		margin-top: 30px;
		width: auto;
		position: initial;
		padding: 0;
		background: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
		z-index: 2;
		overflow: hidden;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.menu__items>li .sub-menu li a {
		color: var(--agps-white);
		opacity: .8;
		font-weight: 500;
	}

	.header__burger {
		display: block;
		position: relative;
		width: 20px;
		height: 16px;
		z-index: 3;
		cursor: pointer;
		margin-right: 5px;
	}

	.header__burger:before {
		top: 0;
	}

	.header__burger span {
		background-color: var(--agps-color-1);
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		top: 7px;
		-webkit-transition: all .5s ease 0s;
		-o-transition: all .5s ease 0s;
		transition: all .5s ease 0s;
	}

	.header__burger:before,
	.header__burger:after {
		content: '';
		background-color: var(--agps-color-1);
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		-webkit-transition: all .5s ease 0s;
		-o-transition: all .5s ease 0s;
		transition: all .5s ease 0s;
	}

	.header__burger:after {
		bottom: 0;
	}

	.header__burger.active:before {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 7px;
	}

	.header__burger.active span {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	.header__burger.active:after {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 7px;
	}


}

/* Lang */
.lang {
	margin-left: 100px;
}

.wpml-ls-item-legacy-dropdown {
	position: relative;
}

.wpml-ls-item-legacy-dropdown>a {
	color: var(--agps-color-1);
	font-weight: 600;
	padding: 10px 12px;
	line-height: 1;
	display: block;
	text-align: center;
	position: relative;
	z-index: 2;
	width: 45px;
	opacity: 0.4;
}

.wpml-ls-item-legacy-dropdown:hover ul.wpml-ls-sub-menu {
	opacity: 1;
	visibility: visible;
}

.wpml-ls-sub-menu {
	opacity: 0;
	visibility: hidden;

	position: absolute;
	top: calc(100% - 15px);
	left: 0;
	display: block;
	text-align: center;
	z-index: 1;
	width: 45px;
	-webkit-transition: opacity .25s ease;
	-o-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.wpml-ls-sub-menu li a {
	color: var(--agps-color-1);
	font-weight: 500;
	padding: 7px;
	width: 45px;
	line-height: 1;
	opacity: .8;
}

.wpml-ls-item-legacy-dropdown:hover>a {
	color: var(--agps-color-1);
	opacity: 1;
}

.wpml-ls-sub-menu li:first-child a {
	padding-top: 15px;
}

.wpml-ls-sub-menu li a:hover {
	color: var(--agps-color-1);
	opacity: 1;
}

@media (max-width: 993px) {
	.lang {
		margin-left: 0px;
	}
}

@media (max-width: 767px) {
	.lang {
		margin-right: 20px;
		margin-left: 20px;
	}

	.wpml-ls-item-legacy-dropdown>a {
		padding: 7px 12px;
	}
}



/* FOOTER */
.footer {
	background-color: var(--agps-color-1);
	color: var(--agps-white);
}

.footer__wrap {
	padding: 100px 0 40px;
}

/* Contact Items */
.contacts__item svg {
	fill: var(--agps-color-3);
	width: 27px;
}

.contacts__item__link {
	font-weight: 500;
	font-size: 36px;
	color: var(--agps-white);
	margin-left: 20px;
	font-variant-numeric: lining-nums;
}

/* Social links */
.socials {
	margin-top: 10px;
}

.socials__item {
	width: 40px;
	height: 40px;
	background: rgba(189, 201, 219, 0.3);
	border-radius: 50px;
}

.socials__item:not(:last-child) {
	margin-right: 10px;
}

.socials__item img {
	width: 15px;
}

.socials__item:hover {
	background: var(--agps-color-2);
}

/* Address */
.address {
	color: var(--agps-white);
	font-weight: 500;
	font-size: 36px;
	line-height: 1.7;
	text-align: right;
}

.address__link {
	color: var(--agps-white);
}

/* Footer bottom */
.footer__bottom {
	margin-top: 60px;
}

/* Copyright */
.copyright {
	opacity: .8;
}

/* Footer Menu */
.footer__menu__items {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.footer__menu__items li a {
	color: var(--agps-white);
	opacity: .8;
	font-weight: 400;
}

.footer__menu__items li a:hover {
	color: var(--agps-white);
	opacity: 1;
}

.footer__menu__items li a:hover::after {
	background: var(--agps-white);
}

/* Developer */
.developer {
	text-align: right;
}

.copyright,
.developer a {
	color: rgb(255 255 255 / 0.8);
}

@media (max-width:769px) {
	.footer__wrap {
		padding: 80px 0 40px;
	}

	.contacts__item {
		margin-bottom: 20px;
	}

	.contacts__item__link {
		font-size: 26px;
	}

	.contacts__item svg {
		width: 24px;
	}

	.address {
		font-size: 26px;
		line-height: inherit;
		text-align: left;
		margin-top: 40px;
	}

	._order_1 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin-top: 60px;
	}

	._order_3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.footer__menu__items.menu__items {
		display: block;
	}

	.footer__menu__items .menu-item:not(:last-child) {
		margin-bottom: 15px;
	}

	.developer {
		text-align: left;
		margin-top: 40px;
	}
}

@media (max-width: 569px) {

	.address {
		font-size: 16px;
	}

	.contacts__item__link {
		font-size: 16px;
		margin-left: 15px;
	}

	.developer a,
	.copyright,
	.footer__menu__items li a {
		font-size: 14px;
	}

	.contacts__item svg {
		width: 17px;
	}
}

/* HOME */
/* Hero Section*/
.hero {
	background: var(--agps-color-1);
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hero__bg {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero__bg::after {
	content: '';
	position: absolute;
	top: -185px;
	right: 10%;
	z-index: 0;
	width: 720px;
	height: 1080px;
	background-image: url("../img/hero_logo.svg");
	background-repeat: no-repeat;
	background-size: 100%;
}

.section__hero__wrap {
	min-height: 90vh;
	z-index: 1;
	position: relative;
}

.hero__logo {
	margin-top: 50px;
}

.hero__logo img {
	width: 360px;
}

.hero__title {
	margin-top: 100px;
	margin-bottom: 60px;
}

.hero__title h1 {
	color: var(--agps-white);
	line-height: 1;
	font-size: 90px;
}

.hero__desc h4 {
	color: var(--agps-white);
	opacity: 0.8;
}

.hero__title_h2 h1 {
	font-size: 70px;
	line-height: 1.2;
}

.hero__desc_small p {
	font-weight: 600;
	font-size: 24px;
	max-width: 50%;
	color: var(--agps-white);
	opacity: 0.8;
}

/* Home About Section */
.home__about {
	background-color: var(--agps-color-4);
	position: relative;
	overflow: hidden;
}

.home__about__bg {
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	right: 0;
}

.home__about_content {
	height: 700px;
	padding: 50px 0;

}

.home__about_content p {
	font-weight: 600;
	font-size: 24px;
	color: #584B53;
	opacity: 0.8;
	max-width: 80%;
	margin: 50px 0;
}

/* Practices */
.practices {
	padding: 100px 0 150px;
}

.items {
	margin-top: 60px;
}

.item__col {
	margin-bottom: 24px;
}

.item {
	background-color: var(--agps-color-4);
	padding: 60px 60px 40px;
	height: 100%;
}

.item:hover {
	background-color: var(--agps-color-5);
}

.item__col:nth-last-child(-n+2),
.item__col:last-child {
	margin-bottom: 0px;
}


.practices__item__img {
	width: 80px;
}

.practices__item__img img {
	-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease;
}

.practices__item:hover .practices__item__img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.practices__item:hover .link__arrow::after {
	right: 0.875rem;
}


.practices__item__title h5 {
	margin: 80px 0 30px;
	line-height: 1.5;
}

/* Home News Section */
.home__news {
	background-color: var(--agps-color-4);
	padding: 80px 0 40px;
}

.home__news__items {
	margin-top: 30px;
}

.slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.home__news__item__title h6 {
	color: var(--agps-color-6);
}

.home__news__item__meta {
	padding: 20px 0;
}

.date {
	font-weight: 600;
	color: var(--agps-color-1);
	opacity: 0.6;
}

.home__news__item__meta .date {
	max-width: 20%;
}

.home__news__item__meta .tags {
	max-width: 80%;
	padding-left: 20px;
	text-align: right;
}

@media (max-width:1500px) {
	.hero__bg::after {
		right: -85px;
		background-size: 85%;
		top: -85px;
	}

	.hero__logo {
		margin-top: 10px;
	}

	.hero__logo img {
		width: 300px;
	}

	.hero__title {
		margin-top: 50px;
	}
}

@media (max-width:992px) {
	.hero__bg::after {
		right: -255px;
		background-size: 60%;
		background-image: url('../img/hero_logo_tablet.svg');
		top: -70px;
	}

	.hero__logo img {
		width: 240px;
	}

	.home__about__bg {
		position: static;
		height: 400px;
	}

	.hero__desc_small p {
		max-width: 80%;
	}

	.home__about_content {
		height: auto;
		padding: 100px 0;
	}

}

@media (max-width:769px) {
	.hero__bg::after {
		right: -350px;
		background-size: 53%;
		top: 0px;
	}

	.hero__title h1 {
		font-size: 60px;
	}

	.section__hero__wrap {
		min-height: 67vh;
	}

	.home__title {
		margin-top: 180px;
	}

	.home__about_content p {
		font-weight: 500;
		font-size: 18px;
		max-width: 46%;
	}

	.practices {
		padding: 80px 0 100px;
	}

	.item {
		padding: 40px;
	}

	.practices__item__img {
		width: 60px;
	}

	.practices__item__title h5 {
		margin: 60px 0 30px;
	}

	.home__news {
		padding: 80px 0 0px;
	}

	.section .title {
		margin-bottom: 30px;
	}
}

@media (max-width:568px) {

	.hero__bg::after {
		right: -420px;
		background-size: 45%;
		top: -40px;
		opacity: .2;
	}

	.item {
		padding: 30px;
	}

	.hero__logo img {
		display: none;
	}

	.home__title {
		margin-top: 0px;
	}

	.hero__title h1 {
		font-size: 40px;
	}

	.hero__desc h4 {
		margin-top: 30px;
	}

	.home__about_content {
		padding: 40px 0 60px;
	}

	.home__about_content p {
		font-size: 16px;
		max-width: 100%;
		margin: 20px 0 40px;
	}

	.home__about__bg {
		height: 250px;
	}

	.practices {
		padding: 40px 0 50px;
	}

	.practices__item__title h5 {
		margin: 40px 0 30px;
	}

	.item__col:last-child {
		margin-top: 24px;
	}

	.home__news {
		padding: 40px 0 60px;
	}

	#news__slider .home__news__item {
		padding: 12px;
	}

	.home__news__items {
		margin-top: 10px;
	}
}

/* ABOUT US */
/* Partners */
.partners__items {
	margin-top: 50px;
}

.partners__item__img {
	height: 780px;
	position: relative;
}

.quote {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--agps-color-1);
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	color: var(--agps-white);
}

.quote * {
	padding: 0;
	margin: 0;
}

.quote p {
	padding: 30px;
}

.partners__item__content {
	padding: 5px 10px;
}

.partners__item__name h3 {
	color: var(--agps-color-6);
	line-height: 1.2;
}

.partners__item__position h5 {
	font-weight: 600;
	font-size: 24px;
	color: var(--agps-color-2);
	margin-top: 20px;
}

.partners__contact {
	margin-top: 40px;
}

.partners__item {
	font-size: 22px;
	font-weight: 600;
	color: var(--agps-color-1);
	font-variant-numeric: lining-nums;
	padding-top: 100px;
	padding-bottom: 100px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.partners__item:first-child {
	padding-top: 0px;
}

.partners__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.partners__item:nth-child(2n)>.row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.partners__contact__item svg {
	width: 16px;
	margin-right: 15px;
}

.partners__contact__item svg path {
	fill: var(--agps-color-1);
	opacity: .6;
}

.partners__item__link {
	color: var(--agps-color-1);
}

.partners__item__link:hover {
	color: var(--agps-color-2);
}

.partners__desc {
	margin-top: 30px;
}

.partners__desc__item {
	margin-top: 20px;
}

.partners__desc__title {
	font-weight: 600;
	font-size: 16px;
	line-height: 45px;
	color: var(--agps-color-1);
	opacity: 0.6;
}

@media (max-width:769px) {
	.hero__title_h2 h1 {
		font-size: 45px;
		font-weight: 400;
	}

	.hero__desc_small p {
		font-weight: 500;
		font-size: 18px;
		max-width: 60%;
		line-height: 1.7;
	}

	.partners__item__content {
		padding: 0;
	}

	.partners__item {
		font-size: 16px;
		padding-bottom: 50px;
		padding-top: 70px;
	}

	.partners__item__img {
		height: 460px;
	}

	.partners__item__position h5 {
		font-size: 16px;
	}

	.quote {
		font-size: 14px;
	}

	.quote p {
		padding: 15px;
	}

	.partners__contact {
		margin-top: 20px;
	}

	.partners__desc__title {
		line-height: 1.7;
	}

	.partners__desc {
		margin-top: 0px;
	}

	.partners__desc p {
		margin: 0;
		padding: 0;
	}

	.partners__desc__item {
		margin-top: 20px;
	}

}

@media (max-width: 569px) {
	.hero__title_h2 h1 {
		font-size: 32px;
	}

	.hero__desc_small p {
		font-size: 16px;
		max-width: none;
		margin-bottom: 60px;
	}

	.partners__item__img {
		height: 400px;
	}

	.partners__items {
		margin-top: 20px;
	}

	.partners__item__name {
		margin-top: 40px;
	}

	.partners__item__name h3 {
		font-size: 24px;
		font-weight: 600;
	}

	.quote {
		font-size: 12px;
	}
}

/* PRACTICES */
/* Services */
.count {
	font-weight: 600;
	font-size: 24px;
	color: var(--agps-color-2);
	margin-bottom: 30px;
	font-variant-numeric: lining-nums;
}

.subtitle__wrap {
	margin-top: 50px;
}

.item__wrap:last-child .subtitle__wrap {
	margin-top: 100px;
}

/* Experts */
.experts .partners__item__img {
	height: 600px;
}

@media (max-width: 769px) {
	.count {
		font-size: 20px;
	}

	.experts .partners__item__img {
		height: 460px;
	}

	.subtitle__wrap {
		margin-top: 30px;
	}

	.items {
		margin-top: 40px;
	}
}

@media (max-width: 569px) {
	.experts {
		margin-bottom: 80px;
	}

	.experts .partners__item__img {
		height: 400px;
	}
}


/* NEWS */
/* Archive News */
.tags__wrap {
	margin: 20px 0 40px;
}

.news__item__col {
	margin-bottom: 60px;
}

.news__item__img {
	height: 260px;
	overflow: hidden;
}

.news__item__img:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.tags_items {
	padding: 20px 0 !important;
	list-style: none;
	padding: 0;
	overflow-x: scroll;
	width: 100%;
	position: relative;
}

.tags__select {
	display: none;
}

.tags_items::-webkit-scrollbar {
	height: 7px;
}

.tags_items::-webkit-scrollbar-track {
	background: transparent;
}

.tags_items::-webkit-scrollbar-thumb {
	background-color: #e6e6e6;
	border-radius: 0px;
}

.tags__border_right {
	border-right: 1px solid rgb(0 0 0 / 0.2);
}

.meta__wrap>* {
	padding: 0 30px;
	line-height: 1.1;
	text-align: right;
}

.tag__item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.tag__item:not(:last-child) {
	margin-right: 50px;
}

.tag__item__link {
	font-weight: 600;
	color: var(--agps-color-1);
	opacity: .6;
	text-decoration: underline;
}


.tag__link_no_bottom {
	text-decoration: none;
}

.tag__link {
	color: var(--agps-color-1);
	opacity: .6;
	font-weight: 600;
	position: relative;
	cursor: pointer;
}

.tag__link::after {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 0;
	height: 1px;
	background: transparent;
	-webkit-transition: width .5s ease;
	-o-transition: width .5s ease;
	transition: width .5s ease;
	opacity: 0;
}

.tag__link:hover {
	color: var(--agps-color-2);
	opacity: 1;
}

.tag__link:hover::after {
	background: var(--agps-color-2);
	opacity: 1;
	width: 100%;
}

.tag__link.active {
	color: var(--agps-color-2);
	opacity: 1;
}

.tag__link.active::after {
	background: var(--agps-color-2);
	opacity: 1;
	width: 100%;
}

/* Single news */
.news__single {
	margin-bottom: 100px;
}

.news__single__title h1 {
	font-weight: 600;
	font-size: 42px;
	color: var(--agps-color-6);
	line-height: 1.3;
}

.news__single__thumb {
	height: 550px;
	margin-top: 60px;
}

.content__wrap {
	margin-top: 60px;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 100px;
}

.content__wrap>h1,
.content__wrap>h2,
.content__wrap>h3,
.content__wrap>h4,
.content__wrap>h5,
.content__wrap>h6,
.content__wrap>ul,
.content__wrap>ol,
.content__wrap>p {
	max-width: 66.666667%;
	margin: 0 auto;
}

.content__wrap>h1,
.content__wrap>h2,
.content__wrap>h3,
.content__wrap>h4,
.content__wrap>h5,
.content__wrap>h6 {
	margin-bottom: 30px;
	margin-top: 50px;
}

.content__wrap>p {
	margin-bottom: 22px;
	margin-top: 30px;
}

.content__wrap>ul {
	list-style: none;
	padding: 0;
	margin-bottom: 22px;
	margin-top: 30px;
}

.content__wrap>ol {
	margin-bottom: 22px;
	margin-top: 30px;
}

.content__wrap>ul>li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 10px;
}

.content__wrap>ul>li::after {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 20px;
	height: 20px;
	background: url('../img/icons/list_marker.svg') no-repeat;
	background-size: contain;
}

.content__wrap .blocks-gallery-item,
.content__wrap .wp-block-image {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	overflow: hidden;
	height: 650px;
	margin-bottom: 60px;
	margin-top: 60px;
}

.content__wrap .wp-block-gallery {
	margin-bottom: 60px;
	margin-top: 60px;
}

.content__wrap .blocks-gallery-item {
	margin: 0;
}

.content__wrap .blocks-gallery-item figure {
	width: 100%;
	height: 100%;
}

.content__wrap .blocks-gallery-item img,
.content__wrap .wp-block-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.content__wrap .wp-block-embed.is-type-video {
	margin-bottom: 60px;
	margin-top: 60px;
}

.content__wrap .wp-block-embed.is-type-video iframe {
	width: 100%;
	height: 650px;
}

/* Slider */
.content__wrap ul.slick-slider {
	padding-left: 0;
}

.slick-arrow {
	font-size: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--agps-white);
	border-radius: 50%;
	opacity: .6;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	z-index: 9;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0px 0px 32px 0px rgb(0 0 0 / 11%);
	box-shadow: 0px 0px 32px 0px rgb(0 0 0 / 11%);
}

.slick-arrow:after,
.slick-arrow::before {
	content: '';
	position: absolute;
	width: 2px;
	height: 17px;
	background: var(--agps-color-1);
	border-radius: 40px;
	-webkit-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}

.slick-arrow:hover {
	opacity: 1;
}

.slick-next {
	right: 60px;
}

.slick-prev {
	left: 60px;
}

.slick-next::before {
	left: 22px;
	top: 7px;
	-webkit-transform: rotate(130deg);
	-ms-transform: rotate(130deg);
	transform: rotate(130deg);
}

.slick-next:after {
	left: 22px;
	top: 17px;
	-webkit-transform: rotate(230deg);
	-ms-transform: rotate(230deg);
	transform: rotate(230deg);
}

.slick-prev::before {
	left: 17px;
	top: 7px;
	-webkit-transform: rotate(230deg);
	-ms-transform: rotate(230deg);
	transform: rotate(230deg);
}

.slick-prev:after {
	left: 17px;
	top: 17px;
	-webkit-transform: rotate(130deg);
	-ms-transform: rotate(130deg);
	transform: rotate(130deg);
}

.swipe__animation {
	display: none;
}

/* Share */
.share {
	padding: 50px 0;
	border-top: 1px solid #BDC9DB;
	border-bottom: 1px solid #BDC9DB;
}

.share__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.share__item:not(:last-child) {
	margin-right: 10px;
}

.share__item__link {
	width: 50px;
	height: 50px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 50%;
	background-color: var(--agps-color-2);
}

.share__item__link svg {
	height: 20px;
	fill: var(--agps-white);
}

.share__item__link_bigger svg {
	height: 25px;
	fill: var(--agps-white);
}

.share__item__link:hover {
	background-color: var(--agps-color-1);
}

@media (max-width:796px) {
	.tags_items {
		margin: 20px 0;
	}

	.tag__item {
		margin-right: 40px;
	}

	.news__single__title h1 {
		font-size: 26px;
	}

	.meta__wrap {
		margin-top: 35px;
	}

	.meta__wrap>*:first-child {
		padding-left: 0;
		text-align: left;
	}

	.news__single__thumb {
		height: 400px;
		margin: 50px -40px 0;
	}

	.content__wrap>h1,
	.content__wrap>h2,
	.content__wrap>h3,
	.content__wrap>h4,
	.content__wrap>h5,
	.content__wrap>h6,
	.content__wrap>ul,
	.content__wrap>ol,
	.content__wrap>p {
		max-width: 80%;
	}

	.content__wrap {
		font-size: 18px;
	}

	.content__wrap .blocks-gallery-item,
	.content__wrap .wp-block-image {
		height: 450px;
	}

	.content__wrap .wp-block-image {
		margin: 50px -40px 0;
	}

	.content__wrap .wp-block-embed.is-type-video iframe {
		width: 100%;
		height: 450px;
	}

	.content__wrap .wp-block-gallery,
	.content__wrap .wp-block-embed.is-type-video {
		margin: 40px -40px;
	}

	.share {
		padding: 40px 0
	}

	.share__item__link {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 569px) {
	.news__item__col {
		margin-bottom: 40px;
	}

	.news__item__img {
		height: 180px;
	}

	.home__news__item__meta .tags,
	.date {
		font-size: 12px;
		line-height: 1.7;
	}

	.home__news__item__title {
		font-size: 16px;
	}

	.section__breadcrumbs {
		padding: 40px 0 30px;
	}

	.breadcrumbs {
		font-size: 14px;
	}

	.tags .tag__link_no_bottom {
		font-size: 12px;
	}

	.news__single__title h1 {
		font-size: 18px;
	}

	.news__single__thumb {
		height: 220px;
		margin: 40px -12px 0;
	}

	.content__wrap>h1,
	.content__wrap>h2,
	.content__wrap>h3,
	.content__wrap>h4,
	.content__wrap>h5,
	.content__wrap>h6,
	.content__wrap>ul,
	.content__wrap>ol,
	.content__wrap>p {
		max-width: none;
	}

	.content__wrap {
		margin-top: 40px;
		font-size: 16px;
		margin-bottom: 40px;
	}

	.news__single {
		margin-bottom: 60px;
	}

	.content__wrap>ul>li::after {
		content: '';
		position: absolute;
		top: 0;
		-webkit-transform: translateY(30%);
		-ms-transform: translateY(30%);
		transform: translateY(30%);
		width: 15px;
		height: 15px;
	}

	.content__wrap>ul>li {
		padding-left: 30px;
	}

	.content__wrap .wp-block-image {
		margin: 40px -12px 0;
	}

	.content__wrap .blocks-gallery-item,
	.content__wrap .wp-block-image {
		height: 250px;
	}

	.content__wrap .wp-block-embed.is-type-video iframe {
		width: 100%;
		height: 210px;
	}

	.slick-arrow {
		width: 30px;
		height: 30px;
	}

	.slick-prev {
		left: 40px;
	}

	.slick-next {
		right: 40px;
	}

	.slick-prev::before {
		left: 12px;
		top: 4px;
		-webkit-transform: rotate(230deg) scale(0.7);
		-ms-transform: rotate(230deg) scale(0.7);
		transform: rotate(230deg) scale(0.7);
	}

	.slick-prev:after {
		left: 12px;
		top: 12px;
		-webkit-transform: rotate(130deg) scale(0.7);
		-ms-transform: rotate(130deg) scale(0.7);
		transform: rotate(130deg) scale(0.7);
	}

	.slick-next::before {
		left: 16px;
		top: 4px;
		-webkit-transform: rotate(130deg) scale(0.7);
		-ms-transform: rotate(130deg) scale(0.7);
		transform: rotate(130deg) scale(0.7);
	}

	.slick-next:after {
		left: 16px;
		top: 12px;
		-webkit-transform: rotate(230deg) scale(0.7);
		-ms-transform: rotate(230deg) scale(0.7);
		transform: rotate(230deg) scale(0.7);
	}

	.swipe__animation {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-bottom: 30px;
		margin-top: -30px;
	}

	svg#icon-swipe {
		width: 72px;
		height: 35px;
		opacity: .9;
	}

	svg#icon-swipe #hand {
		fill: var(--agps-accent-color);
		-webkit-transform-origin: 50% 100%;
		-ms-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
		-webkit-animation: hand-swipe 3.5s infinite ease;
		animation: hand-swipe 3.5s infinite ease;
	}

	svg#icon-swipe #left,
	svg#icon-swipe #right {
		fill: var(--agps-color-2);
		opacity: 0;
	}

	svg#icon-swipe #right {
		-webkit-animation: arrow-right 3.5s infinite ease;
		animation: arrow-right 3.5s infinite ease;
	}

	svg#icon-swipe #left {
		-webkit-animation: arrow-left 3.5s infinite ease;
		animation: arrow-left 3.5s infinite ease;
	}

	@-webkit-keyframes hand-swipe {
		5% {
			-webkit-transform: translateX(3px) rotate(6deg);
			transform: translateX(3px) rotate(6deg);
		}

		25% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}

		28% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}

		33% {
			-webkit-transform: translateX(-3px) rotate(-6deg);
			transform: translateX(-3px) rotate(-6deg);
		}

		53% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}

		100% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}
	}

	@keyframes hand-swipe {
		5% {
			-webkit-transform: translateX(3px) rotate(6deg);
			transform: translateX(3px) rotate(6deg);
		}

		25% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}

		28% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}

		33% {
			-webkit-transform: translateX(-3px) rotate(-6deg);
			transform: translateX(-3px) rotate(-6deg);
		}

		53% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}

		100% {
			-webkit-transform: translateX(0px) rotate(0deg);
			transform: translateX(0px) rotate(0deg);
		}
	}

	@-webkit-keyframes arrow-right {
		7% {
			-webkit-transform: translateX(8px);
			transform: translateX(8px);
			opacity: 1;
		}

		17% {
			-webkit-transform: translateX(10px);
			transform: translateX(10px);
			opacity: 0;
		}

		18%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
			opacity: 0;
		}
	}

	@keyframes arrow-right {
		7% {
			-webkit-transform: translateX(8px);
			transform: translateX(8px);
			opacity: 1;
		}

		17% {
			-webkit-transform: translateX(10px);
			transform: translateX(10px);
			opacity: 0;
		}

		18%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
			opacity: 0;
		}
	}

	@-webkit-keyframes arrow-left {

		0%,
		30% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
			opacity: 0;
		}

		37% {
			-webkit-transform: translateX(-8px);
			transform: translateX(-8px);
			opacity: 1;
		}

		47% {
			-webkit-transform: translateX(-10px);
			transform: translateX(-10px);
			opacity: 0;
		}

		48%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
			opacity: 0;
		}
	}

	@keyframes arrow-left {

		0%,
		30% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
			opacity: 0;
		}

		37% {
			-webkit-transform: translateX(-8px);
			transform: translateX(-8px);
			opacity: 1;
		}

		47% {
			-webkit-transform: translateX(-10px);
			transform: translateX(-10px);
			opacity: 0;
		}

		48%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
			opacity: 0;
		}
	}

	.share__item__link {
		width: 40px;
		height: 40px;
	}

	.share__items {
		margin-top: 20px;
	}

	.share__item__link_bigger svg {
		height: 23px;
	}

	.tags_items.pc {
		display: none;
	}

	.tags__select {
		display: block;
	}

	.home__news__item__meta {
		padding: 15px 0;
	}

	.select2-container--default .select2-selection--single .select2-selection__rendered {
		color: var(--agps-color-2);
		font-size: 12px;
		font-weight: 600;
		padding-right: 40px;
	}

	.select2-results__option[aria-selected=true] {
		display: none;
	}

	.select2-container .select2-selection--single {
		height: auto;
		padding: 15px;
	}

	.select2-container--default .select2-selection--single .select2-selection__arrow {
		height: auto;
		top: 50%;
		right: 20px;
	}

	.select2-container--default .select2-selection--single {
		border-left: 1px solid var(--agps-color-3);
		border-top: 1px solid var(--agps-color-3);
		border-right: 1px solid var(--agps-color-3);
		border-bottom: 1px solid var(--agps-color-3);
		border-radius: 0;
	}

	.select2-container--default .select2-selection--single[aria-expanded="true"] {
		border-bottom: none;
	}

	.select2-container--default .select2-selection--single .select2-selection__arrow b {
		position: absolute;
		top: 0;
		border: none;
		width: 13px;
		height: 8px;
		background: no-repeat 100% url('../img/icons/chevron_down.svg');
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
	}

	.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}

	.select2-results__option[aria-selected] {
		cursor: pointer;
		font-size: 12px;
		color: var(--agps-color-1);
		padding: 10px 22px;
		font-weight: 600;
	}

	.select2-container--default .select2-results__option--highlighted[aria-selected] {
		background-color: var(--agps-color-1)
	}

	.select2-container--default .select2-results>.select2-results__options {
		max-height: 260px;
	}

	.select2-dropdown {
		border-radius: 0;
		border-left: 1px solid var(--agps-color-3);
		border-bottom: 1px solid var(--agps-color-3);
		border-right: 1px solid var(--agps-color-3);
		-webkit-box-shadow: 0px 7px 8px rgb(0 0 0 / 15%);
		box-shadow: 0px 7px 8px rgb(0 0 0 / 15%);
	}



}

/* CONTACTS */
.address__link_main_color,
.contacts__item__link_main_color {
	color: var(--agps-color-1);
}

.address__link_main_color:hover,
.contacts__item__link_main_color:hover {
	color: var(--agps-color-2);
}

.section__contacts .contacts__item svg path {
	opacity: 1;
	fill: var(--agps-color-2);
}

.socials__item_main_color {
	background-color: var(--agps-color-2);
}

.socials__item_main_color:hover {
	background-color: var(--agps-color-1);
}

/* Map */
.section__map {
	margin-bottom: -10px;
}

.map iframe {
	width: 100%;
	height: 650px;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

@media (max-width: 769px) {
	.map iframe {
		height: 450px;
	}
}

@media (max-width: 569px) {
	.map iframe {
		height: 350px;
	}
}

/* 404 */
.error__404 {
	background-color: var(--agps-color-4);
	overflow: hidden;
	position: relative;
}

.hero__bg_404::after {
	background-image: url("../img/hero_logo_main_color.svg");
	top: -60px;
}

.error__404__content {
	min-height: 88vh;
}

.error__404 h1 {
	font-size: 90px;
	font-variant-numeric: lining-nums;
}

.error__404 h5 {
	margin-bottom: 50px;
}

.hero__bg_404 {
	top: initial;
}

@media (max-width: 769px) {
	.hero__bg_404::after {
		background-image: url("../img/hero_logo_main_color_tablet.svg");
	}

	.error__404__content {
		min-height: 60vh;
		position: relative;
	}

	.error__404 h1 {
		font-size: 60px;
	}
}

@media (max-width: 569px) {
	.error__404__wrap {
		width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}