@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: "Raleway", serif;
	background: #bd9967;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
body.active{
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 30px 0;
	font-weight: 700;
	color: #040404;
	line-height: 1.2;
}
h1{
	font-weight: 700;
	font-size: 72px;
}
h2{
	font-size: 48px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 20px;
}
h6{
	font-size: 16px;
}
p {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.22222;
	text-align: center;
	color: #fff;
	margin: 0 0 20px 0;
}
p:last-child{
	margin-bottom: 0px;
}
img{
	display: block;
	max-width: 100%;
}
a {
	outline: none;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
/*== buttons
---------------------------------*/
.black-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.black-btn:hover{
	background: #4d4d4d;
}


.green-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #32a462;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.green-btn:hover{
	background: #21c064;
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
	font-family: inherit;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}

textarea{
	height: 80px;
	outline: none;
}
.b-input-text{
	width: 100%;
	height: 52px;
	background: rgba(255, 255, 255, 0.42);
	mix-blend-mode: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #333333;
	transition: 0.3s;
	padding: 0 15px 0 33px;

}
.b-input-text::-webkit-input-placeholder{
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #A7A7A7;
}
.b-input-text:-moz-placeholder{
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #A7A7A7;
}
.b-input-text.error{
	border-color: #EF4231;
}
textarea{
	height: 80px;
	outline: none;
	resize: none;
}
.b-textarea{
	width: 100%;
	height: 180px;
	background: #FFFFFF;
	border: 1px solid #CAD1D7;

	border-radius: 10px;
	padding: 20px 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;	
}
.b-textarea::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;	
}
.b-textarea:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;		
}
/*== checkbox , raido
---------------------------------*/
.b-checkbox{

}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox input[type="checkbox"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}
.b-checkbox input[type="checkbox"] + label span{
	border-radius: 20px;
	width: 24px;
	height: 24px;
	background: #32a462;
	position: relative;
	margin: 0 10px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	background: #32a462 url("../images/check.svg") left 6px center no-repeat;
}
.b-checkbox input[type="checkbox"] + label i{
	padding: 2px 0 0 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.14286;
	color: #353535;
	font-style: normal;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	color: #5a8af5;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;	
	border-bottom: 1px dashed #5a8af5;

	margin: 0 0 0 5px;
}
.b-checkbox input[type="checkbox"] + label i a:hover , .b-checkbox input[type="checkbox"] + label i a:focus , .b-checkbox input[type="checkbox"] + label i a:active{
	text-decoration: none;
	opacity: 0.8;
	transition: 0.3s;
}
.b-check{
	margin: 10px 0 0 0;
}
.b-check input[type="checkbox"]{
    display: none;
}
.b-check input[type="checkbox"] + label span{
	width: 11px;
	height: 11px;
	color: rgba(36, 39, 52, 0.35);
	font-size: 11px;
	flex-shrink: 0;
	margin: 2px 4px 0 0;
	cursor: pointer;
}
.b-check input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.b-check input[type="checkbox"]:checked + label span{
	width: 11px;
	height: 11px;
	color: #333333;
}
.b-check input[type="checkbox"] + label i{
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 1;
	text-align: right;
    color: rgba(36, 39, 52, 0.35);
	cursor: pointer;
}
.b-check input[type="checkbox"]:checked + label i{
	color: #333333;
}
/*== raido
---------------------------------*/
.b-radio{
	margin: 0 0 16px 0;
}
.b-radio input[type="radio"]{
    display: none;
}
.b-radio input[type="radio"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}
.b-radio input[type="radio"] + label span{
	width: 26px;
	height: 26px;
	background: #FFFFFF;
	border: 1px solid #a5a5a5;

	border-radius: 100%;
	transition: 0.3s;
	position: relative;
	margin: 0 10px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-radio input[type="radio"] + label span:after{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 14px;
	height: 14px;
	background: #32a462;
	border-radius: 100%;
	transform: translate(-50% , -50%);	
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span{
	width: 26px;
	height: 26px;
	border: 1px solid #a5a5a5;
	border-radius: 100%;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span:after{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-radio input[type="radio"] + label i{
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #373737;
	font-style: normal;
	padding: 1px 0 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
select{
	outline: none;
	font-family: inherit;
}
.b-select{
	border: 1px solid #a3a3a3;
	width: 100%;
	height: 48px;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #4f4f4f;
	padding: 0 16px;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 13px center;
	background-size: 18px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
/* End Total css ====*/
.container{
	max-width: 1010px;
	margin: 0 auto 0;
	padding: 0 15px;

}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
	position: relative;
	background: rgba(171, 103, 0, 0.5);
	padding: 105px 0 90px 0;
}
.inner-page{
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	min-height: 100vh;
	background: #dfdfdf;
}
/* -------------- page index -------------- */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 23px 0;
	z-index: 10;
}
.header:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition: 0.8s;
}
.header.active:after{
	transform: translateY(0);
	visibility: visible;
	opacity: 0.85;
}
.header__left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 37px;
	position: relative;
	z-index: 2;
}
.header__contacts{
	display: none;
}
.header__contacts a{
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
	color: #373737;
	text-decoration: none;
}
.header__contacts a span{
	font-weight: 500;
}
.logo{
	font-family: "Playfair Display", sans-serif;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
}
.logo img{
	flex-shrink: 0;
	margin: 0 17px 0 0;
}
.logo span{
	display: block;
	font-weight: 900;
	font-size: 20px;
	line-height: 1.1;
	color: #000;
	padding: 0 0 0 16px;
	border-left: 1px solid #000;
	max-width: 106px;
}

.nav{
	position: relative;
	z-index: 2;
}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 45px;
}
.nav ul li a{
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 3.1875;
	text-align: center;
	color: #000;
	text-decoration: none;
}
.nav ul li a.active{
	color: #a0a0a0;
}
.nav ul li a:hover{
	color: #666;
}
.header__right{
	position: relative;
	z-index: 2;
}
.header__btn{
	width: 115px;
	height: 40px;
	background: #000;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: #fb0;
	text-decoration: none;
	transition: 0.3s;
}
.header__btn:hover{
	background: #fb0;
	color: #000;
}


.footer{
	background: #000;
	padding: 19px 0;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}
.footer .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .logo img{
	margin: 0;
}
.footer__left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 28px;
}
.copyright{
	font-weight: 600;
	font-size: 13px;
	line-height: 1.23077;
	color: #fff;
}
.footer__nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 18px;
}
.footer__nav ul li a{
	display: block;
	font-weight: 700;
	font-size: 13px;
	line-height: 3.92308;
	text-align: right;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.footer__nav ul li a:hover{
	color: #fb0;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #3b2b14;
	z-index: 20;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background 5s ease; /* Плавный переход цвета */
}
.preloader.transition {
	background: #bd9967;
}
.preloader.hidden {
	opacity: 0;
	pointer-events: none; /* Отключение взаимодействия с элементом */
	transition: opacity 1s ease, transform 1s ease; /* Плавное скрытие */
}

.icons{
	width: 200px;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icons .icon {
	display: none; /* Скрываем все иконки изначально */
}
.icons .icon.active {
	display: block; /* Показываем только активную иконку */
	opacity: 0;
	animation: fadeInScale 0.5s forwards;
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8); /* Иконка начинается уменьшенной */
	}
	to {
		opacity: 1;
		transform: scale(1); /* Иконка принимает нормальный размер */
	}
}


.preloader__img {
	display: none; /* Изначально блок скрыт */
	opacity: 0;
	transform: scale(0.8); /* Уменьшенный размер */
	transition: transform 0.3s ease, opacity 0.3s ease; /* Анимация увеличения и появления */
}

.preloader__img.active {
	display: block; /* Показываем блок */
	opacity: 1;
	transform: scale(1); /* Возвращаем нормальный размер */
}
.preloader__img-wrap{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	width: 155px;
	height: 291px;
}
.preloader__crown{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50% , 0%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.preloader__crown.active {
	transform: translate(-50%, -190px); /* Перемещение вверх */
	opacity: 1;
	visibility: visible;
}

.preloader__img.hidden {
	opacity: 0;
	transform: scale(1); /* Уменьшаем блок при скрытии */
}


.preloader__logo{
	display: none;
	opacity: 0;
	transform: scale(0.8);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.preloader__logo.active {
	display: flex; /* Показываем блок */
	opacity: 1;
	transform: scale(1); /* Возвращаем нормальный размер */
}
.preloader__logo.hidden {
	opacity: 0;
}
.preloader__logo-wrap{
	display: flex;
	justify-content: center;
	align-items: center;
}
.preloader__logo img{

}
.preloader__logo span{
	font-family: "Playfair Display", sans-serif;
	font-weight: 900;
	font-size: 40px;
	line-height: 1.1;
	color: #000;
	display: block;
	padding: 0 0 0 30px;
	margin: 0 0 0 34px;
	border-left: 2px solid #000;
	max-width: 202px;
}
video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* Видео растягивается, сохраняя пропорции */
	z-index: -1; /* Отправляем видео на задний план */
}

.section__nav{
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
}
.section__nav ul{

}
.section__nav ul li{
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 100%;
	transition: 0.3s;
}
.section__nav ul li:not(:last-child){
	margin: 0 0 13px 0;
}
.section__nav ul li.active{
	background: #fff;
	transform: scale(1.4);
}
/* -------------- main -------------- */
.main{
	padding: 100px 0 60px 0;
}
.main__top{
	max-width: 660px;
	margin: 0 auto 0;
}
.main__title{
	font-weight: 900;
	font-size: 72px;
	line-height: 1.05556;
	text-align: center;
	color: #fff;
	margin: 0 0 20px 0;
}
.main_page .main__title{
	transform: translateY(50px);
	opacity: 0.05;
	visibility: hidden;
	transition: 0.3s;
}
.main_page .main__title.active{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.main_page .main p{
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}
.main_page .main p.active{
	transition: 0.3s;
	opacity: 1;
	visibility: visible;
}

.main__row{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	margin: 55px 0 50px 0;
}
.main__item{
	width: 20%;
	border-radius: 79px;
	background: #feb41e;
	padding: 49px 20px 45px 20px;
}
.main__item-img{
	height: 91px;
	margin: 0 0 10px 0;
}
.main__item-img img{
	margin: 0 auto 0;
}
.main__item span{
	display: block;
	font-weight: 800;
	font-size: 16px;
	line-height: 1.25;
	text-align: center;
	color: #000;
}

.main__item {
	opacity: 0; /* Изначально скрыты */
	transform: translateY(-40px); /* Элемент начнёт с немного выше */
	transition: opacity 0.3s ease, transform 0.2s ease; /* Плавное появление и падение */
}
.main__item.active {
	opacity: 1; /* Видимый элемент */
	transform: translateY(0); /* Элемент на своём месте */
}

.section__next{
	border: 1.50px solid rgba(255, 255, 255, 0.05);
	border-radius: 26px;
	width: 167px;
	height: 120px;
	background: rgba(255, 255, 255, 0.05);
	padding: 27px 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.83333;
	text-align: center;
	color: #fff;
	text-decoration: none;
	margin: 0 auto 0;
	transition: 0.3s;
}
.section__next:hover{
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.22);
}
/* -------------- section -------------- */
.reviews{
	padding: 0 0 60px 0;
}
.title{
	text-align: center;
	margin: 0 0 45px 0;
}
.title__item{
	font-weight: 900;
	font-size: 54px;
	line-height: 1.11111;
	color: #fff;
}
.title p{

}
.reviews__container{
	border-radius: 121px;
	background: rgba(255, 255, 255, 0.85);
	padding: 40px 170px;
}
.reviews__slider{
	overflow: hidden;
}
.reviews__slider .swiper-slide{
	opacity: 0;
	visibility: hidden;
}
.reviews__slider .swiper-slide-active{
	opacity: 1;
	visibility: visible;
}


.reviews__item{
	text-align: center;
	position: relative;
}
.reviews__item:before{
	position: absolute;
	top: 0;
	left: 43px;
	content: "";
	width: 69px;
	height: 56px;
	background: url("../images/qq.svg") center no-repeat;
}
.reviews__item-title{
	font-weight: 700;
	font-size: 28px;
	line-height: 1.21429;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 68px;
	max-width: 442px;
	margin: 0 auto 16px;
}
.reviews__item p{
	font-weight: 600;
	font-size: 18px;
	line-height: 1.33333;
	text-align: center;
	color: #000;
}
.reviews__item b{
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 0.66667;
	color: #000;
}
.reviews__nav{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 0 10px;
	margin: 15px 0 0 0;
}
.swiper__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 40px;
	background: #fff;
	border-radius: 42px;
	transition: 0.3s;
}
.swiper__btn:hover{
	background: #fb0;
}
.reviews .section__next{
	margin: 40px auto 0;
}
/* -------------- bottom -------------- */
.bottom{
	padding: 60px 0 100px 0;
}
.bottom__container{
	background: rgba(255, 255, 255, 0.8);
	border-radius: 109px;
	padding: 55px 155px 55px 155px;
}
.bottom__container img{
	margin: 0 auto 15px;
}
.bottom__container p{
	font-weight: 600;
	font-size: 28px;
	line-height: 1.21429;
	text-align: center;
	color: #000;
}
.bottom__container p a{
	font-weight: 700;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #000;
}
.thx{
	padding: 0 0 100px 0;
}
.thx p{

}
.thx img{
	margin: 0 auto 0;
}
/* ----------- story_page --------------*/
.story_page{

}
.video-wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
}
.video-wrap:Before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(209, 120, 24, 0.5);
}
.story_main{
	padding: 0;
	margin: 70px 0;
}
.story_main .title{
	max-width: 862px;
	margin: 0 auto 45px;
}

.block{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	border-radius: 121px;
	background: rgba(255, 255, 255, 0.85);
	padding: 60px 95px 60px 75px;
	gap: 0 47px;
	max-width: 888px;
	margin: 0 auto 48px;
}
.block:last-child{
	margin: 0 auto 0;
}
.block__img{
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 79px;
	background: #feb41e;
	width: 196px;
	height: 255px;
}
.block__title{
	font-weight: 700;
	font-size: 28px;
	line-height: 1.21429;
	color: #000;
	margin: 0 0 24px 0;
}
.block__text{

}
.block__text ul{

}
.block__text ul li{
	position: relative;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	padding: 0 0 0 15px;
}
.block__text ul li:before{
	position: absolute;
	top: -2px;
	left: 0;
	content: "●";
}
.block__sb{
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}
.block__text p{
	text-align: left;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	margin: 0 0 30px 0;
}
.block__text p:last-child{
	margin: 0;
}
.story_section{
	margin: 70px 0;
}
/* ----------- existing_page --------------*/
.existing_page{
	background: none;
}
.existing_page .video-wrap:Before{
	background: rgba(30, 105, 122, 0.37);
}
.existing_main{
	margin-bottom: 110px;
}
.existing_section{

}
.existing__form{
	max-width: 440px;
	margin: 27px 0 0 0;
}
.existing__input:not(:last-child){
	margin: 0 0 20px 0;
}
.existing__input-title{
	font-weight: 700;
	font-size: 18px;
	line-height: 1.66667;
	color: #363639;
}
.existing__input-wrap{
	position: relative;
}
.existing__input input{
	border: 1px solid #b5b5b5;
	width: 100%;
	height: 60px;
	padding: 0 15px;
	font-size: 16px;
}
.existing__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80px;
	border-radius: 16px;
	background: #fb0;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	text-align: center;
	color: #000;
	margin: 40px 0 0 0;
	transition: 0.3s;
}
.existing__btn:hover{
	color: #fb0;
	background: #000;
}
/* -------------- bottom -------------- */
.contacts_page{
	background: none;
}
.contacts_page .video-wrap:before{
	background: rgba(64, 134, 24, 0.37);
}
.contacts_main{
	padding-bottom: 0;
}
.contacts_main__row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 30px;
	margin: 0 0 35px 0;
}
.contacts_main__col{
	width: 50%;
}
.contacts_main__col p{
	font-weight: 400;
}
.contacts_main .block{
	align-items: center;
	margin: 0 auto 66px;
}
.contacts_main .block:last-child{
	margin: 0 auto 0;
}
.contacts_main .block__title{
	text-align: left;
}
.contacts_main .block__text p{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}
.contacts_main .block__text p a{
	font-weight: 700;
	color: #000;
	text-decoration: none;
}
.contacts_main .block__text p a:hover{
	color: #fb0;
}
.contacts_page .thx{
	margin-top: 80px;
	text-align: center;
}
.contacts_page .thx .title__item{
	margin: 0 0 35px 0;
}
.contacts_page .thx img{
	margin-top: 100px;
}

/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

	background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1000ms infinite linear;
	-moz-animation: spinner 1000ms infinite linear;
	-ms-animation: spinner 1000ms infinite linear;
	-o-animation: spinner 1000ms infinite linear;
	animation: spinner 1000ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.blur {
	filter: blur(10px);
}

.have-order, .no-order {
	display: none;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
	box-shadow: none !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
	color: #666 !important;
}

button:disabled {
	pointer-events: none;
	opacity: 0.5;
}

.btn-live-chat {
	text-decoration: none;
}

.b-order-top__cancelled {
	margin: 0 0 63px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}