:root {
	--main-color: #000;
	--accent-color: rgba(222, 72, 72, 1);
	--accent-color-hover: rgb(209, 66, 66);
	--light-gray-color: rgba(229, 229, 229, 1);
	--gray-color: #7f7f7f;
	
	--purple-color: rgba(112, 104, 147, 1);
	
	--dark-gray-color: rgba(36, 36, 36, 1);
	--red-color: rgba(217, 30, 30, 1);
}

@font-face {
	font-family: "Druk Wide Cyr Medium";
	src: url("../fonts/druk/drukwidecyr-medium.otf") format("opentype");
	font-weight: 500; /* Medium обычно соответствует 500 */
	font-style: normal;
	font-display: swap; /* Оптимизация загрузки */
}
@font-face {
	font-family: "Druk Wide Cyr";
	src: url("../fonts/druk/drukwidecyr-medium.otf") format("opentype");
	font-weight: 500; /* Medium обычно соответствует 500 */
	font-style: normal;
	font-display: swap; /* Оптимизация загрузки */
}

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	background: #fff;
	min-width: 300px;
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
}
body, img, form, input, select, button, div {
	padding: 0;
	margin: 0;
}
body, input, textarea, table, button, select {
	color: var(--main-color);
	position: relative;
	font-family: Montserrat, Sans-Serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 135%;
	letter-spacing: 0;
}
/*
@media only screen and (max-width: 1199px) {
	body, input, textarea, table, button, select {
		font-size: 18px;
		line-height: 26px;
	}
}
@media only screen and (max-width: 799px) {
	body, input, textarea, table, button, select {
		font-size: 16px;
		line-height: 22px;
	}
}
@media only screen and (max-width: 599px) {
	body, input, textarea, table, button, select {
		font-size: 14px;
		line-height: 18px;
	}
}*/


b, strong {
	font-weight: 600;
}

/*
@media only screen and (max-width: 1249px) {
	body, input, textarea, table {
		font-size: 16px;
	}
}
*/
h1, h2, h3, h4, h5, h6, .title {
	
	font-family: "Druk Wide Cyr", "Druk Wide Cyr Medium", sans-serif;
	font-weight: 500;
	
	text-transform: uppercase;
}
/*
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong,
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b,
.Title strong, .Title b,
.title strong, .title b {
	color: #0C91B7;
}
*/
h1, .h1 {
	font-size: 80px;
	line-height: 80px;
	font-weight: 400;
	margin: 0;
}
h2, .h2 {
	font-size: 28px;
	line-height: 106%;
}
h3, .h3 {
	font-size: 20px;
	line-height: 106%;
}
h4, .h4 {
	font-size: 20px;
	line-height: 135%;
}
h5, .h5 {
	font-size: 20px;
	line-height: 135%;
}
h6, .h6 {
	font-size: 20px;
	line-height: 135%;
}



@media only screen and (max-width: 1060px) {
	h2, .h2 {
		font-size: 26px;
		line-height: 135%;
	}
}
@media only screen and (max-width: 742px) {
	h2, .h2 {
		font-size: 20px;
		line-height: 106%;
	}
}

@media only screen and (max-width: 419px) {
	/*h2, .h2, .notIndex h1 {
		font-size: 20px;
		line-height: 106%;
	}*/
	/*h1, .h1 {
		font-size: 24px;
		line-height: 34px;
		margin: 0 0 40px 0;
	}
	h2, .h2, .notIndex h1 {
		font-size: 22px;
		line-height: 32px;
	}
	h3, .h3 {
		font-size: 20px;
		line-height: 30px;
	}
	h4, .h4 {
		font-size: 18px;
		line-height: 28px;
	}
	h5, .h5 {
		font-size: 17px;
		line-height: 26px;
	}
	h6, .h6 {
		font-size: 16px;
		line-height: 24px;
	}*/
}

img {
	border: 0;
}

small {
	font-size: 80%;
}

a:link, a:active, a:visited {
	color: var(--accent-color);
	text-decoration: underline;
	display: inline;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	position: relative;
}
a.white:link, a.white:active, a.white:visited {
	color: #fff;
}
a:hover {
	/*color: #797979;*/
	color: var(--accent-color-hover);

}
a.link {
	text-decoration: none;
	position: relative;
	display: inline;
}


table,
table td {
	border-collapse: collapse;
}

/*table td {
	border: 1px solid #90999b;
	padding: 5px 10px;
}*/

.red, .errortext {
	color: var(--red-color) !important;
}

.icon {
	display: block;
	fill: var(--main-color);
}
.icon_inline {
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
}
.icon_white {
	fill: #fff;
}

.btn {
	
	padding: 10px 30px;
	cursor: pointer;
	text-decoration: none !important;
	text-align: center;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	border: none;
	background: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	
	position: relative;
	overflow: hidden;
	font-weight: 400;
	
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	
	font-size: 18px;
	line-height: 100%;
}
/*
.btn.small,
.btn.Small {
	font-size: 14px;
	padding: 6px 15px;
	border-radius: 8px;
}
.btn.big,
.btn.Big {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	padding: 14px 30px;
}
*/
.btn.btnMain {
	background: var(--accent-color);
	color: #fff;
}
.btn.btnMain:not([disabled]):hover {
	background: var(--accent-color-hover);
}
.btn.btnMain > span{
	position: relative;
	z-index: 2;
}
.btn[disabled] {
	opacity: .5;
	cursor: not-allowed;
}

.btn.btnGray {
	background: var(--gray-color);
	color: #fff;
}
.btn.btnGray:not([disabled]):hover {
	background: var(--main-color);
}
/*
.btn.close {
	position: relative;
	padding-left: 60px;
}
.btn.close:before,
.btn.close:after {
	content: "";
	position: absolute;
	border-radius: 2px;
	top: 25px;
	left: 20px;
	width: 20px;
	height: 6px;
	background: #fff;
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	transition: background 0.2s linear;
}

.btn.close:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn.close:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
*/
.btnLine {
	text-align: center;
}



@media only screen and (max-width: 1280px) {

}
@media only screen and (max-width: 1060px) {
	
	.btn {
		font-size: 16px;
		padding: 10px 20px;
	}
}
@media only screen and (max-width: 742px) {
	
	.btn {
		font-size: 14px;
	}
}
@media only screen and (max-width: 419px) {

}

.siteCenterContent {
	width: 100%;
	position: relative;
	z-index: 2;
}

.contentBox {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
}

.pageContent {
	overflow: hidden;
}

.pageHeight {
	min-height: calc(100vh - 80px);
	overflow: hidden;
}

@media only screen and (max-width: 1879px) {
	/*.contentBox {
		padding: 0 40px;
	}*/
}
@media only screen and (max-width: 1023px) {
	/*.contentBox {
		padding: 0 20px;
	}*/
}

@media only screen and (max-width: 419px) {
	.contentBox {
		padding: 0 10px;
	}
}
/*
.TopPadding {
	min-height: 75px;
}
*/

.topPanelFixed,
.bottomPanelFixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 29;
	transform: translateY(-100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.topPanelFixed.bg {
	background-color: rgba(255, 255, 255, 0.75);
}
.bottomPanelFixed {
	top: auto;
	bottom: 0;
	transform: translateY(100%);
}

.topPanelFixed.visible {
	transform: translateY(0);
	opacity: 1;
}
.topPanelFixed .contentBox,
.bottomPanelFixed .contentBox {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-align-items: center;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
	
	position: relative;
}
.bottomPanelFixed .contentBox {
	
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	
	position: relative;
}
.topPanelFixed .contentBox #countdown {
	order: 1;
}
.topPanelFixed .contentBox > .btn.btnMain {
	order: 2;
	margin-left: 20px;
}
.topPanelFixed .contentBox > .indexLink {
	order: 3;
	margin-left: 20px;
}

.topPanel {
	/*position: fixed;*/
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	color: #fff;
}

.topPanel .contentBox {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	
	padding-top: 25px;
	padding-bottom: 25px;
	position: relative;
	
	position: relative;
}
.topPanel .contentBox:after {
	content: '';
	position: absolute;
	width: calc(100% - 60px * 2);
	height: 1px;
	background-color: #fff;
	bottom: 0;
}

.topPanel .logo {
	
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.topPanel .logo img {
	width: auto;
	height: 42px;
	display: block;
}
/*
.topPanel .right {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
}
*/
.topPanel .address {
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex-grow: 1;
	padding: 0 56px;
}
.topPanel .address strong {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
}
.topPanel .indexLink {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
	min-width: 200px;
	text-align: right;
}
.topPanel .indexLink:hover {
	color: var(--accent-color-hover);
}
.topPanel .indexLinkPopup {
	position: absolute;
	
	right: 40px;
	width: fit-content;
	max-width: 300px;
	display: none;
	margin: 0;
	z-index: 97;
	background: #ffffff00;
	padding: 40px 20px 20px 20px;
	min-width: 200px;
	text-align: right;
}
@media (min-width: 768px) {
	#popupBtn:hover .indexLinkPopup {
		display: block;
	}
}
.indexLinkPopup.is-open {
	display: block;
}
.topPanel .indexLinkPopup li {
	display: block;
	padding: 0;
	margin: 10px 0 0 0;
}
.topPanel .indexLinkPopup li:first-child {
	margin-top: 0;
}
.topPanel .indexLinkPopup li a:not(:hover) {
	color: #fff;
}
/*
.topPanelFixed .menuBtn,
.topPanel .right .menuBtn {
	margin-left: 30px;
	background: none;
	cursor: pointer;
	border: none;
	text-align: center;
	font-size: 14px;
	line-height: 14px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.topPanelFixed .menuBtn span {
	position: relative;
	z-index: 1;
}
.topPanelFixed .menuBtn:after {
	content: '';
	position: absolute;
	z-index: 0;
	background: #fff;
	top: -12px;
	right: -12px;
	bottom: -12px;
	left: -12px;
	
}
.topPanelFixed .menuBtn i,
.topPanelFixed .menuBtn i:before,
.topPanelFixed .menuBtn i:after,
.topPanel .right .menuBtn i,
.topPanel .right .menuBtn i:before,
.topPanel .right .menuBtn i:after {
	display: block;
	width: 42px;
	height: 2px;
	background: var(--main-color);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.topPanelFixed .menuBtn i,
.topPanel .right .menuBtn i {
	position: relative;
	margin: 13px 0 15px 0;
}
.topPanelFixed .menuBtn i:before,
.topPanelFixed .menuBtn i:after,
.topPanel .right .menuBtn i:before,
.topPanel .right .menuBtn i:after {
	content: '';
	position: absolute;
}
.topPanelFixed .menuBtn i:before,
.topPanel .right .menuBtn i:before {
	top: -13px;
}
.topPanelFixed .menuBtn i:after,
.topPanel .right .menuBtn i:after {
	bottom: -13px;
}
.topPanelFixed .menuBtn:hover,
.topPanel .right .menuBtn:hover {
	color: var(--accent-color-hover);
}
.topPanelFixed .menuBtn:hover i,
.topPanel .right .menuBtn:hover i {
	background: var(--accent-color-hover);
}
.topPanelFixed .menuBtn:hover i:before,
.topPanelFixed .menuBtn:hover i:after,
.topPanel .right .menuBtn:hover i:before,
.topPanel .right .menuBtn:hover i:after {
	background: var(--accent-color-hover);
}
*/


.countdown {
	display: flex;
	font-size: 32px;
	line-height: 32px;
}
.countdown-title {
	font-size: 24px;
	line-height: 24px;
	display: flex;
	align-items: flex-end;
}
.countdown .items {
	display: flex;
	align-items: flex-end;
}
.countdown .item {
	display: flex;
	align-items: flex-end;
	margin-left: 20px;
}
.countdown .item span:nth-child(2) {
	font-size: 16px;
	line-height: 16px;
	margin-bottom: 2px;
	margin-left: 8px;
}
.countdown .item:nth-last-child(1) span:nth-child(1){
	text-align: right;
	width: 38px;
}
.countdown .item:nth-last-child(1) span:nth-child(2){
	width: 75px;
	text-align: left;
}



@media only screen and (max-width: 1280px) {
	.topPanel .logo {
		width: 264px;
	}
	.topPanel .address {
		width: calc(100% - 264px - 200px - 50px - 36px);
		margin: 0 36px 0 50px;
		padding: 0;
	}
	.topPanel .indexLink {
		font-size: 14px;
		line-height: 20px;
	}
}
@media only screen and (max-width: 1060px) {
	
	.topScroll .topPanel .contentBox {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.topPanelFixed .contentBox {
		-webkit-justify-content:space-between;
		justify-content: space-between;
	}
	.countdown-title {
		width: 100%;
		font-size: 20px;
		line-height: 20px;
		margin: 0 0 10px 0;
	}
	.countdown {
		font-size: 24px;
		line-height: 24px;
		flex-wrap: wrap;
	}
	.countdown .item:first-child{
		margin-left: 0;
	}
	.countdown .item span:nth-child(2) {
		font-size: 14px;
		line-height: 14px;
	}
	
	.countdown .item:nth-last-child(1) span:nth-child(1){
		text-align: right;
		width: 38px;
	}
	.countdown .item:nth-last-child(1) span:nth-child(2){
		width: 75px;
		text-align: left;
	}
	
	.topPanel .contentBox {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.topPanel .logo {
		width: 120px;
	}
	.topPanel .logo img {
		height: 30px;
	}
	.topPanel .address {
		font-size: 12px;
		line-height: 12px;
	}
	.topPanel .address strong {
		font-size: 16px;
		margin-bottom: 6px;
	}
	.topPanel .address {
		width: calc(100% - 120px - 200px - 40px - 40px);
		margin: 0 40px 0 40px;
	}
	.topPanel .indexLink {
		font-size: 12px;
		line-height: 12px;
	}
	.topPanel .indexLinkPopup {
		background: #000;
		margin: 10px 0 0 0;
		padding: 10px;
		right: auto;
		left: 50px;
		min-width: auto;
		text-align: left;
	}
	.topPanel .indexLinkPopup li {
		font-size: 12px;
		line-height: 12px;
	}
}
@media only screen and (max-width: 742px) {
	
	.topPanelFixed .contentBox {
		justify-content: flex-start;
	}
	.topPanelFixed .contentBox .btn.btnMain {
		display: none;
	}
	.bottomPanelFixed.visible {
		transform: translateY(0);
		opacity: 1;
	}
	
	.countdown {
		font-size: 18px;
		line-height: 18px;
		margin-left: 40px;
		margin-right: 40px;
	}
	.countdown .item span:nth-child(2) {
		font-size: 12px;
		line-height: 12px;
	}
	
	.countdown .item:nth-last-child(1) span:nth-child(1){
		width: 21px;
	}
	.countdown .item:nth-last-child(1) span:nth-child(2){
		width: 54px;
	}
	
	.topScroll .topPanel .contentBox {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.topPanelFixed .contentBox {
		padding: 10px 20px 0 20px;
	}
	.topPanelFixed.bg .contentBox {
		padding: 10px 20px;
	}
	
	.topPanel .contentBox {
		align-items: stretch;
		padding-top: 17px;
		padding-bottom: 28px;
	}
	.topPanel .logo {
		width: calc((100% - 20px) / 2);
		order: 2;
		margin-top: 20px;
		margin-right: 10px;
	}
	.topPanel .address {
		width: calc((100% - 20px) / 2);
		order: 3;
		margin: 0 0 0 10px;
		/*width: calc(100% - 106px - 55px);*/
		font-size: 8px;
		line-height: 8px;
	}
	.topPanel .address strong {
		font-size: 12px;
		margin-bottom: 10px;
	}
	
	.topPanel .indexLink {
		font-size: 8px;
		line-height: 8px;
		position: absolute;
		order: 1;
		min-width: auto;
		text-align: left;
	}
	.topPanel .indexLinkPopup li {
		margin-top: 10px;
		font-size: 10px;
	}
}
@media only screen and (max-width: 419px) {
	.topPanelFixed .contentBox {
		padding: 10px 10px 0 10px;
	}
	.topPanelFixed.bg .contentBox {
		padding: 10px 10px;
	}
	
	.countdown-title {
		justify-content: center;
		font-size: 16px;
		line-height: 16px;
		margin: 0 0 10px 0;
	}
	.countdown {
		justify-content: center;
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}
	.countdown .item {
		margin-left: 10px;
	}
	.countdown .item:first-child {
		margin-left: 0;
	}
	.countdown .item span:nth-child(2) {
		margin-left: 5px;
	}
	
	.topPanel .contentBox:after {
		width: calc(100% - 10px * 2);
	}
	
	.topPanel .indexLinkPopup {
		left: 0px;
	}
}


