@import url(https://fonts.googleapis.com/css?family=Raleway:700);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

:root{
	--theme-color: var(--fecd2a);
	--text-color: var(--v1-ffffff);
	--background-color: var(--v1-000000);
	accent-color: var(--theme-color);
	--wrapper-size: 1170px;
	--wrapper-padding: 15px;
	--section-margin: 60px;
	--fecd2a: #fecd2a;
	--ff5e03: #ff5e03;
	--2c94df: #2c94df;
	--v1-000000: #000;
	--v1-212121: #212121;
	--v1-757575: #757575;
	--v1-f4f4f8: #f4f4f8;
	--v1-ffffff: #fff;
	--v1-00ffa3: #00ffa3;
	--d922c1: #d922c1;
	--020615: #020615;
}

html{
	height: 100%;
	/* scrollbar-gutter: stable; */
	scroll-behavior: smooth;
}

body{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	font-family: 'Montserrat', 'sans-serif';
	min-width: 320px;
	background-color: var(--background-color);
	color: var(--text-color);
}

body::-webkit-scrollbar{
	width: 8px;
}

::selection{
	background-color: #cfbb00;
	color: #FFF;
}

body::-webkit-scrollbar-thumb{
	background-color: var(--theme-color);
}

@media (min-width: 993px) {
	body.scroll-lock, body.menu-open{
		padding-right: 8px;
	}
}

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;
}

.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;
	background: #FFF;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: auto;
	margin-bottom: auto;
	opacity: 0;
	padding: 60px 50px;
	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: 35px;
	height: 35px;
	z-index: 12;
	cursor: pointer;
}

.modal-close{
	position: absolute;
	right: 5px;
	top: 5px;
	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(--theme-color);
	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;
	color: var(--020615);
	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: 10px 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.drop-menu ul a{
	border-bottom: none !important;
}

.drop-menu span{
	position: relative;
	transition: 0.2s ease 0s;
	cursor: pointer;
	margin-right: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.drop-menu span::after{
	content: '';
	height: 4px;
	background: url(../img/icons/arrow.svg) center / contain no-repeat;
	position: absolute;
	width: 7px;
	left: calc(100% + 8px);
	transition: 0.2s ease 0s;
	top: 6px;
}

.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: 1230px) {
	:root{
		--wrapper-size: 992px;
	}
}

@media (max-width: 992px) {
	:root{
		--wrapper-size: 828px;
		--section-margin: 50px;
	}

	.wrapper-padding.scroll-table{
		overflow: auto;
		scroll-snap-type: x mandatory;
	}

	.wrapper-padding.scroll-table .scroll-el{
		scroll-snap-align: center;
	}
}

@media (max-width: 768px) {
	.mob-tel{
		display: block;
	}

	.burger-menu__nav{
		padding-top: 60px;
	}

	.burger-menu__nav ul{
		display: flex;
		flex-direction: column;
		gap: 30px;
		font-size: 22px;
	}

	.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: 45px;
	}

	.burger-menu{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color: var(--background-color);
		z-index: 200;
		overflow: auto;
		padding: 20px 0px;
		transition: 0.8s ease 0s;
		translate: 100% 0%;
	}

	body.menu-open .burger-menu{
		translate: 0px 0px;
	}

	.burger-menu::-webkit-scrollbar{
		display: none;
	}

	.burger-menu__top{
		display: flex;
		gap: 5px;
		justify-content: space-between;
		align-items: center;
	}
	
.burger-menu__logo {
	max-width: 91px;
}

	.menu-burger{
		display: flex;
		position: relative;
		align-self: center;
		border-radius: 6px;
		background-color: #ffe500;
		width: 44px;
		height: 44px;
		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: 24px;
		height: 2px;
		background-color:var(--v1-000000);
		border-radius: 2px;
	}
	
	.menu-burger::before{
		top: 14px;
	}
	
	.menu-burger::after{
		bottom: 13px;
		width: 13px;
		left: 10px;
		translate: 0% 0%;
	}
	
	.menu-burger span {
		top: calc(50% - 1px);
	}

	body.menu-open 	.menu-burger::after{
		width: 24px;
	}
	
	body.menu-open .menu-burger span{
		transform: scale(0);
	}
	
	body.menu-open .menu-burger::before{
		transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	
	body.menu-open .menu-burger::after{
		transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}

@media (max-width: 480px) {
	.mob-mini-tel{
		display: block;
	}

	.burger-menu__nav ul{
		gap: 20px;
		font-size: 18px;
	}

	.burger-menu{
		padding: 8px 0px;
	}

	:root{
		--wrapper-size: 350px;
		--wrapper-padding: 10px;
		--section-margin: 35px;
	}
}

/* ==================================== */

.header {
	background: var(--v1-000000);
	padding: 10px 0px;
}

.header__body {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}
.header__logo {
	max-width: 127px;
}

.header__nav {
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: var(--v1-ffffff);
}

.header__nav ul{
	display: flex;
	gap: 20px;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: var(--v1-ffffff);
}

.header__nav ul a{
	transition: 0.3s ease 0s;
}

.header__nav ul a:hover{
	color: #ffe500;
}

.tel a{
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.05em;
	transition: 0.3s ease 0s;
	text-align: center;
	color: var(--v1-ffffff) !important;
}

.tel a:hover{
	color: #ffe500 !important;
}

.tel a span{
	color: #ffe500 !important;
}

.header-delivery {
	padding: 20px 20px 20px 35px;
	position: relative;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid var(--v1-212121);
	border-radius: 10px;
	text-align: center;
	color: var(--v1-ffffff);
}

.header-delivery svg{
	position: absolute;
	left: 0;
	background-color: var(--020615);
	translate: -50% -50%;
	top: 50%;
}

.tel__bottom{
	display: none;
}

@media (max-width: 1230px) {
	.tel a{
    font-size: 20px;
	}

	.tel__bottom{
		display: block;
		font-weight: 500;
		font-size: 12px;
		text-align: right;
		color: var(--v1-ffffff);
	}
	

	.header__nav ul {
    gap: 20px;
    font-size: 14px;
	}

	.header__delivery{
		display: none;
	}

	.header {
    padding: 20px 0px;
	}
}

@media (max-width: 992px) {

	.header__logo {
    max-width: 104px;
	}

	.tel a{
		font-size: 18px;
	}

	.header__body {
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.header__nav{
		display: none;
	}

	.header {
		background: var(--020615);
	}

	.tel a{
		color: #ffe500 !important;
	}

	.header__logo {
		max-width: 91px;
	}
}

@media (max-width: 480px) {
	.header__body {
		gap: 5px;
	}

	.header {
		padding: 8px 0px;
}
}

@media (max-width: 350px) {
	.tel a {
		font-size: 16px;
	}

	.tel__bottom {
		font-size: 10px;
	}
}

/* ==================================== */

.intro {
	z-index: 20;
	padding-top: 8px;
	padding-bottom: 60px;
	position: relative;
}

.intro::after{
	content: '';
	width: 100%;
	height: 60px;
	position: absolute;
	bottom: 0;
	z-index: 3;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.intro__bg-section{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.intro__bg {
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -5;
	height: 100%;
}

.intro__bg img, .intro__bg source{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1{
	font-style: italic;
	font-weight: 800;
	font-size: 136px;
	line-height: 130%;
	position: relative;
	z-index: 1;
	margin-bottom: 56px;
	text-transform: uppercase;
	text-align: center;
	opacity: 0;
	animation-delay: 0.2s !important;
	color: var(--v1-ffffff);
}


h1::before{
	content: '';
	width: 295px;
	position: absolute;
	left: 50%;
	top: 50%;
	transition: 0.4s ease 0s;
	translate: -104% -13%;
	height: 295px;
	background: url(../img/intro/timer.png) center / contain no-repeat;
}


.intro__bg-section{
	pointer-events: none;
}


.intro__left {
	max-width: 408px;
}
.intro__sub-title {
	font-style: italic;
	font-weight: 400;
	font-size: 53px;
	position: relative;
	line-height: 130%;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--v1-ffffff);
}

.intro__sub-title::before{
	content: '';
	position: absolute;
	left: 100%;
	top: 75%;
	pointer-events: none;
	width: 18px;
	translate: -100% 0%;
	height: 77px;
	background: url(../img/intro/arrow.svg) center / cover no-repeat;
}

.intro__sub-title  span{
	font-style:normal;
	font-weight: 700;
	color: #ffe500;
}

.intro .button{
	max-width: 370px;
}

.button, a.button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	text-transform: uppercase;
	text-align: center;
	min-height: 100px;
	transition: 0.3s ease 0s;
	background: #ffe500;
	border-radius: 6px;
	color: var(--v1-000000) !important;
}

.button:hover{
	background: #cfbb00;
}

.intro__bottom {
	margin-top: 44px;
	position: relative;
	z-index: 5;
	display: flex;
	gap: 50px;
	padding: 13px 44px 45px 44px;
}
/* 
.intro__bottom::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	height: 220px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 10px;
} */

.intro__bottom-bg{
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
	height: 220px;
	z-index: 4;
}


.intro__bg-body{
	background: rgba(0, 0, 0, 0.8);
	border-radius: 10px;
	height: 220px;
	width: 100%;
}

.intro__bottom-block {
	font-weight: 400;
	color: var(--v1-ffffff);
	position: relative;
	z-index: 10;
	font-size: 18px;
	line-height: 160%;
}

.intro__bottom-block  span{
	font-weight: 700;
	color: #ffe500;
}

.intro__bottom-block:nth-child(1){
	max-width: 256px;
	width: 100%;
}
.intro__bottom-block:nth-child(2){
	max-width: 294px;
	width: 100%;
}

.intro__bottom-block:nth-child(2) img{
	width: auto;
}

.intro__bottom-block img{
	width: 160px;
	height: 160px;
}

.intro__obj {
	position: absolute;
	left: 50%;
	z-index: 2;
	bottom: 0;
	translate: -14% 0%;
}
.intro__human {
	position: relative;
	min-width: 917px;
	z-index: -2;
}

.intro{
	margin-bottom: 60px;
}

.intro__balon-wrapper{
	width: 100%;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 120px;
	z-index: 4;
}

.intro__balon {
	position: relative;
	left: 50%;
	bottom: 0px;
	translate: 28% 0%;
	z-index: 4;
}


@media (max-width: 1230px) {
	h1 {
    font-size: 106px;
    margin-bottom: 36px;
	}


	.intro__sub-title::before{
		translate: 100% 0%;
	}
	

	.intro__sub-title {
    font-size: 43px;
	}

	.intro__left {
    max-width: 310px;
	}

	h1::before {
    width: 200px;
    height: 200px;
	}

	.intro__bottom {
    margin-top: 34px;
    gap: 30px;
    padding: 13px 24px 45px 24px;
	}

	.intro__human {
    min-width: 787px;
	}

	.intro__balon {
		max-width: 560px;
	}

	.intro__balon-wrapper{
		top: 80px;
	}
}

@media (max-width: 992px) {
	h1 {
		font-size: 86px;
		margin-bottom: 50px;
	}

	.intro__bottom-block img {
    width: 140px;
    height: 140px;
	}

	.intro__bottom {
		padding: 13px 14px 35px 14px;
	}

	.intro__bottom-bg {
    height: 185px;
	}

	.intro__bg-body {
		height: 185px;
	}

	.intro__bottom-block br{
		display: none;
	}

	.intro__bottom-block:nth-child(3){
		max-width: 300px;
	}

	h1::before {
		width: 150px;
		height: 150px;
		translate: -120% -5%;
	}

	.intro__bottom-block{
		font-size: 16px;
	}

	.intro__bottom-block:nth-child(1) {
    max-width: 215px;
	}

	.intro__bottom{
		gap: 10px;
	}

	.intro__bottom-block:nth-child(2) {
    max-width: 252px;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 69px;
		margin-bottom: 80px;
	}

	.intro__sub-title::before{
		display: none;
		}
	
		.intro .button {
			max-width: 100%;
	}

	.intro__bg {
    height: 905px;
}

	.intro__left{
		max-width: 100%;
	}

	.intro__bottom{
		flex-direction: column;
	}

	.intro__bottom-bg{
		display: none;
	}

	.intro__obj{
		bottom: auto;
		top: 295px;
		min-width: 547px;
		z-index: -1;
		width: 547px;
		translate: -40% 0%;
	}

	.intro::after {
		display: none;
	}

	.intro__bg::after{
		content: '';
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    z-index: 3;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
	}

	.intro__balon-wrapper {
    bottom: auto;
		top: 367px;
    z-index: 4;
	}

	.intro__balon{
    translate: -5% 0%;
		max-width: 340px;
	}

	.intro__human{
		min-width: 0px;
	}

	.intro {
    padding-top: 20px;
    padding-bottom: 0px;
	}

	.intro__sub-title{
		font-size: 30px;
		text-align: center;
		margin-bottom: 487px;
	}

	h1::before {
		width: 130px;
		height: 130px;
		translate: -50% 25%;
	}

	.intro__bottom{
		padding: 0px;
		margin-top: 40px;
	}

	.intro__bottom-block{
		max-width: 400px !important;
		width: 100%;
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.intro__bottom-block:nth-child(1) span{
		display: block;
	}

	.intro__bottom-block:nth-child(2){
		display: flex;
		max-width: 100% !important;
		flex-direction: row-reverse;
		text-align: right;
	}

	.intro__bottom-block:nth-child(2) div{
		max-width: 210px;
	}

	.intro__bottom-block:nth-child(3) span{
		display: block;
	}

	.intro__bottom-block img {
		width: 110px;
		height: 110px;
}
}

@media (max-width: 480px) {
	.intro__bottom-block img {
		width: 90px;
		height: 90px;
}

	h1 {
		font-size: 49px;
		margin-bottom: 50px;
	}

	h1::before {
		width: 96px;
		height: 96px;
		translate: -50% 22%;
	}

	.intro__sub-title{
		font-size: 20px;
		margin-bottom: 287px;
	}

	.intro__bg {
		height: 550px;
	}

	.button, a.button {
    font-size: 16px;
    min-height: 70px;
	}

	.intro__obj {
		top: 207px;
		min-width: 327px;
		width: 327px;
		translate: -40% 0%;
	}

	.intro__balon-wrapper{
		top: 237px;
	}

	.intro__balon {
		translate: -5% 0%;
		max-width: 210px;
	}
}


/* ==================================== */

.intro-bottom {
	padding: 60px 0px;
	overflow: hidden;
	
}

.intro-bottom  .wrapper{
	display: flex;
	gap: 42px;
	flex-wrap: wrap;
}

.intro-bottom__block {
	position: relative;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	width: calc((100% - 42px) / 2);
}

.intro-bottom__block::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	transform: skew(-5deg);
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23FECD2AFF' stroke-width='2' stroke-dasharray='6%2c 6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.intro-bottom__block img{
	position: absolute;
	right: 50%;
	z-index: -1;
	bottom: 50%;
	pointer-events: none;
	translate: 12% 50%;
}

.intro-bottom__block:nth-child(1) img{
	translate: 10% 50%;
}

.intro-bottom__block-right {
	max-width: 280px;
	margin-left: auto;
}

.intro-bottom__block-right span{
	font-weight: 700;
	font-size: 52px;
	line-height: 130%;
	text-transform: uppercase;
	color: #ffe500;
}

.intro-bottom__block-text {
	font-style: italic;
	font-size: 36px;
	line-height: 130%;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: var(--v1-ffffff);
}

.intro-bottom__block-text b{
	font-weight: 700;
	font-style: normal;
}

@media (max-width: 1230px) {
	.intro-bottom {
    padding: 50px 0px;
	}

	.intro-bottom__block-right {
    max-width: 245px;
	}
}

@media (max-width: 992px) {
	.intro-bottom__block-text {
    font-size: 28px;
	}

	.intro-bottom__block-right span {
    font-size: 42px;
	}

	.intro-bottom__block {
		min-height: 240px;
	}

	.intro-bottom__block-right {
		max-width: 205px;
	}
}

@media (max-width: 768px) {
	.intro-bottom__block{
		width: 100%;
	}

	.intro-bottom .wrapper {
    gap: 50px;
	}

	.intro-bottom {
		padding: 20px 0px;
	}

	.intro-bottom__block:nth-child(1) img {
    translate: 20% 50%;
	}

	.intro {
    margin-bottom: 40px;
}

	.intro-bottom__block img {
    translate: 15% 50%;
	}
}

@media (max-width: 480px) {
	.intro {
    margin-bottom: 30px;
	}

	.intro-bottom__block{
		padding: 285px 25px 25px 25px;
	}

	.intro-bottom__block-right{
		max-width: 100%;
		margin-left: 0px;
		text-align: center;
	}

	.intro-bottom__block::before {
    transform: skew(-1deg);
	}

	.intro-bottom__block-right span {
		font-size: 52px;
	}

	.intro-bottom__block img {
		translate: 50% 32% !important;
		max-width: 100%;
		min-width: 440px;
	}

	.intro-bottom .wrapper {
		gap: 40px;
	}

	.intro-bottom__block-text {
		font-size: 28px;
		max-width: 221px;
}
}

/* ==================================== */

.catalog {
	padding: 80px 0px 40px 0px;
}
.catalog-top {
	position: relative;
	padding: 80px 0px;
	margin: -80px 0px;
	overflow: hidden;
}

.catalog-top__left {
	max-width: 796px;
}
.title {
	font-style: italic;
	font-weight: 800;
	font-size: 44px;
	line-height: 140%;
	margin-bottom: 30px;
	text-transform: uppercase;
	color: var(--v1-ffffff);
}

.title span{
	font-style: normal;
	color: #ffe500;
}

.catalog-top__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: var(--v1-ffffff);
}

.catalog-top__text  b{
	font-weight: 700;

}

.catalog-top__text p:not(:last-child){
	margin-bottom: 15px;
}

.catalog-top__text span{
	font-weight: 700;
	color: #ffe500;
}

.catalog-top__image {
	position: absolute;
	left: 50%;
	bottom: 50%;
	min-width: 476px;
	translate: 30% 45%;
	z-index: -1;
}

.catalog-main {
	margin-top: 80px;
}

.catalog__body {
	display: flex;
	flex-wrap: wrap;
}
.card {
	position: relative;
	overflow: hidden;
	z-index: 2;
	padding: 22px 30px 30px 30px;
	border: 1px solid var(--v1-212121);
	border-radius: 20px;
	width: calc(100% / 4);
	min-height: 540px;
	display: flex;
	flex-direction: column;
}
.card__title {
	font-weight: 700;
	font-size: 20px;
	max-width: 150px;
	line-height: 140%;
	color: var(--v1-ffffff);
}

.card__title span{
	display: block;
	color: var(--theme-color);
}

.card__balon {
	position: absolute;
	width: 230px;
	height: 290px;
	pointer-events: none;
	left: 50%;
	translate: -18% 0%;
	top: 0px;
	z-index: 1;
}

.catalog_v2 .card__balon::after {
	content: '';
	width: 15px;
	left: 50%;
	bottom: 0;
	height: 55px;
	position: absolute;
	translate: 220% 35%;
	background: url(../img/intro/arrow.svg) center / contain no-repeat;

}

.catalog_v2 .catalog-top{
	padding: 0px;
	margin: 0px;
}

.catalog_v2 .title{
	margin-bottom: 0px;
}

.catalog_v2.catalog{
	padding: 40px 0px;
}

.catalog_v2 .catalog-main {
	margin-top: 60px;
}

.card__balon::before{
	content: '';
	background: url(../img/catalog/blur.png) center / contain no-repeat;
	position: absolute;
	left: 50%;
	translate: -70% -5%;
	width: 294px;
	z-index: -1;
	height: 540px;
	top: 0;

}

.card__bottom {
	position: relative;
	z-index: 5;
	margin-top: auto;
}
.card__price-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.card__price-section:not(:last-child){
	margin-bottom: 14px;
}

.card__price-body span{
	font-weight: 700;
	font-size: 24px;
	font-style: normal;
	line-height: 140%;
	color: #ffe500;
}

.card__price-body{
	font-style: italic;
	display: flex;
	flex-direction: column;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: var(--v1-ffffff);
}


.card__kg {
	font-weight: 700;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	padding: 8px;
	border-radius: 6px;
	padding: 8px 16px;
	color: var(--020615);
	background: rgba(255, 255, 255, 0.2);
}
.card__buttons {
	display: flex;
	margin-top: 30px;
	gap: 10px;
	flex-direction: column;
}


.card__buttons .button {
	min-height: 60px;
	font-size: 16px;
}
.button2, a.button2 {
	border: 2px solid #ffe500;
	border-radius: 6px;
	border-radius: 6px;
	min-height: 60px;
	font-weight: 700;
	transition: 0.3s ease 0s;
	font-size: 16px;
	line-height: 140%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	text-align: center;
	color: var(--v1-ffffff);
	background: var(--v1-000000);
}

.button2:hover{
	background: #ffe500;
	color: var(--v1-000000);
}


.card__balon img {
	max-width: 190px;
}

.card_v2{
	min-height: 430px;
}

.card_v2 .card__title span{
	font-weight: 700;
	font-size: 112px;
	line-height: 90%;
	color: var(--v1-ffffff);
}

.card__big-price{
	font-weight: 700;
	font-size: 56px;
	line-height: 80%;
	color: #ffe500;
}

.card_v2 .card__buttons{
	margin-top: 0px;
}

.card_v2 .card__balon {

	translate: -20% 0%;
}

@media (max-width: 1230px) {
	.title {
		font-size: 40px;
	}

	.catalog-top__left {
    max-width: 726px;
	}

	.catalog_v2 .card__balon::after {
		translate: 122% -17%;

	}
	

	.card_v2 .card__title span {
    font-size: 92px;
	}

	.card__big-price {
    font-size: 50px;
	}

	.card__balon img{
		max-width: 160px;
	}

	.card__balon {
    translate: -14% 0%;
    top: 16px;
	}

	.card {
    padding: 18px 20px 30px 20px;
	}
}

@media (max-width: 992px) {
	.title {
		font-size: 36px;
	}

	
	.card {
    width: calc(100% / 3);
	}

	.catalog-top__left {
    max-width: 646px;
	}

	.catalog-top__text {
		max-width: 646px;
	}

	.catalog-top__image {
    min-width: 376px;
		width: 376px;
		translate: 40% 45%;
	}	

	.catalog-top {
    padding: 50px 0px;
    margin: -50px 0px;
	}
}

@media (max-width: 768px) {
	.title {
		font-size: 32px;
	}

	.catalog_v2 .catalog-top .title {
		margin-bottom: 0px;
	}

	.catalog_v2 .catalog-main {
    margin-top: 42px;
	}

	.card__big-price {
    font-size: 44px;
	}

	.card {
    width: calc(100% / 2);
	}

	.catalog-top__left{
		max-width: 100%;
	}

	.title{
		text-align: center;
	}

	.catalog-top .title{
		margin-bottom: 385px;
	}

	.catalog-top__text{
		max-width: 100%;
	}

	.catalog-top__text br{
		display: none;
	}

	.catalog-top__image {
		min-width: 476px;
		bottom: auto;
		top: 50px;
		width: 476px;
		translate: -55% 0%;
	}

	.catalog-top {
		padding: 0px 0px;
		margin: 0px;
		margin-bottom: 30px;
	}

	.catalog {
    padding: 50px 0px 40px 0px;
	}
}

@media (max-width: 480px) {
	.title {
		font-size: 28px;
	}

	.catalog_v2 .card__balon::after {
		translate: 285% 40%;
	}

	.catalog_v2.catalog {
    padding: 30px 0px;
	}

	.card_v2 .card__title span {
		font-size: 112px;
	}

	.card_v2 .card__balon {
		translate: -13% -8%;
	}

	.card__balon {
		translate: -12% 0%;
	}


	.card__big-price {
    font-size: 60px;
	}

	.card {
    width: 100%;
	}

	.card__balon img {
		max-width: 190px;
	}

	.catalog-top__image {
		top: 70px;
	}

	.catalog {
    padding: 30px 0px 40px 0px;
	}
}

@media (max-width: 350px) {
	.title {
		font-size: 26px;
	}
}
/* ==================================== */

.telegram-section {
	overflow: hidden;
	padding: 40px 0px 40px 0px;
	margin: 30px 0px;
}
.telegram-section__body {
	position: relative;
	padding: 45px 0px 80px 0px;
	z-index: 2;
	background: var(--v1-ffffff);
	padding-top: 40px;
	z-index: 2;
}

.telegram-section__body::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #ffe500;
	z-index: -2;
}

.telegram-section__body .wrapper {
	display: flex;
	justify-content: space-between;
	
}

.telegram-section__block {
	min-height: 240px;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.telegram-section__num {
	font-weight: 800;
	font-size: 36px;
	line-height: 140%;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--v1-000000);
	text-align: center;
}
.telegram-section__text{
	font-size: 24px;
	margin-bottom: auto;
	line-height: 140%;
	color: var(--v1-000000);
	max-width: 385px;
	text-transform: uppercase;
	text-align: center;
}
.telegram-section__text span{
	font-style: italic;
	font-weight: 800;
}
.telegram-section__block .button {
	min-height: 60px;
	font-size: 16px;
	width: 100%;
	max-width: 234px;
}
.telegram-section__obj {
	position: absolute;
	left: 50%;
	bottom: 0;
	translate: -50% 0%;
	z-index: -1;
}

.button3, a.button3 {
	background: var(--v1-000000);
	border-radius: 6px;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	transition: 0.3s ease 0s;
	text-transform: uppercase;
	text-align: center;
	color: var(--v1-ffffff);
	min-height: 60px;
	max-width: 234px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.button3:hover{
	background-color: #fff;
	color: var(--020615);
}


h1.animate__{
	opacity: 0;
}


.intro__obj {
	animation-delay: 1s !important;
	opacity: 0;
	animation-duration: 1s;
}

.animate__, .animate__animated{
	animation-fill-mode: forwards !important;
}

.intro__balon {
	opacity: 0;
	animation-duration: 1s;
	animation-delay: 1.4s !important;
}

.intro__left{
	opacity: 0;
	animation-delay: 0.6s !important;
}

.intro__bottom-bg{
	opacity: 0;
	animation-delay: 0.3s !important;
}

.politika{
	padding: 60px 0px;
}

h3{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}

.politika p:not(:last-child){
	margin-bottom: 10px;
}

.politika__row:not(:last-child){
	margin-bottom: 15px;
}

.politika__bottom{
	margin-top: 40px;
}

.politika__bottom .button{
	min-height: 70px;
	display: inline-flex;
	font-size: 16px;
	padding: 10px 20px;
}

.politika h1{
	opacity: 1;
	font-style: normal;
	text-align: left;
}

.politika h1::before{
	display: none;
}

.intro__bottom-block{
	opacity: 0;
}

.intro__bottom-block:nth-child(1){
	animation-delay: 0.4s !important;
}
.intro__bottom-block:nth-child(2){
	animation-delay: 0.6s !important;
}
.intro__bottom-block:nth-child(3){
	animation-delay: 0.8s !important;
}

@keyframes fadeInUp {
	0% {
			opacity: 0;
			-webkit-transform: translate3d(0,20%,0);
			transform: translate3d(0,20%,0)
	}

	to {
			opacity: 1;
			-webkit-transform: translateZ(0);
			transform: translateZ(0)
	}
}

@keyframes fadeInRight {
	0% {
			opacity: 0;
			-webkit-transform: translate3d(20%,0,0);
			transform: translate3d(20%,0,0)
	}

	to {
			opacity: 1;
			-webkit-transform: translateZ(0);
			transform: translateZ(0)
	}
}

@media (max-width: 992px) {
	.telegram-section__text {
    font-size: 20px;
    max-width: 325px;
	}

	.telegram-section__block {
    min-height: 200px;
	}

	.telegram-section__num {
    font-size: 28px;
    margin-bottom: 10px;
	}

	.telegram-section__obj{
		max-width: 350px;
	}
}

@media (max-width: 768px) {
	.telegram-section__body .wrapper {
		flex-direction: column;
	}

	.telegram-section__body{
		padding: 0px 0px;
	}

	.politika {
    padding: 40px 0px;
	}

	.telegram-section__left{
		padding: 45px 0px 65px 0px;
	}

	.telegram-section__right{
		padding: 44px 0px 440px 0px;
	}

	.telegram-section__obj {
		max-width: 380px;
		min-width: 380px;
	}

	.telegram-section__body::after {
		width: 100%;
		height: 69.6%;
		top: auto;
		bottom: 0;
	}

	.telegram-section {
    padding: 0px 0px 0px 0px;
    margin: 35px 0px;
	}

	.telegram-section__text{
		margin-bottom: 25px;
	}

	.telegram-section__text {
		font-size: 24px;
	}

	.telegram-section__num {
		font-size: 36px;
		margin-bottom: 6px;
	}

}

@media (max-width: 480px) {
	.telegram-section__right{
		padding: 44px 0px 340px 0px;
		
	}

	.politika {
    padding: 30px 0px;
}

	.politika h1{
		font-size: 20px;
	}
	
	h3 {
    font-size: 18px;
	}

	.politika p{
		font-size: 14px;
	}

	.telegram-section__body::after {
		height: 66.6%;
	}

	.telegram-section__obj {
		max-width: 320px;
		min-width: 320px;
}
}

/* ==================================== */

.rating-area {
	display: flex;
	flex-direction: row-reverse;
	overflow: hidden;
	gap: 5px;
	pointer-events: none;
}

.star-checked{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.rating-area label{
	position: relative;
	width: 14px;
	height: 14px;
}

.rating-area:not(:checked) > input {
	display: none;
}

.rating-area:not(:checked) > label {
	float: right;
	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;
}

.reviews {
	overflow: hidden;
	padding: 50px 0px;
}

.reviews__top {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 60px;
}

.reviews .title{
	margin-bottom: 0px;
}

.reviews-swiper {
	overflow: visible;
}

.reviews-slide {
	padding: 30px;
	position: relative;
	background: var(--v1-ffffff);
	display: flex;
	flex-direction: column;
	color: var(--v1-000000);
	border-radius: 40px;
	width: calc((100% - 20px) / 3);
}
.reviews-slide__top {
	padding-right: 80px;
	font-weight: 700;
	font-size: 20px;
	line-height: 160%;
	color: var(--v1-000000);
	margin-bottom: 33px;
}


.reviews-slide__top svg{
	position: absolute;
	right: 10px;
	top: 10px;
	color: #ffe500;
}

.reviews-slide__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	color: var(--v1-000000);
	margin-bottom: 50px;
}
.reviews-slide__bottom {
	margin-top: auto;
	display: flex;
	gap: 20px;
	align-items: center;
}
.reviews-slide__logo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
}

.reviews__buttons{
	display: flex;
	gap: 10px;
}

.swiper-button-next, .swiper-button-prev{
	position: static;
	width: 60px;
	height: 60px;
	translate: 0px 0px;
	background-color: #ffe500;
	border-radius: 50%;
	display: flex;
	align-items: center;
	transition: 0.2s ease 0s;
	color:  var(--v1-000000);
	justify-content: center;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
	background-color: #cfbb00;

}

.reviews__footer {
	margin-top: 60px;
}
.reviews__footer  .button {
	min-height: 80px;
	font-size: 16px;
}

@media (max-width: 1230px) {
	.reviews-slide {
    padding: 30px 25px;
	}
}

@media (max-width: 992px) {
	.reviews-slide {
		width: calc((100% - 10px) / 2);
	}
}

@media (max-width: 768px) {
	.reviews-slide__top svg {
		width: 51px;
		height: 51px;
	}

	.reviews-slide__top {
    padding-right: 50px;
		font-size: 16px;
	}

	.reviews__buttons{
		display: none;
	}

	.reviews__top{
		justify-content: center;
	}

	.reviews-slide {
		border-radius: 29px;
		width: calc((100% - 10px) / 1.1);
	}

	.reviews-slide__text {
    font-size: 14px;
    margin-bottom: 35px;
	}
}

@media (max-width: 480px) {
	.reviews-slide {
		padding: 21px;
	}

	
	.reviews-slide__text {
    font-size: 11px;
	}

	.reviews-slide__top {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.reviews__top {
    margin-bottom: 45px;
	}

	.reviews__footer {
    margin-top: 40px;
	}
	
	.reviews__footer .button {
    min-height: 60px;
	}

	.reviews {
    padding: 25px 0px;
	}

	.reviews-slide__logo {
    width: 32px;
    height: 32px;
	}

	.reviews-slide__bottom{
		gap: 15px;
	}

	.rating-area label {
    position: relative;
    width: 11px;
    height: 12px;
	}
}

/* ==================================== */

.accordion{
	padding: 60px 0px;
}

.accordion__body {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-top: 20px;
	row-gap: 10px;
	column-gap: 30px;
}

.accordion__tab {
	border: 2px solid var(--v1-212121);
	padding: 0px 80px 0px 30px;
	display: flex;
	position: relative;
	flex-direction: column;
	cursor: pointer;
	width: calc((100% - 30px) / 2);
}


.accordion__tab-top {
	gap: 20px;
	display: flex;
	min-height: 80px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 130%;
	color: var(--v1-ffffff);
	align-items: center;
}

.accordion__tab-arrow{
	margin-left: auto;
	position: absolute;
	transition: 0.2s ease 0s;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFE500;
	right: 0;
	top: 0;
	height: 100%;
	flex-shrink: 0;
	background: var(--v1-212121);
}

.accordion-active .tabs__tab-arrow {
	transform: rotate(180deg);
}

.accordion__tab-title {
	max-width: 660px;
}

.accordion__tab-body {
	padding-bottom: 20px;
}

.accordion__tab-arrow svg{
	transition: 0.2s ease 0s;
}

.accordion__tab.accordion-active .accordion__tab-arrow{
	background-color: #FFE500;
	color: var(--020615);
}

.accordion__tab.accordion-active .accordion__tab-arrow svg{
	transform: rotateX(180deg);
}

.accordion__tab-text{
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	color: var(--v1-ffffff);
}

.accordion__tab-body{
	display: none;
}

@media (max-width: 1230px) {
	.accordion__tab {
    padding: 0px 80px 0px 20px;
	}

	.accordion__body {
    column-gap: 20px;
	}

	.accordion__tab {
    width: calc((100% - 20px) / 2);
	}
}

@media (max-width: 992px) {
	.accordion__tab {
    width: 100%;
	}
}

@media (max-width: 768px) {
	.accordion {
    padding: 40px 0px;
}
}

@media (max-width: 480px) {
	.accordion__tab-top {
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
	}

	.accordion {
    padding: 35px 0px;
	}

	.accordion__body{
		gap: 5px;
	}

	.accordion__tab-arrow {
    width: 50px;
	}

	.accordion__tab-text {
    font-size: 12px;
	}

	.accordion__tab-body{
		padding-bottom: 10px;
		padding-top: 5px;
	}

	.accordion__tab {
		padding: 0px 60px 0px 20px;
	}

	.accordion__body {
		padding-top: 0px;
	}

	.accordion__tab-top br{
		display: none;
	}
}

/* ==================================== */

.read-more {
	padding: 30px 0px;
}

.read-more__text {
	padding-top: 17px;
	font-weight: 400;
	position: relative;
	font-size: 14px;
	line-height: 150%;
	color: var(--v1-ffffff);
}

.read-more.accordion-active .read-more__text::before{
	opacity: 0;
	pointer-events: none;
}

.read-more__text::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -12px;
	transition: 0.3s ease 0s;
	width: 100%;
	height: 80px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
	opacity: 0.8;
}

.read-more__bottom-text {
	display: none;
}
.read-more__button {
	font-weight: 700;
	font-size: 14px;
	line-height: 140%;
	display: flex;
	transition: 0.2s ease 0s;
	gap: 10px;
	align-items: center;
	color: #ffe500;
	margin-top: 50px;
}

.read-more.accordion-active .read-more__button{
	opacity: 0;
	pointer-events: none;
	margin-bottom: -50px;
}

.modal-spasibo .button{
	max-width: 240px;
	width: 100%;
	min-height: 60px !important;
}

.read-more__button:hover{
	color: #f3db00;
}


@media (max-width: 768px) {
	.read-more__text br{
		display: none;
	}

	.read-more__button {
    margin-top: 40px;
	}
}

@media (max-width: 480px) {
	.read-more .title{
		font-size: 20px;
	}

	.read-more__text {
		padding-top: 0px;
	}

	.read-more {
    padding: 25px 0px;
}
}

/* ==================================== */

.footer {
	margin-top: 40px;
	padding-bottom: 20px;
}

.footer__body {
	display: flex;
	gap: 17px;
	justify-content: space-between;
}
.footer__left {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 33px 40px;
	flex-grow: 1;
	border-radius: 30px;
	background: rgba(33, 33, 33, 0.5);
}

.footer__col-main {
	display: flex;
	max-width: 287px;
	width: 100%;
	gap: 23px;
	flex-direction: column;
}
.footer .logo {
	max-width: 127px;
}

.footer .tel a{
	font-size: 28px;
}
.footer .tel__bottom {
	display: block;
	margin-top: 5px;
	text-align: left;
	font-weight: 500;
	font-size: 13px;
	color: var(--v1-757575);
}



.warning {
	display: flex;
	max-width: 255px;
	align-items: center;
	gap: 20px;
}
.warning__circle {
	width: 60px;
	height: 60px;
	display: flex;
	border-radius: 100%;
	background-color: var(--v1-ffffff);
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
	font-size: 24px;
	line-height: 140%;
	text-align: center;
	color: var(--v1-000000);
}
.warning__text {
	font-weight: 700;
	font-size: 13px;
	line-height: 160%;
	color: var(--v1-ffffff);
}

.warning__text span{
	color: #ffe500;
}


.footer__col-links {
	display: flex;
	gap: 40px;
	font-weight: 700;
	flex-direction: column;
	font-size: 14px;
	color: var(--v1-ffffff);
}

.footer__col-links li{
	white-space: nowrap;
}

.footer__col-links li a{
	transition: 0.3s ease 0s;
}

.footer__col-links li a:hover{
	color: #f3db00;
}

.footer__col-info {
	max-width: 244px;
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	color: var(--v1-ffffff);
}

.footer__col-info ul{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer__col-info ul li{
	color: rgba(255, 255, 255, 0.4);
}

.footer__col-info ul li a{
	transition: 0.2s ease 0s;
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.footer__col-info ul li a:hover{
	color: rgba(255, 255, 255, 1);
}

.footer__telegram-block {
	max-width: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--v1-ffffff);
	border-radius: 30px;
	padding: 0px 19px 30px 19px;
	width: 100%;
}
.footer__telegram-logo {
	width: 60px;
	height: 60px;
	margin-bottom: 14px;
	margin-top: -20px;
}
.footer__telegram-sub-title {
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	color: var(--v1-000000);
	margin-bottom: 14px;
}
.footer__telegram-block .button {
	min-height: 40px;
	max-width: 210px;
	width: 100%;
	font-size: 13px;
}

.footer__telegram-block .button:not(:last-child){
	margin-bottom: 20px;
}

@media (max-width: 1230px) {
	.footer .tel a {
    font-size: 22px;
	}

	.footer__col-links {
    gap: 30px;
	}

	.footer__left {
    padding: 23px 30px;
    flex-grow: 1;
    border-radius: 22px;
	}

	.footer__col-main {
    max-width: 264px;
	}
}

@media (max-width: 992px) {
	.footer__body{
		gap: 30px;
		flex-direction: column;
	}

	.footer__telegram-block {
		margin-left: auto;
	}
}

@media (max-width: 768px) {
	.footer__left .footer__col-info{
		display: none;
	}

	.footer{
		padding: 0px 15px 30px 15px;
	}

	.footer__left{
		padding: 0px;
		flex-direction: column;
		border-radius: 0px;
		background: none;
		gap: 30px;
	}

	.burger-menu .warning{
		margin-top: 80px;
	}

	.footer .tel a {
		font-size: 28px;
	}

	.footer__col-main {
		max-width: 100%;
	}

	.footer__warning {
		padding-top: 7px;
	}

	.footer__body {
		gap: 40px;
	}

	.footer__telegram-block{
		max-width: 100%;
	}
	
	.footer {
    margin-top: 50px;
	}

	.footer__main{
		padding: 30px 0px;
		border-radius: 30px;
		background: rgba(33, 33, 33, 0.5);
	}
}

/* ==================================== */

.modal__body {
	padding: 50px 45px;
	border-radius: 40px;
	background-color: var(--background-color);
	max-width: 570px;
}
.modal-close {
	right: 20px;
	top: 20px;
	padding: 4px;
}

.modal-close::before, .modal-close::after {
	width: calc(100% - 5px);
}

.modal__title {
	font-weight: 800;
	font-size: 28px;
	line-height: 140%;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
}
.modal__sub-title {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 150%;
	text-align: center;
	color: var(--v1-ffffff);
}

.modal__sub-title span{
	color: var(--fecd2a);
	font-weight: 700;
}

.modal .form {
	max-width: 360px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-inline: auto;
}

.input{
	background: var(--v1-212121);
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	border-radius: 6px;
	width: 100%;
	letter-spacing: 0.3em;
	padding: 20px;
	text-transform: uppercase;
	color: var(--v1-ffffff);
}

.modal  .button {
	min-height: 70px;
	font-size: 14px;
	
}
.policy {
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	text-align: center;
	color: var(--v1-ffffff);
	opacity: 0.6;
}

@media (max-width: 1230px) {

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
	.modal__body {
    padding: 40px 35px;
    border-radius: 25px;
	}

	.modal__title {	
    font-size: 24px;
    margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.modal__body {
		padding: 40px 20px;
	}

	.modal__title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.modal-close {
    right: 10px;
    top: 10px;
		width: 30px;
		height: 30px;
	}

	.modal__sub-title {
    font-size: 14px;
    margin-bottom: 20px;
	}
}

@media (max-width: 350px) {
}
/* ==================================== */

@media (max-width: 1230px) {

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 480px) {
}

@media (max-width: 350px) {
}

/* ==================================== */

.tabs-content{
	display: none;
}

.d-block{
	display: block;
}

.none{
	display: none;
}

[class*="copyrights-pane"]{
	display: none !important;
}
