/* 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: var(--text);
}

a:hover {
	color: #FF3E00;
}

li {
	list-style: none;
}

h1 {
	font-size: 100px;
	line-height: 121px;
	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;
}

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

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

ul {
	padding-left: 0;
}

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

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

.text__button-mob {
	display: none;
}

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

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

ol {
	margin-top: 8px;
	padding-left: 16px;
}

ol li {
	list-style: decimal;
}

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

h4 {
	text-align: center;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 20px;
}

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

.medium {
	font-weight: 500;
}

.bold {
	font-weight: 700;
}

.modal a {
	color: #0d6efd;
}

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

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

/* 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;
	padding-right: 0;
}

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

/*.top-block {*/
/*	background: linear-gradient(180deg, rgba(158, 0, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);*/
/*}*/

.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;
}

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

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

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

}

.form__block {
	margin-bottom: 180px;
}

.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;
}

.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;
}

.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[type="checkbox"] {
	vertical-align: middle;
	margin-right: 5px;
}

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

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

.about .left-block img {
	max-width: 210px;
}

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

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

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

.about .text__button {
	margin-right: 38px;
}

.about .top-text {
	margin: 0 0 50px;
	font-size: 40px;
	line-height: 60px;
}

.about .top-text a {
	border-bottom: 3px solid #1D1D1D;
}

.about .about__text {
	margin-top: 50px;
}

.advantages {
	margin-top: 180px;
}

.advantages__item {
	position: relative;
	padding: 0 0 0 56px;
	margin: 40px 20px;
}

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

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

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

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

.advantages-2 .advantages__item::before {
	background-image: url(/images/ad2-1.svg);
}

.advantages-2 .advantages__item2::before {
	background-image: url(/images/ad2-2.svg);
}

.advantages-2 .advantages__item3::before {
	background-image: url(/images/ad2-3.svg);
}

.advantages-2 .advantages__item4::before {
	background-image: url(/images/ad2-4.svg);
}


.specialists {
	margin: 180px 0;
}

.specialists .spec-fon {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 30px;
	min-height: 370px;
	/*border: 4px solid #1D1D1D;*/
	margin: 10px;
}

.specialists .accountant {
	/*background-image: url(/images/fon1.jpg);*/
	border-radius: 0px 1000px 1000px 0px;
	padding-right: 98px;
}

.specialists .hr {
	/*background-image: url(/images/fon2.jpg);*/
}

.specialists .lawyer {
	/*background-image: url(/images/fon3.jpg);*/
	border-radius: 1000px 0px 0px 1000px;
	padding-left: 120px;
}

.specialists .mini-text {
	font-weight: 500;
}

.price .price-item {
	border: 3px solid #1D1D1D;
	padding: 16px;
	min-height: 375px;
	position: relative;
}

.price .price-list {
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	margin: 20px 0 0;
}

.price .price-bottom {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
}

.info-panel {
	max-width: 1030px;
	margin: 32px auto 0;
	padding: 30px;
	border: 1px solid #dce5f1;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(29, 29, 29, .08);
	font-weight: 500;
}

.license-order h2 {
	margin-bottom: 18px;
	font-size: 28px;
	line-height: 1.25;
	text-align: left;
}

.license-order p:last-child {
	margin-bottom: 0;
}

.technology-stack {
	overflow: hidden;
	padding: 0;
	border: 3px solid #1D1D1D;
	background: #fff;
}

.technology-stack-head {
	max-width: none;
	padding: 30px;
	border-bottom: 3px solid #1D1D1D;
	margin-bottom: 0;
}

.technology-stack-head h2 {
	margin-bottom: 16px;
	text-align: left;
}

.technology-stack-head p {
	margin-bottom: 0;
	font-size: 18px;
	line-height: 1.55;
}

.technology-stack-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	width: 100%;
}

.technology-card {
	position: relative;
	min-height: 100%;
	padding: 22px;
	border-right: 3px solid #1D1D1D;
	background: #fff;
	box-shadow: none;
}

.technology-card:nth-child(even) {
	background: #f7f7f7;
}

.technology-card:last-child {
	border-right: none;
}

.technology-card h3 {
	min-height: 64px;
	margin-bottom: 18px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.technology-card ul {
	margin: 0;
	padding-left: 18px;
}

.technology-card li {
	display: list-item;
	margin-bottom: 10px;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	list-style: disc;
}

.price-catalog {
	margin: 96px 0;
}

.price-catalog-block {
	margin-bottom: 32px;
	overflow-x: auto;
}

.price-catalog-block h3 {
	margin-bottom: 14px;
	font-size: 24px;
	line-height: 1.25;
	text-transform: none;
}

.price-catalog-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #dce5f1;
	background: #fff;
	box-shadow: 0 12px 34px rgba(29, 29, 29, .08);
	font-size: 15px;
	line-height: 1.45;
}

.price-catalog-table th,
.price-catalog-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #dce5f1;
	text-align: left;
	vertical-align: top;
}

.price-catalog-table th {
	background: #1D1D1D;
	color: #fff;
	font-weight: 700;
}

.price-catalog-table td:last-child,
.price-catalog-table th:last-child {
	width: 280px;
	font-weight: 700;
}

.integration {
	margin: 180px 0;
}

.integration .integration__slider-item {
	border: 4px solid #1D1D1D;
	padding: 30px;
	margin: 8px;
	min-height: 370px;
	position: relative;
}

.integration .integration__slider-item .item-title {
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

.integration .integration__slider-item .item-img {
	width: 57px;
	height: 57px;
	position: absolute;
	left: 30px;
	bottom: 30px;
}

.slider-1c .slick-next, .slider-1c .slick-prev {
	display: none !important;
}

.integration .slick-slider .slick-dots, .team .slick-slider .slick-dots {
	bottom: -56px;
	text-align: left;
	width: 50%;
}

.integration .slick-slider .slick-dots li .team .slick-slider .slick-dots li {
	margin: 0;
}

.team {
	margin: 180px 0;
}

.team .team-item {
	margin: 8px;
}

.team .team-item-img {
	border: 3px solid #1D1D1D;
	position: relative;
}

.team .team-item-img::after {
	content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(151, 71, 255, 0.1), rgba(151, 71, 255, 0.1));
}

.team .team-name {
	margin-top: 20px;
	font-weight: 500;
}

.other .other__items li{
	border-left: 2px solid #1D1D1D;
	padding-left: 18px;
}

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

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

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

.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 {
	margin-top: 180px;
}

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

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

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

.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-form  {
	margin-bottom: 180px;
}

.footer-form .footer-form__inner {
	min-height: 170px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

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

.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;
}

.slick-slider .slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	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;
}

.slick-slider .slick-dots li button:hover {
	box-shadow:none !important;
}

.slider-nav-link {
	display: inline-block;
	cursor: pointer;
}

.slider-nav-left {
	width: 36px;
	height: 36px;
	background-image: url(/images/left.svg);
}

.slider-nav-right {
	width: 36px;
	height: 36px;
	background-image: url(/images/right.svg);
	background-size: 100%;
}

.slider-nav {
	text-align: right;
	margin-top: 17px;
}

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

.pol-conf + .pol-conf {
	margin-top: 10px;
}

.modal-dialog {
    max-width: 50%;
}

.text-akk {
	font-weight: 500;
	margin-bottom: 50px;
}

.text-bottom a {
    text-decoration-line: underline;
}

.contract {
	margin-top: 40px;
    font-weight: 500;
}

.popup-overlay {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }
        .popup {
            background: #333;
            color: #fff;
            padding: 20px;
            border-radius: 5px;
            width: 500px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .popup p {
            margin: 0;
            text-align: left;
            flex: 1;
        }
        .popup a {
            color: #4da8ff;
            text-decoration: underline;
        }
        .popup button {
            background: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-left: 10px;
        }
        .popup button:hover {
            background: #0056b3;
        }
        @media (max-width: 768px) {
            .popup-overlay {
                left: 0;
                bottom: 0;
                width: 100%;
                padding: 0 10px;
                box-sizing: border-box;
            }
            .popup {
                width: 100%;
                max-width: 100%;
                border-radius: 0;
                flex-direction: column;
                align-items: flex-start;
            }
            .popup button {
                margin-left: 0;
                margin-top: 10px;
                align-self: flex-end;
            }
        }
