:root {
	--blue-default: #1c3393;
	--white-default: #ffffff;
	--orange1: #f28c46;
	--orange2: #ff7c22;
	--orange3: #e27d38;
	--orange4: #ffd6ba;
	--grey-divider: #d7d7d7;
	--pixel: url("data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	border: none;
	box-sizing: border-box;
}

a,
a:link,
a:hover,
a:visited,
a:active {
	text-decoration: none;
}

a {
	color: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

html {
	height: 100%;
}

body {
	line-height: 1;
}
.main {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}
blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* MAIN */
html {
	scroll-behavior: smooth;
}

input {
	font-family: "Manrope", sans-serif;
	line-height: 1.4;
	outline: none;
}

button {
	font-family: "Manrope", sans-serif;
	background-color: transparent;
	border: none;
	line-height: 1;
	outline: none;
	cursor: pointer;
}

body {
	height: auto;
	font-family: "Manrope", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	font-style: normal;
	font-size: 16px;
	line-height: 1.4;
	color: #1b1b1b;
}

body.no-scroll {
	overflow: hidden;
}

body.no-scroll .header .logo {
	position: relative;
}
.hidden {
	display: none;
}
.uppercase {
	text-transform: uppercase;
}
.text--blue {
	color: var(--blue-default);
}
.main {
	flex: 1 0 auto;
}

li {
	list-style-type: none;
}

img {
	display: block;
	object-fit: cover;
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1200px;
	width: 100%;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.title {
	font-size: 40px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 60px;
}

.description {
	font-size: 18px;
	font-weight: 600;
	line-height: 160%;
	margin-bottom: 40px;
}

.title-sm {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.4;
}

.btn-fill {
	border-radius: 6px;
	background: var(--orange1);
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	color: white;
	font-size: 16px;
	padding: 10px 50px;
	width: fit-content;
	border: 2px solid transparent;
	transition: 0.25s;
}

.btn-fill:hover {
	background-color: var(--orange2);
}

.btn-fill:active {
	background-color: var(--orange3);
	border: 2px solid #ffd6ba;
}

.btn-fill.btn--arrow,
.btn-outline.btn--arrow {
	gap: 20px;
}

.btn-fill.btn--arrow::after {
	content: "";
	display: block;
	width: 10px;
	height: 18px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: var(--arrow-btn-white);
}

.btn-outline {
	border-radius: 6px;
	color: #1b1b1b;
	border: 2px solid var(--orange1);
	font-weight: 600;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: 0.25s;
	font-size: 16px;
	padding: 10px 50px;
	width: fit-content;
}

.btn-outline.text-blck {
	color: #1b1b1b;
}

.btn-outline:hover {
	border-radius: 6px;
	color: white;
	border: 2px solid transparent;
	background-color: var(--orange2);
}

.btn-outline:active {
	border-radius: 6px;
	color: var(--orange3);
	border: 2px solid var(--orange3);
	background-color: #fff3eb;
}

.btn-link {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	display: flex;
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
	background-image: var(--orange-arrow);
	padding-right: 14px;
	background-size: 6px 12px;
	width: fit-content;
}

.btn-outline.btn--arrow::after {
	content: "";
	display: block;
	width: 10px;
	height: 18px;
	flex-shrink: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: var(--orange-arrow);
}

.btn-outline.btn--arrow:hover::after {
	background-image: var(--arrow-btn-white);
}

.btn-outline.btn--arrow:active::after {
	background-image: var(--orange-arrow);
}

.btn-link-arrow {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	gap: 6px;
	cursor: pointer;
}

.btn-link-arrow::after {
	content: "";
	display: block;
	width: 18px;
	height: 10px;
	flex-shrink: 0;
	background-image: var(--dropdown-arrow-orange);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(-90deg);
}

.show-more-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: 0.25s;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
}

.show-more-btn:hover {
	color: var(--orange2);
}

.show-more-btn:after {
	content: "";
	display: block;
	background-image: var(--dropdown-arrow-orange);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 18px;
	height: 10px;
	transition: 0.25s;
	flex-shrink: 0;
}

.show-more-btn .show {
	display: block;
}

.show-more-btn .hidden {
	display: none;
}

.show-more-btn.active .show {
	display: none;
}

.show-more-btn.active .hidden {
	display: block;
}

.show-more-btn.active::after {
	transform: scale(1, -1);
}

.default-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.default-list > li {
	padding-left: 18px;
	position: relative;
	font-weight: 400;
	color: #1b1b1b;
	font-size: 16px;
	font-style: normal;
	line-height: 140%;
}

.default-list > li::before {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: var(--blue-default);
	border-radius: 50%;
	left: 0px;
	top: 7px;
}

.default-list._orange > li::before {
	background-color: var(--orange1);
}

.default-list-ol {
	padding-left: 20px;
	margin: 20px 0;
}

.default-list-ol li {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	list-style: decimal;
	margin-bottom: 16px;
}

.default-list-ol li:last-child {
	margin-bottom: 0;
}

.default-list-ol li::marker {
	font-weight: 600;
	color: #1c3393;
}

@media (max-width: 1200px) {
	.title {
		margin-bottom: 40px;
	}

	.btn-link-arrow {
		font-size: 14px;
		gap: 4px;
	}

	.btn-link-arrow::after {
		width: 12px;
		height: 8px;
	}

	.show-more-btn {
		gap: 8px;
		font-size: 14px;
	}

	.show-more-btn:after {
		width: 12px;
		height: 8px;
	}
}

@media (max-width: 833px) {
	.title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.description {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.title-sm {
		font-size: 20px;
	}

	.btn-outline,
	.btn-fill {
		padding: 10px 20px;
	}
}

.only-mobile,
.only-tablet {
	display: none;
}
.only-desktop {
	display: flex;
}
@media (max-width: 833px) {
	.only-mobile {
		display: flex;
	}
}
@media (min-width: 834px) and (max-width: 1200px) {
	.only-tablet {
		display: flex;
	}
}
@media (max-width: 1200px) {
	.only-desktop {
		display: none;
	}
	.non-desktop {
		display: flex;
	}
}
