/*---- root ----*/

:root {
	--color-0: #ffffff;
	--color-1: #ebebeb;
	--color-2: #fff4c8;
	--color-3: #e9d78d;
	--color-4: #52b7c5;
	--color-5: #19444a;
	--color-6: #671114;
	--color-7: #440b0c;
	--color-8: #222222;
	--silver: linear-gradient(0.839turn, rgb(192, 192, 192) 0%, rgb(238, 238, 238) 25%, rgb(192, 192, 192) 50%, rgb(238, 238, 238) 75%, rgb(160, 160, 160) 100%);
	--radius-1: 5px;
	--radius-2: 10px;
	--container: 1260px;
	--distance: 80px;
	--inner-distance: 30px;
	--line-distance: 60px;
	--transition: all ease-in-out .3s;
	--line-height-1: 100%;
	--line-height-2: 120%;
	--line-height-3: 150%;
	--box-shadow-1: 0px 0px 50px 0px #00000030;
	--box-shadow-2: 0px 15px 20px 0px #00000010;
}

@media screen and (max-width: 767px) {
	:root {
		--distance: 60px;
		--distance: 40px;
		--line-distance: 40px;
		--inner-distance: 20px;
	}
}

/*---- Reset styles ----*/

html {
	height: 100%;
	min-height: -moz-available;
	min-height: -webkit-fill-available;
	min-height: fill-available;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	background-color: var(--color-1);
	color: var(--color-6);
	font-size: 18px;
}

body * {
	line-height: var(--line-height-3);
}

section {
	margin-bottom: 0;
}

main section+section {
	margin-top: var(--distance);
}

form {
	margin: 0;
}

img {
	border-style: none;
	width: 100%;
}

textarea {
	overflow: auto;
	resize: none;
}

:focus {
	outline: 0;
}

:hover,
:active {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
}

::-ms-clear {
	display: none;
}

a {
	color: var(--color-6);
}

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

h1,
h2,
h3 {
	line-height: var(--line-height-1);
	font-family: "Ubuntu Condensed", serif;
	font-weight: 900;
	font-style: normal;
}

h1 {
	font-size: 58px;
	text-transform: uppercase;
}

h2 {
	font-size: 42px;
	text-transform: uppercase;
}

h3 {
	font-size: 28px;
	font-weight: 400;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
	transition: var(--transition);
}

button {
	background: none;
	border: none;
	outline: 0;
	padding: 0;
	transition: var(--transition);
	cursor: pointer;
	appearance: none !important;
	-webkit-appearance: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
	font-size: 16px;
}

main {
	width: 100%;
	overflow: hidden;
}

summary {
	list-style: none;
	position: relative;
	cursor: pointer;
}

summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: '';
	width: 12px;
	height: 8px;
	position: absolute;
	background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEzIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIG9wYWNpdHk9IjAuMiIgZD0iTTEuMDAwMzkgMUw2LjIwMDM5IDYuNkwxMS40MDA0IDEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz4KPC9zdmc+Cg==');
	background-position: center;
	background-repeat: no-repeat;
	right: 0;
	top: 10px;
}

details[open] summary::after {
	transform: scale(-1);
}

label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: none;
}

label:active {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
}

input,
textarea {
	border: 0 !important;
	outline: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: none;
}

input[type="number"] {
	-moz-appearance: textfield !important;
	appearance: textfield !important;
}


input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

label:active {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
}

input {
	border: 0 !important;
	outline: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	outline-offset: 0 !important;
	box-shadow: none !important;
}

table {
	border-spacing: 0;
	width: 100%;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 24px;
	}

}

/*---- Reset class ----*/

body.open {
	overflow: hidden;
}

.container {
	max-width: var(--container);
	width: 100%;
	margin: auto;
	padding: 0 15px;
}

.text_block>* {
	margin: 0;
}

.text_block>*+* {
	margin-top: 20px;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.img_container {
	position: relative;
	height: 0;
	padding-bottom: 60%;
	display: block;
}

.img_container>img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.fly_link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}


.hide {
	display: none;
}

.tab_head,
.tab_btn {
	cursor: pointer;
}

.tab_body,
.tab_btn {
	display: none;
}

.tab_body.open,
.tab_btn.active {
	display: block;
}

.btn {
	display: inline-block;
	transition: var(--transition);
	padding: 20px var(--inner-distance) 19px var(--inner-distance);
	background: var(--silver);
	color: var(--color-8);
	border-radius: var(--radius-1);
	text-transform: uppercase;
	background-size: 200% 100%;
	background-position: 100%;
	font-size: 20px;
	font-weight: 300;
	border: 1px solid #ffffff20;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
}

.btn.color {
	background: var(--color-5);
	color: var(--color-1);
}

.btn:hover {
	background-position: 0%;
}

.btn.color:hover {
	background: var(--color-4);
	color: var(--color-1);
}

.btn.white {
	background: transparent;
	color: var(--color-6);
	border-color: var(--color-6);
}

.btn.white:hover {
	background-color: var(--color-6);
	color: var(--color-0);
}

label.radiogroup input:checked+span {
	color: var(--color-6) !important;
	background-color: var(--color-4) !important;
	cursor: default !important;
}

label.radiogroup input {
	display: none;
}

.swiper .swiper-slide:hover {
	z-index: 2;
}

ol.ol_style {
	list-style: none;
	counter-reset: li;
	padding: 0;
	margin: 0;
}

ol.ol_style li,
ul.ul_style li {
	position: relative;
	padding-left: 30px;
}

ol.ol_style li+li,
ul.ul_style li+li {
	margin-top: 20px;
}

ol.ol_style li:before {
	counter-increment: li;
	content: counters(li, "");
	position: absolute;
	left: 0;
}

ul.ul_style li::before {
	content: '';
	width: 10px;
	height: 10px;
	background-color: var(--color-6);
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 8px;
}

@media screen and (min-width: 768px) {
	body.open {
		padding-right: 16px;
	}
}

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

	ol.ol_style li+li,
	ul.ul_style li+li {
		margin-top: 15px;
	}

	.btn {
		width: 100%;
		padding: 15px;
		text-align: center;
	}

}

/* */

.line+.line {
	margin-top: var(--line-distance);
}

.title_block {
	text-align: center;
}

.title_block .discription_block {
	margin-top: 20px;
	font-size: 24px;
	text-wrap: balance;
}

.title_block .discription_block span {
	color: var(--color-6);
	font-family: "Ubuntu Condensed", serif;
	font-weight: 900;
	font-style: normal;
	font-size: 32px;
}

.img_block>a {
	display: block;
	line-height: 0;
	border-radius: var(--radius-2);
	background-color: var(--color-7);
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
	position: relative;
	border: 1px solid var(--color-0);
}

.img_block>a>img {
	transition: var(--transition);
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img_block>a:hover>img {
	transform: scale(1.1);
	opacity: .8;
}

.dark_block,
.yellow_block,
.some_noise {
	padding: var(--distance) 0;
}

.dark_block+.yellow_block,
.dark_block+.some_noise,
.yellow_block+.some_noise,
.some_noise+.yellow_block,
.some_noise+.dark_block {
	margin-top: 0;
}

.dark_block {
	background-color: var(--color-6);
	color: var(--color-1);
}

.yellow_block {
	background-image: linear-gradient(45deg, var(--color-3), var(--color-0));
}

.img_text_block .text_block {
	margin-top: 30px;
}

.swiper.carousel {
	padding: 0 30px 30px 30px;
}

.swiper-wrapper {
	height: auto !important;
}

.swiper-pagination {
	bottom: 0px !important;
}

.swiper-pagination-bullet-active {
	background-color: var(--color-6) !important;
}

footer {
	background-color: var(--color-8);
	color: var(--color-0);
	padding: var(--distance) 0;
}

.price {
	font-variant-numeric: tabular-nums;
}

.top_title .item {
	position: relative;
}

.top_title .item .title_block {
	margin-top: 15px;
}

.top_title .item .title_block h3 span {
	background-color: var(--color-6);
	display: inline-block;
	color: var(--color-2);
	padding: 5px 15px;
	border-radius: var(--radius-1);
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 15px;
}

.img_text_list .item>.flex>* {
	position: relative;
	z-index: 0;
}

.img_text_list .item>.flex>:first-child {
	z-index: 1;
}

@media screen and (min-width: 768px) {
	.img_text_list>.item:nth-child(even) .flex {
		flex-direction: row-reverse;
	}
}

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

	.swiper.carousel {
		padding: 0 15px 30px 15px;
	}

	.line+.line {
		margin-top: 30px;
	}

	.title_block .discription_block {
		font-size: 18px;
	}

	.title_block .discription_block span {
		font-size: 24px;
	}

	.img_text_list>.item+.item {
		margin-top: 30px;
	}

	.img_text_list .item .text_list {
		padding: var(--inner-distance);
		border-radius: var(--radius-1);
		background-color: var(--color-0);
		padding-top: 60px;
		margin-top: -30px;
	}

	.img_text_list .img_block>a {
		margin: 0 40px;
		padding-bottom: 0;
		height: 200px;

	}

	.img_block>a {
		padding-bottom: 0;
		height: 250px;

	}

	.photo_block .img_block>a {
		width: 160px;
	}
}

/* MOB MENU */

header {
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	/* animation: header_anmation linear both;
	animation-timeline: scroll();
	animation-range: 0 200px; */
	padding: 40px 0;
	transition: var(--transition);
	max-width: 100%;
}

@keyframes header_anmation {
	to {
		background-color: #70141a90;
		backdrop-filter: blur(5px);
		box-shadow: var(--box-shadow-1);
		padding: 20px 0;
	}
}

header.sticky:not(.active) {
	background-color: #70141a90;
	backdrop-filter: blur(5px);
	box-shadow: var(--box-shadow-1);
}

header.sticky {
	padding: 20px 0;
}

header.active {
	max-width: 480px;
}

.mob_btn_social_block {
	padding: 0 40px;
	z-index: 2;
	position: relative;
}

.mob_btn_social_block .social_block a {
	color: var(--color-0);
	background-color: var(--color-8);
	border-radius: var(--radius-1);
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.mob_btn_social_block .social_block a:hover {
	background-color: var(--color-5);
}

.mob_btn_social_block .social_block a svg {
	position: relative;
	left: -1px;
}

.mob_btn_block button {
	width: 30px;
	height: 26px;
	z-index: 2;
	transition: var(--transition);
}

.mob_btn_block button:hover {
	height: 22px;
}

.mob_btn_block button span {
	width: 100%;
	height: 1px;
	background-color: var(--color-1);
	position: relative;
	transition: var(--transition);
}

.mob_menu_block {
	position: fixed;
	z-index: 1;
	width: 100%;
	height: 100vh;
	background-color: var(--color-1);
	right: 100%;
	transition: var(--transition);
	padding: 80px 20px 20px 20px;
	max-width: 480px;
	box-shadow: var(--box-shadow-1);
	top: 0;
}

.mob_menu_block nav+.info_block {
	padding: 20px 20px 20px 20px;
}

.mob_menu_block nav+.info_block>div {
	padding-top: 30px;
	border-top: 1px solid var(--color-3);
}

header.active .mob_menu_block {
	transform: translateX(100%);
}

header.active button span {
	background-color: var(--color-7);
}

header.active button span:first-child {
	display: none;
}

header.active button {
	justify-content: center !important;
	align-items: center;
}

header.active button span {
	transform: rotate(45deg);
}

header.active button span:last-child {
	transform: rotate(-45deg);
	top: -1px;
}

.mob_menu_block nav {
	padding: 20px;
}

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

	.mob_menu_block,
	header.active {
		max-width: 100%;
	}

	header {
		padding: 20px 0;
	}

	.mob_btn_social_block {
		padding: 0 15px;
	}

	.mob_menu_block nav li {
		flex: 100%;
		max-width: 100%;
		width: 100%;
		text-align: center;
	}
}

/* first screen */

#first_screen {
	background-image: url(./img/bg.png);
	overflow: hidden;
}

#first_screen .img_block {
	margin-bottom: calc(var(--distance) - var(--distance) * 2);
	filter: drop-shadow(0 0 200px #df3e41);
}

@media screen and (max-width:767px) {
	#first_screen .text_block {
		padding-top: 40px;
		text-align: center;
	}

	#first_screen .img_block {
		margin-bottom: 0;
		filter: none;
		/* margin: 0 20px; */
	}

	.photo_block>.flex {
		gap: 15px !important;
		margin: 0 !important;
	}

	.photo_block>.flex>* {
		flex: calc(50% - 7.5px) !important;
		max-width: calc(50% - 7.5px) !important;
		padding: 0 !important;
	}

	.fist_block_left {
		padding: 0 !important;
	}

	#first_screen {
		padding-bottom: 0 !important;
	}
}


/* modules block */

.modules_block .item {
	padding: var(--inner-distance);
	border-radius: var(--radius-2);
	border: 1px solid var(--color-7);
	transition: var(--transition);
	background-image: url(./img/bg.png);
	background-size: cover;
	background-color: var(--color-0);
	color: var(--color-8);
}

.top_title>*>*>.item {
	margin-top: 25px;
	height: calc(100% - 30px) !important;
}

.modules_block .item:hover {
	box-shadow: var(--box-shadow-1);
}

.modules_block .item .title_block+.text_block {
	margin-top: 30px;
}

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

	.modules_block .item .title_block+.text_block {
		margin-top: 20px;
	}

	.modules_block .item {
		height: calc(100% - 20px) !important;
	}
}

/* programm */

#programm .line .title_block h2+div {
	font-size: 14px;
	color: var(--color-8);
	margin-top: 10px;
}

/* tariff */

.tariff_list .flex>*>.item {
	padding: var(--inner-distance);
	border-radius: var(--radius-2);
	background-color: var(--color-0);
	color: var(--color-7);
}

.tariff_list.top_title .item .title_block h3 span {
	background-color: var(--color-6);
}

.tariff_list.top_title .item .title_block h3+p {
	font-size: 14px;
	margin-top: 5px;
}

.top_title .item .title_block+div {
	color: var(--color-8);
}

.tariff_list .item .text_block>*+*,
.tariff_list .item .text_block+.text_block {
	padding-top: 20px;
	border-top: 1px solid var(--color-3);
}

.tariff_list .item .text_block {
	width: 100%;
	flex: 100%;
	max-width: 100%;
}

.tariff_list .item .text_block+.text_block {
	margin-top: 20px;
}

.tariff_list .item>* {
	height: 100%;
}

.tariff_list .info_block span {
	font-size: 14px;
	display: block;
	text-wrap: balance;
}

.tariff_list .info_block .btn+span {
	margin-top: 10px;
}

.tariff_list .info_block span+span {
	margin-top: 5px;
	color: var(--color-8);
}

.tariff_list .price_block s {
	font-size: 16px;
}

.tariff_list .price_block b {
	font-size: 24px;
}

.tariff_list .model_list .item {
	font-size: 16px;
}

.tariff_list .model_list .item pre {
	font-size: 14px;
}

.tariff_list .model_list .item+.item {
	margin-top: 10px;
}

.tariff_list .model_list .item.non::before {
	background-color: var(--color-8);
	opacity: .2;
}

@media screen and (max-width:767px) {
	.tariff_list .item h3+pre {
		display: none !important;
	}
}

/* */

.popup_item {
	max-width: 480px;
	border-radius: var(--radius-2);
}

form * {
	font-family: 'Montserrat', sans-serif;
}

form input[type="text"] {
	padding: 20px;
	border: 1px solid #22222220 !important;
	width: 100%;
	font-size: 18px;
	border-radius: var(--radius-1);
}

form input::placeholder {
	color: var(--color-4);
}

form input:is(:active, :focus)::placeholder {
	opacity: 0;
}

form>*+* {
	margin-top: 10px;
}

form .btn_block {
	margin-top: 30px !important;
}

/* info page */

body.info_page header {
	position: relative;
	background-color: var(--color-6) !important;
	background-image: url(./img/bg.png);
	background-size: cover;
}

body.info_page main {
	min-height: calc(100vh - 327px);
	padding: var(--distance) 0;
}

.btn.back {
	font-size: 14px;
	padding: 10px 20px 10px 19px;
}


/* Стили для таймера */
.timer {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 12px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(135deg, #d00, var(--color-6));
	border: 1px solid #a00;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 18.06.25 */

#first_screen {
	/* background-color: var(--color-0); */
	background-color: #f6f6f6;
	background-image: none;
}

#first_screen .img_block {
	filter: none;
}

#first_screen h1 {
	color: var(--color-6);
}

#first_screen h3 {
	color: var(--color-8);
}

header:not(.sticky) .mob_btn_block button span {
	background-color: var(--color-8);
}

#first_screen .btn_block .btn:not(.color),
#programm .btn {
	background: var(--color-6);
	color: var(--color-0);
}

#first_screen .btn_block .btn.color,
#to_whom .btn {
	border: 1px solid var(--color-8);
	color: var(--color-8);
	background: transparent;
}


@media screen and (max-width: 767px) {
	#first_screen::after {
		height: 60px;
	}
}

#offer .btn {
	border: 1px solid var(--color-6);
	color: var(--color-8);
	background: transparent;
}

#first_screen .btn_block .btn:hover,
#offer .btn:hover,
#to_whom .btn:hover,
#programm .btn:hover {
	background: var(--color-7);
	color: var(--color-0);
	border-color: var(--color-7);
}

.title_block .discription_block span {
	font-family: "Baskervville", serif;
}

.swiper.slider {
	padding: 0 30px 30px 30px;
}

.img_block>a {
	border-color: var(--color-6);
}

.modules_block .item {
	background: none;
}

/* new label plaque on module card */
.modules_block .item .new_label {
	position: absolute;
	top: -10px;
	left: -10px;
	padding: 6px 12px;
	background: #dbaf2a;
	color: var(--color-0);
	border-radius: var(--radius-1);
	box-shadow: var(--box-shadow-2);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	z-index: 2;
}

@media screen and (max-width: 767px) {
	.modules_block .item .new_label {
		top: -8px;
		left: -8px;
		padding: 5px 10px;
		font-size: 11px;
	}
}

.tariff_list.top_title .item .title_block h3 span {
	background-color: var(--color-6);
	color: var(--color-0);
}

#tariff {
	background-color: var(--color-0);
}

.some_noise,
.modules_block .item {
	position: relative;
}

.some_noise>* {
	position: relative;
	z-index: 1;
}

.some_noise::before,
.modules_block .item::before {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(./img/noise_bg.jpg);
	filter: grayscale(1);
	opacity: .2;
	transition: all .3s;
}

.modules_block .item:hover::before {
	background-size: 200%;
	opacity: .2;
}

.modules_block .item:hover {
	background-color: var(--color-0);
}

.top_title .item .title_block h3 span {
	color: var(--color-0);
}

.tariff_list .flex>*>.item {
	transition: all .3s;
	border: 1px solid var(--color-7);
}

.tariff_list .flex>*>.item:hover {
	box-shadow: var(--box-shadow-1);
}



/* 19.06.25  cookies */
.content {
	max-width: 1200px;
	margin: 40px auto;
}

.css-display-section {
	margin-top: 40px;
	background-color: #fff;
	border: 1px solid #eee;
	padding: 20px;
	border-radius: 8px;
}

.css-display-section h2 {
	margin-top: 0;
	color: #008000;
}

.css-display-section pre {
	background-color: #f7f7f7;
	padding: 15px;
	border-radius: 5px;
	overflow-x: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.cookies-section {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #FFFFFF;
	padding: 20px 40px;
	box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	font-family: 'Open Sans', sans-serif;
	color: #000000;
}

.cookies-section__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 40px;
}

.cookies-section__text {
	font-size: 14px;
	line-height: 1.6;
	flex-grow: 1;
}

.cookies-section__actions {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
	align-items: center;
}

.cookies-section__btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	border: 1px solid transparent;
	white-space: nowrap;
}

.cookies-section__btn--primary {
	/* background-color: #008000; */
	color: #FFFFFF;
	/* border-color: #008000; */
}

#cookies-accept-btn {
	color: #000000;
	border: 1px solid #000000;
}

/* .cookies-section__btn--primary:hover {
		background-color: #006400;
		border-color: #006400;
	} */

#cookies-custom-link.cookies-section__btn {
	background-color: transparent;
	color: #000000;
	background: white !important;
	border: 1px solid #000000;
}

#cookies-custom-link.cookies-section__btn:hover {
	background-color: #f7f7f7;
	color: #000000;
}

@media (max-width: 992px) {
	.cookies-section {
		padding: 10px 20px;
	}

	.cookies-section__wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.cookies-section__text {
		font-size: 12px;
		line-height: 1.3;
	}

	.cookies-section__actions {
		flex-direction: row;
		align-items: center;
		width: 100%;
		gap: 10px;
	}

	.cookies-section__btn {
		padding: 8px 12px;
		font-size: 12px;
		flex: 1;
		text-align: center;
	}
}

/* Values simple styles */
.values-simple {
	text-align: center;
	margin-top: 15px;
	font-size: 18px;
	line-height: 1.4;
}

.values-simple strong {
	color: var(--color-6);
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.values-simple {
		font-size: 16px;
		line-height: 1.5;
	}
}

/*11.09.25*/

/*module*/

.modules_block .item>* {
	z-index: 1;
	position: relative;
}

.modules_block .item .title_block h3 span {
	top: -70px;
}

.modules_block .item .title_block {
	margin-top: 10px !important;
}


@media screen and (max-width: 767px) {
	.modules_block .item .title_block svg {
		display: block;
		margin: 15px auto 0 auto;
	}

	.modules_block .item .title_block h3 span {
		top: -65px;
	}

	.modules_block .item .title_block+* {
		display: none;
	}

	.modules_block .item.active .title_block+* {
		display: block;
	}

	.modules_block .item.active .title_block svg {
		transform: scale(-1);
	}

	.modules_block .item .title_block {
		margin-top: 20px !important;
	}
}

/*tariff*/

.tariff_list .flex>*>.item {
	margin-top: 0 !important;
	height: 100% !important;
}

.tariff_list>.flex {
	justify-content: center;
}

.tariff_list.top_title .item {
	background-color: var(--color-6);
	color: var(--color-0);
}

.top_title .item .title_block {
	margin-top: 0;
}

.tariff_list.top_title .item>*+*:not(.price_info_block) {
	margin-top: 30px;
}

.tariff_list.top_title .item .title_block h3 span {
	display: none;
}

.tariff_list.top_title .item .price_block {
	padding: 15px 30px;
	background-color: var(--color-0);
	color: var(--color-7);
	border-radius: var(--radius-2);
}

.tariff_list .item .price_info_block {
	padding: 15px 30px;
	background-color: #ffffff20;
	font-size: 16px;
	font-weight: normal;
	border-radius: var(--radius-2);
}

.tariff_list .item>* {
	height: auto;
}

.tariff_list .model_list .item::before {
	content: '';
	width: 14px;
	height: 14px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgNy41TDcgMTBMMTEgNU03LjUgMTQuNUMzLjYzNDAxIDE0LjUgMC41IDExLjM2NiAwLjUgNy41QzAuNSAzLjYzNDAxIDMuNjM0MDEgMC41IDcuNSAwLjVDMTEuMzY2IDAuNSAxNC41IDMuNjM0MDEgMTQuNSA3LjVDMTQuNSAxMS4zNjYgMTEuMzY2IDE0LjUgNy41IDE0LjVaIiBzdHJva2U9IiNGOEZBRjkiLz4KPC9zdmc+Cg==);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent !important;
	top: 4px;
	opacity: 1 !important;
}

.tariff_list .model_list .item.non::before {
	content: '';
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuNSA0LjVMMTAuNSAxMC41TTQuNSAxMC41TDEwLjUgNC41TTcuNSAxNC41QzMuNjM0MDEgMTQuNSAwLjUgMTEuMzY2IDAuNSA3LjVDMC41IDMuNjM0MDEgMy42MzQwMSAwLjUgNy41IDAuNUMxMS4zNjYgMC41IDE0LjUgMy42MzQwMSAxNC41IDcuNUMxNC41IDExLjM2NiAxMS4zNjYgMTQuNSA3LjUgMTQuNVoiIHN0cm9rZT0iI0Y4RkFGOSIvPgo8L3N2Zz4K);
}

.tariff_list .model_list .model_title+ul {
	margin-top: 15px;
}

.tariff_list .model_list+.model_list {
	margin-top: 30px;
	border-top: 1px solid #ffffff30;
	padding-top: 30px;
}

.tariff_list .model_list .item.non {
	color: #ffffff70;
	text-decoration: line-through !important;
}

.tariff_list .price_block .price+.price {
	margin-left: 10px;
	opacity: .7;
}

.tariff_list .btn_block .btn {
	background: var(--color-0);
	color: var(--color-8);
	font-weight: bold;
	padding: 15px 30px;
	border-radius: 8px;
	text-decoration: none;
	display: block;
}

.tariff_list .btn_block .btn:hover {
	background-color: var(--color-7);
	color: var(--color-0);
}

/*review*/

#review_block .img_block>a>img {
	object-position: top left;
}

/*first screen*/

#first_screen h1 {
	white-space: nowrap;
}

#first_screen br {
	display: none;
}

@media screen and (max-width: 991px) {
	#first_screen .line+.line {
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	#first_screen {
		overflow: hidden;
	}

	#first_screen h1 {
		white-space: normal;
		font-size: 54px;
	}

	#first_screen br {
		display: block;
	}

	#first_screen {
		padding-bottom: 20px !important;
		position: relative;
	}

	#first_screen::before {
		content: 'old money nails';
		position: absolute;
		color: var(--color-7);
		opacity: .05;
		font-size: 150px;
		z-index: 0;
		line-height: 80%;
		width: 100%;
		top: 5px;
		left: 5px;
		font-family: "Ubuntu Condensed", serif;
		font-weight: 900;
		font-style: normal;
		text-transform: uppercase;
	}

	#first_screen .img_block {
		position: relative;
		z-index: 1;
	}

	#first_screen .img_block {
		width: 120%;
		right: -10%;
	}

	#first_screen .img_block::before {
		content: '';
		width: 100%;
		height: 100px;
		position: absolute;
		background: linear-gradient(to top, #f6f6f6, transparent);
		bottom: 0;
		left: 0;
		z-index: 1;
	}

	#first_screen .btn_block {
		padding: 0 20px;
	}

	#first_screen h3 {
		margin-top: 20px;
	}

	#first_screen .text_block {
		text-align: left;
	}

	#first_screen .line:first-child {
		position: absolute;
		left: 20px;
		z-index: 2;
		bottom: 180px;
	}

	#first_screen .line+.line {
		margin-top: 0 !important;
	}
}


/* footer */

.footer {
	
	color: #fff;
	font-size: 14px;
	padding: 40px 0;
  }
  
  .footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	padding: 0 15px;
  }
  
  .footer__column {
	flex: 1 1 30%;
	min-width: 260px;
  }
  
  .footer__logo img {
	max-width: 180px;
	height: auto;
	margin-bottom: 15px;
  }
  
  .footer__copyright {
	margin-top: 10px;
	line-height: 1.4;
  }
  
  .footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .footer__links li {
	margin-bottom: 5px;
  }
  
  .footer__links a, .footer__column--requisites a {
	color: #fff;
	text-decoration: underline;
	transition: opacity .3s;
  }
  
  .footer__links a:hover {
	opacity: 0.8;
  }
  
  @media (max-width: 768px) {
	.footer__inner {
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	}
	.footer__column {
	  flex-basis: 100%;
	}
  }