:root {
	--uv-brand: #FF5C02;
	--uv-bg: #F3F3F3;
	--uv-border: rgba(70, 79, 96, 0.16);
	--uv-text: #292929;
}

.uv-hidden {
	display: none !important;
}

button {
	font-family: Montserrat, sans-serif;
}

.uv-flt-container {
	margin: 32px 0 48px;
	display: flex;
	gap: 10px;
	padding-left: 50px;
	background: url('./imgs/filt.svg') no-repeat 13px center;
}

.uv-flt-item {
	position: relative;
}

.uv-flt-trigger {
	font-family: Montserrat, sans-serif;
	height: 50px;
	padding: 0 15px;
	padding-right: 43px;
	border-radius: 6px;
	background: var(--uv-bg);
	border: 1px solid var(--uv-border);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	min-width: 163px;
}

.uv-flt-label {
	color: #313131;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.uv-flt-value {
	color: var(--uv-brand);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.02em;
	max-width: 500px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	vertical-align: middle;
}

.uv-flt-icon {
	width: 16px;
	height: 16px;
	margin-left: auto;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAARCAYAAAAhUad0AAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAI9JREFUeAG9zl0NgDAQA+BKwAFIQAISkFAJOGAOkIA0JCABtgSShWywnzua9GmXfgOAwXa/aiCfMbS/2R5eDeTCx7Zrg+sHhwLMwK5r7x6nyKNBeRjZXPyjWRBmZGsNHUvAzAElYJaANTBrwBKYEmAOTEkwBaYG+AWrgTmwKJgCq4BvsCoYgn8B73S2LQpzAkEfnEPEnYr4AAAAAElFTkSuQmCC) no-repeat right center / 9px 5px;
	transition: 0.2s;
	z-index: 2;
}

.uv-flt-item.is-open:not(.is-filtered) .uv-flt-icon {
	transform: scaleY(-1) translateY(50%);
}

.uv-flt-item.is-filtered .uv-flt-icon {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAMAAAApB0NrAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAhOAAAITgBRZYxYAAAAA9QTFRFR3BMMDAwMDAwMTExMTExLVmT9wAAAAR0Uk5TACG/3/8tN38AAAB4SURBVHjajdQxDgMgDARBG+7/b04RKRTjCCjXIwokXFW9uubzm/XOHtGZ9U5mdGYryUGSZFXvf+hMRBKQZEQ2g8UkIUJAEpFEJBEFAoKAJKJ8j+R+j0QkEd3fR1IgSYEkIsiMSBSDTUKFiCCg5/9+3xtP++dhj30A+vUGfSv0RQkAAAAASUVORK5CYII=) no-repeat right center / 11.67px;
}

.uv-flt-icon:hover {
	opacity: 0.8;
}

.uv-flt-dropdown {
	display: none;
	position: absolute;
	top: 54px;
	left: 0;
	background: #fff;
	border-radius: 9px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.08);
	z-index: 10;
	min-width: 324px;
	width: fit-content;
	padding: 16px 16px 14px;
	overflow: hidden;
}

.uv-flt-dropdown--large {
	padding-bottom: 16px;
}

.uv-flt-dropdown--large {
	width: 347px;
}

.uv-flt-item.is-open .uv-flt-dropdown {
	display: block;
}

.uv-flt-scroll {
	max-height: 400px;
	overflow-y: auto;
	margin-bottom: 10px;
}

.uv-flt-opt {
	display: flex;
	align-items: center;
	min-height: 36px;
	padding: 4px 8px 4px 40px;
	cursor: pointer;
	position: relative;
}

.uv-flt-opt:hover {
	background: #FAFAFA;
}

.uv-flt-opt input {
	display: none;
}

.uv-flt-radio,
.uv-flt-checkbox {
	position: absolute;
	display: block;
	left: 8px;
	top: 8px;
	width: 16px;
	height: 16px;
	box-shadow:
		0px 0px 0px 1px rgba(70, 79, 96, 0.5),
		0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	margin-right: 15px;
	flex-shrink: 0;
}

.uv-flt-radio {
	border-radius: 50%;
}

.uv-flt-checkbox {
	border-radius: 1px;
}

.uv-flt-opt input+span:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0.5px;
	left: 0.5px;
	border: 1px solid transparent;
	background: url('./imgs/gal.svg') no-repeat center;
	display: none;
}

.uv-flt-opt:hover input+span:after {
	display: block;
}

.uv-flt-opt input:checked+span {
	background: var(--uv-brand);
	box-shadow:
		0px 0px 0px 1px var(--uv-brand),
		0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.uv-flt-opt input:checked+span:after {
	display: block;
	filter: brightness(0) invert(1);
}

.uv-flt-text {
	color: var(--uv-text);
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.uv-flt-dropdown--large .uv-flt-text {
	font-size: 15px;
}

.uv-flt-group-title {
	padding: 4px 8px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #313131;
	margin: 18px 0 4px;
	letter-spacing: 0.02em;
}

.uv-flt-actions {
	display: flex;
	gap: 12px;
	padding: 18px 0 0;
	position: relative;

}

.uv-flt-actions:before {
	content: '';
	display: block;
	width: 150%;
	height: 1px;
	position: absolute;
	top: 0;
	left: -50px;
	border-top: 1px solid #E4E4E4;
}

.uv-flt-btn {
	flex: 1;
	height: 44px;
	padding: 8px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	color: #313131;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
	font-family: Montserrat, sans-serif;
}

.uv-flt-btn:hover {
	color: #313131;
}

.uv-flt-btn-apply {
	background: #313131;
	color: #fff;
}

.uv-flt-btn-apply:hover {
	background: var(--uv-brand);
	color: #fff;
}

.uv-flt-btn:disabled,
.uv-flt-btn.is-disabled,
.uv-flt-btn-apply:disabled,
.uv-flt-btn.is-disabled {
	background: #F7F7F7;
	color: #A4A4A4;
	cursor: not-allowed;
}


.projects-cards-btn-wrap {
	margin: 0 0 84px;
	display: flex;
	justify-content: center;
}

.btn.prj-more {
	border-color: #CCCCCC;
	color: #313131;
	background: transparent;
	padding: 19px 30px;
}

.projects-cards-wrap {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin: 20px 0 65px;
}

.projects-cards-item {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-height: 356px;
	height: auto;
	width: calc(25% - 15px);
	background: #fff;
	border-radius: 9px;
	padding: 20px 20px 107px;
	box-shadow: 0px 4px 8.5px 0px rgba(0, 0, 0, 0.08);
	position: relative;
	color: #313131;
	overflow: hidden;
}

.projects-cards-item:hover {
	box-shadow:
		0px 5px 15px 0px rgba(0, 0, 0, 0.08),
		0px 15px 35px -5px rgba(17, 24, 38, 0.15),
		0px 0px 0px 1px rgba(152, 161, 178, 0.1);
}

.prj-card-flagged:before {
	content: '';
	pointer-events: none;
	display: block;
	width: 26px;
	height: 47px;
	background: url('./imgs/flag.png') no-repeat center top / contain;
	position: absolute;
	right: 20px;
	z-index: 3;
	top: 0;
}

.projects-cards-item .btn-arr {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.prj-card-client,
.prj-card-service {
	display: block;
	width: 100%;
	font-size: 15px;
	line-height: 150%;
	font-weight: 400;
}

.prj-card-img {
	width: 100%;
	height: 164px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.projects-cards-item p {
	border-top: 1px solid #D9D9D9;
	padding-top: 24px;
	margin: 0;
	display: block;
	width: 100%;
	font-size: 18px;
	line-height: 150%;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

.projects-cards-item p::first-letter {
	text-transform: uppercase;
}

.projects-cards-item-special {
	background: linear-gradient(to right, #F86A1A, #F8421A);
	color: #fff;
	padding: 74px 20px 20px;
}

.projects-cards-item-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.projects-cards-item-special p {
	border-top: 1px solid rgba(255, 247, 242, 0.5);
	font-size: 15px;
}

.projects-cards-item-special .projects-cards-special-title {
	font-size: 36px;
	line-height: 130%;
	font-weight: 600;
	border: 0;
	padding: 0;
}

.prj-card-item-more .btn-arr {
	width: 32px;
	height: 32px;
	background: var(--uv-brand);
	position: relative;
	right: auto;
	bottom: auto;
	top: auto;
	left: auto;
}

.prj-card-item-more .btn-arr:before {
	background: var(--uv-brand);
}

.prj-card-item-more .btn-arr:after {
	background-size: 14px 9px;
	background-position: center;
}

.prj-card-item-more {
	display: flex;
	width: 100%;
	padding: 4px 16px;
	height: 64px;
	align-items: center;
	justify-content: space-between;
	border-radius: 9px;
	margin-top: auto;
	font-size: 15px;
	line-height: 100%;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	background:
		url("data:image/svg+xml,..."),
		/* твой SVG шум */
		linear-gradient(112.98deg, rgba(255, 255, 255, 0) -3.97%, rgba(255, 255, 255, 0.4) 106.32%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: backdrop-filter 0.3s ease;
}

.prj-card-item-more::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(112.98deg, rgba(255, 255, 255, 0.2) -3.97%, rgba(255, 255, 255, 0.8) 106.32%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.projects-cards-item:hover .prj-card-item-more {
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
}

.projects-cards-item:hover .prj-card-item-more::before {
	opacity: 1;
}



.s-projects-main-detailed {}

.s-projects-main-detailed .ssn-left {
	width: 351px;
}

.s-projects-main-detailed .ssn-right {
	padding-top: 60px;
	width: 100% !important;
}

.prjs-detail-content {
	max-width: 913px;
	margin: 0 auto;
}

.prjs-detail-logo {
	margin-bottom: 54px;
	max-width: 240px;
	width: fit-content;
	height: auto;
}

.prjs-detail-mobile-logo {
	display: none;
}

.s-projects-main-detailed .ssn-nav-block .btn {
	font-family: Montserrat, sans-serif;
	letter-spacing: 0;
	font-weight: 600;
}

.s-projects-main-detailed .s-services-nav .ssn-left .ssn-nav-block ul {
	margin-bottom: 70px;
}

.s-projects-main-detailed .s-services-nav .ssn-left .ssn-nav-block ul li a {
	font-size: 16px;
	line-height: 120%;
	letter-spacing: 0;
}

.s-projects-main-detailed .s-services-nav .ssn-left .ssn-nav-block ul li {
	margin-bottom: 40px;
}

.prjs-detail-head {
	display: flex;
	justify-content: space-between;
	min-height: 38px;
	padding-bottom: 32px;
	border-bottom: 1px solid #D9D9D9;
	margin: 0 0 32px;
	flex-wrap: wrap;
	gap: 20px;	
}

.prjs-detail-head  .sed-t-left {
	max-width: 680px;	/*Ol*/
}

.prjs-detail-hdr {
	font-size: 18px;
	line-height: 30px;
	color: #808080;
	font-weight: 500;
}

.prjs-detail-head .sed-t-share {
	display: flex;
	align-items: center;
}

.prjs-detail-head .sed-t-descr {
	margin-right: 20px;
	color: #000;
	font-size: 14px;
	line-height: 17px;
	font-weight: 400;
	letter-spacing: .03em;
	color: #808080;
	margin-right: 10px;
}

.prjs-detail-head .ya-share2__item {
	display: inline-block;
	margin: 0;
	margin-right: 12px;
	margin-left: 12px;
}

.prjs-detail-head .ya-share2__link {
	text-decoration: none;
	white-space: nowrap;
}

.prjs-detail-head .ya-share2__link:hover {
	opacity: 0.7;
}

.prjs-detail-head .ya-share2__list,
.prjs-detail-head .ya-share2__badge,
.prjs-detail-head .ya-share2__icon {
	display: inline-block;
	vertical-align: top;
}

.prjs-detail-head .ya-share2__badge {
	overflow: hidden;
	position: relative;
}

.prjs-detail-head .ya-share2__badge .ya-share2__icon {
	display: inline-block;
	width: 27px;
	height: 27px;
}

.prjs-detail-head .ya-share2__item_service_telegram .ya-share2__icon {
	background: url(https://aktiv.consulting/img/tl-icn.svg) no-repeat center/ auto;
}

.prjs-detail-head .ya-share2__item_service_vkontakte .ya-share2__icon {
	background: url(https://aktiv.consulting/img/vk-icn.svg) no-repeat center/ auto;
}

.prjs-detail-head .ya-share2__title {
	display: none;
}

.prjs-detail-content .h1 {
	font-size: 32px;
	line-height: 120%;
	letter-spacing: 0;
	color: #000;
}

.prjs-detail-overview {
	margin: 32px 0 56px;
}

.prjs-detail-overview p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
	color: #313131;
}

.prjs-detail-image {
	margin: 32px 0 24px;
}

.prjs-detail-image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.prjs-detail-textblock {
	margin: 0 0 48px;
	color: #313131;
}

.prjs-detail-textblock h2 {
	font-size: 20px;
	line-height: 120%;
	margin: 0 0 16px;
	font-weight: 600;
	color: #000;
}

.prjs-detail-textblock p {
	font-size: 18px;
	line-height: 30px;
	/* margin: 0; */
	font-weight: 400;
}

.citateblock {
	background: #F3F3F3 url('./imgs/citate.png') no-repeat 56px 40px / 65px;
	border-radius: 9px;
	padding: 113px 56px 56px;
	margin: 16px 0;
	position: relative;
}

.citateblock p {
	font-weight: 500;
}

.citateblock:after {
	content: '';
	display: block;
	width: 65px;
	height: 65px;
	position: absolute;
	right: 56px;
	bottom: 38px;
	background: url('./imgs/citate.png') no-repeat center / contain;
	transform: scale(-1);
}

.citateblock-bottom {
	margin: 24px 0 0;
	padding-right: 65px;
}

.citateblock-name {
	display: block;
	width: 100%;
	font-size: 18px;
	line-height: 30px;
	font-weight: bold;
}

.citateblock-duty {
	display: block;
	width: 100%;
	font-size: 16px;
	line-height: 30px;
	font-style: italic;
	font-weight: 400;
}

.tags-slider {
	width: 100%;
	padding: 0;
	margin: 48px 0 55px;
}

.tag-item {
	width: auto !important;
	display: inline-flex;
	height: 36px !important;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: 1px solid var(--uv-brand);
	border-radius: 24px;
	color: var(--uv-brand);
	font-size: 13px;
	line-height: 150px;
	font-weight: 500;
	white-space: nowrap;
	transition: background-color 0.3s;
}

.tag-item:hover {
	background: var(--uv-brand);
	color: #fff;
}

.prjct-questions.s-questions {
	color: #313131;
}

.prjct-questions.s-questions .h1 {
	font-weight: 500;
	font-size: 40px;
	line-height: 100%;
	margin: 0 0 72px;
}

.prjct-questions.s-questions .sq-block {
	padding: 50px 0 0px;
}

.prjct-questions.s-questions .sq-block .sqb-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0 0 40px;
}

.prjct-questions.s-questions .sq-block .sqb-row .def-inp {
	margin: 0;
	width: calc(50% - 12px);
}

.prjct-questions.s-questions .sq-block .sqb-row .def-inp.full-width {
	width: 100%;
}

.prjct-questions .def-inp input,
.prjct-questions .def-inp textarea {
	border-bottom: 1px solid #313131;
	font-size: 16px;
	letter-spacing: 0.03em;
	padding-bottom: 17px;
	height: 39px;
}

.prjct-questions .cb-wrap {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 24px;
}

.prjct-questions .cb-wrap .container {
	font-size: 13px;
	color: #313131;
}

.prjct-questions .cb-wrap .checkmark {
	width: 18px;
	height: 18px;
}

.prjct-questions .cb-wrap .container .checkmark::after {
	width: 6px;
	height: 6px;
}

.prjct-questions.s-questions .sq-block .sqb-row.sqb-btn-wrap {
	padding-top: 68px;
	margin: 0;
}

.prjct-questions.s-questions .sq-block .sqb-row.sqb-btn-wrap .btn {
	letter-spacing: 0;
	font-weight: bold;
}

.s-services.s-projects {
	padding-top: 71px;
	padding-bottom: 48px;
}

.s-services.s-projects .ss-slider,
.prj-slider {
	margin: 0;
}

.prj-slider .swiper-slide,
.s-services.s-projects .ss-slider .swiper-slide {
	padding: 0;
	height: auto;
	border-radius: 9px;
}

.s-services.s-projects .h2 {
	color: #000000;
	font-size: 40px;
	line-height: 120%;
	font-weight: 600;
	margin: 0 0 39px;
}

.s-services.s-projects .s-projects-nav .h2 {
	margin: 0;
}

.s-projects-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	margin: 0 0 39px;
}

.s-all-goto {
	font-size: 16px;
	line-height: 120%;
	font-weight: 600;
	color: #000;
	padding-right: 31px;
	position: relative;
	background: url('./imgs/arrow-right.svg') no-repeat right center;
	z-index: 5;
}

.s-all-goto.s-all-goto-mobile {
	display: none;
}

.swiper-wrapper .projects-cards-item {
	width: 100%;
	height: 100%;
	box-shadow: none;
}

.s-services.s-projects.s-projects-other,
.s-projects-other {
	background: #F3F3F3;
	padding-bottom: 120px;
}

.swiper-slide .projects-cards-item p {
	border: 0;
}

.swiper-slide .prj-card-service {
	padding-top: 24px;
	border-top: 1px solid #D9D9D9;
}

.s-btn-arr {
	position: absolute;
	left: 20px;
	bottom: 36px;
	height: 24px;
	font-size: 15px;
	line-height: 24px;
	font-weight: 600;
	padding-right: 32px;
}

.projects-cards-item .s-btn-arr .btn-arr {
	width: 24px;
	height: 24px;
	right: 0;
	bottom: 0px;
}

.projects-cards-item .s-btn-arr .btn-arr:after {
	background-size: 15px auto;
	background-position: center;
}

.s-projects-nav-arrows {
	display: flex;
	align-items: center;
	gap: 40px;
}

.s-projects-nav-arrows .def-arrows {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.s-projects-nav .def-arrows {
	margin: 0;
}

.ss-slider {
	position: relative;
}

.s-extra-btn {
	display: block;
	width: 94px;
	height: 94px;
	background: #fff;
	position: absolute;
	left: -66px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
}

.extra-btn-next {
	left: auto;
	right: -66px;
}

.s-extra-btn:before {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	transition: all .5s ease;
	background: url('./imgs/next-arrow.svg') no-repeat center;
	filter: grayscale(100%);
	opacity: 0.5;
}

.extra-btn-prev:before {
	transform: translateY(-50%) scaleX(-1);
}

.extra-btn-next:before {
	right: 0;
	left: 12px;
}

.s-extra-btn:hover:before {
	filter: none;
	opacity: 1;
}

.prj-slider {
	margin-top: 60px;
}

.def-arrows .prj-next,
.def-arrows .prj-prev {
	display: block;
	width: 39px;
	height: 39px;
	padding: 0;
	margin: 0;
	border: 0 solid #000;
	position: relative;
	left: auto;
	top: auto;
	right: auto;
	bottom: auto;
	background: #DCDCDC;
	border-radius: 50%;
	transition: all .5s ease;
	-webkit-tap-highlight-color: transparent;
	outline: 0;
	cursor: pointer;
}

.def-arrows .prj-next::after,
.def-arrows .prj-next::before,
.def-arrows .prj-prev::after,
.def-arrows .prj-prev::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all .5s ease;
	background: no-repeat url(https://aktiv.consulting/img/btn-arr-icn_black.svg) 50%;
	-webkit-tap-highlight-color: transparent
}

.def-arrows .prj-next::after,
.def-arrows .prj-prev::after {
	opacity: 0;
	background: no-repeat url(https://aktiv.consulting/img/btn-arr-icn.svg) 50%
}

.def-arrows .prj-next:hover,
.def-arrows .prj-prev:hover {
	background: #313131
}

.def-arrows .prj-next:hover::before,
.def-arrows .prj-prev:hover::before {
	opacity: 0
}

.def-arrows .prj-next:hover::after,
.def-arrows .prj-prev:hover::after {
	opacity: 1
}

.def-arrows .prj-prev {
	transform: rotate(180deg);
	margin-right: 5px
}

.def-arrows .prj-prev.swiper-button-disabled,
.def-arrows .prj-next.swiper-button-disabled {
	background: #FAFAFA;
	cursor: none;
	pointer-events: none;
}

.def-arrows .prj-next.swiper-button-disabled:before,
.def-arrows .prj-prev.swiper-button-disabled:before {
	opacity: 0.5;
}

@media (max-width: 1800px) {
	.prjs-detail-content {
		margin: 0 0 0 360px;
	}
}

@media (max-width: 1280px) {
	.projects-cards-item {
		gap: 16px;
		padding-bottom: 76px;
	}

	.projects-cards-item-special {
		padding-bottom: 20px;
	}

	.prj-card-img {
		height: 101px;
	}

	.prj-card-client,
	.prj-card-service {
		font-size: 13px;
		line-height: 24px;
	}

	.projects-cards-item p {
		padding-top: 16px;
		font-size: 15px;
		line-height: 25px;
	}

	.projects-cards-item-special .projects-cards-special-title {
		font-size: 24px;
	}

	.projects-cards-item-special p {
		font-size: 15px;
		line-height: 150%;
	}

	.prj-card-item-more {
		height: 63px;
	}


	.s-projects-main-detailed .ssn-left {
		width: 260px;
	}

	.s-projects-main-detailed .ssn-nav-block .btn {
		padding: 16px 18px 15px 38px;
	}

	.prjs-detail-logo {
		max-width: 179px;
		margin-bottom: 41px;
	}

	.s-projects-main-detailed .s-services-nav .ssn-left .ssn-nav-block ul li {
		margin-bottom: 32px;
	}

	.s-services-nav .ssn-left .ssn-nav-block {
		padding: 0 20px 20px 0;
	}

	.s-projects-main-detailed .s-services-nav .ssn-left .ssn-nav-block ul {
		margin-bottom: 54px;
	}

	.s-projects-main-detailed .ssn-right {
		padding-top: 0px;
	}

	.prjs-detail-head {
		padding-bottom: 20px;
		margin: 0 0 40px;
	}

	.prjs-detail-content .h1 {
		font-size: 20px;
		margin: 0 0 16px;
	}

	.prjs-detail-overview {
		margin: 16px 0 32px;
	}

	.prjs-detail-overview p {
		font-size: 16px;
		line-height: 28px;
	}

	.prjs-detail-textblock {
		margin: 0 0 32px;
	}

	.prjs-detail-textblock p {
		font-size: 16px;
		line-height: 28px;
	}

	.citateblock {
		padding: 89px 32px 64px;
		background-position: 32px 16px;
	}

	.citateblock-bottom {
		margin: 16px 0 0;
		padding-right: 0;
	}

	.citateblock:after {
		right: 32px;
		bottom: 7px;
	}

	.tags-slider {
		margin: 32px 0;
	}

	.prjct-questions.s-questions .sq-block {
		padding: 40px 0 0;
	}

	.prjct-questions.s-questions .h1 {
		font-size: 20px;
		line-height: 25px;
		margin: 0 0 56px;
		font-weight: 600;
	}

	.prjct-questions.s-questions .sq-block .sqb-row.sqb-btn-wrap .btn {
		letter-spacing: 0;
		font-weight: bold;
		padding: 18px 28px 18px 56px;
		margin: 0;
		font-size: 16px;
		letter-spacing: 0;
	}

	.prjct-questions.s-questions .sq-block .sqb-row.sqb-btn-wrap .btn:before,
	.prjct-questions.s-questions .sq-block .sqb-row.sqb-btn-wrap .btn:after {
		width: 17px;
		height: 17px;
		left: 25px;
	}

	.prjct-questions.s-questions .sq-block .sqb-row.sqb-btn-wrap {
		padding-top: 48px;
	}

	.s-services.s-projects .h2 {
		font-size: 24px;
		line-height: 127%;
		margin: 0 0 29px;
	}

	.s-services.s-projects .s-projects-nav .h2 {
		margin: 0;
	}

	.s-projects-nav {
		margin: 0 0 29px;
	}

	.prj-slider {
		margin-top: 29px;
	}
}

@media only screen and (max-width: 1250px) {
	.s-projects-nav .s-all-goto-mh {
		display: none;
	}

	.s-services.s-projects {
		padding-top: 30px;
		padding-bottom: 40px;
	}

	.s-extra-btn {
		display: none;
	}

	.s-services.s-projects.s-projects-other,
	.s-projects-other {
		padding: 56px 0 38px;
	}
}

@media (max-width: 992px) {
	.uv-flt-container {
		margin: 32px 0 23px;
	}

	.projects-cards-item {
		width: calc(50% - 10px);
	}

	.uv-flt-value {
		max-width: 190px;
	}

	.projects-cards-wrap {
		margin-bottom: 40px;
	}

	.projects-cards-btn-wrap {
		margin: 0 0 70px;
	}

	.s-services-main.s-projects-main,
	.s-projects-main {
		padding-bottom: 20px;
	}

	.btn.prj-more {
		padding: 13px 30px;
	}


	.s-projects-main-detailed .ssn-left {
		display: block;
	}

	.prjs-detail-content {
		margin: 0 0 0 300px;
	}

}

@media (max-width: 767px) {
	.uv-flt-container {
		margin: 16px 0 18px;
		padding-left: 0px;
		background: transparent;
		flex-flow: column wrap;
	}

	.uv-flt-item {
		width: 100%;
	}

	.uv-flt-trigger {
		width: 100%;
		padding: 0 14px;
		padding-right: 40px;
	}

	.uv-flt-label {
		font-size: 14px;
		line-height: 20px;
	}

	.uv-flt-value {
		font-size: 11px;
		line-height: 20px;
		max-width: 100%;
		width: fit-content;
	}

	.projects-cards-wrap {
		gap: 10px;
	}

	.projects-cards-item {
		width: 100%;
	}

	.projects-cards-item {
		gap: 8px;
		padding: 16px 16px 64px;
	}

	.projects-cards-item p {
		padding-top: 8px;
		letter-spacing: 0;
	}

	.prj-card-flagged::before {
		width: 18px;
		height: 33px;
		right: 26px;
	}

	.projects-cards-item-special {
		padding: 48px 16px 16px;
	}

	.projects-cards-item-special .projects-cards-special-title {
		padding-bottom: 8px;
	}

	.projects-cards-item-special p {
		padding-top: 16px;
	}

	.uv-flt-dropdown {
		min-width: 300px;
		width: 100%;
		top: 51px;
		padding: 16px 10px 14px;
	}

	.uv-flt-text,
	.uv-flt-dropdown--large .uv-flt-text {
		font-size: 14px;
	}

	.uv-flt-scroll {
		max-height: 312px;
	}

	.uv-flt-radio,
	.uv-flt-checkbox {
		top: 10px;
		margin-right: 10px;
	}

	.uv-flt-opt {
		padding: 4px 8px 4px 34px;
	}

	.uv-flt-group-title {
		font-size: 15px;
		margin: 10px 0 0;
	}

	.uv-flt-actions {
		padding: 12px 0 2px;
	}

	.uv-flt-btn {
		height: 36px;
	}

	.s-projects-main-detailed .ssn-left {
		display: none;
	}

	.prjs-detail-content {
		padding-top: 23px;
		margin: 0;
	}

	.prjs-detail-content .h1 {
		font-size: 24px;
		line-height: 36px;
	}

	.prjs-detail-head {
		margin: 0 0 16px;
	}

	.prjs-detail-mobile-logo {
		max-width: 300px;
		display: block;
		margin: 0 0 16px;
	}

	.citateblock {
		padding: 89px 16px 69px;
		background-position: 16px 16px;
	}

	.citateblock:after {
		right: 0;
		bottom: 0;
	}

	.prjct-questions.s-questions .sq-block {
		padding: 26px 0 0;
	}

	.prjct-questions.s-questions .h1 {
		margin: 0 0 40px;
	}

	.prjct-questions.s-questions .sq-block .sqb-row .def-inp {
		width: 100%;
	}

	.prjct-questions.s-questions .sq-block .sqb-row {
		gap: 32px;
		margin: 0 0 32px;
	}

	.s-services.s-projects .h2 {
		font-size: 18px;
		line-height: 28px;
	}

	.s-all-goto {
		display: none;
	}

	.s-projects-nav-arrows {
		width: 100%;
		justify-content: space-between;
	}

	.s-services.s-projects.s-projects-other,
	.s-projects-other {
		padding: 28px 0 58px;
	}

	.swiper-slide .prj-card-service {
		padding-top: 8px;
	}

	.s-btn-arr {
		left: auto;
		bottom: 16px;
		height: 16px;
		right: 16px;
		font-size: 0px;
		color: transparent;
		padding: 0;
	}

	.swiper-slide .projects-cards-item .s-btn-arr .btn-arr {
		width: 40px;
		height: 40px;
	}

	.swiper-slide .prj-card-service:not(.projects-cards-item-special) {
		padding-top: 0px;
		order: 2;
		border: 0;
	}

	.swiper-slide .projects-cards-item:not(.projects-cards-item-special) p {
		border-top: 1px solid #D9D9D9;
		padding-top: 8px;
		order: 1;
	}

	.s-all-goto.s-all-goto-mobile {
		margin: 18px 0 0;
		display: inline-block;
		font-size: 14px;
	}

	.s-all-goto.s-all-goto-mobile:first-letter {
		text-transform: uppercase;
	}
}

@media (max-width: 400px) {
	.my-container {
		padding-left: 10px;
		padding-right: 10px;
	}
}



.mobile-sticky-menu {
	display: none;
}

@media (max-width: 767px) {
	.mobile-sticky-menu {
		display: block;
		position: fixed;
		bottom: 16px;
		left: 10px;
		right: 10px;
		z-index: 1000;
		font-family: Montserrat, sans-serif;
	}

	.msm-trigger {
		background: #D9D9D9;
		box-shadow: 0px 0px 0px 1px rgba(70, 79, 96, 0.16), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		border-radius: 32px;
		padding: 12px 24px;
		height: 54px;
		display: flex;
		align-items: center;
		cursor: pointer;
		position: relative;
		z-index: 1;
	}

	.msm-label {
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		color: #313131;
	}

	.msm-hamburger,
	.msm-hamburger-close {
		width: 24px;
		height: 24px;
		position: absolute;
		right: 24px;
		bottom: 15px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.msm-hamburger span,
	.msm-hamburger-close span {
		display: block;
		width: 20px;
		height: 2px;
		background: #131719;
		margin: 2px 0;
	}

	.msm-content {
		background: #D9D9D9;
		border-radius: 32px;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		display: none;
		z-index: 10;
		padding: 12px 24px 12px 24px;
		box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);
	}

	.msm-list,
	.msm-extra-list {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.msm-list li,
	.msm-extra-list li {
		padding: 8px 0;
	}

	.msm-list li a,
	.msm-extra-list li a {
		text-decoration: none;
		color: #808080;
		font-size: 16px;
		line-height: 20px;
		font-weight: 600;
		display: block;
		letter-spacing: 0.02em;
	}

	.msm-list li.active a,
	.msm-extra-list li.active a {
		color: #313131;
		font-weight: 600;
	}

	.msm-list li.active,
	.msm-extra-list li.active {
		pointer-events: none;
	}
}