:root {
	--color-white: #ffffff;
	--color-white2: #f5f5f5;
	--color-title: #333333;
	--color-text: #444444;
	--color-black: #000000;
	--color-primary: #076aff;
	--color-link-hover: #0048ff;
	--color-dark-blue: #1c274c;
	--color-gray: #c5c5c5;
	--color-gray2: #707a8e;
	--color-dark-gray: #555;
	--color-red: #ff0000;
	--color-green: #3cff00;
	--color-success: #1e8d1e;
	--color-yellow: #fceb1e;
	--color-dark-gray2: #222;

	--bg-body: #fafafa;
	--bg-primary: #076aff;
	--bg-primary-hover: #0358d8;
	--bg-black: #000000;
	--bg-black-hover: #2e2c2c;
	--bg-white: #ffffff;
	--bg-white2: #f5f5f5;
	--bg-gray: #f2f2f2;
	--bg-gray2: #f1f1f1;
	--bg-gray3: #f7f7f7;
	--bg-gray4: #c5c5c5;
	--bg-green: #8da81f;

	--border-gray: #e3e3e3;
	--border-primary: #076aff;
	--border-green: #8da81f;
}

/* утилиты и общие блоки */

.title {
	padding-bottom: 40px;
}

.title.center {
	text-align: center;
}

.title.center p {
	max-width: 990px;
	margin: 0 auto;
}

.title-row {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}

.title-arrow {
	display: flex;
	gap: 10px;
}

.slider-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-gray);
	border-radius: 4px;
	width: 61px;
	height: 40px;
	color: #5b5b5b;
	background: var(--bg-white);
}

.slider-arrow:hover {
	color: var(--color-white);
	background: var(--bg-primary);
	border-color: transparent;
}

.ln {
	list-style: none;
	padding: 0;
}

.ln li {
	padding: 0;
}

.ln li:before {
	display: none;
}

.no-scroll {
	overflow: hidden;
}

.bg-white {
	background: var(--bg-white);
}

.hidden {
	display: none;
}

.p-100 {
	padding: 100px 0;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.p-50 {
	padding: 50px 0;
}

.pt-50 {
	padding-top: 50px;
}

.pb-50 {
	padding-bottom: 50px;
}

.container {
	max-width: 1410px;
	width: 100%;
	margin: 0 auto;
}

.cards-row {
	display: grid;
	gap: 30px;
}

.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	width: max-content;
	transition: all 0.3s ease;
	gap: 30px;
	padding: 0 30px;
	line-height: 100%;
	font-size: 16px;
}

.btn-note {
	flex-direction: column;
	justify-content: center;
	gap: 0;
	line-height: normal;
	padding-top: 2px !important;
}

.btn-note span {
	font-weight: 500;
	font-size: 12px;
}

.btn-note span.red {
	color: var(--color-red);
}

.btn-note span.green {
	color: var(--color-green);
}

.btn-big {
	height: 60px;
}

.btn-small {
	height: 40px;
	font-size: 14px;
}

.btn-primary {
	background: var(--bg-primary);
	color: var(--color-white);
}

.btn-primary:hover {
	background: var(--bg-primary-hover);
	color: var(--color-white);
}

.btn-border {
	border: 1px solid var(--border-gray);
	color: var(--color-title);
	background: var(--bg-white);
}

.btn-border:hover {
	background: var(--bg-black);
	color: var(--color-white);
	border-color: transparent;
}

.btn-green {
	background: #a9cb1c;
	color: var(--color-title);
	border-radius: 6px;
}

.btn-green:hover {
	background: #92b118;
	color: var(--color-title);
}

.btn-white {
	background: var(--bg-white);
	color: var(--color-primary);
	border: 1px solid var(--border-gray);
}

.btn-white:hover {
	background: var(--bg-black);
	color: var(--color-white);
	border-color: transparent;
}

.btn-white-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-white);
	color: var(--color-dark-blue);
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

.btn-arrow {
	padding: 0 20px 0 30px;
}

.btn-black {
	background: var(--bg-black);
	color: var(--color-white);
	border-color: transparent;
}

.btn-black:hover {
	color: var(--color-white);
	background: var(--bg-black-hover);
}

.btn-gray {
	color: var(--color-white);
	background: var(--bg-gray4);
}

.btn-disabled {
	pointer-events: none;
}

.gray-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
}

.gray-list li {
	border-radius: 5px;
	padding: 12px 15px;
	background: var(--bg-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
