* {
	box-sizing: border-box;
}

.popup-opened,
.menu-opened {
	overflow: hidden;
}

.wrapper {
	max-width: 1680px;
	margin: 0 auto;
	padding: 0 80px;
	position: relative;
	width: 100%;
}


/* Side menu */

.bar {
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	overflow: hidden;
	z-index: 5;
	border-right: 1px solid #ffffff0a;
	background: #ffffff;
	transition: all .6s;
}

.bar-inner {
	overflow-y: auto;
	height: 100vh;
	width: 120%;
}

.bar-content {
	display: flex;
	flex-direction: column;
	height: 100vh;
	padding: 120px 80px 40px;
	width: 100vw;
}

.bar-content .navigation {
	display: block;
	width: 100%;
	text-align: center;
}

.bar-content .navigation ul {
	margin-bottom: 40px;
	flex-direction: column;
	padding-inline: 0;
	align-items: flex-start;
}

.bar-content .navigation ul li a {
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -0.01em;
	text-transform: none;
	color: #333333;
}

.bar-content .navigation ul li:hover {
	opacity: .6;
}

.menu-opened .bar {
	left: 0;
	padding-top: 0;
	width: 100%;
}

.bar .copy {
	margin-top: 68px;
	padding-bottom: 40px;
}

.bar .copy-row {
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -0.01em;
	text-transform: none;
	margin-bottom: 16px;
	color: #808080;
}

.bar .copy-row a {
	color: #808080;
}

.bar-search {
	position: relative;
	margin-bottom: 40px;
}

.bar-search-fld {
	position: relative;
	display: flex;
}

.bar-search-fld-input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #959595;
	font-size: 16px;
	outline: none;
	font-family: 'Montserrat', sans-serif;
	padding: 0 8px;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

.bar-search-fld-submit {
	width: 40px;
	height: 40px;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAABxElEQVRIib3Wz07UUBTH8Q8NgqwVorPUdzBkCGiUEBIX+CyEoE+gLHQBMdEH0AcwRve61PFP1MStYAYh6hpw4bjoaVqbsZ0/jSdp7u2cc37fe+f0nnbCvy3BEtZiPI+z+IFveIknMf6u0Km0VbxHb4DrLVaGBUzifkHkC26jHTs6FeMC7mC3ELsT+QNBnkXSEdYxXZMzjY2I7+HpILBsJwe4NMjKCjaPw8jfrgpcle9kWEgRdhw6y/0CEnnh10eEZLYpf0CSsvOKvPB1Namz09gLvaWiI8GNmD/CyZigYzyO+VrZ2YkVLIwJyWwx9F6XHQfhONcQqBV63bLjJBxTDYGmQu+vMiT4GfMzDYFmY/xeBu3H/EJDoIsx7hd/TKTdF643BMp0XpQdl6X/6a70HIxjM/gaeotlZ4J34dwYE3QrdDqY6BewIu918yNC2vJed60qcCeCDkeAtfEr8h/WBU9K3ye9WNmm+prN4KZ8Jz18wtwgsO1C0h62pIVtSQ9jS9owt+SF7+EBPsb8s/RNXGvLeFMQqbo6uBp5s/gwLCz7CronbZBdaVvpxv3d2Gn56RoJNqr9V9icvGav+h6qhmHPcfQHif6NgvSDUEoAAAAASUVORK5CYII=') center center no-repeat;
	background-size: 20px;
	border: 0;
}

/* Navigation */

.navigation {
	margin: 0 auto;
}

.navigation ul {
	list-style: none;
	margin: 0;
	display: flex;
	padding-inline: 20px;
	gap: 20px;
}

.navigation ul li {
	position: relative;
}

.navigation ul li a {
	display: block;
	cursor: pointer;
	white-space: nowrap;
}

.navigation ul li.active ul {
	opacity: 1;
	visibility: visible;
	padding-top: 20px;
}

.header2-navigation {
	opacity: 1;
}

.header2-navigation ul {
	display: flex;
	justify-content: space-between;
}

.header2-navigation ul li a {
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -0.01em;
	transition: all .3s;
	color: black;
}

.header2-navigation ul li a:hover {
	opacity: .6;
}

/* Burger */

.navigation-btn {
	width: 30px;
	height: 30px;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
	float: right;
	z-index: 1000;
	right: 40px;
	margin: 5px 0 0;
	display: none;
}

.navigation-btn:hover {
	opacity: .8;
}

.navigation-btn span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: black;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.navigation-btn span:nth-child(1) {
	top: 0px;
}

.navigation-btn span:nth-child(2),
.navigation-btn span:nth-child(3) {
	top: 8px;
	width: 100%;
}

.navigation-btn span:nth-child(4) {
	top: 16px;
	width: 50%;
}

.menu-opened .navigation-btn span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}

.menu-opened .navigation-btn span:nth-child(2) {
	transform: rotate(45deg);
	width: 90%;
}

.menu-opened .navigation-btn span:nth-child(3) {
	transform: rotate(-45deg);
	width: 90%;
}

.menu-opened .navigation-btn span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}

.menu-opened .navigation-btn span {
	background: black;
}

/* Header */
.header2.fixed {
	background: #fff;
	padding: 0px 0;
	box-shadow: 0 0 20px #0003;
}

.header2 a {
	text-decoration: none;
}

.header2.fixed.hide {
	top: -100px;
}

.fixed .header2-navigation a {
	color: black;
}

.header2 {
	font-family: 'Montserrat', sans-serif;
	position: fixed;
	z-index: 999;
	width: 100%;
	transition: all .6s;
	top: 0;
	left: 0;
	transform: translate(0px, 0px);
	height: 80px;
	display: flex;
	align-items: center;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	color:black
}

.header2 .logo-black {
}



.menu-opened .header2 {
	background: #fff;
}

.header2-inner {
	display: flex;
	justify-content: space-between;
	transition: all .6s;
	position: relative;
	padding-right: 200px;
	align-items: center;
}

.header2 .header2-logo {
	display: flex;
	align-items: center;
	float: left;
}

.header2 .header2-logo a {
	display: block;
	width: 200px;
}

.header2 .header2-logo svg {
	display: block;
	width: 100%;
	color: #fff;
}

.menu-opened .header2 .header2-logo svg {
	color: #000;
}

/* Search */

.search-btn {
	top: -15px;
	float: right;
	padding: 25px 0;
	transition: .5s ease-in-out;
	position: absolute;
	right: 0;
}

.main-search-fld {
	float: right;
	position: absolute;
	right: 0;
	top: 4px;
	padding: 18px 0;
	width: 26px;
}

.search-active .main-search-fld {
	width: 100%;
	padding-right: 34px;
}

.main-search-fld-input {
	float: right;
	width: 26px;
	height: 30px;
	padding: 0;
	padding-right: 100px;
	border: 0;
	border-bottom: 1px solid transparent;
	outline: none;
	color: #fff;
	background-position: right center;
	cursor: pointer;
	font-size: 0;
	border-color: transparent !important;
}

.main-search-fld-submit {
	position: absolute;
	right: 0;
	top: 22px;
	background-position: center center;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	visibility: hidden;
	cursor: pointer;
}

.main-search-fld-input,
.main-search-fld-submit {
	background-color: transparent;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAAB0klEQVRIib2Vz04UQRDGv56sgGeFuHvUdzAEwmqUEBIP+CyEIE8gHvQAMZEHwAcwRu9ylFWImngVyCJEPPPn4M/DfibFCLszuxPq0j1dVd+vu2umJukSAzJJTUlzHuuSbko6kvRT0oakN5I2Ukp/LtPpasAssE0x+wzMlAXUgJdB5AfwFJgA6sA1j5PAMrATYleBWlHIOycdA/PAcI+cYWDB8QBve8LCSQ6AuyVvYhw4dP5Kt8DZcJJSkBzsxDrTFwVkofDz/UCC1mJ4QbK8834ofNeaFACNALvWa0ZfJumx5+sppdNBQCmlE0mv/TiX30XLO5gcBBL0pqy3mXcc2HGrIlDDeu2849SOoYpAQ9Y7V4ZM0m/Pb1QBkjTq8VcetO/57YpAdzzux8VMnS4sSY8qAv3T+XBuFbjnO90BRgYhANeBPetN5Z0ZsGXnwoCgJeu0gHRRwEzodeN9QiZCr3vYLXDVQYdlYYacOX+tV3CNzv8E72yxV81ckyfhJADfgLEisJWQtAs8c1tp+GNsAE2v74XYV8BXz78D9SJXMQ18opi1gAfOGwW+lIVl3vkLYBNo02lXbT8/90lTLq88rF+7athYqNnH/z+qimGS3ks6/gvSm+lLInei8QAAAABJRU5ErkJggg==');
	background-repeat: no-repeat;
	background-size: 20px;
}

.main-search-fld.active .main-search-fld-input {
	padding-right: 100px;
	font-size: 13px;
	border-color: #111 !important;
}

.wht-srch .main-search-fld-input,
.wht-srch .main-search-fld-submit {
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAAB0klEQVRIib2Vz04UQRDGv56sgGeFuHvUdzAEwmqUEBIP+CyEIE8gHvQAMZEHwAcwRu9ylFWImngVyCJEPPPn4M/DfibFCLszuxPq0j1dVd+vu2umJukSAzJJTUlzHuuSbko6kvRT0oakN5I2Ukp/LtPpasAssE0x+wzMlAXUgJdB5AfwFJgA6sA1j5PAMrATYleBWlHIOycdA/PAcI+cYWDB8QBve8LCSQ6AuyVvYhw4dP5Kt8DZcJJSkBzsxDrTFwVkofDz/UCC1mJ4QbK8834ofNeaFACNALvWa0ZfJumx5+sppdNBQCmlE0mv/TiX30XLO5gcBBL0pqy3mXcc2HGrIlDDeu2849SOoYpAQ9Y7V4ZM0m/Pb1QBkjTq8VcetO/57YpAdzzux8VMnS4sSY8qAv3T+XBuFbjnO90BRgYhANeBPetN5Z0ZsGXnwoCgJeu0gHRRwEzodeN9QiZCr3vYLXDVQYdlYYacOX+tV3CNzv8E72yxV81ckyfhJADfgLEisJWQtAs8c1tp+GNsAE2v74XYV8BXz78D9SJXMQ18opi1gAfOGwW+lIVl3vkLYBNo02lXbT8/90lTLq88rF+7athYqNnH/z+qimGS3ks6/gvSm+lLInei8QAAAABJRU5ErkJggg==');
}
.wht-srch{
		font-family: 'Montserrat', sans-serif;
}
.wht-srch .main-search-fld.active .main-search-fld-input {
	border-color: #fff !important;
}

.search-active .main-search-fld-input {
	border-color: #fff;
	width: 100%;
	padding-right: 0;
	background: none !important;
	transition: .6s;
	cursor: text;
	font-size: 13px;
}

.search-active .main-search-fld-submit {
	visibility: visible;
}

.search-active .search-btn {
	width: 200px;
}

.menu-opened .main-search-fld input {
	color: #111;
	border-color: #111;
}

/* Footer */

.footer {
	font-family: 'Montserrat', sans-serif;
	padding: 60px 80px 40px;
	z-index: 2;
	background-color: #333333;
	color: #bfbfbf;
	min-width: 100%;
}

.footer a {
	text-decoration: none;
}

.footer-logo {
	width: 100px;
	display: inline-block;
}

.footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer__nav {
	display: flex;
	justify-content: space-between;
	gap: 220px;
}

.footer__nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 10px 0;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	align-self: flex-start;
}

.footer__nav ul li {
	list-style: none;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.footer__nav ul li a {
	display: block;
	text-transform: uppercase;
	color: #BFBFBF;
	transition: .25s color;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -1%;
	text-transform: uppercase;
}

.footer__nav ul li a:active {
	color: #d9d9d9;
}

.footer__contacts {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 80px;
}

.footer__contacts-mail {
	transition: .25s color;
	color: #BFBFBF;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -1%;
}

.footer__contacts-mail a {
	color: #BFBFBF;
}

.footer__contacts-mail a:active {
	color: #d9d9d9;
}

.footer__btn span {
	color: #bfbfbf;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #8c8c8c;
	padding: 0 32px;
	transition: .25s all;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -1%;
}

.footer__btn span:hover {
	border: 2px solid #bfbfbf;
	color: #bfbfbf;
}

.footer__btn span:active {
	border: 2px solid #d9d9d9;
	color: #d9d9d9;
}

.footer__socials {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer__socials span {
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: -1%;
}

.footer__copyright {
	text-align: center;
	margin-top: 60px;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 0;
	text-transform: none;
}

/* Responsive */

@media (min-width: 1280px) {
	.navigation ul li ul {
		display: flex;
		flex-direction: column;
		background-color: #ffffff;
		padding: 20px;
		gap: 20px;
		position: absolute;
		top: 30px;
		left: -20px;
		z-index: 100;
		width: 294px;
		min-height: 156px;
		box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
		opacity: 0;
		visibility: hidden;
		transition: .25s all;
	}

	.navigation ul li ul li a {
		color: #333333;
		font-weight: 500;
	}
}

@media screen and (max-width: 1279px) {
	.bar-search-fld-input {
		border-bottom: 1px solid #e6e6e6;
		height: 40px;
	}

	.bar-search-fld-input::placeholder {
		color: #333333;
		font-weight: 500;
	}

	.bar-search-fld-submit {
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 0px;
		transform: translateY(-50%);
		background-size: 16px;
	}

	.navigation ul li ul {
		min-width: auto;
		padding: 0;
		box-shadow: none;
		text-align: left;
		display: flex;
		gap: 20px;
		position: relative;
		width: 100%;
		height: 0;
		opacity: 1;
		visibility: visible;
		overflow: hidden;
		margin: 0 !important;
	}

	.navigation ul li.active ul {
		height: auto;
	}

	.bar-content .navigation ul li:hover {
		opacity: 1;
	}

	.navigation ul li ul a {
		font-weight: 500 !important;
	}

	.js-menu.active .js-menuLink {
		color: #bfbfbf;
	}

	.js-menuLink {
		text-align: left;
	}

	.header2-inner {
		padding-right: 0;
	}

	.header2 {
		height: 60px;
	}

	.navigation {
		display: none;
	}

	.search-btn {
		display: none;
	}

	.navigation-btn {
		display: block;
	}
}

@media (max-width: 1023px) {
	body {
		font-size: 14px;
	}

	.wrapper {
		padding: 0 20px;
		overflow: hidden;
	}

	.header2 .wrapper {
		padding: 0 20px;
	}

	.bar-content {
		padding: 100px 40px 40px;
	}

	.bar-content .navigation ul li a {
		font-weight: 600;
		font-size: 18px;
		line-height: 18px;
		letter-spacing: -0.01em;
		text-transform: none;
	}

	.navigation ul {
		gap: 20px;
	}

	.footer {
		padding: 60px 20px 40px;
	}

	.footer__nav {
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}

	.footer__nav ul {
		justify-content: center;
	}

	.footer__nav ul li a {
		font-size: 12px;
		line-height: 12px;
		letter-spacing: -0.01em;
	}

	.footer__copyright {
		margin-top: 40px;
		font-weight: 500;
		font-size: 12px;
		line-height: 12px;
		letter-spacing: -0.01em;
		text-transform: none;
	}

	.footer__contacts {
		margin-top: 60px;
		flex-wrap: wrap;
		gap: 60px;
	}

	.footer__contacts-mail {
		font-size: 12px;
		line-height: 12px;
		letter-spacing: -0.01em;
	}

	.footer__btn {
		width: 100%;
		order: 1;
		display: flex;
		justify-content: center;
	}

	.footer__btn span {
		font-size: 12px;
		line-height: 12px;
		letter-spacing: -0.01em;
	}

	.footer__socials {
		justify-content: center;
		flex-wrap: wrap;
	}

	.footer__socials span {
		font-size: 12px;
		line-height: 12px;
		letter-spacing: -0.01em;
	}
}

@media (max-width: 767px) {
	.footer__nav ul {
		gap: 20px 40px;
	}

	.footer__contacts {
		margin-top: 40px;
		gap: 40px;
		flex-direction: column;
		align-items: center;
	}

	.footer__copyright {
		margin: 40px auto 0;
	}

	.footer__btn span {
		height: 36px;
	}

	.footer__socials span {
		width: 100%;
		text-align: center;
	}

	.footer__socials span br {
		display: none;
	}
}

@media screen and (max-width: 720px) {
	.bar .copy {
		margin-top: auto;
		padding-bottom: 40px;
		text-align: left;
	}

	.bar-content .navigation {
		text-align: left;
		width: 100%;
	}
}