@charset "utf-8";

:root {
	--black: #000;
	--white: #fff;
	--gold_strock: linear-gradient(180deg, #FCF6D1 0%, #BD9457 10.42%, #E3CA89 25%, #FEE8C8 69.79%, #4D3A1A 85.42%, #FCF0D1 100%);
	--gold_fill: linear-gradient(0deg, #FFF0DA 1.04%, #94641E 4.17%, #FFF2DB 82.81%, #EAC885 93.75%, #FBF5D1 97.92%, #BD9A4B 99.99%, #ECD8A3 100%);
	--key-color: #004CFF;
	--sub: #242424;
	--sub_2: #121212;
	--red: #F50004;
	--gray: #7D7E7B;
	--strock: #C2C2C2;
	--sub_text: #A6A6A6;
	--gray2: #D4D4D4;
	--yellow: #FFD600;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, button {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
  min-height: -webkit-fill-available
}
ul ,ol ,li {
  list-style: none;
}
body {
	margin: 0; 
	padding: 0; 
	font-size: 16px; 
	font-family: 'SUIT',sans-serif;
	font-weight: 400;
	min-width: 300px;
	background: var(--sub_2);
	color: var(--white);
	-webkit-text-size-adjust: none;
	line-height: 1;
}
input,select,button {
  vertical-align: middle;
}
img {
  vertical-align: top;
  -webkit-perspective: 1;
}
i, em, address {
  font-style: normal;
}
label, button {
  cursor: pointer;
}
a {
	color: var(--white);
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
a:hover {
	text-decoration: none;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*:focus {
	outline: none;
}
button {
	background: transparent;
	font-family: inherit;
	padding: 0;
	font-size: 15px;
	-webkit-tap-highlight-color: transparent;
	color: #191919;
}
input[type=text], 
input[type=button], 
input[type=password],
textarea, 
button {
	outline-style:none; 
	-webkit-appearance:none; 
	-webkit-border-radius:0;
	font-family: inherit;
}
input[type=text]::-webkit-input-placeholder,
input[type=button]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--sub_text);
}
input[type=text]:-moz-placeholder,
input[type=button]:-moz-placeholder,
input[type=password]:-moz-placeholder,
textarea:-moz-placeholder {
	color: var(--sub_text);
	opacity: 1;
}
input[type=text]::-moz-placeholder,
input[type=button]::-moz-placeholder,
input[type=password]::-moz-placeholder,
textarea::-moz-placeholder {
	color: var(--sub_text);
	opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=button]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--sub_text);
}
select {
	position: relative;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-family: inherit;
	background: transparent url('../images/arrow-down-white.svg') no-repeat calc(100% - 15px) 50%;
	border: 0;
	font-size: 16px;
	padding: 0 16px;
	font-weight: 500;
	color: var(--white);
	border-radius: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
select option {
	color: var(--white);
	background: var(--black);
}
select::-ms-expand {
    display: none;
}
.fl {
	float:left;
}
.fr {
	float:right;
}
.taL {
	text-align:left!important; 
}
.taC {
	text-align:center!important; 
}
.taR {
	text-align:right!important; 
}
.table {
	display: table;
}
.row {
	display: table-row;
}
.cell {
	display: table-cell;
}
.f0 {
	font-size: 0!important;
}
.f400 {
	font-weight: 400!important;
}
.clear:after {
	content: '';
	display: block;
	clear: both;
}
.vaT {
	vertical-align: top;
}
.vaM {
	vertical-align: middle;
}
.vaB {
	vertical-align: bottom;
}
.w100 {
	width: 100%;
}
.swiper-slide img {
	width: 100%;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_js {
	justify-content: space-between;
}
.flex_end {
	justify-content: end;
}
.ag_c {
	align-items: center;
}
.flex_col {
	flex-direction: column;
}
.flex_col > * {
	width: 100%;
}
.txt_red {
	color: var(--red)!important;
}
.btn_gold {
	position: relative;
	border-radius: 10px;
	border: 1px solid transparent;
    border-image-slice: 1;
	background-origin: border-box;
	background-image: linear-gradient(var(--black), var(--black)), var(--gold_strock);
    background-clip: content-box, border-box;
	overflow: hidden;
}
.btn_gold:before {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: var(--gold_fill)!important;
	width: 110%;
	height: 150%;
}
.btn_gold > * {
	position: relative;
	z-index: 1;
	color: var(--black)!important;
	font-weight: 600;
}
.btn_line_gold {
	position: relative;
	border-radius: 10px;
	border: 1px solid transparent;
    border-image-slice: 1;
	background-origin: border-box;
	background-image: linear-gradient(var(--black), var(--black)), var(--gold_strock);
    background-clip: content-box, border-box;
	color: var(--white)!important;
	overflow: hidden;
}
.btn_line_gold:before {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: var(--black);
	width: 110%;
	height: 150%;
}
.btn_line_gold > * {
	position: relative;
	z-index: 1;
	color: var(--white)!important;
	font-weight: 500;
}
.txt_gold {
	background: var(--gold_fill);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
}
.btn_line_white {
	border: 1px solid rgba(255,255,255,0.5)!important;
}
.btn_line_black {
	border-radius: 10px;
	border: 1px solid var(--strock)!important;
	background: var(--black)!important;
	color: var(--strock)!important;
}
.btn_gray {
	border-radius: 10px;
	background: var(--strock)!important;
	color: var(--black)!important;
}
.txt_yellow {
	color: var(--yellow)!important;
}