/* USER VARIABLES SECTION */

:root {
	--accent: #FF3E00;
	--disabled: #9e9e9e;
	--text: #1D1D1D;
	--regular-text: 21px;
	--lineheight: 34px;
	--userfont: inter-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	--bs-gutter-x: .625rem;
}

.row,
.row>* {
	--bs-gutter-x: 1.25rem;
}

/* FONTS LOAD SECTION */

@font-face {
	src: url("../fonts/Inter-Regular.woff2") format("woff2");
	font-family: "inter-st";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Inter-Medium.woff2") format("woff2");
	font-family: "inter-st";
	font-weight: 500;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Inter-Bold.woff2") format("woff2");
	font-family: "inter-st";
	font-weight: 700;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Inter-Black.woff2") format("woff2");
	font-family: "inter-st";
	font-weight: 900;
	font-style: normal;
}

/* GENERAL CSS SETTINGS */

::placeholder {
	color: #666;
}

::selection {
	background-color: var(--accent);
	color: #fff;
}

input,
textarea {
	outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	border-color: red;
}

input:required:valid,
textarea:required:valid {
	border-color: green;
}

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

img {
	width: 100%;
}

a {
	text-decoration: none;
	color: #312FB0;
}

a:hover {
	color: var(--accent);
}

ol {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 10px 0;
	counter-reset: num;
}

ol>li {
	counter-increment: num;
	margin: 0;
	padding: 0 0 10px 24px;
	position: relative;
	line-height: 20px;
}

ol>li::before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	color: #000;
	text-align: center;
	border-radius: 50%;
}

ol>li::before {
	content: counter(num);
}

ol ol {
	counter-reset: num2;
}

ol ol>li {
	counter-increment: num2;
	padding: 0 0 10px 32px;
}

ol ol>li::before {
	content: counter(num) '.' counter(num2);

}

/* 3-й уровень */

ol ol ol {
	counter-reset: num3;
}

ol ol ol>li {
	counter-increment: num3;
	padding: 0 0 10px 40px;
}

ol ol ol>li::before {
	content: counter(num) '.' counter(num2) '.' counter(num3);
}

/* 4-й уровень */

ol ol ol ol {
	counter-reset: num4;
}

ol ol ol ol>li {
	counter-increment: num4;
	padding: 0 0 10px 48px;
}

ol ol ol ol>li::before {
	content: counter(num) '.' counter(num2) '.' counter(num3) '.' counter(num4);
}

ui li {
	list-style: none;
}

tbody,
td,
tfoot,
th,
thead,
tr {
	border: 1px solid #ccc;
}

td,
th {
	padding: 8px;
}

.modal-body td {
	vertical-align: top;
}

h1 {
	font-size: 85px;
	line-height: 102px;
	font-weight: 900;
	margin-bottom: 5px;
	z-index: 2;
	position: relative;
}

h2 {
	font-size: 35px;
	line-height: 55px;
	text-align: center;
	margin-bottom: 40px;
}

h3 {
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 20px;
}

button {
	padding: 15px 104px;
	border-radius: 100px;
	border: 2px dashed #1D1D1D;
	background: #fff;
}

button:hover {
	box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
	border: none;
	transition: all 0.3s;
}

.flex-column {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-right: 38px;
}

.flex-wrapper {
	display: flex;
	align-items: flex-end;
}

.fst-italic {
	font-style: italic;
}

.col-20 {
	flex: 0 0 20%;
	max-width: 20%;
}

.mini-text {
	font-size: 14px;
	line-height: 21px;
}

.mini-medium {
	font-weight: 500;
}

.justify-content-end {
	display: flex;
	justify-content: flex-end;
}

.text__button-mob {
	display: none;
}

.mt-32 {
	margin-top: 32px;
}

.h1-mob {
	display: none;
}

.about .right-block .display-none {
	display: none;
}

.bold {
	font-weight: 700;
}

.modal a {
	color: #0d6efd;
}

.modal a:hover {
	color: #0a58ca;
}

.td-underline {
	text-decoration: underline;
}

.text-right {
	text-align: right;
}

.mb-32 {
	margin-bottom: 32px;
}


/* USER STYLES */

header {
	padding: 18px 0;
}

header .header__logo {
	width: 160px;
}

header .justify-content-right {
	justify-content: right;
	margin-bottom: 0;
}

header button:hover {
	box-shadow: none;
}

header .nav-item .nav-link {
	margin-right: 62px;
	font-size: 18px;
	font-weight: 500;
	color: #1D1D1D;
}

header .nav-item .nav-link:hover {
	color: #FF3E00;
}

.top-block .top-block__wrapper {
	padding: 56px 0 180px 0;
}

.top-block .top-text {
	font-size: 40px;
	line-height: 48px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 96px;
}

.top-block .bottom-text {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 70px;
}

.top-block .top-block__wrapper img {
	z-index: 1;
	margin-left: -35px;
}

.form__block {
	margin-bottom: 180px;
}

.form__block .form__botton {
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	margin-top: 32px;
}

.top-block__form {
	border: 4px solid #1D1D1D;
	border-radius: 1000px;
}

.top-block__form .form__wrapper {
	padding: 97px 235px;
}

.top-block__form .form__wrapper .top-block__form-text {
	font-size: 40px;
	line-height: 48px;
	text-transform: uppercase;
}

.top-block__form .form__wrapper .top-block__form-text .top-block__form-text-capitalize {
	text-transform: capitalize;
}

.text__button {
	color: var(--accent);
	border: none;
	padding: 0;
	background: 0;
	text-transform: uppercase;
}

.text__button.disabled {
	color: var(--disabled);
}

.text__button-mob.disabled {
	color: var(--disabled);
}

.text__button::before {
	content: "";
	background-image: url(../images/icon-right.svg);
	width: 16px;
	height: 16px;
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
}

.text__button:hover {
	box-shadow: none;
}

.top-block__form .form-title {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	margin-bottom: 17px;
}

.top-block__form .form__inner {
	border-left: 2px solid #1D1D1D;
}

.form__conpolicy {
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.top-block__form .form__inner .form__conpolicy,
.top-block__form .form__inner form,
.top-block__form .form__inner p {
	padding-left: 11px;
}

.top-block__form .form__conpolicy {
	font-size: 8px;
	line-height: 14px;
	margin-top: 30px;
	margin-bottom: 0;
}

.top-block__form .form__input {
	border: none;
	border-bottom: 2px solid #1D1D1D;
	background: none;
	text-transform: uppercase;
	color: #1D1D1D;
	font-size: 12px;
	margin-bottom: 10px;
	width: 100%;
}

.top-block__form input::placeholder {
	color: #1D1D1D;
}

.top-block__form input:-webkit-input-placeholder {
	color: #1D1D1D;
}

.about {
	margin-bottom: 180px;
}

.about .kp-text {
	font-size: 40px;
	line-height: 60px;
}

.settings__item {
	position: relative;
	padding: 0 0 0 27px;
	margin: 40px 20px;
}

.settings__item::before {
	content: "";
	background-image: url(../images/set-1.svg);
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 0;
	display: block;
}

.stages__item {
	position: relative;
	padding: 0 0 0 48px;
	margin: 40px 20px;
}

.stages__item::before {
	content: "";
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 0;
	display: block;
}

.stages__item1::before {
	background-image: url(../images/stage-1.svg);
}

.stages__item2::before {
	background-image: url(../images/stage-2.svg);
}

.stages__item3::before {
	background-image: url(../images/stage-3.svg);
}

.stages__item4::before {
	background-image: url(../images/stage-4.svg);
}

.stages__item5::before {
	width: 30px;
	height: 30px;
	background-image: url(../images/stage-5.svg);
}

.price__item {
	position: relative;
	padding: 0 0 0 48px;
	margin: 40px 20px;
}

.price__item::before {
	content: "";
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 0;
	display: block;
}

.price__item1::before {
	background-image: url(../images/price-1.svg);
}

.price__item2::before {
	background-image: url(../images/price-2.svg);
}

.price__item3::before {
	background-image: url(../images/price-3.svg);
}

.price__item4::before {
	background-image: url(../images/price-4.svg);
}


.price .settings .kp__text {
	margin-top: 80px;
}

.settings .left-block img {
	max-width: 400px;
}

.settings .left-block {
	display: flex;
	justify-content: space-between;
	margin-right: 38px;
}

.settings .right-block {
	border-left: 2px solid #1D1D1D;
	max-width: 500px;
}

.settings .right-block p {
	margin-left: 20px;
	margin-bottom: 0;
}

.settings .kp__text a {
	border-bottom: 2px solid #1D1D1D;
}

.process {
	margin: 180px 0;
	text-align: center;
}

.process .step {
	max-width: 370px;
}

.process .step .step__img {
	border: 4px solid #1D1D1D;
	border-radius: 1000px;
	margin: 10px 10px 30px 10px;
}

.process .step .step__img img {
	border-radius: 1000px;
}

.process .step-2 {
	margin-top: 60px;
}

.clientele {
	margin: 180px 0;
}

.clientele .client {
	padding: 60px;
	position: relative;
}

.clientele .client:before {
	content: "";
	right: 0;
	top: 33%;
	width: 2px;
	background: #1D1D1D;
	height: 98px;
	position: absolute;
}

.clientele .client:last-child:before {
	height: 0;
}

.clientele .client:nth-child(5):before {
	height: 0;
}

.clientele .client-top:after {
	content: "";
	bottom: 0;
	left: 28%;
	width: 121px;
	height: 2px;
	background: #1D1D1D;
	position: absolute;
}

.clientele .posts-slider {
	display: none;
}

.clientele .posts-slider img {
	padding: 20px;
}

.contacts .contacts__inner {
	margin-left: 92px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.contacts .contacts__title {
	font-size: 35px;
	line-height: 45px;
	margin-bottom: 50px;
	font-weight: 500;
}

.contacts .contacts__item {
	display: flex;
	margin-bottom: 40px;
}

.contacts .contacts__item .contacts__item-img {
	border: 2px solid #1D1D1D;
	border-radius: 50%;
	padding: 30px;
	width: 137px;
	height: 137px;
	margin-right: 30px;
}

.contacts .contacts__item .contacts__item-img img {
	width: 74px;
	height: 74px;
}

.contacts .contacts__item .contacts__item-text h3 {
	margin-bottom: 0;
}

.footer-text-info {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 16px;
	margin-top: 180px;
	font-weight: 500;
}

.footer-text-info span {
	font-weight: 700;
}

.footer {
	font-size: 14px;
	line-height: 22px;
}

.footer-inner {
	border-top: 2px solid #1D1D1D;
	padding: 46px 0 32px;
}

.footer-inner .logo {
	width: 210px;
}

.footer-inner .soc-icons {
	display: flex;
	justify-content: right;
	flex-wrap: wrap;
	max-width: 170px;
}

.footer-inner .soc-icon {
	border: 1px solid #1D1D1D;
	border-radius: 50%;
	width: 33px;
	height: 33px;
	margin: 0 0 25px 25px;
	cursor: pointer;
	padding: 8px;
}

.footer-inner .soc-icon img {
	margin-top: -10px;
}

.footer-inner .menu {
	border-left: 2px solid #1D1D1D;
	display: flex;
	align-items: center;
}

.footer-inner .menu-item {
	vertical-align: middle;
	padding-left: 8px;
}

.footer-inner .e-mail a {
	text-decoration: underline;
}

.slick-slider .slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.price {
	margin-top: 180px;
}

.price .settings__item li {
	list-style-position: inside;
	list-style-type: circle;
}

.slick-slider .slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-slider .slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button::before {
	font-family: slick;
	font-size: 28px;
	line-height: 20px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	content: "•";
	text-align: center;
	opacity: 0.25;
	color: black;
	-webkit-font-smoothing: antialiased;
}

.slick-slider .slick-dots li.slick-active button:before {
	opacity: .75;
	color: #1D1D1D;
}

.pol-conf {
	text-align: center;
	margin-top: 48px;
	font-size: 12px;
	line-height: 20px;
}

.modal-dialog {
	width: 90%;
	max-width: 1024px;
}

.text-akk {
	margin-top: 50px;
	font-weight: 500;
	font-size: 21px;
	line-height: 40px;
}


.cookie-pop-up {
	display: none;
	width: 100%;
	position: fixed;
	z-index: 100;
	bottom: 16px;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
}



.cookie-pop-up_content {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 588px;
	background-color: #e9f3fc;
	padding: 16px;
	border: 1px solid #cbe2f9;
	border-radius: 16px;
}

.cookie-pop-up_img {
	width: 73px;
	flex-shrink: 0;
}



.cookie-pop-up_text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cookie-pop-up_text>br {
	display: none;
}



.cookie-pop-up_link {
	color: #1068bf;
	text-decoration: underline;
	transition: all .2s cubic-bezier(.645, .045, .355, 1);
}

.cookie-pop-up_link:hover {
	color: #0b5cad;
}

.cookie-pop-up_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border: none;
	border-radius: 1000px;
	background-color: #1068BF;
	color: #fff;
	font-size: 14px;
	line-height: 150%;
	margin-left: 4px;
}

.cookie-pop-up_title {
	font-size: 0.875rem;
	line-height: 150%;
	font-weight: 700;
	margin-bottom: 0;
}


.cookie-pop-up_title>br {
	display: none;
}


.cookie-pop-up_description {
	font-size: 0.75rem;
	line-height: 150%;
	margin-bottom: 0;
}

@media (max-width: 570px) {
	.cookie-pop-up_text {
		text-align: center;
	}

	.cookie-pop-up_title>br {
		display: initial;
	}

	.cookie-pop-up_btn {
		margin-left: 0;
		margin-top: 8px;
	}

	.cookie-pop-up_title {
		text-align: center;
	}
}



@media (max-width: 540px) {
	.cookie-pop-up {
		bottom: 8px;
		padding: 0 8px;
	}

	.cookie-pop-up_content {
		flex-direction: column;
		gap: 4px;
		padding: 10px;
	}

	.cookie-pop-up_img {
		width: 49px;
	}
}