@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Bold'),local('Montserrat-Bold'),url('../fonts/Montserrat-Bold.woff2') format('woff2'),url('../fonts/Montserrat-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family:'Montserrat';src:local('Montserrat Regular'),local('Montserrat-Regular'),url('../fonts/Montserrat-Regular.woff2') format('woff2'),url('../fonts/Montserrat-Regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;
}

*,::before,::after {
	box-sizing: border-box;
	position: relative;
	outline: none;
}

html,body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	min-width: 320px;
	font-family: "Montserrat","Arial",sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	color: #000;
}

header {
	flex-shrink: 0;
}

main {
	flex-shrink: 0;
}

img {
	max-width: 100%;
}

.container {
	width: 100%;
	max-width: 1510px;
	padding: 0 15px;
	margin: 0 auto;
}

@media screen and (max-width:1060px) {
	.main {
		padding-top: 89px;
	}
}

@media screen and (max-width:420px) {
	.main {
		padding-top: 117px;
	}
}

.logo {
	max-width: 190px;
	padding-top: 27px;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
}

.logo::before {
	content: "";
	display: block;
	width: 60px;
	height: 8px;
	background-color: #000;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width:1060px) {
	.logo::before {
		height: 5px;
	}
}

@media screen and (max-width:1060px) {
	.logo {
		padding-top: 15px;
		font-size: 18px;
	}
}

@media screen and (max-width:420px) {
	.logo {
		max-width: none;
	}
}

.button {
	padding: 18px 53px 18px 27px;
	border: 1px solid currentColor;
	background-color: transparent;
	font-size: 12px;
	font-weight: 600;
	color: currentColor;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: .3s;
}

@media screen and (max-width:740px) {
	.button {
		padding: 12px 27px;
		font-size: 10px;
	}
}

.button::before {
	content: "";
	display: block;
	width: 11px;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	right: 24px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width:740px) {
	.button::before {
		content: none;
	}
}

.button::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	position: absolute;
	right: 24px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width:740px) {
	.button::after {
		content: none;
	}
}

.button:hover {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
	background-color: #fac769;
	transition: box-shadow .3s;
}

.card:hover {
	box-shadow: 10px 20px 40px rgba(0,0,0,0.15);
}

.card:nth-child(2) {
	background-color: #484848;
	color: #fff;
}

.card:nth-child(3) {
	background-color: #E8E8E8;
}

@media screen and (max-width:920px) {
	.card {
		padding: 20px 15px;
	}
}

.card__store {
	margin-left: auto;
	margin-bottom: 20px;
}

.card__image {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	width: 100%;
	height: 324px;
	margin-bottom: 24px;
	-webkit-filter: drop-shadow(35px 15px 50px rgba(0,0,0,0.15));
	filter: drop-shadow(35px 15px 50px rgba(0,0,0,0.15));
}

@media screen and (max-width:1200px) {
	.card__image {
		margin-bottom: 20px;
		height: auto;
	}
}

.card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card__name {
	display: inline-block;
	padding: 7px 13px;
	background-color: #000;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

@media screen and (max-width:740px) {
	.card__name {
		font-size: 14px;
	}
}

.card__info {
	padding: 26px 0 27px;
}

@media screen and (max-width:740px) {
	.card__info {
		padding: 15px 0;
	}
}

.card__price {
	margin-bottom: 11px;
	font-size: 16px;
	font-weight: 700;
}

@media screen and (max-width:740px) {
	.card__price {
		margin-bottom: 5px;
		font-size: 12px;
	}
}

.card__price_exchange {
	font-size: 24px;
}

@media screen and (max-width:740px) {
	.card__price_exchange {
		font-size: 18px;
	}
}

.card__text {
	margin-bottom: 17px;
	font-size: 14px;
	text-transform: lowercase;
}

@media screen and (max-width:740px) {
	.card__text {
		margin-bottom: 10px;
		font-size: 10px;
	}
}

.card__text:last-child {
	margin-bottom: 0;
}

.card__button {
	z-index: 2;
}

@media screen and (max-width:1200px) {
	.card__button {
		width: 100%;
	}
}

@media screen and (max-width:640px) {
	.card__button {
		padding: 12px;
	}
}

.header {
	padding: 32px 0;
	background-color: #fff;
	z-index: 11;
}

@media screen and (max-width:1060px) {
	.header {
		width: 100%;
		padding: 15px 0;
		position: fixed;
		left: 0;
	}
}

.header__wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

@media screen and (max-width:420px) {
	.header__wrap {
		flex-direction: column;
        align-items: center;
	}
}

@media screen and (max-width:1060px) {
	.header__block {
		display: flex;
		flex-direction: column;
		width: 320px;
		bottom: 0;
		;padding: 0 15px 20px;
		background-color: #fff;
		position: fixed;
		left: -320px;
		top: 81px;
		overflow: auto;
	}
}

.header__info {
	display: flex;
	align-items: center;
	margin-bottom: 7px;
}

@media screen and (max-width:1060px) {
	.header__info {
		flex-shrink: 0;
		flex-direction: column-reverse;
		align-items: flex-start;
		order: 1;
	}
}

.header__worktime {
	width: 160px;
	padding-left: 43px;
	margin-right: 90px;
	font-size: 14px;
	line-height: 1.8;
	top: 3px;
}

.header__worktime::before {
	content: '24';
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: -1px;
}

.header__worktime::after {
	content: '';
	display: block;
	width: 15px;
	height: 8px;
	background-color: #fac769;
	position: absolute;
	left: 16px;
	top: 34px;
}

@media screen and (max-width:1420px) {
	.header__worktime {
		margin-right: 60px;
	}
}

@media screen and (max-width:1200px) {
	.header__worktime {
		margin-right: 30px;
	}
}

@media screen and (max-width:1060px) {
	.header__worktime {
		width: auto;
		margin-right: 0;
		margin-bottom: 15px;
	}
}

.header__phone {
	padding-left: 55px;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	color: #000;
}

.header__phone::before {
	content: '';
	display: block;
	width: 15px;
	height: 8px;
	background-color: #000;
	position: absolute;
	left: 8px;
	top: 5px;
}

@media screen and (max-width:1060px) {
	.header__phone::before {
		left: 0;
	}
}

.header__phone:hover {
	text-decoration: underline;
}

@media screen and (max-width:1420px) {
	.header__phone {
		margin-right: 80px;
	}
}

@media screen and (max-width:1200px) {
	.header__phone {
		margin-right: 30px;
	}
}

@media screen and (max-width:1060px) {
	.header__phone {
		padding-left: 30px;
		margin-right: 0;
		margin-bottom: 15px;
	}
}

.banner {
	padding: 28px 0;
}

@media screen and (max-width:1060px) {
	.banner {
		padding: 0 0 15px;
	}
}

.banner__wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.banner__item {
	width: calc(25% - 15px);
}

@media screen and (max-width:920px) {
	.banner__item {
		width: calc(25% - 10px);
	}
}

@media screen and (max-width:640px) {
	.banner__item {
		width: calc(50% - 5px);
		margin-bottom: 10px;
	}
}

.banner__item-also {
	width: calc(50% - 5px);
}

.header__mobilePhone {
	display: none;
	padding-left: 55px;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	color: #000;
	position: absolute;
	right: 66px;
	top: 17px;
}

.header__mobilePhone::before {
	content: '';
	display: block;
	width: 15px;
	height: 8px;
	background-color: #000;
	position: absolute;
	left: 8px;
	top: 5px;
}

.header__mobilePhone:hover {
	text-decoration: underline;
}

@media screen and (max-width: 1060px) {
	.header__mobilePhone {
		display: block;
	}
}

@media screen and (max-width: 640px) {
	.header__mobilePhone::before {
		content: none;
	}
}

@media screen and (max-width: 420px) {
	.header__mobilePhone {
		padding: 6px;
		border: 4px solid #fac769;
		font-size: 17px;
		top: 8px;
		right: 49px;
        position: relative;
        top: 0;
        left: 0;
        margin-top: 10px;
	}
}

.footer {
	padding: 47px 0 36px;
}

@media screen and (max-width: 1060px) {
	.footer {
		padding: 25px 0 27px;
	}
}

.footer__info {
	display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 420px) {
	.footer__info {
		flex-direction: column;
        align-items: center;
	}
}

.footer__navigation {
	display: flex;
	flex-wrap: wrap;
	width: 750px;
	padding-left: 0;
	list-style: none;
}

@media screen and (max-width: 1420px) {
	.footer__navigation {
		width: auto;
	}
}

.footer__contacts {
	padding-top: 7px;
	margin-left: auto;
	text-align: right;
}

@media screen and (max-width: 420px) {
	.footer__contacts {
		text-align: center;
        padding-top: 10px;
	}
}

.footer__phone {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 16px;
	color: #000;
	text-decoration: none;
}

.footer__phone:hover,.footer__mail:hover {
	text-decoration: underline;
}

.footer__text {
	font-size: 14px;
}

.footer__text p {
	margin: 15px 0;
}