:root {
	--color-primary: #076aff;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	outline: none;
	line-height: calc(100% + 10px);
}

ul:last-child,
ol:last-child,
li:last-child,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child {
	padding-bottom: 0;
}

body {
	font-family: "Roboto", sans-serif;
	color: var(--color-text);
	background: var(--bg-body);
	font-size: 16px;
}

svg {
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	max-height: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--color-link-hover);
}

ul,
ol {
	margin: 0;
	padding-bottom: 20px;
}

ol {
	padding-left: 20px;
}

ul {
	list-style: none;
}

li {
	padding-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 9px;
	height: 8px;
	background: url("../assets/img/icon-check.svg") no-repeat center center;
	background-size: contain;
}

p {
	padding-bottom: 20px;
}

button {
	cursor: pointer;
	border: none;
	font-family: inherit;
	font-size: inherit;
	transition: all 0.3s ease;
}

input {
	font-family: inherit;
	font-size: inherit;
	max-width: 100%;
	width: 100%;
	border: none;
}

input::placeholder {
	font-family: inherit;
	font-size: inherit;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

textarea {
	font-family: inherit;
	font-size: inherit;
	max-width: 100%;
	width: 100%;
}

textarea::placeholder {
	font-family: inherit;
	font-size: inherit;
}

strong {
	font-weight: 600;
}

h1,
h2,
h3 {
	color: var(--color-title);
	padding-bottom: 20px;
	line-height: calc(100% + 10px);
}

h1 {
	font-weight: 600;
	font-size: 54px;
}

h2 {
	font-weight: 500;
	font-size: 40px;
}

h3 {
	font-weight: 500;
	font-size: 36px;
}

form {
	max-width: 100%;
	width: 100%;
}

/* Шапка */

.header {
	background: var(--bg-white);
	padding: 20px 0;
}

.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 45px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo a {
	display: flex;
}

.logo p {
	padding-left: 15px;
	border-left: 1px solid var(--border-gray);
	color: var(--color-title);
	font-weight: 300;
	font-size: 14px;
	line-height: 129%;
	max-width: 130px;
}

.header-menu ul {
	display: flex;
	gap: 40px;
	color: var(--color-title);
}

.header-menu__item {
	padding: 10px 0 !important;
}

@media (min-width: 1201px) {
	.header-menu__item {
		position: relative;
	}
}

.header-auth {
	display: flex;
	gap: 15px;
}

.header-account__nav {
	position: absolute;
	top: calc(100% + 20px);
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
	background: #fff;
	border: 1px solid var(--border-gray);
	background: var(--bg-white);
	border-radius: 10px;
	padding: 10px 30px 10px 15px;
	width: max-content;
	display: none;
	z-index: 5;
}

.header-account__nav ul {
	padding: 15px 0;
	border-bottom: 1px solid var(--border-gray);
}

.header-account__nav ul:first-child {
	padding-top: 0;
}

.header-account__nav ul li {
	padding-bottom: 15px;
}

.header-account__nav ul li:last-child {
	padding-bottom: 0;
}

.header-account__nav ul:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.header-account__nav ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--color-dark-gray);
}

.header-account__nav ul li a i {
	width: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-account__nav ul li a:hover {
	color: var(--color-primary);
}

.header-account__nav ul li a span {
	flex: 1;
	display: flex;
	align-items: flex-end;
	gap: 7px;
}

.header-account__nav ul li a span strong {
	font-weight: 500;
	font-size: 18px;
	color: var(--color-title);
}

.header-account__nav ul li a.has-badge {
	padding-right: 0;
}

.header-account__nav ul li a span .note-badge {
	position: relative;
	top: 0;
	right: 0;
	flex: unset;
	align-items: center;
	gap: 0;
}

.header-checks .header-account__nav li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.header-checks .header-account__nav a:first-child {
	pointer-events: none;
}

.header-checks .header-account__nav a:last-child {
	color: var(--color-primary);
	text-decoration: underline;
}

.header-checks .header-account__nav a:last-child:hover {
	color: var(--color-link-hover);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-checks {
	position: relative;
}

.header-checks button {
	display: flex;
	align-items: center;
	gap: 7px;
	border: 1px solid var(--border-gray);
	border-radius: 21px;
	padding: 4px 15px 4px 4px;
	background: none;
}

.header-checks button i {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: var(--bg-primary);
	width: 36px;
	height: 36px;
	color: var(--color-white);
}

.header-checks p {
	flex: 1;
	padding: 0;
	color: var(--color-dark-gray);
}

.header-checks p strong {
	font-weight: 600;
	color: var(--color-black);
}

.header-account {
	position: relative;
}

.header-account__btn {
	background: none;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-title);
}

.header-account__btn:hover span {
	color: var(--color-primary);
}

.header-account__btn.active span {
	color: var(--color-primary);
}

.header-account__btn > i {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: #a3a3a3;
}

.header-account__btn span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.header-account__btn span i {
	width: 6px;
}

.footer {
	background: var(--bg-gray2);
}

.footer-top__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid var(--border-gray);
}

.footer-top .btn {
	max-width: 300px;
	width: 100%;
}

.footer-contacts {
	padding: 50px 0;
	border-bottom: 1px solid var(--border-gray);
}

.footer-contacts__list {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.footer-contact {
	color: var(--color-title);
}

.footer-contact p:first-child {
	padding-bottom: 5px;
}

.footer-contact p strong {
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--color-black);
}

.telegram-bot a {
	color: var(--color-primary);
}

.telegram-bot a:hover {
	color: var(--color-link-hover);
}

.footer-details {
	padding: 20px 0;
	border-bottom: 1px solid var(--border-gray);
}

.footer-details ul {
	display: flex;
	gap: 50px;
}

.footer-details ul li {
	display: flex;
	gap: 20px;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-dark-gray);
}

.footer-details ul li strong {
	font-weight: 500;
	color: var(--color-black);
}

.footer__copyright {
	padding: 20px 0;
}

.footer__copyright ul {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	color: var(--color-dark-gray);
	font-size: 14px;
}

.footer__copyright li a span {
	color: var(--color-primary);
}

.footer__copyright li a:hover span {
	color: var(--color-link-hover);
}

/* Главная стр */

.hero {
	background: linear-gradient(126deg, #646678 0%, #505160 100%);
	position: relative;
	padding: 120px 0 30px 0;
}

.hero .container {
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 762px;
	height: 100%;
	background: url("../assets/img/hero-img.png");
	background-repeat: no-repeat;
	background-position: bottom;
}

.hero-title {
	text-align: center;
	padding-bottom: 50px;
}

.hero-title h1 {
	color: var(--color-white);
	padding-bottom: 30px;
}

.hero-title h1 span {
	color: var(--color-yellow);
}

.hero-title p {
	font-size: 20px;
	color: var(--color-white);
	max-width: 895px;
	margin: 0 auto;
}

.search {
	backdrop-filter: blur(20px);
	box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.07);
	background: rgba(255, 255, 255, 0.9);
	border-radius: 14px;
	padding: 12px;
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}

.search-form {
	position: relative;
}

.search-form input {
	height: 72px;
	border-radius: 12px;
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
	background: var(--bg-white);
	font-size: 20px;
	color: var(--color-title);
	padding-left: 50px;
}

.search-form input::placeholder {
	color: var(--color-gray2);
}

.search-form .btn {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	height: 62px;
	max-width: 202px;
	width: 100%;
}

.search-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding-top: 15px;
}

.search-bottom .btn {
	max-width: 202px;
	width: 100%;
	height: 34px;
}

.search-example {
	color: var(--color-dark-gray2);
	font-size: 14px;
}

.search-example span {
	border-bottom: 1px dotted var(--color-dark-gray2);
}

.search-btns {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.card-blur {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 20px 30px;
	color: var(--color-white);
}

.card-blur h3 {
	color: var(--color-white);
	padding-bottom: 4px;
	font-weight: 600;
	font-size: 18px;
}

.card-blur p {
	font-size: 14px;
	color: var(--color-white2);
}

.card-blur-icon {
	height: 30px;
}

.card-blur-desc {
	padding-top: 20px;
}

.hero-advantages {
	padding-top: 80px;
}

.comprehensive-report li {
	padding-bottom: 20px;
}

.comprehensive-report li:last-child {
	padding-bottom: 0;
}

.report-list {
	column-count: 3;
	column-gap: 30px;
}

.card-border {
	padding: 30px;
	border-radius: 14px;
	border: 1px solid var(--border-gray);
}

.card-border-desc {
	padding-top: 30px;
}

.card-border-desc h3 {
	font-weight: 500;
	font-size: 18px;
	padding-bottom: 10px;
}

.card-border-icon {
	height: 60px;
}

.wti-block {
	display: flex;
	align-items: center;
	gap: 70px;
	background: var(--bg-white);
	border: 1px solid var(--border-gray);
	border-radius: 20px;
	padding: 30px 30px 30px 40px;
}

.wti-block-img {
	max-width: 580px;
	width: 100%;
	height: 440px;
	overflow: hidden;
}

.wti-block-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.wti-block-desc {
	flex: 1;
}

.wti-block-desc .btn {
	margin-top: 10px;
}

.services-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.services-card {
	border: 1px solid var(--border-gray);
	border-radius: 20px;
	background: var(--bg-white);
	position: relative;
	padding: 50px 40px;
	display: flex;
	overflow: hidden;
}

.services-card-desc p:nth-child(3) {
	padding-bottom: 15px;
}

.services-card-desc p:nth-child(5) {
	max-width: 711px;
	width: 100%;
}

.services-card-desc .btn {
	margin-top: 10px;
}

.services-card-img {
	position: absolute;
	bottom: -15px;
	right: 0;
	display: flex;
}

.offer-block {
	border: 1px solid var(--border-gray);
	border-radius: 14px;
	background: var(--bg-white);
	padding: 50px;
}

.offer-content {
	max-width: 725px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.offer .title h2 {
	padding-bottom: 15px;
}

.offer .title p {
	font-size: 18px;
}

.offer-price {
	position: relative;
	padding-bottom: 30px;
}

.offer-price p {
	padding-bottom: 0;
	font-size: 18px;
}

.offer-price p span {
	font-weight: 700;
	font-size: 46px;
	line-height: 100%;
	color: var(--color-black);
}

.offer-badge {
	position: absolute;
	left: calc(100% + 15px);
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 14px;
	background: var(--bg-green);
	height: 30px;
	padding: 0 15px;
	border-radius: 5px;
	width: max-content;
}

.offer .btn {
	max-width: 305px;
	width: 100%;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	border-radius: 10px;
	border: 1px solid var(--border-gray);
	background: var(--bg-white);
	padding: 25px 30px;
}

.faq-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
}

.faq-title h3 {
	flex: 1;
	font-weight: 500;
	font-size: 18px;
	color: var(--color-title);
	padding-bottom: 0;
	transition: all 0.3s ease;
}

.faq-title i {
	width: 36px;
	height: 36px;
	color: var(--color-title);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: transparent;
	transition: all 0.3s ease;
}

.faq-item.active i {
	color: var(--color-red);
	transform: rotate(45deg);
}

.faq-title:hover i {
	background: var(--bg-primary);
	color: var(--color-white);
}

.faq-title:hover h3 {
	color: var(--color-red);
}

.faq-content {
	display: none;
	padding-top: 15px;
	max-width: 810px;
	width: 100%;
}

.tb-row {
	border-bottom: 1px solid var(--border-gray);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
}

.tb-row:nth-child(even) {
	flex-direction: row-reverse;
}

.tb-desc {
	flex: 1;
}

.tb-img {
	max-width: 570px;
	width: 100%;
	height: 530px;
}

.tb-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* СТР УСЛУГ */

.header-page {
	background: var(--bg-white2);
	padding: 20px 0;
}

.service-page {
	overflow-x: hidden;
}

.service-page .container {
	max-width: 1170px;
}

.service-page .title {
	padding-bottom: 20px;
}

.service-page .title h3 {
	padding-bottom: 0;
}

.service-page h3 {
	font-weight: 700;
	font-size: 26px;
	color: var(--color-black);
}

.address-result {
	padding: 30px 0;
}

.address-result__title {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border-gray);
}

.address-result__title p {
	padding-bottom: 4px;
	color: var(--color-dark-gray);
}

.address-result__title h3 {
	color: var(--color-black);
	font-weight: 600;
	font-size: 30px;
}

.address-result__row {
	padding-top: 30px;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.address-result__map {
	flex: 1;
	min-height: 260px;
	border-radius: 20px;
	overflow: hidden;
}

.address-result__map iframe {
	border: none;
	width: 100%;
	height: 100%;
}

.no-address {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #9d9d9d;
	background: var(--bg-gray2);
}

.no-address p {
	font-size: 30px;
	max-width: 475px;
}

.address-card {
	border: 1px solid var(--border-gray);
	border-radius: 20px;
	padding: 30px 20px 20px 20px;
	max-width: 330px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
}

.address-card__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.address-card__top p {
	padding-bottom: 0;
	color: var(--color-dark-gray);
}

.address-card__top p:last-child {
	padding-bottom: 0;
}

.address-card__top span {
	color: var(--color-black);
}

.address-card .btn {
	width: 100%;
	padding: 0;
	height: 56px;
	font-size: 16px;
}

.address-card__bottom {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.copy {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.copy * {
	transition: all 0.3s ease;
}

.copy:hover * {
	color: var(--color-primary);
}

.card-check {
	background: var(--bg-gray3);
	border-radius: 20px;
	padding: 25px 20px 20px 20px;
}

.card-check h3 {
	font-weight: 600;
	font-size: 20px;
	padding-bottom: 5px;
	color: var(--color-black);
}

.card-check p {
	color: var(--color-title);
	font-size: 14px;
	padding-bottom: 0;
}

.card-check .btn {
	width: 100%;
	height: 46px;
}

.badge-black {
	background: var(--bg-black);
	border-radius: 4px;
	height: 26px;
	color: var(--color-white);
	width: max-content;
	display: flex;
	font-size: 13px;
	padding: 0 15px;
}

.badge-white {
	background: var(--bg-white);
	border-radius: 4px;
	height: 26px;
	color: var(--color-title);
	width: max-content;
	display: flex;
	font-size: 13px;
	padding: 0 15px;
}

.card-check__price {
	padding: 10px 0;
}

.card-check__price strong {
	display: block;
	padding-top: 15px;
	padding-bottom: 5px;
	font-weight: 700;
	font-size: 26px;
}

.check-packages {
	padding-bottom: 80px;
	padding-top: 30px;
}

.check-packages-slider {
	overflow: unset;
}

.check-packages-slider .swiper-slide {
	width: 270px !important;
	height: auto !important;
}

.check-packages-slider .card-check {
	width: 100%;
	height: 100%;
}

.preloader {
	display: grid;
	justify-items: center;
	gap: 20px;
	padding: 40px 0;
	text-align: center;
}

.preloader-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 160px;
	color: var(--color-title);
}

.preloader-logo:before,
.preloader-logo:after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.preloader-logo:before {
	border: 1px solid var(--border-gray);
}

.preloader-logo:after {
	border: 2px solid transparent;
	border-right-color: var(--bg-primary);
	border-bottom-color: var(--bg-primary);
	animation: preloader-spin 1s linear infinite;
}

.preloader-logo svg {
	position: relative;
	z-index: 1;
}

.preloader p {
	color: var(--color-title);
	text-align: center;
}

.info-object.is-loading .info-row {
	display: none;
}

.info-object.is-loaded .preloader {
	display: none;
}

@keyframes preloader-spin {
	to {
		transform: rotate(360deg);
	}
}

.info-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.info-col {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
}

.info-item {
	border-radius: 14px;
	background: var(--bg-gray3);
	padding: 30px 20px;
}

.info-item h3 {
	color: var(--color-black);
	font-size: 18px;
}

.info-item ul {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}

.info-item ul li {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-gray);
	color: var(--color-title);
}

.info-item ul li:last-child {
	border: none;
}

.info-item ul li span:last-child {
	font-weight: 500;
}

.info-bottom {
	padding-top: 30px;
}

.info-bottom .btn {
	width: 100%;
	max-width: 100%;
}

/* ПОКУПКА ПАКЕТОВ */

.back-link {
	display: flex;
	gap: 7px;
	align-items: center;
	color: var(--color-primary);
	width: max-content;
}

.back-link:hover {
	color: var(--color-link-hover);
}

.back-link i {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	color: var(--color-white);
	background: var(--bg-primary);
	width: 24px;
	height: 24px;
}

.checkout {
	padding-top: 30px;
}

.checkout-title {
	padding-top: 15px;
	padding-bottom: 30px;
}

.checkout-title h2 {
	padding-bottom: 10px;
	font-weight: 600;
	font-size: 30px;
	color: var(--color-black);
}

.checkout-title p {
	color: var(--color-dark-gray);
}

.checkout-form {
	max-width: 450px;
	width: 100%;
}

.checkout-form h3 {
	padding-bottom: 15px;
	font-size: 20px;
	color: var(--color-black);
}

.input-block {
	flex: 1;
}

.input-block input {
	height: 52px;
	padding-left: 20px;
	color: var(--color-title);
	background: #fdfdfd;
	border-radius: 6px;
	border: 1px solid var(--border-gray);
}

.input-block input::placeholder {
	color: #8e8e8e;
}

.input-row {
	display: flex;
	gap: 8px;
}

.checkout-block {
	padding-bottom: 30px;
}

.checkout-block .btn {
	height: 52px;
	padding: 0 20px;
}

.checkout-result {
	padding-top: 10px;
	padding-bottom: 40px;
}

.checkout-summary {
	padding-bottom: 40px;
}

.checkout-summary ul {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.checkout-summary ul li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: var(--color-title);
}

.checkout-summary ul li span:last-child {
	font-weight: 500;
}

.checkout-summary .discount {
	color: #82992b;
}

.checkout-total {
	display: flex;
	justify-content: space-between;
	color: #000;
	font-weight: 700;
	font-size: 18px;
	padding-bottom: 20px;
}

.checkout-total p {
	padding: 0;
}

.checkout-note {
	color: #333;
	padding-bottom: 0;
}

.checkout-submit {
	padding-top: 40px;
}

.checkout-submit .btn {
	max-width: 200px;
	width: 100%;
	padding: 0;
}

.agree {
	display: flex;
	gap: 5px;
	align-items: flex-start;
	padding-top: 25px;
}

.agree label {
	display: flex;
}

.agree label input {
	display: none;
}

.agree label span {
	position: relative;
	border: 2px solid #076aff;
	border-radius: 3px;
	width: 18px;
	height: 18px;
	display: flex;
	cursor: pointer;
}

.agree label span:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 9px;
	background: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.25 5.07609L5.15148 9.25L12.25 1.25' stroke='%23076AFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E")
		center / contain no-repeat;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

.agree label input:checked + span:before {
	opacity: 1;
}

.agree p {
	font-size: 12px;
	line-height: 150%;
	color: var(--color-dark-gray);
}

.agree p a {
	text-decoration: underline;
}

/* 
ЗАКАЗ ОФОРМЛЕН */

.order-final__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.order-final__block img {
	display: block;
	padding-bottom: 50px;
}

.order-final__block h1 {
	font-size: 50px;
	font-weight: 600;
	padding-bottom: 20px;
}

.order-final__block p {
	color: var(--color-black);
	padding-bottom: 30px;
	font-size: 24px;
}

.order-final__block p:last-child {
	padding-bottom: 0;
	max-width: 540px;
	width: 100%;
}

.order-final__block a {
	color: var(--color-primary);
}

.order-final__block a:hover {
	color: var(--color-link-hover);
}

/* ТАРИФЫ */

.main.border-top {
	border-top: 1px solid var(--border-gray);
}

.bread {
	padding-bottom: 50px;
	padding-top: 15px;
}

.bread-list {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-title);
	font-size: 14px;
}

.bread-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bread-list svg {
	flex: 0 0 auto;
	color: var(--color-title);
}

.tariffs-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.tariffs-bottom {
	padding-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 23px;
}

.tariffs-note {
	text-align: center;
	width: 100%;
	max-width: 100%;
	padding: 20px 0;
	color: var(--color-title);
	border-radius: 8px;
	background: var(--bg-gray3);
}

.tariffs-bottom .btn {
	width: 100%;
	max-width: 100%;
	height: 68px;
}

/* КОНТАКТЫ */
.contacts-row {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	gap: 30px;
}

.contacts-card {
	border-radius: 14px;
	border: 1px solid var(--border-gray);
	padding: 30px 50px;
	color: var(--color-title);
}

.contacts-card strong {
	font-weight: 600;
}

.contacts-card p {
	padding-bottom: 10px;
}

.contacts-card p:last-child {
	padding-bottom: 0 !important;
}

.contacts-telegram {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.contacts-details {
	text-align: center;
}

.contacts-line {
	position: relative;
	padding: 30px 0;
}

.contacts-line::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	height: 1px;
	width: 390px;
	background: #ebebeb;
}

.contacts-info {
	padding-top: 30px;
}

.contacts-map {
	border-radius: 14px;
	border: 1px solid var(--border-gray);
	overflow: hidden;
}

.contacts-map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* ПРОФИЛЬ */

.container.small {
	max-width: 1170px;
	width: 100%;
}

.profile-panel {
	padding: 40px 0;
}

.profile-panel__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-radius: 10px;
	background: var(--bg-gray3);
	padding: 7px 10px;
}

.profile-panel__nav,
.profile-panel__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.profile-panel__nav a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 15px;
	border-radius: 8px;
	color: var(--color-title);
}

.profile-panel__nav a.active {
	background: var(--bg-white);
	color: var(--color-title);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

.profile-panel__nav a:hover {
	color: var(--color-red);
}

a.has-badge {
	padding-right: 30px;
}

.note-badge {
	position: absolute;
	top: 5px;
	right: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	border: 1px solid var(--border-green);
	background: var(--bg-white);
	color: var(--color-title);
	font-size: 14px;
	line-height: 100%;
	font-weight: 600;
}

.profile-panel__actions .btn {
	padding: 0 20px;
	height: 60px;
}

.profile-panel__checks {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	min-width: 85px;
	height: 60px;
	background: var(--bg-white);
	color: var(--color-title);
	font-size: 12px;
	line-height: 100%;
}

.profile-panel__checks strong {
	font-weight: 500;
	font-size: 16px;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
}

.profile {
	padding-top: 40px;
}

.profile .title {
	padding-bottom: 20px;
}

.profile .title h3 {
	font-weight: 600;
	font-size: 20px;
	color: var(--color-black);
}

.profile-form {
	max-width: 440px;
	width: 100%;
}

.profile-input {
	padding-bottom: 30px;
}

.profile-form .input-block input {
	height: 60px;
}

.profile-input label {
	color: var(--color-title);
	font-weight: 500;
	padding-bottom: 10px;
	display: block;
}

.profile-check {
	border-radius: 8px;
	background: var(--bg-white);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
	padding: 15px;
}

.profile-check__top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	padding-bottom: 7px;
	color: var(--color-dark-gray);
}

.profile-check__top strong {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-black);
}

.profile-check__top span {
	color: var(--color-dark-gray);
}

.profile-check__progress {
	height: 10px;
	border-radius: 5px;
	background: var(--bg-gray);
	overflow: hidden;
}

.profile-check__progress span {
	border-radius: 5px;
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--bg-primary);
}

.input-checkbox input {
	display: none;
}

.input-checkbox span {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.input-checkbox span::before {
	content: "";
	border: 2px solid var(--border-primary);
	border-radius: 4px;
	width: 26px;
	height: 26px;
}

.input-checkbox input:checked + span::before {
	background: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.25 5.07609L5.15148 9.25L12.25 1.25' stroke='%23076AFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E")
		center / 80% no-repeat;
}

.password-field {
	padding-bottom: 10px;
}

.password-field .input-block {
	position: relative;
}

.password-field input {
	padding: 0 70px 0 24px;
}

.password-field input::placeholder {
	color: var(--color-dark-gray);
}

.password-toggle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--color-title);
	background: transparent;
}

.profile-password__actions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.profile-password__actions .btn {
	flex: 1;
	padding: 0;
	width: 100%;
	height: 50px;
	font-size: 16px;
}

.profile-password__actions .btn-border {
	color: var(--color-primary);
}

.profile-password__actions .btn-border:hover {
	color: var(--color-white);
}

.payment-table {
	overflow: hidden;
	border: 1px solid var(--border-gray);
	border-radius: 14px;
}

.payment-table table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	color: var(--color-title);
}

.payment-table th,
.payment-table td {
	padding: 18px 12px 18px 16px;
	text-align: left;
	font-weight: 400;
	font-size: 14px;
	border-right: 1px solid var(--border-gray);
	color: var(--color-title);
}

.payment-table th:last-child,
.payment-table td:last-child {
	border-right: none;
}

.payment-table th {
	background: var(--bg-gray3);
}

.payment-table tbody tr:nth-child(even) {
	background: var(--bg-gray3);
}

.status--cancel {
	color: var(--color-red);
}

.status--success {
	color: var(--color-success);
}

.status--pending {
	color: var(--color-primary);
}

.report-search {
	display: grid;
	grid-template-columns: 1fr 167px;
	gap: 11px;
	padding-bottom: 30px;
}

.report-search input {
	height: 72px;
	padding: 0 20px;
	border: 1px solid var(--border-gray);
	border-radius: 8px;
	color: var(--color-title);
	font-size: 16px;
}

.report-search input::placeholder {
	color: #9a9a9a;
}

.report-search .btn {
	width: 100%;
	height: 72px;
}

.report-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
	border: 1px solid var(--border-gray);
	border-radius: 12px;
	color: var(--color-title);
}

.report-card h3 {
	color: var(--color-title);
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 0;
}

.report-card p {
	padding-bottom: 8px;
	color: var(--color-black);
	font-size: 14px;
}

.report-card a {
	margin-top: auto;
	color: var(--color-primary);
	text-decoration: underline;
}

.report-card a:hover {
	color: var(--color-link-hover);
}

.report-card > span {
	margin-top: auto;
}

.report-status {
	font-size: 14px;
	padding-bottom: 15px;
}

p.report-status--success {
	color: var(--color-success);
}

p.report-status--process {
	color: var(--color-primary);
}

p.report-status--cancel {
	color: var(--color-red);
}

p.report-status--new {
	color: #996a3a;
}

p.report-register-number {
	font-size: 16px;
}

p.report-address {
	color: var(--color-text);
	padding-bottom: 15px;
}

.report-card--disabled {
	opacity: 0.45;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding-top: 80px;
}

.pagination li {
	padding: 0;
}

.pagination a,
.pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	height: 40px;
	min-width: 40px;
	border: 1px solid var(--border-gray);
	border-radius: 5px;
	font-size: 20px;
	line-height: 100%;
}

.pagination span {
	border-color: transparent;
}

span.pagination-dots {
	color: #9d9d9d;
	align-items: flex-end;
	padding-bottom: 7px;
}

.pagination a:hover,
.pagination a.active {
	background: var(--bg-primary);
	border-color: var(--bg-primary);
	color: var(--color-white);
}

a.pagination-arrow {
	color: var(--color-red);
	height: 40px;
	width: 30px;
	padding: 0;
	min-width: 30px;
	max-width: 30px;
}

.notifications-list {
	display: grid;
	gap: 10px;
}

.notification-card {
	border: 1px solid #fafafa;
	border-radius: 14px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
	padding: 30px;
}

.notification-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.notification-date {
	display: block;
	font-size: 14px;
}

.notification-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	padding: 0 15px;
	height: 20px;
	line-height: 100%;
	background: var(--bg-green);
	color: var(--color-white);
	font-size: 14px;
	font-weight: 500;
}

.notification-card p {
	padding-bottom: 0;
	color: var(--color-title);
}

.notification-card a {
	color: var(--color-primary);
	text-decoration: underline;
}

/* РЕГИСТРАЦИЯ */

.register .title {
	padding-bottom: 30px;
}

.register .title h1 {
	font-weight: 700;
	font-size: 40px;
}

.register-form {
	max-width: 440px;
	width: 100%;
	margin: 0 auto;
}

.register-block {
	padding-bottom: 10px;
}

.register-block label {
	font-weight: 500;
	color: var(--color-title);
	padding-bottom: 6px;
}

.register-form > .btn {
	width: 100%;
	max-width: 100%;
}

.register-divider {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 30px 0 20px;
	color: var(--color-dark-gray);
	font-size: 14px;
}

.register-divider:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--border-gray);
}

.register-divider span {
	position: relative;
	z-index: 1;
	padding: 0 18px;
	background: var(--bg-white);
}

.social-login {
	display: grid;
	gap: 10px;
}

.social-login__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	height: 70px;
	padding: 0 20px;
	border: 1px solid var(--border-gray);
	border-radius: 8px;
	color: var(--color-title);
	font-size: 14px;
}

.social-login__item svg {
	flex: 0 0 auto;
}

.confirm-registration {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 390px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.confirm-registration__icon {
	color: #626262;
	padding-bottom: 40px;
}

.confirm-registration p {
	padding-bottom: 30px;
}

.confirm-registration p:last-child {
	padding-bottom: 0;
}

.confirm-registration a {
	color: var(--color-primary);
	text-decoration: underline;
}

.confirm-registration a:hover {
	color: var(--color-link-hover);
}

.new-password .password-form {
	max-width: 440px;
	margin: 0 auto;
}

.new-password input {
	height: 60px;
}

.new-password .btn {
	width: 100%;
	max-width: 100%;
	height: 60px;
}

.new-password .profile-password__actions {
	display: block;
}

/* МОДАЛКА ВХОДА */
.modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	padding: 20px;
}

.modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	max-width: 500px;
	width: 100%;
	border-radius: 20px;
	background: var(--bg-white);
	padding: 20px 25px;
}

.modal__close {
	position: absolute;
	top: 25px;
	right: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: var(--color-title);
	background: transparent;
}

.login-modal__form h3 {
	font-size: 20px;
	font-weight: 400;
	padding-bottom: 20px;
}

.login-modal__field {
	padding-bottom: 10px;
}

.login-modal__field label {
	display: block;
	padding-bottom: 5px;
	color: var(--color-title);
	font-weight: 500;
	font-size: 14px;
}

.login-modal__form .btn {
	width: 100%;
	max-width: 100%;
	height: 60px;
}

.login-modal__links {
	display: flex;
	justify-content: flex-end;
	gap: 25px;
	padding-top: 25px;
	font-size: 14px;
}

.login-modal__links a {
	color: var(--color-primary);
	text-decoration: underline;
}

.login-modal__links a:hover {
	color: var(--color-link-hover);
}

.offer-block {
	padding: 30px 20px;
}
