@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --primary: #242424;
    --dark: #1A1A1A;
	--focus: #363232;
    --main: #D3AC49;
    --swiper: #2A2A2A;
    --button: #D0D0D0;
	--chartsBack: #242424;
	--chartsBackPrimary: #2A2A2A;
	--chartsBtn: #D0D0D0;
	--grey: #A09999;
	--borderColor: #444444;
	--backColor: #45474680;
}

html {
	box-sizing: border-box;
	overflow-x: hidden;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	min-width: 320px;
	height: 100vh;
    margin: 0;
	font-family: "Inria Sans" ,sans-serif;
	overflow-x: hidden;
	background-color: var(--dark);
	line-height: 1.1;
	display: flex;
	flex-direction: column;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}


img, svg {
	max-width: 100%;
	vertical-align: baseline;
}

span {
	color: var(--white);
}

.item-flex, .container-flex, .block-flex, .list-flex, .btn-flex {
	display: flex;
}

.list-reset {
	margin: 0;
	padding: 0;
	list-style: none;
}

.btn-reset {
	padding: 0;
	border: 0;
	background: none;
	border-color: transparent;
	cursor: pointer;
}

.container {
    max-width: 1756px;
    margin: 0 auto;
	padding: 0;
	flex-wrap: wrap;
}

/* Header */

.header {
    margin-bottom: 20px;
    padding-top: 70px;
    padding-left: 30px;
}

.header__logo {
	width: 30%;
    margin-top: 11px;
    align-items: center;
}

.header__logo-text {
    width: 350px;
    height: 48px;
    margin-left: 21px;
    margin-top: 7px;
    background: url('../img/logo-text.png') no-repeat;
    background-size: contain;
}

.header__metals {
    width: 70%;
    flex-direction: column;
	justify-content: center;
}

.header__list {
	width: 100%;
	justify-content: center;
}

.header__title {
    margin: 0 auto;
    margin-bottom: 12px;
    font-size: 48px;
    color: var(--main);
    letter-spacing: -0.4px;
}

.header__item:not(:last-child) {
    margin-right: 45px;
}

.header__button {
	position: relative;
  	overflow: hidden;
    width: 220px;
    min-height: 50px;
    padding: 3px 30px;
    align-items: center;
    background: var(--primary);
    border-radius: 30px;
    font-size: 32px;
	z-index: 1;
    color: var(--white);
    border: none;
}

.header__button>svg {
    margin-right: 14px;
}

.header__button>span {
    position: relative;
    font-size: 32px;
    color: var(--white);
}

.header__burger {
	display: none;
}

.header__burger-block {
	left: -200%;
	position: absolute;
	width: 500px;
    height: 400px;
	background-color: var(--swiper);
	z-index: 11;
}

.header__burger--close {
	position: absolute;
	right: 25px;
	top: 25px;
}

/* Main */

.main {
    padding-top: 22px;
	padding-bottom: 32px;
}

/* Swiper */
.swiper-container {
	position: relative;
	height: 100%;
}

.swiper {
    width: 91%;
    height: 100%;
    margin-left: 10px;
    padding-top: 25px;
    background-color: var(--primary);
}

.swiper-button--hd {
	display: none;
	position: absolute;
	border-radius: 100%;
}

.swiper-button-next::after, .swiper-button-prev::after {
	content: " ";
}

.swiper-button-next {
	right: 32.3%;
}

.swiper-button-next>svg {
	transform: rotate(180deg);
}

.swiper-button-prev {
	left: 33%;
}

.swiper-button-next, .swiper-button-prev {
	width: 15px;
	height: 15px;
	top: 100%;
	z-index: 15;
	background-size: contain;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction-pagination {
	bottom: 5px;
	left: 0.5px;
}

.swiper-pagination-bullet {
	background: url('../img/swiper-bullet-default.svg') no-repeat;
	width: 11px;
	height: 11px;
}

.swiper-pagination-bullet-active {
	background: url('../img/swiper-bullet-active.svg') no-repeat;
}

.swiper-wrapper {
	padding: 0;
}

.swiper-slide>div {
	padding: 32px 22px 50px 20px;
}

.swiper-slide {
    border: 1px solid var(--swiper);
}

/* News */

.news {
	width: 30%;
	min-height: 650px;
}

.news__info-block {
	height: 80%;
	margin-bottom: 24px;
	padding-left: 10px;
}

.news__title {
	margin-bottom: 20px;
    text-align: center;
	font-weight: 500;
	font-size: 36px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--white);
}

.news__title--metal {
	text-align: center;
	font-weight: 500;
	font-size: 36px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--white);
}

.news__info {
	width: 94%;
	text-align: center;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 1px;
	color: var(--white);
}

.news__date {
    position: absolute;
	width: 140px;
	font-weight: 500;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--white);
	bottom: 66px;
	right: -21px;
}

/* Graph */

.graph {
    width: 70%;
    min-height: 200px;
    padding: 30px 25px;
    background-color: var(--primary);
}

.graph__title {
    margin-bottom: 50px;
    text-align: center;
    font-size: 48px;
    color: var(--main);
}

.graph__button {
	width: 87.4px;
	min-height: 42px;
    background-color: var(--swiper);
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0;
	color: var(--white);
}

.graph__button--disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.last-item {
	margin-right: auto;
}

.graph__block {
	height: 530px;
}

/* Custom Selects for Mobile*/
.graph__selects {
  display: none;
}
