* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


@font-face {
	font-family: 'SegoeUI';
	src: url('/local/templates/MsR2024/fonts/SegoeUI-Light.woff2') format('woff2'),
		url('/local/templates/MsR2024/fonts/SegoeUI-Light.woff') format('woff');
	font-weight: 300;
}

@font-face {
	font-family: 'SegoeUI';
	src: url('/local/templates/MsR2024/fonts/SegoeUI.woff2') format('woff2'),
		url('/local/templates/MsR2024/fonts/SegoeUI.woff') format('woff');
	font-weight: 400;
}

@font-face {
	font-family: 'SegoeUI';
	src: url('/local/templates/MsR2024/fonts/SegoeUI-SemiBold.woff2') format('woff2'),
		url('/local/templates/MsR2024/fonts/SegoeUI-SemiBold.woff') format('woff');
	font-weight: 600;
}

@font-face {
	font-family: 'SegoeUI';
	src: url('/local/templates/MsR2024/fonts/SegoeUI-Bold.woff2') format('woff2'),
		url('/local/templates/MsR2024/fonts/SegoeUI-Bold.woff') format('woff');
	font-weight: 700;
}

@font-face {
	font-family: 'SegoeUI Italic';
	src: url('/local/templates/MsR2024/fonts/SegoeUI-Italic.woff2') format('woff2'),
		url('/local/templates/MsR2024/fonts/SegoeUI-Italic.woff') format('woff');
	font-weight: 600;
}

@font-face {
	font-family: 'SegoeUI Italic';
	src: url('/local/templates/MsR2024/fonts/SegoeUI-BoldItalic.woff2') format('woff2'),
		url('/local/templates/MsR2024/fonts/SegoeUI-BoldItalic.woff') format('woff');
	font-weight: 700;
}


body {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	background-color: #000;
}

.absolute-container {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;

}

/* Header */
header {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background-color: #0a0a0a;
}

.header-up {
	z-index: 180;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1920px;
	height: 58px;
	padding: 0px 150px 40px 150px;
	background-color: #0a0a0a;
	margin-top: 40px;
}

.header-down {
	width: 100%;
	height: 58px;
	background-color: #84c447;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-container {
	display: flex;
	align-items: center;
	gap: 60px;
}

.logo {
	z-index: 200;
	display: flex;
	align-items: center;
	font-family: 'SegoeUI Italic';
	font-weight: 700;
	font-size: 18px;
	color: #666666;
	text-decoration: none;
	height: 58px;
}

.logo img {
	margin-right: 6px;
}

nav {
	z-index: 200;
	display: flex;
	align-items: center;
	gap: 21px;
	height: 58px;
	margin-top: 20px;
}

nav a {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	text-decoration: none;
	display: flex;
	align-items: center;
}

nav a:hover {
	color: #84c447;
}

.support {
	z-index: 200;
	display: flex;
	align-items: center;
	height: 58px;
	margin-top: 20px;
}

.support p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #666666;
}

.support button {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	border: none;
	background-color: transparent;
}

.support button:hover {
	cursor: pointer;
	color: #84c447;
}

.navigation {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-top: 20px;
}

.navigation-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.portfolio {
	z-index: 200;
	position: relative;
	display: flex;
	border: none;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	background-color: transparent;
	text-decoration: none;
}

.portfolio img {
	position: relative;
	top: 6px;
	margin-left: 6px;
	background-color: transparent;
}

.portfolio:hover span {
	color: #84c447;
}

.portfolio:hover {
	cursor: pointer;
}


.search {
	z-index: 200;
	display: flex;
	border: none;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	background-color: transparent;
	position: relative;
	display: flex;
	align-items: center;
}

.search svg {
	position: relative;
	margin-left: 6px;
}

.search:hover svg path {
	fill: #84c447;
}

.search:hover span {
	color: #84c447;
}

.search:hover {
	cursor: pointer;
}

.search-overlay {
	padding: 58px;
	z-index: 100;
	position: absolute;
	top: -400px;
	left: 0;
	width: 100%;
	height: 400px;
	overflow: hidden;
	background-color: #0a0a0a;
	transition: top 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 1000px;
}

.search-block {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.search-block input {
	padding: 20px 20px 20px 50px;
	width: 100%;
	border: 1px solid #84c447;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.search-block input::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.search-block input:focus {
	outline: none;
}

.search-block button {
	border: none;
	background-color: transparent;
	position: absolute;
	padding-left: 20px;
}

.search-block button:hover {
	cursor: pointer;
}

.search-block button svg {
	width: 17px;
}

.search-links {
	gap: 10px;
}

.search-links p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	margin-bottom: 7px;
}

.search-link {
	display: flex;
	align-items: center;
	margin: 0px 0px 10px 5px;
}

.search-link a {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 12px;
	color: #B7B7B7;
	text-decoration: none;
	margin-left: 5px;
}

.search-link:hover a {
	color: #84c447;
}

.shop {
	z-index: 200;
	display: flex;
	text-decoration: none;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #000000;
}

.shop img {
	position: relative;
	margin-left: 6px;
}

.shop:hover p {
	color: #84c447;
}

.shop:hover {
	cursor: pointer;
}

.login {
	z-index: 200;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
}

.login img {
	position: relative;
	margin-left: 16px;
}

.login:hover {
	color: #84c447;
	cursor: pointer;
}

.header-down p {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.header-down a {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

.header-down a:hover {
	border-bottom: 1px solid #fff;
}

.header-confidentiality-block {
	width: 100%;
	height: 130px;
	display: flex;
	justify-content: center;
	background-color: #262626;
}

.header-confidentiality {
	width: 100%;
	max-width: 1800px;
	height: 130px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px 100px 0px 100px;
}

.header-confidentiality p {
	font-family: 'SegoeUI';
	font-weight: 700;
	font-size: 36px;
	color: #fff;
}

.header-confidentiality span {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

/* Header mobile */

.header-mobile {
	width: 100%;
	display: none;
	align-items: center;
	justify-content: space-between;

}

.header-mobile-container {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.burger {
	width: 48px;
	height: 48px;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1200;
}

.burger:hover {
	cursor: pointer;
}

.menu {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110%;
	background-color: #ffffff;
	z-index: 1000;
	padding: 20px;
}

.menu-container {
	margin-top: 58px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.menu a {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #000000;
	text-decoration: none;
}

.menu.open {
	display: block;
}

article {
	width: 100%;
	max-width: 1800px;
	padding: 0px 100px 0px 100px;
}

/* Footer */
footer {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 40px 100px 20px 100px;
	background-color: #0a0a0a;
}

.footer-up {
	display: flex;
	justify-content: start;
	width: 100%;
	max-width: 1600px;
	gap: 10px;
	margin-bottom: 100px;
}

.footer-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 204px;
}

h5 {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #000000;
	margin-bottom: -3px;
}

.footer-block a {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	text-decoration: none;
}

.footer-block a:hover {
	color: #84c447;
}

.footer-down {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	max-width: 1600px;
	gap: 5px;
}

.footer-down a {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	text-decoration: none;
}

.footer-down p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 12px;
	color: #B7B7B7;
	text-decoration: none;
}

.footer-down a:hover {
	color: #84c447;
}

.footer-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.footer-right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-left: auto;
}

.absolute-container {
	flex: 1;
}

/* Main */
main {
	width: 100%;
	max-width: 1920px;
	margin-bottom: 100px;
}

h1 {
	width: 100%;
	max-width: 740px;
	font-family: 'SegoeUI';
	font-weight: 700;
	font-size: 36px;
	color: #fff;
}

main .slides p {
	width: 100%;
	max-width: 692px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: 24px;
	margin: 10px 0px 20px 0px;
}

.slides a {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

.slides a:hover {
	background-color: #9ed866;
	cursor: pointer;
}

.main-container {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-right: 10px;
}

.main-register {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.main-register:hover {
	background-color: #9ed866;
	cursor: pointer;
}

.main-login {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.main-login:hover {
	background-color: #9ed866;
	cursor: pointer;
}

.main-banner-button {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.main-banner-button:hover {
	background-color: #9ed866;
	cursor: pointer;
}

/* Section */
section {
	width: 100%;
	max-width: 1800px;
	padding: 0px 100px 0px 100px;
}

/* Sliders */
.slide1 {
	padding: 198px 0px 190px 211px;
	background-position: right top;
	background-size: auto 100%;
	background-repeat: no-repeat;
	height: 600px;
	position: relative;
}

.slide2 {
	position: relative;
	padding: 202px 0px 186px 48px;
	background-position: right top;
	background-size: cover;
	background-repeat: no-repeat;
}

.slide3 {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.slide4 {

	padding: 198px 0px 190px 211px;
	background-position: right top;
	background-size: auto 100%;
	background-repeat: no-repeat;
	height: 600px;
}

.slide5 {
	/* background-image: url(images/Project.svg); */
	background-position: right top;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-top: 63%;
}

.slide6 {
	display: flex;
	justify-content: center;
	gap: 46px;
}

.slider-container1 {
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.slider-container2,
.slider-container3,
.slider-container4 {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	max-width: 1600px;
}

.slider-container3,
.slider-container4 {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	max-width: 1600px;
	flex-wrap: wrap;
	gap: 24px;
}

.slider-container5 {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	max-width: 1024px;
}

.slider-container6 {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	max-width: 1600px;
}



.slider-container5 .indicators {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 40%;
	left: -30px;
}

.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.project-slider {
	width: 100%;
	max-width: 1064px;
	position: relative;
}

.slides {
	cursor: pointer;
}

.slide {
	width: 100%;
	flex: 0 0 100%;
}

.slide-card {
	display: flex;
}

.indicators {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

.indicator {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: none;
	background-color: #B7B7B7;
	cursor: pointer;
}

.indicator.active {
	width: 8px;
	height: 8px;
	background-color: #84c447;
}

.indicator-border {
	border: none;
	border-radius: 50%;
	padding: 4px;
}

.indicator-border.active {
	border: 1px solid #84c447;
}

h6 {
	font-family: 'SegoeUI';
	font-size: 36px;
	font-weight: 600;
	color: #2a2a2b;
	margin-bottom: 15px;
}

/* Services */
.services {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 100px;
}

.card-container {
	display: flex;
	gap: 24px;
	max-width: calc(50% - 12px);
}

/* Cards */
.card {
	width: 100%;
	max-width: 382px;
	overflow: hidden;
	box-sizing: border-box;
}

.card img {
	width: 100%;
	height: auto;
	margin-bottom: -5px;
	border-left: 2px solid #84c447;
	border-top: 2px solid #84c447;
	border-right: 2px solid #84c447;
}

.card-block {
	padding: 33px 23px 23px 23px;
	border-left: 2px solid #84c447;
	border-bottom: 2px solid #84c447;
	border-right: 2px solid #84c447;
	height: auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 300px;
	background-color: #262626;
}

h4 {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 30px;
	color: #fff;
}

.card-block p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 24px;
	margin-top: 10px;
}

.card-block a {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background-color: #84c447;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.card-block a:hover {
	background-color: #9ed866;
}

/* Contract */
.contract {
	margin-bottom: 100px;
}

h2 {
	width: 100%;
	max-width: 710px;
	font-family: 'SegoeUI';
	font-weight: 700;
	font-size: 36px;
	color: #fff;
}

.contract .slides p {
	width: 100%;
	max-width: 692px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: 24px;
	margin: 10px 0px 20px 0px;
}

/* Works */
.works {
	margin-bottom: 100px;
}

h3 {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 36px;
	color: #2a2a2b;
	margin-bottom: 20px;
}

/* Partners */
.partners {
	margin-bottom: 140px;
}

/* Socials */
.socials {
	display: flex;
	align-items: center;
	font-family: 'SegoeUI Italic';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
	margin-bottom: 30px;
}

.socials h5 {
	font-family: 'SegoeUI Italic';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
}

.socials-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 18px;
}

/* Works.html */
.cards {
	gap: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: start;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 20px 0px 100px 0px;
}

.pagination button {
	border: 1px solid #84c447;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #84c447;
	background-color: transparent;
}

.pagination button:hover {
	color: #fff;
	background-color: #84c447;
	cursor: pointer;
}

.pagination button.active {
	color: #fff;
	background-color: #84c447;
	border: 1px solid #84c447;
}

.pagination a {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #84c447;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #84c447;
	background-color: transparent;
}

.pagination a:hover {
	color: #fff;
	background-color: #84c447;
	cursor: pointer;
}

.pagination a.active {
	color: #fff;
	background-color: #84c447;
	border: 1px solid #84c447;
}

.category {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0px 0px 50px 0px;
}

/* .category button {
	border: 1px solid #84c447;
	padding: 10px 20px 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #84c447;
	background-color: transparent;
	border-radius: 20px;
}

.category button:hover {
	color: #fff;
	background-color: #84c447;
	cursor: pointer;
}

.category button.active {
	color: #fff;
	background-color: #84c447;
	border: 1px solid #84c447;
} */

.category a {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	border: 1px solid #84c447;
	padding: 10px 20px 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #84c447;
	background-color: transparent;
	border-radius: 20px;
	text-decoration: none;
}

.category a:hover {
	color: #fff;
	background-color: #84c447;
	cursor: pointer;
}

.category a.active {
	color: #fff;
	background-color: #84c447;
	border: 1px solid #84c447;
}

/* Project.html */
.project {
	width: 100%;
	max-width: 1800px;
	margin: 100px 0px 100px 0px;
}

.project-content {
	display: flex;
	width: 100%;
	max-width: 1800px;
}

.project-information {
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.project-block {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.project-block button {
	width: 120px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	position: relative;
	top: 50px;
	left: -10px;
}

.project-block button:hover {
	cursor: pointer;
	background-color: #9ed866;
}

.project-block button:hover {
	cursor: pointer;
}

.project h3 {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 150px;
	color: #fff;
}

.project-block2 p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	position: relative;
	left: 10px;
}

.project-block3 span {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 60px;
	color: #2a2a2b;
	position: relative;
	top: -50px;
	left: 5px;
}

.project-block3 p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	position: relative;
	top: -50px;
	left: 10px;
}

.project-navigation {
	position: relative;
	width: 100%;
	max-width: 1800px;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 15px;
	margin: 190px 0px 100px 0px;
}

.discuss {
	width: 182px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: 1px solid #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #84c447;
}

.discuss:hover {
	cursor: pointer;
	background-color: #9ed866;
	border: 1px solid #9ed866;
	color: #fff;
}

.move {
	width: 182px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

.move:hover {
	cursor: pointer;
	background-color: #9ed866;
}

.project-description {
	margin-bottom: 80px;
}

.project-description span {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.project-description p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 30px;
	color: #666666;
	line-height: 24px;
	margin: 30px 0px 30px 0px;
	width: 100%;
	max-width: 1125px;
}

.project-description a {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
	margin-left: 10px;
	text-decoration: none;
}

.project-description a:hover {
	color: #84c447;
}

.project-worked {
	display: flex;
	gap: 50px;
	margin-top: 10px;
}

.project-people {
	display: flex;
	align-items: center;
}

.project-comment-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.project-comment-title p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 30px;
	color: #666666;
}

.project-comment-title button {
	width: 120px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.project-comment-title button:hover {
	cursor: pointer;
	background-color: #9ed866;
}

.project-comment-title button:hover {
	cursor: pointer;
}

.project-comment-total {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 90px 0px 40px 0px;
}

.project-comment-total p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.project-comment-write {
	width: 100%;
	max-width: 600px;
}

.project-comment-write textarea {
	width: 100%;
	max-width: 600px;
	border: 1px solid #84c447;
	padding: 20px;
	height: 200px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	resize: none;
}

.project-comment-write textarea::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.project-comment-write textarea:focus {
	outline: none;
}

.project-comment-write-container {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px;
}

.сomment-leave {
	width: 210px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.сomment-leave:hover {
	cursor: pointer;
	background-color: #9ed866;
}

.comment-login {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.comment-login:hover {
	cursor: pointer;
	background-color: #9ed866;
}


.project-comment-account {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.project-comment-account-name {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	margin-left: 10px;
}

.project-comment-account-name:hover {
	color: #84c447;
	cursor: pointer;
}

.project-comment-date {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.project-comment-description {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	margin: 25px 0px 15px 0px;
}

.project-comment-navigation {
	display: flex;
	align-items: center;
	gap: 30px;
}

.project-comment-stats {
	display: flex;
	align-items: center;
}

.project-comment-stats button {
	border: none;
	background-color: transparent;
}

.project-comment-stats button:hover {
	cursor: pointer;
}

.project-comment-stats span {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	margin: 0px 5px 0px 5px;
}

.project-comment-answer {
	border: none;
	background-color: transparent;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
}

.project-comment-answer.active {
	color: #84c447;
}

.project-comment-answer:hover {
	color: #84c447;
	cursor: pointer;
}

.project-comment-wrapper {
	display: none;
	margin-bottom: 50px;
}

.project-comment-wrapper textarea {
	width: 100%;
	border: 1px solid #84c447;
	padding: 20px;
	height: 100px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	resize: none;
	margin: 30px 0px 15px 0px;
	position: relative;
}

.project-comment-wrapper textarea::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.project-comment-wrapper textarea:focus {
	outline: none;
}

.project-comment-wrapper-block {
	display: flex;
	align-items: center;
	gap: 15px;
}

.project-cancel {
	width: 120px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border: none;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

.project-cancel:hover {
	cursor: pointer;
	background-color: #9ed866;
}

.project-send {
	width: 120px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: 1px solid #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #84c447;
}

.project-send:hover {
	cursor: pointer;
	background-color: #9ed866;
	border: 1px solid #9ed866;
	color: #fff;
}

.project-comment-block {
	display: flex;
	gap: 130px;
}

.project-comment-content {
	margin-bottom: 30px;
}

.project-comments {
	width: 100%;
}

.project-comment-add {
	margin-left: 60px;
}

/* Confidentiality.html */
.confidentiality {
	width: 100%;
	max-width: 1800px;
	margin: 30px 0px 70px 0px;
}

.confidentiality img {
	width: 100%;
	max-width: 1000%;
	aspect-ratio: 100% / auto;
	overflow: hidden;
	box-sizing: border-box;
	margin: 20px 0px 20px 0px;
}

.confidentiality-notification {
	margin: 30px 0px 50px 0px;
}

h5 {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 24px;
}

.confidentiality p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 24px;
}

.confidentiality span {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 30px;
	color: #000000;
}

.confidentiality a {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #84c447;
	line-height: 24px;
	text-decoration: none;
}

.confidentiality a:hover {
	color: #9ed866;
}

.confidentiality ul li::marker {
	color: #84c447;
}

.confidentiality ul li {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 24px;
	margin-left: 22px;
}

.confidentiality-container {
	display: flex;
}

.confidentiality-container svg {
	position: relative;
	top: 10px;
	flex-shrink: 0;
	margin: 0px 5px 0px 20px;
}

.confidentiality-category {
	margin-bottom: 30px;
}

/* 404.html */
.not {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: 200px 0px 100px 0px;
}

.not p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	text-align: center;
}

.map a {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #84c447;
	text-decoration: none;
}

.map a:hover {
	color: #9ed866;
}

.map:hover svg path {
	fill: #9ed866;
}

.search-block-404 {
	width: 100%;
	max-width: 500px;
	margin-top: 30px;
}

/* Group.html */
.group {
	margin: 50px 0px 100px 0px;
}

.group-card {
	border-top: 1px solid #000000;
	/* background-image: url(/local/templates/MsR2024/images/Group.svg); */
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	max-width: 365px;
	aspect-ratio: 365 / 330;
	overflow: hidden;
	box-sizing: border-box;
	background-color: #000000;
	margin-bottom: 20px;
	position: relative;
	transition: .3s linear;
}

.group-card:hover .group-light {
	opacity: .2;
}

.group-light {
	transition: .3s linear;
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.group-card:hover {
	border-top: 1px solid #84c447;
	/* background-image: url(images/GroupHover.svg); */
}

.group-card:hover h6 {
	opacity: 1;
}

.group-card:hover p {
	opacity: 1;
}

.group-card h6 {
	transition: .3s linear;
	position: relative;
	top: 27%;
	left: 5%;
	font-family: 'SegoeUI';
	font-size: 16px;
	font-weight: 600;
	color: #84c447;
	opacity: 0;
}

.group-card p {
	transition: .3s linear;
	position: relative;
	top: 27%;
	left: 5%;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 30px;
	color: #84c447;
	opacity: 0;
	text-wrap: wrap;
}

.group-information {
	position: relative;
	margin-top: 50px;
}

.group-block {
	display: none;
	width: 100%;
	background-color: transparent;
	top: 0;
	left: 0;
}

.group-container {
	display: flex;
	gap: 30px;
}

.group-block:first-child {
	display: block;
}

.group-card.active .group-light {
	opacity: .2;
}

.group-card.active {
	border-top: 1px solid #84c447;

}

.group-card.active h6 {
	opacity: 1;
}

.group-card.active p {
	opacity: 1;
}

.person-information {
	display: flex;
	flex-direction: column;
}

.person-information img {
	width: 466px;
	height: 422px;
	border-top: 1px solid #84c447;
}

.person-information span {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 30px;
	color: #000000;
	margin: 30px 0px 25px 0px;
}

.person-information p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	margin-bottom: 5px;
}

.skill-information {
	width: 100%;
}

.skill-level {
	width: 100%;
	margin: 30px 0px 0px 0px;
}

.skill-text {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	line-height: 24px;
}

.skill-container {
	width: 100%;
	max-width: 1100px;
	border: 1px solid #84c447;
	border-radius: 8.5px;
	padding: 5px;
	margin-bottom: 10px;
}

.skill-level-indicator {
	width: 100%;
	max-width: 1100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
}

.skill-level-indicator p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
}

.skill-beginner {
	color: #313131;
}

.skill-specialist {
	color: #e9b45f;
}

.skill-master {
	color: #9ed866;
}

.skill-professional {
	color: #84c447;
}




.chart {
	border: 1px solid #84c447;
	justify-content: flex-start;
	border-radius: 8.5px;
	align-items: center;
	position: relative;
	padding: 0 5px;
	display: flex;
	height: 40px;
	width: 100%;
	background-color: transparent;
	margin-bottom: 10px;
}

.bar {
	animation: load 3s normal forwards, colorChange 2s normal forwards;
	border-radius: 8.5px;
	height: 30px;
	width: 0;
	position: relative;
	overflow: hidden;
}

.bar span {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	position: absolute;
	left: 10px;
	top: 45%;
	transform: translateY(-50%);
	white-space: nowrap;
}

@keyframes load {
	0% {
		width: 0;
	}

	100% {
		width: var(--width);
	}
}

@keyframes colorChange {

	0%,
	30% {
		background: #313131;
	}

	100% {
		background: var(--color);
	}
}

/* Registration.html */
.registration {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	margin: 20px 0px 50px 0px;
}

.registration-information {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.registration-information p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	margin: 10px 0px 10px 0px;
}

.registration-container {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 450px;
	gap: 10px;
}

.registration-content {
	width: 100%;
	max-width: 450px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.registration-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	width: 100%;
	max-width: 450px;
}

.reg-name {
	width: 100%;
	max-width: 300px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-name::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-name:focus {
	outline: none;
}

.reg-surname {
	width: 100%;
	max-width: 300px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-surname::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-surname:focus {
	outline: none;
}

.reg-email {
	width: 100%;
	max-width: 450px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-email::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-email:focus {
	outline: none;
}

.reg-password {
	width: 100%;
	max-width: 450px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-password::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-password:focus {
	outline: none;
}

.reg-repeatpassword {
	width: 100%;
	max-width: 450px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-repeatpassword::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-repeatpassword:focus {
	outline: none;
}

.reg-number {
	width: 100%;
	max-width: 450px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-number::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-number:focus {
	outline: none;
}

.reg-country {
	width: 100%;
	max-width: 450px;
	position: relative;
	display: inline-block;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-country-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border: 1px solid #84c447;
}

.reg-phone {
	width: 100%;
	max-width: 450px;
	position: relative;
	display: inline-block;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.reg-phone-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border: 1px solid #84c447;
}

#toggle-button1 {
	border: none;
	background-color: transparent;
}

#toggle-button1:hover {

	cursor: pointer;
}

#toggle-button2 {
	border: none;
	background-color: transparent;
}

#toggle-button2:hover {

	cursor: pointer;
}

#dropdown-container1 {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	border: 1px solid #84c447;
	background-color: #fff;
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
}

#dropdown-container2 {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	border: 1px solid #84c447;
	background-color: #fff;
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
}

.hidden1 {
	display: none;
}

.hidden2 {
	display: none;
}

#country-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#country-list li {
	padding: 10px;
	cursor: pointer;
}

#country-list li:hover {
	background-color: #f0f0f0;
}

#phone-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#phone-list li {
	padding: 10px;
	cursor: pointer;
}

#phone-list li:hover {
	background-color: #f0f0f0;
}

.registration-content p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.registration-content a {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #84c447;
	text-decoration: none;
}

.registration-content a:hover {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #9ed866;
}

.reg-next {
	width: 180px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	border: none;
	margin-top: 40px;
}

.reg-next:hover {
	cursor: pointer;
	background-color: #9ed866;
	border: 1px solid #9ed866;
	color: #fff;
}

.code-switch {
	border: none;
	background-color: transparent;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #84c447;
	display: flex;
	align-items: center;
	gap: 5px;
}

.code-switch:hover {
	cursor: pointer;
}

.code-more {
	border: none;
	background-color: transparent;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #84c447;
	display: flex;
	align-items: center;
	gap: 5px;
}

.code-more:hover {
	cursor: pointer;
}

.reg-code-block {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
}

.code-input {
	width: 100%;
	max-width: 450px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.code-input::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.code-input:focus {
	outline: none;
}

.reg-code {
	width: 100%;
	max-width: 450px;
	display: flex;
	justify-content: space-between;
	margin: 30px 0px 70px 0px;
}

.reg-code img {
	width: 122px;
	height: 60px;
}

.reg-code-container {
	flex-grow: 1;
	margin-left: 20px;
	/* width: 70%; */
}


/* Authorization.html */
.authorization {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: 20px 0px 50px 0px;
}

.authorization h4 {
	text-align: center;
}

.authorization-information {
	margin-top: 20px;
}

.authorization-information p {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.authorization-content {
	width: 100%;
	max-width: 450px;
}

.authorization-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.authorization input {
	width: 100%;
	max-width: 450px;
	border: 1px solid #84c447;
	padding: 10px;
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	margin: 30px 0px 20px 0px;
}

.authorization input::placeholder {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}

.authorization input:focus {
	outline: none;
}

.aut-next {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	border: none;
}

.aut-next:hover {
	cursor: pointer;
	background-color: #9ed866;
	border: 1px solid #9ed866;
	color: #fff;
}

.aut-forgot {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #84c447;
	text-decoration: none;
	margin-left: 26px;
}

.aut-forgot:hover {
	color: #9ed866;
}

.authorization-block2 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.authorization-block2 p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
}

.checkbox-container {
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 15px;
	height: 15px;
	border: 1px solid #84c447;
	background-color: transparent;
}

.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkbox-container .checkmark {
	position: absolute;
	top: -1px;
	left: -1px;
	height: 15px;
	width: 15px;
	background-color: transparent;
}

.checkbox-container input:checked~.checkmark {
	background-color: #84c447;
}

.checkbox-container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox-container input:checked~.checkmark:after {
	display: block;
}

.checkbox-container .checkmark:after {
	left: 6px;
	top: 2px;
	width: 3px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.authorization-logo {
	position: relative;
	width: 250px;
	height: 250px;
}

.cube {
	position: absolute;
	width: 50%;
	height: 50%;
	background-color: transparent;

	transition: transform 2s, opacity 2s;
}

.cube1 {
	/*background-color: #84c447; */
	transform: translate(62.5px, 62.5px);
	background-image: url(/local/templates/MsR2024/images/left_up.png);
}

.cube2 {
	/*background-color: #ffffff; */
	transform: translate(62.5px, 62.5px);
	background-image: url(/local/templates/MsR2024/images/right_up.png);
}

.cube3 {
	/*background-color: #ffffff; */
	transform: translate(62.5px, 62.5px);
	background-image: url(/local/templates/MsR2024/images/left_down.png);
}

.cube4 {
	/*background-color: #84c447; */
	transform: translate(62.5px, 62.5px);
	background-image: url(/local/templates/MsR2024/images/right_down.png);
}

.authorization-logo.active .cube {
	opacity: 1;
}

.authorization-logo.active .cube1 {
	transform: translate(0, 0);
}

.authorization-logo.active .cube2 {
	transform: translate(124px, 0);
}

.authorization-logo.active .cube3 {
	transform: translate(0, 124px);
}

.authorization-logo.active .cube4 {
	transform: translate(124px, 124px);
}


.authorization input.input-warning {
	border: 1px solid #E9B45F;
}

.registration input.input-warning {
	border: 1px solid #E9B45F;
}

/* languages.html */
.languages {
	margin: 20px 0px 50px 0px;
}

.languages-container {
	display: flex;
	justify-content: center;
	margin: 20px 0px 20px 0px;
}

.languages-content {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
}

.languages-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 250px;
}

.language {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #84c447;
	text-decoration: none;
}

.language:hover {
	color: #9ed866;
}

span.language {
	font-family: 'SegoeUI';
	font-weight: 400;
	font-size: 16px;
	color: #666666;
	text-decoration: none;

}

span.language:hover {
	color: #666666;
}

/* News.html */
.news-navigation {
	display: flex;
	justify-content: space-between;
	margin: 50px 0px 30px 0px;
	color: #9ed866;
}

.news-navigation-contant p {
	font-family: 'SegoeUI';
	font-weight: 700;
	font-size: 30px;
	color: #666666;
	margin-bottom: 20px;
}

.news-navigation-contant span {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
}

.news-navigation-relevance {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
	border: none;
	background-color: transparent;
}

.news-navigation-relevance:hover {
	color: #84c447;
	cursor: pointer;
}

.news-navigation-container {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 55px;
}

.news-navigation-fresh {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
	border: none;
	background-color: transparent;
}

.news-navigation-fresh:hover {
	color: #84c447;
	cursor: pointer;
}



.news-filter {
	border: none;
	display: flex;
	align-items: center;
	position: relative;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	background-color: transparent;
}

.news-filter:hover {
	cursor: pointer;
}

.news-filter svg {
	margin-left: 5px;
	background-color: transparent;
}



.filtered-block {
	display: none;
	position: absolute;
	border: 1px solid #84c447;
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	top: 35px;
}

.filtered-block h5 {
	font-family: 'SegoeUI';
	font-weight: 700;
	font-size: 16px;
	color: #666666;
	margin: 10px 0px 15px 15px;
}

.filter-checkbox {
	display: flex;
	align-items: center;
	margin-left: 15px;
}

.filter-checkbox p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	margin-left: 10px;
}

.filter-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.filter-show {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	border: none;
}

.filter-show:hover {
	cursor: pointer;
	background-color: #9ed866;
	border: 1px solid #9ed866;
	color: #fff;
}

.filter-throw {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #84c447;
	border-radius: 4px;
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	border: none;
}

.filter-throw:hover {
	cursor: pointer;
	background-color: #9ed866;
	border: 1px solid #9ed866;
	color: #fff;
}

.news-time {
	border: none;
	display: flex;
	align-items: center;
	position: relative;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	background-color: transparent;
}

.news-time:hover {
	cursor: pointer;
}

.news-time svg {
	margin-top: 5px;
	margin-left: 5px;
	background-color: transparent;
}

.news-navigation-block {
	display: flex;
	align-items: center;
	gap: 40px;
	position: relative;
	margin-top: 130px;
}

.filtered-block2 {
	display: none;
	position: absolute;
	border: 1px solid #84c447;
	background-color: #fff;
	border-radius: 5px;
	top: 35px;
	left: 127px;
	width: 100%;
	max-width: 230px;
	flex-direction: column;
	align-items: start;
}

.filtered-block2 button {
	border: none;
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	background-color: transparent;
	padding: 8px 0px 8px 16px;
}

.filtered-block2 button:hover {
	cursor: pointer;
	color: #9ed866;
}

.news-card {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto;
	margin-bottom: 50px;
}

.news-card img {
	margin-left: 30px;
}

.news-card h5 {
	margin-bottom: 10px;
}

.news-card a {
	font-family: 'SegoeUI';
	font-weight: 600;
	font-size: 16px;
	color: #666666;
	text-decoration: none;
}

.news-card a:hover {
	color: #9ed866;
}

.news-card p {
	font-family: 'SegoeUI';
	font-weight: 300;
	font-size: 16px;
	color: #666666;
	margin-top: 30px;
}

.news-card-container {}





.filtered-block {
	display: none;
}

/* Стили для активных кнопок пагинации */
.pagination button.active {
	font-weight: bold;
	text-decoration: underline;
}

.pagination a.active {
	font-weight: bold;
	text-decoration: underline;
}



/* Media */
@media (max-width: 1820px) {
	.header-up {
		padding: 0px 100px 40px 100px;
	}

	.header-confidentiality {
		padding: 0px 100px 40px 100px;
	}
}

@media (max-width: 1600px) {
	.card-block {
		height: 320px;
	}
}

@media (max-width: 1500px) {

	/* Header */
	.header-up {
		padding: 0px 100px 40px 100px;
	}

	.header-confidentiality p {
		font-size: 20px;
	}

	/* All */
	.slide1,
	.slide2 {
		padding: 150px 0px 140px 100px;
	}

	h1 {
		font-size: 28px;
		max-width: 600px;
	}

	.slides p {
		max-width: 520px;
	}

	.support {
		display: none;
	}

	.card-block {
		height: 400px;
	}

	h3 {
		font-size: 70px;
	}

	.project-block2 p {
		left: 5px;
	}

	.project-block3 span {
		font-size: 40px;
	}

	.project-block3 p {
		left: 5px;
	}

	.group-card h6 {
		font-size: 10px;
	}

	.group-card p {
		font-size: 20px;
	}

}

@media (max-width: 1200px) {

	/* Header */
	.header-up {
		padding: 0px 12px 40px 12px;
	}

	.header-confidentiality {
		padding: 0px 12px 40px 12px;
	}

	.navigation {
		gap: 20px;
	}

	.navigation-container {
		gap: 20px;
	}

	.search span {
		display: none;
	}

	.search svg {
		margin-left: 0px;
	}

	.shop p {
		display: none;
	}

	.shop img {
		margin-left: 0px;
	}

	.login p {
		display: none;
	}

	.login img {
		margin-left: 0px;
	}

	/* Footer */
	footer {
		padding: 10px 12px 10px 12px;
	}

	.footer-up {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: left;
	}

	/* All */
	section {
		padding: 0px 12px 0px 12px;
	}

	article {
		padding: 0px 12px 0px 12px;
	}

	.slide1,
	.slide2 {
		padding: 100px 50px 90px 50px;
		background-size: cover;
	}

	h4 {
		font-size: 24px;
	}

	.card-container {
		display: block;
		width: 50%;
		max-width: 50%;
	}

	.card {
		max-width: 600px;
		margin-bottom: 20px;
	}

	.card-block {
		height: 240px;
	}

	.project-comment-block {
		display: flex;
		flex-direction: column;
	}

	.project-comment-write {
		max-width: 1200px;
	}

	.project-comment-write textarea {
		max-width: 1200px;
	}

	.news-navigation {
		flex-direction: column;
	}

	.news-navigation-block {
		margin-top: 20px;
	}

	.news-navigation-container {
		margin-top: 20px;
	}

	.news-navigation-contant p {
		font-size: 20px;
		margin-bottom: 10px;
	}

}

@media (max-width: 1000px) {

	/* Header */
	.header-up {
		display: none;
	}

	.search-block {
		margin-left: 0px;
	}

	.header-mobile {
		display: flex;
	}

	.header-down {
		padding: 10px 20px 10px 20px;
		height: auto;
	}

	.search {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		z-index: 1200;
	}

	.shop {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
	}

	.login {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
	}

	/* Footer */
	.footer-up {
		margin-bottom: 50px;
	}

	.footer-down {
		gap: 10px;
	}

	.footer-left {
		display: flex;
		align-items: start;
		flex-direction: column;
		gap: 10px;
	}

	.footer-right {
		display: flex;
		align-items: start;
		flex-direction: column;
		gap: 10px;
		margin-left: 0px;
	}

	/* All */
	.card-block {
		height: 300px;
	}

	.project-content {
		display: flex;
		flex-direction: column;
	}

	.slider-container5 {
		margin-left: 0px;
	}

	.slider-container5 .indicators {
		display: flex;
		flex-direction: row;
		justify-content: center;
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		left: 0;
		top: 100%;
		margin-top: 20px;
	}

	.project {
		margin: 50px 0px 50px 0px;
	}

	.project-content {
		display: flex;
		flex-direction: column-reverse;
	}

	.project-information {
		max-width: 1000px;
	}

	.project-block button {
		left: 0px;
		top: 30px;
	}

	.project-block {
		display: flex;
		justify-content: space-between;
	}

	.project-information {
		margin-top: 50PX;
	}

	.project-worked {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}


	.project-comment-title p {
		font-size: 22px;
	}


	h3 {
		font-size: 70px;
	}

	.project-block2 p {
		left: 30px;
	}

	.project-block3 {
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		justify-content: left;
	}

	.project-block2 {
		display: flex;
		align-items: center;
		flex-direction: row;
		justify-content: left;
	}

	.project-block3 span {
		font-size: 40px;
		top: 0px;
	}

	.project-block3 p {
		left: 15px;
		top: 5px;
	}

	.project-navigation {
		margin: 40px 0px 40px 0px;
	}

	.slide6 {
		gap: 10px;
	}

	.group-container {
		display: flex;
		flex-direction: column;
	}
}


@media (max-width: 660px) {
	.services {
		display: block;
	}

	.slide1,
	.slide2 {
		padding: 100px 50px 90px 50px;
		background-size: cover;
	}

	.slide-card {
		display: block;
	}

	h1 {
		font-size: 24px;
	}

	h4 {
		font-size: 21px;
	}

	.card {
		max-width: 660px;
	}

	.card-container {
		width: auto;
		max-width: inherit;
	}

	.card-block {
		height: 280px;
	}

	.header-confidentiality-block {
		height: 170px;
	}

	.header-confidentiality {
		height: 170px;
	}

	.search-block input {
		font-size: 12px;
		padding: 20px 20px 20px 30px;
	}

	.search-block input::placeholder {
		font-size: 14px;
	}

	.search-block button svg {
		width: 15px;
		position: relative;
		top: 2px;
		left: -10px;
	}

	.slide6 {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.group-card {
		width: 100%;
		max-width: 365px;
		aspect-ratio: 365 / 330;
		overflow: hidden;
		box-sizing: border-box;
		background-color: #000000;
		margin-bottom: 20px;
	}

	.group-card h6 {
		font-size: 20px;
	}

	.group-card p {
		font-size: 30px;
	}

	.person-information img {
		width: 277px;
		height: 248pxfooter
	}

	.skill-level-indicator p {
		font-size: 12;
	}

	.reg-code {
		flex-direction: column;
	}


	.reg-code img {
		margin: 0 auto;
		margin-bottom: 15px;
	}

	.news-card img {
		display: none;
	}

}

/* bitrix ajax */
div[id^="comp_"] {
	width: 100%;
	max-width: 1920px;
	display: flex;
	align-items: center;
	flex-direction: column;
}