
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);
:root{
	--theme-color: var(--akcent);
	--text-color: var(--kontent-belyy);
	--background-color: #080319;
	accent-color: var(--theme-color);
	--wrapper-size: 1220px;
	--wrapper-padding: 15px;
	--section-margin: 50px;
	--akcent: #692ce5;
	--akcent-dop: #f23635;
	--akcent-laym: #dbf946;
	--kontent-belyy: #f3effe;
	--font-family: "Inter", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Manrope", sans-serif;
}

html{
	height: 100%;
	scroll-behavior: smooth;
}

body{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	font-family: var(--font-family);
	min-width: 320px;
	background-color: var(--background-color);
	color: var(--text-color);
}

body::-webkit-scrollbar{
	width: 8px;
}

body::-webkit-scrollbar-thumb{
	background-color: var(--akcent);
}

body::before{
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.4s ease 0s;
}

body.fade::before{
	background-color: rgba(24, 24, 27, 0.88);
}

body.z-index::before{
	z-index: 150;
}

body.scroll-lock, body.menu-open{
	overflow: hidden;
}

.mob-tel{
	display: none;
}

.mob-mini-tel{
	display: none;
}

.main{
	flex-grow: 1;
}

.wrapper{
	width: min(var(--wrapper-size), calc(100% - (var(--wrapper-padding) + var(--wrapper-padding))));
	margin-inline:auto;
}

.wrapper-padding{
	padding-left: max(var(--wrapper-padding), calc((100% - var(--wrapper-size)) / 2));
	padding-right: max(var(--wrapper-padding), calc((100% - var(--wrapper-size)) / 2));
}

.wrapper-padding.scroll-table::-webkit-scrollbar, .wrapper-padding.scroll-phone{
	display: none;
}

.menu-burger{
	display: none;
}

[data-modal]{
	cursor: pointer;
}

@media (min-width: 993px) {
	body.scroll-lock{
		padding-right: 8px;
	}	
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translate(0px, -100%);
	z-index: 151;
}

.modal.popup-active{
	transform: translate(0px, 0%);
}

.modal__main{
	width: 100%;
	overflow-y: auto;
	height: 100%;
	overflow-x: hidden;
}

.modal__fade {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: background-color 0.3s ease 0s;
}

.modal .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}

.modal .wrapper::-webkit-scrollbar, .modal__main::-webkit-scrollbar{
	display: none;
}

.modal__body {
	width: 100%;
	position: relative;
	max-width: 1300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: auto;
	margin-bottom: auto;
	opacity: 0;
	transition: 0.3s ease 0s;
	border-radius: 15px;
	translate: 0px 20px;
}

.pp-animate .modal__body{
	opacity: 1;
	translate: 0px 0px;
}

.pp-animate .modal__fade{
	background-color: rgba(24, 24, 27, 0.88);
}

.modal-close::before{
	transform: rotate(-45deg);
	top: calc(50% - 3px);
}

.modal-close::after{
	transform: rotate(45deg);
	bottom: calc(50% - 1px);
}

.pp-unanimate .modal__body{
	opacity: 0;
	translate: 0px 20px;
}

.modal-close{
	padding: 7px 7px;
	display: flex;
	position: relative;
	align-self: center;
	background-color: #ffffff00;
	width: 45px;
	height: 45px;
	z-index: 12;
	cursor: pointer;
}

.modal-close{
	position: absolute;
	right:60px;
	top: 60px;
	transition: 0.2s ease 0s;
}

.modal-close:hover{
	opacity: 0.8;
}

.modal-close::before,
.modal-close::after{
	content: "";
	transition: all 0.3s ease 0s;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	position: absolute;
	width: calc(100% - 15px);
	height: 4px;
	background-color: var(--akcent-laym);
	border-radius: 2px;
}

.scroll-up {
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	width: 60px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--theme-color);
	transition: 0.3s ease 0s;
	z-index: 100;
}

.scroll-up.active {
	opacity: 1;
	pointer-events: all;
}

.scroll-up svg, .scroll-up img{
	transition: 0.2s ease 0s;
}

.scroll-up:hover img,  .scroll-up:hover svg{
	transform: translate(0px, -2px);
}

.swiper-button-next, .swiper-button-prev{
	margin-top: 0px;
	top: 50%;
	translate: 0px -50%;
}

.swiper-slide{
	height: auto;
}

.swiper-button-next svg, .swiper-button-next img, .swiper-button-prev svg, .swiper-button-prev img{
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}

.swiper-button-next::after, .swiper-button-prev::after{
	display: none;
}

.drop-menu {
	position: relative;
}

.drop-menu ul{
	padding: 5px 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.drop-menu ul a{
	border-bottom: none !important;
}


.drop-menu span{
	position: relative;
	display: flex;
	gap: 10px;
	transition: 0.2s ease 0s;
	cursor: pointer;
}

.drop-menu span svg{
	transition: 0.2s ease 0s;
}

.drop-menu ul::-webkit-scrollbar{
	width: 4px;
}

.drop-menu ul::-webkit-scrollbar-thumb{
	background-color: var(--theme-color);
}

.burger-menu {
	display: none;
}

/* ==================================== */

@media (max-width: 1260px) {
	:root{
		--wrapper-size: 992px;
	}
}

@media (max-width: 992px) {
	:root{
		--wrapper-size: 828px;
		--section-margin: 40px;
	}

	.wrapper-padding.scroll-table{
		overflow: auto;
		scroll-snap-type: x mandatory;
	}

	.wrapper-padding.scroll-table .scroll-el{
		scroll-snap-align: center;
	}

	.menu-burger{
		padding: 0px 10px;
		display: flex;
		position: relative;
		align-self: center;
		background-color: #ffffff00;
		width: 55px;
		height: 30px;
		margin: 0px -10px;
		z-index: 12;
	}
	
	.menu-burger span,
	.menu-burger::before,
	.menu-burger::after{
		content: "";
		transition: all 0.4s ease 0s;
		left: 50%;
		translate: -50% 0%;
		position: absolute;
		width: calc(100% - 20px);
		height: 5px;
		background-color: var(--akcent-laym);
		border-radius: 2px;
	}
	
	.menu-burger::before{
		top: 0px;
	}
	
	.menu-burger::after{
		bottom: 0px;
	}
	
	.menu-burger span {
		top: calc(50% - 2px);
	}
	
	body.menu-open .menu-burger span{
		transform: scale(0);
	}
	
	body.menu-open .menu-burger::before{
		transform: rotate(-45deg);
		top: calc(50% - 3px);
	}
	
	body.menu-open .menu-burger::after{
		transform: rotate(45deg);
		bottom: calc(50% - 2px);
	}

	.burger-menu{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color: var(--background-color);
		z-index: 200;
		overflow: auto;
		transition: 0.8s ease 0s;
		translate: 100% 0%;
	}

	body.menu-open .burger-menu{
		translate: 0px 0px;
	}

	.burger-menu::-webkit-scrollbar{
		display: none;
	}
}

@media (max-width: 768px) {
	.mob-tel{
		display: block;
	}

	body.menu-open .menu-burger::after{
		bottom: calc(50% - 1px);
	}

	.wrapper-padding.scroll-phone{
		overflow: auto;
		scroll-snap-type: x mandatory;
	}

	.wrapper-padding.scroll-phone .scroll-el{
		scroll-snap-align: center;
	}

	.scroll-up {
		width: 45px;
		height: 45px;
		padding: 5px;
		right: 15px;
		bottom: 15px;
		margin-bottom: -45px;
	}

	.scroll-up.active {
		margin-bottom: 0;
	}

	:root{
		--wrapper-size: 520px;
		--section-margin: 35px;
	}
}

@media (max-width: 480px) {
	.mob-mini-tel{
		display: block;
	}

	:root{
		--wrapper-size: 350px;
		--wrapper-padding: 10px;
		--section-margin: 25px;
	}
}

/* ==================================== */

.intro {
	position: relative;
}
.header {
	padding: 35px 0px;
}

.header__body {
	display: flex;
	gap: 26px;
	justify-content: space-between;
	align-items: center;
}

.header__body .logo{
	margin-right: 25px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 17px;
	flex-shrink: 0;
}

.logo svg{
	flex-shrink: 0;
	width: 21px;
}

.drop-menu {
	flex-shrink: 0;
	position: relative;
}


.drop-menu ul{
	position: absolute;
	left: 0;
	max-height: 175px;
	overflow: auto;
	top: 100%;
	background-color: var(--background-color);
	min-width: 100px;
	opacity: 0;
	transition: 0.4s ease 0s;
}

.drop-menu:hover ul{
	opacity: 1;
}

.drop-menu svg{
	flex-shrink: 0;
}

.drop-menu:hover  svg{
	rotate: 180deg;
}

.drop-menu ul li{
	white-space: nowrap;
}

.header__nav-list{
	display: flex;
	gap: 20px;
}

.header__nav-list a{
	font-weight: 500;
	white-space: nowrap;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.header__nav-list a{
	transition: 0.4s ease 0s
}

.header__nav-list a:hover{
	color: var(--akcent-laym)
}


.socials {
	display: flex;
	gap: 15px;
}

.socials a{
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.socials a svg{
	width: 100%;
	height: 100%;
}

.header__tel {
	display: flex;
	flex-direction: column;
}

.header__tel a{
	font-weight: 700;
	font-size: 24px;
	line-height: 110%;
	transition: 0.3s ease 0s;
	text-transform: uppercase;
	text-align: right;
}

.header__tel a:hover{
	color: var(--akcent-laym);
}

.header__tel span{
	font-weight: 500;
	font-size: 14px;
	text-align: right;
	color: rgba(255, 255, 255, 0.6);
}


.intro__bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.intro__bg img, .intro__bg source{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro__body {
	padding-top: 75px;
	padding-bottom: 83px;
}

h1{
	font-weight: 700;
	font-size: 70px;
	line-height: 110%;
	max-width: 635px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-bottom: 105px;
	color: var(--kontent-belyy);
}

h1 span{
	color: var(--akcent);
}

.header__nav-list {
	align-items: center;
}

.intro__buttons {
	display: flex;
	gap: 50px;
}
.button, a.button {
	color: var(--background-color);
	background: linear-gradient(180deg, #e0fe4a 0%, #cde93c 100%);
}

.button, a.button, .button2, a.button2{
	min-height: 90px;
	font-weight: 500;
	display: flex;
	align-items: center;
	transition: 0.4s ease 0s;
	padding: 10px 60px;
	font-size: 18px;
	text-align: center;
	justify-content: center;
	border-radius: 20px;
	gap: 30px;
	z-index: 1;
	position: relative;
	text-align: center;
}

.button, a.button svg, .button2, a.button2 svg{
	flex-shrink: 0;
}

.button2, a.button2{
	color: var(--kontent-belyy);
	border: 1px solid var(--akcent);
}

.button:hover{
	box-shadow: 0 16px 50px -16px #e1fe4b;
}

.button2:hover{
	background: var(--kontent-belyy);
	border-color: var(--kontent-belyy);
	color: var(--background-color);
}

.drop-menu{
	padding-bottom: 8px;
	margin-bottom: -8px;
}

.logo{
	font-weight: 600;
	font-size: 16px;
	line-height: 110%;
	color: var(--kontent-belyy);
}

.burger-menu .socials {
	display: flex;
	margin-top: 40px;
	margin-bottom: 30px;
	gap: 20px;
}

.burger-menu .socials  a{
	width: 40px;
	height: 40px;
}

@media (max-width: 1260px) {
	.header__tel a {
    font-size: 18px;
	}

	.header__body .logo {
    margin-right: 0px;
	}

	.header .logo{
		gap: 12px;
	}

	.header__nav-list {
    gap: 15px;
	}

	.header__body {
    gap: 15px
	}

	.header__nav-list a {
    font-size: 12px;
	}

	.header__tel span {
    font-size: 12px;
	}

	.logo{
		font-size: 12px;
	}

	.logo svg{
		width: 19px;
	}

	.header {
    padding: 25px 0px;
	}
}

@media (max-width: 992px) {
	.header__nav{
		display: none;
	}

	.logo{
		font-size: 16px;
	}

	.logo svg{
		width: 25px;
	}

	.header .logo{
		gap: 25px;
		margin-right: auto;
	}

	.header__body {
		gap: 30px;
	}

	.header__tel a {
		font-size: 22px;
	}

	.header__tel span{
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.header__socials{
		display: none;
	}

	.header .logo {
		margin-right: 0px;
	}

	.header .logo svg path{
		fill: var(--kontent-belyy);
	}

	.header .logo span{
		display: none;
	}

	.header {
		padding: 28px 0px;
	}

	body.menu-open .menu-burger::before {
		transform: rotate(-45deg);
		top: calc(50% - 4px);
	}
}

@media (max-width: 480px) {
	.header__tel a {
		font-size: 18px;
	}

	.header__tel span {
		font-size: 12px;
	}

	.logo svg {
		width: 21px;
	}

	.menu-burger {
		padding: 0px 10px;
		width: 50px;
		height: 25px;
	}

	.menu-burger span {
		top: calc(50% - 3px);
}
}

/* ==================================== */

.burger-menu {
	padding: 25px;
}

.burger-menu__top {
	display: flex;
	gap: 20px;
	margin-bottom: 50px;
	justify-content: space-between;
}

.burger-menu .header__nav{
	display: block;
}

.burger-menu .header__nav-list{
	flex-direction: column;
	margin-bottom: 30px;
	gap: 30px;
}

.burger-menu .button{
	width: 100%;
	max-width: 100%;
}

.burger-menu .header__nav-list a{
	font-size: 16px;
}

.burger-menu .drop-menu ul{
	display: none;
}

.burger-menu .drop-menu svg{
	display: none;
}


@media (max-width: 1260px) {
	h1 {
    font-size: 60px;
		max-width: 585px;
	}
}

@media (max-width: 992px) {
	h1 {
    font-size: 50px;
		max-width: 455px;
	}

	.intro__buttons {
    gap: 30px;
	}

	h1 {
    margin-bottom: 75px;
	}
}

@media (max-width: 768px) {
	h1 {
    font-size: 45px;
		max-width: 355px;
		margin-bottom: 30px;
	}

	.intro__buttons {
    flex-direction: column;
		gap: 15px;
	}

	.intro__body {
    padding-top: 130px;
    padding-bottom: 50px;
	}

	.intro__bg {
		height: 360px;
	}

	.intro__bg::before{
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 50%;
		background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(8,3,25,1) 100%);
	}
}

@media (max-width: 480px) {
	h1 {
    font-size: 35px;
		max-width: 285px;
	}

	.button, a.button, .button2, a.button2 {
		padding: 10px 30px;
	}
}

/* ==================================== */

.intro-bottom {
}
.intro-bottom__body {
	padding: 80px 0px;
	background: linear-gradient(360deg, #080319 0%, #190a4d 100%);
}
.intro-bottom .wrapper {
	display: flex;
	gap: 20px;
}
.intro-bottom__block {
	display: flex;
	align-items: center;
	flex-direction: column;
	font-weight: 500;
	font-size: 24px;
	line-height: 130%;
	text-align: center;
	color: var(--kontent-belyy);
	gap: 12px;
	width: calc((100% - 40px) / 3);
}

.intro-blur{
	top: 100%;
	left: 0;
	width: 100%;
	height: 2142px;
	overflow: hidden;
	position: absolute;
	z-index: -1;
	translate: 0px -45%;
}

.intro-blur svg{
	position: absolute;
	left: 50%;
	min-width: 2352px;
	top: 50%;
	translate: -50% -50%;
}

.intro-bottom__block  span{
	color: var(--akcent);
	display: block;
}

.intro-blur-left{
	position: absolute;
	z-index: -1;
	top: 60px;
	overflow: hidden;
	width: 100%;
	height: 1950px;
}

.intro-blur-left svg{
	position: absolute;
	left: 0;
	top: 50%;
	width: 560px;
	translate: 0px -65%;
}

.burger-menu .socials {
	justify-content: center;
}

@media (max-width: 1260px) {
	.intro-bottom__block {
    font-size: 20px;
	}

	.intro-bottom__body {
    padding: 60px 0px;
	}
}

@media (max-width: 992px) {
	.intro-bottom__block {
    font-size: 16px;
	}

	.intro-blur-left{
		display: none;
	}
}

@media (max-width: 768px) {
	.intro-bottom__body {
    padding: 60px 0px;
	}

	.intro-bottom .wrapper {
		flex-direction: column;
	}

	.intro-bottom__block{
		width: 100%;
		font-size: 18px;
	}

	.intro-bottom__body{
		padding: 45px 0px;
		background: linear-gradient(360deg, #080319 0%, #190a4d 100%);
	}
	

	.intro-blur{
		display: none;
	}
}


/* ==================================== */

.intro-bottom{
	margin-bottom: var(--section-margin);
}

.stock {
	padding: var(--section-margin) 0px;
}

h2, .h2{
	font-weight: 700;
	font-size: 35px;
	line-height: 140%;
	text-transform: uppercase;
	color: var(--kontent-belyy);
}

h2 span, .h2 span{
	color: var(--akcent);
}

.stock__body {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.stock__block {
	min-height: 275px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	z-index: 1;
	position: relative;
	color: var(--background-color) !important;
	overflow: hidden;
	border-radius: 30px;
	width: calc((100% - 40px) / 3);
}

.stock__block::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	border-radius: inherit;
	width: 100%;
	transition: 0.4s ease 0s;
	height: 100%;
	z-index: -1;
	background: var(--kontent-belyy);
}
.stock__block::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	border-radius: inherit;
	width: 100%;
	z-index: -1;
	transition: 0.4s ease 0s;
	height: 100%;
	opacity: 0;
	background: linear-gradient(169deg, #080319 0%, #3f1473 64.5%, #8b4bd4 100%), linear-gradient(360deg, #080319 0%, #190a4d 100%);
}


.stock__block-title {
	font-weight: 500;
	font-size: 24px;	
	margin-bottom: 10px;
	line-height: 140%;
}
.stock__block-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	opacity: 0.5;
}
.stock__block-link {
	font-weight: 400;
	font-size: 14px;
	margin-top: auto;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--akcent);
}


.h3, h3{
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 40px;
}

@media (max-width: 1260px) {
	.stock__block {
    min-height: 230px;
    padding: 30px;
	}


	.stock__block-text {
    font-size: 14px;
	}

	.stock__block-title {
    font-size: 20px;
	}

	h2, .h2 {
    font-size: 32px;
	}

	.h3, h3{
		font-size: 26px;
	}
}

@media (max-width: 992px) {
	.stock__block {
		width: 100%;
		padding: 30px;
	}

	.stock__block-title{
		font-size: 24px;
	}

	h2, .h2 {
    font-size: 28px;
	}

	.h3, h3{
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	h2, .h2 {
    font-size: 24px;
	}

	.h3, h3{
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.stock__block {
		border-radius: 20px;
	}

	h2, .h2 {
    font-size: 20px;
		margin-bottom: 30px;
	}

	.h3, h3{
		margin-bottom: 30px;
		font-size: 20px;
	}
}
/* ==================================== */

.row {
	margin: var(--section-margin) 0px;
}
.row__body {
	padding: 85px 0px;
	background: linear-gradient(360deg, #080319 0%, #190a4d 100%);
}
.row__body  .wrapper {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.row__body  h2{
	max-width: 552px;
}


@media (max-width: 1260px) {
	.row__body h2 {
    max-width: 502px;
	}

	.row__body {
    padding: 65px 0px;
	}
}

@media (max-width: 992px) {
	.row__body h2 {
   text-align: center;
	 margin-bottom: 0px;
	}

	.row__body {
		padding: 55px 0px;
}

	.row__body h2 span{
		display: block;
	}

	.row__body .wrapper {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.row__body {
		padding: 45px 0px;
	}
}

/* ==================================== */

.decor-page{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

.decor-page__blur-1{
	position: absolute;
	right: 0;
	width: 100%;
	overflow: hidden;
	height: 1141px;
	top: 1095px;
}

.decor-page__blur-2{
	width: 100%;
	position: absolute;
	left: 0;
	top: 5870px;
}

.decor-page__blur-2 svg{
	width: 568px;
	position: absolute;
	left: 0;
}

.decor-page__blur-3{
	width: 100%;
	position: absolute;
	right: 0;
	top: 6285px;
}

.decor-page__blur-3 svg{
	width: 661px;
	position: absolute;
	right: 0;
}

.decor-page__blur-1 svg{
	width: 1331px;
	position: absolute;
	right: 0;
}

@media (hover: hover) {
	.stock__block:hover .stock__block-link{
		color: var(--akcent-laym);
	}
	
	
	.stock__block:hover::before{
		opacity: 1;
	}
	
	.stock__block:hover::after{
		opacity: 0;
	}
	
	.stock__block:hover{
		color: var(--kontent-belyy) !important;
	}
}

@media (hover: none) {
	.stock__block:active .stock__block-link{
		color: var(--akcent-laym);
	}
	
	
	.stock__block:active::before{
		opacity: 1;
	}
	
	.stock__block:active::after{
		opacity: 0;
	}
	
	.stock__block:active{
		color: var(--kontent-belyy) !important;
	}
}

@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.decor-page{
		display: none;
	}
}

/* ==================================== */

.rating-area {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 5px;
	overflow: hidden;
	pointer-events: none;
}

.star-checked{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.rating-area img{
	width: 100%;
	height: 100%;
}

.rating-area label{
	position: relative;
}

.rating-area:not(:checked) > input {
	display: none;
}

.rating-area:not(:checked) > label {
	float: right;
	width: 10px;
	height: 10px;
	padding: 0;
	cursor: pointer;
}

.rating-area > input:checked ~ label > .star-checked{
	opacity: 1;
}

.rating-area > input:checked ~ label > .star-default{
	opacity: 0;
}

.rating-area:not(:checked) > label:hover .star-checked,
.rating-area:not(:checked) > label:hover ~ label .star-checked {
	opacity: 1;
} 

.rating-area:not(:checked) > label:hover .star-default,
.rating-area:not(:checked) > label:hover ~ label .star-default {
	opacity: 0;
} 

.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label .star-checked{
	opacity: 1;
}

.catalog {
	padding: var(--section-margin) 0px;
}

.catalog__body {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.catalog__card {
	position: relative;
	border-radius: 30px;
	transition: 0.4s ease 0s;
	padding-top: 30%;
	display: flex;
	flex-direction: column;
	z-index: 1;
	background: linear-gradient(360deg, #080319 0%, #190a4d 100%);
	width: calc((100% - 60px) / 4);
}


.catalog__image {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 50px;
	padding-top: 120.5%;
	width: 100%;
}

.catalog__image  svg{
	position: absolute;
	left: 50%;
	z-index: -1;
	top: 50%;
	translate: -50% -50%;
}

.catalog__img {
	position: absolute;
	left: 50%;
	max-height: 100%;
	top: 50%;
	translate: -50% -50%;
}
.catalog__card-body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: calc(30px + 50px) 30px 30px 30px; 
}
.catalog .rating-area {
	margin-bottom: 20px;
}

.catalog__card-title {
	margin-bottom: auto;
	padding-bottom: 17px;
	font-weight: 500;
	max-width: 215px;
	font-size: 20px;
	line-height: 140%;
}
.catalog__card-price {
	display: flex;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	flex-direction: column;
}

.catalog__card-price:not(:last-child){
	margin-bottom: 15px;
}

.catalog__card-price span{
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	color: var(--akcent-laym);
}

.catalog__bottom{
	margin-top: 40px;
}

@media (hover: hover) {
	.catalog__card:hover{
		background: var(--kontent-belyy);
		color: var(--background-color);
	}
	.catalog__card:hover .catalog__image svg{
		opacity: 0;
	}

	.catalog__card:hover .catalog__card-price span{
		color: var(--background-color);
	}
}


@media (max-width: 992px) {
	.catalog__card {
		width: calc((100% - 40px) / 3);
		padding-top: 40%;
	}
}

@media (max-width: 768px) {
	.catalog__card {
		width: calc((100% - 20px) / 2);
		padding-top: 42%;
	}

	.catalog__image {
    top: 25px;
    padding-top: 80.5%;
	}

	.catalog__card-title {
    font-size: 16px;
	}
	.catalog__card-body {
    padding: calc(25px + 30px) 25px 30px 25px;
	}
	
	.catalog__card-price span {
    font-size: 14px;
	}

	.catalog__card-price{
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	

	.catalog__card-price span {
    font-size: 12px;
	}

	.catalog__card{
		border-radius: 20px;
	}

	.catalog__card-title {
    font-size: 12px;
	}

	.catalog__card-body {
    padding: calc(15px + 30px) 15px 25px 15px;
	}

	.catalog__card-price{
		font-size: 10px;
	}

	.catalog__bottom{
		margin-top: 30px;
	}
	
}
/* ==================================== */

.row + .delivery{
	margin-top: -50px;
}

.delivery {
	margin: var(--section-margin) 0px;
}
.delivery__body {
	position: relative;
	padding: 100px 0px;
}
.delivery__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.delivery__bg img, .delivery__bg source{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.delivery__left{
	max-width: 450px;
}

.delivery ul{
	margin: 50px 0px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--kontent-belyy);
}

.delivery p{
	font-size: 18px;
	font-weight: 600;
	line-height: 140%;
	margin-top: 30px;
	margin-bottom: 50px;
}

.delivery .button {
	width: auto;
	display: inline-flex;
}

.delivery__bottom-tel {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 30px;
	flex-direction: column;
}

.delivery__bottom-tel a{
	text-transform: uppercase;
	font-size: 35px;
	font-weight: 700;
	line-height: 140%;
}

.delivery__bottom-tel span{
	font-size: 18px;
	font-weight: 600;
	line-height: 140%;
}

.delivery-slide__bottom-section{
	min-height: 96px;
	margin-top: auto;
}

@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.delivery__body {
    padding: 70px 0px;
	}

	.row + .delivery {
    margin-top: -40px;
	}
}

@media (max-width: 768px) {
	.delivery__body {
    padding: 60px 0px;
	}


	.delivery__bottom-tel{
		display: none;
	}
	
.delivery p{
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 180px;
}

	.row + .delivery {
    margin-top: -35px;
	}

	.delivery ul {
    margin: 20px 0px 315px 0px;
    gap: 10px;
    font-size: 16px;
	}

	.delivery h2 span, .delivery .h2 span{
		color: inherit;
	}

	.delivery__left{
		max-width: 100%;
	}

	.delivery .button{
		width: 100%;
	}
}

@media (max-width: 480px) {
	.delivery__body {
    padding: 50px 0px;
	}

	.row + .delivery {
    margin-top: -25px;
	}
}
/* ==================================== */

.reviews {
	padding: var(--section-margin) 0px;
}

.swiper-top {
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.swiper-top .h3 {
	margin-bottom: 0px;
}
.swiper-buttons {
	display: flex;
	margin-left: auto;
	gap: 20px;
}
.swiper-button-prev, .swiper-button-next {
	width: 20px;
	height: 20px;
	position: static;
	margin-top: 0px !important;
	translate: 0px 0px !important;
	border-radius: 10px;
	color: var(--akcent-laym);
	width: 38px;
	transition: 0.4s ease 0s;
	height: 38px;
	border: 1px solid var(--akcent-laym);
	flex-shrink: 0;
}

.swiper-button-prev:hover, .swiper-button-next:hover{
	background-color: var(--akcent-laym);
	color: var(--background-color);
}

.swiper-button-disabled{
	opacity: 1 !important;
}


.reviews-slide {
	padding: 40px;
	color: var(--background-color);
	background: var(--kontent-belyy);
	border-radius: 32px;
}
.reviews-slide__top {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	gap: 10px;
}

.reviews-slide__top span{
	opacity: 0.5;
}

.reviews-slide .rating-area label{
	width: 14px;
	height: 14px; 
}

.reviews-slide__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 155%;
}
.swiper-scrollbar-bottom {
	display: none;
	width: 100%;
	align-items: flex-start;
	gap: 15px;
	margin-top: 40px;
}

.swiper-scrollbar-bottom  svg{
	flex-shrink: 0;
	margin-top: -10px;
}

.swiper-scrollbar {
	height: 8px !important;
	margin-bottom: 10px;
	border-radius: 55px;
	background-color: rgba(243, 239, 254, 0.2);
}

.swiper-scrollbar-drag{
	background-color: var(--akcent) !important;
}

.swiper-scrollbar-bottom-right {
	width: 100%;
	font-weight: 400;
	font-size: 12px;
	line-height: 155%;
	color: var(--kontent-belyy)
}
.swiper-scrollbar-bottom-right  span{
	opacity: 0.5;
}

.swiper-scrollbar {
	position: static !important;
}
.reviews__bottom {
	margin-top: 40px;
}


@media (max-width: 1260px) {
	.reviews-slide {
    padding: 30px;
    border-radius: 25px;
	}

	.reviews-slide__text {
    font-size: 14px;
	}
}

@media (max-width: 992px) {
	.reviews-slide {
    padding: 40px;
    border-radius: 32px;
	}

	.reviews-slide__text {
    font-size: 16px;
	}
}

@media (max-width: 768px) {
	.swiper-scrollbar-bottom{
		display: flex;
	}

	.swiper-buttons{
		display: none;
	}
}

@media (max-width: 480px) {
	.reviews-slide__text {
		font-size: 14px;
	}

	.reviews__bottom {
		margin-top: 30px;
	}
}
/* ==================================== */

.form-section {
	padding: var(--section-margin) 0px;
}
.form-section__body {
	padding: 60px 0px;
	position: relative;
	z-index: 2;
}
.form-section__bg {
	opacity: 0.3;
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form-main {
	padding: 60px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	border-radius: 60px;
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	background: rgba(243, 239, 254, 0.05)
}
.form-main__left {
	max-width: 353px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 40px;
}
.form-main__sub-title {
	font-weight: 500;
	font-size: 18px;
	margin-top: 10px;
	line-height: 140%;
	text-align: center;
	color: var(--kontent-belyy);
}
.form-main__form {
	margin-top: 40px;
	width: 100%;
}
.input {
	border-radius: 20px;
	height: 90px;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
	background: var(--kontent-belyy);
	color: var(--background-color);
}
.form-main__form .button {
	margin-top: 15px;
	width: 100%;
}
.policy {
	margin-top: 25px;
	font-weight: 400;
	font-size: 13px;
	text-align: center;
	max-width: 282px;
	margin-inline: auto;
	color: var(--kontent-belyy);
}

.policy a{
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.form-main__tel-bottom {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	justify-content: center;
	margin-top: 60px;
}
.form-main__tel {
	font-weight: 700;
	font-size: 36px;
	transition: 0.3s ease 0s;
	text-transform: uppercase;
	text-decoration: underline !important;
	text-decoration-skip-ink: none;
	color: var(--akcent) !important;
}

.form-main__tel:hover{
	color: var(--kontent-belyy) !important;
}

.form-main__tel-bottom span{
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	text-align: center;
	color: var(--kontent-belyy);
}

.form-main__image {
	border-radius: 30px;
	margin-left: auto;
	overflow: hidden;
}

.form-main__image  img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.delivery + .form-section{
	margin-top: -100px;
}

.catalog h1{
	max-width: 100%;
	margin-bottom: 50px;
}

.breadcrumbs {
	margin-top: 20px;
	position: relative;
	z-index: 10;
}

.wrapper .wrapper{
	width: 100%;
}

.breadcrumbs  ul{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: var(--kontent-belyy);
}

.breadcrumbs + .catalog{
	margin-top: -25px;
}

.breadcrumbs  ul li:last-child{
	color: var(--akcent-laym);
}

.breadcrumbs  ul li:not(:last-child)::after{
	content: '/';
}

.breadcrumbs  ul li a{
	transition: 0.2s ease 0s;
}

.breadcrumbs  ul li a:hover{
	color: var(--akcent-laym);
}


.h1-not-intro{
	max-width: 100%;
}

.decor-page__blur-c1{
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	overflow: hidden;
	height: 1436px;
}

.decor-page__blur-c1 svg{
	position: absolute;
	right: 0;
	top: 0;
	width: 605px;
}
.decor-page__blur-c2{
	position: absolute;
	right: 0;
	top: 900px;
	width: 100%;
	overflow: hidden;
	height: 1950px;
}

.decor-page__blur-c2 svg{
	position: absolute;
	left: 0;
	top: 0;
	width: 569px;
}

.breadcrumbs h1{
	margin-top: 25px;
	margin-bottom: 0px !important;
}

@media (max-width: 1260px) {
	.form-main__left {
    margin-left: 0px;
	}

	.form-section__main {
    padding: 50px;
	}

	.form-main__tel-bottom {
    margin-top: 40px;
	}

	.form-main__tel {
    font-size: 32px;
	}

	.form-main__image {
		max-width: 420px;
	}
}

@media (max-width: 992px) {
	.form-main__image {
		display: none;
	}
	
	
	.breadcrumbs + .catalog{
		margin-top: -20px;
	}

	
.delivery + .form-section{
	margin-top: -80px;
}


	.form-section__body {
    padding: 0px 0px;
	}

	.form-main{
		border-radius: 0px;
	}

	.form-section__main {
		padding: 60px 50px;
	}

	.form-section__body .wrapper{
		width: 100%;
	}

	.form-section__bg{
		display: none !important;
	}

	.form-main__left h2, .form-main__left .h2{
		font-size: 28px;
		margin-bottom: 0px;
	}

	.form-main__sub-title {
    font-size: 16px;
		max-width: 320px;
		margin-inline: auto;
	}

	.form-main__form {
    margin-top: 25px;
	}

	.form-main__tel-bottom {
		margin-top: 55px;
	}

	.form-main__left{
		width: 100%;
		max-width: 420px;
		margin-inline: auto;
	}
}

@media (max-width: 768px) {
	.form-section__main {
		padding: 60px 30px;
	}
	.delivery + .form-section{
		margin-top: -70px;
	}
	
	.h1-not-intro{
		font-size: 35px;
	}

	.h1-not-intro{
		margin-bottom: 30px !important;
	}


	.breadcrumbs + .catalog{
		margin-top: -45px;
	}

	.breadcrumbs ul{
		font-size: 14px;
	}

	.breadcrumbs{
		margin-bottom: var(--section-margin);
	}
}

@media (max-width: 480px) {
	.form-section__main {
		padding: 60px 20px;
	}

	.breadcrumbs + .catalog{
		margin-top: -35px;
	}

	.h1-not-intro{
		font-size: 20px;
	}

	.breadcrumbs ul{
		font-size: 12px;
	}

	.delivery + .form-section{
		margin-top: -50px;
	}

	.form-main__tel {
		font-size: 28px;
	}

	.form-main__tel-bottom span {
    font-size: 16px;
	}
}
/* ==================================== */

.reviews{
	overflow: hidden;
}

.apps-slide, a.apps-slide {
	display: flex;
	position: relative;
	z-index: 1;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	background-color: var(--kontent-belyy);
	border-radius: 30px;
	padding: 50px 15px 30px 15px;
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	text-align: center;
	transition: 0.4s ease 0s;
	color: var(--background-color);
}

.apps-slide::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	z-index: -1;
	border-radius: inherit;
	opacity: 0;
	top: 0;
	transition: 0.4s ease 0s;
	background: linear-gradient(169deg, #080319 0%, #3f1473 64.5%, #8b4bd4 100%), linear-gradient(360deg, #080319 0%, #190a4d 100%);
}

.apps-slide_v2.apps-slide {
	background: var(--akcent-laym);
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	padding: 55px 15px;
	text-align: center;
	color: var(--background-color);
}


.apps-slide:hover::before{
	opacity: 1;
}

.apps-slide:hover{
	background: #ffffff00;
}

.apps-slide:hover{
	color: var(--kontent-belyy);
}

@media (max-width: 768px) {
	.reviews .swiper{
		overflow: visible !important;
	}
}

@media (max-width: 480px) {
	.swiper-top {
    margin-bottom: 30px;
	}
}
/* ==================================== */

.accordion{
	padding: var(--section-margin) 0px;
}

.accordion__body{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.accordion__tab {
	width: calc((100% - 20px) / 2);
	border-radius: 20px;
	padding: 30px 35px 0px 35px;
	display: flex;
	transition: 0.4s ease 0s;
	flex-direction: column;
	cursor: pointer;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	background: rgba(243, 239, 254, 0.05);
}


.accordion__tab-top {
	gap: 20px;
	display: flex;
	align-items: center;
	padding-bottom: 35px;
}

.accordion__tab-arrow{
	margin-left: auto;
	transition: 0.2s ease 0s;
	flex-shrink: 0;
}

.accordion-active .tabs__tab-arrow {
	transform: rotate(180deg);
}

.accordion__tab-title {
	font-weight: 500;
	font-size: 18px;
	max-width: 340px;
	line-height: 140%;
}

.accordion__tab-body {
	padding-bottom: 35px;
	margin-top: -15px;
}

.accordion__tab-arrow {
	width: 28px;
	height: 28px;
}

.accordion-active .accordion__tab-arrow{
	rotate: 45deg;
}

.accordion__tab-text{
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: var(--kontent-belyy);
	opacity: 0.7;
}

.accordion__tab.accordion-active{
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	background: rgba(240, 237, 248, 0.15);
}

.accordion__tab-body{
	display: none;
}

@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.accordion__tab{
		width: 100%;
	}
}

@media (max-width: 768px) {
	.accordion__tab-title {
    font-size: 16px;
	}

	.accordion__tab{
		border-radius: 15px;
		padding: 20px 20px 0px 20px;
	}

	.accordion__tab-top {
    padding-bottom: 20px;
	}

	.accordion__tab-body {
    padding-bottom: 20px;
    margin-top: -5px;
	}

	.accordion__tab-arrow {
    width: 20px;
    height: 20px;
}
}

/* ==================================== */

.text-about {
	padding: var(--section-margin) 0px;
}

.text-about h2, .text-about .h2{
	max-width: 738px;
	margin-bottom: 30px;
}

.text-about__text {
	font-weight: 500;
	max-width: 626px;
	font-size: 18px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	line-height: 140%;
}

.text-about__text span{
	color: var(--akcent);
}

@media (max-width: 768px) {
	.text-about__text {
    font-size: 16px;
	}
}

@media (max-width: 480px) {
	.text-about__text {
    font-size: 14px;
	}
}
/* ==================================== */

.row + .footer{
	margin-top: -50px;
}

.footer__wrapper {
	display: flex;
	flex-direction: column;
}

.warning {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	text-transform: uppercase;
	text-align: right;
	max-width: 250px;
	margin-left: auto;
}

.drop-menu ul{
	pointer-events: none;
}

.drop-menu:hover ul{
	pointer-events: all;
}

.warning span{
	display: inline-block;
	color: var(--akcent-dop);
}


.footer__apps {
	margin-top: 15px;
	display: flex;
	align-items: center;
	gap: 60px;
}

.footer__apps .button{
	min-height: 44px;
	border-radius: 10px;
	font-size: 14px;
}

.footer__app {
	align-items: center;
	display: flex;
	gap: 25px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--kontent-belyy);
}

.footer__app svg{
	flex-shrink: 0;
}

.footer{
	padding-bottom: 100px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 35px;
	border-top: 1px solid rgba(243, 239, 254, 0.1);
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	padding-top: 35px;
}
.footer__bottom div{
	opacity: 0.2;
}

.footer__bottom a{
	text-decoration: underline;
text-decoration-skip-ink: none;
}

.modal .form-section__body{
	padding: 40px;
	border-radius: 70px;
	overflow: hidden;
}

.modal .form-section{
	padding: 0px;
}

.modal .form-section {
	width: 100%;
}

.form-main__left h2, .form-main__left h2{
	text-align: center;
}

@media (max-width: 1260px) {
	.footer__apps{
		gap: 30px;
	}

	.warning {
    font-size: 14px;
    max-width: 220px;
	}

	.footer__app {
    gap: 15px
	}

	.row + .footer {
    margin-top: -40px;
	}

	.modal-close{
		right: 70px;
		top: 50px;
	}
	
}

@media (max-width: 992px) {
	.footer__apps{
		flex-wrap: wrap;
	}

	.row + .footer {
    margin-top: -35px;
}

	.header__body{
		flex-wrap: wrap;
	}

	.footer .header__nav{
		display: block;
	}

	.modal .form-section__body {
		border-radius: 0px;
		padding: 0px;
	}

	.modal__body {
		max-width: 420px;
	}

	.modal-close{
		right: 10px;
		top: 10px;
	}

	.modal .form-main{
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
	background: rgba(243, 239, 254, 0.05);
		border-radius: 30px;
	}
}

@media (max-width: 768px) {
	.footer .wrapper{
		display: flex;
		flex-direction: column;
	}

	.footer__main-block .logo{
		justify-content: center;
		font-size: 32px;
	}

	.footer__logo-description{
		margin-top: 5px;
		font-weight: 500;
		font-size: 13px;
		margin-bottom: 30px;
		line-height: 140%;
		max-width: 185px;
		margin-inline: auto;
		text-align: center;
		opacity: 0.5;
	}
	
	.footer .button{
		min-height: 44px;
		border-radius: 10px;
		max-width: 220px;
		font-size: 14px;
		margin-bottom: 30px;
		margin-inline: auto;
	}

	.socials-footer {
		display: flex;
		margin-top: 40px;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		justify-content: center;
		padding: 40px 0px;
		border-top: 1px solid rgba(243, 239, 254, 0.199);
		border-bottom: 1px solid rgba(243, 239, 254, 0.199);
	}

	.socials-footer a{
		width: 40px;
		height: 40px;
	}

	.socials-footer .socials{
		gap: 40px;
	}

	.footer__apps {
		gap: 25px;
	}


	.footer .header{
		margin-top: 40px;
		padding: 0px;
	}

	.footer .header__nav{
		width: 100%;
	}

	.footer .header__nav-list{
		flex-direction: column;
		gap: 25px;
	}

	.footer .header__nav-list a{
		font-size: 14px;
	}

	.footer-title-big{
		font-weight: 500;
		font-size: 22px;
		line-height: 125%;
		text-align: center;
	}

	.footer .header__body{
		align-items: center;
		justify-content: center;
	}

	.footer__bottom div{
		display: none;
		width: 100%;
	}

	.footer__bottom div:last-child{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 25px;
	}

	.footer .header__nav-list svg{
		display: none;
	}

	.footer__apps{
		border-bottom: 1px solid rgba(243, 239, 254, 0.199);
		margin-top: 40px;
		padding-bottom: 40px;
	}

	.footer-title{
		font-weight: 500;
		font-size: 14px;
		text-align: center;
		opacity: 0.5;
	}

	.warning{
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.footer .header__tel{
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}

	.row + .footer {
    margin-top: -35px;
}

	.footer__wrapper{
		order: 2;
	}

	.footer .header{
		order: 5;
	}

	.footer__main-block{
		order: 1;
	}

	.footer__bottom{
		order: 3;
	}

	.footer__apps .footer__app span{
		display: none;
	}

	.footer__apps .button{
		display: none;
	}

	.footer__apps  .warning{
		display: none;
	}
	.footer__apps{
		order: 4;
		justify-content: center;
	}

	.footer__main-block.mob-tel{
		display: flex;
		flex-direction: column;
	}

	.socials-footer {
		order: 4;
	}
	
	.footer .header__body .logo{
		display: none;
	}

	.footer .header__body .header__tel{
		display: none;
	}
	.footer .header__body .socials{
		display: none;
	}

	.footer{
		padding-top: 45px;
	}
}

@media (max-width: 480px) {
	
	.modal .wrapper{
		padding: 0px;
		width: 100%;
	}

	.row + .footer {
    margin-top: -25px;
}
}
/* ==================================== */

.reviews-swiper {
}
.swiper-wrapper {
}
.swiper-slide {
}
.delivery-slide {
	display: flex;
	flex-direction: column;
	border-radius: 30px;
	overflow: hidden;
	background: center / cover no-repeat;
	color: var(--kontent-belyy);
	padding: 40px;
	background: linear-gradient(169deg, #080319 0%, #3f1473 64.5%, #8b4bd4 100%), linear-gradient(360deg, #080319 0%, #190a4d 100%);
}
.delivery-slide__title {
	font-weight: 500;
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 140%;
}
.delivery-slide__text {
	font-weight: 400;
	margin-bottom: 50px;
	font-size: 16px;
	opacity: 0.7;
	line-height: 140%;
	color: var(--kontent-belyy);
}
.delivery-slide__price {
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	margin-bottom: 20px;
	color: var(--akcent-laym);
}
.delivery-slide__bottom {
	font-weight: 400;
	font-size: 16px;
	opacity: 0.5;
	line-height: 130%;
	color: var(--kontent-belyy);
}
.delivery-slide_v2.delivery-slide {
	padding: 0px;
	border-radius: 20px;
}

.delivery-slide_v2 .delivery-slide__title{
	padding: 40px;
}

.delivery-slide_v2 .button{
	padding: 10px 15px;
	margin-top: auto;
	width: 100%;
}

.delivery-slide__price{
	margin-top: auto;
}

.reviews h2, .reviews .h2{
	margin-bottom: 0px;
}

@media (max-width: 1260px) {
	.delivery-slide {
		padding: 20px;
	}

	.delivery-slide_v2.delivery-slide .button{
		font-size: 16px;
		min-height: 70px;
	}

	.delivery-slide_v2 .delivery-slide__title {
    padding: 20px;
	}

	.delivery-slide__price{
		font-size: 22px;
		}
}

@media (max-width: 992px) {
	.delivery-slide {
		padding: 40px;
	}

	.delivery-slide__price{
		font-size: 24px;
		}

	.delivery-slide_v2.delivery-slide .button{
		font-size: 18px;
		min-height: 90px;
	}

	.delivery-slide_v2 .delivery-slide__title {
    padding: 40px;
	}

	.delivery-slide__price{
		font-size: 22px;
	}
}
/* ==================================== */

.warning-section {
	padding: var(--section-margin) 0px;
}

.warning-section__body {
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: var(--kontent-belyy);
	gap: 30px;
}

.warning-section__body div{
	max-width: 835px;
}

.warning-section__body  svg{
	flex-shrink: 0;
	align-self: flex-start;
	color: var(--akcent-laym);
}

.uslovia {
	padding: var(--section-margin) 0px;
}

.uslovia__body {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 30px;
}
.uslovia__col {
	width: calc((100% - 20px) / 2);
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.uslovia p{
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	opacity: 0.7;
}

.uslovia p:not(:last-child){
	margin-bottom: 25px;
}

.uslovia h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 10px;
}

.decor-page svg{
	position: absolute;
}

.decor-page div{
	width: 100%;
	position: absolute;
	overflow: hidden;
}


.decor-page__blur-d1{
	top: 0;
	left: 0;
	height: 1220px;
}
.decor-page__blur-d2{
	top: 0;
	right: 0;
	height: 2099px;
}

.decor-page__blur-d2 svg{
	right: 0;
	top: -100px;
}


.decor-page__blur-d1 svg{
	width: 569px;
	left: 0;
	top: 0;
}

.header{
	position: relative;
	z-index: 100;
}

.catalog__card .button{
	font-size: 14px !important;
	min-height: 44px !important;
	border-radius: 10px !important;
	padding: 10px;
}

@media (max-width: 768px) {
	.warning-section__body  svg{
		width: 60px;
	}

	.uslovia__col {
		width: 100%;
	}

	.uslovia__body{
		gap: 25px;
	}
	
}

@media (max-width: 480px) {
	.warning-section__body  svg{
		width: 38px;
	}

	.uslovia__body{
		padding-top: 0px;
	}
	
}
/* ==================================== */

.intro-delivery .intro__body{
	padding-top: 20px;
}

.intro-delivery .intro__bg{
	height: 770px;
}

.intro-delivery .intro__bg::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5%;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(8,3,25,1) 100%);
}

.intro-delivery .intro__bg img, .intro-delivery .intro__bg source{
	object-position: bottom;
}

.intro-delivery{
	overflow: hidden;
}

.intro__text-section{
	margin-top: 60px;
	max-width: 667px;
}

.intro__text-section h3, .intro__text-section .h3{
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 18px;
}

.intro__text-section p{
	max-width: 535px;
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
}

h3 span, .h3 span{
	color: var(--akcent);
}

.intro__delivery {
	flex-wrap: wrap;
	display: flex;
	gap: 20px;
	margin-top: calc(var(--section-margin) + var(--section-margin));
}
.intro__delivery-block {
	border-radius: 20px;
	padding: 10px 37px;
	display: flex;
	align-items: center;
	min-height: 140px;
	gap: 30px;
	background: linear-gradient(360deg, #080319 0%, #190a4d 100%);
	width: calc((100% - 20px) / 2);
}

.intro__delivery-block svg{
	flex-shrink: 0;
}

.intro__delivery-block-text {
	position: relative;
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	padding-left: 30px;
}

.intro__delivery-block-text::before{
	content: '';
	position: absolute;
	left: 0;
	background-color: var(--kontent-belyy);
	opacity: 0.2;
	top: 50%;
	translate: 0px -50%;
	height: calc(100% - 10px);
	width: 1px;
}

.intro .breadcrumbs{
	margin-top: 0px !important;
}

.delivery-text {
	padding: var(--section-margin) 0px;
}
.wrapper {
}

.delivery-text .wrapper{
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.delivery-text p{
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
}

.delivery-text p:first-child{
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
}
.delivery-text p:nth-child(2){
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
}

.delivery-text ul, .main .single ul{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.list li{
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
}

.delivery-text ul li, .main .single ul li{
	position: relative;
	font-weight: 400;
	font-size: 16px;
	padding-left: 31px;
	line-height: 140%;
}



.delivery-text ul li::before, .main .single ul li::before{
	content: '';
	flex-shrink: 0;
	position: absolute;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	background-color: var(--akcent);
	border-radius: 3px;
}

.list li::before{
	content: '';
	flex-shrink: 0;
	margin-top: 4px;
	align-self: flex-start;
	width: 16px;
	height: 16px;
	background-color: var(--akcent);
	border-radius: 3px;
}


@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.intro__delivery-block{
		width: 100%;
	}

	.intro-delivery .intro__bg {
    height: 500px;
	}

	.intro__text-section p {
    font-size: 18px;
	}
}

@media (max-width: 768px) {
	.intro__text-section {
    margin-top: 300px;
	}

	.intro-delivery .intro__bg {
		height: 800px;
	}

	.intro-delivery .intro__bg img, .intro-delivery .intro__bg source {
    object-position: bottom;
	}

	.intro__text-section p {
		font-size: 16px;
}
}

@media (max-width: 480px) {
	.intro__text-section {
    margin-top: 200px;
	}
	
	.intro .breadcrumbs h1 {
    margin-top: 10px;
	}

	.intro__text-section br{
		display: none;
	}

	.intro__text-section .mob-mini-tel{
		display: block;
	}

	.intro__delivery-block {
    border-radius: 15px;
    padding: 10px 24px;
		gap: 20px;
    min-height: 82px;
	}

	.intro__delivery-block-text {
    font-size: 14px;
    padding-left: 20px;
	}

	.intro-delivery .intro__body{
		padding-bottom: var(--section-margin);
	}

	.intro__delivery-block svg{
		max-width: 30px;
	}

	.intro-delivery .intro__bg {
		height: 500px;
	}

	.intro-delivery .intro__bg img, .intro-delivery .intro__bg source {
    object-position: bottom;
	}

}
/* ==================================== */

.security {
	padding: var(--section-margin) 0px;
}

.security__body {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.security__left {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.security__left p{
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
}

.security__left .h3, .security__left h3 {
	margin-bottom: 20px;
}
.security__swiper-section {
	position: relative;
	max-width: 395px;
	flex-shrink: 0;
	width: 100%;
}

.security__swiper-section::before{
	content: '';
	position: absolute;
	left: 0;
	top: 43px;
	width: 100%;
	border-radius: 32px;
	height: 315px;
	background: var(--kontent-belyy) url(../img/certificates/1.jpg) center / cover no-repeat;
	opacity: 0.2;
}

.security-swiper {
	width: 280px;
}
.security-slide {
	border-radius: 32px;
	height: 400px;
	overflow: hidden;
	background: var(--kontent-belyy) center / cover no-repeat;
}

.security-slide  img{
	width: 100%;
	height: 100%;
}

.security-swiper  .swiper-buttons {
	justify-content: center;
	margin-top: 25px;
	display: flex !important;
}

@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.security__swiper-section {
    max-width: 350px;
	}
}

@media (max-width: 768px) {
	.security__body{
		flex-direction: column;
	}

	.security__left p {
    font-size: 16px;
	}

	.security__swiper-section{
		margin-inline: auto;
	}
}

@media (max-width: 480px) {
	.security__swiper-section {
		max-width: 260px;
	}

	.security-swiper {
    width: 200px;
	}

	.security-slide {
    height: 285px;
	}

	.security__swiper-section::before {
    top: 35px;
    width: 100%;
    height: 214px;
	}

}
/* ==================================== */

.about-block {
	padding: var(--section-margin) 0px;
}

.about-block__body {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.about-block__left {
	max-width: 600px;
}

.about-block__image {
	max-width: 600px;
	border-radius: 32px;
	background: var(--kontent-belyy) center / cover no-repeat;
	width: 100%;
	height: 360px;
}
.about-block__left p{
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	padding-top: 10px;
	max-width: 525px;
}

.about-block-title {
	padding-top: var(--section-margin);
}

.about-block-title .h3, .about-block-title h3 {
	max-width: 976px;
}

.about-block-title  + .row{
	margin-top: -20px;
}

.about-block-sub-title{
	padding: 0px 0px var(--section-margin) 0px;
}

.about-block-sub-title span{
	max-width: 857px;
	border-left: 1px solid var(--akcent-laym);
	padding-left: 41px;
	display: flex;
	font-weight: 500;
	font-size: 24px;
	line-height: 140%;
	color: #fff;
}

.about-block-two {
	padding: var(--section-margin) 0px;
}
.about-block-two .wrapper {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.about-block-two__left {
	max-width: 598px;
	width: 100%;
}

.about-block-two p{
	font-weight: 400;
	font-size: 16px;
	max-width: 510px;
	margin-bottom: 30px;
	line-height: 140%;
	color: var(--kontent-belyy);
}

.about-block-two ul li{
	display: flex;
	gap: 25px;
	align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

.about-block-two ul{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-block-two ul li svg{
	flex-shrink: 0;
	align-self: flex-start;
}

.about-block-two__image{
	border-radius: 32px;
	max-width: 588px;
	width: 100%;
	max-height: 560px;
	background: center / cover no-repeat;
}

@media (max-width: 1260px) {
	.about-block__left {
    max-width: 500px;
	}

	.about-block-two__left {
    max-width: 431px;
	}
}

@media (max-width: 992px) {
	.about-block__left {
    max-width: 400px;
	}

	.about-block-sub-title span {
    max-width: 787px;
    font-size: 22px;
	}

	.about-block-two__left{
		max-width: 676px;
	}

	.about-block-two .wrapper {
		flex-direction: column;
	}

	.about-block-two__image{
		width: 100%;
		height: 420px;
		max-width: 100%;
	}

	.about-block__left p {
    padding-top: 0px;
	}

	.about-block__image {
    height: 300px;
		border-radius: 22px;
	}
}

@media (max-width: 768px) {
	.about-block__body{
		flex-direction: column;
	}


	.about-block-sub-title span {
    font-size: 20px;
	}

	.about-block__image{
		border-radius: 32px;
		max-width: 100%;
		height: 360px;
	}

	.about-block-title + .row {
    margin-top: -10px;
	}
}

@media (max-width: 480px) {
	.about-block-two__image{
		height: 320px;
	}

	.about-block-two ul li svg {
		max-width: 30px;
	}

	.about-block-two ul li {
    gap: 20px;
	}
}

/* ==================================== */

.blog {
	padding: var(--section-margin) 0px;
}

.home.blog{
	padding: 0px !important;
}

.blog__body {
	display: flex;
	gap: 20px;
	row-gap: 50px;
	flex-wrap: wrap;
}
.blog__block {
	display: flex;
	flex-direction: column;
	width: calc((100% - 40px) / 3);
}

.blog__block.d-block{
	display: flex;
}

.blog__image {
	width: 100%;
	/* background-color: #fff; */
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}

.blog__image {
	padding-top: 76%;
	margin-bottom: 30px;
}

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

.blog__block-title {
	font-weight: 500;
	font-size: 24px;
	padding-right: 30px;
	margin-bottom: 30px;
	line-height: 140%;
}
.blog__block-link {
	margin-top: auto;
	font-weight: 400;
	font-size: 14px;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--akcent-laym);
}

[data-show-el]{
	display: none;
}

.blog__bottom{
	margin-top: 50px;
}

.blog__bottom .button{
	width: 100%;
}

.warning-section span{
	color: var(--akcent);
}

@media (max-width: 1260px) {
	.blog__block-title {
    font-size: 22px;
    padding-right: 20px;
    margin-bottom: 20px;
	}
}

@media (max-width: 992px) {
	.blog__block-title {
    font-size: 20px;
	}

	.blog__image {
    margin-bottom: 20px;
}
}

@media (max-width: 768px) {
	.blog__block {
		width: calc((100% - 20px) / 2);
	}

	.warning-section br{
		display: none;
	}
}

@media (max-width: 480px) {
	.blog__block {
		width: 100%;
	}

	.blog__block-title{
		font-size: 24px;
	}
}

/* ==================================== */

.single {
	padding: 0px 0px var(--section-margin) 0px;
}

.single__blocks {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
	gap: 20px;
	row-gap: 30px;
}
.single__block {
	width: calc((100% - 20px) / 2);
}
.single__block-title {
	margin-bottom: 20px !important;
}

.single__block p{
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
}

.single__image-big {
	border-radius: 32px;
	width: 100%;
	margin-bottom: 50px;
	height: 415px;
	background: var(--kontent-belyy) center / cover no-repeat;
}
.single__block-sub-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 140%;
}

.single__quote {
	display: flex;
	margin-top: var(--section-margin);
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	gap: 40px;
}

.single__quote svg{
	flex-shrink: 0;
	align-self: flex-start;
}

.single__images {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.main .single h3, .main .single .h3{
	margin-bottom: 30px;
}

.main .single p:not(:last-child){
	margin-bottom: 30px;
}

.main .single .wp-block-columns:not(:first-child){
	margin-top: var(--section-margin);
}

.main .single .wp-block-image{
	border-radius: 32px;
	overflow: hidden;
}

.main .single .wp-block-image  img{
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

.main .single .wp-block-columns:not(:last-child){
	margin-bottom: var(--section-margin);
}

.single__image {
	width: calc((100% - 20px) / 2);
	height: 415px;
	border-radius: 32px;
	background: var(--kontent-belyy) center / cover no-repeat; 
}

@media (max-width: 768px) {
	.single__block{
		width: 100%;
	}

	.single{
		padding-top: var(--section-margin);
	}

	.single__quote svg{
		max-width: 90px;
	}

	.single__image{
		width: 100%;
	}
}

@media (max-width: 480px) {
	.single__blocks {
		margin-bottom: 30px;
	}

	.single__quote svg{
		max-width: 53px;
	}

	.main .single .wp-block-image{
		border-radius: 22px;
	}

	.single__quote {
		font-size: 16px;
		gap: 30px;
	}

	.single__image-big {
		margin-bottom: 30px;
	}

}

/* ==================================== */

.contacts {
	padding: var(--section-margin) 0px;
}

.contacts .wrapper{
	display: flex;
	gap: 20px;
}

.contacts__left {
	display: flex;
	flex-direction: column;
	gap: 50px;
	max-width: 392px;
	width: 100%;
}

[class*=ymaps][class*=-ground-pane] {
	filter: grayscale(1);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
}

.contacts__socials {
	gap: 30px;
}

.contacts__socials  a{
	width: 60px;
	height: 60px;
}

.contacts__block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.contacts__title {
	transition: 0.4s ease 0s;
	font-weight: 700;
	font-size: 30px;
	line-height: 110%;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.contacts__title:hover{
	color: var(--akcent-laym);
}

.contacts__link, a.contacts__link {
	font-weight: 400;
	font-size: 14px;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--akcent-laym);
}
.contacts__ip {
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	opacity: 0.8;
}
.contacts__map {
	max-width: 805px;
	border-radius: 30px;
	overflow: hidden;
	width: 100%;
	height: 555px;
}

@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.contacts__title {
		font-size: 26px;
	}

	.contacts__left{
		gap: 35px;
	}

	.contacts__map {
    height: 455px;
	}
}

@media (max-width: 768px) {
	.contacts .wrapper {
		flex-direction: column;
		gap: 40px;
		width: 100%;
	}

	.contacts{
		padding-bottom: 0px;
	}

	.contacts + .form-section{
		margin-top: -35px;
	}

	.contacts__map{
		border-radius: 0px;
		height: 535px;
	}

	.contacts__left{
		max-width: 100%;
		align-items: center;
		text-align: center;
		gap: 50px;
		width: 100%;
		padding: 0px 15px;
	}

	.contacts__block{
		align-items: center;
	}

	.contacts__title{
		font-size: 25px;
	}

	.contacts__ip{
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.contacts + .form-section{
		margin-top: -25px;
	}
}

/* ==================================== */
.politika {
	padding: var(--section-margin) 0px;
}



.politika h3, .politika .h3{
	margin-bottom: 20px;
	padding-top: 20px;
}

.politika__block p{
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
}

.politika p:not(:last-child) {
	margin-bottom: 30px;
}

@media (max-width: 1260px) {}

@media (max-width: 992px) {
	.politika__block p{
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.politika__block p{
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.politika__block p{
		font-size: 14px;
	}

	.politika p:not(:last-child) {
		margin-bottom: 15px;
	}
}

/* ==================================== */

.intro-spasibo {
	padding-top: var(--section-margin);
	padding-bottom: var(--section-margin);
}

.intro-spasibo h1{
	text-align: center;
	max-width: 100%;
	margin-bottom: 60px;
}

.intro-spasibo__body {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.intro-spasibo__sub-title {
	font-weight: 400;
	max-width: 783px;
	font-size: 20px;
	line-height: 140%;
	text-align: center;
	margin-bottom: 30px;
}
.intro-spasibo .intro__buttons {
	margin-bottom: 60px;
}

.intro-spasibo__tel {
	font-weight: 700;
	font-size: 40px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: var(--kontent-belyy);
}

.intro-spasibo__tel  a{
	transition: 0.4s ease 0s;
}

.intro-spasibo__tel  a:hover{
	color: var(--akcent-laym);
}

.intro-spasibo_v2 h1{
	font-size: 100px;
}

@media (max-width: 1260px) {
	.intro-spasibo_v2 h1{
		font-size: 80px;
	}
}

@media (max-width: 992px) {
	.intro-spasibo_v2 h1{
		font-size: 50px;
	}
}

@media (max-width: 768px) {
	.intro-spasibo__sub-title {
    font-size: 18px;
    margin-bottom: 20px;
		max-width: 320px;
	}

	.intro-spasibo_v2 h1{
		font-size: 35px;
	}

	.intro-spasibo h1 {
    margin-bottom: 40px;
	}

	.intro-spasibo .intro__buttons {
    margin-bottom: 45px;
	}

	.intro-spasibo__tel {
    font-size: 30px;
	}
}

@media (max-width: 480px) {
	.intro-spasibo__sub-title {
    font-size: 16px;
	}

	.intro-spasibo_v2 h1{
		font-size: 28px;
	}

	.intro-spasibo .intro__buttons {
    margin-bottom: 30px;
}

	.intro-spasibo h1 {
    margin-bottom: 20px;
	}

	.intro-spasibo__tel {
    font-size: 20px;
	}
}
/* ==================================== */

@media (max-width: 1260px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 480px) {}

/* ==================================== */

.tabs-content{
	display: none;
}

.d-block{
	display: block;
}

.none{
	display: none;
}

[class*="copyrights-pane"]{
	display: none !important;
}
