/* #region FONTS */

@font-face {
	font-family: "Stapel Regular";
	src: local("Stapel Regular"), local("Stapel-Regular"),
		url("../public/fonts/Stapel-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Stapel Medium";
	src: local("Stapel Medium"), local("Stapel-Medium"),
		url("../public/fonts/Stapel-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Stapel Light";
	src: local("Stapel Light"), local("Stapel-Light"),
		url("../public/fonts/Stapel-Light.woff2") format("woff2");
}

/* #endregion */

/* #region BASE */

* {
	padding: 0;
	margin: 0;
	border: unset;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body,
.app {
	font-family: "Stapel Regular", sans-serif;
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 1;
	margin: unset;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	color: #0f172b;
	background-color: #ffffff;
}

body.no-scrollable {
	overflow: hidden;
}

.app {
	width: 100%;
	height: fit-content;
	position: relative;
	top: 0px;
	padding: 8px;
}

.app.with-opened-navigation-drawer {
	top: 84px;
}

.main {
	width: 95%;
	max-width: 1600px;
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin: 0px auto;
}

.container {
	margin: 0px auto;
}

/* #endregion */

/* #region COMPONENTS */

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input::placeholder {
	color: inherit;
}

button {
	cursor: pointer;
	color: inherit;
	text-transform: inherit;
	padding: 0;
	border: unset;
}

a,
a:visited,
a:hover {
	text-decoration: none;
}

a:focus,
a:active {
	outline: none;
}

ul li {
	margin: unset;
	list-style: none;
}

img {
	margin: unset;
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: unset;
	font-size: inherit;
	font-weight: 400;
}

.tooltip {
	position: relative;
}

.tooltip-child {
	background-color: #ffffff;
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	padding: 8px;
	border: 1px solid #f3f3f3;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	z-index: 9999;
}

.tooltip-child:hover {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tooltip-child::after {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: 12px;
	background: transparent;
}

.big-contact-button {
	font-family: "Stapel Medium", sans-serif;
	font-size: 16px;
	line-height: 110%;
	color: #ffffff;
	background-color: #1a63ff;
	max-width: 320px;
	height: 60px;
	padding: 6px 6px 6px 30px;
	border-radius: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	gap: 10px;
}

.circle {
	background-color: #eef8ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
}

.circle_more {
	flex-shrink: 0;
	background-color: #eef8ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.more-arrow {
	width: 5px;
	height: 5px;
}

.arrow {
	width: 12px;
	height: 12px;
}

.more-btn-container {
	margin-top: auto;
}

.more-btn {
	font-family: "Stapel Medium", sans-serif;
	font-size: 16px;
	line-height: 110%;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 50px;
	padding: 13px 75px;
	background-color: #1a63ff;
	border-radius: 60px;
	transition: background-color 0.3s ease;
}

.without-padding {
	padding: unset;
}

.more-btn:hover {
	background-color: #1452cc;
}

.more-btn p {
	color: #ffffff;
	white-space: nowrap;
}

.more-btn .icon {
	width: 24px;
	height: 24px;
	background-color: #f8faff;
	border-radius: 50%;
	padding: 9px;
}

.check-case-btn {
	max-width: 375px;
}

.upper-case {
	text-transform: uppercase;
}

.scroll-top-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
}

.scroll-top-button.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top-button img {
	background-color: #f3f3f3;
	border-radius: 50%;
	padding: 13px;
}

/* #endregion */

/* #region HEADER */

.header,
.mobile-header {
	max-width: 1600px;
	position: relative;
	justify-content: space-between;
	align-items: center;
	color: #8893a7;
	padding-top: 25px;
	padding-bottom: 25px;
}

.header {
	display: none;
	z-index: 1;
}

.mobile-header {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-left: 15px;
	padding-right: 15px;
	gap: 16px;
}

.mobile-header .info {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.mobile-header.opened {
	width: 100%;
	height: fit-content;
	position: fixed;
	top: 0px;
	background-color: #ffffff;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 30px;
	z-index: 1000;
}

.header .logo-img {
	height: 100%;
	display: flex;
	align-items: center;
}

.navigation-menu {
	display: none;
	height: fit-content;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: 30px;
}

.mobile-header.opened .navigation-menu {
	display: flex;
}

.header-navigation-container .navigation-menu {
	border: unset;
	padding: 20px 0 30px;
}

.navigation-menu-item {
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 12px;
	color: #8893a7;
	border-radius: 60px;
	white-space: nowrap;
	text-decoration: none;
	text-align: center;
	user-select: none;
	cursor: pointer;
}

.navigation-menu-item:hover {
	background-color: #f3f3f3;
}

.navigation-menu-item:hover+.tooltip-child,
.navigation-menu-item:focus+.tooltip-child {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.navigation-menu-item.active {
	color: #0f172b;
	background-color: #f3f3f3;
}

.right-menu {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-link {
	max-height: 34px;
}

.burger {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #f3f3f3;
	gap: 3px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.burger:hover {
	background-color: #e9e9e9;
}

.burger-line {
	width: 10px;
	height: 2px;
	background-color: #8893a7;
	transition: all 0.3s ease;
	border-radius: 20%;
}

.middle-line {
	width: 14px;
}

/* #endregion */

/* #region SIDEBAR */

.sidebar-wrapper {
	max-width: 1600px;
	width: calc(100% - 30px);
	display: flex;
	justify-content: center;
	margin: 0px auto;
	overflow: hidden;
}

.sidebar-container {
	max-width: fit-content;
	width: 100%;
	border-radius: 30px;
	overflow: hidden;
}

.sidebar {
	padding: 8px;
	border: 1px solid #f3f3f3;
	border-radius: 30px;
	overflow-y: hidden;
	overflow-x: auto;
}

.sidebar .menu {
	display: flex;
	gap: 8px;
}

.sidebar .menu-item {
	display: flex;
	align-items: center;
	padding: 10px;
	color: #8893a7;
	border-radius: 30px;
	white-space: nowrap;
	user-select: none;
	cursor: pointer;
}

.sidebar .menu-item:hover {
	background-color: #f3f3f3;
}

.sidebar .menu-item.active {
	background-color: #f3f3f3;
	color: #0f172b;
}

/* #endregion */

/* #region COMMON */

.logo-img .main-logo {
	display: block;
}

.logo-img .small-logo {
	display: none;
}

.logo-img img {
	height: 30px
}

.circle-background {
	background-image: url("../public/images/index-title-background.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.default-background {
	background-image: url("../public/images/index-areas.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.blue-bordered-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: #F8FAFF;
	border-radius: 30px;
	padding: 30px;
	text-align: center;
	color: #0F172B;
	overflow: hidden;
}

.blue-bordered-container .small-text {
	font-size: 14px;
	line-height: 140%;
}

.blue-bordered-container .text {
	font-size: 20px;
	line-height: 140%;
	/* color: #8893A7; */
	color: rgb(59 63 71);
}

.blue-bordered-container .vector {
	width: calc(100% + 60px);
	margin-top: 30px;
	margin-bottom: -30px;
}

.services-caption {
	display: inline-block;
	font-family: "Stapel Regular", sans-serif;
	font-size: 16px;
	line-height: 120%;
	color: #1a63ff;
	text-transform: uppercase;
	border: 1px solid #1a63ff;
	border-radius: 50px;
	padding: 8px 16px 7px 16px;
	margin-bottom: 12px;
	width: max-content;
}

.stepper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.step {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.step-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.step .services-caption {
	margin-bottom: unset;
}

.step .section-header .title {
	font-size: 24px;
	text-align: left;
	margin-left: 0px;
	margin-right: auto;
}

.step .section-header .subtitle {
	font-size: 16px;
	text-align: left;
	margin-left: 0px;
	margin-right: auto;
}

.step-body {
	width: 100%;
}

.step-body img {
	border-radius: 20px;
}

.step-body .image-group-row {
	display: flex;
	gap: 12px;
}

.step-body .image-group-row img {
	/* NOTE: - 6px из-за gap */
	width: calc(50% - 6px);
	border-radius: 10px;
}

.blue-text {
	color: #1A63FF;
}

.top-image-position {
	object-position: top;
}

.center-image-position {
	object-position: center;
}

.bottom-image-position {
	object-position: bottom;
}

.backdrop {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #0f172b;
	opacity: 0.4;
	z-index: 900;
}

.backdrop.visible {
	display: block;
}

/* #endregion */

/* #region SUP */

.sup-page-header {
	position: relative;
	height: 450px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.sup-page-header .section-header {
	width: 100%;
	margin: 0px auto;
}

.sup-page-header .section-header .title {
	font-size: 36px;
}

.sup-page-header .section-header .subtitle {
	font-family: "Stapel Light", sans-serif;
	font-size: 16px;
}

.sup-page-header .section-header .big-contact-button {
	margin-top: 16px;
}

.sup-page-header .traffic-image {
	width: 370px;
	position: absolute;
	top: -20px;
	left: -175px;
	display: none;
}

.sup-page-header .earnings-image {
	width: 180px;
	position: absolute;
	top: 0px;
	right: 0px;
	display: none;
}

.sup-page-header .sales-image {
	width: 170px;
	position: absolute;
	bottom: 0px;
	left: 80px;
	display: none;
}

.sup-page-header .chart-image {
	width: 500px;
	position: absolute;
	bottom: -27px;
	right: -210px;
	display: none;
}

/* #endregion */

/* #region FUDKIT */

.fudkit-header {
	background-position: top;
}

.fudkit-header .section-header {
	gap: 32px;
}

.fudkit-header .section-header .title {
	font-size: 36px;
}

.fudkit-header .section-header .subtitle {
	text-align: center;
}

.fudkit-header .header-image-container {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.fudkit-header .header-image {
	width: 100%;
	height: 280px;
	border-radius: 20px;
	object-fit: cover;
	object-position: center;
}

.fudkit-body .services-caption {
	color: #FFF;
	background-color: #1a63ff;
}

.fudkit-body .step-header {
	border: 1px solid #E4E5E7;
	border-radius: 30px;
	padding: 20px;
}

.fudkit-body .step-body {
	width: 100%;
	height: 300px;
}

.fudkit-body .step-body img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fudkit-footer,
.fudkit-footer .content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.fudkit-footer img {
	width: 100%;
	height: 200px;
	border-radius: 30px;
	object-fit: cover;
}

.fudkit-footer .section-header {
	align-items: start;
}

.fudkit-footer .section-header .title {
	font-size: 32px;
	text-align: start;
	margin-left: 0px;
}

.fudkit-footer .section-header .subtitle {
	margin: unset;
}

.fudkit-footer .pricing {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.fudkit-footer .price,
.gift {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fudkit-footer .price .blue-text {
	font-size: 50px;
	font-weight: bold;
}

.fudkit-footer .price .text {
	font-size: 16px;
}

.fudkit-footer .gift .blue-text {
	font-size: 24px;
	font-weight: bold;
}

.fudkit-footer .gift .text {
	font-size: 16px;
	/* color: #8893A7; */
	color: rgb(59 63 71);
}

/* #endregion */

/* #region SECTIONS*/

.section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.section-header .caption {
	width: fit-content;
	height: fit-content;
	display: inline-block;
	font-family: "Stapel Regular", sans-serif;
	font-size: 14px;
	color: #1a63ff;
	text-transform: uppercase;
	border: 1px solid #1a63ff;
	border-radius: 50px;
	padding: 8px 16px 7px 16px;
}

.section-header .title {
	font-family: "Stapel Medium", sans-serif;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}

.section-header .subtitle {
	font-family: "Stapel Regular", sans-serif;
	font-size: 18px;
	line-height: 140%;
	/* color: #8893a7; */
	color: rgb(59 63 71);
	max-width: 600px;
	margin: 0 auto;
}

/* #endregion */

/* #region CONTACTS */

.footer-contacts-wrapper,
.footer-contacts-container,
.footer-contacts {
	display: flex;
	flex-direction: column;
}

.footer-contacts-wrapper {
	gap: 30px;
}

.footer-contacts-container {
	gap: 20px;
}

.footer-contacts {
	gap: 12px;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 4px
}

.footer-contact .title {
	font-family: "Stapel Regular", sans-serif;
	font-size: 16px;
	line-height: 140%;
	/* color: #8893a7; */
	color: rgb(59 63 71);
}

.footer-contact .info,
.email-link {
	font-size: 18px;
	line-height: 120%;
	color: #0f172b;
	text-transform: uppercase;
}

.footer-contact .email-link {
	width: fit-content;
	color: rgb(26, 99, 255);
	text-decoration: underline;
}

/* #endregion */

/* #region FOOTER */

.footer {
	width: 100%;
	max-width: 1600px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	justify-content: center;
	padding: 20px 8px;
	padding-top: 80px;
}

.footer.with-opened-navigation-drawer {
	padding-top: 164px;
}

.footer .tooltip-child {
	bottom: calc(100% + 10px);
	top: unset;
}

.footer .tooltip-child::after {
	top: 100%;
	bottom: unset;
}

.footer-navigation {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
	gap: 20px;
	border-top: 1px solid #f3f3f3;
}

.footer .navigation-menu {
	display: flex;
	margin-top: unset;
	border: 1px solid #f3f3f3;
	padding: 6px;
}

.footer .menu-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer .social-link {
	display: flex;
	gap: 10px;
}

.footer .telegram-link,
.footer .vk-link {
	max-height: 34px;
}

.company-signature {
	width: fit-content;
	text-align: center;
	margin: 0px auto;
	color: #8893a7;
}

/* #endregion */

/* #region MEDIA QUERIES */

@media (min-width: 768px) {
	/* #region BASE */

	.main {
		width: 90%;
	}

	body.no-scrollable {
		overflow: auto;
	}

	/* #endregion */

	/* #region COMPONENTS */

	.big-contact-button {
		font-size: 18px;
		width: 303px;
		height: 70px;
		padding: 8px 8px 8px 32px;
	}

	.circle {
		width: 54px;
		height: 54px;
	}

	.arrow {
		width: 14px;
		height: 14px;
	}

	/* #endregion */

	/* #region COMMON */

	.step {
		flex-direction: row;
		align-items: center;
		gap: 50px;
	}

	.step+.reversed {
		flex-direction: row-reverse;
	}

	.step-header {
		width: 50%;
	}

	.step-body {
		width: 50%;
	}

	.backdrop,
	.burger {
		display: none;
	}

	.backdrop.visible {
		display: none;
	}

	.blue-bordered-container .vector {
		width: calc(100% - 250px);
	}

	.logo-img .main-logo {
		display: none;
	}

	.logo-img .small-logo {
		display: block;
	}

	/* #endregion */

	/* #region HEADER */

	.header {
		width: 90%;
		display: flex;
		margin: 0px auto;
	}

	.mobile-header {
		display: none;
	}

	.header .navigation-menu {
		display: flex;
		padding: 6px;
		gap: 8px;
		border: 1px solid #f3f3f3;
		border-radius: 60px;
		position: absolute;
		left: 50%;
		transform: translate(-50%);
		flex-wrap: nowrap;
	}


	/* #endregion */

	/* #region SIDEBAR */

	.sidebar-wrapper {
		width: 90%;
		margin: 0px auto;
	}

	/* #endregion */

	/* #region FUDKIT */

	.fudkit-header .section-header .title {
		font-size: 72px;
	}

	.fudkit-header .header-image-container .header-image {
		height: 520px;
	}

	.fudkit-header .header-image-container .big-contact-button {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translate(-50%);
	}

	.fudkit-body .step {
		align-items: unset;
	}

	.fudkit-body .step-header {
		justify-content: center;
		width: 100%;
	}

	.fudkit-body .step-body {
		width: fit-content;
	}

	.fudkit-body .step-header .title {
		font-size: 32px;
	}

	.fudkit-body .step-header .subtitle {
		font-size: 18px;
	}

	.fudkit-body .step-body img {
		width: fit-content;

	}

	.fudkit-footer img {
		height: 500px;
	}

	.fudkit-footer .content {
		flex-direction: row;
	}

	.fudkit-footer .section-header {
		width: 100%;
	}

	.fudkit-footer .pricing {
		width: 100%;
	}

	.fudkit-footer .price {
		flex-direction: column-reverse;
		align-items: end;
	}

	.fudkit-footer .gift {
		flex-direction: row-reverse;
		align-items: center;
	}

	/* #endregion */

	/* #region FOOTER */

	.footer {
		width: 90%;
		margin: 0px auto;
		padding-left: unset;
		padding-right: unset;
	}

	.footer-navigation {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.footer .menu-right {
		flex-direction: row;
		gap: 20px;
	}

	/* #endregion */
}

@media (min-width: 1024px) {
	/* #region COMMON */

	.logo-img .main-logo {
		display: block;
	}

	.logo-img .small-logo {
		display: none;
	}

	/* #endregion */

	/* #region SUP */

	.sup-page-header .traffic-image {
		display: block;
	}

	.sup-page-header .earnings-image {
		display: block;
	}

	.sup-page-header .sales-image {
		display: block;
	}

	.sup-page-header .chart-image {
		display: block;
	}

	/* #endregion */
}

@media (min-width: 1440px) {
	/* #region BASE */

	.main {
		width: 70%;
	}

	/* #endregion */

	/* #region HEADER */

	.header {
		width: 70%;
	}

	/* #endregion */

	/* #region SIDEBAR */

	.sidebar-wrapper {
		width: 70%;
	}

	/* #endregion */

	/* #region FOOTER */

	.footer {
		width: 70%;
	}

	/* #endregion */
}

/* #endregion */