/* @todo: replace in main style */

* {
	outline: none !important;
}

.is-disabled-item {
	opacity: 0.5;
}

.header__logo {
	max-width: 75px;
}

.header__logo a {
	display: flex;
	align-items: center;
}

.header__logo-title {
	display: none;
	max-width: 225px;
	padding-left: 15px;
	color: var(--color-1--2);
	font-family: "Proftech";
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 105%;
	vertical-align: middle;
}

.v3 .header__logo-title,
.v4 .header__logo-title {
	color: var(--color-1--1);
}

.is-sticky .header .header__logo {
	max-width: 80px;
}

.is-sticky .header .header__logo img {
	max-height: 50px;
}

.is-sticky .header .header__logo .header__logo-title {
	display: none;
}

.main-nav__logo {
	display: flex;
	align-items: center;
	width: 300px;
}

.main-nav__logo img {
	max-height: 65px;
}

.main-nav__logo-title {
	display: none;
	max-width: 225px;
	padding-left: 12px;
	font-family: "Proftech";
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 18px;
	vertical-align: middle;

}

.footer__logo {
	max-width: 100%;
	width: 320px;
	display: flex;
	align-items: center;
}

.footer__logo img {
	width: auto;
	max-height: 105px;
}

.footer__logo-title {
	padding-left: 15px;
	font-family: "Proftech";
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 18px;
	vertical-align: middle;
}


.user-item__content {
	justify-content: space-between;
}

.user-item__content .user-item__link {
	padding-left: 20px;
	font-family: "Proftech";
	font-weight: 600;
	font-size: 2.2rem;
	text-decoration: underline;
}

.user-item__content .user-item__link:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 7px;
	width: 15px;
	height: 15px;
	background-color: var(--color-1--1);
	border-radius: 50%;
	transition: all 250ms ease-in-out 0ms;
}

.user-item:hover .user-item__content .user-item__link:before,
.user-item:focus .user-item__content .user-item__link:before,
.user-item:focus-within .user-item__content .user-item__link:before {
	background-color: var(--color-1--2);
}

.main-nav__socials .info-links {
	display: flex;
	flex-direction: column;
	font-size: 1.6rem;
	line-height: 2.1rem;
}

.news-item .news-item__image {
	margin-bottom: 20px;
	position: relative;
	padding-top: 67%;
}

.news-item .item-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
}

.gallery__text {
	margin-bottom: 60px;
}


.profession-item__title {
	overflow-wrap: break-word;
}

.infrastructure-item__gallery {
	z-index: 1;
}

.error404 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.error404 .error404__title {
	font-size: 10rem;
	line-height: 10rem;
	margin-bottom: 20px;
}

.error404 .error404__text {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.7rem;
	margin-bottom: 40px;
}

.main-nav__socials {
	padding-bottom: 40px;
}

/* begin::Select Filter */
.filter-select-wrapper {
	position: relative;
	display: block;
	width: 100%;
}

.filter-select {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.filter-dropdown {
	position: relative;
	display: block;
	width: 100%;
}

.filter-dropdown__button {
	display: block;
	min-width: 200px;
	width: 100%;
	border: 2px solid var(--color-1--1);
	border-radius: 10px;
	font-weight: 400;
	font-size: 2rem;
	padding: 0 32px 0 20px;
	line-height: 2;
	cursor: pointer;
	position: relative;
	background: var(--color-1--1);
	color: #ffffff;
	border-color: var(--color-1--1);
}

.filter-dropdown__button::after {
	content: "";
	position: absolute;
	right: 12px;
	top: 50%;
	width: 12px;
	height: 12px;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4.13965" y="6.07227" width="8.48986" height="2.6267" transform="rotate(-45 4.13965 6.07227)" fill="%23E5ECF1"/><rect x="4.13965" y="6.07227" width="8.48986" height="2.6267" transform="rotate(-45 4.13965 6.07227)" fill="%23E5ECF1"/><rect x="1.85742" y="0.0683594" width="8.49384" height="2.6267" transform="rotate(45 1.85742 0.0683594)" fill="%23E5ECF1"/><rect x="1.85742" y="0.0683594" width="8.49384" height="2.6267" transform="rotate(45 1.85742 0.0683594)" fill="%23E5ECF1"/></svg>');
}

.filter-dropdown__list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #ffffff;
	border: 2px solid var(--color-1--1);
	border-radius: 10px;
	padding: 8px 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	z-index: 1000;
	display: none;
	width: 100%;
}

.filter-dropdown.open .filter-dropdown__list {
	display: block;
}

.filter-dropdown__option {
	padding: 10px 16px;
	color: var(--color-1--1);
	cursor: pointer;
	outline: none;
	width: 100%;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 2rem;
}

.filter-dropdown__option:hover,
.filter-dropdown__option:focus {
	background: var(--color-1--2);
}

.filter-dropdown__option.is-selected {
	color: var(--color-1--1);
	opacity: 0.5;
	cursor: not-allowed;
}

.filter-dropdown__option.is-disabled {
	opacity: 0.5;
	pointer-events: none;
}

.filter-select-wrapper.is-ghost .filter-dropdown__button {
	background: transparent;
	color: var(--color-1--1);
	border-color: var(--color-1--1);
}

.filter-select-wrapper.is-ghost .filter-dropdown__button::after {
	background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4.13965" y="6.07227" width="8.48986" height="2.6267" transform="rotate(-45 4.13965 6.07227)" fill="%230C4A9D"/><rect x="4.13965" y="6.07227" width="8.48986" height="2.6267" transform="rotate(-45 4.13965 6.07227)" fill="%230C4A9D"/><rect x="1.85742" y="0.0683594" width="8.49384" height="2.6267" transform="rotate(45 1.85742 0.0683594)" fill="%230C4A9D"/><rect x="1.85742" y="0.0683594" width="8.49384" height="2.6267" transform="rotate(45 1.85742 0.0683594)" fill="%230C4A9D"/></svg>');
}

.filter-dropdown.open .filter-dropdown__button::after {
	transform: translateY(-50%) rotate(180deg);
}
/* end::Select Filter */

@media (min-width: 350px) {
	.header__logo {
		max-width: 250px;
	}

	.header__logo-title {
		display: block;
		max-width: 175px;
	}
}

@media (min-width: 375px) {
	.header__logo {
		max-width: 275px;
	}

	.header__logo-title {
		max-width: 200px;
	}
}

@media (min-width: 480px) {
	.header__logo {
		max-width: 300px;
	}

	.header__logo-title {
		max-width: 225px;
	}

	.main-nav__logo-title {
		display: block;
	}
}

@media (min-width: 768px) {
	.header__logo {
		max-width: 420px;
	}

	.header__logo img {
		max-height: 91px;
	}

	.header__logo-title {
		max-width: 270px;
		font-size: 1.8rem;
	}

	.is-sticky .header .header__logo {
		max-width: 225px;
	}

	.is-sticky .header .header__logo img {
		max-height: 48px;
	}

	.is-sticky .header .header__logo .header__logo-title {
		display: block;
		max-width: 170px;
		font-size: 1.1rem;
	}

	.main-nav__logo {
		width: 325px;
	}

	.main-nav__logo img {
		max-height: 36px;
	}

	.main-nav__logo-title {
		max-width: 284px;

	}

	.footer__logo img {
		max-height: 111px;
	}


	.user-item__content .user-item__link {
		padding-left: 30px;
		font-size: 2.6rem;
	}

	.user-item__content .user-item__link:before {
		top: 5px;
		width: 20px;
		height: 20px;
	}

	.main-nav__socials {
		padding-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.gallery__list .gallery__item {
		max-width: 1024px;
	}

	.error404 .error404__title {
		font-size: 12rem;
		line-height: 12rem;
		margin-bottom: 40px;
	}

	.error404 .error404__text {
		font-size: 2.1rem;
		line-height: 2.3rem;
		margin-bottom: 60px;
	}
}

@media (min-width: 1440px) {
	.header__logo img {
		max-height: 130px;
	}

	.header__logo-title {
		font-size: 2.04rem;
	}

	.is-sticky .header .header__logo {
		max-width: 300px;
	}

	.is-sticky .header .header__logo img {
		max-height: 80px;
	}

	.is-sticky .header .header__logo .header__logo-title {
		max-width: 200px;
		font-size: 1.5rem;
	}

	.main-nav__logo {
		width: 477px;
	}

	.main-nav__logo img {
		max-height: 53px;
	}

	.main-nav__logo-title {
		max-width: 416px;
		font-size: 2.4rem;
		line-height: 25px;
	}

	.footer__logo {
		width: 450px;
	}

	.footer__logo img {
		max-height: 160px;
	}

	.footer__logo-title {
		font-size: 2.4rem;
		line-height: 25px;
	}

	.main-nav__list {
		padding: 36px 0 50px;
	}

	.main-nav__socials .info-links {
		font-size: 2.1rem;
		line-height: 3rem;
	}
}

@media (min-width: 1680px) {

}
